mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 12:39:22 -04:00
85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
Added some info that is printed out when we boot to distiquish if we built MPC8572DS_config vs MPC8572DS_36BIT_config since they have different address maps. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
feede8b070
commit
cb69e4de87
@ -42,8 +42,12 @@ long int fixed_sdram(void);
|
|||||||
|
|
||||||
int checkboard (void)
|
int checkboard (void)
|
||||||
{
|
{
|
||||||
printf ("Board: MPC8572DS, System ID: 0x%02x, "
|
puts ("Board: MPC8572DS ");
|
||||||
"System Version: 0x%02x, FPGA Version: 0x%02x\n",
|
#ifdef CONFIG_PHYS_64BIT
|
||||||
|
puts ("(36-bit addrmap) ");
|
||||||
|
#endif
|
||||||
|
printf ("Sys ID: 0x%02x, "
|
||||||
|
"Sys Ver: 0x%02x, FPGA Ver: 0x%02x\n",
|
||||||
in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER),
|
in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER),
|
||||||
in8(PIXIS_BASE + PIXIS_PVER));
|
in8(PIXIS_BASE + PIXIS_PVER));
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user