[U-Boot] [PATCH] ppc/85xx: Added single core members of FSL P1 P2 processors series

P2010 - single core variant of P2020 P1011 - Single core variant of P1020
Signed-off-by: Poonam Aggrwal poonam.aggrwal@freescale.com Signed-off-by: Kumar Gala galak@kernel.crashing.org --- - applies on git.denx.de/u-boot-mpc85xx.git branch->next cpu/mpc85xx/Makefile | 2 ++ cpu/mpc8xxx/cpu.c | 4 ++++ drivers/misc/fsl_law.c | 3 ++- include/asm-ppc/processor.h | 4 ++++ 4 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/cpu/mpc85xx/Makefile b/cpu/mpc85xx/Makefile index 1477eac..df5a177 100644 --- a/cpu/mpc85xx/Makefile +++ b/cpu/mpc85xx/Makefile @@ -50,7 +50,9 @@ COBJS-$(CONFIG_MPC8572) += ddr-gen3.o COBJS-$(CONFIG_MPC8536) += ddr-gen3.o COBJS-$(CONFIG_MPC8569) += ddr-gen3.o COBJS-$(CONFIG_P2020) += ddr-gen3.o +COBJS-$(CONFIG_P2010) += ddr-gen3.o COBJS-$(CONFIG_P1020) += ddr-gen3.o +COBJS-$(CONFIG_P1011) += ddr-gen3.o
COBJS-$(CONFIG_MPC8536) += mpc8536_serdes.o COBJS = traps.o cpu.o cpu_init.o speed.o interrupts.o tlb.o \ diff --git a/cpu/mpc8xxx/cpu.c b/cpu/mpc8xxx/cpu.c index fbab998..4a30215 100644 --- a/cpu/mpc8xxx/cpu.c +++ b/cpu/mpc8xxx/cpu.c @@ -66,8 +66,12 @@ struct cpu_type cpu_type_list [] = { CPU_TYPE_ENTRY(8572, 8572_E, 2), CPU_TYPE_ENTRY(P2020, P2020, 2), CPU_TYPE_ENTRY(P2020, P2020_E, 2), + CPU_TYPE_ENTRY(P2010, P2010, 1), + CPU_TYPE_ENTRY(P2010, P2010_E, 1), CPU_TYPE_ENTRY(P1020, P1020, 2), CPU_TYPE_ENTRY(P1020, P1020_E, 2), + CPU_TYPE_ENTRY(P1011, P1011, 1), + CPU_TYPE_ENTRY(P1011, P1011_E, 1), #elif defined(CONFIG_MPC86xx) CPU_TYPE_ENTRY(8610, 8610, 1), CPU_TYPE_ENTRY(8641, 8641, 2), diff --git a/drivers/misc/fsl_law.c b/drivers/misc/fsl_law.c index af7b729..72665ab 100644 --- a/drivers/misc/fsl_law.c +++ b/drivers/misc/fsl_law.c @@ -39,7 +39,8 @@ DECLARE_GLOBAL_DATA_PTR; defined(CONFIG_MPC8641) || defined(CONFIG_MPC8610) #define FSL_HW_NUM_LAWS 10 #elif defined(CONFIG_MPC8536) || defined(CONFIG_MPC8572) || \ - defined(CONFIG_P2020) || defined(CONFIG_P1020) + defined(CONFIG_P2020) || defined(CONFIG_P2010) || \ + defined(CONFIG_P1020) || defined(CONFIG_P1011) #define FSL_HW_NUM_LAWS 12 #else #error FSL_HW_NUM_LAWS not defined for this platform diff --git a/include/asm-ppc/processor.h b/include/asm-ppc/processor.h index 5547245..de23ad8 100644 --- a/include/asm-ppc/processor.h +++ b/include/asm-ppc/processor.h @@ -1011,8 +1011,12 @@ #define SVR_8572_E 0x80E800 #define SVR_P2020 0x80E200 #define SVR_P2020_E 0x80EA00 +#define SVR_P2010 0x80E300 +#define SVR_P2010_E 0x80EB00 #define SVR_P1020 0x80E400 #define SVR_P1020_E 0x80EC00 +#define SVR_P1011 0x80E500 +#define SVR_P1011_E 0x80ED00
#define SVR_8610 0x80A000 #define SVR_8641 0x809000

On Aug 20, 2009, at 8:27 AM, Poonam Aggrwal wrote:
P2010 - single core variant of P2020 P1011 - Single core variant of P1020
Signed-off-by: Poonam Aggrwal poonam.aggrwal@freescale.com Signed-off-by: Kumar Gala galak@kernel.crashing.org
- applies on git.denx.de/u-boot-mpc85xx.git branch->next
cpu/mpc85xx/Makefile | 2 ++ cpu/mpc8xxx/cpu.c | 4 ++++ drivers/misc/fsl_law.c | 3 ++- include/asm-ppc/processor.h | 4 ++++ 4 files changed, 12 insertions(+), 1 deletions(-)
applied to 85xx next
- k

Dear Kumar Gala,
In message D48D44DE-5582-4B00-81B8-68C0ED9A246A@kernel.crashing.org you wrote:
On Aug 20, 2009, at 8:27 AM, Poonam Aggrwal wrote:
P2010 - single core variant of P2020 P1011 - Single core variant of P1020
Signed-off-by: Poonam Aggrwal poonam.aggrwal@freescale.com Signed-off-by: Kumar Gala galak@kernel.crashing.org
- applies on git.denx.de/u-boot-mpc85xx.git branch->next
cpu/mpc85xx/Makefile | 2 ++ cpu/mpc8xxx/cpu.c | 4 ++++ drivers/misc/fsl_law.c | 3 ++- include/asm-ppc/processor.h | 4 ++++ 4 files changed, 12 insertions(+), 1 deletions(-)
applied to 85xx next
NAK. Lists not sorted.
Best regards,
Wolfgang Denk

-----Original Message----- From: Wolfgang Denk [mailto:wd@denx.de] Sent: Thursday, August 20, 2009 8:40 PM To: Kumar Gala Cc: Aggrwal Poonam-B10812; u-boot@lists.denx.de Subject: Re: [U-Boot] [PATCH] ppc/85xx: Added single core members of FSL P1 P2 processors series
Dear Kumar Gala,
In message D48D44DE-5582-4B00-81B8-68C0ED9A246A@kernel.crashing.org you wrote:
On Aug 20, 2009, at 8:27 AM, Poonam Aggrwal wrote:
P2010 - single core variant of P2020 P1011 - Single core variant of P1020
Signed-off-by: Poonam Aggrwal poonam.aggrwal@freescale.com Signed-off-by: Kumar Gala galak@kernel.crashing.org
- applies on git.denx.de/u-boot-mpc85xx.git branch->next
cpu/mpc85xx/Makefile | 2 ++ cpu/mpc8xxx/cpu.c | 4 ++++ drivers/misc/fsl_law.c | 3 ++- include/asm-ppc/processor.h | 4 ++++ 4 files changed, 12 insertions(+), 1 deletions(-)
applied to 85xx next
NAK. Lists not sorted.
Sorry, I will re-send. And take care of this in future.
Regards Poonam
Best regards,
Wolfgang Denk
-- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de We have found all life forms in the galaxy are capable of superior development. -- Kirk, "The Gamesters of Triskelion", stardate 3211.7

Dear Poonam Aggrwal,
In message 1250774865-20228-1-git-send-email-poonam.aggrwal@freescale.com you wrote:
P2010 - single core variant of P2020 P1011 - Single core variant of P1020
Signed-off-by: Poonam Aggrwal poonam.aggrwal@freescale.com Signed-off-by: Kumar Gala galak@kernel.crashing.org
- applies on git.denx.de/u-boot-mpc85xx.git branch->next
cpu/mpc85xx/Makefile | 2 ++ cpu/mpc8xxx/cpu.c | 4 ++++ drivers/misc/fsl_law.c | 3 ++- include/asm-ppc/processor.h | 4 ++++ 4 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/cpu/mpc85xx/Makefile b/cpu/mpc85xx/Makefile index 1477eac..df5a177 100644 --- a/cpu/mpc85xx/Makefile +++ b/cpu/mpc85xx/Makefile @@ -50,7 +50,9 @@ COBJS-$(CONFIG_MPC8572) += ddr-gen3.o COBJS-$(CONFIG_MPC8536) += ddr-gen3.o COBJS-$(CONFIG_MPC8569) += ddr-gen3.o COBJS-$(CONFIG_P2020) += ddr-gen3.o +COBJS-$(CONFIG_P2010) += ddr-gen3.o COBJS-$(CONFIG_P1020) += ddr-gen3.o +COBJS-$(CONFIG_P1011) += ddr-gen3.o
Please keep all such lists sorted.
Best regards,
Wolfgang Denk
participants (4)
-
Aggrwal Poonam-B10812
-
Kumar Gala
-
Poonam Aggrwal
-
Wolfgang Denk