]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/uniphier/ph1-ld4/board_postclk_init.c
Merge branch 'u-boot-marvell/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / uniphier / ph1-ld4 / 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 bcu_init(void);
13 void sbc_init(void);
14 void sg_init(void);
15 void pll_init(void);
16 void pin_init(void);
17 void clkrst_init(void);
18
19 int board_postclk_init(void)
20 {
21         bcu_init();
22
23         sbc_init();
24
25         sg_init();
26
27         pll_init();
28
29         uniphier_board_init();
30
31         led_write(B, 1, , );
32
33         clkrst_init();
34
35         led_write(B, 2, , );
36
37         pin_init();
38
39         led_write(B, 3, , );
40
41         return 0;
42 }