aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean MacLennan <smaclennan@pikatech.com>2008-01-09 15:25:58 -0500
committerJosh Boyer <jwboyer@linux.vnet.ibm.com>2008-01-25 08:08:27 -0500
commit3f8fc3e0c7445dab78a81d68d995e9150f895d7e (patch)
treeef65f645ceb54a0a4bf23c29b02bb218be4f067a
parent22258fa40e54ceefe75a6c6a793f5c44d8339b9c (diff)
[POWERPC] 4xx: Add PowerPC 440EP Rev C
This adds the 440EP revision C PVR to the CPU table. The chip has an FPU on it, so we also match the logical PVR Signed-off-by: Sean MacLennan <smaclennan@pikatech.com> Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
-rw-r--r--arch/powerpc/kernel/cputable.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c
index dfb84c86ec40..a4c2771b5e62 100644
--- a/arch/powerpc/kernel/cputable.c
+++ b/arch/powerpc/kernel/cputable.c
@@ -1238,6 +1238,18 @@ static struct cpu_spec __initdata cpu_specs[] = {
1238 .machine_check = machine_check_4xx, 1238 .machine_check = machine_check_4xx,
1239 .platform = "ppc440", 1239 .platform = "ppc440",
1240 }, 1240 },
1241 { /* Matches both physical and logical PVR for 440EP (logical pvr = pvr | 0x8) */
1242 .pvr_mask = 0xf0000ff7,
1243 .pvr_value = 0x400008d4,
1244 .cpu_name = "440EP Rev. C",
1245 .cpu_features = CPU_FTRS_44X,
1246 .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
1247 .icache_bsize = 32,
1248 .dcache_bsize = 32,
1249 .cpu_setup = __setup_cpu_440ep,
1250 .machine_check = machine_check_4xx,
1251 .platform = "ppc440",
1252 },
1241 { /* Use logical PVR for 440EP (logical pvr = pvr | 0x8) */ 1253 { /* Use logical PVR for 440EP (logical pvr = pvr | 0x8) */
1242 .pvr_mask = 0xf0000fff, 1254 .pvr_mask = 0xf0000fff,
1243 .pvr_value = 0x400008db, 1255 .pvr_value = 0x400008db,