blob: 8d9aa5ecfef2c700bb0cf1eebada64b53f176b45 [file] [log] [blame]
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +00001/*
Govindraj Rajaeee28e72023-08-01 15:52:40 -05002 * Copyright (c) 2017-2022, Arm Limited and Contributors. All rights reserved.
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch.h>
8#include <asm_macros.S>
9#include <context.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <services/arm_arch_svc.h>
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000011
Dimitris Papastamos570c06a2018-04-06 15:29:34 +010012 .globl wa_cve_2017_5715_bpiall_vbar
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000013
14#define EMIT_BPIALL 0xee070fd5
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000015#define EMIT_SMC 0xe1600070
Dimitris Papastamos28803632018-01-08 13:57:39 +000016#define ESR_EL3_A64_SMC0 0x5e000000
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000017
Dimitris Papastamos570c06a2018-04-06 15:29:34 +010018 .macro apply_cve_2017_5715_wa _from_vector
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +000019 /*
20 * Save register state to enable a call to AArch32 S-EL1 and return
21 * Identify the original calling vector in w2 (==_from_vector)
22 * Use w3-w6 for additional register state preservation while in S-EL1
23 */
24
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000025 /* Save GP regs */
26 stp x0, x1, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X0]
27 stp x2, x3, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X2]
28 stp x4, x5, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X4]
29 stp x6, x7, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X6]
30 stp x8, x9, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X8]
31 stp x10, x11, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X10]
32 stp x12, x13, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X12]
33 stp x14, x15, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X14]
34 stp x16, x17, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X16]
35 stp x18, x19, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X18]
36 stp x20, x21, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X20]
37 stp x22, x23, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X22]
38 stp x24, x25, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X24]
39 stp x26, x27, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X26]
40 stp x28, x29, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X28]
41
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +000042 /* Identify the original exception vector */
43 mov w2, \_from_vector
44
45 /* Preserve 32-bit system registers in GP registers through the workaround */
46 mrs x3, esr_el3
47 mrs x4, spsr_el3
48 mrs x5, scr_el3
49 mrs x6, sctlr_el1
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000050
51 /*
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +000052 * Preserve LR and ELR_EL3 registers in the GP regs context.
53 * Temporarily use the CTX_GPREG_SP_EL0 slot to preserve ELR_EL3
54 * through the workaround. This is OK because at this point the
55 * current state for this context's SP_EL0 is in the live system
56 * register, which is unmodified by the workaround.
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000057 */
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +000058 mrs x7, elr_el3
59 stp x30, x7, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_LR]
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000060
61 /*
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +000062 * Load system registers for entry to S-EL1.
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000063 */
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000064
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +000065 /* Mask all interrupts and set AArch32 Supervisor mode */
66 movz w8, SPSR_MODE32(MODE32_svc, SPSR_T_ARM, SPSR_E_LITTLE, SPSR_AIF_MASK)
67
68 /* Switch EL3 exception vectors while the workaround is executing. */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +010069 adr x9, wa_cve_2017_5715_bpiall_ret_vbar
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +000070
71 /* Setup SCTLR_EL1 with MMU off and I$ on */
72 ldr x10, stub_sel1_sctlr
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000073
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +000074 /* Land at the S-EL1 workaround stub */
75 adr x11, aarch32_stub
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000076
77 /*
78 * Setting SCR_EL3 to all zeroes means that the NS, RW
79 * and SMD bits are configured as expected.
80 */
81 msr scr_el3, xzr
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +000082 msr spsr_el3, x8
83 msr vbar_el3, x9
84 msr sctlr_el1, x10
85 msr elr_el3, x11
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000086
87 eret
88 .endm
89
90 /* ---------------------------------------------------------------------
91 * This vector table is used at runtime to enter the workaround at
92 * AArch32 S-EL1 for Sync/IRQ/FIQ/SError exceptions. If the workaround
93 * is not enabled, the existing runtime exception vector table is used.
94 * ---------------------------------------------------------------------
95 */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +010096vector_base wa_cve_2017_5715_bpiall_vbar
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +000097
98 /* ---------------------------------------------------------------------
99 * Current EL with SP_EL0 : 0x0 - 0x200
100 * ---------------------------------------------------------------------
101 */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100102vector_entry bpiall_sync_exception_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000103 b sync_exception_sp_el0
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000104 nop /* to force 8 byte alignment for the following stub */
105
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000106 /*
107 * Since each vector table entry is 128 bytes, we can store the
108 * stub context in the unused space to minimize memory footprint.
109 */
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000110stub_sel1_sctlr:
111 .quad SCTLR_AARCH32_EL1_RES1 | SCTLR_I_BIT
112
113aarch32_stub:
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000114 .word EMIT_BPIALL
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000115 .word EMIT_SMC
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000116
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100117end_vector_entry bpiall_sync_exception_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000118
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100119vector_entry bpiall_irq_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000120 b irq_sp_el0
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100121end_vector_entry bpiall_irq_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000122
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100123vector_entry bpiall_fiq_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000124 b fiq_sp_el0
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100125end_vector_entry bpiall_fiq_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000126
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100127vector_entry bpiall_serror_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000128 b serror_sp_el0
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100129end_vector_entry bpiall_serror_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000130
131 /* ---------------------------------------------------------------------
132 * Current EL with SP_ELx: 0x200 - 0x400
133 * ---------------------------------------------------------------------
134 */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100135vector_entry bpiall_sync_exception_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000136 b sync_exception_sp_elx
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100137end_vector_entry bpiall_sync_exception_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000138
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100139vector_entry bpiall_irq_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000140 b irq_sp_elx
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100141end_vector_entry bpiall_irq_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000142
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100143vector_entry bpiall_fiq_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000144 b fiq_sp_elx
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100145end_vector_entry bpiall_fiq_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000146
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100147vector_entry bpiall_serror_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000148 b serror_sp_elx
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100149end_vector_entry bpiall_serror_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000150
151 /* ---------------------------------------------------------------------
152 * Lower EL using AArch64 : 0x400 - 0x600
153 * ---------------------------------------------------------------------
154 */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100155vector_entry bpiall_sync_exception_aarch64
156 apply_cve_2017_5715_wa 1
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100157end_vector_entry bpiall_sync_exception_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000158
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100159vector_entry bpiall_irq_aarch64
160 apply_cve_2017_5715_wa 2
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100161end_vector_entry bpiall_irq_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000162
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100163vector_entry bpiall_fiq_aarch64
164 apply_cve_2017_5715_wa 4
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100165end_vector_entry bpiall_fiq_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000166
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100167vector_entry bpiall_serror_aarch64
168 apply_cve_2017_5715_wa 8
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100169end_vector_entry bpiall_serror_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000170
171 /* ---------------------------------------------------------------------
172 * Lower EL using AArch32 : 0x600 - 0x800
173 * ---------------------------------------------------------------------
174 */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100175vector_entry bpiall_sync_exception_aarch32
176 apply_cve_2017_5715_wa 1
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100177end_vector_entry bpiall_sync_exception_aarch32
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000178
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100179vector_entry bpiall_irq_aarch32
180 apply_cve_2017_5715_wa 2
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100181end_vector_entry bpiall_irq_aarch32
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000182
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100183vector_entry bpiall_fiq_aarch32
184 apply_cve_2017_5715_wa 4
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100185end_vector_entry bpiall_fiq_aarch32
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000186
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100187vector_entry bpiall_serror_aarch32
188 apply_cve_2017_5715_wa 8
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100189end_vector_entry bpiall_serror_aarch32
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000190
191 /* ---------------------------------------------------------------------
192 * This vector table is used while the workaround is executing. It
193 * installs a simple SMC handler to allow the Sync/IRQ/FIQ/SError
194 * workaround stubs to enter EL3 from S-EL1. It restores the previous
195 * EL3 state before proceeding with the normal runtime exception vector.
196 * ---------------------------------------------------------------------
197 */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100198vector_base wa_cve_2017_5715_bpiall_ret_vbar
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000199
200 /* ---------------------------------------------------------------------
201 * Current EL with SP_EL0 : 0x0 - 0x200 (UNUSED)
202 * ---------------------------------------------------------------------
203 */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100204vector_entry bpiall_ret_sync_exception_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000205 b report_unhandled_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100206end_vector_entry bpiall_ret_sync_exception_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000207
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100208vector_entry bpiall_ret_irq_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000209 b report_unhandled_interrupt
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100210end_vector_entry bpiall_ret_irq_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000211
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100212vector_entry bpiall_ret_fiq_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000213 b report_unhandled_interrupt
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100214end_vector_entry bpiall_ret_fiq_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000215
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100216vector_entry bpiall_ret_serror_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000217 b report_unhandled_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100218end_vector_entry bpiall_ret_serror_sp_el0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000219
220 /* ---------------------------------------------------------------------
221 * Current EL with SP_ELx: 0x200 - 0x400 (UNUSED)
222 * ---------------------------------------------------------------------
223 */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100224vector_entry bpiall_ret_sync_exception_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000225 b report_unhandled_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100226end_vector_entry bpiall_ret_sync_exception_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000227
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100228vector_entry bpiall_ret_irq_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000229 b report_unhandled_interrupt
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100230end_vector_entry bpiall_ret_irq_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000231
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100232vector_entry bpiall_ret_fiq_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000233 b report_unhandled_interrupt
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100234end_vector_entry bpiall_ret_fiq_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000235
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100236vector_entry bpiall_ret_serror_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000237 b report_unhandled_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100238end_vector_entry bpiall_ret_serror_sp_elx
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000239
240 /* ---------------------------------------------------------------------
241 * Lower EL using AArch64 : 0x400 - 0x600 (UNUSED)
242 * ---------------------------------------------------------------------
243 */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100244vector_entry bpiall_ret_sync_exception_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000245 b report_unhandled_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100246end_vector_entry bpiall_ret_sync_exception_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000247
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100248vector_entry bpiall_ret_irq_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000249 b report_unhandled_interrupt
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100250end_vector_entry bpiall_ret_irq_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000251
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100252vector_entry bpiall_ret_fiq_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000253 b report_unhandled_interrupt
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100254end_vector_entry bpiall_ret_fiq_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000255
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100256vector_entry bpiall_ret_serror_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000257 b report_unhandled_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100258end_vector_entry bpiall_ret_serror_aarch64
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000259
260 /* ---------------------------------------------------------------------
261 * Lower EL using AArch32 : 0x600 - 0x800
262 * ---------------------------------------------------------------------
263 */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100264vector_entry bpiall_ret_sync_exception_aarch32
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000265 /*
266 * w2 indicates which SEL1 stub was run and thus which original vector was used
267 * w3-w6 contain saved system register state (esr_el3 in w3)
268 * Restore LR and ELR_EL3 register state from the GP regs context
269 */
270 ldp x30, x7, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_LR]
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000271
272 /* Apply the restored system register state */
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000273 msr esr_el3, x3
274 msr spsr_el3, x4
275 msr scr_el3, x5
276 msr sctlr_el1, x6
277 msr elr_el3, x7
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000278
279 /*
280 * Workaround is complete, so swap VBAR_EL3 to point
281 * to workaround entry table in preparation for subsequent
282 * Sync/IRQ/FIQ/SError exceptions.
283 */
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100284 adr x0, wa_cve_2017_5715_bpiall_vbar
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000285 msr vbar_el3, x0
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000286
287 /*
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000288 * Restore all GP regs except x2 and x3 (esr). The value in x2
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000289 * indicates the type of the original exception.
290 */
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000291 ldp x0, x1, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X0]
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000292 ldp x4, x5, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X4]
293 ldp x6, x7, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X6]
294 ldp x8, x9, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X8]
295 ldp x10, x11, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X10]
296 ldp x12, x13, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X12]
297 ldp x14, x15, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X14]
298 ldp x16, x17, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X16]
299 ldp x18, x19, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X18]
300 ldp x20, x21, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X20]
301 ldp x22, x23, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X22]
302 ldp x24, x25, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X24]
303 ldp x26, x27, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X26]
304 ldp x28, x29, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X28]
305
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000306 /* Fast path Sync exceptions. Static predictor will fall through. */
307 tbz w2, #0, workaround_not_sync
Dimitris Papastamos28803632018-01-08 13:57:39 +0000308
309 /*
310 * Check if SMC is coming from A64 state on #0
Bipin Ravicaa2e052022-02-23 23:45:50 -0600311 * with W0 = SMCCC_ARCH_WORKAROUND_1 or W0 = SMCCC_ARCH_WORKAROUND_3
Dimitris Papastamos28803632018-01-08 13:57:39 +0000312 *
313 * This sequence evaluates as:
Bipin Ravicaa2e052022-02-23 23:45:50 -0600314 * (W0==SMCCC_ARCH_WORKAROUND_1) || (W0==SMCCC_ARCH_WORKAROUND_3) ?
315 * (ESR_EL3==SMC#0) : (NE)
Dimitris Papastamos28803632018-01-08 13:57:39 +0000316 * allowing use of a single branch operation
317 */
318 orr w2, wzr, #SMCCC_ARCH_WORKAROUND_1
319 cmp w0, w2
Bipin Ravicaa2e052022-02-23 23:45:50 -0600320 orr w2, wzr, #SMCCC_ARCH_WORKAROUND_3
321 ccmp w0, w2, #4, ne
Dimitris Papastamos28803632018-01-08 13:57:39 +0000322 mov_imm w2, ESR_EL3_A64_SMC0
323 ccmp w3, w2, #0, eq
324 /* Static predictor will predict a fall through */
325 bne 1f
326 eret
3271:
Bipin Ravicaa2e052022-02-23 23:45:50 -0600328 /* restore x2 and x3 and continue sync exception handling */
329 b bpiall_ret_sync_exception_aarch32_tail
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100330end_vector_entry bpiall_ret_sync_exception_aarch32
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000331
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100332vector_entry bpiall_ret_irq_aarch32
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000333 b report_unhandled_interrupt
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000334
335 /*
336 * Post-workaround fan-out for non-sync exceptions
337 */
338workaround_not_sync:
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100339 tbnz w2, #3, bpiall_ret_serror
340 tbnz w2, #2, bpiall_ret_fiq
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000341 /* IRQ */
342 ldp x2, x3, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X2]
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000343 b irq_aarch64
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000344
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100345bpiall_ret_fiq:
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000346 ldp x2, x3, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X2]
347 b fiq_aarch64
348
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100349bpiall_ret_serror:
Dimitris Papastamosb63c6f12018-01-11 15:29:36 +0000350 ldp x2, x3, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X2]
351 b serror_aarch64
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100352end_vector_entry bpiall_ret_irq_aarch32
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000353
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100354vector_entry bpiall_ret_fiq_aarch32
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000355 b report_unhandled_interrupt
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100356end_vector_entry bpiall_ret_fiq_aarch32
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000357
Dimitris Papastamos570c06a2018-04-06 15:29:34 +0100358vector_entry bpiall_ret_serror_aarch32
Dimitris Papastamosc52ebdc2017-12-18 13:46:21 +0000359 b report_unhandled_exception
Roberto Vargas95f30ab2018-04-17 11:31:43 +0100360end_vector_entry bpiall_ret_serror_aarch32
Bipin Ravicaa2e052022-02-23 23:45:50 -0600361
362 /*
363 * Part of bpiall_ret_sync_exception_aarch32 to save vector space
364 */
365func bpiall_ret_sync_exception_aarch32_tail
366 ldp x2, x3, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X2]
367 b sync_exception_aarch64
368endfunc bpiall_ret_sync_exception_aarch32_tail