blob: b79e302d2a3e959af52a886a8bff821327259d88 [file] [log] [blame]
Catalin Marinas60ffc302012-03-05 11:49:27 +00001/*
2 * Low-level exception handling code
3 *
4 * Copyright (C) 2012 ARM Ltd.
5 * Authors: Catalin Marinas <catalin.marinas@arm.com>
6 * Will Deacon <will.deacon@arm.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include <linux/init.h>
22#include <linux/linkage.h>
23
Marc Zyngier8d883b22015-06-01 10:47:41 +010024#include <asm/alternative.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000025#include <asm/assembler.h>
26#include <asm/asm-offsets.h>
Will Deacon905e8c52015-03-23 19:07:02 +000027#include <asm/cpufeature.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000028#include <asm/errno.h>
Marc Zyngier5c1ce6f2013-04-08 17:17:03 +010029#include <asm/esr.h>
James Morse8e23dac2015-12-04 11:02:27 +000030#include <asm/irq.h>
James Morsee19a6ee2016-06-20 18:28:01 +010031#include <asm/memory.h>
Will Deacon78a0cec2018-04-03 12:09:04 +010032#include <asm/mmu.h>
Mark Rutland27eeced2018-04-12 12:10:59 +010033#include <asm/processor.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000034#include <asm/thread_info.h>
Kristina Martsenko9e09d902017-06-06 20:14:10 +010035#include <asm/asm-uaccess.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000036#include <asm/unistd.h>
Will Deacon78a0cec2018-04-03 12:09:04 +010037#include <asm/kernel-pgtable.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000038
39/*
Larry Bassel6c81fe72014-05-30 12:34:15 -070040 * Context tracking subsystem. Used to instrument transitions
41 * between user and kernel mode.
42 */
43 .macro ct_user_exit, syscall = 0
44#ifdef CONFIG_CONTEXT_TRACKING
45 bl context_tracking_user_exit
46 .if \syscall == 1
47 /*
48 * Save/restore needed during syscalls. Restore syscall arguments from
49 * the values already saved on stack during kernel_entry.
50 */
51 ldp x0, x1, [sp]
52 ldp x2, x3, [sp, #S_X2]
53 ldp x4, x5, [sp, #S_X4]
54 ldp x6, x7, [sp, #S_X6]
55 .endif
56#endif
57 .endm
58
59 .macro ct_user_enter
60#ifdef CONFIG_CONTEXT_TRACKING
61 bl context_tracking_user_enter
62#endif
63 .endm
64
65/*
Catalin Marinas60ffc302012-03-05 11:49:27 +000066 * Bad Abort numbers
67 *-----------------
68 */
69#define BAD_SYNC 0
70#define BAD_IRQ 1
71#define BAD_FIQ 2
72#define BAD_ERROR 3
73
Will Deacond0b3c712018-04-03 12:09:06 +010074 .macro kernel_ventry, el, label, regsize = 64
Mark Rutlande355d4b2018-04-03 12:09:02 +010075 .align 7
Will Deaconded93ce2018-04-03 12:09:07 +010076#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
Will Deaconbfca1572018-04-03 12:09:09 +010077alternative_if ARM64_UNMAP_KERNEL_AT_EL0
Will Deaconded93ce2018-04-03 12:09:07 +010078 .if \el == 0
79 .if \regsize == 64
80 mrs x30, tpidrro_el0
81 msr tpidrro_el0, xzr
82 .else
83 mov x30, xzr
84 .endif
85 .endif
Will Deaconbfca1572018-04-03 12:09:09 +010086alternative_else_nop_endif
Will Deaconded93ce2018-04-03 12:09:07 +010087#endif
88
Will Deacon63648dd2014-09-29 12:26:41 +010089 sub sp, sp, #S_FRAME_SIZE
Will Deacond0b3c712018-04-03 12:09:06 +010090 b el\()\el\()_\label
Mark Rutlande355d4b2018-04-03 12:09:02 +010091 .endm
92
Will Deaconded93ce2018-04-03 12:09:07 +010093 .macro tramp_alias, dst, sym
94 mov_q \dst, TRAMP_VALIAS
95 add \dst, \dst, #(\sym - .entry.tramp.text)
96 .endm
97
Mark Rutlande355d4b2018-04-03 12:09:02 +010098 .macro kernel_entry, el, regsize = 64
Catalin Marinas60ffc302012-03-05 11:49:27 +000099 .if \regsize == 32
100 mov w0, w0 // zero upper 32 bits of x0
101 .endif
Will Deacon63648dd2014-09-29 12:26:41 +0100102 stp x0, x1, [sp, #16 * 0]
103 stp x2, x3, [sp, #16 * 1]
104 stp x4, x5, [sp, #16 * 2]
105 stp x6, x7, [sp, #16 * 3]
106 stp x8, x9, [sp, #16 * 4]
107 stp x10, x11, [sp, #16 * 5]
108 stp x12, x13, [sp, #16 * 6]
109 stp x14, x15, [sp, #16 * 7]
110 stp x16, x17, [sp, #16 * 8]
111 stp x18, x19, [sp, #16 * 9]
112 stp x20, x21, [sp, #16 * 10]
113 stp x22, x23, [sp, #16 * 11]
114 stp x24, x25, [sp, #16 * 12]
115 stp x26, x27, [sp, #16 * 13]
116 stp x28, x29, [sp, #16 * 14]
117
Catalin Marinas60ffc302012-03-05 11:49:27 +0000118 .if \el == 0
119 mrs x21, sp_el0
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000120 mov tsk, sp
121 and tsk, tsk, #~(THREAD_SIZE - 1) // Ensure MDSCR_EL1.SS is clear,
Will Deacon2a283072014-04-29 19:04:06 +0100122 ldr x19, [tsk, #TI_FLAGS] // since we can unmask debug
123 disable_step_tsk x19, x20 // exceptions when scheduling.
James Morse49003a82015-12-10 10:22:41 +0000124
125 mov x29, xzr // fp pointed to user-space
Catalin Marinas60ffc302012-03-05 11:49:27 +0000126 .else
127 add x21, sp, #S_FRAME_SIZE
James Morsee19a6ee2016-06-20 18:28:01 +0100128 get_thread_info tsk
Mark Rutlandc9100862018-04-12 12:11:00 +0100129 /* Save the task's original addr_limit and set USER_DS */
James Morsee19a6ee2016-06-20 18:28:01 +0100130 ldr x20, [tsk, #TI_ADDR_LIMIT]
131 str x20, [sp, #S_ORIG_ADDR_LIMIT]
Mark Rutlandc9100862018-04-12 12:11:00 +0100132 mov x20, #USER_DS
James Morsee19a6ee2016-06-20 18:28:01 +0100133 str x20, [tsk, #TI_ADDR_LIMIT]
Vladimir Murzin563cada2016-09-01 14:35:59 +0100134 /* No need to reset PSTATE.UAO, hardware's already set it to 0 for us */
James Morsee19a6ee2016-06-20 18:28:01 +0100135 .endif /* \el == 0 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000136 mrs x22, elr_el1
137 mrs x23, spsr_el1
138 stp lr, x21, [sp, #S_LR]
139 stp x22, x23, [sp, #S_PC]
140
141 /*
142 * Set syscallno to -1 by default (overridden later if real syscall).
143 */
144 .if \el == 0
145 mvn x21, xzr
146 str x21, [sp, #S_SYSCALLNO]
147 .endif
148
149 /*
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000150 * Set sp_el0 to current thread_info.
151 */
152 .if \el == 0
153 msr sp_el0, tsk
154 .endif
155
156 /*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000157 * Registers that may be useful after this macro is invoked:
158 *
159 * x21 - aborted SP
160 * x22 - aborted PC
161 * x23 - aborted PSTATE
162 */
163 .endm
164
Will Deacon412fcb62015-08-19 15:57:09 +0100165 .macro kernel_exit, el
James Morsee19a6ee2016-06-20 18:28:01 +0100166 .if \el != 0
167 /* Restore the task's original addr_limit. */
168 ldr x20, [sp, #S_ORIG_ADDR_LIMIT]
169 str x20, [tsk, #TI_ADDR_LIMIT]
170
171 /* No need to restore UAO, it will be restored from SPSR_EL1 */
172 .endif
173
Catalin Marinas60ffc302012-03-05 11:49:27 +0000174 ldp x21, x22, [sp, #S_PC] // load ELR, SPSR
175 .if \el == 0
Larry Bassel6c81fe72014-05-30 12:34:15 -0700176 ct_user_enter
Catalin Marinas60ffc302012-03-05 11:49:27 +0000177 ldr x23, [sp, #S_SP] // load return stack pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000178 msr sp_el0, x23
Will Deaconded93ce2018-04-03 12:09:07 +0100179 tst x22, #PSR_MODE32_BIT // native task?
180 b.eq 3f
181
Will Deacon905e8c52015-03-23 19:07:02 +0000182#ifdef CONFIG_ARM64_ERRATUM_845719
Mark Rutland6ba3b552016-09-07 11:07:09 +0100183alternative_if ARM64_WORKAROUND_845719
Daniel Thompsone28cabf2015-07-22 12:21:03 +0100184#ifdef CONFIG_PID_IN_CONTEXTIDR
185 mrs x29, contextidr_el1
186 msr contextidr_el1, x29
187#else
188 msr contextidr_el1, xzr
189#endif
Mark Rutland6ba3b552016-09-07 11:07:09 +0100190alternative_else_nop_endif
Will Deacon905e8c52015-03-23 19:07:02 +0000191#endif
Will Deaconded93ce2018-04-03 12:09:07 +01001923:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000193 .endif
Will Deacon63648dd2014-09-29 12:26:41 +0100194 msr elr_el1, x21 // set up the return data
195 msr spsr_el1, x22
Will Deacon63648dd2014-09-29 12:26:41 +0100196 ldp x0, x1, [sp, #16 * 0]
Will Deacon63648dd2014-09-29 12:26:41 +0100197 ldp x2, x3, [sp, #16 * 1]
198 ldp x4, x5, [sp, #16 * 2]
199 ldp x6, x7, [sp, #16 * 3]
200 ldp x8, x9, [sp, #16 * 4]
201 ldp x10, x11, [sp, #16 * 5]
202 ldp x12, x13, [sp, #16 * 6]
203 ldp x14, x15, [sp, #16 * 7]
204 ldp x16, x17, [sp, #16 * 8]
205 ldp x18, x19, [sp, #16 * 9]
206 ldp x20, x21, [sp, #16 * 10]
207 ldp x22, x23, [sp, #16 * 11]
208 ldp x24, x25, [sp, #16 * 12]
209 ldp x26, x27, [sp, #16 * 13]
210 ldp x28, x29, [sp, #16 * 14]
211 ldr lr, [sp, #S_LR]
212 add sp, sp, #S_FRAME_SIZE // restore sp
Will Deaconded93ce2018-04-03 12:09:07 +0100213
Will Deaconded93ce2018-04-03 12:09:07 +0100214 .if \el == 0
Will Deaconbfca1572018-04-03 12:09:09 +0100215alternative_insn eret, nop, ARM64_UNMAP_KERNEL_AT_EL0
216#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
Will Deaconded93ce2018-04-03 12:09:07 +0100217 bne 4f
218 msr far_el1, x30
219 tramp_alias x30, tramp_exit_native
220 br x30
2214:
222 tramp_alias x30, tramp_exit_compat
223 br x30
Will Deaconbfca1572018-04-03 12:09:09 +0100224#endif
Will Deaconded93ce2018-04-03 12:09:07 +0100225 .else
226 eret
227 .endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000228 .endm
229
230 .macro get_thread_info, rd
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000231 mrs \rd, sp_el0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000232 .endm
233
James Morse971c67c2015-12-15 11:21:25 +0000234 .macro irq_stack_entry
James Morse8e23dac2015-12-04 11:02:27 +0000235 mov x19, sp // preserve the original sp
236
James Morse8e23dac2015-12-04 11:02:27 +0000237 /*
James Morsed224a692015-12-18 16:01:47 +0000238 * Compare sp with the current thread_info, if the top
239 * ~(THREAD_SIZE - 1) bits match, we are on a task stack, and
240 * should switch to the irq stack.
James Morse8e23dac2015-12-04 11:02:27 +0000241 */
James Morsed224a692015-12-18 16:01:47 +0000242 and x25, x19, #~(THREAD_SIZE - 1)
243 cmp x25, tsk
244 b.ne 9998f
James Morse8e23dac2015-12-04 11:02:27 +0000245
James Morsed224a692015-12-18 16:01:47 +0000246 this_cpu_ptr irq_stack, x25, x26
James Morse8e23dac2015-12-04 11:02:27 +0000247 mov x26, #IRQ_STACK_START_SP
248 add x26, x25, x26
James Morsed224a692015-12-18 16:01:47 +0000249
250 /* switch to the irq stack */
James Morse8e23dac2015-12-04 11:02:27 +0000251 mov sp, x26
252
James Morse971c67c2015-12-15 11:21:25 +0000253 /*
254 * Add a dummy stack frame, this non-standard format is fixed up
255 * by unwind_frame()
256 */
257 stp x29, x19, [sp, #-16]!
James Morse8e23dac2015-12-04 11:02:27 +0000258 mov x29, sp
James Morse8e23dac2015-12-04 11:02:27 +0000259
2609998:
261 .endm
262
263 /*
264 * x19 should be preserved between irq_stack_entry and
265 * irq_stack_exit.
266 */
267 .macro irq_stack_exit
268 mov sp, x19
269 .endm
270
Catalin Marinas60ffc302012-03-05 11:49:27 +0000271/*
272 * These are the registers used in the syscall handler, and allow us to
273 * have in theory up to 7 arguments to a function - x0 to x6.
274 *
275 * x7 is reserved for the system call number in 32-bit mode.
276 */
277sc_nr .req x25 // number of system calls
278scno .req x26 // syscall number
279stbl .req x27 // syscall table pointer
280tsk .req x28 // current thread_info
281
282/*
283 * Interrupt handling.
284 */
285 .macro irq_handler
James Morse8e23dac2015-12-04 11:02:27 +0000286 ldr_l x1, handle_arch_irq
Catalin Marinas60ffc302012-03-05 11:49:27 +0000287 mov x0, sp
James Morse971c67c2015-12-15 11:21:25 +0000288 irq_stack_entry
Catalin Marinas60ffc302012-03-05 11:49:27 +0000289 blr x1
James Morse8e23dac2015-12-04 11:02:27 +0000290 irq_stack_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000291 .endm
292
293 .text
294
295/*
296 * Exception vectors.
297 */
Pratyush Anand888b3c82016-07-08 12:35:50 -0400298 .pushsection ".entry.text", "ax"
Catalin Marinas60ffc302012-03-05 11:49:27 +0000299
300 .align 11
301ENTRY(vectors)
Will Deacond0b3c712018-04-03 12:09:06 +0100302 kernel_ventry 1, sync_invalid // Synchronous EL1t
303 kernel_ventry 1, irq_invalid // IRQ EL1t
304 kernel_ventry 1, fiq_invalid // FIQ EL1t
305 kernel_ventry 1, error_invalid // Error EL1t
Catalin Marinas60ffc302012-03-05 11:49:27 +0000306
Will Deacond0b3c712018-04-03 12:09:06 +0100307 kernel_ventry 1, sync // Synchronous EL1h
308 kernel_ventry 1, irq // IRQ EL1h
309 kernel_ventry 1, fiq_invalid // FIQ EL1h
310 kernel_ventry 1, error_invalid // Error EL1h
Catalin Marinas60ffc302012-03-05 11:49:27 +0000311
Will Deacond0b3c712018-04-03 12:09:06 +0100312 kernel_ventry 0, sync // Synchronous 64-bit EL0
313 kernel_ventry 0, irq // IRQ 64-bit EL0
314 kernel_ventry 0, fiq_invalid // FIQ 64-bit EL0
315 kernel_ventry 0, error_invalid // Error 64-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000316
317#ifdef CONFIG_COMPAT
Will Deacond0b3c712018-04-03 12:09:06 +0100318 kernel_ventry 0, sync_compat, 32 // Synchronous 32-bit EL0
319 kernel_ventry 0, irq_compat, 32 // IRQ 32-bit EL0
320 kernel_ventry 0, fiq_invalid_compat, 32 // FIQ 32-bit EL0
321 kernel_ventry 0, error_invalid_compat, 32 // Error 32-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000322#else
Will Deacond0b3c712018-04-03 12:09:06 +0100323 kernel_ventry 0, sync_invalid, 32 // Synchronous 32-bit EL0
324 kernel_ventry 0, irq_invalid, 32 // IRQ 32-bit EL0
325 kernel_ventry 0, fiq_invalid, 32 // FIQ 32-bit EL0
326 kernel_ventry 0, error_invalid, 32 // Error 32-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000327#endif
328END(vectors)
329
330/*
331 * Invalid mode handlers
332 */
333 .macro inv_entry, el, reason, regsize = 64
Ard Biesheuvelb6609502016-03-18 10:58:09 +0100334 kernel_entry \el, \regsize
Catalin Marinas60ffc302012-03-05 11:49:27 +0000335 mov x0, sp
336 mov x1, #\reason
337 mrs x2, esr_el1
338 b bad_mode
339 .endm
340
341el0_sync_invalid:
342 inv_entry 0, BAD_SYNC
343ENDPROC(el0_sync_invalid)
344
345el0_irq_invalid:
346 inv_entry 0, BAD_IRQ
347ENDPROC(el0_irq_invalid)
348
349el0_fiq_invalid:
350 inv_entry 0, BAD_FIQ
351ENDPROC(el0_fiq_invalid)
352
353el0_error_invalid:
354 inv_entry 0, BAD_ERROR
355ENDPROC(el0_error_invalid)
356
357#ifdef CONFIG_COMPAT
358el0_fiq_invalid_compat:
359 inv_entry 0, BAD_FIQ, 32
360ENDPROC(el0_fiq_invalid_compat)
361
362el0_error_invalid_compat:
363 inv_entry 0, BAD_ERROR, 32
364ENDPROC(el0_error_invalid_compat)
365#endif
366
367el1_sync_invalid:
368 inv_entry 1, BAD_SYNC
369ENDPROC(el1_sync_invalid)
370
371el1_irq_invalid:
372 inv_entry 1, BAD_IRQ
373ENDPROC(el1_irq_invalid)
374
375el1_fiq_invalid:
376 inv_entry 1, BAD_FIQ
377ENDPROC(el1_fiq_invalid)
378
379el1_error_invalid:
380 inv_entry 1, BAD_ERROR
381ENDPROC(el1_error_invalid)
382
383/*
384 * EL1 mode handlers.
385 */
386 .align 6
387el1_sync:
388 kernel_entry 1
389 mrs x1, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000390 lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class
391 cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000392 b.eq el1_da
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700393 cmp x24, #ESR_ELx_EC_IABT_CUR // instruction abort in EL1
394 b.eq el1_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000395 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Catalin Marinas60ffc302012-03-05 11:49:27 +0000396 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000397 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000398 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000399 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000400 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000401 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000402 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000403 cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000404 b.ge el1_dbg
405 b el1_inv
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700406
407el1_ia:
408 /*
409 * Fall through to the Data abort case
410 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000411el1_da:
412 /*
413 * Data abort handling
414 */
Kristina Martsenko9e09d902017-06-06 20:14:10 +0100415 mrs x3, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100416 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000417 // re-enable interrupts if they were enabled in the aborted context
418 tbnz x23, #7, 1f // PSR_I_BIT
419 enable_irq
4201:
Kristina Martsenko9e09d902017-06-06 20:14:10 +0100421 clear_address_tag x0, x3
Catalin Marinas60ffc302012-03-05 11:49:27 +0000422 mov x2, sp // struct pt_regs
423 bl do_mem_abort
424
425 // disable interrupts before pulling preserved data off the stack
426 disable_irq
427 kernel_exit 1
428el1_sp_pc:
429 /*
430 * Stack or PC alignment exception handling
431 */
432 mrs x0, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100433 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000434 mov x2, sp
435 b do_sp_pc_abort
436el1_undef:
437 /*
438 * Undefined instruction
439 */
Will Deacon2a283072014-04-29 19:04:06 +0100440 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000441 mov x0, sp
442 b do_undefinstr
443el1_dbg:
444 /*
445 * Debug exception handling
446 */
Mark Rutlandaed40e02014-11-24 12:31:40 +0000447 cmp x24, #ESR_ELx_EC_BRK64 // if BRK64
Sandeepa Prabhuee6214c2013-12-04 05:50:20 +0000448 cinc x24, x24, eq // set bit '0'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000449 tbz x24, #0, el1_inv // EL1 only
450 mrs x0, far_el1
451 mov x2, sp // struct pt_regs
452 bl do_debug_exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000453 kernel_exit 1
454el1_inv:
455 // TODO: add support for undefined instructions in kernel mode
Will Deacon2a283072014-04-29 19:04:06 +0100456 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000457 mov x0, sp
Mark Rutland1b428042015-07-07 18:00:49 +0100458 mov x2, x1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000459 mov x1, #BAD_SYNC
Catalin Marinas60ffc302012-03-05 11:49:27 +0000460 b bad_mode
461ENDPROC(el1_sync)
462
463 .align 6
464el1_irq:
465 kernel_entry 1
Will Deacon2a283072014-04-29 19:04:06 +0100466 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000467#ifdef CONFIG_TRACE_IRQFLAGS
468 bl trace_hardirqs_off
469#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000470
471 irq_handler
472
Catalin Marinas60ffc302012-03-05 11:49:27 +0000473#ifdef CONFIG_PREEMPT
Neil Zhang883c0572014-01-13 08:57:56 +0000474 ldr w24, [tsk, #TI_PREEMPT] // get preempt count
Marc Zyngier717321f2013-11-04 20:14:58 +0000475 cbnz w24, 1f // preempt count != 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000476 ldr x0, [tsk, #TI_FLAGS] // get flags
477 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
478 bl el1_preempt
4791:
480#endif
481#ifdef CONFIG_TRACE_IRQFLAGS
482 bl trace_hardirqs_on
483#endif
484 kernel_exit 1
485ENDPROC(el1_irq)
486
487#ifdef CONFIG_PREEMPT
488el1_preempt:
489 mov x24, lr
Will Deacon2a283072014-04-29 19:04:06 +01004901: bl preempt_schedule_irq // irq en/disable is done inside
Catalin Marinas60ffc302012-03-05 11:49:27 +0000491 ldr x0, [tsk, #TI_FLAGS] // get new tasks TI_FLAGS
492 tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling?
493 ret x24
494#endif
495
496/*
497 * EL0 mode handlers.
498 */
499 .align 6
500el0_sync:
501 kernel_entry 0
502 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000503 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
504 cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000505 b.eq el0_svc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000506 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000507 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000508 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000509 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000510 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000511 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000512 cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000513 b.eq el0_fpsimd_exc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000514 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100515 b.eq el0_sys
Mark Rutlandaed40e02014-11-24 12:31:40 +0000516 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000517 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000518 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000519 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000520 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000521 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000522 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000523 b.ge el0_dbg
524 b el0_inv
525
526#ifdef CONFIG_COMPAT
527 .align 6
528el0_sync_compat:
529 kernel_entry 0, 32
530 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000531 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
532 cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000533 b.eq el0_svc_compat
Mark Rutlandaed40e02014-11-24 12:31:40 +0000534 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000535 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000536 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000537 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000538 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000539 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000540 cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000541 b.eq el0_fpsimd_exc
Mark Salyzyn77f3228f2015-10-13 14:30:51 -0700542 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
543 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000544 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000545 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000546 cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100547 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000548 cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100549 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000550 cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100551 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000552 cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100553 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000554 cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100555 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000556 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000557 b.ge el0_dbg
558 b el0_inv
559el0_svc_compat:
560 /*
561 * AArch32 syscall handling
562 */
Catalin Marinas01564112015-01-06 16:42:32 +0000563 adrp stbl, compat_sys_call_table // load compat syscall table pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000564 uxtw scno, w7 // syscall number in w7 (r7)
565 mov sc_nr, #__NR_compat_syscalls
566 b el0_svc_naked
567
568 .align 6
569el0_irq_compat:
570 kernel_entry 0, 32
571 b el0_irq_naked
572#endif
573
574el0_da:
575 /*
576 * Data abort handling
577 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100578 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000579 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100580 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700581 ct_user_exit
Kristina Martsenko9e09d902017-06-06 20:14:10 +0100582 clear_address_tag x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000583 mov x1, x25
584 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100585 bl do_mem_abort
586 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000587el0_ia:
588 /*
589 * Instruction abort handling
590 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100591 mrs x26, far_el1
Mark Rutland47320012018-04-12 12:11:13 +0100592 msr daifclr, #(8 | 4 | 1)
593#ifdef CONFIG_TRACE_IRQFLAGS
594 bl trace_hardirqs_off
595#endif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700596 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100597 mov x0, x26
Mark Rutland541ec872016-05-31 12:33:03 +0100598 mov x1, x25
Catalin Marinas60ffc302012-03-05 11:49:27 +0000599 mov x2, sp
Mark Rutland47320012018-04-12 12:11:13 +0100600 bl do_el0_ia_bp_hardening
Will Deacond54e81f2014-09-29 11:44:01 +0100601 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000602el0_fpsimd_acc:
603 /*
604 * Floating Point or Advanced SIMD access
605 */
Will Deacon2a283072014-04-29 19:04:06 +0100606 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700607 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000608 mov x0, x25
609 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100610 bl do_fpsimd_acc
611 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000612el0_fpsimd_exc:
613 /*
614 * Floating Point or Advanced SIMD exception
615 */
Will Deacon2a283072014-04-29 19:04:06 +0100616 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700617 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000618 mov x0, x25
619 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100620 bl do_fpsimd_exc
621 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000622el0_sp_pc:
623 /*
624 * Stack or PC alignment exception handling
625 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100626 mrs x26, far_el1
Mark Rutlande7c3b242018-04-12 12:11:17 +0100627 enable_dbg
628#ifdef CONFIG_TRACE_IRQFLAGS
629 bl trace_hardirqs_off
630#endif
Mark Rutland46b05672015-06-15 16:40:27 +0100631 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100632 mov x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000633 mov x1, x25
634 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100635 bl do_sp_pc_abort
636 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000637el0_undef:
638 /*
639 * Undefined instruction
640 */
Catalin Marinas2600e132013-08-22 11:47:37 +0100641 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100642 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700643 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100644 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100645 bl do_undefinstr
646 b ret_to_user
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100647el0_sys:
648 /*
649 * System instructions, for trapped cache maintenance instructions
650 */
651 enable_dbg_and_irq
652 ct_user_exit
653 mov x0, x25
654 mov x1, sp
655 bl do_sysinstr
656 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000657el0_dbg:
658 /*
659 * Debug exception handling
660 */
661 tbnz x24, #0, el0_inv // EL0 only
662 mrs x0, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000663 mov x1, x25
664 mov x2, sp
Will Deacon2a283072014-04-29 19:04:06 +0100665 bl do_debug_exception
666 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700667 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100668 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000669el0_inv:
Will Deacon2a283072014-04-29 19:04:06 +0100670 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700671 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000672 mov x0, sp
673 mov x1, #BAD_SYNC
Mark Rutland1b428042015-07-07 18:00:49 +0100674 mov x2, x25
Mark Rutlandde327942017-01-18 17:23:41 +0000675 bl bad_el0_sync
Will Deacond54e81f2014-09-29 11:44:01 +0100676 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000677ENDPROC(el0_sync)
678
679 .align 6
680el0_irq:
681 kernel_entry 0
682el0_irq_naked:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000683 enable_dbg
684#ifdef CONFIG_TRACE_IRQFLAGS
685 bl trace_hardirqs_off
686#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000687
Larry Bassel6c81fe72014-05-30 12:34:15 -0700688 ct_user_exit
Mark Rutland34dc20b2018-04-12 12:11:18 +0100689#ifdef CONFIG_HARDEN_BRANCH_PREDICTOR
690 tbz x22, #55, 1f
691 bl do_el0_irq_bp_hardening
6921:
693#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000694 irq_handler
Marc Zyngier64681782013-11-12 17:11:53 +0000695
Catalin Marinas60ffc302012-03-05 11:49:27 +0000696#ifdef CONFIG_TRACE_IRQFLAGS
697 bl trace_hardirqs_on
698#endif
699 b ret_to_user
700ENDPROC(el0_irq)
701
702/*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000703 * Register switch for AArch64. The callee-saved registers need to be saved
704 * and restored. On entry:
705 * x0 = previous task_struct (must be preserved across the switch)
706 * x1 = next task_struct
707 * Previous and next are guaranteed not to be the same.
708 *
709 */
710ENTRY(cpu_switch_to)
Will Deaconc0d3fce2015-07-20 15:14:53 +0100711 mov x10, #THREAD_CPU_CONTEXT
712 add x8, x0, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000713 mov x9, sp
714 stp x19, x20, [x8], #16 // store callee-saved registers
715 stp x21, x22, [x8], #16
716 stp x23, x24, [x8], #16
717 stp x25, x26, [x8], #16
718 stp x27, x28, [x8], #16
719 stp x29, x9, [x8], #16
720 str lr, [x8]
Will Deaconc0d3fce2015-07-20 15:14:53 +0100721 add x8, x1, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000722 ldp x19, x20, [x8], #16 // restore callee-saved registers
723 ldp x21, x22, [x8], #16
724 ldp x23, x24, [x8], #16
725 ldp x25, x26, [x8], #16
726 ldp x27, x28, [x8], #16
727 ldp x29, x9, [x8], #16
728 ldr lr, [x8]
729 mov sp, x9
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000730 and x9, x9, #~(THREAD_SIZE - 1)
731 msr sp_el0, x9
Catalin Marinas60ffc302012-03-05 11:49:27 +0000732 ret
733ENDPROC(cpu_switch_to)
734
735/*
736 * This is the fast syscall return path. We do as little as possible here,
737 * and this includes saving x0 back into the kernel stack.
738 */
739ret_fast_syscall:
740 disable_irq // disable interrupts
Will Deacon412fcb62015-08-19 15:57:09 +0100741 str x0, [sp, #S_X0] // returned x0
Josh Stone04d7e092015-06-05 14:28:03 -0700742 ldr x1, [tsk, #TI_FLAGS] // re-check for syscall tracing
743 and x2, x1, #_TIF_SYSCALL_WORK
744 cbnz x2, ret_fast_syscall_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000745 and x2, x1, #_TIF_WORK_MASK
Will Deacon412fcb62015-08-19 15:57:09 +0100746 cbnz x2, work_pending
Will Deacon2a283072014-04-29 19:04:06 +0100747 enable_step_tsk x1, x2
Will Deacon412fcb62015-08-19 15:57:09 +0100748 kernel_exit 0
Josh Stone04d7e092015-06-05 14:28:03 -0700749ret_fast_syscall_trace:
750 enable_irq // enable interrupts
Will Deacon412fcb62015-08-19 15:57:09 +0100751 b __sys_trace_return_skipped // we already saved x0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000752
753/*
754 * Ok, we need to do extra processing, enter the slow path.
755 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000756work_pending:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000757 mov x0, sp // 'regs'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000758 bl do_notify_resume
Catalin Marinasdb3899a2015-12-04 12:42:29 +0000759#ifdef CONFIG_TRACE_IRQFLAGS
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400760 bl trace_hardirqs_on // enabled while in userspace
Catalin Marinasdb3899a2015-12-04 12:42:29 +0000761#endif
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400762 ldr x1, [tsk, #TI_FLAGS] // re-check for single-step
763 b finish_ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000764/*
765 * "slow" syscall return path.
766 */
Catalin Marinas59dc67b2012-09-10 16:11:46 +0100767ret_to_user:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000768 disable_irq // disable interrupts
769 ldr x1, [tsk, #TI_FLAGS]
770 and x2, x1, #_TIF_WORK_MASK
771 cbnz x2, work_pending
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400772finish_ret_to_user:
Will Deacon2a283072014-04-29 19:04:06 +0100773 enable_step_tsk x1, x2
Will Deacon412fcb62015-08-19 15:57:09 +0100774 kernel_exit 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000775ENDPROC(ret_to_user)
776
777/*
778 * This is how we return from a fork.
779 */
780ENTRY(ret_from_fork)
781 bl schedule_tail
Catalin Marinasc34501d2012-10-05 12:31:20 +0100782 cbz x19, 1f // not a kernel thread
783 mov x0, x20
784 blr x19
7851: get_thread_info tsk
Catalin Marinas60ffc302012-03-05 11:49:27 +0000786 b ret_to_user
787ENDPROC(ret_from_fork)
788
789/*
790 * SVC handler.
791 */
792 .align 6
793el0_svc:
794 adrp stbl, sys_call_table // load syscall table pointer
795 uxtw scno, w8 // syscall number in w8
796 mov sc_nr, #__NR_syscalls
797el0_svc_naked: // compat entry point
798 stp x0, scno, [sp, #S_ORIG_X0] // save the original x0 and syscall number
Will Deacon2a283072014-04-29 19:04:06 +0100799 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700800 ct_user_exit 1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000801
AKASHI Takahiro449f81a2014-04-30 10:51:29 +0100802 ldr x16, [tsk, #TI_FLAGS] // check for syscall hooks
803 tst x16, #_TIF_SYSCALL_WORK
804 b.ne __sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000805 cmp scno, sc_nr // check upper syscall limit
806 b.hs ni_sys
Mark Rutlandf3ed64a2018-04-12 12:11:02 +0100807 mask_nospec64 scno, sc_nr, x19 // enforce bounds for syscall number
Catalin Marinas60ffc302012-03-05 11:49:27 +0000808 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100809 blr x16 // call sys_* routine
810 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000811ni_sys:
812 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100813 bl do_ni_syscall
814 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000815ENDPROC(el0_svc)
816
817 /*
818 * This is the really slow path. We're going to be doing context
819 * switches, and waiting for our parent to respond.
820 */
821__sys_trace:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000822 mov w0, #-1 // set default errno for
823 cmp scno, x0 // user-issued syscall(-1)
824 b.ne 1f
825 mov x0, #-ENOSYS
826 str x0, [sp, #S_X0]
8271: mov x0, sp
AKASHI Takahiro31578582014-04-30 10:51:30 +0100828 bl syscall_trace_enter
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000829 cmp w0, #-1 // skip the syscall?
830 b.eq __sys_trace_return_skipped
Catalin Marinas60ffc302012-03-05 11:49:27 +0000831 uxtw scno, w0 // syscall number (possibly new)
832 mov x1, sp // pointer to regs
833 cmp scno, sc_nr // check upper syscall limit
Will Deacond54e81f2014-09-29 11:44:01 +0100834 b.hs __ni_sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000835 ldp x0, x1, [sp] // restore the syscall args
836 ldp x2, x3, [sp, #S_X2]
837 ldp x4, x5, [sp, #S_X4]
838 ldp x6, x7, [sp, #S_X6]
839 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100840 blr x16 // call sys_* routine
Catalin Marinas60ffc302012-03-05 11:49:27 +0000841
842__sys_trace_return:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000843 str x0, [sp, #S_X0] // save returned x0
844__sys_trace_return_skipped:
AKASHI Takahiro31578582014-04-30 10:51:30 +0100845 mov x0, sp
846 bl syscall_trace_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000847 b ret_to_user
848
Will Deacond54e81f2014-09-29 11:44:01 +0100849__ni_sys_trace:
850 mov x0, sp
851 bl do_ni_syscall
852 b __sys_trace_return
853
Pratyush Anand888b3c82016-07-08 12:35:50 -0400854 .popsection // .entry.text
855
Will Deacon78a0cec2018-04-03 12:09:04 +0100856#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
857/*
858 * Exception vectors trampoline.
859 */
860 .pushsection ".entry.tramp.text", "ax"
861
862 .macro tramp_map_kernel, tmp
863 mrs \tmp, ttbr1_el1
864 sub \tmp, \tmp, #SWAPPER_DIR_SIZE
865 bic \tmp, \tmp, #USER_ASID_FLAG
866 msr ttbr1_el1, \tmp
867 .endm
868
869 .macro tramp_unmap_kernel, tmp
870 mrs \tmp, ttbr1_el1
871 add \tmp, \tmp, #SWAPPER_DIR_SIZE
872 orr \tmp, \tmp, #USER_ASID_FLAG
873 msr ttbr1_el1, \tmp
874 /*
Will Deacona80d8e22018-04-03 12:09:22 +0100875 * We avoid running the post_ttbr_update_workaround here because
876 * it's only needed by Cavium ThunderX, which requires KPTI to be
877 * disabled.
Will Deacon78a0cec2018-04-03 12:09:04 +0100878 */
879 .endm
880
881 .macro tramp_ventry, regsize = 64
882 .align 7
8831:
884 .if \regsize == 64
885 msr tpidrro_el0, x30 // Restored in kernel_ventry
886 .endif
Will Deaconf6af5322018-04-03 12:09:11 +0100887 /*
888 * Defend against branch aliasing attacks by pushing a dummy
889 * entry onto the return stack and using a RET instruction to
890 * enter the full-fat kernel vectors.
891 */
892 bl 2f
893 b .
8942:
Will Deacon78a0cec2018-04-03 12:09:04 +0100895 tramp_map_kernel x30
Will Deacon96750422018-04-03 12:09:10 +0100896#ifdef CONFIG_RANDOMIZE_BASE
897 adr x30, tramp_vectors + PAGE_SIZE
898 isb
899 ldr x30, [x30]
900#else
Will Deacon78a0cec2018-04-03 12:09:04 +0100901 ldr x30, =vectors
Will Deacon96750422018-04-03 12:09:10 +0100902#endif
Will Deacon78a0cec2018-04-03 12:09:04 +0100903 prfm plil1strm, [x30, #(1b - tramp_vectors)]
904 msr vbar_el1, x30
905 add x30, x30, #(1b - tramp_vectors)
906 isb
Will Deaconf6af5322018-04-03 12:09:11 +0100907 ret
Will Deacon78a0cec2018-04-03 12:09:04 +0100908 .endm
909
910 .macro tramp_exit, regsize = 64
911 adr x30, tramp_vectors
912 msr vbar_el1, x30
913 tramp_unmap_kernel x30
914 .if \regsize == 64
915 mrs x30, far_el1
916 .endif
917 eret
918 .endm
919
920 .align 11
921ENTRY(tramp_vectors)
922 .space 0x400
923
924 tramp_ventry
925 tramp_ventry
926 tramp_ventry
927 tramp_ventry
928
929 tramp_ventry 32
930 tramp_ventry 32
931 tramp_ventry 32
932 tramp_ventry 32
933END(tramp_vectors)
934
935ENTRY(tramp_exit_native)
936 tramp_exit
937END(tramp_exit_native)
938
939ENTRY(tramp_exit_compat)
940 tramp_exit 32
941END(tramp_exit_compat)
942
943 .ltorg
944 .popsection // .entry.tramp.text
Will Deacon96750422018-04-03 12:09:10 +0100945#ifdef CONFIG_RANDOMIZE_BASE
946 .pushsection ".rodata", "a"
947 .align PAGE_SHIFT
948 .globl __entry_tramp_data_start
949__entry_tramp_data_start:
950 .quad vectors
951 .popsection // .rodata
952#endif /* CONFIG_RANDOMIZE_BASE */
Will Deacon78a0cec2018-04-03 12:09:04 +0100953#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
954
Catalin Marinas60ffc302012-03-05 11:49:27 +0000955/*
956 * Special system call wrappers.
957 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000958ENTRY(sys_rt_sigreturn_wrapper)
959 mov x0, sp
960 b sys_rt_sigreturn
961ENDPROC(sys_rt_sigreturn_wrapper)