0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/allwinner,sun4i-a10-ve-clk.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Allwinner A10 Video Engine 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-ve-clk
0024
0025 reg:
0026 maxItems: 1
0027
0028 clocks:
0029 maxItems: 1
0030
0031 clock-output-names:
0032 maxItems: 1
0033
0034 required:
0035 - "#clock-cells"
0036 - "#reset-cells"
0037 - compatible
0038 - reg
0039 - clocks
0040 - clock-output-names
0041
0042 additionalProperties: false
0043
0044 examples:
0045 - |
0046 clk@1c2013c {
0047 #clock-cells = <0>;
0048 #reset-cells = <0>;
0049 compatible = "allwinner,sun4i-a10-ve-clk";
0050 reg = <0x01c2013c 0x4>;
0051 clocks = <&pll4>;
0052 clock-output-names = "ve";
0053 };
0054
0055 ...