diff options
author | Dave Liu <r63238@freescale.com> | 2007-09-18 12:36:58 +0800 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-01-08 09:55:39 -0600 |
commit | 555da61702771fe0f76f3de23b4e7590f3704161 (patch) | |
tree | 7fb5f6d5de81c4740f013752f56dfe1b3e2bc437 /cpu/mpc83xx/cpu.c | |
parent | 03051c3d35c9981ceaa059005660e699f3eacf1c (diff) | |
download | talos-obmc-uboot-555da61702771fe0f76f3de23b4e7590f3704161.tar.gz talos-obmc-uboot-555da61702771fe0f76f3de23b4e7590f3704161.zip |
mpc83xx: Add the support of MPC8315E SoC
The MPC8315E SoC including e300c3 core and new IP blocks,
such as TDM, PCI Express and SATA controller.
Signed-off-by: Dave Liu <daveliu@freescale.com>
Diffstat (limited to 'cpu/mpc83xx/cpu.c')
-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 98236ef509..8d69d22905 100644 --- a/cpu/mpc83xx/cpu.c +++ b/cpu/mpc83xx/cpu.c @@ -153,6 +153,18 @@ int checkcpu(void) case SPR_8313E_REV10: puts("MPC8313E, "); break; + case SPR_8315E_REV10: + puts("MPC8315E, "); + break; + case SPR_8315_REV10: + puts("MPC8315, "); + break; + case SPR_8314E_REV10: + puts("MPC8314E, "); + break; + case SPR_8314_REV10: + puts("MPC8314, "); + break; case SPR_8379E_REV10: puts("MPC8379E, "); break; |