ARM: uniphier: remove unneeded mdelay() in PLL setting function
[oweals/u-boot.git] / arch / arm / mach-uniphier / init / init-ld4.c
1 /*
2  * Copyright (C) 2013-2015 Panasonic Corporation
3  * Copyright (C) 2015-2016 Socionext Inc.
4  *   Author: Masahiro Yamada <yamada.masahiro@socionext.com>
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #include <common.h>
10 #include <spl.h>
11
12 #include "../init.h"
13 #include "../micro-support-card.h"
14
15 int uniphier_ld4_init(const struct uniphier_board_data *bd)
16 {
17         uniphier_ld4_bcu_init(bd);
18
19         uniphier_sbc_init_savepin(bd);
20         uniphier_ld4_sbc_init(bd);
21
22         support_card_reset();
23
24         uniphier_ld4_dpll_init(bd);
25
26         support_card_init();
27
28         led_puts("L0");
29
30         memconf_init(bd);
31
32         led_puts("L1");
33
34         uniphier_ld4_early_clk_init(bd);
35
36         led_puts("L2");
37
38         led_puts("L3");
39
40 #ifdef CONFIG_SPL_SERIAL_SUPPORT
41         preloader_console_init();
42 #endif
43
44         led_puts("L4");
45
46         {
47                 int res;
48
49                 res = uniphier_ld4_umc_init(bd);
50                 if (res < 0) {
51                         while (1)
52                                 ;
53                 }
54         }
55
56         led_puts("L5");
57
58         return 0;
59 }