diff options
| author | roy zang <tie-fei.zang@freescale.com> | 2007-01-22 13:15:35 +0800 | 
|---|---|---|
| committer | Zang Tiefei <roy@bus.ap.freescale.net> | 2007-01-22 13:15:35 +0800 | 
| commit | ee460917afb74767aedc3da095d4fec4a50ba6f8 (patch) | |
| tree | fdead38c4681fc9adbedd6836792660f933614d3 /lib_ppc/board.c | |
| parent | a41969e09b9d886091a804c2ba5f1ab84b084dd3 (diff) | |
| parent | a4012396645533aef218354eeba754dff0deace8 (diff) | |
| download | olio-uboot-2014.01-ee460917afb74767aedc3da095d4fec4a50ba6f8.tar.xz olio-uboot-2014.01-ee460917afb74767aedc3da095d4fec4a50ba6f8.zip | |
Merge branch 'master' into hpc2
Conflicts:
	drivers/cfi_flash.c
The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
mpc7448hpc2 board.
Diffstat (limited to 'lib_ppc/board.c')
| -rw-r--r-- | lib_ppc/board.c | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/lib_ppc/board.c b/lib_ppc/board.c index f42412196..24e8e970b 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -76,6 +76,10 @@  extern int update_flash_size (int flash_size);  #endif +#if defined(CONFIG_SOLIDCARD3) +extern void sc3_read_eeprom(void); +#endif +  #if (CONFIG_COMMANDS & CFG_CMD_DOC)  void doc_init (void);  #endif @@ -93,6 +97,9 @@ static char *failed = "*** failed ***\n";  extern flash_info_t flash_info[];  #endif +#if defined(CONFIG_START_IDE) +extern int board_start_ide(void); +#endif  #include <environment.h>  DECLARE_GLOBAL_DATA_PTR; @@ -815,6 +822,9 @@ void board_init_r (gd_t *id, ulong dest_addr)  #endif	/* CONFIG_405GP, CONFIG_405EP */  #endif	/* CFG_EXTBDINFO */ +#if defined(CONFIG_SOLIDCARD3) +	sc3_read_eeprom(); +#endif  	s = getenv ("ethaddr");  #if defined (CONFIG_MBX) || \      defined (CONFIG_RPXCLASSIC) || \ @@ -921,6 +931,7 @@ void board_init_r (gd_t *id, ulong dest_addr)      defined(CONFIG_KUP4X)	|| \      defined(CONFIG_LWMON)	|| \      defined(CONFIG_PCU_E)	|| \ +    defined(CONFIG_SOLIDCARD3)	|| \      defined(CONFIG_W7O)		|| \      defined(CONFIG_MISC_INIT_R)  	/* miscellaneous platform dependent initialisations */ @@ -1030,7 +1041,12 @@ void board_init_r (gd_t *id, ulong dest_addr)  # else  	puts ("IDE:   ");  #endif +#if defined(CONFIG_START_IDE) +	if (board_start_ide()) +		ide_init (); +#else  	ide_init (); +#endif  #endif /* CFG_CMD_IDE */  #ifdef CONFIG_LAST_STAGE_INIT |