MPC8641HPCN: Report board id, board version and fpga version.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
Kumar Gala 2008-06-19 01:45:27 -05:00 committed by Jon Loeliger
parent a94f22f08f
commit 7de8c21f14

View File

@ -47,8 +47,10 @@ int board_early_init_f(void)
int checkboard(void)
{
puts("Board: MPC8641HPCN\n");
printf ("Board: MPC8641HPCN, System ID: 0x%02lx, "
"System Version: 0x%02lx, FPGA Version: 0x%02lx\n",
in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER),
in8(PIXIS_BASE + PIXIS_PVER));
return 0;
}