brintos

brintos / linux-shallow public Read only

0
0
Text · 862 B · 59ef41a Raw
48 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/sophgo,cv1800-clk.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Sophgo CV1800/SG2000 Series Clock Controller8 9maintainers:10  - Inochi Amaoto <inochiama@outlook.com>11 12properties:13  compatible:14    enum:15      - sophgo,cv1800-clk16      - sophgo,cv1810-clk17      - sophgo,sg2000-clk18 19  reg:20    maxItems: 121 22  clocks:23    maxItems: 124 25  "#clock-cells":26    const: 127    description:28      See <dt-bindings/clock/sophgo,cv1800.h> for valid indices.29 30required:31  - compatible32  - reg33  - clocks34  - "#clock-cells"35 36additionalProperties: false37 38examples:39  - |40    clock-controller@3002000 {41        compatible = "sophgo,cv1800-clk";42        reg = <0x03002000 0x1000>;43        clocks = <&osc>;44        #clock-cells = <1>;45    };46 47...48