ac7cd6ac0857f57b48ab7329ac0d963cd6413bcf
[openwrt/openwrt.git] / target / linux / sunxi / patches-3.13 / 211-dt-sun7i-add-external-clk-output.patch
1 From 6dd612e3d7e0c76f863efaddae4738fadc461f72 Mon Sep 17 00:00:00 2001
2 From: Chen-Yu Tsai <wens@csie.org>
3 Date: Tue, 24 Dec 2013 21:26:18 +0800
4 Subject: [PATCH] ARM: dts: sun7i: external clock outputs
5
6 This commit adds the two external clock outputs available on A20 to
7 its device tree. A dummy fixed factor clock is also added to serve as
8 the first input of the clock outputs, which according to AW's A20 user
9 manual, is the 24MHz oscillator divided by 750.
10
11 Signed-off-by: Chen-Yu Tsai <wens@csie.org>
12 ---
13 arch/arm/boot/dts/sun7i-a20.dtsi | 27 +++++++++++++++++++++++++++
14 1 file changed, 27 insertions(+)
15
16 diff --git a/arch/arm/boot/dts/sun7i-a20.dtsi b/arch/arm/boot/dts/sun7i-a20.dtsi
17 index 2e19c47..858e0710 100644
18 --- a/arch/arm/boot/dts/sun7i-a20.dtsi
19 +++ b/arch/arm/boot/dts/sun7i-a20.dtsi
20 @@ -305,6 +305,33 @@
21 clocks = <&osc24M>, <&pll6 2>, <&pll5 1>;
22 clock-output-names = "mbus";
23 };
24 +
25 + /*
26 + * Dummy clock used by output clocks
27 + */
28 + osc24M_32k: osc24M_32k {
29 + #clock-cells = <0>;
30 + compatible = "fixed-factor-clock";
31 + clock-div = <750>;
32 + clock-mult = <1>;
33 + clocks = <&osc24M>;
34 + };
35 +
36 + clk_out_a: clk@01c201f0 {
37 + #clock-cells = <0>;
38 + compatible = "allwinner,sun7i-a20-out-clk";
39 + reg = <0x01c201f0 0x4>;
40 + clocks = <&osc24M_32k>, <&osc32k>, <&osc24M>;
41 + clock-output-names = "clk_out_a";
42 + };
43 +
44 + clk_out_b: clk@01c201f4 {
45 + #clock-cells = <0>;
46 + compatible = "allwinner,sun7i-a20-out-clk";
47 + reg = <0x01c201f4 0x4>;
48 + clocks = <&osc24M_32k>, <&osc32k>, <&osc24M>;
49 + clock-output-names = "clk_out_b";
50 + };
51 };
52
53 timer {
54 --
55 1.8.5.1
56