diff options
author | Stefan Roese <sr@denx.de> | 2007-01-13 08:01:03 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-01-13 08:01:03 +0100 |
commit | 95981778cff0038fd9941044d6a3eda810e33258 (patch) | |
tree | 35c3823a8426e84f7eca6b7020ef3e35ca1482fc /cpu/ppc4xx/cpu.c | |
parent | 77ddc5b9afb325262fd88752ba430a1dded1f0c7 (diff) | |
download | u-boot-imx-95981778cff0038fd9941044d6a3eda810e33258.zip u-boot-imx-95981778cff0038fd9941044d6a3eda810e33258.tar.gz u-boot-imx-95981778cff0038fd9941044d6a3eda810e33258.tar.bz2 |
[PATCH] Update 440SP(e) cpu revisions
Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cpu/ppc4xx/cpu.c')
-rw-r--r-- | cpu/ppc4xx/cpu.c | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c index 9c5c910..53da5a3 100644 --- a/cpu/ppc4xx/cpu.c +++ b/cpu/ppc4xx/cpu.c @@ -332,24 +332,44 @@ int checkcpu (void) strcpy(addstr, "No Security/Kasumi support"); break; - case PVR_440SP_RA: - puts("SP Rev. A"); + case PVR_440SP_6_RAB: + puts("SP Rev. A/B"); + strcpy(addstr, "RAID 6 support"); break; - case PVR_440SP_RB: - puts("SP Rev. B"); + case PVR_440SP_RAB: + puts("SP Rev. A/B"); + strcpy(addstr, "No RAID 6 support"); + break; + + case PVR_440SP_6_RC: + puts("SP Rev. C"); + strcpy(addstr, "RAID 6 support"); break; case PVR_440SP_RC: puts("SP Rev. C"); + strcpy(addstr, "No RAID 6 support"); + break; + + case PVR_440SPe_6_RA: + puts("SPe Rev. A"); + strcpy(addstr, "RAID 6 support"); break; case PVR_440SPe_RA: puts("SPe Rev. A"); + strcpy(addstr, "No RAID 6 support"); + break; + + case PVR_440SPe_6_RB: + puts("SPe Rev. B"); + strcpy(addstr, "RAID 6 support"); break; case PVR_440SPe_RB: puts("SPe Rev. B"); + strcpy(addstr, "No RAID 6 support"); break; default: |