xref: /linux/arch/arm/mach-shmobile/headsmp-apmu.S (revision a67de8820943661edbb4e0a498f64c3c2785e176)
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * SMP support for APMU based systems with Cortex A7/A15
4 *
5 * Copyright (C) 2014  Renesas Electronics Corporation
6 */
7
8#include <linux/linkage.h>
9#include <asm/assembler.h>
10
11#ifdef CONFIG_SMP
12ENTRY(shmobile_boot_apmu)
13	bl	secure_cntvoff_init
14	b	secondary_startup
15ENDPROC(shmobile_boot_apmu)
16#endif
17