summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/clock/qcom,sm6115-lpasscc.yaml
blob: 8cbab3fbb6601d53b32edc9640f4bed677ad960c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/clock/qcom,sm6115-lpasscc.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Qualcomm LPASS Core & Audio Clock Controller on SM6115

maintainers:
  - Konrad Dybcio <konradybcio@kernel.org>
  - Srinivas Kandagatla <srinivas.kandagatla@linaro.org>

description: |
  Qualcomm LPASS core and audio clock controllers provide audio-related resets
  on SM6115 and its derivatives.

  See also::
    include/dt-bindings/clock/qcom,sm6115-lpasscc.h

properties:
  compatible:
    enum:
      - qcom,sm6115-lpassaudiocc
      - qcom,sm6115-lpasscc

  reg:
    maxItems: 1

  '#reset-cells':
    const: 1

required:
  - compatible
  - reg
  - '#reset-cells'

additionalProperties: false

examples:
  - |
    lpass_audiocc: clock-controller@a6a9000 {
        compatible = "qcom,sm6115-lpassaudiocc";
        reg = <0x0a6a9000 0x1000>;
        #reset-cells = <1>;
    };
...