devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM: dra7: Enable Errata i877
@ 2016-03-03  8:42 Lokesh Vutla
       [not found] ` <1456994525-20573-1-git-send-email-lokeshvutla-l0cyMroinI0@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Lokesh Vutla @ 2016-03-03  8:42 UTC (permalink / raw)
  To: linux-omap-u79uwXL29TY76Z2rM5mHXA, paul-DWxLp4Yu+b8AvxtiuMwx3w,
	tony-4v6yS6AI5VpBDgjK7y7TUQ
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Tero Kristo,
	Sekhar Nori, Mugunthan V N, Lokesh Vutla

This series enables Errata i877 for all DRA7 platforms. The public errata
documentation can be found here[1].

[1] http://www.ti.com/lit/er/sprz429h/sprz429h.pdf

Lokesh Vutla (1):
  ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property

Mugunthan V N (1):
  ARM: dts: dra7: do not gate cpsw clock due to errata i877

 Documentation/devicetree/bindings/arm/omap/omap.txt |  1 +
 arch/arm/boot/dts/dra7.dtsi                         | 10 ++++++++++
 arch/arm/mach-omap2/omap_hwmod.c                    |  9 ++++++++-
 arch/arm/mach-omap2/omap_hwmod.h                    |  3 +++
 4 files changed, 22 insertions(+), 1 deletion(-)

-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 1/2] ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property
       [not found] ` <1456994525-20573-1-git-send-email-lokeshvutla-l0cyMroinI0@public.gmane.org>
@ 2016-03-03  8:42   ` Lokesh Vutla
       [not found]     ` <1456994525-20573-2-git-send-email-lokeshvutla-l0cyMroinI0@public.gmane.org>
  2016-03-03  8:42   ` [PATCH 2/2] ARM: dts: dra7: do not gate cpsw clock due to errata i877 Lokesh Vutla
  2016-03-07  9:39   ` [PATCH 0/2] ARM: dra7: Enable Errata i877 Paul Walmsley
  2 siblings, 1 reply; 8+ messages in thread
From: Lokesh Vutla @ 2016-03-03  8:42 UTC (permalink / raw)
  To: linux-omap-u79uwXL29TY76Z2rM5mHXA, paul-DWxLp4Yu+b8AvxtiuMwx3w,
	tony-4v6yS6AI5VpBDgjK7y7TUQ
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Tero Kristo,
	Sekhar Nori, Mugunthan V N, Lokesh Vutla, Dave Gerlach

Introduce a dt property, ti,no-idle, that prevents an IP to idle at any
point. This is to handle Errata i877, which tells that GMAC clocks
cannot be disabled.

Acked-by: Roger Quadros <rogerq-l0cyMroinI0@public.gmane.org>
Tested-by: Mugunthan V N <mugunthanvnm-l0cyMroinI0@public.gmane.org>
Signed-off-by: Lokesh Vutla <lokeshvutla-l0cyMroinI0@public.gmane.org>
Signed-off-by: Sekhar Nori <nsekhar-l0cyMroinI0@public.gmane.org>
Signed-off-by: Dave Gerlach <d-gerlach-l0cyMroinI0@public.gmane.org>
---
 Documentation/devicetree/bindings/arm/omap/omap.txt | 1 +
 arch/arm/mach-omap2/omap_hwmod.c                    | 9 ++++++++-
 arch/arm/mach-omap2/omap_hwmod.h                    | 3 +++
 3 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/arm/omap/omap.txt b/Documentation/devicetree/bindings/arm/omap/omap.txt
index 739bc48..21e71a5 100644
--- a/Documentation/devicetree/bindings/arm/omap/omap.txt
+++ b/Documentation/devicetree/bindings/arm/omap/omap.txt
@@ -23,6 +23,7 @@ Optional properties:
   during suspend.
 - ti,no-reset-on-init: When present, the module should not be reset at init
 - ti,no-idle-on-init: When present, the module should not be idled at init
+- ti,no-idle: When present, the module is never allowed to idle.
 
 Example:
 
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
index e9f65fe..b6d62e4 100644
--- a/arch/arm/mach-omap2/omap_hwmod.c
+++ b/arch/arm/mach-omap2/omap_hwmod.c
@@ -2200,6 +2200,11 @@ static int _enable(struct omap_hwmod *oh)
  */
 static int _idle(struct omap_hwmod *oh)
 {
+	if (oh->flags & HWMOD_NO_IDLE) {
+		oh->_int_flags |= _HWMOD_SKIP_ENABLE;
+		return 0;
+	}
+
 	pr_debug("omap_hwmod: %s: idling\n", oh->name);
 
 	if (oh->_state != _HWMOD_STATE_ENABLED) {
@@ -2504,6 +2509,8 @@ static int __init _init(struct omap_hwmod *oh, void *data)
 			oh->flags |= HWMOD_INIT_NO_RESET;
 		if (of_find_property(np, "ti,no-idle-on-init", NULL))
 			oh->flags |= HWMOD_INIT_NO_IDLE;
+		if (of_find_property(np, "ti,no-idle", NULL))
+			oh->flags |= HWMOD_NO_IDLE;
 	}
 
 	oh->_state = _HWMOD_STATE_INITIALIZED;
@@ -2630,7 +2637,7 @@ static void __init _setup_postsetup(struct omap_hwmod *oh)
 	 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
 	 * it should be set by the core code as a runtime flag during startup
 	 */
-	if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
+	if ((oh->flags & (HWMOD_INIT_NO_IDLE | HWMOD_NO_IDLE)) &&
 	    (postsetup_state == _HWMOD_STATE_IDLE)) {
 		oh->_int_flags |= _HWMOD_SKIP_ENABLE;
 		postsetup_state = _HWMOD_STATE_ENABLED;
diff --git a/arch/arm/mach-omap2/omap_hwmod.h b/arch/arm/mach-omap2/omap_hwmod.h
index 76bce11..7c7a311 100644
--- a/arch/arm/mach-omap2/omap_hwmod.h
+++ b/arch/arm/mach-omap2/omap_hwmod.h
@@ -525,6 +525,8 @@ struct omap_hwmod_omap4_prcm {
  *     or idled.
  * HWMOD_OPT_CLKS_NEEDED: The optional clocks are needed for the module to
  *     operate and they need to be handled at the same time as the main_clk.
+ * HWMOD_NO_IDLE: Do not idle the hwmod at all. Useful to handle certain
+ *     IPs like CPSW on DRA7, where clocks to this module cannot be disabled.
  */
 #define HWMOD_SWSUP_SIDLE			(1 << 0)
 #define HWMOD_SWSUP_MSTANDBY			(1 << 1)
@@ -541,6 +543,7 @@ struct omap_hwmod_omap4_prcm {
 #define HWMOD_SWSUP_SIDLE_ACT			(1 << 12)
 #define HWMOD_RECONFIG_IO_CHAIN			(1 << 13)
 #define HWMOD_OPT_CLKS_NEEDED			(1 << 14)
+#define HWMOD_NO_IDLE				(1 << 15)
 
 /*
  * omap_hwmod._int_flags definitions
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 2/2] ARM: dts: dra7: do not gate cpsw clock due to errata i877
       [not found] ` <1456994525-20573-1-git-send-email-lokeshvutla-l0cyMroinI0@public.gmane.org>
  2016-03-03  8:42   ` [PATCH 1/2] ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property Lokesh Vutla
@ 2016-03-03  8:42   ` Lokesh Vutla
  2016-03-07  9:39   ` [PATCH 0/2] ARM: dra7: Enable Errata i877 Paul Walmsley
  2 siblings, 0 replies; 8+ messages in thread
From: Lokesh Vutla @ 2016-03-03  8:42 UTC (permalink / raw)
  To: linux-omap-u79uwXL29TY76Z2rM5mHXA, paul-DWxLp4Yu+b8AvxtiuMwx3w,
	tony-4v6yS6AI5VpBDgjK7y7TUQ
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Tero Kristo,
	Sekhar Nori, Mugunthan V N, Lokesh Vutla, Grygorii Strashko

From: Mugunthan V N <mugunthanvnm-l0cyMroinI0@public.gmane.org>

Errata id: i877

Description:
------------
The RGMII 1000 Mbps Transmit timing is based on the output clock
(rgmiin_txc) being driven relative to the rising edge of an internal
clock and the output control/data (rgmiin_txctl/txd) being driven relative
to the falling edge of an internal clock source. If the internal clock
source is allowed to be static low (i.e., disabled) for an extended period
of time then when the clock is actually enabled the timing delta between
the rising edge and falling edge can change over the lifetime of the
device. This can result in the device switching characteristics degrading
over time, and eventually failing to meet the Data Manual Delay Time/Skew
specs.
To maintain RGMII 1000 Mbps IO Timings, SW should minimize the
duration that the Ethernet internal clock source is disabled. Note that
the device reset state for the Ethernet clock is "disabled".
Other RGMII modes (10 Mbps, 100Mbps) are not affected

Workaround:
-----------
If the SoC Ethernet interface(s) are used in RGMII mode at 1000 Mbps,
SW should minimize the time the Ethernet internal clock source is disabled
to a maximum of 200 hours in a device life cycle. This is done by enabling
the clock as early as possible in IPL (QNX) or SPL/u-boot (Linux/Android)
by setting the register CM_GMAC_CLKSTCTRL[1:0]CLKTRCTRL = 0x2:SW_WKUP.

So, do not allow to gate the cpsw clocks using ti,no-idle property in
cpsw node assuming 1000 Mbps is being used all the time. If someone does
not need 1000 Mbps and wants to gate clocks to cpsw, this property needs
to be deleted in their respective board files.

Signed-off-by: Mugunthan V N <mugunthanvnm-l0cyMroinI0@public.gmane.org>
Signed-off-by: Grygorii Strashko <grygorii.strashko-l0cyMroinI0@public.gmane.org>
Signed-off-by: Lokesh Vutla <lokeshvutla-l0cyMroinI0@public.gmane.org>
---
 arch/arm/boot/dts/dra7.dtsi | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi
index 6a4572a..340b657 100644
--- a/arch/arm/boot/dts/dra7.dtsi
+++ b/arch/arm/boot/dts/dra7.dtsi
@@ -1466,6 +1466,16 @@
 			       0x48485200 0x2E00>;
 			#address-cells = <1>;
 			#size-cells = <1>;
+
+			/*
+			 * Do not allow gating of cpsw clock as workaround
+			 * for errata i877. Keeping internal clock disabled
+			 * causes the device switching characteristics
+			 * to degrade over time and eventually fail to meet
+			 * the data manual delay time/skew specs.
+			 */
+			ti,no-idle;
+
 			/*
 			 * rx_thresh_pend
 			 * rx_pend
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 1/2] ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property
       [not found]     ` <1456994525-20573-2-git-send-email-lokeshvutla-l0cyMroinI0@public.gmane.org>
@ 2016-03-05  4:28       ` Rob Herring
  0 siblings, 0 replies; 8+ messages in thread
From: Rob Herring @ 2016-03-05  4:28 UTC (permalink / raw)
  To: Lokesh Vutla
  Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA, paul-DWxLp4Yu+b8AvxtiuMwx3w,
	tony-4v6yS6AI5VpBDgjK7y7TUQ, devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Tero Kristo,
	Sekhar Nori, Mugunthan V N, Dave Gerlach

On Thu, Mar 03, 2016 at 02:12:04PM +0530, Lokesh Vutla wrote:
> Introduce a dt property, ti,no-idle, that prevents an IP to idle at any
> point. This is to handle Errata i877, which tells that GMAC clocks
> cannot be disabled.
> 
> Acked-by: Roger Quadros <rogerq-l0cyMroinI0@public.gmane.org>
> Tested-by: Mugunthan V N <mugunthanvnm-l0cyMroinI0@public.gmane.org>
> Signed-off-by: Lokesh Vutla <lokeshvutla-l0cyMroinI0@public.gmane.org>
> Signed-off-by: Sekhar Nori <nsekhar-l0cyMroinI0@public.gmane.org>
> Signed-off-by: Dave Gerlach <d-gerlach-l0cyMroinI0@public.gmane.org>
> ---
>  Documentation/devicetree/bindings/arm/omap/omap.txt | 1 +

Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>

>  arch/arm/mach-omap2/omap_hwmod.c                    | 9 ++++++++-
>  arch/arm/mach-omap2/omap_hwmod.h                    | 3 +++
>  3 files changed, 12 insertions(+), 1 deletion(-)
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 0/2] ARM: dra7: Enable Errata i877
       [not found] ` <1456994525-20573-1-git-send-email-lokeshvutla-l0cyMroinI0@public.gmane.org>
  2016-03-03  8:42   ` [PATCH 1/2] ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property Lokesh Vutla
  2016-03-03  8:42   ` [PATCH 2/2] ARM: dts: dra7: do not gate cpsw clock due to errata i877 Lokesh Vutla
@ 2016-03-07  9:39   ` Paul Walmsley
       [not found]     ` <alpine.DEB.2.02.1603070938170.3437-rwI8Ez+7Ko+d5PgPZx9QOdBPR1lH4CV8@public.gmane.org>
  2 siblings, 1 reply; 8+ messages in thread
From: Paul Walmsley @ 2016-03-07  9:39 UTC (permalink / raw)
  To: Lokesh Vutla
  Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA, tony-4v6yS6AI5VpBDgjK7y7TUQ,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Tero Kristo,
	Sekhar Nori, Mugunthan V N

On Thu, 3 Mar 2016, Lokesh Vutla wrote:

> This series enables Errata i877 for all DRA7 platforms. The public errata
> documentation can be found here[1].
> 
> [1] http://www.ti.com/lit/er/sprz429h/sprz429h.pdf
> 
> Lokesh Vutla (1):
>   ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property
> 
> Mugunthan V N (1):
>   ARM: dts: dra7: do not gate cpsw clock due to errata i877

I've sent these for merging immediately. 

Have you sent patches for U-boot yet?


- Paul
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 0/2] ARM: dra7: Enable Errata i877
       [not found]     ` <alpine.DEB.2.02.1603070938170.3437-rwI8Ez+7Ko+d5PgPZx9QOdBPR1lH4CV8@public.gmane.org>
@ 2016-03-07  9:40       ` Lokesh Vutla
       [not found]         ` <56DD4C70.7070105-l0cyMroinI0@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Lokesh Vutla @ 2016-03-07  9:40 UTC (permalink / raw)
  To: Paul Walmsley, Lokesh Vutla
  Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA, tony-4v6yS6AI5VpBDgjK7y7TUQ,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Tero Kristo,
	Sekhar Nori, Mugunthan V N



On Monday 07 March 2016 03:09 PM, Paul Walmsley wrote:
> On Thu, 3 Mar 2016, Lokesh Vutla wrote:
> 
>> This series enables Errata i877 for all DRA7 platforms. The public errata
>> documentation can be found here[1].
>>
>> [1] http://www.ti.com/lit/er/sprz429h/sprz429h.pdf
>>
>> Lokesh Vutla (1):
>>   ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property
>>
>> Mugunthan V N (1):
>>   ARM: dts: dra7: do not gate cpsw clock due to errata i877
> 
> I've sent these for merging immediately. 
> 
> Have you sent patches for U-boot yet?
Yes, It is already merged into u-boot.
http://git.denx.de/?p=u-boot.git;a=commitdiff;h=f986d9720836433ded29f06c8f5aed462bd20924;hp=65e9d56fb9ce9cfd7ffff7afaa6b7de50e400e06

Thanks and regards,
Lokesh

> 
> 
> - Paul
> 
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 0/2] ARM: dra7: Enable Errata i877
       [not found]         ` <56DD4C70.7070105-l0cyMroinI0@public.gmane.org>
@ 2016-03-07 23:56           ` Paul Walmsley
       [not found]             ` <alpine.DEB.2.02.1603072355030.27387-rwI8Ez+7Ko+d5PgPZx9QOdBPR1lH4CV8@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Paul Walmsley @ 2016-03-07 23:56 UTC (permalink / raw)
  To: Lokesh Vutla
  Cc: Lokesh Vutla, linux-omap-u79uwXL29TY76Z2rM5mHXA,
	tony-4v6yS6AI5VpBDgjK7y7TUQ, devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Tero Kristo,
	Sekhar Nori, Mugunthan V N

On Mon, 7 Mar 2016, Lokesh Vutla wrote:

> On Monday 07 March 2016 03:09 PM, Paul Walmsley wrote:
> > On Thu, 3 Mar 2016, Lokesh Vutla wrote:
> > 
> >> This series enables Errata i877 for all DRA7 platforms. The public errata
> >> documentation can be found here[1].
> >>
> >> [1] http://www.ti.com/lit/er/sprz429h/sprz429h.pdf
> >>
> >> Lokesh Vutla (1):
> >>   ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property
> >>
> >> Mugunthan V N (1):
> >>   ARM: dts: dra7: do not gate cpsw clock due to errata i877
> > 
> > I've sent these for merging immediately. 
> > 
> > Have you sent patches for U-boot yet?
> Yes, It is already merged into u-boot.
> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=f986d9720836433ded29f06c8f5aed462bd20924;hp=65e9d56fb9ce9cfd7ffff7afaa6b7de50e400e06

I may be misreading this patch, but all it seems to do is add clock 
control for GMAC.  It doesn't seem to force the clock to stay on.  What am 
I missing?


- Paul
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 0/2] ARM: dra7: Enable Errata i877
       [not found]             ` <alpine.DEB.2.02.1603072355030.27387-rwI8Ez+7Ko+d5PgPZx9QOdBPR1lH4CV8@public.gmane.org>
@ 2016-03-08  3:53               ` Lokesh Vutla
  0 siblings, 0 replies; 8+ messages in thread
From: Lokesh Vutla @ 2016-03-08  3:53 UTC (permalink / raw)
  To: Paul Walmsley
  Cc: Lokesh Vutla, linux-omap-u79uwXL29TY76Z2rM5mHXA,
	tony-4v6yS6AI5VpBDgjK7y7TUQ, devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Tero Kristo,
	Sekhar Nori, Mugunthan V N



On Tuesday 08 March 2016 05:26 AM, Paul Walmsley wrote:
> On Mon, 7 Mar 2016, Lokesh Vutla wrote:
> 
>> On Monday 07 March 2016 03:09 PM, Paul Walmsley wrote:
>>> On Thu, 3 Mar 2016, Lokesh Vutla wrote:
>>>
>>>> This series enables Errata i877 for all DRA7 platforms. The public errata
>>>> documentation can be found here[1].
>>>>
>>>> [1] http://www.ti.com/lit/er/sprz429h/sprz429h.pdf
>>>>
>>>> Lokesh Vutla (1):
>>>>   ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property
>>>>
>>>> Mugunthan V N (1):
>>>>   ARM: dts: dra7: do not gate cpsw clock due to errata i877
>>>
>>> I've sent these for merging immediately. 
>>>
>>> Have you sent patches for U-boot yet?
>> Yes, It is already merged into u-boot.
>> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=f986d9720836433ded29f06c8f5aed462bd20924;hp=65e9d56fb9ce9cfd7ffff7afaa6b7de50e400e06
> 
> I may be misreading this patch, but all it seems to do is add clock 
> control for GMAC.  It doesn't seem to force the clock to stay on.  What am 
> I missing?
So, this is an array containing clock controls which are needed very
early. This array will be passed to clock framework to enable all the
clocks. Just adding it to the array is sufficient.

Thanks and regards,
Lokesh

> 
> 
> - Paul
> 
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2016-03-08  3:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-03  8:42 [PATCH 0/2] ARM: dra7: Enable Errata i877 Lokesh Vutla
     [not found] ` <1456994525-20573-1-git-send-email-lokeshvutla-l0cyMroinI0@public.gmane.org>
2016-03-03  8:42   ` [PATCH 1/2] ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property Lokesh Vutla
     [not found]     ` <1456994525-20573-2-git-send-email-lokeshvutla-l0cyMroinI0@public.gmane.org>
2016-03-05  4:28       ` Rob Herring
2016-03-03  8:42   ` [PATCH 2/2] ARM: dts: dra7: do not gate cpsw clock due to errata i877 Lokesh Vutla
2016-03-07  9:39   ` [PATCH 0/2] ARM: dra7: Enable Errata i877 Paul Walmsley
     [not found]     ` <alpine.DEB.2.02.1603070938170.3437-rwI8Ez+7Ko+d5PgPZx9QOdBPR1lH4CV8@public.gmane.org>
2016-03-07  9:40       ` Lokesh Vutla
     [not found]         ` <56DD4C70.7070105-l0cyMroinI0@public.gmane.org>
2016-03-07 23:56           ` Paul Walmsley
     [not found]             ` <alpine.DEB.2.02.1603072355030.27387-rwI8Ez+7Ko+d5PgPZx9QOdBPR1lH4CV8@public.gmane.org>
2016-03-08  3:53               ` Lokesh Vutla

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).