board_common.c 330 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (C) 2012-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include "micro-support-card.h"
  8. void uniphier_smp_kick_all_cpus(void);
  9. int board_init(void)
  10. {
  11. led_puts("Uboo");
  12. #ifdef CONFIG_ARM64
  13. uniphier_smp_kick_all_cpus();
  14. #endif
  15. return 0;
  16. }