1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 *  Cloned from linux/arch/arm/mach-realview/headsmp.S
4 *
5 *  Copyright (c) 2003 ARM Limited
6 *  All Rights Reserved
7 */
8#include <linux/linkage.h>
9#include <linux/init.h>
10
11#include <asm/assembler.h>
12
13/*
14 * exynos4 specific entry point for secondary CPUs.  This provides
15 * a "holding pen" into which all secondary cores are held until we're
16 * ready for them to initialise.
17 */
18ENTRY(exynos4_secondary_startup)
19ARM_BE8(setend	be)
20	mrc	p15, 0, r0, c0, c0, 5
21	and	r0, r0, #15
22	adr_l	r6, exynos_pen_release
23pen:	ldr	r7, [r6]
24	cmp	r7, r0
25	bne	pen
26
27	/*
28	 * we've been released from the holding pen: secondary_stack
29	 * should now contain the SVC stack for this core
30	 */
31	b	secondary_startup
32ENDPROC(exynos4_secondary_startup)
33