blob: c2c68031b4075550d349f55ee76e2038c79d4080 [file] [log] [blame]
Masahiro Yamadad5167d52015-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>
Masahiro Yamadaefdf3402016-01-09 01:51:13 +09009
10#include "../init.h"
11#include "../micro-support-card.h"
Masahiro Yamadad5167d52015-09-22 00:27:40 +090012
13int ph1_pro5_init(const struct uniphier_board_data *bd)
14{
Masahiro Yamada7d600a62016-03-18 16:41:44 +090015 sbc_savepin_init(bd);
Masahiro Yamadad5167d52015-09-22 00:27:40 +090016
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}