mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
9d0c2ceb35
This is the first ARMv8 SoC from Socionext Inc. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
20 lines
330 B
C
20 lines
330 B
C
/*
|
|
* Copyright (C) 2012-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include "micro-support-card.h"
|
|
|
|
void uniphier_smp_kick_all_cpus(void);
|
|
|
|
int board_init(void)
|
|
{
|
|
led_puts("Uboo");
|
|
#ifdef CONFIG_ARM64
|
|
uniphier_smp_kick_all_cpus();
|
|
#endif
|
|
return 0;
|
|
}
|