linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] i.MX: Add GPT devicetree nodes
@ 2013-03-14 12:08 Sascha Hauer
  2013-03-14 12:08 ` [PATCH 1/7] ARM: i.MX: Add GPT devicetree Documentation Sascha Hauer
                   ` (7 more replies)
  0 siblings, 8 replies; 12+ messages in thread
From: Sascha Hauer @ 2013-03-14 12:08 UTC (permalink / raw)
  To: linux-arm-kernel

The GPT is the general purpose timer found on i.MX SoCs. The bindings
are used on i.MX25 and i.MX6 already. The remaining i.MX SoCs still
use a platform based timer. This is a first step to change this: We
add the devicetree nodes for the other DT enabled SoCs (i.MX27, i.MX31,
i.MX51 and i.MX53).

This series also adds the missing binding documentation for the GPT.

The series is based on Shawns imx/dt branch.

The last patch adds the clocks to the i.MX27 GPT. This is not applicable
right now since it depends on the patch changing i.MX27 to devicetree
based clock lookups.

Sascga

----------------------------------------------------------------
Sascha Hauer (7):
      ARM: i.MX: Add GPT devicetree Documentation
      ARM: i.MX27: Add GPT devicetree nodes
      ARM: i.MX31: Add GPT devicetree node
      ARM: i.MX51: Add GPT devicetree node
      ARM: i.MX53: Add GPT devicetree node
      ARM: i.MX6: Add clocks to GPT devicetree node
      ARM: i.MX27: Add clocks to GPT devicetree nodes

 .../devicetree/bindings/timer/fsl,imxgpt.txt       | 18 ++++++++
 arch/arm/boot/dts/imx27.dtsip                      | 49 +++++++++++++++++++++-
 arch/arm/boot/dts/imx31.dtsip                      | 16 +++++++
 arch/arm/boot/dts/imx51.dtsip                      |  8 ++++
 arch/arm/boot/dts/imx53.dtsip                      |  8 ++++
 arch/arm/boot/dts/imx6qdl.dtsip                    |  2 +
 6 files changed, 100 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/timer/fsl,imxgpt.txt

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/7] ARM: i.MX: Add GPT devicetree Documentation
  2013-03-14 12:08 [PATCH] i.MX: Add GPT devicetree nodes Sascha Hauer
@ 2013-03-14 12:08 ` Sascha Hauer
  2013-03-14 18:02   ` Stephen Warren
  2013-03-14 12:08 ` [PATCH 2/7] ARM: i.MX27: Add GPT devicetree nodes Sascha Hauer
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 12+ messages in thread
From: Sascha Hauer @ 2013-03-14 12:08 UTC (permalink / raw)
  To: linux-arm-kernel

The GPT binding is already used on i.MX6 and i.MX25, but not yet
documented. Add a binding document for it.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 Documentation/devicetree/bindings/timer/fsl,imxgpt.txt | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/timer/fsl,imxgpt.txt

diff --git a/Documentation/devicetree/bindings/timer/fsl,imxgpt.txt b/Documentation/devicetree/bindings/timer/fsl,imxgpt.txt
new file mode 100644
index 0000000..544890a
--- /dev/null
+++ b/Documentation/devicetree/bindings/timer/fsl,imxgpt.txt
@@ -0,0 +1,18 @@
+Freescale i.MX GPT
+
+Required properties:
+
+- compatible : should be "fsl,<soc>-gpt"
+- reg : Specifies base physical address and size of the registers.
+- interrupts : A list of 4 interrupts; one per timer channel.
+- clocks : The clocks provided by the SoC to drive the timer.
+
+Example:
+
+gpt1: timer at 10003000 {
+	compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
+	reg = <0x10003000 0x1000>;
+	interrupts = <26>;
+	clocks = <&clks 46>, <&clks 61>;
+	clock-names = "ipg", "per";
+};
-- 
1.8.2.rc2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 2/7] ARM: i.MX27: Add GPT devicetree nodes
  2013-03-14 12:08 [PATCH] i.MX: Add GPT devicetree nodes Sascha Hauer
  2013-03-14 12:08 ` [PATCH 1/7] ARM: i.MX: Add GPT devicetree Documentation Sascha Hauer
@ 2013-03-14 12:08 ` Sascha Hauer
  2013-03-14 12:08 ` [PATCH 3/7] ARM: i.MX31: Add GPT devicetree node Sascha Hauer
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Sascha Hauer @ 2013-03-14 12:08 UTC (permalink / raw)
  To: linux-arm-kernel

The GPT is the GPT timer found on i.MX SoCs.

This adds the missing GPT devicetree nodes. Also fixup the watchdog
register map size along the way. it's 0x1000, not 0x4000. This didn't
hurt before as the region was not occupied by another device, but now
overlaps with the GPT.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 arch/arm/boot/dts/imx27.dtsip | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/imx27.dtsip b/arch/arm/boot/dts/imx27.dtsip
index 324130f..3e0585f 100644
--- a/arch/arm/boot/dts/imx27.dtsip
+++ b/arch/arm/boot/dts/imx27.dtsip
@@ -60,10 +60,28 @@
 
 			wdog: wdog at 10002000 {
 				compatible = "fsl,imx27-wdt", "fsl,imx21-wdt";
-				reg = <0x10002000 0x4000>;
+				reg = <0x10002000 0x1000>;
 				interrupts = <27>;
 			};
 
+			gpt1: timer at 10003000 {
+				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
+				reg = <0x10003000 0x1000>;
+				interrupts = <26>;
+			};
+
+			gpt2: timer at 10004000 {
+				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
+				reg = <0x10004000 0x1000>;
+				interrupts = <25>;
+			};
+
+			gpt3: timer at 10005000 {
+				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
+				reg = <0x10005000 0x1000>;
+				interrupts = <24>;
+			};
+
 			uart1: serial at 1000a000 {
 				compatible = "fsl,imx27-uart", "fsl,imx21-uart";
 				reg = <0x1000a000 0x1000>;
@@ -188,6 +206,18 @@
 				status = "disabled";
 			};
 
+			gpt4: timer at 10019000 {
+				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
+				reg = <0x10019000 0x1000>;
+				interrupts = <4>;
+			};
+
+			gpt5: timer at 1001a000 {
+				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
+				reg = <0x1001a000 0x1000>;
+				interrupts = <3>;
+			};
+
 			uart5: serial at 1001b000 {
 				compatible = "fsl,imx27-uart", "fsl,imx21-uart";
 				reg = <0x1001b000 0x1000>;
@@ -211,6 +241,11 @@
 				status = "disabled";
 			};
 
+			gpt6: timer at 1001f000 {
+				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
+				reg = <0x1001f000 0x1000>;
+				interrupts = <2>;
+			};
 		};
 
 		aipi at 10020000 { /* AIPI2 */
-- 
1.8.2.rc2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 3/7] ARM: i.MX31: Add GPT devicetree node
  2013-03-14 12:08 [PATCH] i.MX: Add GPT devicetree nodes Sascha Hauer
  2013-03-14 12:08 ` [PATCH 1/7] ARM: i.MX: Add GPT devicetree Documentation Sascha Hauer
  2013-03-14 12:08 ` [PATCH 2/7] ARM: i.MX27: Add GPT devicetree nodes Sascha Hauer
@ 2013-03-14 12:08 ` Sascha Hauer
  2013-03-14 12:08 ` [PATCH 4/7] ARM: i.MX51: " Sascha Hauer
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Sascha Hauer @ 2013-03-14 12:08 UTC (permalink / raw)
  To: linux-arm-kernel

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>
---
 arch/arm/boot/dts/imx31.dtsip | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/arch/arm/boot/dts/imx31.dtsip b/arch/arm/boot/dts/imx31.dtsip
index aa488ac..c544925 100644
--- a/arch/arm/boot/dts/imx31.dtsip
+++ b/arch/arm/boot/dts/imx31.dtsip
@@ -101,5 +101,21 @@
 				#clock-cells = <1>;
 			};
 		};
+
+		aips at 53f00000 { /* AIPS2 */
+			compatible = "fsl,aips-bus", "simple-bus";
+			#address-cells = <1>;
+			#size-cells = <1>;
+			reg = <0x53f00000 0x100000>;
+			ranges;
+
+			gpt: timer at 53f90000 {
+				compatible = "fsl,imx31-gpt";
+				reg = <0x53f90000 0x4000>;
+				interrupts = <29>;
+				clocks = <&clks 10>, <&clks 22>;
+				clock-names = "ipg", "per";
+			};
+		};
 	};
 };
-- 
1.8.2.rc2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 4/7] ARM: i.MX51: Add GPT devicetree node
  2013-03-14 12:08 [PATCH] i.MX: Add GPT devicetree nodes Sascha Hauer
                   ` (2 preceding siblings ...)
  2013-03-14 12:08 ` [PATCH 3/7] ARM: i.MX31: Add GPT devicetree node Sascha Hauer
@ 2013-03-14 12:08 ` Sascha Hauer
  2013-03-14 12:09 ` [PATCH 5/7] ARM: i.MX53: " Sascha Hauer
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Sascha Hauer @ 2013-03-14 12:08 UTC (permalink / raw)
  To: linux-arm-kernel

The GPT is the GPT timer found on i.MX SoCs. This patch adds the
devicetree node for it.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 arch/arm/boot/dts/imx51.dtsip | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/boot/dts/imx51.dtsip b/arch/arm/boot/dts/imx51.dtsip
index 6e14b75..fd3ddef 100644
--- a/arch/arm/boot/dts/imx51.dtsip
+++ b/arch/arm/boot/dts/imx51.dtsip
@@ -245,6 +245,14 @@
 				status = "disabled";
 			};
 
+			gpt: timer at 73fa0000 {
+				compatible = "fsl,imx51-gpt", "fsl,imx31-gpt";
+				reg = <0x73fa0000 0x4000>;
+				interrupts = <39>;
+				clocks = <&clks 36>, <&clks 41>;
+				clock-names = "ipg", "per";
+			};
+
 			iomuxc: iomuxc at 73fa8000 {
 				compatible = "fsl,imx51-iomuxc";
 				reg = <0x73fa8000 0x4000>;
-- 
1.8.2.rc2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 5/7] ARM: i.MX53: Add GPT devicetree node
  2013-03-14 12:08 [PATCH] i.MX: Add GPT devicetree nodes Sascha Hauer
                   ` (3 preceding siblings ...)
  2013-03-14 12:08 ` [PATCH 4/7] ARM: i.MX51: " Sascha Hauer
@ 2013-03-14 12:09 ` Sascha Hauer
  2013-03-14 12:09 ` [PATCH 6/7] ARM: i.MX6: Add clocks to " Sascha Hauer
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Sascha Hauer @ 2013-03-14 12:09 UTC (permalink / raw)
  To: linux-arm-kernel

The GPT is the GPT timer found on i.MX SoCs. This patch adds the
devicetree node for it.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 arch/arm/boot/dts/imx53.dtsip | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/boot/dts/imx53.dtsip b/arch/arm/boot/dts/imx53.dtsip
index 98149ac..6c73bee 100644
--- a/arch/arm/boot/dts/imx53.dtsip
+++ b/arch/arm/boot/dts/imx53.dtsip
@@ -243,6 +243,14 @@
 				status = "disabled";
 			};
 
+			gpt: timer at 53fa0000 {
+				compatible = "fsl,imx53-gpt", "fsl,imx31-gpt";
+				reg = <0x53fa0000 0x4000>;
+				interrupts = <39>;
+				clocks = <&clks 36>, <&clks 41>;
+				clock-names = "ipg", "per";
+			};
+
 			iomuxc: iomuxc at 53fa8000 {
 				compatible = "fsl,imx53-iomuxc";
 				reg = <0x53fa8000 0x4000>;
-- 
1.8.2.rc2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 6/7] ARM: i.MX6: Add clocks to GPT devicetree node
  2013-03-14 12:08 [PATCH] i.MX: Add GPT devicetree nodes Sascha Hauer
                   ` (4 preceding siblings ...)
  2013-03-14 12:09 ` [PATCH 5/7] ARM: i.MX53: " Sascha Hauer
@ 2013-03-14 12:09 ` Sascha Hauer
  2013-03-14 12:09 ` [PATCH 7/7] ARM: i.MX27: Add clocks to GPT devicetree nodes Sascha Hauer
  2013-03-15  5:43 ` [PATCH] i.MX: Add " Shawn Guo
  7 siblings, 0 replies; 12+ messages in thread
From: Sascha Hauer @ 2013-03-14 12:09 UTC (permalink / raw)
  To: linux-arm-kernel

The i.MX6 already has a devicetree node for the GPT, but not yet
has the clocks. Add them.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 arch/arm/boot/dts/imx6qdl.dtsip | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/boot/dts/imx6qdl.dtsip b/arch/arm/boot/dts/imx6qdl.dtsip
index 52b156f..aa92d43 100644
--- a/arch/arm/boot/dts/imx6qdl.dtsip
+++ b/arch/arm/boot/dts/imx6qdl.dtsip
@@ -282,6 +282,8 @@
 				compatible = "fsl,imx6q-gpt";
 				reg = <0x02098000 0x4000>;
 				interrupts = <0 55 0x04>;
+				clocks = <&clks 119>, <&clks 120>;
+				clock-names = "ipg", "per";
 			};
 
 			gpio1: gpio at 0209c000 {
-- 
1.8.2.rc2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 7/7] ARM: i.MX27: Add clocks to GPT devicetree nodes
  2013-03-14 12:08 [PATCH] i.MX: Add GPT devicetree nodes Sascha Hauer
                   ` (5 preceding siblings ...)
  2013-03-14 12:09 ` [PATCH 6/7] ARM: i.MX6: Add clocks to " Sascha Hauer
@ 2013-03-14 12:09 ` Sascha Hauer
  2013-03-15  5:43 ` [PATCH] i.MX: Add " Shawn Guo
  7 siblings, 0 replies; 12+ messages in thread
From: Sascha Hauer @ 2013-03-14 12:09 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 arch/arm/boot/dts/imx27.dtsip | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/arch/arm/boot/dts/imx27.dtsip b/arch/arm/boot/dts/imx27.dtsip
index 3e0585f..3ea1f59 100644
--- a/arch/arm/boot/dts/imx27.dtsip
+++ b/arch/arm/boot/dts/imx27.dtsip
@@ -68,18 +68,24 @@
 				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
 				reg = <0x10003000 0x1000>;
 				interrupts = <26>;
+				clocks = <&clks 46>, <&clks 61>;
+				clock-names = "ipg", "per";
 			};
 
 			gpt2: timer at 10004000 {
 				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
 				reg = <0x10004000 0x1000>;
 				interrupts = <25>;
+				clocks = <&clks 45>, <&clks 61>;
+				clock-names = "ipg", "per";
 			};
 
 			gpt3: timer at 10005000 {
 				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
 				reg = <0x10005000 0x1000>;
 				interrupts = <24>;
+				clocks = <&clks 44>, <&clks 61>;
+				clock-names = "ipg", "per";
 			};
 
 			uart1: serial at 1000a000 {
@@ -210,12 +216,16 @@
 				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
 				reg = <0x10019000 0x1000>;
 				interrupts = <4>;
+				clocks = <&clks 43>, <&clks 61>;
+				clock-names = "ipg", "per";
 			};
 
 			gpt5: timer at 1001a000 {
 				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
 				reg = <0x1001a000 0x1000>;
 				interrupts = <3>;
+				clocks = <&clks 42>, <&clks 61>;
+				clock-names = "ipg", "per";
 			};
 
 			uart5: serial at 1001b000 {
@@ -245,6 +255,8 @@
 				compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
 				reg = <0x1001f000 0x1000>;
 				interrupts = <2>;
+				clocks = <&clks 41>, <&clks 61>;
+				clock-names = "ipg", "per";
 			};
 		};
 
-- 
1.8.2.rc2

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 1/7] ARM: i.MX: Add GPT devicetree Documentation
  2013-03-14 12:08 ` [PATCH 1/7] ARM: i.MX: Add GPT devicetree Documentation Sascha Hauer
@ 2013-03-14 18:02   ` Stephen Warren
  2013-03-15  5:42     ` Shawn Guo
  0 siblings, 1 reply; 12+ messages in thread
From: Stephen Warren @ 2013-03-14 18:02 UTC (permalink / raw)
  To: linux-arm-kernel

On 03/14/2013 06:08 AM, Sascha Hauer wrote:
> The GPT binding is already used on i.MX6 and i.MX25, but not yet
> documented. Add a binding document for it.

> diff --git a/Documentation/devicetree/bindings/timer/fsl,imxgpt.txt b/Documentation/devicetree/bindings/timer/fsl,imxgpt.txt

> +Freescale i.MX GPT

You might want to mention what "GPT" is here, or at least expand the
acronym. I first read this as "GUID Partition Table".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/7] ARM: i.MX: Add GPT devicetree Documentation
  2013-03-14 18:02   ` Stephen Warren
@ 2013-03-15  5:42     ` Shawn Guo
  2013-03-15  6:11       ` Sascha Hauer
  0 siblings, 1 reply; 12+ messages in thread
From: Shawn Guo @ 2013-03-15  5:42 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Mar 14, 2013 at 12:02:58PM -0600, Stephen Warren wrote:
> On 03/14/2013 06:08 AM, Sascha Hauer wrote:
> > The GPT binding is already used on i.MX6 and i.MX25, but not yet
> > documented. Add a binding document for it.
> 
> > diff --git a/Documentation/devicetree/bindings/timer/fsl,imxgpt.txt b/Documentation/devicetree/bindings/timer/fsl,imxgpt.txt
> 
> > +Freescale i.MX GPT
> 
> You might want to mention what "GPT" is here, or at least expand the
> acronym. I first read this as "GUID Partition Table".

I just fixed it as below and applied the patch (actually the series).

Freescale i.MX General Purpose Timer (GPT)

Shawn

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH] i.MX: Add GPT devicetree nodes
  2013-03-14 12:08 [PATCH] i.MX: Add GPT devicetree nodes Sascha Hauer
                   ` (6 preceding siblings ...)
  2013-03-14 12:09 ` [PATCH 7/7] ARM: i.MX27: Add clocks to GPT devicetree nodes Sascha Hauer
@ 2013-03-15  5:43 ` Shawn Guo
  7 siblings, 0 replies; 12+ messages in thread
From: Shawn Guo @ 2013-03-15  5:43 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Mar 14, 2013 at 01:08:55PM +0100, Sascha Hauer wrote:
> The GPT is the general purpose timer found on i.MX SoCs. The bindings
> are used on i.MX25 and i.MX6 already. The remaining i.MX SoCs still
> use a platform based timer. This is a first step to change this: We
> add the devicetree nodes for the other DT enabled SoCs (i.MX27, i.MX31,
> i.MX51 and i.MX53).
> 
> This series also adds the missing binding documentation for the GPT.
> 
> The series is based on Shawns imx/dt branch.
> 
> The last patch adds the clocks to the i.MX27 GPT. This is not applicable
> right now since it depends on the patch changing i.MX27 to devicetree
> based clock lookups.
> 
I just applied Fabio's clock lookup patch and the series to imx/dt
branch.

Shawn

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/7] ARM: i.MX: Add GPT devicetree Documentation
  2013-03-15  5:42     ` Shawn Guo
@ 2013-03-15  6:11       ` Sascha Hauer
  0 siblings, 0 replies; 12+ messages in thread
From: Sascha Hauer @ 2013-03-15  6:11 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Mar 15, 2013 at 01:42:06PM +0800, Shawn Guo wrote:
> On Thu, Mar 14, 2013 at 12:02:58PM -0600, Stephen Warren wrote:
> > On 03/14/2013 06:08 AM, Sascha Hauer wrote:
> > > The GPT binding is already used on i.MX6 and i.MX25, but not yet
> > > documented. Add a binding document for it.
> > 
> > > diff --git a/Documentation/devicetree/bindings/timer/fsl,imxgpt.txt b/Documentation/devicetree/bindings/timer/fsl,imxgpt.txt
> > 
> > > +Freescale i.MX GPT
> > 
> > You might want to mention what "GPT" is here, or at least expand the
> > acronym. I first read this as "GUID Partition Table".
> 
> I just fixed it as below and applied the patch (actually the series).
> 
> Freescale i.MX General Purpose Timer (GPT)

Thanks for fixing, Shawn.

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2013-03-15  6:11 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-14 12:08 [PATCH] i.MX: Add GPT devicetree nodes Sascha Hauer
2013-03-14 12:08 ` [PATCH 1/7] ARM: i.MX: Add GPT devicetree Documentation Sascha Hauer
2013-03-14 18:02   ` Stephen Warren
2013-03-15  5:42     ` Shawn Guo
2013-03-15  6:11       ` Sascha Hauer
2013-03-14 12:08 ` [PATCH 2/7] ARM: i.MX27: Add GPT devicetree nodes Sascha Hauer
2013-03-14 12:08 ` [PATCH 3/7] ARM: i.MX31: Add GPT devicetree node Sascha Hauer
2013-03-14 12:08 ` [PATCH 4/7] ARM: i.MX51: " Sascha Hauer
2013-03-14 12:09 ` [PATCH 5/7] ARM: i.MX53: " Sascha Hauer
2013-03-14 12:09 ` [PATCH 6/7] ARM: i.MX6: Add clocks to " Sascha Hauer
2013-03-14 12:09 ` [PATCH 7/7] ARM: i.MX27: Add clocks to GPT devicetree nodes Sascha Hauer
2013-03-15  5:43 ` [PATCH] i.MX: Add " Shawn Guo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).