ARM: mvebu: Add the reference 25 MHz fixed-clock to Armada XP
authorEzequiel Garcia <[email protected]>
Tue, 20 Aug 2013 15:45:50 +0000 (12:45 -0300)
committerJason Cooper <[email protected]>
Wed, 18 Sep 2013 16:41:13 +0000 (16:41 +0000)
The Armada XP SoC has a reference 25 MHz fixed-clock that is used in
some controllers such as the timer and the watchdog. This commit adds
a DT representation of this clock through a fixed-clock compatible node.

Signed-off-by: Ezequiel Garcia <[email protected]>
Reviewed-by: Mike Turquette <[email protected]>
Acked-by: Gregory CLEMENT <[email protected]>
Signed-off-by: Jason Cooper <[email protected]>
arch/arm/boot/dts/armada-xp.dtsi

index def125c0eeaa1596892f5cda162667d99853827c..c8923bd32278e7e27035cc992ed6a11869b0cfe2 100644 (file)
                        };
                };
        };
+
+       clocks {
+               /* 25 MHz reference crystal */
+               refclk: oscillator {
+                       compatible = "fixed-clock";
+                       #clock-cells = <0>;
+                       clock-frequency = <25000000>;
+               };
+       };
 };