diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2011-02-05 13:45:07 -0600 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2011-04-04 09:24:42 -0500 | 
| commit | 093cffbe9a692bd6bb47b0775d015545b1628af8 (patch) | |
| tree | fdd4ece0567d51c1060d54cd5992d60579f6a8f0 /arch/powerpc/include/asm/processor.h | |
| parent | 298f8af17b5056fd4135708c1745572f351bd339 (diff) | |
powerpc/85xx: Support for Freescale P1024/P1025 processor
Add Support for Freescale P1024/P1025 (dual core) and
P1015/P1016 (single core) processors.
P1024 is a variant of P1020 processor with a core frequency from
400Mhz to 667Mhz and comes in a 561-pin wirebond power-BGA
P1025 is a variant of P1021 processor with a core frequency from
400Mhz to 667Mhz and comes in a 561-pin wirebond power-BGA
P1015 is a variant of P1024 processor with single core and P1016 is a
variant of P1025 processor with single core.
Added comments in config_mpc85xx.h to denote single core versions of
processors.
Signed-off-by: Jin Qing <b24347@freescale.com>
Signed-off-by: Li Yang <leoli@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include/asm/processor.h')
| -rw-r--r-- | arch/powerpc/include/asm/processor.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/arch/powerpc/include/asm/processor.h b/arch/powerpc/include/asm/processor.h index d8b8f34017c..f5bf4dd4fd4 100644 --- a/arch/powerpc/include/asm/processor.h +++ b/arch/powerpc/include/asm/processor.h @@ -1048,6 +1048,10 @@  #define SVR_P1013_E	0x80EF00  #define SVR_P1014	0x80F101  #define SVR_P1014_E	0x80F901 +#define SVR_P1015	0x80E502 +#define SVR_P1015_E	0x80ED02 +#define SVR_P1016	0x80E503 +#define SVR_P1016_E	0x80ED03  #define SVR_P1017	0x80F700  #define SVR_P1017_E	0x80FF00  #define SVR_P1020	0x80E400 @@ -1058,6 +1062,10 @@  #define SVR_P1022_E	0x80EE00  #define SVR_P1023	0x80F600  #define SVR_P1023_E	0x80FE00 +#define SVR_P1024	0x80E402 +#define SVR_P1024_E	0x80EC02 +#define SVR_P1025	0x80E403 +#define SVR_P1025_E	0x80EC03  #define SVR_P2010	0x80E300  #define SVR_P2010_E	0x80EB00  #define SVR_P2020	0x80E200 | 
