blob: b22015eb91444b4b4dd87c9d9ad5dd2197d06db3 [file] [log] [blame]
Yatharth Kochar5d361212016-06-28 17:07:09 +01001/*
Yann Gautierc1425872019-02-15 16:42:20 +01002 * Copyright (c) 2016-2022, ARM Limited and Contributors. All rights reserved.
Yatharth Kochar5d361212016-06-28 17:07:09 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kochar5d361212016-06-28 17:07:09 +01005 */
6
7#include <arch.h>
8#include <asm_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <common/bl_common.h>
Yatharth Kochar5d361212016-06-28 17:07:09 +010010#include <context.h>
11#include <el3_common_macros.S>
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +000012#include <smccc_helpers.h>
13#include <smccc_macros.S>
Yatharth Kochar5d361212016-06-28 17:07:09 +010014
15 .globl bl1_vector_table
16 .globl bl1_entrypoint
17
18 /* -----------------------------------------------------
19 * Setup the vector table to support SVC & MON mode.
20 * -----------------------------------------------------
21 */
22vector_base bl1_vector_table
23 b bl1_entrypoint
24 b report_exception /* Undef */
25 b bl1_aarch32_smc_handler /* SMC call */
Yann Gautierc1425872019-02-15 16:42:20 +010026 b report_prefetch_abort /* Prefetch abort */
27 b report_data_abort /* Data abort */
Yatharth Kochar5d361212016-06-28 17:07:09 +010028 b report_exception /* Reserved */
29 b report_exception /* IRQ */
30 b report_exception /* FIQ */
31
32 /* -----------------------------------------------------
33 * bl1_entrypoint() is the entry point into the trusted
34 * firmware code when a cpu is released from warm or
35 * cold reset.
36 * -----------------------------------------------------
37 */
38
39func bl1_entrypoint
40/* ---------------------------------------------------------------------
41* If the reset address is programmable then bl1_entrypoint() is
42* executed only on the cold boot path. Therefore, we can skip the warm
43* boot mailbox mechanism.
44* ---------------------------------------------------------------------
45*/
46 el3_entrypoint_common \
David Cunadofee86532017-04-13 22:38:29 +010047 _init_sctlr=1 \
Yatharth Kochar5d361212016-06-28 17:07:09 +010048 _warm_boot_mailbox=!PROGRAMMABLE_RESET_ADDRESS \
49 _secondary_cold_boot=!COLD_BOOT_SINGLE_CPU \
50 _init_memory=1 \
51 _init_c_runtime=1 \
Yann Gautier514e59c2020-10-05 11:02:54 +020052 _exception_vectors=bl1_vector_table \
53 _pie_fixup_size=0
Yatharth Kochar5d361212016-06-28 17:07:09 +010054
55 /* -----------------------------------------------------
Antonio Nino Diaze3887a92019-01-30 20:29:50 +000056 * Perform BL1 setup
Yatharth Kochar5d361212016-06-28 17:07:09 +010057 * -----------------------------------------------------
58 */
Antonio Nino Diaze3887a92019-01-30 20:29:50 +000059 bl bl1_setup
Yatharth Kochar5d361212016-06-28 17:07:09 +010060
61 /* -----------------------------------------------------
62 * Jump to main function.
63 * -----------------------------------------------------
64 */
65 bl bl1_main
66
67 /* -----------------------------------------------------
68 * Jump to next image.
69 * -----------------------------------------------------
70 */
71
72 /*
dp-armcdd03cb2017-02-15 11:07:55 +000073 * Get the smc_context for next BL image,
74 * program the gp/system registers and save it in `r4`.
75 */
76 bl smc_get_next_ctx
77 mov r4, r0
78
79 /* Only turn-off MMU if going to secure world */
80 ldr r5, [r4, #SMC_CTX_SCR]
81 tst r5, #SCR_NS_BIT
82 bne skip_mmu_off
83
84 /*
85 * MMU needs to be disabled because both BL1 and BL2/BL2U execute
Yatharth Kochar5d361212016-06-28 17:07:09 +010086 * in PL1, and therefore share the same address space.
dp-armcdd03cb2017-02-15 11:07:55 +000087 * BL2/BL2U will initialize the address space according to its
Yatharth Kochar5d361212016-06-28 17:07:09 +010088 * own requirement.
89 */
90 bl disable_mmu_icache_secure
91 stcopr r0, TLBIALL
92 dsb sy
93 isb
94
dp-armcdd03cb2017-02-15 11:07:55 +000095skip_mmu_off:
96 /* Restore smc_context from `r4` and exit secure monitor mode. */
97 mov r0, r4
Soby Mathewf3e3a432017-03-30 14:42:54 +010098 monitor_exit
Yatharth Kochar5d361212016-06-28 17:07:09 +010099endfunc bl1_entrypoint