]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-uniphier/board_common.c
ARM: DRA7: Add macros for voltage values for all OPPs
[u-boot] / arch / arm / mach-uniphier / board_common.c
1 /*
2  * Copyright (C) 2012-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #include <common.h>
8
9 #include "micro-support-card.h"
10
11 void uniphier_smp_kick_all_cpus(void);
12
13 int board_init(void)
14 {
15         led_puts("Uboo");
16 #ifdef CONFIG_ARM64
17         uniphier_smp_kick_all_cpus();
18 #endif
19         return 0;
20 }