diff options
author | Stefan Roese <sr@denx.de> | 2006-05-10 14:10:41 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2006-05-10 14:10:41 +0200 |
commit | 512f8d5d7863474ead9728698faf1e5f6e2f52d7 (patch) | |
tree | 4d7325ff4df1327ef2fb4de89400fdfa83b498f6 /cpu | |
parent | d1dd22f92effc7f98d21fa538593c72c932d4513 (diff) | |
download | u-boot-imx-512f8d5d7863474ead9728698faf1e5f6e2f52d7.zip u-boot-imx-512f8d5d7863474ead9728698faf1e5f6e2f52d7.tar.gz u-boot-imx-512f8d5d7863474ead9728698faf1e5f6e2f52d7.tar.bz2 |
Add support for AMCC 440EP Rev C and 440GR Rev B
Patch by John Otken, 08 May 2006
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/ppc4xx/cpu.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c index 0cd72b0..095e2b8 100644 --- a/cpu/ppc4xx/cpu.c +++ b/cpu/ppc4xx/cpu.c @@ -1,5 +1,5 @@ /* - * (C) Copyright 2000-2003 + * (C) Copyright 2000-2006 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this @@ -223,12 +223,20 @@ int checkcpu (void) case PVR_440EP_RB: /* 440EP rev B and 440GR rev A have same PVR */ puts("EP Rev. B"); break; + + case PVR_440EP_RC: /* 440EP rev C and 440GR rev B have same PVR */ + puts("EP Rev. C"); + break; #endif /* CONFIG_440EP */ #ifdef CONFIG_440GR case PVR_440GR_RA: /* 440EP rev B and 440GR rev A have same PVR */ puts("GR Rev. A"); break; + + case PVR_440EP_RB: /* 440EP rev C and 440GR rev B have same PVR */ + puts("GR Rev. B"); + break; #endif /* CONFIG_440GR */ #endif /* CONFIG_440 */ |