diff options
| author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-05-30 14:45:06 +0200 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-05-30 14:45:06 +0200 | 
| commit | a19b0dd62d7b8efc658fa1aa685ff5665878f3ee (patch) | |
| tree | 1fadf0fb3da83203ba28f209ec99e1b33e03f4d5 /arch/powerpc/lib/board.c | |
| parent | 60985bba58e7695dac1fddae8cdbb62d8cfd1254 (diff) | |
| parent | a71d45d706a5b51c348160163b6c159632273fed (diff) | |
| download | olio-uboot-2014.01-a19b0dd62d7b8efc658fa1aa685ff5665878f3ee.tar.xz olio-uboot-2014.01-a19b0dd62d7b8efc658fa1aa685ff5665878f3ee.zip | |
Merge branch 'u-boot/master' into 'u-boot-arm/master'
Conflicts:
	common/cmd_fpga.c
	drivers/usb/host/ohci-at91.c
Diffstat (limited to 'arch/powerpc/lib/board.c')
| -rw-r--r-- | arch/powerpc/lib/board.c | 24 | 
1 files changed, 0 insertions, 24 deletions
| diff --git a/arch/powerpc/lib/board.c b/arch/powerpc/lib/board.c index 41b22949f..fc4c1d581 100644 --- a/arch/powerpc/lib/board.c +++ b/arch/powerpc/lib/board.c @@ -301,9 +301,6 @@ static init_fnc_t *init_sequence[] = {  #if defined(CONFIG_MPC5xxx)  	prt_mpc5xxx_clks,  #endif /* CONFIG_MPC5xxx */ -#if defined(CONFIG_MPC8220) -	prt_mpc8220_clks, -#endif  	checkboard,  	INIT_FUNC_WATCHDOG_INIT  #if defined(CONFIG_MISC_INIT_F) @@ -548,27 +545,6 @@ void board_init_f(ulong bootflag)  #if defined(CONFIG_MPC83xx)  	bd->bi_immrbar = CONFIG_SYS_IMMR;  #endif -#if defined(CONFIG_MPC8220) -	bd->bi_mbar_base = CONFIG_SYS_MBAR;	/* base of internal registers */ -	bd->bi_inpfreq = gd->arch.inp_clk; -	bd->bi_pcifreq = gd->pci_clk; -	bd->bi_vcofreq = gd->arch.vco_clk; -	bd->bi_pevfreq = gd->arch.pev_clk; -	bd->bi_flbfreq = gd->arch.flb_clk; - -	/* store bootparam to sram (backward compatible), here? */ -	{ -		u32 *sram = (u32 *) CONFIG_SYS_SRAM_BASE; - -		*sram++ = gd->ram_size; -		*sram++ = gd->bus_clk; -		*sram++ = gd->arch.inp_clk; -		*sram++ = gd->cpu_clk; -		*sram++ = gd->arch.vco_clk; -		*sram++ = gd->arch.flb_clk; -		*sram++ = 0xb8c3ba11;	/* boot signature */ -	} -#endif  	WATCHDOG_RESET();  	bd->bi_intfreq = gd->cpu_clk;	/* Internal Freq, in Hz */ |