tangier.c 444 B

12345678910111213141516171819202122232425262728293031
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (c) 2017 Intel Corporation
  4. */
  5. #include <common.h>
  6. #include <asm/scu.h>
  7. #include <asm/u-boot-x86.h>
  8. /*
  9. * Miscellaneous platform dependent initializations
  10. */
  11. int arch_cpu_init(void)
  12. {
  13. return x86_cpu_init_f();
  14. }
  15. int checkcpu(void)
  16. {
  17. return 0;
  18. }
  19. int print_cpuinfo(void)
  20. {
  21. return default_print_cpuinfo();
  22. }
  23. void reset_cpu(ulong addr)
  24. {
  25. scu_ipc_simple_command(IPCMSG_COLD_RESET, 0);
  26. }