aboutsummaryrefslogtreecommitdiff
path: root/src/arch/arm64/stage_entry.S
blob: 8e577063548ecff446022c36ea3c9b3ac259abc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 * This file is part of the coreboot project.
 *
 * Copyright 2014 Google Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 */


#include <arch/asm.h>

ENTRY(arm64_el3_startup)
	/* Set all bits in SCTLR_EL3 to 0 except RES1 and RES0 */
	mrs     x0, SCTLR_EL3
	ldr     x1, .SCTLR_MASK
	and     x0, x0, x1
	msr	SCTLR_EL3, x0
	/* Set all bits in SCR_EL3 to 0 except RES1 and RES0 */
	mrs     x0, SCR_EL3
	ldr     x1, .SCR_MASK
	and     x0, x0, x1
	msr     SCR_EL3, x0

	/* Have stack pointer use SP_EL0. */
	msr	SPSel, #0
	isb

	/* Load up the stack if non-zero. */
	ldr	x0, .stack
	cmp	x0, #0
	b.eq	1f
	mov	sp, x0
	1:

	ldr	x1, .entry
	br	x1

	.align 4
	.SCTLR_MASK:
		.quad 0x0FFFFEFF0

	.SCR_MASK:
		.quad 0x0FFFFC070
	.align 4
	/*
	 * By default branch to main() and initialize the stack according
	 * to the Kconfig option for cpu0. However, this code can be relocated
	 * and reused to start up secondary cpus.
	 */
	.stack:
		.quad _estack
	.entry:
		.quad main
ENDPROC(arm64_el3_startup)
.global arm64_el3_startup_end
arm64_el3_startup_end:

ENTRY(stage_entry)
	b	arm64_el3_startup
ENDPROC(stage_entry)