mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
Add e6500 processor detection
Signed-off-by: York Sun <yorksun@freescale.com> Signed-off-by: Andy Fleming <afleming@freescale.com>
This commit is contained in:
parent
123bd96d53
commit
5b6b85ae63
2 changed files with 4 additions and 0 deletions
|
@ -117,6 +117,9 @@ int checkcpu (void)
|
|||
case PVR_VER_E5500:
|
||||
puts("E5500");
|
||||
break;
|
||||
case PVR_VER_E6500:
|
||||
puts("E6500");
|
||||
break;
|
||||
default:
|
||||
puts("Unknown");
|
||||
break;
|
||||
|
|
|
@ -950,6 +950,7 @@
|
|||
#define PVR_VER_E500_V2 0x8021
|
||||
#define PVR_VER_E500MC 0x8023
|
||||
#define PVR_VER_E5500 0x8024
|
||||
#define PVR_VER_E6500 0x8040
|
||||
|
||||
#define PVR_86xx 0x80040000
|
||||
|
||||
|
|
Loading…
Reference in a new issue