diff options
author | Becky Bruce <beckyb@kernel.crashing.org> | 2009-02-12 10:43:32 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-02-23 22:48:17 +0100 |
commit | 2331e18b9df0ab98ebf3ab44c0efea1311949aaa (patch) | |
tree | 0eb8577d4702364d58f863c39d9f8b4fc569d3fa /board/freescale | |
parent | 2f70c49e5b9813635ad73666aa30f304c7fdeda9 (diff) |
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 <beckyb@kernel.crashing.org>
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/mpc8641hpcn/mpc8641hpcn.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/freescale/mpc8641hpcn/mpc8641hpcn.c b/board/freescale/mpc8641hpcn/mpc8641hpcn.c index 49718dac6ca..c94fc3f1d9c 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; } |