ARM: uniphier: select CONFIG_ARMV8_SPIN_TABLE
[oweals/u-boot.git] / arch / arm / mach-uniphier / board_common.c
index 967fa6c0865d47664dfb42cf24b12fbfc1a208af..330d690bab02f5bb300bc5aa413b8498860dd3a5 100644 (file)
@@ -1,20 +1,20 @@
 /*
- * Copyright (C) 2012-2014 Panasonic Corporation
- *   Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
+ * Copyright (C) 2012-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
  *
  * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
-#include <mach/led.h>
 
-/*
- * Routine: board_init
- * Description: Early hardware init.
- */
+#include "micro-support-card.h"
+
+void uniphier_smp_kick_all_cpus(void);
+
 int board_init(void)
 {
-       led_write(U, B, O, O);
-
+       led_puts("Uboo");
+#ifdef CONFIG_ARM64
+       uniphier_smp_kick_all_cpus();
+#endif
        return 0;
 }