blob: 92b3f21d93c2c46b0a8630e3b74f83c121e30051 [file] [log] [blame]
Masahiro Yamada28f40d42015-09-22 00:27:40 +09001/*
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 <linux/compiler.h>
10#include <mach/init.h>
11#include <mach/micro-support-card.h>
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}