Commit a80a65e99745c3c2138716d2a1c58096e8e71697

Authored by Fabio Estevam
Committed by Stefano Babic
1 parent 5cab874052

mx53loco: Disable printing cpuinfo

Since commit 32df39c741788e ("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: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Jason Liu <r64343@freescale.com>

Showing 2 changed files with 0 additions and 3 deletions Side-by-side Diff

board/freescale/mx53loco/mx53loco.c
... ... @@ -389,7 +389,6 @@
389 389 {
390 390 if (!power_init())
391 391 clock_1GHz();
392   - print_cpuinfo();
393 392  
394 393 return 0;
395 394 }
include/configs/mx53loco.h
... ... @@ -24,8 +24,6 @@
24 24  
25 25 #define CONFIG_SYS_GENERIC_BOARD
26 26  
27   -#define CONFIG_DISPLAY_CPUINFO
28   -
29 27 /* Size of malloc() pool */
30 28 #define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024)
31 29