Skip to content
Snippets Groups Projects
Commit a80a65e9 authored by Fabio Estevam's avatar Fabio Estevam Committed by Stefano Babic
Browse files

mx53loco: Disable printing cpuinfo


Since commit 32df39c7 ("mx5: fix get_reset_cause") we have the following
boot messages on a mx53qsb:

U-Boot 2015.04-rc5-00029-gd68df02 (Apr 06 2015 - 11:15:39)

CPU:   Freescale i.MX53 rev2.1 at 800 MHz
Reset cause: POR
Board: MX53 LOCO
I2C:   ready
DRAM:  1 GiB
MMC:   FSL_SDHC: 0, FSL_SDHC: 1
In:    serial
Out:   serial
Err:   serial
CPU:   Freescale i.MX53 rev2.1 at 1000 MHz
Reset cause: unknown reset
Net:   FEC [PRIME]

The CPU and Reset cause lines appear twice.

Initially mx53 boots at 800MHz, then at a later point the PMIC is configured via
I2C to raise the CPU voltage so that it can run at 1GHz.

To avoid such misleading double printings, disable printing cpu info for now.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Acked-by: default avatarJason Liu <r64343@freescale.com>
parent 5cab8740
No related branches found
No related tags found
No related merge requests found
...@@ -389,7 +389,6 @@ int board_late_init(void) ...@@ -389,7 +389,6 @@ int board_late_init(void)
{ {
if (!power_init()) if (!power_init())
clock_1GHz(); clock_1GHz();
print_cpuinfo();
return 0; return 0;
} }
......
...@@ -24,8 +24,6 @@ ...@@ -24,8 +24,6 @@
#define CONFIG_SYS_GENERIC_BOARD #define CONFIG_SYS_GENERIC_BOARD
#define CONFIG_DISPLAY_CPUINFO
/* Size of malloc() pool */ /* Size of malloc() pool */
#define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024) #define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment