headsmp-apmu.S 492 B

12345678910111213141516171819
  1. /*
  2. * SMP support for APMU based systems with Cortex A7/A15
  3. *
  4. * Copyright (C) 2014 Renesas Electronics Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/linkage.h>
  11. #include <asm/assembler.h>
  12. #ifdef CONFIG_SMP
  13. ENTRY(shmobile_boot_apmu)
  14. bl secure_cntvoff_init
  15. b secondary_startup
  16. ENDPROC(shmobile_boot_apmu)
  17. #endif