diff options
author | Scott Wood <scottwood@freescale.com> | 2007-04-16 19:34:15 (GMT) |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2007-04-23 21:31:59 (GMT) |
commit | a35b0c4950d84cf9e3a9e32b916135956d1ac636 (patch) | |
tree | 4a4512491261924ca37c0cbeb483c3948a9be372 | |
parent | d87c57b201b4572d16f1b642998faa00c9912b16 (diff) | |
download | u-boot-a35b0c4950d84cf9e3a9e32b916135956d1ac636.tar.xz |
mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
Signed-off-by: Scott Wood <scottwood@freescale.com>
-rw-r--r-- | cpu/mpc83xx/cpu.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cpu/mpc83xx/cpu.c b/cpu/mpc83xx/cpu.c index e934ba6..d569c49 100644 --- a/cpu/mpc83xx/cpu.c +++ b/cpu/mpc83xx/cpu.c @@ -124,6 +124,18 @@ int checkcpu(void) case SPR_8321_REV11: puts("MPC8321, "); break; + case SPR_8311_REV10: + puts("MPC8311, "); + break; + case SPR_8311E_REV10: + puts("MPC8311E, "); + break; + case SPR_8313_REV10: + puts("MPC8313, "); + break; + case SPR_8313E_REV10: + puts("MPC8313E, "); + break; default: puts("Rev: Unknown revision number.\nWarning: Unsupported cpu revision!\n"); return 0; |