1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/clock/qcom,sc8280xp-lpasscc.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm LPASS Core & Audio Clock Controller on SC8280XP
8
9maintainers:
10  - Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
11
12description: |
13  Qualcomm LPASS core and audio clock control module provides the clocks,
14  and reset on SC8280XP.
15
16  See also::
17    include/dt-bindings/clock/qcom,lpasscc-sc8280xp.h
18
19properties:
20  compatible:
21    enum:
22      - qcom,sc8280xp-lpasscc
23
24  reg:
25    maxItems: 1
26
27  '#clock-cells':
28    const: 1
29
30  '#reset-cells':
31    const: 1
32
33required:
34  - compatible
35  - reg
36  - '#clock-cells'
37  - '#reset-cells'
38
39additionalProperties: false
40
41examples:
42  - |
43    #include <dt-bindings/clock/qcom,sc8280xp-lpasscc.h>
44    lpasscc: clock-controller@33e0000 {
45        compatible = "qcom,sc8280xp-lpasscc";
46        reg = <0x033e0000 0x12000>;
47        #clock-cells = <1>;
48        #reset-cells = <1>;
49    };
50...
51