diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-07-14 14:07:01 -0500 |
---|---|---|
committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2008-07-14 20:15:22 -0500 |
commit | e5852787f0c3c442a276262f13d91ca450605ac0 (patch) | |
tree | 341486a41fa4a2fbd23af5308ba27783a2b52ff8 /board/freescale | |
parent | 73f15a060f67a2462551c334215bd20fac6b81d1 (diff) | |
download | u-boot-imx-e5852787f0c3c442a276262f13d91ca450605ac0.zip u-boot-imx-e5852787f0c3c442a276262f13d91ca450605ac0.tar.gz u-boot-imx-e5852787f0c3c442a276262f13d91ca450605ac0.tar.bz2 |
MPC8544DS: Report board id, board version and fpga version.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/mpc8544ds/mpc8544ds.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/board/freescale/mpc8544ds/mpc8544ds.c b/board/freescale/mpc8544ds/mpc8544ds.c index 8c4b040..c39ce11 100644 --- a/board/freescale/mpc8544ds/mpc8544ds.c +++ b/board/freescale/mpc8544ds/mpc8544ds.c @@ -49,7 +49,10 @@ int checkboard (void) if ((uint)&gur->porpllsr != 0xe00e0000) { printf("immap size error %lx\n",(ulong)&gur->porpllsr); } - printf ("Board: MPC8544DS\n"); + printf ("Board: MPC8544DS, System ID: 0x%02x, " + "System Version: 0x%02x, FPGA Version: 0x%02x\n", + in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER), + in8(PIXIS_BASE + PIXIS_PVER)); lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */ lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */ |