]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-uniphier/init/init-ph1-pro5.c
ARM: uniphier: move headers out of include/mach directory
[people/ms/u-boot.git] / arch / arm / mach-uniphier / init / init-ph1-pro5.c
CommitLineData
28f40d4a
MY
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>
107b3fb4
MY
9
10#include "../init.h"
11#include "../micro-support-card.h"
28f40d4a
MY
12
13int 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}