blob: 660612a07ec59dfcadba97b0b78d5aa95ac38f94 [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>
Catalin Marinas39bc88e2016-09-02 14:54:03 +010032#include <asm/ptrace.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000033#include <asm/thread_info.h>
Al Virob4b86642016-12-26 04:10:19 -050034#include <asm/asm-uaccess.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000035#include <asm/unistd.h>
36
37/*
Larry Bassel6c81fe72014-05-30 12:34:15 -070038 * Context tracking subsystem. Used to instrument transitions
39 * between user and kernel mode.
40 */
41 .macro ct_user_exit, syscall = 0
42#ifdef CONFIG_CONTEXT_TRACKING
43 bl context_tracking_user_exit
44 .if \syscall == 1
45 /*
46 * Save/restore needed during syscalls. Restore syscall arguments from
47 * the values already saved on stack during kernel_entry.
48 */
49 ldp x0, x1, [sp]
50 ldp x2, x3, [sp, #S_X2]
51 ldp x4, x5, [sp, #S_X4]
52 ldp x6, x7, [sp, #S_X6]
53 .endif
54#endif
55 .endm
56
57 .macro ct_user_enter
58#ifdef CONFIG_CONTEXT_TRACKING
59 bl context_tracking_user_enter
60#endif
61 .endm
62
63/*
Catalin Marinas60ffc302012-03-05 11:49:27 +000064 * Bad Abort numbers
65 *-----------------
66 */
67#define BAD_SYNC 0
68#define BAD_IRQ 1
69#define BAD_FIQ 2
70#define BAD_ERROR 3
71
72 .macro kernel_entry, el, regsize = 64
Will Deacon63648dd2014-09-29 12:26:41 +010073 sub sp, sp, #S_FRAME_SIZE
Catalin Marinas60ffc302012-03-05 11:49:27 +000074 .if \regsize == 32
75 mov w0, w0 // zero upper 32 bits of x0
76 .endif
Will Deacon63648dd2014-09-29 12:26:41 +010077 stp x0, x1, [sp, #16 * 0]
78 stp x2, x3, [sp, #16 * 1]
79 stp x4, x5, [sp, #16 * 2]
80 stp x6, x7, [sp, #16 * 3]
81 stp x8, x9, [sp, #16 * 4]
82 stp x10, x11, [sp, #16 * 5]
83 stp x12, x13, [sp, #16 * 6]
84 stp x14, x15, [sp, #16 * 7]
85 stp x16, x17, [sp, #16 * 8]
86 stp x18, x19, [sp, #16 * 9]
87 stp x20, x21, [sp, #16 * 10]
88 stp x22, x23, [sp, #16 * 11]
89 stp x24, x25, [sp, #16 * 12]
90 stp x26, x27, [sp, #16 * 13]
91 stp x28, x29, [sp, #16 * 14]
92
Catalin Marinas60ffc302012-03-05 11:49:27 +000093 .if \el == 0
94 mrs x21, sp_el0
Mark Rutlandc02433d2016-11-03 20:23:13 +000095 ldr_this_cpu tsk, __entry_task, x20 // Ensure MDSCR_EL1.SS is clear,
96 ldr x19, [tsk, #TSK_TI_FLAGS] // since we can unmask debug
Will Deacon2a283072014-04-29 19:04:06 +010097 disable_step_tsk x19, x20 // exceptions when scheduling.
James Morse49003a82015-12-10 10:22:41 +000098
99 mov x29, xzr // fp pointed to user-space
Catalin Marinas60ffc302012-03-05 11:49:27 +0000100 .else
101 add x21, sp, #S_FRAME_SIZE
James Morsee19a6ee2016-06-20 18:28:01 +0100102 get_thread_info tsk
103 /* Save the task's original addr_limit and set USER_DS (TASK_SIZE_64) */
Mark Rutlandc02433d2016-11-03 20:23:13 +0000104 ldr x20, [tsk, #TSK_TI_ADDR_LIMIT]
James Morsee19a6ee2016-06-20 18:28:01 +0100105 str x20, [sp, #S_ORIG_ADDR_LIMIT]
106 mov x20, #TASK_SIZE_64
Mark Rutlandc02433d2016-11-03 20:23:13 +0000107 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
Vladimir Murzin563cada2016-09-01 14:35:59 +0100108 /* No need to reset PSTATE.UAO, hardware's already set it to 0 for us */
James Morsee19a6ee2016-06-20 18:28:01 +0100109 .endif /* \el == 0 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000110 mrs x22, elr_el1
111 mrs x23, spsr_el1
112 stp lr, x21, [sp, #S_LR]
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100113
114#ifdef CONFIG_ARM64_SW_TTBR0_PAN
115 /*
116 * Set the TTBR0 PAN bit in SPSR. When the exception is taken from
117 * EL0, there is no need to check the state of TTBR0_EL1 since
118 * accesses are always enabled.
119 * Note that the meaning of this bit differs from the ARMv8.1 PAN
120 * feature as all TTBR0_EL1 accesses are disabled, not just those to
121 * user mappings.
122 */
123alternative_if ARM64_HAS_PAN
124 b 1f // skip TTBR0 PAN
125alternative_else_nop_endif
126
127 .if \el != 0
128 mrs x21, ttbr0_el1
129 tst x21, #0xffff << 48 // Check for the reserved ASID
130 orr x23, x23, #PSR_PAN_BIT // Set the emulated PAN in the saved SPSR
131 b.eq 1f // TTBR0 access already disabled
132 and x23, x23, #~PSR_PAN_BIT // Clear the emulated PAN in the saved SPSR
133 .endif
134
135 __uaccess_ttbr0_disable x21
1361:
137#endif
138
Catalin Marinas60ffc302012-03-05 11:49:27 +0000139 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]
Mark Rutlandc02433d2016-11-03 20:23:13 +0000169 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
James Morsee19a6ee2016-06-20 18:28:01 +0100170
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 Marinas39bc88e2016-09-02 14:54:03 +0100177 .endif
178
179#ifdef CONFIG_ARM64_SW_TTBR0_PAN
180 /*
181 * Restore access to TTBR0_EL1. If returning to EL0, no need for SPSR
182 * PAN bit checking.
183 */
184alternative_if ARM64_HAS_PAN
185 b 2f // skip TTBR0 PAN
186alternative_else_nop_endif
187
188 .if \el != 0
189 tbnz x22, #22, 1f // Skip re-enabling TTBR0 access if the PSR_PAN_BIT is set
190 .endif
191
192 __uaccess_ttbr0_enable x0
193
194 .if \el == 0
195 /*
196 * Enable errata workarounds only if returning to user. The only
197 * workaround currently required for TTBR0_EL1 changes are for the
198 * Cavium erratum 27456 (broadcast TLBI instructions may cause I-cache
199 * corruption).
200 */
201 post_ttbr0_update_workaround
202 .endif
2031:
204 .if \el != 0
205 and x22, x22, #~PSR_PAN_BIT // ARMv8.0 CPUs do not understand this bit
206 .endif
2072:
208#endif
209
210 .if \el == 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000211 ldr x23, [sp, #S_SP] // load return stack pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000212 msr sp_el0, x23
Will Deacon905e8c52015-03-23 19:07:02 +0000213#ifdef CONFIG_ARM64_ERRATUM_845719
Mark Rutland6ba3b552016-09-07 11:07:09 +0100214alternative_if ARM64_WORKAROUND_845719
Daniel Thompsone28cabf2015-07-22 12:21:03 +0100215 tbz x22, #4, 1f
216#ifdef CONFIG_PID_IN_CONTEXTIDR
217 mrs x29, contextidr_el1
218 msr contextidr_el1, x29
219#else
220 msr contextidr_el1, xzr
221#endif
2221:
Mark Rutland6ba3b552016-09-07 11:07:09 +0100223alternative_else_nop_endif
Will Deacon905e8c52015-03-23 19:07:02 +0000224#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000225 .endif
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100226
Will Deacon63648dd2014-09-29 12:26:41 +0100227 msr elr_el1, x21 // set up the return data
228 msr spsr_el1, x22
Will Deacon63648dd2014-09-29 12:26:41 +0100229 ldp x0, x1, [sp, #16 * 0]
Will Deacon63648dd2014-09-29 12:26:41 +0100230 ldp x2, x3, [sp, #16 * 1]
231 ldp x4, x5, [sp, #16 * 2]
232 ldp x6, x7, [sp, #16 * 3]
233 ldp x8, x9, [sp, #16 * 4]
234 ldp x10, x11, [sp, #16 * 5]
235 ldp x12, x13, [sp, #16 * 6]
236 ldp x14, x15, [sp, #16 * 7]
237 ldp x16, x17, [sp, #16 * 8]
238 ldp x18, x19, [sp, #16 * 9]
239 ldp x20, x21, [sp, #16 * 10]
240 ldp x22, x23, [sp, #16 * 11]
241 ldp x24, x25, [sp, #16 * 12]
242 ldp x26, x27, [sp, #16 * 13]
243 ldp x28, x29, [sp, #16 * 14]
244 ldr lr, [sp, #S_LR]
245 add sp, sp, #S_FRAME_SIZE // restore sp
Catalin Marinas60ffc302012-03-05 11:49:27 +0000246 eret // return to kernel
247 .endm
248
James Morse971c67c2015-12-15 11:21:25 +0000249 .macro irq_stack_entry
James Morse8e23dac2015-12-04 11:02:27 +0000250 mov x19, sp // preserve the original sp
251
James Morse8e23dac2015-12-04 11:02:27 +0000252 /*
Mark Rutlandc02433d2016-11-03 20:23:13 +0000253 * Compare sp with the base of the task stack.
254 * If the top ~(THREAD_SIZE - 1) bits match, we are on a task stack,
255 * and should switch to the irq stack.
James Morse8e23dac2015-12-04 11:02:27 +0000256 */
Mark Rutlandc02433d2016-11-03 20:23:13 +0000257 ldr x25, [tsk, TSK_STACK]
258 eor x25, x25, x19
259 and x25, x25, #~(THREAD_SIZE - 1)
260 cbnz x25, 9998f
James Morse8e23dac2015-12-04 11:02:27 +0000261
Mark Rutland1b7e2292016-11-03 20:23:12 +0000262 adr_this_cpu x25, irq_stack, x26
James Morse8e23dac2015-12-04 11:02:27 +0000263 mov x26, #IRQ_STACK_START_SP
264 add x26, x25, x26
James Morsed224a692015-12-18 16:01:47 +0000265
266 /* switch to the irq stack */
James Morse8e23dac2015-12-04 11:02:27 +0000267 mov sp, x26
268
James Morse971c67c2015-12-15 11:21:25 +0000269 /*
270 * Add a dummy stack frame, this non-standard format is fixed up
271 * by unwind_frame()
272 */
273 stp x29, x19, [sp, #-16]!
James Morse8e23dac2015-12-04 11:02:27 +0000274 mov x29, sp
James Morse8e23dac2015-12-04 11:02:27 +0000275
2769998:
277 .endm
278
279 /*
280 * x19 should be preserved between irq_stack_entry and
281 * irq_stack_exit.
282 */
283 .macro irq_stack_exit
284 mov sp, x19
285 .endm
286
Catalin Marinas60ffc302012-03-05 11:49:27 +0000287/*
288 * These are the registers used in the syscall handler, and allow us to
289 * have in theory up to 7 arguments to a function - x0 to x6.
290 *
291 * x7 is reserved for the system call number in 32-bit mode.
292 */
293sc_nr .req x25 // number of system calls
294scno .req x26 // syscall number
295stbl .req x27 // syscall table pointer
296tsk .req x28 // current thread_info
297
298/*
299 * Interrupt handling.
300 */
301 .macro irq_handler
James Morse8e23dac2015-12-04 11:02:27 +0000302 ldr_l x1, handle_arch_irq
Catalin Marinas60ffc302012-03-05 11:49:27 +0000303 mov x0, sp
James Morse971c67c2015-12-15 11:21:25 +0000304 irq_stack_entry
Catalin Marinas60ffc302012-03-05 11:49:27 +0000305 blr x1
James Morse8e23dac2015-12-04 11:02:27 +0000306 irq_stack_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000307 .endm
308
309 .text
310
311/*
312 * Exception vectors.
313 */
Pratyush Anand888b3c82016-07-08 12:35:50 -0400314 .pushsection ".entry.text", "ax"
Catalin Marinas60ffc302012-03-05 11:49:27 +0000315
316 .align 11
317ENTRY(vectors)
318 ventry el1_sync_invalid // Synchronous EL1t
319 ventry el1_irq_invalid // IRQ EL1t
320 ventry el1_fiq_invalid // FIQ EL1t
321 ventry el1_error_invalid // Error EL1t
322
323 ventry el1_sync // Synchronous EL1h
324 ventry el1_irq // IRQ EL1h
325 ventry el1_fiq_invalid // FIQ EL1h
326 ventry el1_error_invalid // Error EL1h
327
328 ventry el0_sync // Synchronous 64-bit EL0
329 ventry el0_irq // IRQ 64-bit EL0
330 ventry el0_fiq_invalid // FIQ 64-bit EL0
331 ventry el0_error_invalid // Error 64-bit EL0
332
333#ifdef CONFIG_COMPAT
334 ventry el0_sync_compat // Synchronous 32-bit EL0
335 ventry el0_irq_compat // IRQ 32-bit EL0
336 ventry el0_fiq_invalid_compat // FIQ 32-bit EL0
337 ventry el0_error_invalid_compat // Error 32-bit EL0
338#else
339 ventry el0_sync_invalid // Synchronous 32-bit EL0
340 ventry el0_irq_invalid // IRQ 32-bit EL0
341 ventry el0_fiq_invalid // FIQ 32-bit EL0
342 ventry el0_error_invalid // Error 32-bit EL0
343#endif
344END(vectors)
345
346/*
347 * Invalid mode handlers
348 */
349 .macro inv_entry, el, reason, regsize = 64
Ard Biesheuvelb6609502016-03-18 10:58:09 +0100350 kernel_entry \el, \regsize
Catalin Marinas60ffc302012-03-05 11:49:27 +0000351 mov x0, sp
352 mov x1, #\reason
353 mrs x2, esr_el1
Mark Rutland2d0e7512017-07-26 11:14:53 +0100354 bl bad_mode
355 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000356 .endm
357
358el0_sync_invalid:
359 inv_entry 0, BAD_SYNC
360ENDPROC(el0_sync_invalid)
361
362el0_irq_invalid:
363 inv_entry 0, BAD_IRQ
364ENDPROC(el0_irq_invalid)
365
366el0_fiq_invalid:
367 inv_entry 0, BAD_FIQ
368ENDPROC(el0_fiq_invalid)
369
370el0_error_invalid:
371 inv_entry 0, BAD_ERROR
372ENDPROC(el0_error_invalid)
373
374#ifdef CONFIG_COMPAT
375el0_fiq_invalid_compat:
376 inv_entry 0, BAD_FIQ, 32
377ENDPROC(el0_fiq_invalid_compat)
378
379el0_error_invalid_compat:
380 inv_entry 0, BAD_ERROR, 32
381ENDPROC(el0_error_invalid_compat)
382#endif
383
384el1_sync_invalid:
385 inv_entry 1, BAD_SYNC
386ENDPROC(el1_sync_invalid)
387
388el1_irq_invalid:
389 inv_entry 1, BAD_IRQ
390ENDPROC(el1_irq_invalid)
391
392el1_fiq_invalid:
393 inv_entry 1, BAD_FIQ
394ENDPROC(el1_fiq_invalid)
395
396el1_error_invalid:
397 inv_entry 1, BAD_ERROR
398ENDPROC(el1_error_invalid)
399
400/*
401 * EL1 mode handlers.
402 */
403 .align 6
404el1_sync:
405 kernel_entry 1
406 mrs x1, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000407 lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class
408 cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000409 b.eq el1_da
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700410 cmp x24, #ESR_ELx_EC_IABT_CUR // instruction abort in EL1
411 b.eq el1_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000412 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Catalin Marinas60ffc302012-03-05 11:49:27 +0000413 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000414 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000415 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000416 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000417 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000418 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000419 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000420 cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000421 b.ge el1_dbg
422 b el1_inv
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700423
424el1_ia:
425 /*
426 * Fall through to the Data abort case
427 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000428el1_da:
429 /*
430 * Data abort handling
431 */
Kristina Martsenko276e9322017-05-03 16:37:47 +0100432 mrs x3, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100433 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000434 // re-enable interrupts if they were enabled in the aborted context
435 tbnz x23, #7, 1f // PSR_I_BIT
436 enable_irq
4371:
Kristina Martsenko276e9322017-05-03 16:37:47 +0100438 clear_address_tag x0, x3
Catalin Marinas60ffc302012-03-05 11:49:27 +0000439 mov x2, sp // struct pt_regs
440 bl do_mem_abort
441
442 // disable interrupts before pulling preserved data off the stack
443 disable_irq
444 kernel_exit 1
445el1_sp_pc:
446 /*
447 * Stack or PC alignment exception handling
448 */
449 mrs x0, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100450 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000451 mov x2, sp
Mark Rutland2d0e7512017-07-26 11:14:53 +0100452 bl do_sp_pc_abort
453 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000454el1_undef:
455 /*
456 * Undefined instruction
457 */
Will Deacon2a283072014-04-29 19:04:06 +0100458 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000459 mov x0, sp
Mark Rutland2d0e7512017-07-26 11:14:53 +0100460 bl do_undefinstr
461 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000462el1_dbg:
463 /*
464 * Debug exception handling
465 */
Mark Rutlandaed40e02014-11-24 12:31:40 +0000466 cmp x24, #ESR_ELx_EC_BRK64 // if BRK64
Sandeepa Prabhuee6214c2013-12-04 05:50:20 +0000467 cinc x24, x24, eq // set bit '0'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000468 tbz x24, #0, el1_inv // EL1 only
469 mrs x0, far_el1
470 mov x2, sp // struct pt_regs
471 bl do_debug_exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000472 kernel_exit 1
473el1_inv:
474 // TODO: add support for undefined instructions in kernel mode
Will Deacon2a283072014-04-29 19:04:06 +0100475 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000476 mov x0, sp
Mark Rutland1b428042015-07-07 18:00:49 +0100477 mov x2, x1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000478 mov x1, #BAD_SYNC
Mark Rutland2d0e7512017-07-26 11:14:53 +0100479 bl bad_mode
480 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000481ENDPROC(el1_sync)
482
483 .align 6
484el1_irq:
485 kernel_entry 1
Will Deacon2a283072014-04-29 19:04:06 +0100486 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000487#ifdef CONFIG_TRACE_IRQFLAGS
488 bl trace_hardirqs_off
489#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000490
491 irq_handler
492
Catalin Marinas60ffc302012-03-05 11:49:27 +0000493#ifdef CONFIG_PREEMPT
Mark Rutlandc02433d2016-11-03 20:23:13 +0000494 ldr w24, [tsk, #TSK_TI_PREEMPT] // get preempt count
Marc Zyngier717321f2013-11-04 20:14:58 +0000495 cbnz w24, 1f // preempt count != 0
Mark Rutlandc02433d2016-11-03 20:23:13 +0000496 ldr x0, [tsk, #TSK_TI_FLAGS] // get flags
Catalin Marinas60ffc302012-03-05 11:49:27 +0000497 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
498 bl el1_preempt
4991:
500#endif
501#ifdef CONFIG_TRACE_IRQFLAGS
502 bl trace_hardirqs_on
503#endif
504 kernel_exit 1
505ENDPROC(el1_irq)
506
507#ifdef CONFIG_PREEMPT
508el1_preempt:
509 mov x24, lr
Will Deacon2a283072014-04-29 19:04:06 +01005101: bl preempt_schedule_irq // irq en/disable is done inside
Mark Rutlandc02433d2016-11-03 20:23:13 +0000511 ldr x0, [tsk, #TSK_TI_FLAGS] // get new tasks TI_FLAGS
Catalin Marinas60ffc302012-03-05 11:49:27 +0000512 tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling?
513 ret x24
514#endif
515
516/*
517 * EL0 mode handlers.
518 */
519 .align 6
520el0_sync:
521 kernel_entry 0
522 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000523 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
524 cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000525 b.eq el0_svc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000526 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000527 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000528 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000529 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000530 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000531 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000532 cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000533 b.eq el0_fpsimd_exc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000534 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100535 b.eq el0_sys
Mark Rutlandaed40e02014-11-24 12:31:40 +0000536 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000537 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000538 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000539 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000540 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000541 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000542 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000543 b.ge el0_dbg
544 b el0_inv
545
546#ifdef CONFIG_COMPAT
547 .align 6
548el0_sync_compat:
549 kernel_entry 0, 32
550 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000551 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
552 cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000553 b.eq el0_svc_compat
Mark Rutlandaed40e02014-11-24 12:31:40 +0000554 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000555 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000556 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000557 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000558 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000559 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000560 cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000561 b.eq el0_fpsimd_exc
Mark Salyzyn77f3228f2015-10-13 14:30:51 -0700562 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
563 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000564 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000565 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000566 cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100567 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000568 cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100569 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000570 cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100571 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000572 cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100573 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000574 cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100575 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000576 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000577 b.ge el0_dbg
578 b el0_inv
579el0_svc_compat:
580 /*
581 * AArch32 syscall handling
582 */
Catalin Marinas01564112015-01-06 16:42:32 +0000583 adrp stbl, compat_sys_call_table // load compat syscall table pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000584 uxtw scno, w7 // syscall number in w7 (r7)
585 mov sc_nr, #__NR_compat_syscalls
586 b el0_svc_naked
587
588 .align 6
589el0_irq_compat:
590 kernel_entry 0, 32
591 b el0_irq_naked
592#endif
593
594el0_da:
595 /*
596 * Data abort handling
597 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100598 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000599 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100600 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700601 ct_user_exit
Kristina Martsenko276e9322017-05-03 16:37:47 +0100602 clear_address_tag x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000603 mov x1, x25
604 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100605 bl do_mem_abort
606 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000607el0_ia:
608 /*
609 * Instruction abort handling
610 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100611 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000612 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100613 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700614 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100615 mov x0, x26
Mark Rutland541ec872016-05-31 12:33:03 +0100616 mov x1, x25
Catalin Marinas60ffc302012-03-05 11:49:27 +0000617 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100618 bl do_mem_abort
619 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000620el0_fpsimd_acc:
621 /*
622 * Floating Point or Advanced SIMD access
623 */
Will Deacon2a283072014-04-29 19:04:06 +0100624 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700625 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000626 mov x0, x25
627 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100628 bl do_fpsimd_acc
629 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000630el0_fpsimd_exc:
631 /*
632 * Floating Point or Advanced SIMD exception
633 */
Will Deacon2a283072014-04-29 19:04:06 +0100634 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700635 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000636 mov x0, x25
637 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100638 bl do_fpsimd_exc
639 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000640el0_sp_pc:
641 /*
642 * Stack or PC alignment exception handling
643 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100644 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000645 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100646 enable_dbg_and_irq
Mark Rutland46b05672015-06-15 16:40:27 +0100647 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100648 mov x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000649 mov x1, x25
650 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100651 bl do_sp_pc_abort
652 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000653el0_undef:
654 /*
655 * Undefined instruction
656 */
Catalin Marinas2600e132013-08-22 11:47:37 +0100657 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100658 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700659 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100660 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100661 bl do_undefinstr
662 b ret_to_user
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100663el0_sys:
664 /*
665 * System instructions, for trapped cache maintenance instructions
666 */
667 enable_dbg_and_irq
668 ct_user_exit
669 mov x0, x25
670 mov x1, sp
671 bl do_sysinstr
672 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000673el0_dbg:
674 /*
675 * Debug exception handling
676 */
677 tbnz x24, #0, el0_inv // EL0 only
678 mrs x0, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000679 mov x1, x25
680 mov x2, sp
Will Deacon2a283072014-04-29 19:04:06 +0100681 bl do_debug_exception
682 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700683 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100684 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000685el0_inv:
Will Deacon2a283072014-04-29 19:04:06 +0100686 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700687 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000688 mov x0, sp
689 mov x1, #BAD_SYNC
Mark Rutland1b428042015-07-07 18:00:49 +0100690 mov x2, x25
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000691 bl bad_el0_sync
Will Deacond54e81f2014-09-29 11:44:01 +0100692 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000693ENDPROC(el0_sync)
694
695 .align 6
696el0_irq:
697 kernel_entry 0
698el0_irq_naked:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000699 enable_dbg
700#ifdef CONFIG_TRACE_IRQFLAGS
701 bl trace_hardirqs_off
702#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000703
Larry Bassel6c81fe72014-05-30 12:34:15 -0700704 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000705 irq_handler
Marc Zyngier64681782013-11-12 17:11:53 +0000706
Catalin Marinas60ffc302012-03-05 11:49:27 +0000707#ifdef CONFIG_TRACE_IRQFLAGS
708 bl trace_hardirqs_on
709#endif
710 b ret_to_user
711ENDPROC(el0_irq)
712
713/*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000714 * Register switch for AArch64. The callee-saved registers need to be saved
715 * and restored. On entry:
716 * x0 = previous task_struct (must be preserved across the switch)
717 * x1 = next task_struct
718 * Previous and next are guaranteed not to be the same.
719 *
720 */
721ENTRY(cpu_switch_to)
Will Deaconc0d3fce2015-07-20 15:14:53 +0100722 mov x10, #THREAD_CPU_CONTEXT
723 add x8, x0, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000724 mov x9, sp
725 stp x19, x20, [x8], #16 // store callee-saved registers
726 stp x21, x22, [x8], #16
727 stp x23, x24, [x8], #16
728 stp x25, x26, [x8], #16
729 stp x27, x28, [x8], #16
730 stp x29, x9, [x8], #16
731 str lr, [x8]
Will Deaconc0d3fce2015-07-20 15:14:53 +0100732 add x8, x1, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000733 ldp x19, x20, [x8], #16 // restore callee-saved registers
734 ldp x21, x22, [x8], #16
735 ldp x23, x24, [x8], #16
736 ldp x25, x26, [x8], #16
737 ldp x27, x28, [x8], #16
738 ldp x29, x9, [x8], #16
739 ldr lr, [x8]
740 mov sp, x9
Mark Rutlandc02433d2016-11-03 20:23:13 +0000741 msr sp_el0, x1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000742 ret
743ENDPROC(cpu_switch_to)
744
745/*
746 * This is the fast syscall return path. We do as little as possible here,
747 * and this includes saving x0 back into the kernel stack.
748 */
749ret_fast_syscall:
750 disable_irq // disable interrupts
Will Deacon412fcb62015-08-19 15:57:09 +0100751 str x0, [sp, #S_X0] // returned x0
Mark Rutlandc02433d2016-11-03 20:23:13 +0000752 ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for syscall tracing
Josh Stone04d7e092015-06-05 14:28:03 -0700753 and x2, x1, #_TIF_SYSCALL_WORK
754 cbnz x2, ret_fast_syscall_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000755 and x2, x1, #_TIF_WORK_MASK
Will Deacon412fcb62015-08-19 15:57:09 +0100756 cbnz x2, work_pending
Will Deacon2a283072014-04-29 19:04:06 +0100757 enable_step_tsk x1, x2
Will Deacon412fcb62015-08-19 15:57:09 +0100758 kernel_exit 0
Josh Stone04d7e092015-06-05 14:28:03 -0700759ret_fast_syscall_trace:
760 enable_irq // enable interrupts
Will Deacon412fcb62015-08-19 15:57:09 +0100761 b __sys_trace_return_skipped // we already saved x0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000762
763/*
764 * Ok, we need to do extra processing, enter the slow path.
765 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000766work_pending:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000767 mov x0, sp // 'regs'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000768 bl do_notify_resume
Catalin Marinasdb3899a2015-12-04 12:42:29 +0000769#ifdef CONFIG_TRACE_IRQFLAGS
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400770 bl trace_hardirqs_on // enabled while in userspace
Catalin Marinasdb3899a2015-12-04 12:42:29 +0000771#endif
Mark Rutlandc02433d2016-11-03 20:23:13 +0000772 ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for single-step
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400773 b finish_ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000774/*
775 * "slow" syscall return path.
776 */
Catalin Marinas59dc67b2012-09-10 16:11:46 +0100777ret_to_user:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000778 disable_irq // disable interrupts
Mark Rutlandc02433d2016-11-03 20:23:13 +0000779 ldr x1, [tsk, #TSK_TI_FLAGS]
Catalin Marinas60ffc302012-03-05 11:49:27 +0000780 and x2, x1, #_TIF_WORK_MASK
781 cbnz x2, work_pending
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400782finish_ret_to_user:
Will Deacon2a283072014-04-29 19:04:06 +0100783 enable_step_tsk x1, x2
Will Deacon412fcb62015-08-19 15:57:09 +0100784 kernel_exit 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000785ENDPROC(ret_to_user)
786
787/*
788 * This is how we return from a fork.
789 */
790ENTRY(ret_from_fork)
791 bl schedule_tail
Catalin Marinasc34501d2012-10-05 12:31:20 +0100792 cbz x19, 1f // not a kernel thread
793 mov x0, x20
794 blr x19
7951: get_thread_info tsk
Catalin Marinas60ffc302012-03-05 11:49:27 +0000796 b ret_to_user
797ENDPROC(ret_from_fork)
798
799/*
800 * SVC handler.
801 */
802 .align 6
803el0_svc:
804 adrp stbl, sys_call_table // load syscall table pointer
805 uxtw scno, w8 // syscall number in w8
806 mov sc_nr, #__NR_syscalls
807el0_svc_naked: // compat entry point
808 stp x0, scno, [sp, #S_ORIG_X0] // save the original x0 and syscall number
Will Deacon2a283072014-04-29 19:04:06 +0100809 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700810 ct_user_exit 1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000811
Mark Rutlandc02433d2016-11-03 20:23:13 +0000812 ldr x16, [tsk, #TSK_TI_FLAGS] // check for syscall hooks
AKASHI Takahiro449f81a2014-04-30 10:51:29 +0100813 tst x16, #_TIF_SYSCALL_WORK
814 b.ne __sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000815 cmp scno, sc_nr // check upper syscall limit
816 b.hs ni_sys
817 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100818 blr x16 // call sys_* routine
819 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000820ni_sys:
821 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100822 bl do_ni_syscall
823 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000824ENDPROC(el0_svc)
825
826 /*
827 * This is the really slow path. We're going to be doing context
828 * switches, and waiting for our parent to respond.
829 */
830__sys_trace:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000831 mov w0, #-1 // set default errno for
832 cmp scno, x0 // user-issued syscall(-1)
833 b.ne 1f
834 mov x0, #-ENOSYS
835 str x0, [sp, #S_X0]
8361: mov x0, sp
AKASHI Takahiro3157858f2014-04-30 10:51:30 +0100837 bl syscall_trace_enter
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000838 cmp w0, #-1 // skip the syscall?
839 b.eq __sys_trace_return_skipped
Catalin Marinas60ffc302012-03-05 11:49:27 +0000840 uxtw scno, w0 // syscall number (possibly new)
841 mov x1, sp // pointer to regs
842 cmp scno, sc_nr // check upper syscall limit
Will Deacond54e81f2014-09-29 11:44:01 +0100843 b.hs __ni_sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000844 ldp x0, x1, [sp] // restore the syscall args
845 ldp x2, x3, [sp, #S_X2]
846 ldp x4, x5, [sp, #S_X4]
847 ldp x6, x7, [sp, #S_X6]
848 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100849 blr x16 // call sys_* routine
Catalin Marinas60ffc302012-03-05 11:49:27 +0000850
851__sys_trace_return:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000852 str x0, [sp, #S_X0] // save returned x0
853__sys_trace_return_skipped:
AKASHI Takahiro3157858f2014-04-30 10:51:30 +0100854 mov x0, sp
855 bl syscall_trace_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000856 b ret_to_user
857
Will Deacond54e81f2014-09-29 11:44:01 +0100858__ni_sys_trace:
859 mov x0, sp
860 bl do_ni_syscall
861 b __sys_trace_return
862
Pratyush Anand888b3c82016-07-08 12:35:50 -0400863 .popsection // .entry.text
864
Catalin Marinas60ffc302012-03-05 11:49:27 +0000865/*
866 * Special system call wrappers.
867 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000868ENTRY(sys_rt_sigreturn_wrapper)
869 mov x0, sp
870 b sys_rt_sigreturn
871ENDPROC(sys_rt_sigreturn_wrapper)