headsmp.S 413 B

1234567891011121314151617
  1. // SPDX-License-Identifier: GPL-2.0
  2. // Copyright (c) 2018 Nuvoton Technology corporation.
  3. // Copyright 2018 Google, Inc.
  4. #include <linux/linkage.h>
  5. #include <linux/init.h>
  6. #include <asm/assembler.h>
  7. /*
  8. * The boot ROM does not start secondary CPUs in SVC mode, so we need to do that
  9. * here.
  10. */
  11. ENTRY(npcm7xx_secondary_startup)
  12. safe_svcmode_maskall r0
  13. b secondary_startup
  14. ENDPROC(npcm7xx_secondary_startup)