public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround
@ 2013-03-04 23:29 Stephen Warren
  2013-03-04 23:29 ` [U-Boot] [PATCH 2/2] ARM: tegra: enable workaround for ARM erratum 716044 Stephen Warren
  2013-03-21 16:29 ` [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround Tom Warren
  0 siblings, 2 replies; 11+ messages in thread
From: Stephen Warren @ 2013-03-04 23:29 UTC (permalink / raw)
  To: u-boot

From: Stephen Warren <swarren@nvidia.com>

Add common code to enable the workaround for ARM erratum 716044. This
will be enabled for Tegra.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
This depends on my previous ARM errata series. I found out we needed
another one after I wrote the first series.

 README                     |    1 +
 arch/arm/cpu/armv7/start.S |    6 ++++++
 2 files changed, 7 insertions(+)

diff --git a/README b/README
index f2b1c88..97ef9f0 100644
--- a/README
+++ b/README
@@ -485,6 +485,7 @@ The following options need to be configured:
 		Thumb2 this flag will result in Thumb2 code generated by
 		GCC.
 
+		CONFIG_ARM_ERRATA_716044
 		CONFIG_ARM_ERRATA_742230
 		CONFIG_ARM_ERRATA_743622
 		CONFIG_ARM_ERRATA_751472
diff --git a/arch/arm/cpu/armv7/start.S b/arch/arm/cpu/armv7/start.S
index 30f02d3..6834ffe 100644
--- a/arch/arm/cpu/armv7/start.S
+++ b/arch/arm/cpu/armv7/start.S
@@ -310,6 +310,12 @@ ENTRY(cpu_init_cp15)
 #endif
 	mcr	p15, 0, r0, c1, c0, 0
 
+#ifdef CONFIG_ARM_ERRATA_716044
+	mrc	p15, 0, r0, c1, c0, 0	@ read system control register
+	orr	r0, r0, #1 << 11	@ set bit #11
+	mcr	p15, 0, r0, c1, c0, 0	@ write system control register
+#endif
+
 #ifdef CONFIG_ARM_ERRATA_742230
 	mrc	p15, 0, r0, c15, c0, 1	@ read diagnostic register
 	orr	r0, r0, #1 << 4		@ set bit #4
-- 
1.7.10.4

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

* [U-Boot] [PATCH 2/2] ARM: tegra: enable workaround for ARM erratum 716044
  2013-03-04 23:29 [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround Stephen Warren
@ 2013-03-04 23:29 ` Stephen Warren
  2013-03-07 17:18   ` Tom Warren
  2013-03-21 16:29 ` [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround Tom Warren
  1 sibling, 1 reply; 11+ messages in thread
From: Stephen Warren @ 2013-03-04 23:29 UTC (permalink / raw)
  To: u-boot

From: Stephen Warren <swarren@nvidia.com>

Tegra20 requires the workaround for this erratum. Enable it.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
 include/configs/tegra20-common.h |    1 +
 1 file changed, 1 insertion(+)

diff --git a/include/configs/tegra20-common.h b/include/configs/tegra20-common.h
index e464e06..395a657 100644
--- a/include/configs/tegra20-common.h
+++ b/include/configs/tegra20-common.h
@@ -28,6 +28,7 @@
 /*
  * Errata configuration
  */
+#define CONFIG_ARM_ERRATA_716044
 #define CONFIG_ARM_ERRATA_742230
 #define CONFIG_ARM_ERRATA_751472
 
-- 
1.7.10.4

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

* [U-Boot] [PATCH 2/2] ARM: tegra: enable workaround for ARM erratum 716044
  2013-03-04 23:29 ` [U-Boot] [PATCH 2/2] ARM: tegra: enable workaround for ARM erratum 716044 Stephen Warren
@ 2013-03-07 17:18   ` Tom Warren
  0 siblings, 0 replies; 11+ messages in thread
From: Tom Warren @ 2013-03-07 17:18 UTC (permalink / raw)
  To: u-boot

Stephen/Albert,

> -----Original Message-----
> From: Stephen Warren [mailto:swarren at wwwdotorg.org]
> Sent: Monday, March 04, 2013 4:30 PM
> To: u-boot at lists.denx.de; Albert Aribaud
> Cc: Simon Glass; Tom Warren; Stephen Warren
> Subject: [PATCH 2/2] ARM: tegra: enable workaround for ARM erratum 716044
> 
> From: Stephen Warren <swarren@nvidia.com>
> 
> Tegra20 requires the workaround for this erratum. Enable it.
> 
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
>  include/configs/tegra20-common.h |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/include/configs/tegra20-common.h b/include/configs/tegra20-
> common.h
> index e464e06..395a657 100644
> --- a/include/configs/tegra20-common.h
> +++ b/include/configs/tegra20-common.h
> @@ -28,6 +28,7 @@
>  /*
>   * Errata configuration
>   */
> +#define CONFIG_ARM_ERRATA_716044
>  #define CONFIG_ARM_ERRATA_742230
>  #define CONFIG_ARM_ERRATA_751472

The two sets of ARM erratum patches are currently assigned to Albert. I can take just the Tegra patches, since adding these #defines won't affect anything w/o the corresponding ARM code. Let me know if you (Albert) want me to take the 2 ARM: tegra: errata patches in thru the Tegra tree, or if you'll take 'em whole hog in thru ARM.

Tom
> 
--
nvpublic

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

* [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround
  2013-03-04 23:29 [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround Stephen Warren
  2013-03-04 23:29 ` [U-Boot] [PATCH 2/2] ARM: tegra: enable workaround for ARM erratum 716044 Stephen Warren
@ 2013-03-21 16:29 ` Tom Warren
  2013-03-21 17:55   ` Albert ARIBAUD
  1 sibling, 1 reply; 11+ messages in thread
From: Tom Warren @ 2013-03-21 16:29 UTC (permalink / raw)
  To: u-boot

Albert,

> -----Original Message-----
> From: Stephen Warren [mailto:swarren at wwwdotorg.org]
> Sent: Monday, March 04, 2013 4:30 PM
> To: u-boot at lists.denx.de; Albert Aribaud
> Cc: Simon Glass; Tom Warren; Stephen Warren
> Subject: [PATCH 1/2] ARM: implement erratum 716044 workaround

This patchset from Stephen (includes "2/2 ARM: tegra: enable workaround for ARM erratum 716044") are both assigned to you in PatchWork, but haven't been applied yet to ARM/master AFAICT. I found them when I was searching for unapplied Tegra patches.

Could you please take this in thru the ARM tree ASAP?

Thanks,

Tom
> 
> From: Stephen Warren <swarren@nvidia.com>
> 
> Add common code to enable the workaround for ARM erratum 716044. This
> will be enabled for Tegra.
> 
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
> This depends on my previous ARM errata series. I found out we needed
> another one after I wrote the first series.
> 
>  README                     |    1 +
>  arch/arm/cpu/armv7/start.S |    6 ++++++
>  2 files changed, 7 insertions(+)
> 
> diff --git a/README b/README
> index f2b1c88..97ef9f0 100644
> --- a/README
> +++ b/README
> @@ -485,6 +485,7 @@ The following options need to be configured:
>  		Thumb2 this flag will result in Thumb2 code generated by
>  		GCC.
> 
> +		CONFIG_ARM_ERRATA_716044
>  		CONFIG_ARM_ERRATA_742230
>  		CONFIG_ARM_ERRATA_743622
>  		CONFIG_ARM_ERRATA_751472
> diff --git a/arch/arm/cpu/armv7/start.S b/arch/arm/cpu/armv7/start.S index
> 30f02d3..6834ffe 100644
> --- a/arch/arm/cpu/armv7/start.S
> +++ b/arch/arm/cpu/armv7/start.S
> @@ -310,6 +310,12 @@ ENTRY(cpu_init_cp15)  #endif
>  	mcr	p15, 0, r0, c1, c0, 0
> 
> +#ifdef CONFIG_ARM_ERRATA_716044
> +	mrc	p15, 0, r0, c1, c0, 0	@ read system control register
> +	orr	r0, r0, #1 << 11	@ set bit #11
> +	mcr	p15, 0, r0, c1, c0, 0	@ write system control register
> +#endif
> +
>  #ifdef CONFIG_ARM_ERRATA_742230
>  	mrc	p15, 0, r0, c15, c0, 1	@ read diagnostic register
>  	orr	r0, r0, #1 << 4		@ set bit #4
> --
> 1.7.10.4
--
nvpublic

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

* [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround
  2013-03-21 16:29 ` [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround Tom Warren
@ 2013-03-21 17:55   ` Albert ARIBAUD
  2013-03-21 18:35     ` Tom Warren
  0 siblings, 1 reply; 11+ messages in thread
From: Albert ARIBAUD @ 2013-03-21 17:55 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 21 Mar 2013 09:29:14 -0700, Tom Warren <TWarren@nvidia.com>
wrote:

> Albert,
> 
> > -----Original Message-----
> > From: Stephen Warren [mailto:swarren at wwwdotorg.org]
> > Sent: Monday, March 04, 2013 4:30 PM
> > To: u-boot at lists.denx.de; Albert Aribaud
> > Cc: Simon Glass; Tom Warren; Stephen Warren
> > Subject: [PATCH 1/2] ARM: implement erratum 716044 workaround
> 
> This patchset from Stephen (includes "2/2 ARM: tegra: enable workaround for ARM erratum 716044") are both assigned to you in PatchWork, but haven't been applied yet to ARM/master AFAICT. I found them when I was searching for unapplied Tegra patches.
> 
> Could you please take this in thru the ARM tree ASAP?

Will take them in later today. Want an ARM PR once done?

> Thanks,
> 
> Tom

Amicalement,
-- 
Albert.

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

* [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround
  2013-03-21 17:55   ` Albert ARIBAUD
@ 2013-03-21 18:35     ` Tom Warren
  2013-03-22  6:34       ` Albert ARIBAUD
  2013-03-22 15:58       ` Albert ARIBAUD
  0 siblings, 2 replies; 11+ messages in thread
From: Tom Warren @ 2013-03-21 18:35 UTC (permalink / raw)
  To: u-boot

Albert,

> -----Original Message-----
> From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> Sent: Thursday, March 21, 2013 10:56 AM
> To: Tom Warren
> Cc: u-boot at lists.denx.de; Simon Glass; Stephen Warren; Tom Warren;
> Stephen Warren
> Subject: Re: [PATCH 1/2] ARM: implement erratum 716044 workaround
> 
> Hi Tom,
> 
> On Thu, 21 Mar 2013 09:29:14 -0700, Tom Warren <TWarren@nvidia.com>
> wrote:
> 
> > Albert,
> >
> > > -----Original Message-----
> > > From: Stephen Warren [mailto:swarren at wwwdotorg.org]
> > > Sent: Monday, March 04, 2013 4:30 PM
> > > To: u-boot at lists.denx.de; Albert Aribaud
> > > Cc: Simon Glass; Tom Warren; Stephen Warren
> > > Subject: [PATCH 1/2] ARM: implement erratum 716044 workaround
> >
> > This patchset from Stephen (includes "2/2 ARM: tegra: enable workaround
> for ARM erratum 716044") are both assigned to you in PatchWork, but
> haven't been applied yet to ARM/master AFAICT. I found them when I was
> searching for unapplied Tegra patches.
> >
> > Could you please take this in thru the ARM tree ASAP?
> 
> Will take them in later today. Want an ARM PR once done?
Just a notice that they're in TOT u-boot-arm/master, and I'll rebase u-boot-tegra/next against it.

Thanks,

Tom
> 
> > Thanks,
> >
> > Tom
> 
> Amicalement,
> --
> Albert.
--
nvpublic

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

* [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround
  2013-03-21 18:35     ` Tom Warren
@ 2013-03-22  6:34       ` Albert ARIBAUD
  2013-03-22 15:24         ` Tom Warren
  2013-03-22 15:58       ` Albert ARIBAUD
  1 sibling, 1 reply; 11+ messages in thread
From: Albert ARIBAUD @ 2013-03-22  6:34 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 21 Mar 2013 11:35:11 -0700, Tom Warren <TWarren@nvidia.com>
wrote:

> Albert,
> 
> > -----Original Message-----
> > From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> > Sent: Thursday, March 21, 2013 10:56 AM
> > To: Tom Warren
> > Cc: u-boot at lists.denx.de; Simon Glass; Stephen Warren; Tom Warren;
> > Stephen Warren
> > Subject: Re: [PATCH 1/2] ARM: implement erratum 716044 workaround
> > 
> > Hi Tom,
> > 
> > On Thu, 21 Mar 2013 09:29:14 -0700, Tom Warren <TWarren@nvidia.com>
> > wrote:
> > 
> > > Albert,
> > >
> > > > -----Original Message-----
> > > > From: Stephen Warren [mailto:swarren at wwwdotorg.org]
> > > > Sent: Monday, March 04, 2013 4:30 PM
> > > > To: u-boot at lists.denx.de; Albert Aribaud
> > > > Cc: Simon Glass; Tom Warren; Stephen Warren
> > > > Subject: [PATCH 1/2] ARM: implement erratum 716044 workaround
> > >
> > > This patchset from Stephen (includes "2/2 ARM: tegra: enable workaround
> > for ARM erratum 716044") are both assigned to you in PatchWork, but
> > haven't been applied yet to ARM/master AFAICT. I found them when I was
> > searching for unapplied Tegra patches.
> > >
> > > Could you please take this in thru the ARM tree ASAP?
> > 
> > Will take them in later today. Want an ARM PR once done?
> Just a notice that they're in TOT u-boot-arm/master, and I'll rebase u-boot-tegra/next against it.

Hmm... I don't see them in ARM ToT on my side. Can you point me to the
commit ID?

> Thanks,
> 
> Tom

Amicalement,
-- 
Albert.

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

* [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround
  2013-03-22  6:34       ` Albert ARIBAUD
@ 2013-03-22 15:24         ` Tom Warren
  2013-03-22 15:46           ` Albert ARIBAUD
  0 siblings, 1 reply; 11+ messages in thread
From: Tom Warren @ 2013-03-22 15:24 UTC (permalink / raw)
  To: u-boot

Albert,

> -----Original Message-----
> From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> Sent: Thursday, March 21, 2013 11:34 PM
> To: Tom Warren
> Cc: u-boot at lists.denx.de; Tom Warren; Stephen Warren
> Subject: Re: [U-Boot] [PATCH 1/2] ARM: implement erratum 716044
> workaround
> 
> Hi Tom,
> 
> On Thu, 21 Mar 2013 11:35:11 -0700, Tom Warren <TWarren@nvidia.com>
> wrote:
> 
> > Albert,
> >
> > > -----Original Message-----
> > > From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> > > Sent: Thursday, March 21, 2013 10:56 AM
> > > To: Tom Warren
> > > Cc: u-boot at lists.denx.de; Simon Glass; Stephen Warren; Tom Warren;
> > > Stephen Warren
> > > Subject: Re: [PATCH 1/2] ARM: implement erratum 716044 workaround
> > >
> > > Hi Tom,
> > >
> > > On Thu, 21 Mar 2013 09:29:14 -0700, Tom Warren <TWarren@nvidia.com>
> > > wrote:
> > >
> > > > Albert,
> > > >
> > > > > -----Original Message-----
> > > > > From: Stephen Warren [mailto:swarren at wwwdotorg.org]
> > > > > Sent: Monday, March 04, 2013 4:30 PM
> > > > > To: u-boot at lists.denx.de; Albert Aribaud
> > > > > Cc: Simon Glass; Tom Warren; Stephen Warren
> > > > > Subject: [PATCH 1/2] ARM: implement erratum 716044 workaround
> > > >
> > > > This patchset from Stephen (includes "2/2 ARM: tegra: enable
> > > > workaround
> > > for ARM erratum 716044") are both assigned to you in PatchWork, but
> > > haven't been applied yet to ARM/master AFAICT. I found them when I
> > > was searching for unapplied Tegra patches.
> > > >
> > > > Could you please take this in thru the ARM tree ASAP?
> > >
> > > Will take them in later today. Want an ARM PR once done?
> > Just a notice that they're in TOT u-boot-arm/master, and I'll rebase u-boot-
> tegra/next against it.
> 
> Hmm... I don't see them in ARM ToT on my side. Can you point me to the
> commit ID?
I think there's some confusion here. You asked if I wanted an ARM PR - I assume you thought I was Tom Rini?

I'm Tom Warren, the Tegra custodian. I'd like to see this patchset (ARM errata 716044, 2 parts, from Stephen Warren, assigned to you in PatchWork) pulled into u-boot-arm/master. Once that happens, if you let me know it's done, I can rebase u-boot-tegra.git against u-boot-arm.git so that it's pulled into the Tegra repo.

Thanks,

Tom Warren
> 
> > Thanks,
> >
> > Tom
> 
> Amicalement,
> --
> Albert.
--
nvpublic

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

* [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround
  2013-03-22 15:24         ` Tom Warren
@ 2013-03-22 15:46           ` Albert ARIBAUD
  0 siblings, 0 replies; 11+ messages in thread
From: Albert ARIBAUD @ 2013-03-22 15:46 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, 22 Mar 2013 08:24:14 -0700, Tom Warren <TWarren@nvidia.com>
wrote:

> Albert,
> 
> > -----Original Message-----
> > From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> > Sent: Thursday, March 21, 2013 11:34 PM
> > To: Tom Warren
> > Cc: u-boot at lists.denx.de; Tom Warren; Stephen Warren
> > Subject: Re: [U-Boot] [PATCH 1/2] ARM: implement erratum 716044
> > workaround
> > 
> > Hi Tom,
> > 
> > On Thu, 21 Mar 2013 11:35:11 -0700, Tom Warren <TWarren@nvidia.com>
> > wrote:
> > 
> > > Albert,
> > >
> > > > -----Original Message-----
> > > > From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> > > > Sent: Thursday, March 21, 2013 10:56 AM
> > > > To: Tom Warren
> > > > Cc: u-boot at lists.denx.de; Simon Glass; Stephen Warren; Tom Warren;
> > > > Stephen Warren
> > > > Subject: Re: [PATCH 1/2] ARM: implement erratum 716044 workaround
> > > >
> > > > Hi Tom,
> > > >
> > > > On Thu, 21 Mar 2013 09:29:14 -0700, Tom Warren <TWarren@nvidia.com>
> > > > wrote:
> > > >
> > > > > Albert,
> > > > >
> > > > > > -----Original Message-----
> > > > > > From: Stephen Warren [mailto:swarren at wwwdotorg.org]
> > > > > > Sent: Monday, March 04, 2013 4:30 PM
> > > > > > To: u-boot at lists.denx.de; Albert Aribaud
> > > > > > Cc: Simon Glass; Tom Warren; Stephen Warren
> > > > > > Subject: [PATCH 1/2] ARM: implement erratum 716044 workaround
> > > > >
> > > > > This patchset from Stephen (includes "2/2 ARM: tegra: enable
> > > > > workaround
> > > > for ARM erratum 716044") are both assigned to you in PatchWork, but
> > > > haven't been applied yet to ARM/master AFAICT. I found them when I
> > > > was searching for unapplied Tegra patches.
> > > > >
> > > > > Could you please take this in thru the ARM tree ASAP?
> > > >
> > > > Will take them in later today. Want an ARM PR once done?
> > > Just a notice that they're in TOT u-boot-arm/master, and I'll rebase u-boot-
> > tegra/next against it.
> > 
> > Hmm... I don't see them in ARM ToT on my side. Can you point me to the
> > commit ID?
> I think there's some confusion here. You asked if I wanted an ARM PR - I assume you thought I was Tom Rini?
> 
> I'm Tom Warren, the Tegra custodian. I'd like to see this patchset (ARM errata 716044, 2 parts, from Stephen Warren, assigned to you in PatchWork) pulled into u-boot-arm/master. Once that happens, if you let me know it's done, I can rebase u-boot-tegra.git against u-boot-arm.git so that it's pulled into the Tegra repo.

I had indeed ask if a PR was wanted, i.e. if you wanted the commits
to also go to u-boot/master, as the request seemed urgent and some
people prefer to use the mainline tree as their reference.

But I did mis-understand something: when you said "just a notice etc",
I took this as meaning you were making the notice to me that the
commits were actually there, while you were saying "no PR needed, a
simple notice will do". Apologies for this msistake.

I am build-testing the two changes and will push them as soon as done.

> Thanks,
> 
> Tom Warren

Amicalement,
-- 
Albert.

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

* [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround
  2013-03-21 18:35     ` Tom Warren
  2013-03-22  6:34       ` Albert ARIBAUD
@ 2013-03-22 15:58       ` Albert ARIBAUD
  2013-03-22 17:24         ` Tom Warren
  1 sibling, 1 reply; 11+ messages in thread
From: Albert ARIBAUD @ 2013-03-22 15:58 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Thu, 21 Mar 2013 11:35:11 -0700, Tom Warren <TWarren@nvidia.com>
wrote:

> Albert,
> 
> > -----Original Message-----
> > From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> > Sent: Thursday, March 21, 2013 10:56 AM
> > To: Tom Warren
> > Cc: u-boot at lists.denx.de; Simon Glass; Stephen Warren; Tom Warren;
> > Stephen Warren
> > Subject: Re: [PATCH 1/2] ARM: implement erratum 716044 workaround
> > 
> > Hi Tom,
> > 
> > On Thu, 21 Mar 2013 09:29:14 -0700, Tom Warren <TWarren@nvidia.com>
> > wrote:
> > 
> > > Albert,
> > >
> > > > -----Original Message-----
> > > > From: Stephen Warren [mailto:swarren at wwwdotorg.org]
> > > > Sent: Monday, March 04, 2013 4:30 PM
> > > > To: u-boot at lists.denx.de; Albert Aribaud
> > > > Cc: Simon Glass; Tom Warren; Stephen Warren
> > > > Subject: [PATCH 1/2] ARM: implement erratum 716044 workaround
> > >
> > > This patchset from Stephen (includes "2/2 ARM: tegra: enable workaround
> > for ARM erratum 716044") are both assigned to you in PatchWork, but
> > haven't been applied yet to ARM/master AFAICT. I found them when I was
> > searching for unapplied Tegra patches.
> > >
> > > Could you please take this in thru the ARM tree ASAP?
> > 
> > Will take them in later today. Want an ARM PR once done?
> Just a notice that they're in TOT u-boot-arm/master, and I'll rebase u-boot-tegra/next against it.

Here is said notice, with my apologies for the misunderstanding.

Amicalement,
-- 
Albert.

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

* [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround
  2013-03-22 15:58       ` Albert ARIBAUD
@ 2013-03-22 17:24         ` Tom Warren
  0 siblings, 0 replies; 11+ messages in thread
From: Tom Warren @ 2013-03-22 17:24 UTC (permalink / raw)
  To: u-boot

Albert,

> -----Original Message-----
> From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> Sent: Friday, March 22, 2013 8:59 AM
> To: Tom Warren
> Cc: u-boot at lists.denx.de; Tom Warren; Stephen Warren
> Subject: Re: [U-Boot] [PATCH 1/2] ARM: implement erratum 716044
> workaround
> 
> Hi Tom,
> 
> On Thu, 21 Mar 2013 11:35:11 -0700, Tom Warren <TWarren@nvidia.com>
> wrote:
> 
> > Albert,
> >
> > > -----Original Message-----
> > > From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> > > Sent: Thursday, March 21, 2013 10:56 AM
> > > To: Tom Warren
> > > Cc: u-boot at lists.denx.de; Simon Glass; Stephen Warren; Tom Warren;
> > > Stephen Warren
> > > Subject: Re: [PATCH 1/2] ARM: implement erratum 716044 workaround
> > >
> > > Hi Tom,
> > >
> > > On Thu, 21 Mar 2013 09:29:14 -0700, Tom Warren <TWarren@nvidia.com>
> > > wrote:
> > >
> > > > Albert,
> > > >
> > > > > -----Original Message-----
> > > > > From: Stephen Warren [mailto:swarren at wwwdotorg.org]
> > > > > Sent: Monday, March 04, 2013 4:30 PM
> > > > > To: u-boot at lists.denx.de; Albert Aribaud
> > > > > Cc: Simon Glass; Tom Warren; Stephen Warren
> > > > > Subject: [PATCH 1/2] ARM: implement erratum 716044 workaround
> > > >
> > > > This patchset from Stephen (includes "2/2 ARM: tegra: enable
> > > > workaround
> > > for ARM erratum 716044") are both assigned to you in PatchWork, but
> > > haven't been applied yet to ARM/master AFAICT. I found them when I
> > > was searching for unapplied Tegra patches.
> > > >
> > > > Could you please take this in thru the ARM tree ASAP?
> > >
> > > Will take them in later today. Want an ARM PR once done?
> > Just a notice that they're in TOT u-boot-arm/master, and I'll rebase u-boot-
> tegra/next against it.
> 
> Here is said notice, with my apologies for the misunderstanding.

No worries,  and thanks for the quick work. I'll pull a new ARM FETCH_HEAD into u-boot-tegra/next today.

Tom
> 
> Amicalement,
> --
> Albert.
--
nvpublic

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

end of thread, other threads:[~2013-03-22 17:24 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-04 23:29 [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround Stephen Warren
2013-03-04 23:29 ` [U-Boot] [PATCH 2/2] ARM: tegra: enable workaround for ARM erratum 716044 Stephen Warren
2013-03-07 17:18   ` Tom Warren
2013-03-21 16:29 ` [U-Boot] [PATCH 1/2] ARM: implement erratum 716044 workaround Tom Warren
2013-03-21 17:55   ` Albert ARIBAUD
2013-03-21 18:35     ` Tom Warren
2013-03-22  6:34       ` Albert ARIBAUD
2013-03-22 15:24         ` Tom Warren
2013-03-22 15:46           ` Albert ARIBAUD
2013-03-22 15:58       ` Albert ARIBAUD
2013-03-22 17:24         ` Tom Warren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox