blob: fbf2bcac1e8ee9095af48621e1194d8e6df9c212 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Elizabeth Ho4fc00d22023-07-18 14:10:25 +01002 * Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <platform_def.h>
8
Achin Gupta4f6ad662013-10-25 09:08:21 +01009#include <arch.h>
Dan Handley714a0d22014-04-09 13:13:04 +010010#include <asm_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <bl31/ea_handle.h>
12#include <bl31/interrupt_mgmt.h>
Andre Przywarafa914d82022-11-21 17:04:10 +000013#include <bl31/sync_handle.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000014#include <common/runtime_svc.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010015#include <context.h>
Manish V Badarkhee07e8082020-07-23 12:43:25 +010016#include <el3_common_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000017#include <lib/el3_runtime/cpu_data.h>
18#include <lib/smccc.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010019
20 .globl runtime_exceptions
Achin Gupta4f6ad662013-10-25 09:08:21 +010021
Dimitris Papastamos446f7f12017-11-30 14:53:53 +000022 .globl sync_exception_sp_el0
23 .globl irq_sp_el0
24 .globl fiq_sp_el0
25 .globl serror_sp_el0
26
27 .globl sync_exception_sp_elx
28 .globl irq_sp_elx
29 .globl fiq_sp_elx
30 .globl serror_sp_elx
31
32 .globl sync_exception_aarch64
33 .globl irq_aarch64
34 .globl fiq_aarch64
35 .globl serror_aarch64
36
37 .globl sync_exception_aarch32
38 .globl irq_aarch32
39 .globl fiq_aarch32
40 .globl serror_aarch32
41
Jeenu Viswambharan96c7df02017-11-30 12:54:15 +000042 /*
Manish Pandey66a056e2023-01-11 21:41:07 +000043 * Save LR and make x30 available as most of the routines in vector entry
44 * need a free register
45 */
46 .macro save_x30
47 str x30, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_LR]
48 .endm
49
Manish Pandey07952fb2023-05-25 13:46:14 +010050 .macro restore_x30
51 ldr x30, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_LR]
52 .endm
Madhukar Pappireddyfba25722020-07-24 03:27:12 -050053
Madhukar Pappireddyfba25722020-07-24 03:27:12 -050054 /*
Manish Pandey07952fb2023-05-25 13:46:14 +010055 * Macro that synchronizes errors (EA) and checks for pending SError.
56 * On detecting a pending SError it either reflects it back to lower
57 * EL (KFH) or handles it in EL3 (FFH) based on EA routing model.
Madhukar Pappireddyfba25722020-07-24 03:27:12 -050058 */
Manish Pandey07952fb2023-05-25 13:46:14 +010059 .macro sync_and_handle_pending_serror
Manish Pandey6b5721f2023-06-26 17:46:14 +010060 synchronize_errors
Manish Pandey07952fb2023-05-25 13:46:14 +010061 mrs x30, ISR_EL1
62 tbz x30, #ISR_A_SHIFT, 2f
63#if HANDLE_EA_EL3_FIRST_NS
64 mrs x30, scr_el3
65 tst x30, #SCR_EA_BIT
66 b.eq 1f
67 bl handle_pending_async_ea
68 b 2f
Madhukar Pappireddyfba25722020-07-24 03:27:12 -050069#endif
Manish Pandey07952fb2023-05-25 13:46:14 +0100701:
71 /* This function never returns, but need LR for decision making */
72 bl reflect_pending_async_ea_to_lower_el
732:
Manish Pandeyb3c61982023-01-06 13:38:03 +000074 .endm
Madhukar Pappireddyfba25722020-07-24 03:27:12 -050075
Douglas Raillard0980eed2016-11-09 17:48:27 +000076 /* ---------------------------------------------------------------------
77 * This macro handles Synchronous exceptions.
78 * Only SMC exceptions are supported.
79 * ---------------------------------------------------------------------
Achin Gupta9cf2bb72014-05-09 11:07:09 +010080 */
81 .macro handle_sync_exception
dp-arm3cac7862016-09-19 11:18:44 +010082#if ENABLE_RUNTIME_INSTRUMENTATION
dp-arm3cac7862016-09-19 11:18:44 +010083 /*
Douglas Raillard0980eed2016-11-09 17:48:27 +000084 * Read the timestamp value and store it in per-cpu data. The value
85 * will be extracted from per-cpu data by the C level SMC handler and
86 * saved to the PMF timestamp region.
dp-arm3cac7862016-09-19 11:18:44 +010087 */
88 mrs x30, cntpct_el0
89 str x29, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X29]
90 mrs x29, tpidr_el3
91 str x30, [x29, #CPU_DATA_PMF_TS0_OFFSET]
92 ldr x29, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X29]
93#endif
94
Achin Gupta9cf2bb72014-05-09 11:07:09 +010095 mrs x30, esr_el3
96 ubfx x30, x30, #ESR_EC_SHIFT, #ESR_EC_LENGTH
97
Douglas Raillard0980eed2016-11-09 17:48:27 +000098 /* Handle SMC exceptions separately from other synchronous exceptions */
Achin Gupta9cf2bb72014-05-09 11:07:09 +010099 cmp x30, #EC_AARCH32_SMC
100 b.eq smc_handler32
101
102 cmp x30, #EC_AARCH64_SMC
Andre Przywarafa914d82022-11-21 17:04:10 +0000103 b.eq sync_handler64
104
105 cmp x30, #EC_AARCH64_SYS
106 b.eq sync_handler64
Achin Gupta9cf2bb72014-05-09 11:07:09 +0100107
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100108 /* Synchronous exceptions other than the above are assumed to be EA */
Julius Werner67ebde72017-07-27 14:59:34 -0700109 ldr x30, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_LR]
Manish Pandeyc918c182023-01-11 21:53:02 +0000110 b handle_lower_el_sync_ea
Achin Gupta9cf2bb72014-05-09 11:07:09 +0100111 .endm
112
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100113vector_base runtime_exceptions
114
Douglas Raillard0980eed2016-11-09 17:48:27 +0000115 /* ---------------------------------------------------------------------
116 * Current EL with SP_EL0 : 0x0 - 0x200
117 * ---------------------------------------------------------------------
Achin Gupta4f6ad662013-10-25 09:08:21 +0100118 */
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100119vector_entry sync_exception_sp_el0
Justin Chadwell83e04882019-08-20 11:01:52 +0100120#ifdef MONITOR_TRAPS
121 stp x29, x30, [sp, #-16]!
122
123 mrs x30, esr_el3
124 ubfx x30, x30, #ESR_EC_SHIFT, #ESR_EC_LENGTH
125
126 /* Check for BRK */
127 cmp x30, #EC_BRK
128 b.eq brk_handler
129
130 ldp x29, x30, [sp], #16
131#endif /* MONITOR_TRAPS */
132
Douglas Raillard0980eed2016-11-09 17:48:27 +0000133 /* We don't expect any synchronous exceptions from EL3 */
Julius Werner67ebde72017-07-27 14:59:34 -0700134 b report_unhandled_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100135end_vector_entry sync_exception_sp_el0
Achin Gupta4f6ad662013-10-25 09:08:21 +0100136
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100137vector_entry irq_sp_el0
Douglas Raillard0980eed2016-11-09 17:48:27 +0000138 /*
139 * EL3 code is non-reentrant. Any asynchronous exception is a serious
140 * error. Loop infinitely.
141 */
Julius Werner67ebde72017-07-27 14:59:34 -0700142 b report_unhandled_interrupt
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100143end_vector_entry irq_sp_el0
Achin Gupta4f6ad662013-10-25 09:08:21 +0100144
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100145
146vector_entry fiq_sp_el0
Julius Werner67ebde72017-07-27 14:59:34 -0700147 b report_unhandled_interrupt
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100148end_vector_entry fiq_sp_el0
Achin Gupta4f6ad662013-10-25 09:08:21 +0100149
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100150
151vector_entry serror_sp_el0
Jeenu Viswambharan911fcc92018-07-06 16:50:06 +0100152 no_ret plat_handle_el3_ea
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100153end_vector_entry serror_sp_el0
Achin Gupta4f6ad662013-10-25 09:08:21 +0100154
Douglas Raillard0980eed2016-11-09 17:48:27 +0000155 /* ---------------------------------------------------------------------
156 * Current EL with SP_ELx: 0x200 - 0x400
157 * ---------------------------------------------------------------------
Achin Gupta4f6ad662013-10-25 09:08:21 +0100158 */
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100159vector_entry sync_exception_sp_elx
Douglas Raillard0980eed2016-11-09 17:48:27 +0000160 /*
161 * This exception will trigger if anything went wrong during a previous
162 * exception entry or exit or while handling an earlier unexpected
163 * synchronous exception. There is a high probability that SP_EL3 is
164 * corrupted.
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000165 */
Julius Werner67ebde72017-07-27 14:59:34 -0700166 b report_unhandled_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100167end_vector_entry sync_exception_sp_elx
Achin Gupta4f6ad662013-10-25 09:08:21 +0100168
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100169vector_entry irq_sp_elx
Julius Werner67ebde72017-07-27 14:59:34 -0700170 b report_unhandled_interrupt
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100171end_vector_entry irq_sp_elx
Jeenu Viswambharana7934d62014-02-07 15:53:18 +0000172
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100173vector_entry fiq_sp_elx
Julius Werner67ebde72017-07-27 14:59:34 -0700174 b report_unhandled_interrupt
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100175end_vector_entry fiq_sp_elx
Jeenu Viswambharana7934d62014-02-07 15:53:18 +0000176
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100177vector_entry serror_sp_elx
Manish Pandey07952fb2023-05-25 13:46:14 +0100178#if HANDLE_EA_EL3_FIRST_NS
Manish Pandeyb3c61982023-01-06 13:38:03 +0000179 /*
180 * This will trigger if the exception was taken due to SError in EL3 or
181 * because of pending asynchronous external aborts from lower EL that got
Manish Pandey07952fb2023-05-25 13:46:14 +0100182 * triggered due to implicit/explicit synchronization in EL3 (SCR_EL3.EA=1)
183 * during EL3 entry. For the former case we continue with "plat_handle_el3_ea".
184 * The later case will occur when PSTATE.A bit is cleared in
185 * "handle_pending_async_ea". This means we are doing a nested
186 * exception in EL3. Call the handler for async EA which will eret back to
187 * original el3 handler if it is nested exception. Also, unmask EA so that we
188 * catch any further EA arise when handling this nested exception at EL3.
Manish Pandeyb3c61982023-01-06 13:38:03 +0000189 */
Manish Pandey66a056e2023-01-11 21:41:07 +0000190 save_x30
Manish Pandey07952fb2023-05-25 13:46:14 +0100191 ldr x30, [sp, #CTX_EL3STATE_OFFSET + CTX_NESTED_EA_FLAG]
192 cbz x30, 1f
193 /*
194 * This is nested exception handling, clear the flag to avoid taking this
195 * path for further exceptions caused by EA handling
196 */
197 str xzr, [sp, #CTX_EL3STATE_OFFSET + CTX_NESTED_EA_FLAG]
198 unmask_async_ea
Manish Pandeyb3c61982023-01-06 13:38:03 +0000199 b handle_lower_el_async_ea
2001:
Manish Pandey07952fb2023-05-25 13:46:14 +0100201 restore_x30
Madhukar Pappireddyfba25722020-07-24 03:27:12 -0500202#endif
Jeenu Viswambharan911fcc92018-07-06 16:50:06 +0100203 no_ret plat_handle_el3_ea
Manish Pandey07952fb2023-05-25 13:46:14 +0100204
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100205end_vector_entry serror_sp_elx
Achin Gupta4f6ad662013-10-25 09:08:21 +0100206
Douglas Raillard0980eed2016-11-09 17:48:27 +0000207 /* ---------------------------------------------------------------------
Sandrine Bailleux046cd3f2014-08-06 11:27:23 +0100208 * Lower EL using AArch64 : 0x400 - 0x600
Douglas Raillard0980eed2016-11-09 17:48:27 +0000209 * ---------------------------------------------------------------------
Achin Gupta4f6ad662013-10-25 09:08:21 +0100210 */
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100211vector_entry sync_exception_aarch64
Douglas Raillard0980eed2016-11-09 17:48:27 +0000212 /*
213 * This exception vector will be the entry point for SMCs and traps
214 * that are unhandled at lower ELs most commonly. SP_EL3 should point
215 * to a valid cpu context where the general purpose and system register
216 * state can be saved.
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000217 */
Manish Pandey66a056e2023-01-11 21:41:07 +0000218 save_x30
Manish V Badarkhee07e8082020-07-23 12:43:25 +0100219 apply_at_speculative_wa
Manish Pandey07952fb2023-05-25 13:46:14 +0100220 sync_and_handle_pending_serror
221 unmask_async_ea
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000222 handle_sync_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100223end_vector_entry sync_exception_aarch64
Achin Gupta4f6ad662013-10-25 09:08:21 +0100224
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100225vector_entry irq_aarch64
Manish Pandey66a056e2023-01-11 21:41:07 +0000226 save_x30
Manish V Badarkhee07e8082020-07-23 12:43:25 +0100227 apply_at_speculative_wa
Manish Pandey07952fb2023-05-25 13:46:14 +0100228 sync_and_handle_pending_serror
229 unmask_async_ea
Manish Pandey62040f42023-07-20 14:08:38 +0100230 b handle_interrupt_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100231end_vector_entry irq_aarch64
Achin Gupta4f6ad662013-10-25 09:08:21 +0100232
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100233vector_entry fiq_aarch64
Manish Pandey66a056e2023-01-11 21:41:07 +0000234 save_x30
Manish V Badarkhee07e8082020-07-23 12:43:25 +0100235 apply_at_speculative_wa
Manish Pandey07952fb2023-05-25 13:46:14 +0100236 sync_and_handle_pending_serror
237 unmask_async_ea
Manish Pandey62040f42023-07-20 14:08:38 +0100238 b handle_interrupt_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100239end_vector_entry fiq_aarch64
Achin Gupta4f6ad662013-10-25 09:08:21 +0100240
Manish Pandey07952fb2023-05-25 13:46:14 +0100241 /*
242 * Need to synchronize any outstanding SError since we can get a burst of errors.
243 * So reuse the sync mechanism to catch any further errors which are pending.
244 */
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100245vector_entry serror_aarch64
Manish Pandey66a056e2023-01-11 21:41:07 +0000246 save_x30
Manish V Badarkhee07e8082020-07-23 12:43:25 +0100247 apply_at_speculative_wa
Manish Pandey07952fb2023-05-25 13:46:14 +0100248 sync_and_handle_pending_serror
249 unmask_async_ea
Manish Pandeyc918c182023-01-11 21:53:02 +0000250 b handle_lower_el_async_ea
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100251end_vector_entry serror_aarch64
Achin Gupta4f6ad662013-10-25 09:08:21 +0100252
Douglas Raillard0980eed2016-11-09 17:48:27 +0000253 /* ---------------------------------------------------------------------
Sandrine Bailleux046cd3f2014-08-06 11:27:23 +0100254 * Lower EL using AArch32 : 0x600 - 0x800
Douglas Raillard0980eed2016-11-09 17:48:27 +0000255 * ---------------------------------------------------------------------
Achin Gupta4f6ad662013-10-25 09:08:21 +0100256 */
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100257vector_entry sync_exception_aarch32
Douglas Raillard0980eed2016-11-09 17:48:27 +0000258 /*
259 * This exception vector will be the entry point for SMCs and traps
260 * that are unhandled at lower ELs most commonly. SP_EL3 should point
261 * to a valid cpu context where the general purpose and system register
262 * state can be saved.
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000263 */
Manish Pandey66a056e2023-01-11 21:41:07 +0000264 save_x30
Manish V Badarkhee07e8082020-07-23 12:43:25 +0100265 apply_at_speculative_wa
Manish Pandey07952fb2023-05-25 13:46:14 +0100266 sync_and_handle_pending_serror
267 unmask_async_ea
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000268 handle_sync_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100269end_vector_entry sync_exception_aarch32
Achin Gupta4f6ad662013-10-25 09:08:21 +0100270
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100271vector_entry irq_aarch32
Manish Pandey66a056e2023-01-11 21:41:07 +0000272 save_x30
Manish V Badarkhee07e8082020-07-23 12:43:25 +0100273 apply_at_speculative_wa
Manish Pandey07952fb2023-05-25 13:46:14 +0100274 sync_and_handle_pending_serror
275 unmask_async_ea
Manish Pandey62040f42023-07-20 14:08:38 +0100276 b handle_interrupt_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100277end_vector_entry irq_aarch32
Achin Gupta4f6ad662013-10-25 09:08:21 +0100278
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100279vector_entry fiq_aarch32
Manish Pandey66a056e2023-01-11 21:41:07 +0000280 save_x30
Manish V Badarkhee07e8082020-07-23 12:43:25 +0100281 apply_at_speculative_wa
Manish Pandey07952fb2023-05-25 13:46:14 +0100282 sync_and_handle_pending_serror
283 unmask_async_ea
Manish Pandey62040f42023-07-20 14:08:38 +0100284 b handle_interrupt_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100285end_vector_entry fiq_aarch32
Achin Gupta4f6ad662013-10-25 09:08:21 +0100286
Manish Pandey07952fb2023-05-25 13:46:14 +0100287 /*
288 * Need to synchronize any outstanding SError since we can get a burst of errors.
289 * So reuse the sync mechanism to catch any further errors which are pending.
290 */
Sandrine Bailleux9e6ad6c2016-05-24 16:56:03 +0100291vector_entry serror_aarch32
Manish Pandey66a056e2023-01-11 21:41:07 +0000292 save_x30
Manish V Badarkhee07e8082020-07-23 12:43:25 +0100293 apply_at_speculative_wa
Manish Pandey07952fb2023-05-25 13:46:14 +0100294 sync_and_handle_pending_serror
295 unmask_async_ea
Manish Pandeyc918c182023-01-11 21:53:02 +0000296 b handle_lower_el_async_ea
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100297end_vector_entry serror_aarch32
Jeenu Viswambharana7934d62014-02-07 15:53:18 +0000298
Justin Chadwell83e04882019-08-20 11:01:52 +0100299#ifdef MONITOR_TRAPS
300 .section .rodata.brk_string, "aS"
301brk_location:
302 .asciz "Error at instruction 0x"
303brk_message:
304 .asciz "Unexpected BRK instruction with value 0x"
305#endif /* MONITOR_TRAPS */
306
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +0100307 /* ---------------------------------------------------------------------
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000308 * The following code handles secure monitor calls.
Douglas Raillard0980eed2016-11-09 17:48:27 +0000309 * Depending upon the execution state from where the SMC has been
310 * invoked, it frees some general purpose registers to perform the
311 * remaining tasks. They involve finding the runtime service handler
312 * that is the target of the SMC & switching to runtime stacks (SP_EL0)
313 * before calling the handler.
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000314 *
Douglas Raillard0980eed2016-11-09 17:48:27 +0000315 * Note that x30 has been explicitly saved and can be used here
316 * ---------------------------------------------------------------------
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000317 */
Andre Przywarafa914d82022-11-21 17:04:10 +0000318func sync_exception_handler
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000319smc_handler32:
320 /* Check whether aarch32 issued an SMC64 */
321 tbnz x0, #FUNCID_CC_SHIFT, smc_prohibited
322
Andre Przywarafa914d82022-11-21 17:04:10 +0000323sync_handler64:
Antonio Nino Diaz594811b2019-01-31 11:58:00 +0000324 /* NOTE: The code below must preserve x0-x4 */
325
Alexei Fedorov503bbf32019-08-13 15:17:53 +0100326 /*
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100327 * Save general purpose and ARMv8.3-PAuth registers (if enabled).
Boyan Karatoteved85cf72022-12-06 09:03:42 +0000328 * Also save PMCR_EL0 and set the PSTATE to a known state.
Alexei Fedorov503bbf32019-08-13 15:17:53 +0100329 */
Daniel Boulby95fb1aa2022-01-19 11:20:05 +0000330 bl prepare_el3_entry
Alexei Fedorov503bbf32019-08-13 15:17:53 +0100331
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000332#if ENABLE_PAUTH
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100333 /* Load and program APIAKey firmware key */
334 bl pauth_load_bl31_apiakey
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000335#endif
Antonio Nino Diaz594811b2019-01-31 11:58:00 +0000336
Douglas Raillard0980eed2016-11-09 17:48:27 +0000337 /*
338 * Populate the parameters for the SMC handler.
339 * We already have x0-x4 in place. x5 will point to a cookie (not used
340 * now). x6 will point to the context structure (SP_EL3) and x7 will
Dimitris Papastamos04159512018-01-22 11:53:04 +0000341 * contain flags we need to pass to the handler.
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000342 */
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000343 mov x5, xzr
344 mov x6, sp
345
Douglas Raillard0980eed2016-11-09 17:48:27 +0000346 /*
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +0100347 * Restore the saved C runtime stack value which will become the new
348 * SP_EL0 i.e. EL3 runtime stack. It was saved in the 'cpu_context'
349 * structure prior to the last ERET from EL3.
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000350 */
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +0100351 ldr x12, [x6, #CTX_EL3STATE_OFFSET + CTX_RUNTIME_SP]
352
353 /* Switch to SP_EL0 */
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100354 msr spsel, #MODE_SP_EL0
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000355
Douglas Raillard0980eed2016-11-09 17:48:27 +0000356 /*
Manish Pandey70bbdbd2022-12-07 13:04:20 +0000357 * Save the SPSR_EL3 and ELR_EL3 in case there is a world
Douglas Raillard0980eed2016-11-09 17:48:27 +0000358 * switch during SMC handling.
359 * TODO: Revisit if all system registers can be saved later.
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000360 */
361 mrs x16, spsr_el3
362 mrs x17, elr_el3
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000363 stp x16, x17, [x6, #CTX_EL3STATE_OFFSET + CTX_SPSR_EL3]
Manish Pandey70bbdbd2022-12-07 13:04:20 +0000364
365 /* Load SCR_EL3 */
366 mrs x18, scr_el3
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000367
Andre Przywarafa914d82022-11-21 17:04:10 +0000368 /* check for system register traps */
369 mrs x16, esr_el3
370 ubfx x17, x16, #ESR_EC_SHIFT, #ESR_EC_LENGTH
371 cmp x17, #EC_AARCH64_SYS
372 b.eq sysreg_handler64
373
Zelalem Aweke4d666ac2021-07-08 17:13:09 -0500374 /* Clear flag register */
375 mov x7, xzr
376
377#if ENABLE_RME
378 /* Copy SCR_EL3.NSE bit to the flag to indicate caller's security */
Elizabeth Ho4fc00d22023-07-18 14:10:25 +0100379 ubfx x7, x18, #SCR_NSE_SHIFT, #1
Zelalem Aweke4d666ac2021-07-08 17:13:09 -0500380
381 /*
382 * Shift copied SCR_EL3.NSE bit by 5 to create space for
Olivier Deprez33dd8452022-10-11 15:38:27 +0200383 * SCR_EL3.NS bit. Bit 5 of the flag corresponds to
Zelalem Aweke4d666ac2021-07-08 17:13:09 -0500384 * the SCR_EL3.NSE bit.
385 */
386 lsl x7, x7, #5
387#endif /* ENABLE_RME */
388
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000389 /* Copy SCR_EL3.NS bit to the flag to indicate caller's security */
390 bfi x7, x18, #0, #1
391
Jayanth Dodderi Chidanand3e474f72023-03-09 13:56:03 +0000392 mov sp, x12
393
394 /*
395 * Per SMCCC documentation, bits [23:17] must be zero for Fast
396 * SMCs. Other values are reserved for future use. Ensure that
397 * these bits are zeroes, if not report as unknown SMC.
398 */
399 tbz x0, #FUNCID_TYPE_SHIFT, 2f /* Skip check if its a Yield Call*/
400 tst x0, #(FUNCID_FC_RESERVED_MASK << FUNCID_FC_RESERVED_SHIFT)
401 b.ne smc_unknown
402
Olivier Deprez33dd8452022-10-11 15:38:27 +0200403 /*
404 * Per SMCCCv1.3 a caller can set the SVE hint bit in the SMC FID
405 * passed through x0. Copy the SVE hint bit to flags and mask the
406 * bit in smc_fid passed to the standard service dispatcher.
407 * A service/dispatcher can retrieve the SVE hint bit state from
408 * flags using the appropriate helper.
409 */
Jayanth Dodderi Chidanand3e474f72023-03-09 13:56:03 +00004102:
Olivier Deprez62cc1092023-05-24 17:42:00 +0200411 and x16, x0, #(FUNCID_SVE_HINT_MASK << FUNCID_SVE_HINT_SHIFT)
412 orr x7, x7, x16
Olivier Deprez33dd8452022-10-11 15:38:27 +0200413 bic x0, x0, #(FUNCID_SVE_HINT_MASK << FUNCID_SVE_HINT_SHIFT)
414
Madhukar Pappireddyd87233a2019-05-08 15:41:41 -0500415 /* Get the unique owning entity number */
416 ubfx x16, x0, #FUNCID_OEN_SHIFT, #FUNCID_OEN_WIDTH
417 ubfx x15, x0, #FUNCID_TYPE_SHIFT, #FUNCID_TYPE_WIDTH
418 orr x16, x16, x15, lsl #FUNCID_OEN_WIDTH
419
420 /* Load descriptor index from array of indices */
Madhukar Pappireddyf4e6ea62020-01-27 15:32:15 -0600421 adrp x14, rt_svc_descs_indices
422 add x14, x14, :lo12:rt_svc_descs_indices
Madhukar Pappireddyd87233a2019-05-08 15:41:41 -0500423 ldrb w15, [x14, x16]
424
425 /* Any index greater than 127 is invalid. Check bit 7. */
426 tbnz w15, 7, smc_unknown
427
Douglas Raillard0980eed2016-11-09 17:48:27 +0000428 /*
Madhukar Pappireddyd87233a2019-05-08 15:41:41 -0500429 * Get the descriptor using the index
430 * x11 = (base + off), w15 = index
431 *
432 * handler = (base + off) + (index << log2(size))
433 */
434 adr x11, (__RT_SVC_DESCS_START__ + RT_SVC_DESC_HANDLE)
435 lsl w10, w15, #RT_SVC_SIZE_LOG2
436 ldr x15, [x11, w10, uxtw]
437
438 /*
Douglas Raillard0980eed2016-11-09 17:48:27 +0000439 * Call the Secure Monitor Call handler and then drop directly into
440 * el3_exit() which will program any remaining architectural state
441 * prior to issuing the ERET to the desired lower EL.
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000442 */
443#if DEBUG
444 cbz x15, rt_svc_fw_critical_error
445#endif
446 blr x15
447
Andre Przywarafa914d82022-11-21 17:04:10 +0000448 b el3_exit
449
450sysreg_handler64:
451 mov x0, x16 /* ESR_EL3, containing syndrome information */
452 mov x1, x6 /* lower EL's context */
453 mov x19, x6 /* save context pointer for after the call */
454 mov sp, x12 /* EL3 runtime stack, as loaded above */
455
456 /* int handle_sysreg_trap(uint64_t esr_el3, cpu_context_t *ctx); */
457 bl handle_sysreg_trap
458 /*
459 * returns:
460 * -1: unhandled trap, panic
461 * 0: handled trap, return to the trapping instruction (repeating it)
462 * 1: handled trap, return to the next instruction
463 */
464
465 tst w0, w0
Govindraj Rajab6709b02023-02-21 17:43:55 +0000466 b.mi elx_panic /* negative return value: panic */
Andre Przywarafa914d82022-11-21 17:04:10 +0000467 b.eq 1f /* zero: do not change ELR_EL3 */
468
469 /* advance the PC to continue after the instruction */
470 ldr x1, [x19, #CTX_EL3STATE_OFFSET + CTX_ELR_EL3]
471 add x1, x1, #4
472 str x1, [x19, #CTX_EL3STATE_OFFSET + CTX_ELR_EL3]
4731:
Yatharth Kochar6c0566c2015-10-02 17:56:48 +0100474 b el3_exit
Achin Gupta4f6ad662013-10-25 09:08:21 +0100475
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000476smc_unknown:
477 /*
Madhukar Pappireddyd87233a2019-05-08 15:41:41 -0500478 * Unknown SMC call. Populate return value with SMC_UNK and call
479 * el3_exit() which will restore the remaining architectural state
480 * i.e., SYS, GP and PAuth registers(if any) prior to issuing the ERET
Jayanth Dodderi Chidanand3e474f72023-03-09 13:56:03 +0000481 * to the desired lower EL.
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000482 */
Antonio Nino Diaze4794b72018-02-14 14:22:29 +0000483 mov x0, #SMC_UNK
Madhukar Pappireddyd87233a2019-05-08 15:41:41 -0500484 str x0, [x6, #CTX_GPREGS_OFFSET + CTX_GPREG_X0]
485 b el3_exit
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000486
487smc_prohibited:
Manish V Badarkhee07e8082020-07-23 12:43:25 +0100488 restore_ptw_el1_sys_regs
489 ldp x28, x29, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X28]
Soby Mathew6c5192a2014-04-30 15:36:37 +0100490 ldr x30, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_LR]
Antonio Nino Diaze4794b72018-02-14 14:22:29 +0000491 mov x0, #SMC_UNK
Anthony Steinhauser0f7e6012020-01-07 15:44:06 -0800492 exception_return
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000493
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100494#if DEBUG
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000495rt_svc_fw_critical_error:
Douglas Raillard0980eed2016-11-09 17:48:27 +0000496 /* Switch to SP_ELx */
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100497 msr spsel, #MODE_SP_ELX
Jeenu Viswambharan68aef102016-11-30 15:21:11 +0000498 no_ret report_unhandled_exception
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100499#endif
Andre Przywarafa914d82022-11-21 17:04:10 +0000500endfunc sync_exception_handler
Justin Chadwell83e04882019-08-20 11:01:52 +0100501
502 /* ---------------------------------------------------------------------
Manish Pandey62040f42023-07-20 14:08:38 +0100503 * This function handles FIQ or IRQ interrupts i.e. EL3, S-EL1 and NS
504 * interrupts.
505 *
506 * Note that x30 has been explicitly saved and can be used here
507 * ---------------------------------------------------------------------
508 */
509func handle_interrupt_exception
510 /*
511 * Save general purpose and ARMv8.3-PAuth registers (if enabled).
512 * Also save PMCR_EL0 and set the PSTATE to a known state.
513 */
514 bl prepare_el3_entry
515
516#if ENABLE_PAUTH
517 /* Load and program APIAKey firmware key */
518 bl pauth_load_bl31_apiakey
519#endif
520
521 /* Save the EL3 system registers needed to return from this exception */
522 mrs x0, spsr_el3
523 mrs x1, elr_el3
524 stp x0, x1, [sp, #CTX_EL3STATE_OFFSET + CTX_SPSR_EL3]
525
526 /* Switch to the runtime stack i.e. SP_EL0 */
527 ldr x2, [sp, #CTX_EL3STATE_OFFSET + CTX_RUNTIME_SP]
528 mov x20, sp
529 msr spsel, #MODE_SP_EL0
530 mov sp, x2
531
532 /*
533 * Find out whether this is a valid interrupt type.
534 * If the interrupt controller reports a spurious interrupt then return
535 * to where we came from.
536 */
537 bl plat_ic_get_pending_interrupt_type
538 cmp x0, #INTR_TYPE_INVAL
539 b.eq interrupt_exit
540
541 /*
542 * Get the registered handler for this interrupt type.
543 * A NULL return value could be 'cause of the following conditions:
544 *
545 * a. An interrupt of a type was routed correctly but a handler for its
546 * type was not registered.
547 *
548 * b. An interrupt of a type was not routed correctly so a handler for
549 * its type was not registered.
550 *
551 * c. An interrupt of a type was routed correctly to EL3, but was
552 * deasserted before its pending state could be read. Another
553 * interrupt of a different type pended at the same time and its
554 * type was reported as pending instead. However, a handler for this
555 * type was not registered.
556 *
557 * a. and b. can only happen due to a programming error. The
558 * occurrence of c. could be beyond the control of Trusted Firmware.
559 * It makes sense to return from this exception instead of reporting an
560 * error.
561 */
562 bl get_interrupt_type_handler
563 cbz x0, interrupt_exit
564 mov x21, x0
565
566 mov x0, #INTR_ID_UNAVAILABLE
567
568 /* Set the current security state in the 'flags' parameter */
569 mrs x2, scr_el3
570 ubfx x1, x2, #0, #1
571
572 /* Restore the reference to the 'handle' i.e. SP_EL3 */
573 mov x2, x20
574
575 /* x3 will point to a cookie (not used now) */
576 mov x3, xzr
577
578 /* Call the interrupt type handler */
579 blr x21
580
581interrupt_exit:
582 /* Return from exception, possibly in a different security state */
583 b el3_exit
584endfunc handle_interrupt_exception
585
586 /* ---------------------------------------------------------------------
Justin Chadwell83e04882019-08-20 11:01:52 +0100587 * The following code handles exceptions caused by BRK instructions.
588 * Following a BRK instruction, the only real valid cause of action is
589 * to print some information and panic, as the code that caused it is
590 * likely in an inconsistent internal state.
591 *
592 * This is initially intended to be used in conjunction with
593 * __builtin_trap.
594 * ---------------------------------------------------------------------
595 */
596#ifdef MONITOR_TRAPS
597func brk_handler
598 /* Extract the ISS */
599 mrs x10, esr_el3
600 ubfx x10, x10, #ESR_ISS_SHIFT, #ESR_ISS_LENGTH
601
602 /* Ensure the console is initialized */
603 bl plat_crash_console_init
604
605 adr x4, brk_location
606 bl asm_print_str
607 mrs x4, elr_el3
608 bl asm_print_hex
609 bl asm_print_newline
610
611 adr x4, brk_message
612 bl asm_print_str
613 mov x4, x10
614 mov x5, #28
615 bl asm_print_hex_bits
616 bl asm_print_newline
617
618 no_ret plat_panic_handler
619endfunc brk_handler
620#endif /* MONITOR_TRAPS */