diff options
author | Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | 2013-08-20 15:45:50 (GMT) |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2013-09-18 16:41:13 (GMT) |
commit | c1bbd430d617faa2bc610c5404486b01d72c34bc (patch) | |
tree | 0f4a5c4be58195d6a6c588d1f624ffe3f6bc7147 /arch/arm | |
parent | 2290414be0c9e360f5909ae0e33f6a2df3980f14 (diff) | |
download | linux-fsl-qoriq-c1bbd430d617faa2bc610c5404486b01d72c34bc.tar.xz |
ARM: mvebu: Add the reference 25 MHz fixed-clock to Armada XP
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 <ezequiel.garcia@free-electrons.com>
Reviewed-by: Mike Turquette <mturquette@linaro.org>
Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/boot/dts/armada-xp.dtsi | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/armada-xp.dtsi b/arch/arm/boot/dts/armada-xp.dtsi index def125c..c8923bd 100644 --- a/arch/arm/boot/dts/armada-xp.dtsi +++ b/arch/arm/boot/dts/armada-xp.dtsi @@ -169,4 +169,13 @@ }; }; }; + + clocks { + /* 25 MHz reference crystal */ + refclk: oscillator { + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <25000000>; + }; + }; }; |