0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/allwinner,sun4i-a10-axi-clk.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Allwinner A10 AXI 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 compatible:
0020 enum:
0021 - allwinner,sun4i-a10-axi-clk
0022 - allwinner,sun8i-a23-axi-clk
0023
0024 reg:
0025 maxItems: 1
0026
0027 clocks:
0028 maxItems: 1
0029
0030 clock-output-names:
0031 maxItems: 1
0032
0033 required:
0034 - "#clock-cells"
0035 - compatible
0036 - reg
0037 - clocks
0038 - clock-output-names
0039
0040 additionalProperties: false
0041
0042 examples:
0043 - |
0044 axi@1c20054 {
0045 #clock-cells = <0>;
0046 compatible = "allwinner,sun4i-a10-axi-clk";
0047 reg = <0x01c20054 0x4>;
0048 clocks = <&cpu>;
0049 clock-output-names = "axi";
0050 };
0051
0052 - |
0053 axi_clk@1c20050 {
0054 #clock-cells = <0>;
0055 compatible = "allwinner,sun8i-a23-axi-clk";
0056 reg = <0x01c20050 0x4>;
0057 clocks = <&cpu>;
0058 clock-output-names = "axi";
0059 };
0060
0061 ...