blob: 5cdf69a51730dc9e028c7d0beca0712586bbe2bf [file] [log] [blame]
Masahiro Yamadabb2ff9d2014-10-03 19:21:06 +09001/*
Masahiro Yamada24ee11f2015-02-05 14:42:55 +09002 * Copyright (C) 2013-2015 Panasonic Corporation
Masahiro Yamadabb2ff9d2014-10-03 19:21:06 +09003 * Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <spl.h>
Masahiro Yamada24ee11f2015-02-05 14:42:55 +090010#include <linux/compiler.h>
Masahiro Yamada95387e22015-02-27 02:26:44 +090011#include <mach/led.h>
12#include <mach/board.h>
Masahiro Yamada24ee11f2015-02-05 14:42:55 +090013
14void __weak bcu_init(void)
15{
16};
17void sbc_init(void);
18void sg_init(void);
19void pll_init(void);
20void pin_init(void);
21void clkrst_init(void);
22int umc_init(void);
23void enable_dpll_ssc(void);
Masahiro Yamadabb2ff9d2014-10-03 19:21:06 +090024
25void spl_board_init(void)
26{
Masahiro Yamada24ee11f2015-02-05 14:42:55 +090027 bcu_init();
28
29 sbc_init();
30
31 sg_init();
32
33 uniphier_board_reset();
34
35 pll_init();
36
37 uniphier_board_init();
38
39 led_write(L, 0, , );
40
41 clkrst_init();
42
43 led_write(L, 1, , );
44
45 {
46 int res;
47
48 res = umc_init();
49 if (res < 0) {
50 while (1)
51 ;
52 }
53 }
54 led_write(L, 2, , );
55
56 enable_dpll_ssc();
57
58 led_write(L, 3, , );
Masahiro Yamadabb2ff9d2014-10-03 19:21:06 +090059}