diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2013-03-14 08:08:58 -0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2013-04-09 10:52:52 -0400 |
commit | a44eed9a21e243bc659225e50d9e6be471bbd252 (patch) | |
tree | a1f77ae51a60e89cb110cd720328b599b350aa60 | |
parent | ca26d04143dfa9d2eff11fdafe76eee595e9ee14 (diff) |
ARM: i.MX31: Add GPT devicetree node
The GPT is the GPT timer found on i.MX SoCs.
Since this is the first user of the AIPS2 this patch also adds it.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
-rw-r--r-- | arch/arm/boot/dts/imx31.dtsi | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx31.dtsi b/arch/arm/boot/dts/imx31.dtsi index aa488acb9f19..c5449257ad9a 100644 --- a/arch/arm/boot/dts/imx31.dtsi +++ b/arch/arm/boot/dts/imx31.dtsi | |||
@@ -101,5 +101,21 @@ | |||
101 | #clock-cells = <1>; | 101 | #clock-cells = <1>; |
102 | }; | 102 | }; |
103 | }; | 103 | }; |
104 | |||
105 | aips@53f00000 { /* AIPS2 */ | ||
106 | compatible = "fsl,aips-bus", "simple-bus"; | ||
107 | #address-cells = <1>; | ||
108 | #size-cells = <1>; | ||
109 | reg = <0x53f00000 0x100000>; | ||
110 | ranges; | ||
111 | |||
112 | gpt: timer@53f90000 { | ||
113 | compatible = "fsl,imx31-gpt"; | ||
114 | reg = <0x53f90000 0x4000>; | ||
115 | interrupts = <29>; | ||
116 | clocks = <&clks 10>, <&clks 22>; | ||
117 | clock-names = "ipg", "per"; | ||
118 | }; | ||
119 | }; | ||
104 | }; | 120 | }; |
105 | }; | 121 | }; |