diff options
author | Wolfgang Denk <wd@denx.de> | 2008-05-14 14:05:49 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-05-14 14:05:49 +0200 |
commit | 35fca4c44d429ae6f2f4feae6dd4b30a72449906 (patch) | |
tree | 64b2f9fdfcbad8d2c5eaf5b9a1a598ae5037c270 /cpu | |
parent | cda2a4a9961fd4341b7db305cb22fc05957e8b77 (diff) | |
parent | 2dd7082e06d580404010b06fe4e0e8b7038a00c8 (diff) |
Merge branch 'master' of git://www.denx.de/git/u-boot-ppc4xx
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/ppc4xx/cpu.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c index 54cc2567975..39f439df988 100644 --- a/cpu/ppc4xx/cpu.c +++ b/cpu/ppc4xx/cpu.c @@ -346,6 +346,26 @@ int checkcpu (void) strcpy(addstr, "No Security support"); break; + case PVR_405EX1_RC: + puts("EX Rev. C"); + strcpy(addstr, "Security support"); + break; + + case PVR_405EX2_RC: + puts("EX Rev. C"); + strcpy(addstr, "No Security support"); + break; + + case PVR_405EXR1_RC: + puts("EXr Rev. C"); + strcpy(addstr, "Security support"); + break; + + case PVR_405EXR2_RC: + puts("EXr Rev. C"); + strcpy(addstr, "No Security support"); + break; + #if defined(CONFIG_440) case PVR_440GP_RB: puts("GP Rev. B"); |