xref: /freebsd/sys/contrib/device-tree/Bindings/clock/qcom,sdm845-lpasscc.yaml (revision 8bab661a3316d8bd9b9fbd11a3b4371b91507bd2)
1*8bab661aSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2*8bab661aSEmmanuel Vadot%YAML 1.2
3*8bab661aSEmmanuel Vadot---
4*8bab661aSEmmanuel Vadot$id: http://devicetree.org/schemas/clock/qcom,sdm845-lpasscc.yaml#
5*8bab661aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*8bab661aSEmmanuel Vadot
7*8bab661aSEmmanuel Vadottitle: Qualcomm SDM845 LPASS Clock Controller
8*8bab661aSEmmanuel Vadot
9*8bab661aSEmmanuel Vadotmaintainers:
10*8bab661aSEmmanuel Vadot  - Bjorn Andersson <andersson@kernel.org>
11*8bab661aSEmmanuel Vadot
12*8bab661aSEmmanuel Vadotdescription: |
13*8bab661aSEmmanuel Vadot  Qualcomm SDM845 LPASS (Low Power Audio SubSystem) Clock Controller.
14*8bab661aSEmmanuel Vadot
15*8bab661aSEmmanuel Vadot  See also:: include/dt-bindings/clock/qcom,lpass-sdm845.h
16*8bab661aSEmmanuel Vadot
17*8bab661aSEmmanuel Vadotproperties:
18*8bab661aSEmmanuel Vadot  compatible:
19*8bab661aSEmmanuel Vadot    const: qcom,sdm845-lpasscc
20*8bab661aSEmmanuel Vadot
21*8bab661aSEmmanuel Vadot  '#clock-cells':
22*8bab661aSEmmanuel Vadot    const: 1
23*8bab661aSEmmanuel Vadot
24*8bab661aSEmmanuel Vadot  reg:
25*8bab661aSEmmanuel Vadot    maxItems: 2
26*8bab661aSEmmanuel Vadot
27*8bab661aSEmmanuel Vadot  reg-names:
28*8bab661aSEmmanuel Vadot    items:
29*8bab661aSEmmanuel Vadot      - const: cc
30*8bab661aSEmmanuel Vadot      - const: qdsp6ss
31*8bab661aSEmmanuel Vadot
32*8bab661aSEmmanuel Vadotrequired:
33*8bab661aSEmmanuel Vadot  - compatible
34*8bab661aSEmmanuel Vadot  - '#clock-cells'
35*8bab661aSEmmanuel Vadot  - reg
36*8bab661aSEmmanuel Vadot  - reg-names
37*8bab661aSEmmanuel Vadot
38*8bab661aSEmmanuel VadotadditionalProperties: false
39*8bab661aSEmmanuel Vadot
40*8bab661aSEmmanuel Vadotexamples:
41*8bab661aSEmmanuel Vadot  - |
42*8bab661aSEmmanuel Vadot    clock-controller@17014000 {
43*8bab661aSEmmanuel Vadot        compatible = "qcom,sdm845-lpasscc";
44*8bab661aSEmmanuel Vadot        reg = <0x17014000 0x1f004>, <0x17300000 0x200>;
45*8bab661aSEmmanuel Vadot        reg-names = "cc", "qdsp6ss";
46*8bab661aSEmmanuel Vadot        #clock-cells = <1>;
47*8bab661aSEmmanuel Vadot    };
48