Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Govindraj Raja | b6709b0 | 2023-02-21 17:43:55 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2023, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 7 | #include <platform_def.h> |
| 8 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 9 | #include <arch.h> |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 10 | #include <asm_macros.S> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 11 | #include <bl31/ea_handle.h> |
| 12 | #include <bl31/interrupt_mgmt.h> |
Andre Przywara | fa914d8 | 2022-11-21 17:04:10 +0000 | [diff] [blame] | 13 | #include <bl31/sync_handle.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 14 | #include <common/runtime_svc.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 15 | #include <context.h> |
Manish V Badarkhe | e07e808 | 2020-07-23 12:43:25 +0100 | [diff] [blame] | 16 | #include <el3_common_macros.S> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 17 | #include <lib/el3_runtime/cpu_data.h> |
| 18 | #include <lib/smccc.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 19 | |
| 20 | .globl runtime_exceptions |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 21 | |
Dimitris Papastamos | 446f7f1 | 2017-11-30 14:53:53 +0000 | [diff] [blame] | 22 | .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 Viswambharan | 96c7df0 | 2017-11-30 12:54:15 +0000 | [diff] [blame] | 42 | /* |
Manish Pandey | 66a056e | 2023-01-11 21:41:07 +0000 | [diff] [blame] | 43 | * 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 | |
| 50 | /* |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 51 | * Macro that prepares entry to EL3 upon taking an exception. |
| 52 | * |
| 53 | * With RAS_EXTENSION, this macro synchronizes pending errors with an ESB |
| 54 | * instruction. When an error is thus synchronized, the handling is |
| 55 | * delegated to platform EA handler. |
| 56 | * |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 57 | * Without RAS_EXTENSION, this macro synchronizes pending errors using |
Jayanth Dodderi Chidanand | 3e474f7 | 2023-03-09 13:56:03 +0000 | [diff] [blame] | 58 | * a DSB, unmasks Asynchronous External Aborts and saves X30 before |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 59 | * setting the flag CTX_IS_IN_EL3. |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 60 | */ |
| 61 | .macro check_and_unmask_ea |
| 62 | #if RAS_EXTENSION |
| 63 | /* Synchronize pending External Aborts */ |
| 64 | esb |
| 65 | |
| 66 | /* Unmask the SError interrupt */ |
| 67 | msr daifclr, #DAIF_ABT_BIT |
| 68 | |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 69 | /* Check for SErrors synchronized by the ESB instruction */ |
| 70 | mrs x30, DISR_EL1 |
| 71 | tbz x30, #DISR_A_BIT, 1f |
| 72 | |
Alexei Fedorov | 503bbf3 | 2019-08-13 15:17:53 +0100 | [diff] [blame] | 73 | /* |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 74 | * Save general purpose and ARMv8.3-PAuth registers (if enabled). |
| 75 | * If Secure Cycle Counter is not disabled in MDCR_EL3 when |
| 76 | * ARMv8.5-PMU is implemented, save PMCR_EL0 and disable Cycle Counter. |
Daniel Boulby | 928747f | 2021-05-25 18:09:34 +0100 | [diff] [blame] | 77 | * Also set the PSTATE to a known state. |
Alexei Fedorov | 503bbf3 | 2019-08-13 15:17:53 +0100 | [diff] [blame] | 78 | */ |
Daniel Boulby | 95fb1aa | 2022-01-19 11:20:05 +0000 | [diff] [blame] | 79 | bl prepare_el3_entry |
Alexei Fedorov | 503bbf3 | 2019-08-13 15:17:53 +0100 | [diff] [blame] | 80 | |
Jeenu Viswambharan | e86a247 | 2018-07-05 15:24:45 +0100 | [diff] [blame] | 81 | bl handle_lower_el_ea_esb |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 82 | |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 83 | /* Restore general purpose, PMCR_EL0 and ARMv8.3-PAuth registers */ |
| 84 | bl restore_gp_pmcr_pauth_regs |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 85 | 1: |
| 86 | #else |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 87 | /* |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 88 | * Note 1: The explicit DSB at the entry of various exception vectors |
| 89 | * for handling exceptions from lower ELs can inadvertently trigger an |
| 90 | * SError exception in EL3 due to pending asynchronous aborts in lower |
| 91 | * ELs. This will end up being handled by serror_sp_elx which will |
| 92 | * ultimately panic and die. |
| 93 | * The way to workaround is to update a flag to indicate if the exception |
| 94 | * truly came from EL3. This flag is allocated in the cpu_context |
| 95 | * structure and located at offset "CTX_EL3STATE_OFFSET + CTX_IS_IN_EL3" |
| 96 | * This is not a bullet proof solution to the problem at hand because |
| 97 | * we assume the instructions following "isb" that help to update the |
| 98 | * flag execute without causing further exceptions. |
| 99 | */ |
| 100 | |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 101 | /* |
Manish Pandey | b3c6198 | 2023-01-06 13:38:03 +0000 | [diff] [blame] | 102 | * For SoCs which do not implement RAS, use DSB as a barrier to |
| 103 | * synchronize pending external aborts. |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 104 | */ |
| 105 | dsb sy |
| 106 | |
| 107 | /* Unmask the SError interrupt */ |
| 108 | msr daifclr, #DAIF_ABT_BIT |
| 109 | |
| 110 | /* Use ISB for the above unmask operation to take effect immediately */ |
| 111 | isb |
| 112 | |
Manish Pandey | 66a056e | 2023-01-11 21:41:07 +0000 | [diff] [blame] | 113 | /* Refer Note 1. */ |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 114 | mov x30, #1 |
| 115 | str x30, [sp, #CTX_EL3STATE_OFFSET + CTX_IS_IN_EL3] |
| 116 | dmb sy |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 117 | #endif |
Manish Pandey | b3c6198 | 2023-01-06 13:38:03 +0000 | [diff] [blame] | 118 | .endm |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 119 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 120 | /* --------------------------------------------------------------------- |
| 121 | * This macro handles Synchronous exceptions. |
| 122 | * Only SMC exceptions are supported. |
| 123 | * --------------------------------------------------------------------- |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 124 | */ |
| 125 | .macro handle_sync_exception |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 126 | #if ENABLE_RUNTIME_INSTRUMENTATION |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 127 | /* |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 128 | * Read the timestamp value and store it in per-cpu data. The value |
| 129 | * will be extracted from per-cpu data by the C level SMC handler and |
| 130 | * saved to the PMF timestamp region. |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 131 | */ |
| 132 | mrs x30, cntpct_el0 |
| 133 | str x29, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X29] |
| 134 | mrs x29, tpidr_el3 |
| 135 | str x30, [x29, #CPU_DATA_PMF_TS0_OFFSET] |
| 136 | ldr x29, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X29] |
| 137 | #endif |
| 138 | |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 139 | mrs x30, esr_el3 |
| 140 | ubfx x30, x30, #ESR_EC_SHIFT, #ESR_EC_LENGTH |
| 141 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 142 | /* Handle SMC exceptions separately from other synchronous exceptions */ |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 143 | cmp x30, #EC_AARCH32_SMC |
| 144 | b.eq smc_handler32 |
| 145 | |
| 146 | cmp x30, #EC_AARCH64_SMC |
Andre Przywara | fa914d8 | 2022-11-21 17:04:10 +0000 | [diff] [blame] | 147 | b.eq sync_handler64 |
| 148 | |
| 149 | cmp x30, #EC_AARCH64_SYS |
| 150 | b.eq sync_handler64 |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 151 | |
Jeenu Viswambharan | e86a247 | 2018-07-05 15:24:45 +0100 | [diff] [blame] | 152 | /* Synchronous exceptions other than the above are assumed to be EA */ |
Julius Werner | 67ebde7 | 2017-07-27 14:59:34 -0700 | [diff] [blame] | 153 | ldr x30, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_LR] |
Manish Pandey | c918c18 | 2023-01-11 21:53:02 +0000 | [diff] [blame] | 154 | b handle_lower_el_sync_ea |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 155 | .endm |
| 156 | |
| 157 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 158 | /* --------------------------------------------------------------------- |
| 159 | * This macro handles FIQ or IRQ interrupts i.e. EL3, S-EL1 and NS |
| 160 | * interrupts. |
| 161 | * --------------------------------------------------------------------- |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 162 | */ |
| 163 | .macro handle_interrupt_exception label |
Antonio Nino Diaz | 594811b | 2019-01-31 11:58:00 +0000 | [diff] [blame] | 164 | |
Alexei Fedorov | 503bbf3 | 2019-08-13 15:17:53 +0100 | [diff] [blame] | 165 | /* |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 166 | * Save general purpose and ARMv8.3-PAuth registers (if enabled). |
| 167 | * If Secure Cycle Counter is not disabled in MDCR_EL3 when |
| 168 | * ARMv8.5-PMU is implemented, save PMCR_EL0 and disable Cycle Counter. |
Daniel Boulby | 928747f | 2021-05-25 18:09:34 +0100 | [diff] [blame] | 169 | * Also set the PSTATE to a known state. |
Alexei Fedorov | 503bbf3 | 2019-08-13 15:17:53 +0100 | [diff] [blame] | 170 | */ |
Daniel Boulby | 95fb1aa | 2022-01-19 11:20:05 +0000 | [diff] [blame] | 171 | bl prepare_el3_entry |
Alexei Fedorov | 503bbf3 | 2019-08-13 15:17:53 +0100 | [diff] [blame] | 172 | |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 173 | #if ENABLE_PAUTH |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 174 | /* Load and program APIAKey firmware key */ |
| 175 | bl pauth_load_bl31_apiakey |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 176 | #endif |
Antonio Nino Diaz | 594811b | 2019-01-31 11:58:00 +0000 | [diff] [blame] | 177 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 178 | /* Save the EL3 system registers needed to return from this exception */ |
Achin Gupta | 979992e | 2015-05-13 17:57:18 +0100 | [diff] [blame] | 179 | mrs x0, spsr_el3 |
| 180 | mrs x1, elr_el3 |
| 181 | stp x0, x1, [sp, #CTX_EL3STATE_OFFSET + CTX_SPSR_EL3] |
| 182 | |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 183 | /* Switch to the runtime stack i.e. SP_EL0 */ |
| 184 | ldr x2, [sp, #CTX_EL3STATE_OFFSET + CTX_RUNTIME_SP] |
| 185 | mov x20, sp |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 186 | msr spsel, #MODE_SP_EL0 |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 187 | mov sp, x2 |
| 188 | |
| 189 | /* |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 190 | * Find out whether this is a valid interrupt type. |
| 191 | * If the interrupt controller reports a spurious interrupt then return |
| 192 | * to where we came from. |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 193 | */ |
Dan Handley | 701fea7 | 2014-05-27 16:17:21 +0100 | [diff] [blame] | 194 | bl plat_ic_get_pending_interrupt_type |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 195 | cmp x0, #INTR_TYPE_INVAL |
| 196 | b.eq interrupt_exit_\label |
| 197 | |
| 198 | /* |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 199 | * Get the registered handler for this interrupt type. |
| 200 | * A NULL return value could be 'cause of the following conditions: |
Achin Gupta | 979992e | 2015-05-13 17:57:18 +0100 | [diff] [blame] | 201 | * |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 202 | * a. An interrupt of a type was routed correctly but a handler for its |
| 203 | * type was not registered. |
Achin Gupta | 979992e | 2015-05-13 17:57:18 +0100 | [diff] [blame] | 204 | * |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 205 | * b. An interrupt of a type was not routed correctly so a handler for |
| 206 | * its type was not registered. |
Achin Gupta | 979992e | 2015-05-13 17:57:18 +0100 | [diff] [blame] | 207 | * |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 208 | * c. An interrupt of a type was routed correctly to EL3, but was |
| 209 | * deasserted before its pending state could be read. Another |
| 210 | * interrupt of a different type pended at the same time and its |
| 211 | * type was reported as pending instead. However, a handler for this |
| 212 | * type was not registered. |
Achin Gupta | 979992e | 2015-05-13 17:57:18 +0100 | [diff] [blame] | 213 | * |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 214 | * a. and b. can only happen due to a programming error. The |
| 215 | * occurrence of c. could be beyond the control of Trusted Firmware. |
| 216 | * It makes sense to return from this exception instead of reporting an |
| 217 | * error. |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 218 | */ |
| 219 | bl get_interrupt_type_handler |
Achin Gupta | 979992e | 2015-05-13 17:57:18 +0100 | [diff] [blame] | 220 | cbz x0, interrupt_exit_\label |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 221 | mov x21, x0 |
| 222 | |
| 223 | mov x0, #INTR_ID_UNAVAILABLE |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 224 | |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 225 | /* Set the current security state in the 'flags' parameter */ |
| 226 | mrs x2, scr_el3 |
| 227 | ubfx x1, x2, #0, #1 |
| 228 | |
| 229 | /* Restore the reference to the 'handle' i.e. SP_EL3 */ |
| 230 | mov x2, x20 |
| 231 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 232 | /* x3 will point to a cookie (not used now) */ |
Soby Mathew | 799f0ab | 2014-05-27 16:54:31 +0100 | [diff] [blame] | 233 | mov x3, xzr |
| 234 | |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 235 | /* Call the interrupt type handler */ |
| 236 | blr x21 |
| 237 | |
| 238 | interrupt_exit_\label: |
| 239 | /* Return from exception, possibly in a different security state */ |
| 240 | b el3_exit |
| 241 | |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 242 | .endm |
| 243 | |
| 244 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 245 | vector_base runtime_exceptions |
| 246 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 247 | /* --------------------------------------------------------------------- |
| 248 | * Current EL with SP_EL0 : 0x0 - 0x200 |
| 249 | * --------------------------------------------------------------------- |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 250 | */ |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 251 | vector_entry sync_exception_sp_el0 |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 252 | #ifdef MONITOR_TRAPS |
| 253 | stp x29, x30, [sp, #-16]! |
| 254 | |
| 255 | mrs x30, esr_el3 |
| 256 | ubfx x30, x30, #ESR_EC_SHIFT, #ESR_EC_LENGTH |
| 257 | |
| 258 | /* Check for BRK */ |
| 259 | cmp x30, #EC_BRK |
| 260 | b.eq brk_handler |
| 261 | |
| 262 | ldp x29, x30, [sp], #16 |
| 263 | #endif /* MONITOR_TRAPS */ |
| 264 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 265 | /* We don't expect any synchronous exceptions from EL3 */ |
Julius Werner | 67ebde7 | 2017-07-27 14:59:34 -0700 | [diff] [blame] | 266 | b report_unhandled_exception |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 267 | end_vector_entry sync_exception_sp_el0 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 268 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 269 | vector_entry irq_sp_el0 |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 270 | /* |
| 271 | * EL3 code is non-reentrant. Any asynchronous exception is a serious |
| 272 | * error. Loop infinitely. |
| 273 | */ |
Julius Werner | 67ebde7 | 2017-07-27 14:59:34 -0700 | [diff] [blame] | 274 | b report_unhandled_interrupt |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 275 | end_vector_entry irq_sp_el0 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 276 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 277 | |
| 278 | vector_entry fiq_sp_el0 |
Julius Werner | 67ebde7 | 2017-07-27 14:59:34 -0700 | [diff] [blame] | 279 | b report_unhandled_interrupt |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 280 | end_vector_entry fiq_sp_el0 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 281 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 282 | |
| 283 | vector_entry serror_sp_el0 |
Jeenu Viswambharan | 911fcc9 | 2018-07-06 16:50:06 +0100 | [diff] [blame] | 284 | no_ret plat_handle_el3_ea |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 285 | end_vector_entry serror_sp_el0 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 286 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 287 | /* --------------------------------------------------------------------- |
| 288 | * Current EL with SP_ELx: 0x200 - 0x400 |
| 289 | * --------------------------------------------------------------------- |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 290 | */ |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 291 | vector_entry sync_exception_sp_elx |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 292 | /* |
| 293 | * This exception will trigger if anything went wrong during a previous |
| 294 | * exception entry or exit or while handling an earlier unexpected |
| 295 | * synchronous exception. There is a high probability that SP_EL3 is |
| 296 | * corrupted. |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 297 | */ |
Julius Werner | 67ebde7 | 2017-07-27 14:59:34 -0700 | [diff] [blame] | 298 | b report_unhandled_exception |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 299 | end_vector_entry sync_exception_sp_elx |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 300 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 301 | vector_entry irq_sp_elx |
Julius Werner | 67ebde7 | 2017-07-27 14:59:34 -0700 | [diff] [blame] | 302 | b report_unhandled_interrupt |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 303 | end_vector_entry irq_sp_elx |
Jeenu Viswambharan | a7934d6 | 2014-02-07 15:53:18 +0000 | [diff] [blame] | 304 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 305 | vector_entry fiq_sp_elx |
Julius Werner | 67ebde7 | 2017-07-27 14:59:34 -0700 | [diff] [blame] | 306 | b report_unhandled_interrupt |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 307 | end_vector_entry fiq_sp_elx |
Jeenu Viswambharan | a7934d6 | 2014-02-07 15:53:18 +0000 | [diff] [blame] | 308 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 309 | vector_entry serror_sp_elx |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 310 | #if !RAS_EXTENSION |
Manish Pandey | b3c6198 | 2023-01-06 13:38:03 +0000 | [diff] [blame] | 311 | /* |
| 312 | * This will trigger if the exception was taken due to SError in EL3 or |
| 313 | * because of pending asynchronous external aborts from lower EL that got |
| 314 | * triggered due to explicit synchronization in EL3. Refer Note 1. |
| 315 | */ |
| 316 | /* Assumes SP_EL3 on entry */ |
Manish Pandey | 66a056e | 2023-01-11 21:41:07 +0000 | [diff] [blame] | 317 | save_x30 |
Manish Pandey | b3c6198 | 2023-01-06 13:38:03 +0000 | [diff] [blame] | 318 | ldr x30, [sp, #CTX_EL3STATE_OFFSET + CTX_IS_IN_EL3] |
| 319 | cbnz x30, 1f |
| 320 | |
| 321 | /* Handle asynchronous external abort from lower EL */ |
| 322 | b handle_lower_el_async_ea |
| 323 | 1: |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 324 | #endif |
Jeenu Viswambharan | 911fcc9 | 2018-07-06 16:50:06 +0100 | [diff] [blame] | 325 | no_ret plat_handle_el3_ea |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 326 | end_vector_entry serror_sp_elx |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 327 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 328 | /* --------------------------------------------------------------------- |
Sandrine Bailleux | 046cd3f | 2014-08-06 11:27:23 +0100 | [diff] [blame] | 329 | * Lower EL using AArch64 : 0x400 - 0x600 |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 330 | * --------------------------------------------------------------------- |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 331 | */ |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 332 | vector_entry sync_exception_aarch64 |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 333 | /* |
| 334 | * This exception vector will be the entry point for SMCs and traps |
| 335 | * that are unhandled at lower ELs most commonly. SP_EL3 should point |
| 336 | * to a valid cpu context where the general purpose and system register |
| 337 | * state can be saved. |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 338 | */ |
Manish Pandey | 66a056e | 2023-01-11 21:41:07 +0000 | [diff] [blame] | 339 | save_x30 |
Manish V Badarkhe | e07e808 | 2020-07-23 12:43:25 +0100 | [diff] [blame] | 340 | apply_at_speculative_wa |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 341 | check_and_unmask_ea |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 342 | handle_sync_exception |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 343 | end_vector_entry sync_exception_aarch64 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 344 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 345 | vector_entry irq_aarch64 |
Manish Pandey | 66a056e | 2023-01-11 21:41:07 +0000 | [diff] [blame] | 346 | save_x30 |
Manish V Badarkhe | e07e808 | 2020-07-23 12:43:25 +0100 | [diff] [blame] | 347 | apply_at_speculative_wa |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 348 | check_and_unmask_ea |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 349 | handle_interrupt_exception irq_aarch64 |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 350 | end_vector_entry irq_aarch64 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 351 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 352 | vector_entry fiq_aarch64 |
Manish Pandey | 66a056e | 2023-01-11 21:41:07 +0000 | [diff] [blame] | 353 | save_x30 |
Manish V Badarkhe | e07e808 | 2020-07-23 12:43:25 +0100 | [diff] [blame] | 354 | apply_at_speculative_wa |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 355 | check_and_unmask_ea |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 356 | handle_interrupt_exception fiq_aarch64 |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 357 | end_vector_entry fiq_aarch64 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 358 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 359 | vector_entry serror_aarch64 |
Manish Pandey | 66a056e | 2023-01-11 21:41:07 +0000 | [diff] [blame] | 360 | save_x30 |
Manish V Badarkhe | e07e808 | 2020-07-23 12:43:25 +0100 | [diff] [blame] | 361 | apply_at_speculative_wa |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 362 | #if RAS_EXTENSION |
Jeenu Viswambharan | 96c7df0 | 2017-11-30 12:54:15 +0000 | [diff] [blame] | 363 | msr daifclr, #DAIF_ABT_BIT |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 364 | #else |
Manish Pandey | b3c6198 | 2023-01-06 13:38:03 +0000 | [diff] [blame] | 365 | check_and_unmask_ea |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 366 | #endif |
Manish Pandey | c918c18 | 2023-01-11 21:53:02 +0000 | [diff] [blame] | 367 | b handle_lower_el_async_ea |
| 368 | |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 369 | end_vector_entry serror_aarch64 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 370 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 371 | /* --------------------------------------------------------------------- |
Sandrine Bailleux | 046cd3f | 2014-08-06 11:27:23 +0100 | [diff] [blame] | 372 | * Lower EL using AArch32 : 0x600 - 0x800 |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 373 | * --------------------------------------------------------------------- |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 374 | */ |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 375 | vector_entry sync_exception_aarch32 |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 376 | /* |
| 377 | * This exception vector will be the entry point for SMCs and traps |
| 378 | * that are unhandled at lower ELs most commonly. SP_EL3 should point |
| 379 | * to a valid cpu context where the general purpose and system register |
| 380 | * state can be saved. |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 381 | */ |
Manish Pandey | 66a056e | 2023-01-11 21:41:07 +0000 | [diff] [blame] | 382 | save_x30 |
Manish V Badarkhe | e07e808 | 2020-07-23 12:43:25 +0100 | [diff] [blame] | 383 | apply_at_speculative_wa |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 384 | check_and_unmask_ea |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 385 | handle_sync_exception |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 386 | end_vector_entry sync_exception_aarch32 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 387 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 388 | vector_entry irq_aarch32 |
Manish Pandey | 66a056e | 2023-01-11 21:41:07 +0000 | [diff] [blame] | 389 | save_x30 |
Manish V Badarkhe | e07e808 | 2020-07-23 12:43:25 +0100 | [diff] [blame] | 390 | apply_at_speculative_wa |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 391 | check_and_unmask_ea |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 392 | handle_interrupt_exception irq_aarch32 |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 393 | end_vector_entry irq_aarch32 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 394 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 395 | vector_entry fiq_aarch32 |
Manish Pandey | 66a056e | 2023-01-11 21:41:07 +0000 | [diff] [blame] | 396 | save_x30 |
Manish V Badarkhe | e07e808 | 2020-07-23 12:43:25 +0100 | [diff] [blame] | 397 | apply_at_speculative_wa |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 398 | check_and_unmask_ea |
Achin Gupta | 9cf2bb7 | 2014-05-09 11:07:09 +0100 | [diff] [blame] | 399 | handle_interrupt_exception fiq_aarch32 |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 400 | end_vector_entry fiq_aarch32 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 401 | |
Sandrine Bailleux | 9e6ad6c | 2016-05-24 16:56:03 +0100 | [diff] [blame] | 402 | vector_entry serror_aarch32 |
Manish Pandey | 66a056e | 2023-01-11 21:41:07 +0000 | [diff] [blame] | 403 | save_x30 |
Manish V Badarkhe | e07e808 | 2020-07-23 12:43:25 +0100 | [diff] [blame] | 404 | apply_at_speculative_wa |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 405 | #if RAS_EXTENSION |
Jeenu Viswambharan | 96c7df0 | 2017-11-30 12:54:15 +0000 | [diff] [blame] | 406 | msr daifclr, #DAIF_ABT_BIT |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 407 | #else |
Manish Pandey | b3c6198 | 2023-01-06 13:38:03 +0000 | [diff] [blame] | 408 | check_and_unmask_ea |
Madhukar Pappireddy | fba2572 | 2020-07-24 03:27:12 -0500 | [diff] [blame] | 409 | #endif |
Manish Pandey | c918c18 | 2023-01-11 21:53:02 +0000 | [diff] [blame] | 410 | b handle_lower_el_async_ea |
| 411 | |
Roberto Vargas | 95f30ab | 2018-04-17 11:31:43 +0100 | [diff] [blame] | 412 | end_vector_entry serror_aarch32 |
Jeenu Viswambharan | a7934d6 | 2014-02-07 15:53:18 +0000 | [diff] [blame] | 413 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 414 | #ifdef MONITOR_TRAPS |
| 415 | .section .rodata.brk_string, "aS" |
| 416 | brk_location: |
| 417 | .asciz "Error at instruction 0x" |
| 418 | brk_message: |
| 419 | .asciz "Unexpected BRK instruction with value 0x" |
| 420 | #endif /* MONITOR_TRAPS */ |
| 421 | |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 422 | /* --------------------------------------------------------------------- |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 423 | * The following code handles secure monitor calls. |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 424 | * Depending upon the execution state from where the SMC has been |
| 425 | * invoked, it frees some general purpose registers to perform the |
| 426 | * remaining tasks. They involve finding the runtime service handler |
| 427 | * that is the target of the SMC & switching to runtime stacks (SP_EL0) |
| 428 | * before calling the handler. |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 429 | * |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 430 | * Note that x30 has been explicitly saved and can be used here |
| 431 | * --------------------------------------------------------------------- |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 432 | */ |
Andre Przywara | fa914d8 | 2022-11-21 17:04:10 +0000 | [diff] [blame] | 433 | func sync_exception_handler |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 434 | smc_handler32: |
| 435 | /* Check whether aarch32 issued an SMC64 */ |
| 436 | tbnz x0, #FUNCID_CC_SHIFT, smc_prohibited |
| 437 | |
Andre Przywara | fa914d8 | 2022-11-21 17:04:10 +0000 | [diff] [blame] | 438 | sync_handler64: |
Antonio Nino Diaz | 594811b | 2019-01-31 11:58:00 +0000 | [diff] [blame] | 439 | /* NOTE: The code below must preserve x0-x4 */ |
| 440 | |
Alexei Fedorov | 503bbf3 | 2019-08-13 15:17:53 +0100 | [diff] [blame] | 441 | /* |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 442 | * Save general purpose and ARMv8.3-PAuth registers (if enabled). |
| 443 | * If Secure Cycle Counter is not disabled in MDCR_EL3 when |
| 444 | * ARMv8.5-PMU is implemented, save PMCR_EL0 and disable Cycle Counter. |
Daniel Boulby | 928747f | 2021-05-25 18:09:34 +0100 | [diff] [blame] | 445 | * Also set the PSTATE to a known state. |
Alexei Fedorov | 503bbf3 | 2019-08-13 15:17:53 +0100 | [diff] [blame] | 446 | */ |
Daniel Boulby | 95fb1aa | 2022-01-19 11:20:05 +0000 | [diff] [blame] | 447 | bl prepare_el3_entry |
Alexei Fedorov | 503bbf3 | 2019-08-13 15:17:53 +0100 | [diff] [blame] | 448 | |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 449 | #if ENABLE_PAUTH |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 450 | /* Load and program APIAKey firmware key */ |
| 451 | bl pauth_load_bl31_apiakey |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 452 | #endif |
Antonio Nino Diaz | 594811b | 2019-01-31 11:58:00 +0000 | [diff] [blame] | 453 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 454 | /* |
| 455 | * Populate the parameters for the SMC handler. |
| 456 | * We already have x0-x4 in place. x5 will point to a cookie (not used |
| 457 | * now). x6 will point to the context structure (SP_EL3) and x7 will |
Dimitris Papastamos | 0415951 | 2018-01-22 11:53:04 +0000 | [diff] [blame] | 458 | * contain flags we need to pass to the handler. |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 459 | */ |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 460 | mov x5, xzr |
| 461 | mov x6, sp |
| 462 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 463 | /* |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 464 | * Restore the saved C runtime stack value which will become the new |
| 465 | * SP_EL0 i.e. EL3 runtime stack. It was saved in the 'cpu_context' |
| 466 | * structure prior to the last ERET from EL3. |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 467 | */ |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 468 | ldr x12, [x6, #CTX_EL3STATE_OFFSET + CTX_RUNTIME_SP] |
| 469 | |
| 470 | /* Switch to SP_EL0 */ |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 471 | msr spsel, #MODE_SP_EL0 |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 472 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 473 | /* |
Manish Pandey | 70bbdbd | 2022-12-07 13:04:20 +0000 | [diff] [blame] | 474 | * Save the SPSR_EL3 and ELR_EL3 in case there is a world |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 475 | * switch during SMC handling. |
| 476 | * TODO: Revisit if all system registers can be saved later. |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 477 | */ |
| 478 | mrs x16, spsr_el3 |
| 479 | mrs x17, elr_el3 |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 480 | stp x16, x17, [x6, #CTX_EL3STATE_OFFSET + CTX_SPSR_EL3] |
Manish Pandey | 70bbdbd | 2022-12-07 13:04:20 +0000 | [diff] [blame] | 481 | |
| 482 | /* Load SCR_EL3 */ |
| 483 | mrs x18, scr_el3 |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 484 | |
Andre Przywara | fa914d8 | 2022-11-21 17:04:10 +0000 | [diff] [blame] | 485 | /* check for system register traps */ |
| 486 | mrs x16, esr_el3 |
| 487 | ubfx x17, x16, #ESR_EC_SHIFT, #ESR_EC_LENGTH |
| 488 | cmp x17, #EC_AARCH64_SYS |
| 489 | b.eq sysreg_handler64 |
| 490 | |
Zelalem Aweke | 4d666ac | 2021-07-08 17:13:09 -0500 | [diff] [blame] | 491 | /* Clear flag register */ |
| 492 | mov x7, xzr |
| 493 | |
| 494 | #if ENABLE_RME |
| 495 | /* Copy SCR_EL3.NSE bit to the flag to indicate caller's security */ |
| 496 | ubfx x7, x18, #SCR_NSE_SHIFT, 1 |
| 497 | |
| 498 | /* |
| 499 | * Shift copied SCR_EL3.NSE bit by 5 to create space for |
Olivier Deprez | 33dd845 | 2022-10-11 15:38:27 +0200 | [diff] [blame] | 500 | * SCR_EL3.NS bit. Bit 5 of the flag corresponds to |
Zelalem Aweke | 4d666ac | 2021-07-08 17:13:09 -0500 | [diff] [blame] | 501 | * the SCR_EL3.NSE bit. |
| 502 | */ |
| 503 | lsl x7, x7, #5 |
| 504 | #endif /* ENABLE_RME */ |
| 505 | |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 506 | /* Copy SCR_EL3.NS bit to the flag to indicate caller's security */ |
| 507 | bfi x7, x18, #0, #1 |
| 508 | |
Jayanth Dodderi Chidanand | 3e474f7 | 2023-03-09 13:56:03 +0000 | [diff] [blame] | 509 | mov sp, x12 |
| 510 | |
| 511 | /* |
| 512 | * Per SMCCC documentation, bits [23:17] must be zero for Fast |
| 513 | * SMCs. Other values are reserved for future use. Ensure that |
| 514 | * these bits are zeroes, if not report as unknown SMC. |
| 515 | */ |
| 516 | tbz x0, #FUNCID_TYPE_SHIFT, 2f /* Skip check if its a Yield Call*/ |
| 517 | tst x0, #(FUNCID_FC_RESERVED_MASK << FUNCID_FC_RESERVED_SHIFT) |
| 518 | b.ne smc_unknown |
| 519 | |
Olivier Deprez | 33dd845 | 2022-10-11 15:38:27 +0200 | [diff] [blame] | 520 | /* |
| 521 | * Per SMCCCv1.3 a caller can set the SVE hint bit in the SMC FID |
| 522 | * passed through x0. Copy the SVE hint bit to flags and mask the |
| 523 | * bit in smc_fid passed to the standard service dispatcher. |
| 524 | * A service/dispatcher can retrieve the SVE hint bit state from |
| 525 | * flags using the appropriate helper. |
| 526 | */ |
Jayanth Dodderi Chidanand | 3e474f7 | 2023-03-09 13:56:03 +0000 | [diff] [blame] | 527 | 2: |
Olivier Deprez | 33dd845 | 2022-10-11 15:38:27 +0200 | [diff] [blame] | 528 | bfi x7, x0, #FUNCID_SVE_HINT_SHIFT, #FUNCID_SVE_HINT_MASK |
| 529 | bic x0, x0, #(FUNCID_SVE_HINT_MASK << FUNCID_SVE_HINT_SHIFT) |
| 530 | |
Madhukar Pappireddy | d87233a | 2019-05-08 15:41:41 -0500 | [diff] [blame] | 531 | /* Get the unique owning entity number */ |
| 532 | ubfx x16, x0, #FUNCID_OEN_SHIFT, #FUNCID_OEN_WIDTH |
| 533 | ubfx x15, x0, #FUNCID_TYPE_SHIFT, #FUNCID_TYPE_WIDTH |
| 534 | orr x16, x16, x15, lsl #FUNCID_OEN_WIDTH |
| 535 | |
| 536 | /* Load descriptor index from array of indices */ |
Madhukar Pappireddy | f4e6ea6 | 2020-01-27 15:32:15 -0600 | [diff] [blame] | 537 | adrp x14, rt_svc_descs_indices |
| 538 | add x14, x14, :lo12:rt_svc_descs_indices |
Madhukar Pappireddy | d87233a | 2019-05-08 15:41:41 -0500 | [diff] [blame] | 539 | ldrb w15, [x14, x16] |
| 540 | |
| 541 | /* Any index greater than 127 is invalid. Check bit 7. */ |
| 542 | tbnz w15, 7, smc_unknown |
| 543 | |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 544 | /* |
Madhukar Pappireddy | d87233a | 2019-05-08 15:41:41 -0500 | [diff] [blame] | 545 | * Get the descriptor using the index |
| 546 | * x11 = (base + off), w15 = index |
| 547 | * |
| 548 | * handler = (base + off) + (index << log2(size)) |
| 549 | */ |
| 550 | adr x11, (__RT_SVC_DESCS_START__ + RT_SVC_DESC_HANDLE) |
| 551 | lsl w10, w15, #RT_SVC_SIZE_LOG2 |
| 552 | ldr x15, [x11, w10, uxtw] |
| 553 | |
| 554 | /* |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 555 | * Call the Secure Monitor Call handler and then drop directly into |
| 556 | * el3_exit() which will program any remaining architectural state |
| 557 | * prior to issuing the ERET to the desired lower EL. |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 558 | */ |
| 559 | #if DEBUG |
| 560 | cbz x15, rt_svc_fw_critical_error |
| 561 | #endif |
| 562 | blr x15 |
| 563 | |
Andre Przywara | fa914d8 | 2022-11-21 17:04:10 +0000 | [diff] [blame] | 564 | b el3_exit |
| 565 | |
| 566 | sysreg_handler64: |
| 567 | mov x0, x16 /* ESR_EL3, containing syndrome information */ |
| 568 | mov x1, x6 /* lower EL's context */ |
| 569 | mov x19, x6 /* save context pointer for after the call */ |
| 570 | mov sp, x12 /* EL3 runtime stack, as loaded above */ |
| 571 | |
| 572 | /* int handle_sysreg_trap(uint64_t esr_el3, cpu_context_t *ctx); */ |
| 573 | bl handle_sysreg_trap |
| 574 | /* |
| 575 | * returns: |
| 576 | * -1: unhandled trap, panic |
| 577 | * 0: handled trap, return to the trapping instruction (repeating it) |
| 578 | * 1: handled trap, return to the next instruction |
| 579 | */ |
| 580 | |
| 581 | tst w0, w0 |
Govindraj Raja | b6709b0 | 2023-02-21 17:43:55 +0000 | [diff] [blame] | 582 | b.mi elx_panic /* negative return value: panic */ |
Andre Przywara | fa914d8 | 2022-11-21 17:04:10 +0000 | [diff] [blame] | 583 | b.eq 1f /* zero: do not change ELR_EL3 */ |
| 584 | |
| 585 | /* advance the PC to continue after the instruction */ |
| 586 | ldr x1, [x19, #CTX_EL3STATE_OFFSET + CTX_ELR_EL3] |
| 587 | add x1, x1, #4 |
| 588 | str x1, [x19, #CTX_EL3STATE_OFFSET + CTX_ELR_EL3] |
| 589 | 1: |
Yatharth Kochar | 6c0566c | 2015-10-02 17:56:48 +0100 | [diff] [blame] | 590 | b el3_exit |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 591 | |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 592 | smc_unknown: |
| 593 | /* |
Madhukar Pappireddy | d87233a | 2019-05-08 15:41:41 -0500 | [diff] [blame] | 594 | * Unknown SMC call. Populate return value with SMC_UNK and call |
| 595 | * el3_exit() which will restore the remaining architectural state |
| 596 | * i.e., SYS, GP and PAuth registers(if any) prior to issuing the ERET |
Jayanth Dodderi Chidanand | 3e474f7 | 2023-03-09 13:56:03 +0000 | [diff] [blame] | 597 | * to the desired lower EL. |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 598 | */ |
Antonio Nino Diaz | e4794b7 | 2018-02-14 14:22:29 +0000 | [diff] [blame] | 599 | mov x0, #SMC_UNK |
Madhukar Pappireddy | d87233a | 2019-05-08 15:41:41 -0500 | [diff] [blame] | 600 | str x0, [x6, #CTX_GPREGS_OFFSET + CTX_GPREG_X0] |
| 601 | b el3_exit |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 602 | |
| 603 | smc_prohibited: |
Manish V Badarkhe | e07e808 | 2020-07-23 12:43:25 +0100 | [diff] [blame] | 604 | restore_ptw_el1_sys_regs |
| 605 | ldp x28, x29, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X28] |
Soby Mathew | 6c5192a | 2014-04-30 15:36:37 +0100 | [diff] [blame] | 606 | ldr x30, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_LR] |
Antonio Nino Diaz | e4794b7 | 2018-02-14 14:22:29 +0000 | [diff] [blame] | 607 | mov x0, #SMC_UNK |
Anthony Steinhauser | 0f7e601 | 2020-01-07 15:44:06 -0800 | [diff] [blame] | 608 | exception_return |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 609 | |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 610 | #if DEBUG |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 611 | rt_svc_fw_critical_error: |
Douglas Raillard | 0980eed | 2016-11-09 17:48:27 +0000 | [diff] [blame] | 612 | /* Switch to SP_ELx */ |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 613 | msr spsel, #MODE_SP_ELX |
Jeenu Viswambharan | 68aef10 | 2016-11-30 15:21:11 +0000 | [diff] [blame] | 614 | no_ret report_unhandled_exception |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 615 | #endif |
Andre Przywara | fa914d8 | 2022-11-21 17:04:10 +0000 | [diff] [blame] | 616 | endfunc sync_exception_handler |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 617 | |
| 618 | /* --------------------------------------------------------------------- |
| 619 | * The following code handles exceptions caused by BRK instructions. |
| 620 | * Following a BRK instruction, the only real valid cause of action is |
| 621 | * to print some information and panic, as the code that caused it is |
| 622 | * likely in an inconsistent internal state. |
| 623 | * |
| 624 | * This is initially intended to be used in conjunction with |
| 625 | * __builtin_trap. |
| 626 | * --------------------------------------------------------------------- |
| 627 | */ |
| 628 | #ifdef MONITOR_TRAPS |
| 629 | func brk_handler |
| 630 | /* Extract the ISS */ |
| 631 | mrs x10, esr_el3 |
| 632 | ubfx x10, x10, #ESR_ISS_SHIFT, #ESR_ISS_LENGTH |
| 633 | |
| 634 | /* Ensure the console is initialized */ |
| 635 | bl plat_crash_console_init |
| 636 | |
| 637 | adr x4, brk_location |
| 638 | bl asm_print_str |
| 639 | mrs x4, elr_el3 |
| 640 | bl asm_print_hex |
| 641 | bl asm_print_newline |
| 642 | |
| 643 | adr x4, brk_message |
| 644 | bl asm_print_str |
| 645 | mov x4, x10 |
| 646 | mov x5, #28 |
| 647 | bl asm_print_hex_bits |
| 648 | bl asm_print_newline |
| 649 | |
| 650 | no_ret plat_panic_handler |
| 651 | endfunc brk_handler |
| 652 | #endif /* MONITOR_TRAPS */ |