]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-uniphier/init/init-sld3.c
9dc51bfeadf405331f883afba98901a23eb68621
[people/ms/u-boot.git] / arch / arm / mach-uniphier / init / init-sld3.c
1 /*
2 * Copyright (C) 2013-2015 Panasonic Corporation
3 * Copyright (C) 2015-2016 Socionext Inc.
4 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9 #include <common.h>
10 #include <spl.h>
11
12 #include "../init.h"
13 #include "../micro-support-card.h"
14
15 int uniphier_sld3_init(const struct uniphier_board_data *bd)
16 {
17 uniphier_sld3_bcu_init(bd);
18
19 uniphier_sbc_init_admulti(bd);
20
21 support_card_reset();
22
23 uniphier_sld3_dpll_init(bd);
24
25 support_card_init();
26
27 led_puts("L0");
28
29 uniphier_memconf_3ch_no_disbit_init(bd);
30
31 led_puts("L1");
32
33 uniphier_sld3_early_clk_init();
34 uniphier_sld3_dram_clk_init();
35
36 led_puts("L2");
37
38 led_puts("L3");
39
40 #ifdef CONFIG_SPL_SERIAL_SUPPORT
41 preloader_console_init();
42 #endif
43
44 led_puts("L4");
45
46 led_puts("L5");
47
48 return 0;
49 }