0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/allwinner,sun4i-a10-display-clk.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Allwinner A10 Display Clock 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 "#reset-cells":
0020 const: 0
0021
0022 compatible:
0023 const: allwinner,sun4i-a10-display-clk
0024
0025 reg:
0026 maxItems: 1
0027
0028 clocks:
0029 maxItems: 3
0030 description: >
0031 The parent order must match the hardware programming order.
0032
0033 clock-output-names:
0034 maxItems: 1
0035
0036 required:
0037 - "#clock-cells"
0038 - "#reset-cells"
0039 - compatible
0040 - reg
0041 - clocks
0042 - clock-output-names
0043
0044 additionalProperties: false
0045
0046 examples:
0047 - |
0048 clk@1c20104 {
0049 #clock-cells = <0>;
0050 #reset-cells = <0>;
0051 compatible = "allwinner,sun4i-a10-display-clk";
0052 reg = <0x01c20104 0x4>;
0053 clocks = <&pll3>, <&pll7>, <&pll5 1>;
0054 clock-output-names = "de-be";
0055 };
0056
0057 ...