ARM: uniphier: kill bogus header includes
[oweals/u-boot.git] / arch / arm / mach-uniphier / init / init-ph1-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 #include <mach/init.h>
10 #include <mach/micro-support-card.h>
11
12 int ph1_pro5_init(const struct uniphier_board_data *bd)
13 {
14         ph1_pro4_sbc_init(bd);
15
16         support_card_reset();
17
18         support_card_init();
19
20         led_puts("L0");
21
22         memconf_init(bd);
23
24         led_puts("L1");
25
26         ph1_pro5_early_clk_init(bd);
27
28         led_puts("L2");
29
30         led_puts("L3");
31
32 #ifdef CONFIG_SPL_SERIAL_SUPPORT
33         preloader_console_init();
34 #endif
35
36         led_puts("L4");
37
38         led_puts("L5");
39
40         return 0;
41 }