blob: 697eb82c1fc4d658e6755381c5ec838cc02fc73f [file] [log] [blame]
Yatharth Kocharf528faf2016-06-28 16:58:26 +01001/*
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06002 * Copyright (c) 2016-2023, ARM Limited and Contributors. All rights reserved.
Yatharth Kocharf528faf2016-06-28 16:58:26 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kocharf528faf2016-06-28 16:58:26 +01005 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef EL3_COMMON_MACROS_S
8#define EL3_COMMON_MACROS_S
Yatharth Kocharf528faf2016-06-28 16:58:26 +01009
10#include <arch.h>
11#include <asm_macros.S>
12#include <assert_macros.S>
Yann Gautier514e59c2020-10-05 11:02:54 +020013#include <lib/xlat_tables/xlat_tables_defs.h>
14
15#define PAGE_START_MASK ~(PAGE_SIZE_MASK)
Yatharth Kocharf528faf2016-06-28 16:58:26 +010016
17 /*
18 * Helper macro to initialise EL3 registers we care about.
19 */
Dimitris Papastamos0a4cded2018-01-02 11:37:02 +000020 .macro el3_arch_init_common
Yatharth Kocharf528faf2016-06-28 16:58:26 +010021 /* ---------------------------------------------------------------------
David Cunadofee86532017-04-13 22:38:29 +010022 * SCTLR has already been initialised - read current value before
23 * modifying.
24 *
25 * SCTLR.I: Enable the instruction cache.
26 *
27 * SCTLR.A: Enable Alignment fault checking. All instructions that load
28 * or store one or more registers have an alignment check that the
29 * address being accessed is aligned to the size of the data element(s)
30 * being accessed.
Yatharth Kocharf528faf2016-06-28 16:58:26 +010031 * ---------------------------------------------------------------------
32 */
David Cunadofee86532017-04-13 22:38:29 +010033 ldr r1, =(SCTLR_I_BIT | SCTLR_A_BIT)
Yatharth Kocharf528faf2016-06-28 16:58:26 +010034 ldcopr r0, SCTLR
35 orr r0, r0, r1
36 stcopr r0, SCTLR
37 isb
38
39 /* ---------------------------------------------------------------------
David Cunadofee86532017-04-13 22:38:29 +010040 * Initialise SCR, setting all fields rather than relying on the hw.
41 *
42 * SCR.SIF: Enabled so that Secure state instruction fetches from
43 * Non-secure memory are not permitted.
44 * ---------------------------------------------------------------------
Yatharth Kocharf528faf2016-06-28 16:58:26 +010045 */
David Cunadofee86532017-04-13 22:38:29 +010046 ldr r0, =(SCR_RESET_VAL | SCR_SIF_BIT)
Yatharth Kocharf528faf2016-06-28 16:58:26 +010047 stcopr r0, SCR
48
49 /* -----------------------------------------------------
50 * Enable the Asynchronous data abort now that the
51 * exception vectors have been setup.
52 * -----------------------------------------------------
53 */
54 cpsie a
55 isb
56
David Cunadofee86532017-04-13 22:38:29 +010057 /* ---------------------------------------------------------------------
58 * Initialise NSACR, setting all the fields, except for the
59 * IMPLEMENTATION DEFINED field, rather than relying on the hw. Some
60 * fields are architecturally UNKNOWN on reset.
61 *
62 * NSACR_ENABLE_FP_ACCESS: Represents NSACR.cp11 and NSACR.cp10. The
63 * cp11 field is ignored, but is set to same value as cp10. The cp10
64 * field is set to allow access to Advanced SIMD and floating point
65 * features from both Security states.
Manish V Badarkhef7ee0642021-07-07 16:27:10 +010066 *
67 * NSACR.NSTRCDIS: When system register trace implemented, Set to one
68 * so that NS System register accesses to all implemented trace
69 * registers are disabled.
70 * When system register trace is not implemented, this bit is RES0 and
71 * hence set to zero.
David Cunadofee86532017-04-13 22:38:29 +010072 * ---------------------------------------------------------------------
73 */
Yatharth Kocharf528faf2016-06-28 16:58:26 +010074 ldcopr r0, NSACR
David Cunadofee86532017-04-13 22:38:29 +010075 and r0, r0, #NSACR_IMP_DEF_MASK
76 orr r0, r0, #(NSACR_RESET_VAL | NSACR_ENABLE_FP_ACCESS)
Manish V Badarkhef7ee0642021-07-07 16:27:10 +010077 ldcopr r1, ID_DFR0
78 ubfx r1, r1, #ID_DFR0_COPTRC_SHIFT, #ID_DFR0_COPTRC_LENGTH
79 cmp r1, #ID_DFR0_COPTRC_SUPPORTED
80 bne 1f
81 orr r0, r0, #NSTRCDIS_BIT
821:
Yatharth Kocharf528faf2016-06-28 16:58:26 +010083 stcopr r0, NSACR
84 isb
85
David Cunadofee86532017-04-13 22:38:29 +010086 /* ---------------------------------------------------------------------
87 * Initialise CPACR, setting all fields rather than relying on hw. Some
88 * fields are architecturally UNKNOWN on reset.
89 *
90 * CPACR.TRCDIS: Trap control for PL0 and PL1 System register accesses
91 * to trace registers. Set to zero to allow access.
92 *
93 * CPACR_ENABLE_FP_ACCESS: Represents CPACR.cp11 and CPACR.cp10. The
94 * cp11 field is ignored, but is set to same value as cp10. The cp10
95 * field is set to allow full access from PL0 and PL1 to floating-point
96 * and Advanced SIMD features.
97 * ---------------------------------------------------------------------
Yatharth Kocharf528faf2016-06-28 16:58:26 +010098 */
David Cunadofee86532017-04-13 22:38:29 +010099 ldr r0, =((CPACR_RESET_VAL | CPACR_ENABLE_FP_ACCESS) & ~(TRCDIS_BIT))
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100100 stcopr r0, CPACR
101 isb
102
David Cunadofee86532017-04-13 22:38:29 +0100103 /* ---------------------------------------------------------------------
104 * Initialise FPEXC, setting all fields rather than relying on hw. Some
105 * fields are architecturally UNKNOWN on reset and are set to zero
106 * except for field(s) listed below.
107 *
108 * FPEXC.EN: Enable access to Advanced SIMD and floating point features
109 * from all exception levels.
Manish Pandey457c64e2019-04-01 15:27:18 +0100110 *
111 * __SOFTFP__: Predefined macro exposed by soft-float toolchain.
112 * ARMv7 and Cortex-A32(ARMv8/aarch32) has both soft-float and
113 * hard-float variants of toolchain, avoid compiling below code with
114 * soft-float toolchain as "vmsr" instruction will not be recognized.
David Cunadofee86532017-04-13 22:38:29 +0100115 * ---------------------------------------------------------------------
116 */
Manish Pandey457c64e2019-04-01 15:27:18 +0100117#if ((ARM_ARCH_MAJOR > 7) || defined(ARMV7_SUPPORTS_VFP)) && !(__SOFTFP__)
David Cunadofee86532017-04-13 22:38:29 +0100118 ldr r0, =(FPEXC_RESET_VAL | FPEXC_EN_BIT)
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100119 vmsr FPEXC, r0
120 isb
Usama Arif078e66f2018-12-12 17:14:29 +0000121#endif
dp-arm595d0d52017-02-08 11:51:50 +0000122
Etienne Carriere863858b2017-11-05 22:55:55 +0100123#if (ARM_ARCH_MAJOR > 7)
David Cunadofee86532017-04-13 22:38:29 +0100124 /* ---------------------------------------------------------------------
125 * Initialise SDCR, setting all the fields rather than relying on hw.
126 *
127 * SDCR.SPD: Disable AArch32 privileged debug. Debug exceptions from
Antonio Nino Diaz3fbd3f52019-02-18 16:55:43 +0000128 * Secure EL1 are disabled.
129 *
Alexei Fedorov9074dea2019-08-20 15:22:44 +0100130 * SDCR.SCCD: Set to one so that cycle counting by PMCCNTR is prohibited
131 * in Secure state. This bit is RES0 in versions of the architecture
Antonio Nino Diaz3fbd3f52019-02-18 16:55:43 +0000132 * earlier than ARMv8.5, setting it to 1 doesn't have any effect on
133 * them.
Manish V Badarkhe8ce33942021-07-18 02:26:27 +0100134 *
135 * SDCR.TTRF: Set to one so that access to trace filter control
136 * registers in non-monitor mode generate Monitor trap exception,
137 * unless the access generates a higher priority exception when
138 * trace filter control(FEAT_TRF) is implemented.
139 * When FEAT_TRF is not implemented, this bit is RES0.
David Cunadofee86532017-04-13 22:38:29 +0100140 * ---------------------------------------------------------------------
141 */
Manish V Badarkhe8ce33942021-07-18 02:26:27 +0100142 ldr r0, =((SDCR_RESET_VAL | SDCR_SPD(SDCR_SPD_DISABLE) | \
143 SDCR_SCCD_BIT) & ~SDCR_TTRF_BIT)
144 ldcopr r1, ID_DFR0
145 ubfx r1, r1, #ID_DFR0_TRACEFILT_SHIFT, #ID_DFR0_TRACEFILT_LENGTH
146 cmp r1, #ID_DFR0_TRACEFILT_SUPPORTED
147 bne 1f
148 orr r0, r0, #SDCR_TTRF_BIT
1491:
dp-arm595d0d52017-02-08 11:51:50 +0000150 stcopr r0, SDCR
Alexei Fedorov9074dea2019-08-20 15:22:44 +0100151
152 /* ---------------------------------------------------------------------
153 * Initialise PMCR, setting all fields rather than relying
154 * on hw. Some fields are architecturally UNKNOWN on reset.
155 *
156 * PMCR.LP: Set to one so that event counter overflow, that
157 * is recorded in PMOVSCLR[0-30], occurs on the increment
158 * that changes PMEVCNTR<n>[63] from 1 to 0, when ARMv8.5-PMU
159 * is implemented. This bit is RES0 in versions of the architecture
160 * earlier than ARMv8.5, setting it to 1 doesn't have any effect
161 * on them.
162 * This bit is Reserved, UNK/SBZP in ARMv7.
163 *
164 * PMCR.LC: Set to one so that cycle counter overflow, that
165 * is recorded in PMOVSCLR[31], occurs on the increment
166 * that changes PMCCNTR[63] from 1 to 0.
167 * This bit is Reserved, UNK/SBZP in ARMv7.
168 *
169 * PMCR.DP: Set to one to prohibit cycle counting whilst in Secure mode.
170 * ---------------------------------------------------------------------
171 */
172 ldr r0, =(PMCR_RESET_VAL | PMCR_DP_BIT | PMCR_LC_BIT | \
173 PMCR_LP_BIT)
174#else
175 ldr r0, =(PMCR_RESET_VAL | PMCR_DP_BIT)
Etienne Carriere863858b2017-11-05 22:55:55 +0100176#endif
Alexei Fedorov9074dea2019-08-20 15:22:44 +0100177 stcopr r0, PMCR
dp-arm595d0d52017-02-08 11:51:50 +0000178
Sathees Balya0911df12018-12-06 13:33:24 +0000179 /*
180 * If Data Independent Timing (DIT) functionality is implemented,
181 * always enable DIT in EL3
182 */
183 ldcopr r0, ID_PFR0
184 and r0, r0, #(ID_PFR0_DIT_MASK << ID_PFR0_DIT_SHIFT)
185 cmp r0, #ID_PFR0_DIT_SUPPORTED
186 bne 1f
187 mrs r0, cpsr
188 orr r0, r0, #CPSR_DIT_BIT
189 msr cpsr_cxsf, r0
1901:
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100191 .endm
192
193/* -----------------------------------------------------------------------------
194 * This is the super set of actions that need to be performed during a cold boot
195 * or a warm boot in EL3. This code is shared by BL1 and BL32 (SP_MIN).
196 *
197 * This macro will always perform reset handling, architectural initialisations
198 * and stack setup. The rest of the actions are optional because they might not
199 * be needed, depending on the context in which this macro is called. This is
200 * why this macro is parameterised ; each parameter allows to enable/disable
201 * some actions.
202 *
David Cunadofee86532017-04-13 22:38:29 +0100203 * _init_sctlr:
204 * Whether the macro needs to initialise the SCTLR register including
205 * configuring the endianness of data accesses.
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100206 *
207 * _warm_boot_mailbox:
208 * Whether the macro needs to detect the type of boot (cold/warm). The
209 * detection is based on the platform entrypoint address : if it is zero
210 * then it is a cold boot, otherwise it is a warm boot. In the latter case,
211 * this macro jumps on the platform entrypoint address.
212 *
213 * _secondary_cold_boot:
214 * Whether the macro needs to identify the CPU that is calling it: primary
215 * CPU or secondary CPU. The primary CPU will be allowed to carry on with
216 * the platform initialisations, while the secondaries will be put in a
217 * platform-specific state in the meantime.
218 *
219 * If the caller knows this macro will only be called by the primary CPU
220 * then this parameter can be defined to 0 to skip this step.
221 *
222 * _init_memory:
223 * Whether the macro needs to initialise the memory.
224 *
225 * _init_c_runtime:
226 * Whether the macro needs to initialise the C runtime environment.
227 *
228 * _exception_vectors:
229 * Address of the exception vectors to program in the VBAR_EL3 register.
Yann Gautier514e59c2020-10-05 11:02:54 +0200230 *
231 * _pie_fixup_size:
232 * Size of memory region to fixup Global Descriptor Table (GDT).
233 *
234 * A non-zero value is expected when firmware needs GDT to be fixed-up.
235 *
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100236 * -----------------------------------------------------------------------------
237 */
238 .macro el3_entrypoint_common \
David Cunadofee86532017-04-13 22:38:29 +0100239 _init_sctlr, _warm_boot_mailbox, _secondary_cold_boot, \
Yann Gautier514e59c2020-10-05 11:02:54 +0200240 _init_memory, _init_c_runtime, _exception_vectors, \
241 _pie_fixup_size
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100242
243 /* Make sure we are in Secure Mode */
Antonio Nino Diaz7c65c1e2017-04-20 09:58:28 +0100244#if ENABLE_ASSERTIONS
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100245 ldcopr r0, SCR
246 tst r0, #SCR_NS_BIT
247 ASM_ASSERT(eq)
248#endif
249
David Cunadofee86532017-04-13 22:38:29 +0100250 .if \_init_sctlr
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100251 /* -------------------------------------------------------------
David Cunadofee86532017-04-13 22:38:29 +0100252 * This is the initialisation of SCTLR and so must ensure that
253 * all fields are explicitly set rather than relying on hw. Some
254 * fields reset to an IMPLEMENTATION DEFINED value.
255 *
256 * SCTLR.TE: Set to zero so that exceptions to an Exception
257 * Level executing at PL1 are taken to A32 state.
258 *
259 * SCTLR.EE: Set the CPU endianness before doing anything that
260 * might involve memory reads or writes. Set to zero to select
261 * Little Endian.
262 *
263 * SCTLR.V: Set to zero to select the normal exception vectors
264 * with base address held in VBAR.
Jeenu Viswambharanaa00aff2018-11-15 11:38:03 +0000265 *
266 * SCTLR.DSSBS: Set to zero to disable speculation store bypass
267 * safe behaviour upon exception entry to EL3.
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100268 * -------------------------------------------------------------
269 */
Jeenu Viswambharanaa00aff2018-11-15 11:38:03 +0000270 ldr r0, =(SCTLR_RESET_VAL & ~(SCTLR_TE_BIT | SCTLR_EE_BIT | \
271 SCTLR_V_BIT | SCTLR_DSSBS_BIT))
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100272 stcopr r0, SCTLR
273 isb
David Cunadofee86532017-04-13 22:38:29 +0100274 .endif /* _init_sctlr */
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100275
276 /* Switch to monitor mode */
277 cps #MODE32_mon
278 isb
279
280 .if \_warm_boot_mailbox
281 /* -------------------------------------------------------------
282 * This code will be executed for both warm and cold resets.
283 * Now is the time to distinguish between the two.
284 * Query the platform entrypoint address and if it is not zero
285 * then it means it is a warm boot so jump to this address.
286 * -------------------------------------------------------------
287 */
288 bl plat_get_my_entrypoint
289 cmp r0, #0
290 bxne r0
291 .endif /* _warm_boot_mailbox */
292
Yann Gautier514e59c2020-10-05 11:02:54 +0200293 .if \_pie_fixup_size
294#if ENABLE_PIE
295 /*
296 * ------------------------------------------------------------
297 * If PIE is enabled fixup the Global descriptor Table only
298 * once during primary core cold boot path.
299 *
300 * Compile time base address, required for fixup, is calculated
301 * using "pie_fixup" label present within first page.
302 * ------------------------------------------------------------
303 */
304 pie_fixup:
305 ldr r0, =pie_fixup
306 ldr r1, =PAGE_START_MASK
307 and r0, r0, r1
308 mov_imm r1, \_pie_fixup_size
309 add r1, r1, r0
310 bl fixup_gdt_reloc
311#endif /* ENABLE_PIE */
312 .endif /* _pie_fixup_size */
313
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100314 /* ---------------------------------------------------------------------
Dimitris Papastamos0a4cded2018-01-02 11:37:02 +0000315 * Set the exception vectors (VBAR/MVBAR).
316 * ---------------------------------------------------------------------
317 */
318 ldr r0, =\_exception_vectors
319 stcopr r0, VBAR
320 stcopr r0, MVBAR
321 isb
322
323 /* ---------------------------------------------------------------------
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100324 * It is a cold boot.
325 * Perform any processor specific actions upon reset e.g. cache, TLB
326 * invalidations etc.
327 * ---------------------------------------------------------------------
328 */
329 bl reset_handler
330
Dimitris Papastamos0a4cded2018-01-02 11:37:02 +0000331 el3_arch_init_common
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100332
333 .if \_secondary_cold_boot
334 /* -------------------------------------------------------------
335 * Check if this is a primary or secondary CPU cold boot.
336 * The primary CPU will set up the platform while the
337 * secondaries are placed in a platform-specific state until the
338 * primary CPU performs the necessary actions to bring them out
339 * of that state and allows entry into the OS.
340 * -------------------------------------------------------------
341 */
342 bl plat_is_my_cpu_primary
343 cmp r0, #0
344 bne do_primary_cold_boot
345
346 /* This is a cold boot on a secondary CPU */
347 bl plat_secondary_cold_boot_setup
348 /* plat_secondary_cold_boot_setup() is not supposed to return */
Jeenu Viswambharan68aef102016-11-30 15:21:11 +0000349 no_ret plat_panic_handler
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100350
351 do_primary_cold_boot:
352 .endif /* _secondary_cold_boot */
353
354 /* ---------------------------------------------------------------------
355 * Initialize memory now. Secondary CPU initialization won't get to this
356 * point.
357 * ---------------------------------------------------------------------
358 */
359
360 .if \_init_memory
361 bl platform_mem_init
362 .endif /* _init_memory */
363
364 /* ---------------------------------------------------------------------
365 * Init C runtime environment:
366 * - Zero-initialise the NOBITS sections. There are 2 of them:
367 * - the .bss section;
368 * - the coherent memory section (if any).
369 * - Relocate the data section from ROM to RAM, if required.
370 * ---------------------------------------------------------------------
371 */
372 .if \_init_c_runtime
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600373#if defined(IMAGE_BL32) || (defined(IMAGE_BL2) && RESET_TO_BL2)
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100374 /* -----------------------------------------------------------------
Roberto Vargase0e99462017-10-30 14:43:43 +0000375 * Invalidate the RW memory used by the image. This
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100376 * includes the data and NOBITS sections. This is done to
377 * safeguard against possible corruption of this memory by
378 * dirty cache lines in a system cache as a result of use by
Zelalem Awekeb0d69e82021-10-15 17:25:52 -0500379 * an earlier boot loader stage. If PIE is enabled however,
380 * RO sections including the GOT may be modified during
381 * pie fixup. Therefore, to be on the safe side, invalidate
382 * the entire image region if PIE is enabled.
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100383 * -----------------------------------------------------------------
384 */
Zelalem Awekeb0d69e82021-10-15 17:25:52 -0500385#if ENABLE_PIE
386#if SEPARATE_CODE_AND_RODATA
387 ldr r0, =__TEXT_START__
388#else
389 ldr r0, =__RO_START__
390#endif /* SEPARATE_CODE_AND_RODATA */
391#else
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100392 ldr r0, =__RW_START__
Zelalem Awekeb0d69e82021-10-15 17:25:52 -0500393#endif /* ENABLE_PIE */
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100394 ldr r1, =__RW_END__
395 sub r1, r1, r0
396 bl inv_dcache_range
Jiafei Pan0824b452022-02-24 10:47:33 +0800397#if defined(IMAGE_BL2) && SEPARATE_BL2_NOLOAD_REGION
398 ldr r0, =__BL2_NOLOAD_START__
399 ldr r1, =__BL2_NOLOAD_END__
400 sub r1, r1, r0
401 bl inv_dcache_range
402#endif
Roberto Vargase0e99462017-10-30 14:43:43 +0000403#endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100404
Yann Gautierc241b572020-01-28 11:45:38 +0100405 /*
406 * zeromem uses r12 whereas it is used to save previous BL arg3,
407 * save it in r7
408 */
409 mov r7, r12
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100410 ldr r0, =__BSS_START__
Yann Gautiere57bce82020-08-18 14:42:41 +0200411 ldr r1, =__BSS_END__
412 sub r1, r1, r0
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100413 bl zeromem
414
415#if USE_COHERENT_MEM
416 ldr r0, =__COHERENT_RAM_START__
Yann Gautiere57bce82020-08-18 14:42:41 +0200417 ldr r1, =__COHERENT_RAM_END_UNALIGNED__
418 sub r1, r1, r0
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100419 bl zeromem
420#endif
421
Yann Gautierc241b572020-01-28 11:45:38 +0100422 /* Restore r12 */
423 mov r12, r7
424
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600425#if defined(IMAGE_BL1) || \
426 (defined(IMAGE_BL2) && RESET_TO_BL2 && BL2_IN_XIP_MEM)
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100427 /* -----------------------------------------------------
428 * Copy data from ROM to RAM.
429 * -----------------------------------------------------
430 */
431 ldr r0, =__DATA_RAM_START__
432 ldr r1, =__DATA_ROM_START__
Yann Gautiere57bce82020-08-18 14:42:41 +0200433 ldr r2, =__DATA_RAM_END__
434 sub r2, r2, r0
Yatharth Kocharc44c5af2016-09-28 11:00:05 +0100435 bl memcpy4
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100436#endif
437 .endif /* _init_c_runtime */
438
439 /* ---------------------------------------------------------------------
440 * Allocate a stack whose memory will be marked as Normal-IS-WBWA when
441 * the MMU is enabled. There is no risk of reading stale stack memory
442 * after enabling the MMU as only the primary CPU is running at the
443 * moment.
444 * ---------------------------------------------------------------------
445 */
446 bl plat_set_my_stack
Douglas Raillard306593d2017-02-24 18:14:15 +0000447
448#if STACK_PROTECTOR_ENABLED
449 .if \_init_c_runtime
450 bl update_stack_protector_canary
451 .endif /* _init_c_runtime */
452#endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100453 .endm
454
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +0000455#endif /* EL3_COMMON_MACROS_S */