Emilio López | e874a66 | 2013-02-25 11:44:26 -0300 | [diff] [blame] | 1 | Device Tree Clock bindings for arch-sunxi |
| 2 | |
| 3 | This binding uses the common clock binding[1]. |
| 4 | |
| 5 | [1] Documentation/devicetree/bindings/clock/clock-bindings.txt |
| 6 | |
| 7 | Required properties: |
| 8 | - compatible : shall be one of the following: |
Emilio López | e327699 | 2013-03-26 23:39:17 -0300 | [diff] [blame^] | 9 | "allwinner,sun4i-osc-clk" - for a gatable oscillator |
| 10 | "allwinner,sun4i-pll1-clk" - for the main PLL clock |
| 11 | "allwinner,sun4i-cpu-clk" - for the CPU multiplexer clock |
| 12 | "allwinner,sun4i-axi-clk" - for the AXI clock |
| 13 | "allwinner,sun4i-ahb-clk" - for the AHB clock |
| 14 | "allwinner,sun4i-apb0-clk" - for the APB0 clock |
| 15 | "allwinner,sun4i-apb1-clk" - for the APB1 clock |
| 16 | "allwinner,sun4i-apb1-mux-clk" - for the APB1 clock muxing |
Emilio López | e874a66 | 2013-02-25 11:44:26 -0300 | [diff] [blame] | 17 | |
| 18 | Required properties for all clocks: |
| 19 | - reg : shall be the control register address for the clock. |
| 20 | - clocks : shall be the input parent clock(s) phandle for the clock |
| 21 | - #clock-cells : from common clock binding; shall be set to 0. |
| 22 | |
| 23 | For example: |
| 24 | |
| 25 | osc24M: osc24M@01c20050 { |
| 26 | #clock-cells = <0>; |
Emilio López | e327699 | 2013-03-26 23:39:17 -0300 | [diff] [blame^] | 27 | compatible = "allwinner,sun4i-osc-clk"; |
Emilio López | e874a66 | 2013-02-25 11:44:26 -0300 | [diff] [blame] | 28 | reg = <0x01c20050 0x4>; |
| 29 | clocks = <&osc24M_fixed>; |
| 30 | }; |
| 31 | |
| 32 | pll1: pll1@01c20000 { |
| 33 | #clock-cells = <0>; |
Emilio López | e327699 | 2013-03-26 23:39:17 -0300 | [diff] [blame^] | 34 | compatible = "allwinner,sun4i-pll1-clk"; |
Emilio López | e874a66 | 2013-02-25 11:44:26 -0300 | [diff] [blame] | 35 | reg = <0x01c20000 0x4>; |
| 36 | clocks = <&osc24M>; |
| 37 | }; |
| 38 | |
| 39 | cpu: cpu@01c20054 { |
| 40 | #clock-cells = <0>; |
Emilio López | e327699 | 2013-03-26 23:39:17 -0300 | [diff] [blame^] | 41 | compatible = "allwinner,sun4i-cpu-clk"; |
Emilio López | e874a66 | 2013-02-25 11:44:26 -0300 | [diff] [blame] | 42 | reg = <0x01c20054 0x4>; |
| 43 | clocks = <&osc32k>, <&osc24M>, <&pll1>; |
| 44 | }; |