diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2007-01-13 11:25:08 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-01-13 11:25:08 +0100 |
commit | b8a8bfc0c6390e12ffb324405ae9179ef460cb5c (patch) | |
tree | af4d40fe81c1db7ea293a3a34c66b94fe6bb153b /cpu/ppc4xx/cpu.c | |
parent | c6676c73dcb63d2b65262064e22fbe238336a97c (diff) | |
parent | 44cd6de2e1b0cdff76bf8c85a1c93c6844da62fd (diff) | |
download | u-boot-imx-b8a8bfc0c6390e12ffb324405ae9179ef460cb5c.zip u-boot-imx-b8a8bfc0c6390e12ffb324405ae9179ef460cb5c.tar.gz u-boot-imx-b8a8bfc0c6390e12ffb324405ae9179ef460cb5c.tar.bz2 |
Merge with /home/sr/git/u-boot/denx-merge-sr
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: |