0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/allwinner,sun9i-a80-pll4-clk.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Allwinner A80 Peripheral PLL Device Tree Bindings
0008
0009 maintainers:
0010 - Chen-Yu Tsai <wens@csie.org>
0011 - Maxime Ripard <mripard@kernel.org>
0012
0013 deprecated: true
0014
0015 properties:
0016 "#clock-cells":
0017 const: 0
0018
0019 compatible:
0020 const: allwinner,sun9i-a80-pll4-clk
0021
0022 reg:
0023 maxItems: 1
0024
0025 clocks:
0026 maxItems: 1
0027
0028 clock-output-names:
0029 maxItems: 1
0030
0031 required:
0032 - "#clock-cells"
0033 - compatible
0034 - reg
0035 - clocks
0036 - clock-output-names
0037
0038 additionalProperties: false
0039
0040 examples:
0041 - |
0042 clk@600000c {
0043 #clock-cells = <0>;
0044 compatible = "allwinner,sun9i-a80-pll4-clk";
0045 reg = <0x0600000c 0x4>;
0046 clocks = <&osc24M>;
0047 clock-output-names = "pll4";
0048 };
0049
0050 ...