mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
powerpc/85xx: Add recognition of e5500 core
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
f2d9a5da29
commit
2a3a96ca5e
1 changed files with 18 additions and 10 deletions
|
@ -95,18 +95,26 @@ int checkcpu (void)
|
|||
minor = PVR_MIN(pvr);
|
||||
|
||||
printf("Core: ");
|
||||
switch (fam) {
|
||||
case PVR_FAM(PVR_85xx):
|
||||
puts("E500");
|
||||
break;
|
||||
default:
|
||||
puts("Unknown");
|
||||
break;
|
||||
if (PVR_FAM(PVR_85xx)) {
|
||||
switch(PVR_MEM(pvr)) {
|
||||
case 0x1:
|
||||
case 0x2:
|
||||
puts("E500");
|
||||
break;
|
||||
case 0x3:
|
||||
puts("E500MC");
|
||||
break;
|
||||
case 0x4:
|
||||
puts("E5500");
|
||||
break;
|
||||
default:
|
||||
puts("Unknown");
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
puts("Unknown");
|
||||
}
|
||||
|
||||
if (PVR_MEM(pvr) == 0x03)
|
||||
puts("MC");
|
||||
|
||||
printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
|
||||
|
||||
get_sys_info(&sysinfo);
|
||||
|
|
Loading…
Reference in a new issue