浏览代码

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

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Kumar Gala 17 年之前
父节点
当前提交
7de8c21f14
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4 2
      board/freescale/mpc8641hpcn/mpc8641hpcn.c

+ 4 - 2
board/freescale/mpc8641hpcn/mpc8641hpcn.c

@@ -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;
 }