bl1_entrypoint.S 2.31 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
 */

7
#include <arch.h>
8
#include <el3_common_macros.S>
9

10
	.globl	bl1_entrypoint
11
12
13


	/* -----------------------------------------------------
14
	 * bl1_entrypoint() is the entry point into the trusted
15
16
17
18
19
	 * firmware code when a cpu is released from warm or
	 * cold reset.
	 * -----------------------------------------------------
	 */

20
func bl1_entrypoint
21
22
23
24
25
26
	/* ---------------------------------------------------------------------
	 * If the reset address is programmable then bl1_entrypoint() is
	 * executed only on the cold boot path. Therefore, we can skip the warm
	 * boot mailbox mechanism.
	 * ---------------------------------------------------------------------
	 */
27
	el3_entrypoint_common					\
28
		_init_sctlr=1					\
29
		_warm_boot_mailbox=!PROGRAMMABLE_RESET_ADDRESS	\
30
		_secondary_cold_boot=!COLD_BOOT_SINGLE_CPU	\
31
32
33
		_init_memory=1					\
		_init_c_runtime=1				\
		_exception_vectors=bl1_exceptions
34

35
36
37
	/* --------------------------------------------------------------------
	 * Perform BL1 setup
	 * --------------------------------------------------------------------
38
	 */
39
	bl	bl1_setup
40

41
42
43
44
45
46
47
48
49
50
51
52
	/* --------------------------------------------------------------------
	 * Enable pointer authentication
	 * --------------------------------------------------------------------
	 */
#if ENABLE_PAUTH
	mrs	x0, sctlr_el3
	orr	x0, x0, #SCTLR_EnIA_BIT
	msr	sctlr_el3, x0
	isb
#endif /* ENABLE_PAUTH */

	/* --------------------------------------------------------------------
53
	 * Initialize platform and jump to our c-entry point
54
	 * for this type of reset.
55
	 * --------------------------------------------------------------------
56
57
	 */
	bl	bl1_main
58

59
60
61
62
63
64
65
66
67
68
69
70
	/* --------------------------------------------------------------------
	 * Disable pointer authentication before jumping to BL31 or that will
	 * cause an authentication failure during the early platform init.
	 * --------------------------------------------------------------------
	 */
#if ENABLE_PAUTH
	mrs	x0, sctlr_el3
	bic	x0, x0, #SCTLR_EnIA_BIT
	msr	sctlr_el3, x0
	isb
#endif /* ENABLE_PAUTH */

71
72
73
74
75
	/* --------------------------------------------------
	 * Do the transition to next boot image.
	 * --------------------------------------------------
	 */
	b	el3_exit
76
endfunc bl1_entrypoint