Re: [U-Boot] [PATCH 3/3] mx31pdk: Make the full boot log visible

2011-02-13 Thread Stefano Babic
On 02/09/2011 12:17 PM, Fabio Estevam wrote:
 Use board_early_init_f so that the full boot log output can be displayed.
 
 Signed-off-by: Fabio Estevam fabio.este...@freescale.com
 ---
  board/freescale/mx31pdk/mx31pdk.c |7 ++-
  include/configs/mx31pdk.h |1 +
  2 files changed, 7 insertions(+), 1 deletions(-)
 
 diff --git a/board/freescale/mx31pdk/mx31pdk.c 
 b/board/freescale/mx31pdk/mx31pdk.c
 index 2756e5a..a9f0fb4 100644

Applied to u-boot-imx, thanks.

Best regards,
Stefano Babic

-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: off...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH 3/3] mx31pdk: Make the full boot log visible

2011-02-09 Thread Fabio Estevam
Use board_early_init_f so that the full boot log output can be displayed.

Signed-off-by: Fabio Estevam fabio.este...@freescale.com
---
 board/freescale/mx31pdk/mx31pdk.c |7 ++-
 include/configs/mx31pdk.h |1 +
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/board/freescale/mx31pdk/mx31pdk.c 
b/board/freescale/mx31pdk/mx31pdk.c
index 2756e5a..a9f0fb4 100644
--- a/board/freescale/mx31pdk/mx31pdk.c
+++ b/board/freescale/mx31pdk/mx31pdk.c
@@ -45,7 +45,7 @@ void dram_init_banksize(void)
gd-bd-bi_dram[0].size = PHYS_SDRAM_1_SIZE;
 }
 
-int board_init(void)
+int board_early_init_f(void)
 {
/* CS5: CPLD incl. network controller */
__REG(CSCR_U(5)) = 0xd843;
@@ -56,6 +56,11 @@ int board_init(void)
mx31_uart1_hw_init();
mx31_spi2_hw_init();
 
+   return 0;
+}
+
+int board_init(void)
+{
gd-bd-bi_arch_number = MACH_TYPE_MX31_3DS; /* board id for linux */
/* adress of boot parameters */
gd-bd-bi_boot_params = PHYS_SDRAM_1 + 0x100;
diff --git a/include/configs/mx31pdk.h b/include/configs/mx31pdk.h
index d7286c0..86c758f 100644
--- a/include/configs/mx31pdk.h
+++ b/include/configs/mx31pdk.h
@@ -154,6 +154,7 @@
 #define CONFIG_NR_DRAM_BANKS   1
 #define PHYS_SDRAM_1   CSD0_BASE
 #define PHYS_SDRAM_1_SIZE  (128 * 1024 * 1024)
+#define CONFIG_BOARD_EARLY_INIT_F  1
 
 #define CONFIG_SYS_SDRAM_BASE  PHYS_SDRAM_1
 #define CONFIG_SYS_INIT_RAM_ADDR   IRAM_BASE_ADDR
-- 
1.6.0.4


___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot