blob: 83e4582bd897c9d77be6744ce4258fa98082b23a [file] [log] [blame]
Jeenu Viswambharane86a2472018-07-05 15:24:45 +01001/*
Daniel Boulby95fb1aa2022-01-19 11:20:05 +00002 * Copyright (c) 2018-2022, ARM Limited and Contributors. All rights reserved.
Varun Wadekard1c1ef32022-08-03 12:01:36 +01003 * Copyright (c) 2022, NVIDIA Corporation. All rights reserved.
Jeenu Viswambharane86a2472018-07-05 15:24:45 +01004 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8
Jeenu Viswambharan93bc4bd2018-05-17 11:24:01 +01009#include <assert_macros.S>
Jeenu Viswambharane86a2472018-07-05 15:24:45 +010010#include <asm_macros.S>
Jeenu Viswambharan476c29f2018-02-19 12:25:53 +000011#include <assert_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <bl31/ea_handle.h>
Jeenu Viswambharane86a2472018-07-05 15:24:45 +010013#include <context.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000014#include <lib/extensions/ras_arch.h>
laurenw-arm94accd32019-08-20 15:51:24 -050015#include <cpu_macros.S>
16#include <context.h>
Jeenu Viswambharane86a2472018-07-05 15:24:45 +010017
18 .globl handle_lower_el_ea_esb
Manish Pandeyc918c182023-01-11 21:53:02 +000019 .globl handle_lower_el_sync_ea
20 .globl handle_lower_el_async_ea
Jeenu Viswambharane86a2472018-07-05 15:24:45 +010021
22
23/*
24 * Function to delegate External Aborts synchronized by ESB instruction at EL3
25 * vector entry. This function assumes GP registers x0-x29 have been saved, and
26 * are available for use. It delegates the handling of the EA to platform
27 * handler, and returns only upon successfully handling the EA; otherwise
28 * panics. On return from this function, the original exception handler is
29 * expected to resume.
30 */
31func handle_lower_el_ea_esb
32 mov x0, #ERROR_EA_ESB
33 mrs x1, DISR_EL1
34 b ea_proceed
35endfunc handle_lower_el_ea_esb
36
37
38/*
39 * This function forms the tail end of Synchronous Exception entry from lower
laurenw-arm94accd32019-08-20 15:51:24 -050040 * EL, and expects to handle Synchronous External Aborts from lower EL and CPU
41 * Implementation Defined Exceptions. If any other kind of exception is detected,
42 * then this function reports unhandled exception.
Jeenu Viswambharane86a2472018-07-05 15:24:45 +010043 *
Manish Pandeyc918c182023-01-11 21:53:02 +000044 * It delegates the handling of the EA to platform handler, and upon successfully
45 * handling the EA, exits EL3; otherwise panics.
46 *
47 * This function assumes x30 has been saved.
Jeenu Viswambharane86a2472018-07-05 15:24:45 +010048 */
Manish Pandeyc918c182023-01-11 21:53:02 +000049func handle_lower_el_sync_ea
Jeenu Viswambharane86a2472018-07-05 15:24:45 +010050 mrs x30, esr_el3
51 ubfx x30, x30, #ESR_EC_SHIFT, #ESR_EC_LENGTH
52
53 /* Check for I/D aborts from lower EL */
54 cmp x30, #EC_IABORT_LOWER_EL
55 b.eq 1f
56
57 cmp x30, #EC_DABORT_LOWER_EL
laurenw-arm94accd32019-08-20 15:51:24 -050058 b.eq 1f
59
60 /* Save GP registers */
61 stp x0, x1, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X0]
62 stp x2, x3, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X2]
63 stp x4, x5, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X4]
64
65 /* Get the cpu_ops pointer */
66 bl get_cpu_ops_ptr
67
68 /* Get the cpu_ops exception handler */
69 ldr x0, [x0, #CPU_E_HANDLER_FUNC]
70
71 /*
72 * If the reserved function pointer is NULL, this CPU does not have an
73 * implementation defined exception handler function
74 */
75 cbz x0, 2f
76 mrs x1, esr_el3
77 ubfx x1, x1, #ESR_EC_SHIFT, #ESR_EC_LENGTH
78 blr x0
79 b 2f
Jeenu Viswambharane86a2472018-07-05 15:24:45 +010080
811:
Alexei Fedorov503bbf32019-08-13 15:17:53 +010082 /*
Alexei Fedorovf41355c2019-09-13 14:11:59 +010083 * Save general purpose and ARMv8.3-PAuth registers (if enabled).
84 * If Secure Cycle Counter is not disabled in MDCR_EL3 when
85 * ARMv8.5-PMU is implemented, save PMCR_EL0 and disable Cycle Counter.
Daniel Boulby928747f2021-05-25 18:09:34 +010086 * Also set the PSTATE to a known state.
Alexei Fedorov503bbf32019-08-13 15:17:53 +010087 */
Daniel Boulby95fb1aa2022-01-19 11:20:05 +000088 bl prepare_el3_entry
Alexei Fedorov503bbf32019-08-13 15:17:53 +010089
Antonio Nino Diaz25cda672019-02-19 11:53:51 +000090#if ENABLE_PAUTH
Alexei Fedorovf41355c2019-09-13 14:11:59 +010091 /* Load and program APIAKey firmware key */
92 bl pauth_load_bl31_apiakey
Antonio Nino Diaz25cda672019-02-19 11:53:51 +000093#endif
Antonio Nino Diaz594811b2019-01-31 11:58:00 +000094
Jeenu Viswambharane86a2472018-07-05 15:24:45 +010095 /* Setup exception class and syndrome arguments for platform handler */
96 mov x0, #ERROR_EA_SYNC
97 mrs x1, esr_el3
Jan Dabrosfa015982019-12-02 13:30:03 +010098 bl delegate_sync_ea
Jeenu Viswambharane86a2472018-07-05 15:24:45 +010099
Jan Dabrosfa015982019-12-02 13:30:03 +0100100 /* el3_exit assumes SP_EL0 on entry */
101 msr spsel, #MODE_SP_EL0
102 b el3_exit
Jeenu Viswambharane86a2472018-07-05 15:24:45 +01001032:
laurenw-arm94accd32019-08-20 15:51:24 -0500104 ldp x0, x1, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X0]
105 ldp x2, x3, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X2]
106 ldp x4, x5, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X4]
107
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100108 /* Synchronous exceptions other than the above are assumed to be EA */
109 ldr x30, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_LR]
110 no_ret report_unhandled_exception
Manish Pandeyc918c182023-01-11 21:53:02 +0000111endfunc handle_lower_el_sync_ea
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100112
113
114/*
115 * This function handles SErrors from lower ELs.
116 *
Manish Pandeyc918c182023-01-11 21:53:02 +0000117 * It delegates the handling of the EA to platform handler, and upon successfully
118 * handling the EA, exits EL3; otherwise panics.
119 *
120 * This function assumes x30 has been saved.
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100121 */
Manish Pandeyc918c182023-01-11 21:53:02 +0000122func handle_lower_el_async_ea
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100123
Alexei Fedorov503bbf32019-08-13 15:17:53 +0100124 /*
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100125 * Save general purpose and ARMv8.3-PAuth registers (if enabled).
126 * If Secure Cycle Counter is not disabled in MDCR_EL3 when
127 * ARMv8.5-PMU is implemented, save PMCR_EL0 and disable Cycle Counter.
Daniel Boulby928747f2021-05-25 18:09:34 +0100128 * Also set the PSTATE to a known state.
Alexei Fedorov503bbf32019-08-13 15:17:53 +0100129 */
Daniel Boulby95fb1aa2022-01-19 11:20:05 +0000130 bl prepare_el3_entry
Alexei Fedorov503bbf32019-08-13 15:17:53 +0100131
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000132#if ENABLE_PAUTH
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100133 /* Load and program APIAKey firmware key */
134 bl pauth_load_bl31_apiakey
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000135#endif
Antonio Nino Diaz594811b2019-01-31 11:58:00 +0000136
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100137 /* Setup exception class and syndrome arguments for platform handler */
138 mov x0, #ERROR_EA_ASYNC
139 mrs x1, esr_el3
Jan Dabrosfa015982019-12-02 13:30:03 +0100140 bl delegate_async_ea
141
142 /* el3_exit assumes SP_EL0 on entry */
143 msr spsel, #MODE_SP_EL0
144 b el3_exit
Manish Pandeyc918c182023-01-11 21:53:02 +0000145endfunc handle_lower_el_async_ea
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100146
147
148/*
Jeenu Viswambharan9d4c9c12018-05-17 09:52:36 +0100149 * Prelude for Synchronous External Abort handling. This function assumes that
150 * all GP registers have been saved by the caller.
151 *
152 * x0: EA reason
153 * x1: EA syndrome
154 */
155func delegate_sync_ea
156#if RAS_EXTENSION
157 /*
158 * Check for Uncontainable error type. If so, route to the platform
159 * fatal error handler rather than the generic EA one.
160 */
161 ubfx x2, x1, #EABORT_SET_SHIFT, #EABORT_SET_WIDTH
162 cmp x2, #ERROR_STATUS_SET_UC
163 b.ne 1f
164
165 /* Check fault status code */
166 ubfx x3, x1, #EABORT_DFSC_SHIFT, #EABORT_DFSC_WIDTH
167 cmp x3, #SYNC_EA_FSC
168 b.ne 1f
169
170 no_ret plat_handle_uncontainable_ea
1711:
172#endif
173
174 b ea_proceed
175endfunc delegate_sync_ea
176
177
178/*
179 * Prelude for Asynchronous External Abort handling. This function assumes that
180 * all GP registers have been saved by the caller.
181 *
182 * x0: EA reason
183 * x1: EA syndrome
184 */
185func delegate_async_ea
186#if RAS_EXTENSION
Manish Pandeyef54fba2022-10-11 17:28:14 +0100187 /* Check Exception Class to ensure SError, as this function should
188 * only be invoked for SError. If that is not the case, which implies
189 * either an HW error or programming error, panic.
190 */
191 ubfx x2, x1, #ESR_EC_SHIFT, #ESR_EC_LENGTH
192 cmp x2, EC_SERROR
193 b.ne do_panic
Jeenu Viswambharan9d4c9c12018-05-17 09:52:36 +0100194 /*
195 * Check for Implementation Defined Syndrome. If so, skip checking
196 * Uncontainable error type from the syndrome as the format is unknown.
197 */
198 tbnz x1, #SERROR_IDS_BIT, 1f
199
Manish Pandeyef54fba2022-10-11 17:28:14 +0100200 /* AET only valid when DFSC is 0x11 */
201 ubfx x2, x1, #EABORT_DFSC_SHIFT, #EABORT_DFSC_WIDTH
202 cmp x2, #DFSC_SERROR
203 b.ne 1f
204
Jeenu Viswambharan9d4c9c12018-05-17 09:52:36 +0100205 /*
206 * Check for Uncontainable error type. If so, route to the platform
207 * fatal error handler rather than the generic EA one.
208 */
Manish Pandeyef54fba2022-10-11 17:28:14 +0100209 ubfx x3, x1, #EABORT_AET_SHIFT, #EABORT_AET_WIDTH
210 cmp x3, #ERROR_STATUS_UET_UC
Jeenu Viswambharan9d4c9c12018-05-17 09:52:36 +0100211 b.ne 1f
212
213 no_ret plat_handle_uncontainable_ea
2141:
215#endif
216
217 b ea_proceed
218endfunc delegate_async_ea
219
220
221/*
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100222 * Delegate External Abort handling to platform's EA handler. This function
223 * assumes that all GP registers have been saved by the caller.
224 *
225 * x0: EA reason
226 * x1: EA syndrome
227 */
228func ea_proceed
Jeenu Viswambharan93bc4bd2018-05-17 11:24:01 +0100229 /*
230 * If the ESR loaded earlier is not zero, we were processing an EA
231 * already, and this is a double fault.
232 */
233 ldr x5, [sp, #CTX_EL3STATE_OFFSET + CTX_ESR_EL3]
234 cbz x5, 1f
235 no_ret plat_handle_double_fault
236
2371:
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100238 /* Save EL3 state */
239 mrs x2, spsr_el3
240 mrs x3, elr_el3
241 stp x2, x3, [sp, #CTX_EL3STATE_OFFSET + CTX_SPSR_EL3]
242
243 /*
244 * Save ESR as handling might involve lower ELs, and returning back to
245 * EL3 from there would trample the original ESR.
246 */
247 mrs x4, scr_el3
248 mrs x5, esr_el3
249 stp x4, x5, [sp, #CTX_EL3STATE_OFFSET + CTX_SCR_EL3]
250
251 /*
252 * Setup rest of arguments, and call platform External Abort handler.
253 *
254 * x0: EA reason (already in place)
255 * x1: Exception syndrome (already in place).
256 * x2: Cookie (unused for now).
257 * x3: Context pointer.
258 * x4: Flags (security state from SCR for now).
259 */
260 mov x2, xzr
261 mov x3, sp
262 ubfx x4, x4, #0, #1
263
264 /* Switch to runtime stack */
265 ldr x5, [sp, #CTX_EL3STATE_OFFSET + CTX_RUNTIME_SP]
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100266 msr spsel, #MODE_SP_EL0
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100267 mov sp, x5
268
269 mov x29, x30
Jeenu Viswambharan476c29f2018-02-19 12:25:53 +0000270#if ENABLE_ASSERTIONS
271 /* Stash the stack pointer */
272 mov x28, sp
273#endif
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100274 bl plat_ea_handler
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100275
Jeenu Viswambharan476c29f2018-02-19 12:25:53 +0000276#if ENABLE_ASSERTIONS
277 /*
278 * Error handling flows might involve long jumps; so upon returning from
279 * the platform error handler, validate that the we've completely
280 * unwound the stack.
281 */
282 mov x27, sp
283 cmp x28, x27
284 ASM_ASSERT(eq)
285#endif
286
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100287 /* Make SP point to context */
Alexei Fedorovf41355c2019-09-13 14:11:59 +0100288 msr spsel, #MODE_SP_ELX
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100289
Jeenu Viswambharan93bc4bd2018-05-17 11:24:01 +0100290 /* Restore EL3 state and ESR */
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100291 ldp x1, x2, [sp, #CTX_EL3STATE_OFFSET + CTX_SPSR_EL3]
292 msr spsr_el3, x1
293 msr elr_el3, x2
294
295 /* Restore ESR_EL3 and SCR_EL3 */
296 ldp x3, x4, [sp, #CTX_EL3STATE_OFFSET + CTX_SCR_EL3]
297 msr scr_el3, x3
298 msr esr_el3, x4
299
Jeenu Viswambharan93bc4bd2018-05-17 11:24:01 +0100300#if ENABLE_ASSERTIONS
301 cmp x4, xzr
302 ASM_ASSERT(ne)
303#endif
304
305 /* Clear ESR storage */
306 str xzr, [sp, #CTX_EL3STATE_OFFSET + CTX_ESR_EL3]
307
308 ret x29
Jeenu Viswambharane86a2472018-07-05 15:24:45 +0100309endfunc ea_proceed