From: Becky Bruce Date: Thu, 12 Feb 2009 16:43:32 +0000 (-0600) Subject: mpc8641hpcn: Indicate 36-bit addr map in boot messages X-Git-Tag: v2009.03-rc2~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2331e18b9df0ab98ebf3ab44c0efea1311949aaa;p=oweals%2Fu-boot.git mpc8641hpcn: Indicate 36-bit addr map in boot messages If 36-bit addressing is enabled, print a message on the console when we boot. Signed-off-by: Becky Bruce --- diff --git a/board/freescale/mpc8641hpcn/mpc8641hpcn.c b/board/freescale/mpc8641hpcn/mpc8641hpcn.c index 49718dac6c..c94fc3f1d9 100644 --- a/board/freescale/mpc8641hpcn/mpc8641hpcn.c +++ b/board/freescale/mpc8641hpcn/mpc8641hpcn.c @@ -46,6 +46,9 @@ int checkboard(void) "System Version: 0x%02x, FPGA Version: 0x%02x\n", in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER), in8(PIXIS_BASE + PIXIS_PVER)); +#ifdef CONFIG_PHYS_64BIT + printf (" 36-bit physical address map\n"); +#endif return 0; }