gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / Documentation / devicetree / bindings / clock / qcom,gcc-ipq8074.yaml
blob98572b4a9b6087ad2f59330d2bcbaa4330dc0cb7
1 # SPDX-License-Identifier: GPL-2.0-only
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/clock/qcom,gcc-ipq8074.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Qualcomm Global Clock & Reset Controller Bindingfor IPQ8074
9 maintainers:
10   - Stephen Boyd <sboyd@kernel.org>
11   - Taniya Das <tdas@codeaurora.org>
13 description: |
14   Qualcomm global clock control module which supports the clocks, resets and
15   power domains on IPQ8074.
17   See also:
18   - dt-bindings/clock/qcom,gcc-ipq8074.h
20 properties:
21   compatible:
22     const: qcom,gcc-ipq8074
24   '#clock-cells':
25     const: 1
27   '#reset-cells':
28     const: 1
30   reg:
31     maxItems: 1
33   protected-clocks:
34     description:
35       Protected clock specifier list as per common clock binding.
37 required:
38   - compatible
39   - reg
40   - '#clock-cells'
41   - '#reset-cells'
43 additionalProperties: false
45 examples:
46   - |
47     clock-controller@1800000 {
48       compatible = "qcom,gcc-ipq8074";
49       reg = <0x01800000 0x80000>;
50       #clock-cells = <1>;
51       #reset-cells = <1>;
52     };
53 ...