diff options
author | Tom Rini <trini@konsulko.com> | 2015-09-24 12:28:02 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-09-24 12:28:02 -0400 |
commit | 7bb839d672ed3b28c7740429df4a307482868c5b (patch) | |
tree | 0713c473994463c67c13cd80c6206886509b98d6 /arch/arm/mach-uniphier/init/init-ph1-sld3.c | |
parent | ce50916ca1415da2f44931d93397d36ac0d208a2 (diff) | |
parent | a4bb44b027705f8c05fc525180cabaa3769247bb (diff) | |
download | u-boot-imx-7bb839d672ed3b28c7740429df4a307482868c5b.zip u-boot-imx-7bb839d672ed3b28c7740429df4a307482868c5b.tar.gz u-boot-imx-7bb839d672ed3b28c7740429df4a307482868c5b.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-uniphier
Diffstat (limited to 'arch/arm/mach-uniphier/init/init-ph1-sld3.c')
-rw-r--r-- | arch/arm/mach-uniphier/init/init-ph1-sld3.c | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/arch/arm/mach-uniphier/init/init-ph1-sld3.c b/arch/arm/mach-uniphier/init/init-ph1-sld3.c new file mode 100644 index 0000000..1146fda --- /dev/null +++ b/arch/arm/mach-uniphier/init/init-ph1-sld3.c @@ -0,0 +1,53 @@ +/* + * Copyright (C) 2013-2015 Masahiro Yamada <yamada.masahiro@socionext.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#include <common.h> +#include <spl.h> +#include <linux/compiler.h> +#include <mach/init.h> +#include <mach/micro-support-card.h> + +int ph1_sld3_init(const struct uniphier_board_data *bd) +{ + ph1_sld3_bcu_init(bd); + + ph1_sld3_sbc_init(bd); + + support_card_reset(); + + ph1_sld3_pll_init(bd); + + support_card_init(); + + led_puts("L0"); + + memconf_init(bd); + ph1_sld3_memconf_init(bd); + + led_puts("L1"); + + ph1_ld4_early_clk_init(bd); + + led_puts("L2"); + + ph1_sld3_early_pin_init(bd); + + led_puts("L3"); + +#ifdef CONFIG_SPL_SERIAL_SUPPORT + preloader_console_init(); +#endif + + led_puts("L4"); + + led_puts("L5"); + + ph1_sld3_enable_dpll_ssc(bd); + + led_puts("L6"); + + return 0; +} |