summaryrefslogtreecommitdiff
path: root/cpu/mpc86xx
diff options
context:
space:
mode:
authorAndy Fleming <afleming@freescale.com>2008-02-06 07:19:40 (GMT)
committerAndrew Fleming-AFLEMING <afleming@freescale.com>2008-03-26 16:43:04 (GMT)
commit1ced121600b2060ab2ff9f0fddd9421fd70a0dc6 (patch)
tree9b2f8defd6879f399795a41f9caef39cb3fa76ba /cpu/mpc86xx
parentb83eef440cf3cef816172ccbb5897ccd8e403cf3 (diff)
downloadu-boot-fsl-qoriq-1ced121600b2060ab2ff9f0fddd9421fd70a0dc6.tar.xz
Update SVR numbers to expand support
FSL has taken to using SVR[16:23] as an SOC sub-version field. This is used to distinguish certain variants within an SOC family. To account for this, we add the SVR_SOC_VER() macro, and update the SVR_* constants to reflect the larger value. We also add SVR numbers for all of the current variants. Finally, to make things neater, rather than use an enormous switch statement to print out the CPU type, we create and array of SVR/name pairs (using a macro), and print out the CPU name that matches the SVR SOC version. Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'cpu/mpc86xx')
-rw-r--r--cpu/mpc86xx/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc86xx/cpu.c b/cpu/mpc86xx/cpu.c
index bf4e651..3c74764 100644
--- a/cpu/mpc86xx/cpu.c
+++ b/cpu/mpc86xx/cpu.c
@@ -69,7 +69,7 @@ checkcpu(void)
printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
svr = get_svr();
- ver = SVR_VER(svr);
+ ver = SVR_SOC_VER(svr);
major = SVR_MAJ(svr);
minor = SVR_MIN(svr);