]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-uniphier/init/init-pro5.c
ARM: uniphier: drop PH1- prefix from CONFIG options and file names
[people/ms/u-boot.git] / arch / arm / mach-uniphier / init / init-pro5.c
1 /*
2 * Copyright (C) 2015 Masahiro Yamada <yamada.masahiro@socionext.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7 #include <common.h>
8 #include <spl.h>
9
10 #include "../init.h"
11 #include "../micro-support-card.h"
12
13 int ph1_pro5_init(const struct uniphier_board_data *bd)
14 {
15 ph1_pro4_sbc_init(bd);
16
17 support_card_reset();
18
19 support_card_init();
20
21 led_puts("L0");
22
23 memconf_init(bd);
24
25 led_puts("L1");
26
27 ph1_pro5_early_clk_init(bd);
28
29 led_puts("L2");
30
31 led_puts("L3");
32
33 #ifdef CONFIG_SPL_SERIAL_SUPPORT
34 preloader_console_init();
35 #endif
36
37 led_puts("L4");
38
39 led_puts("L5");
40
41 return 0;
42 }