Geert Uytterhoeven | 3fd45a1 | 2017-09-01 10:37:45 +0200 | [diff] [blame] | 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 | |
| 11 | #include <linux/linkage.h> |
| 12 | #include <asm/assembler.h> |
| 13 | |
Arnd Bergmann | 703ef76 | 2017-10-05 14:09:04 +0200 | [diff] [blame] | 14 | #ifdef CONFIG_SMP |
Geert Uytterhoeven | 3fd45a1 | 2017-09-01 10:37:45 +0200 | [diff] [blame] | 15 | ENTRY(shmobile_boot_apmu) |
Mylène Josserand | cad160e | 2018-05-04 21:05:45 +0200 | [diff] [blame] | 16 | bl secure_cntvoff_init |
Geert Uytterhoeven | 3fd45a1 | 2017-09-01 10:37:45 +0200 | [diff] [blame] | 17 | b secondary_startup |
| 18 | ENDPROC(shmobile_boot_apmu) |
Arnd Bergmann | 703ef76 | 2017-10-05 14:09:04 +0200 | [diff] [blame] | 19 | #endif |