summaryrefslogtreecommitdiff
path: root/cpu/mpc8xx/cpu.c
diff options
context:
space:
mode:
authorwdenk <wdenk>2004-12-18 22:35:43 +0000
committerwdenk <wdenk>2004-12-18 22:35:43 +0000
commitf7d1572bf51619554f278cb543ef0445baa3a1f8 (patch)
treeac5ad0054651a4c3596f9809f534df4587163111 /cpu/mpc8xx/cpu.c
parent8e6b47a89b6db05594f559f7829e5dc54c0df86e (diff)
Add support for UC100 boardLABEL_2004_12_18_2335
Diffstat (limited to 'cpu/mpc8xx/cpu.c')
-rw-r--r--cpu/mpc8xx/cpu.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpu/mpc8xx/cpu.c b/cpu/mpc8xx/cpu.c
index 89a176e426..5f92a371b0 100644
--- a/cpu/mpc8xx/cpu.c
+++ b/cpu/mpc8xx/cpu.c
@@ -190,10 +190,17 @@ static int check_CPU (long clock, uint pvr, uint immr)
default: suf = NULL; break;
}
+#ifndef CONFIG_MPC857
if (suf)
printf ("%cPC862%sZPnn%s", pre, mid, suf);
else
printf ("unknown MPC862 (0x%08x)", k);
+#else
+ if (suf)
+ printf ("%cPC857TZPnn%s", pre, suf); /* only 857T tested right now! */
+ else
+ printf ("unknown MPC857 (0x%08x)", k);
+#endif
printf (" at %s MHz:", strmhz (buf, clock));