All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] powerpc/mpc85xx: Ignore E bit for BSC9130/1
@ 2012-07-20 20:59 York Sun
  2012-07-20 20:59 ` [U-Boot] [PATCH 2/2] powerpc/mpc85xx: Enable workaround for erratum CPU_A011 for P3041 York Sun
  0 siblings, 1 reply; 3+ messages in thread
From: York Sun @ 2012-07-20 20:59 UTC (permalink / raw)
  To: u-boot

Commit 48f6a5c34 removed E bit. BSC9130/1 were left out due to patch apply
timing. Remove them now.

Signed-off-by: York Sun <yorksun@freescale.com>
---
 arch/powerpc/include/asm/processor.h |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/arch/powerpc/include/asm/processor.h b/arch/powerpc/include/asm/processor.h
index 489dd61..7bd3789 100644
--- a/arch/powerpc/include/asm/processor.h
+++ b/arch/powerpc/include/asm/processor.h
@@ -1104,9 +1104,7 @@
 #define SVR_8641D	0x809001
 
 #define SVR_9130	0x860001
-#define SVR_9130_E	0x860801
 #define SVR_9131	0x860000
-#define SVR_9131_E	0x860800
 
 #define SVR_Unknown	0xFFFFFF
 
-- 
1.7.0.4

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

* [U-Boot] [PATCH 2/2] powerpc/mpc85xx: Enable workaround for erratum CPU_A011 for P3041
  2012-07-20 20:59 [U-Boot] [PATCH 1/2] powerpc/mpc85xx: Ignore E bit for BSC9130/1 York Sun
@ 2012-07-20 20:59 ` York Sun
  2012-08-08 22:05   ` Andy Fleming
  0 siblings, 1 reply; 3+ messages in thread
From: York Sun @ 2012-07-20 20:59 UTC (permalink / raw)
  To: u-boot

P3041 was left out in previous commit 5e23ab0a.
Erratum NMG_CPU_A011 applies to P4080 rev 1.0, 2.0, fixed in rev 3.0.
It also applies to P3041 rev 1.0, 1.1, P2041 rev 1.0, 1.1.

Signed-off-by: York Sun <yorksun@freescale.com>
---
 arch/powerpc/include/asm/config_mpc85xx.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/powerpc/include/asm/config_mpc85xx.h b/arch/powerpc/include/asm/config_mpc85xx.h
index 1d21ee8..8154df0 100644
--- a/arch/powerpc/include/asm/config_mpc85xx.h
+++ b/arch/powerpc/include/asm/config_mpc85xx.h
@@ -385,6 +385,7 @@
 #define CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
 #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
 #define CONFIG_SYS_FSL_ERRATUM_USB138
+#define CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011
 #define CONFIG_SYS_FSL_ERRATUM_CPU_A003999
 #define CONFIG_SYS_FSL_ERRATUM_DDR_A003474
 #define CONFIG_SYS_FSL_SRIO_MAX_PORTS	2
-- 
1.7.0.4

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

* [U-Boot] [PATCH 2/2] powerpc/mpc85xx: Enable workaround for erratum CPU_A011 for P3041
  2012-07-20 20:59 ` [U-Boot] [PATCH 2/2] powerpc/mpc85xx: Enable workaround for erratum CPU_A011 for P3041 York Sun
@ 2012-08-08 22:05   ` Andy Fleming
  0 siblings, 0 replies; 3+ messages in thread
From: Andy Fleming @ 2012-08-08 22:05 UTC (permalink / raw)
  To: u-boot

BTW, please merge this with the other AO11 patches, too (I've already
marked this as "changes requested" in patchworks).

On Fri, Jul 20, 2012 at 3:59 PM, York Sun <yorksun@freescale.com> wrote:
> P3041 was left out in previous commit 5e23ab0a.
> Erratum NMG_CPU_A011 applies to P4080 rev 1.0, 2.0, fixed in rev 3.0.
> It also applies to P3041 rev 1.0, 1.1, P2041 rev 1.0, 1.1.
>
> Signed-off-by: York Sun <yorksun@freescale.com>
> ---
>  arch/powerpc/include/asm/config_mpc85xx.h |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/arch/powerpc/include/asm/config_mpc85xx.h b/arch/powerpc/include/asm/config_mpc85xx.h
> index 1d21ee8..8154df0 100644
> --- a/arch/powerpc/include/asm/config_mpc85xx.h
> +++ b/arch/powerpc/include/asm/config_mpc85xx.h
> @@ -385,6 +385,7 @@
>  #define CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
>  #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
>  #define CONFIG_SYS_FSL_ERRATUM_USB138
> +#define CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011
>  #define CONFIG_SYS_FSL_ERRATUM_CPU_A003999
>  #define CONFIG_SYS_FSL_ERRATUM_DDR_A003474
>  #define CONFIG_SYS_FSL_SRIO_MAX_PORTS  2
> --
> 1.7.0.4
>
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot

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

end of thread, other threads:[~2012-08-08 22:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-20 20:59 [U-Boot] [PATCH 1/2] powerpc/mpc85xx: Ignore E bit for BSC9130/1 York Sun
2012-07-20 20:59 ` [U-Boot] [PATCH 2/2] powerpc/mpc85xx: Enable workaround for erratum CPU_A011 for P3041 York Sun
2012-08-08 22:05   ` Andy Fleming

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.