X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=arch%2Farm%2Fmach-uniphier%2Fspl.c;h=a34d3a167cc57533e432e43ccf3fd8c1f7952f33;hb=7e163363fb1c2e22f1eb3ee7334df93bbae8f920;hp=c8a2469f6a9d2bbb73bdbe0cd46b14de95ac4e37;hpb=198a97a6abe7090109002baea0d2cb46070955aa;p=u-boot diff --git a/arch/arm/mach-uniphier/spl.c b/arch/arm/mach-uniphier/spl.c index c8a2469f6a..a34d3a167c 100644 --- a/arch/arm/mach-uniphier/spl.c +++ b/arch/arm/mach-uniphier/spl.c @@ -1,6 +1,7 @@ /* * Copyright (C) 2013-2015 Panasonic Corporation - * Author: Masahiro Yamada + * Copyright (C) 2015 Socionext Inc. + * Author: Masahiro Yamada * * SPDX-License-Identifier: GPL-2.0+ */ @@ -18,7 +19,9 @@ void sbc_init(void); void sg_init(void); void pll_init(void); void pin_init(void); +void memconf_init(void); void early_clkrst_init(void); +void early_pin_init(void); int umc_init(void); void enable_dpll_ssc(void); @@ -38,10 +41,24 @@ void spl_board_init(void) led_write(L, 0, , ); - early_clkrst_init(); + memconf_init(); led_write(L, 1, , ); + early_clkrst_init(); + + led_write(L, 2, , ); + + early_pin_init(); + + led_write(L, 3, , ); + +#ifdef CONFIG_SPL_SERIAL_SUPPORT + preloader_console_init(); +#endif + + led_write(L, 4, , ); + { int res; @@ -51,9 +68,9 @@ void spl_board_init(void) ; } } - led_write(L, 2, , ); + led_write(L, 5, , ); enable_dpll_ssc(); - led_write(L, 3, , ); + led_write(L, 6, , ); }