diff options
author | Stefan Roese <sr@denx.de> | 2008-01-15 02:09:15 -0500 |
---|---|---|
committer | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2008-01-25 08:06:09 -0500 |
commit | b676d84e72467a2e31191f41abebd59ab53a06bb (patch) | |
tree | e9518ca02e38604c17cd1408292686d14fda013c | |
parent | dcb571be2019ae677bc5ed64437dbc87ae1eb67f (diff) |
[POWERPC] 4xx: Add 405EXr to cputable
This patch adds the 405EXr to the powerpc cuptable. Basically the 405EXr
is a 405EX with only one EMAC and only one PCIe interface.
Signed-off-by: Stefan Roese <sr@denx.de>
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
-rw-r--r-- | arch/powerpc/kernel/cputable.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index f1928af5fcf..dfb84c86ec4 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
@@ -1178,8 +1178,8 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
1178 | .platform = "ppc405", | 1178 | .platform = "ppc405", |
1179 | }, | 1179 | }, |
1180 | { /* 405EX */ | 1180 | { /* 405EX */ |
1181 | .pvr_mask = 0xffff0000, | 1181 | .pvr_mask = 0xffff0004, |
1182 | .pvr_value = 0x12910000, | 1182 | .pvr_value = 0x12910004, |
1183 | .cpu_name = "405EX", | 1183 | .cpu_name = "405EX", |
1184 | .cpu_features = CPU_FTRS_40X, | 1184 | .cpu_features = CPU_FTRS_40X, |
1185 | .cpu_user_features = PPC_FEATURE_32 | | 1185 | .cpu_user_features = PPC_FEATURE_32 | |
@@ -1189,6 +1189,18 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
1189 | .machine_check = machine_check_4xx, | 1189 | .machine_check = machine_check_4xx, |
1190 | .platform = "ppc405", | 1190 | .platform = "ppc405", |
1191 | }, | 1191 | }, |
1192 | { /* 405EXr */ | ||
1193 | .pvr_mask = 0xffff0004, | ||
1194 | .pvr_value = 0x12910000, | ||
1195 | .cpu_name = "405EXr", | ||
1196 | .cpu_features = CPU_FTRS_40X, | ||
1197 | .cpu_user_features = PPC_FEATURE_32 | | ||
1198 | PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC, | ||
1199 | .icache_bsize = 32, | ||
1200 | .dcache_bsize = 32, | ||
1201 | .machine_check = machine_check_4xx, | ||
1202 | .platform = "ppc405", | ||
1203 | }, | ||
1192 | 1204 | ||
1193 | #endif /* CONFIG_40x */ | 1205 | #endif /* CONFIG_40x */ |
1194 | #ifdef CONFIG_44x | 1206 | #ifdef CONFIG_44x |