summaryrefslogtreecommitdiff
path: root/arch/powerpc/cpu/ppc4xx/cpu.c
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2010-10-05 14:37:25 +0200
committerWolfgang Denk <wd@denx.de>2010-10-05 14:37:25 +0200
commitdb682a0b59b2e97b24275214f1837197a73fdb03 (patch)
tree6e5f5c445023a71f78c8f166358339c3b72085f4 /arch/powerpc/cpu/ppc4xx/cpu.c
parentbbf2abc0f5a5be0b8081ae8587fa90b376160444 (diff)
parent709d9481e99f9f42625a48d0517a8877382995a3 (diff)
downloadu-boot-imx-db682a0b59b2e97b24275214f1837197a73fdb03.zip
u-boot-imx-db682a0b59b2e97b24275214f1837197a73fdb03.tar.gz
u-boot-imx-db682a0b59b2e97b24275214f1837197a73fdb03.tar.bz2
Merge branch 'master' of git://git.denx.de/u-boot-ppc4xx
Diffstat (limited to 'arch/powerpc/cpu/ppc4xx/cpu.c')
-rw-r--r--arch/powerpc/cpu/ppc4xx/cpu.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/powerpc/cpu/ppc4xx/cpu.c b/arch/powerpc/cpu/ppc4xx/cpu.c
index 6009b0c..67f1fff 100644
--- a/arch/powerpc/cpu/ppc4xx/cpu.c
+++ b/arch/powerpc/cpu/ppc4xx/cpu.c
@@ -250,6 +250,20 @@ static char *bootstrap_str[] = {
};
static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'G', 'F', 'H' };
#endif
+#if defined(CONFIG_APM821XX)
+#define SDR0_PINSTP_SHIFT 29
+static char *bootstrap_str[] = {
+ "RESERVED",
+ "RESERVED",
+ "RESERVED",
+ "NAND (8 bits)",
+ "NOR (8 bits)",
+ "NOR (8 bits) w/PLL Bypassed",
+ "I2C (Addr 0x54)",
+ "I2C (Addr 0x52)",
+};
+static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H' };
+#endif
#if defined(SDR0_PINSTP_SHIFT)
static int bootstrap_option(void)
@@ -590,6 +604,11 @@ int checkcpu (void)
strcpy(addstr, "No Security support");
break;
+ case PVR_APM821XX_RA:
+ puts("APM821XX Rev. A");
+ strcpy(addstr, "Security support");
+ break;
+
case PVR_VIRTEX5:
puts("440x5 VIRTEX5");
break;