brintos

brintos / linux-shallow public Read only

0
0
Text · 875 B · e0f4d69 Raw
44 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/qcom,q6sstopcc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Q6SSTOP clock Controller8 9maintainers:10  - Bjorn Andersson <andersson@kernel.org>11 12properties:13  compatible:14    const: qcom,qcs404-q6sstopcc15 16  reg:17    items:18      - description: Q6SSTOP clocks register region19      - description: Q6SSTOP_TCSR register region20 21  clocks:22    items:23      - description: ahb clock for the q6sstopCC24 25  '#clock-cells':26    const: 127 28required:29  - compatible30  - reg31  - clocks32  - '#clock-cells'33 34additionalProperties: false35 36examples:37  - |38    q6sstopcc: clock-controller@7500000 {39      compatible = "qcom,qcs404-q6sstopcc";40      reg = <0x07500000 0x4e000>, <0x07550000 0x10000>;41      clocks = <&gcc 141>;42      #clock-cells = <1>;43    };44