]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/uniphier/ph1-pro4/board_postclk_init.c
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / uniphier / ph1-pro4 / board_postclk_init.c
1 /*
2  * Copyright (C) 2012-2014 Panasonic Corporation
3  *   Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <asm/arch/led.h>
10 #include <asm/arch/board.h>
11
12 void sbc_init(void);
13 void sg_init(void);
14 void pll_init(void);
15 void pin_init(void);
16 void clkrst_init(void);
17
18 int board_postclk_init(void)
19 {
20         sbc_init();
21
22         sg_init();
23
24         pll_init();
25
26         uniphier_board_init();
27
28         led_write(B, 1, , );
29
30         clkrst_init();
31
32         led_write(B, 2, , );
33
34         pin_init();
35
36         led_write(B, 3, , );
37
38         return 0;
39 }