]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/arm64/kernel/entry.S
arm64: Clear out any singlestep state on a ptrace detach operation
[mirror_ubuntu-bionic-kernel.git] / arch / arm64 / kernel / entry.S
CommitLineData
60ffc30d
CM
1/*
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
8d883b23 24#include <asm/alternative.h>
60ffc30d
CM
25#include <asm/assembler.h>
26#include <asm/asm-offsets.h>
905e8c5d 27#include <asm/cpufeature.h>
60ffc30d 28#include <asm/errno.h>
5c1ce6f7 29#include <asm/esr.h>
60ffc30d
CM
30#include <asm/thread_info.h>
31#include <asm/unistd.h>
32
6c81fe79
LB
33/*
34 * Context tracking subsystem. Used to instrument transitions
35 * between user and kernel mode.
36 */
37 .macro ct_user_exit, syscall = 0
38#ifdef CONFIG_CONTEXT_TRACKING
39 bl context_tracking_user_exit
40 .if \syscall == 1
41 /*
42 * Save/restore needed during syscalls. Restore syscall arguments from
43 * the values already saved on stack during kernel_entry.
44 */
45 ldp x0, x1, [sp]
46 ldp x2, x3, [sp, #S_X2]
47 ldp x4, x5, [sp, #S_X4]
48 ldp x6, x7, [sp, #S_X6]
49 .endif
50#endif
51 .endm
52
53 .macro ct_user_enter
54#ifdef CONFIG_CONTEXT_TRACKING
55 bl context_tracking_user_enter
56#endif
57 .endm
58
60ffc30d
CM
59/*
60 * Bad Abort numbers
61 *-----------------
62 */
63#define BAD_SYNC 0
64#define BAD_IRQ 1
65#define BAD_FIQ 2
66#define BAD_ERROR 3
67
68 .macro kernel_entry, el, regsize = 64
63648dd2 69 sub sp, sp, #S_FRAME_SIZE
60ffc30d
CM
70 .if \regsize == 32
71 mov w0, w0 // zero upper 32 bits of x0
72 .endif
63648dd2
WD
73 stp x0, x1, [sp, #16 * 0]
74 stp x2, x3, [sp, #16 * 1]
75 stp x4, x5, [sp, #16 * 2]
76 stp x6, x7, [sp, #16 * 3]
77 stp x8, x9, [sp, #16 * 4]
78 stp x10, x11, [sp, #16 * 5]
79 stp x12, x13, [sp, #16 * 6]
80 stp x14, x15, [sp, #16 * 7]
81 stp x16, x17, [sp, #16 * 8]
82 stp x18, x19, [sp, #16 * 9]
83 stp x20, x21, [sp, #16 * 10]
84 stp x22, x23, [sp, #16 * 11]
85 stp x24, x25, [sp, #16 * 12]
86 stp x26, x27, [sp, #16 * 13]
87 stp x28, x29, [sp, #16 * 14]
88
60ffc30d
CM
89 .if \el == 0
90 mrs x21, sp_el0
2a283070
WD
91 get_thread_info tsk // Ensure MDSCR_EL1.SS is clear,
92 ldr x19, [tsk, #TI_FLAGS] // since we can unmask debug
93 disable_step_tsk x19, x20 // exceptions when scheduling.
60ffc30d
CM
94 .else
95 add x21, sp, #S_FRAME_SIZE
96 .endif
97 mrs x22, elr_el1
98 mrs x23, spsr_el1
99 stp lr, x21, [sp, #S_LR]
100 stp x22, x23, [sp, #S_PC]
101
102 /*
103 * Set syscallno to -1 by default (overridden later if real syscall).
104 */
105 .if \el == 0
106 mvn x21, xzr
107 str x21, [sp, #S_SYSCALLNO]
108 .endif
109
110 /*
111 * Registers that may be useful after this macro is invoked:
112 *
113 * x21 - aborted SP
114 * x22 - aborted PC
115 * x23 - aborted PSTATE
116 */
117 .endm
118
412fcb6c 119 .macro kernel_exit, el
60ffc30d
CM
120 ldp x21, x22, [sp, #S_PC] // load ELR, SPSR
121 .if \el == 0
6c81fe79 122 ct_user_enter
60ffc30d 123 ldr x23, [sp, #S_SP] // load return stack pointer
63648dd2 124 msr sp_el0, x23
905e8c5d 125#ifdef CONFIG_ARM64_ERRATUM_845719
e28cabf1
DT
126alternative_if_not ARM64_WORKAROUND_845719
127 nop
128 nop
905e8c5d 129#ifdef CONFIG_PID_IN_CONTEXTIDR
e28cabf1
DT
130 nop
131#endif
132alternative_else
133 tbz x22, #4, 1f
134#ifdef CONFIG_PID_IN_CONTEXTIDR
135 mrs x29, contextidr_el1
136 msr contextidr_el1, x29
905e8c5d 137#else
e28cabf1 138 msr contextidr_el1, xzr
905e8c5d 139#endif
e28cabf1
DT
1401:
141alternative_endif
905e8c5d 142#endif
60ffc30d 143 .endif
63648dd2
WD
144 msr elr_el1, x21 // set up the return data
145 msr spsr_el1, x22
63648dd2 146 ldp x0, x1, [sp, #16 * 0]
63648dd2
WD
147 ldp x2, x3, [sp, #16 * 1]
148 ldp x4, x5, [sp, #16 * 2]
149 ldp x6, x7, [sp, #16 * 3]
150 ldp x8, x9, [sp, #16 * 4]
151 ldp x10, x11, [sp, #16 * 5]
152 ldp x12, x13, [sp, #16 * 6]
153 ldp x14, x15, [sp, #16 * 7]
154 ldp x16, x17, [sp, #16 * 8]
155 ldp x18, x19, [sp, #16 * 9]
156 ldp x20, x21, [sp, #16 * 10]
157 ldp x22, x23, [sp, #16 * 11]
158 ldp x24, x25, [sp, #16 * 12]
159 ldp x26, x27, [sp, #16 * 13]
160 ldp x28, x29, [sp, #16 * 14]
161 ldr lr, [sp, #S_LR]
162 add sp, sp, #S_FRAME_SIZE // restore sp
60ffc30d
CM
163 eret // return to kernel
164 .endm
165
166 .macro get_thread_info, rd
167 mov \rd, sp
845ad05e 168 and \rd, \rd, #~(THREAD_SIZE - 1) // top of stack
60ffc30d
CM
169 .endm
170
171/*
172 * These are the registers used in the syscall handler, and allow us to
173 * have in theory up to 7 arguments to a function - x0 to x6.
174 *
175 * x7 is reserved for the system call number in 32-bit mode.
176 */
177sc_nr .req x25 // number of system calls
178scno .req x26 // syscall number
179stbl .req x27 // syscall table pointer
180tsk .req x28 // current thread_info
181
182/*
183 * Interrupt handling.
184 */
185 .macro irq_handler
fcff5886
LA
186 adrp x1, handle_arch_irq
187 ldr x1, [x1, #:lo12:handle_arch_irq]
60ffc30d
CM
188 mov x0, sp
189 blr x1
190 .endm
191
192 .text
193
194/*
195 * Exception vectors.
196 */
60ffc30d
CM
197
198 .align 11
199ENTRY(vectors)
200 ventry el1_sync_invalid // Synchronous EL1t
201 ventry el1_irq_invalid // IRQ EL1t
202 ventry el1_fiq_invalid // FIQ EL1t
203 ventry el1_error_invalid // Error EL1t
204
205 ventry el1_sync // Synchronous EL1h
206 ventry el1_irq // IRQ EL1h
207 ventry el1_fiq_invalid // FIQ EL1h
208 ventry el1_error_invalid // Error EL1h
209
210 ventry el0_sync // Synchronous 64-bit EL0
211 ventry el0_irq // IRQ 64-bit EL0
212 ventry el0_fiq_invalid // FIQ 64-bit EL0
213 ventry el0_error_invalid // Error 64-bit EL0
214
215#ifdef CONFIG_COMPAT
216 ventry el0_sync_compat // Synchronous 32-bit EL0
217 ventry el0_irq_compat // IRQ 32-bit EL0
218 ventry el0_fiq_invalid_compat // FIQ 32-bit EL0
219 ventry el0_error_invalid_compat // Error 32-bit EL0
220#else
221 ventry el0_sync_invalid // Synchronous 32-bit EL0
222 ventry el0_irq_invalid // IRQ 32-bit EL0
223 ventry el0_fiq_invalid // FIQ 32-bit EL0
224 ventry el0_error_invalid // Error 32-bit EL0
225#endif
226END(vectors)
227
228/*
229 * Invalid mode handlers
230 */
231 .macro inv_entry, el, reason, regsize = 64
232 kernel_entry el, \regsize
233 mov x0, sp
234 mov x1, #\reason
235 mrs x2, esr_el1
236 b bad_mode
237 .endm
238
239el0_sync_invalid:
240 inv_entry 0, BAD_SYNC
241ENDPROC(el0_sync_invalid)
242
243el0_irq_invalid:
244 inv_entry 0, BAD_IRQ
245ENDPROC(el0_irq_invalid)
246
247el0_fiq_invalid:
248 inv_entry 0, BAD_FIQ
249ENDPROC(el0_fiq_invalid)
250
251el0_error_invalid:
252 inv_entry 0, BAD_ERROR
253ENDPROC(el0_error_invalid)
254
255#ifdef CONFIG_COMPAT
256el0_fiq_invalid_compat:
257 inv_entry 0, BAD_FIQ, 32
258ENDPROC(el0_fiq_invalid_compat)
259
260el0_error_invalid_compat:
261 inv_entry 0, BAD_ERROR, 32
262ENDPROC(el0_error_invalid_compat)
263#endif
264
265el1_sync_invalid:
266 inv_entry 1, BAD_SYNC
267ENDPROC(el1_sync_invalid)
268
269el1_irq_invalid:
270 inv_entry 1, BAD_IRQ
271ENDPROC(el1_irq_invalid)
272
273el1_fiq_invalid:
274 inv_entry 1, BAD_FIQ
275ENDPROC(el1_fiq_invalid)
276
277el1_error_invalid:
278 inv_entry 1, BAD_ERROR
279ENDPROC(el1_error_invalid)
280
281/*
282 * EL1 mode handlers.
283 */
284 .align 6
285el1_sync:
286 kernel_entry 1
287 mrs x1, esr_el1 // read the syndrome register
aed40e01
MR
288 lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class
289 cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1
60ffc30d 290 b.eq el1_da
aed40e01 291 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
60ffc30d 292 b.eq el1_undef
aed40e01 293 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
60ffc30d 294 b.eq el1_sp_pc
aed40e01 295 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
60ffc30d 296 b.eq el1_sp_pc
aed40e01 297 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1
60ffc30d 298 b.eq el1_undef
aed40e01 299 cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1
60ffc30d
CM
300 b.ge el1_dbg
301 b el1_inv
302el1_da:
303 /*
304 * Data abort handling
305 */
306 mrs x0, far_el1
2a283070 307 enable_dbg
60ffc30d
CM
308 // re-enable interrupts if they were enabled in the aborted context
309 tbnz x23, #7, 1f // PSR_I_BIT
310 enable_irq
3111:
312 mov x2, sp // struct pt_regs
313 bl do_mem_abort
314
315 // disable interrupts before pulling preserved data off the stack
316 disable_irq
317 kernel_exit 1
318el1_sp_pc:
319 /*
320 * Stack or PC alignment exception handling
321 */
322 mrs x0, far_el1
2a283070 323 enable_dbg
60ffc30d
CM
324 mov x2, sp
325 b do_sp_pc_abort
326el1_undef:
327 /*
328 * Undefined instruction
329 */
2a283070 330 enable_dbg
60ffc30d
CM
331 mov x0, sp
332 b do_undefinstr
333el1_dbg:
334 /*
335 * Debug exception handling
336 */
aed40e01 337 cmp x24, #ESR_ELx_EC_BRK64 // if BRK64
ee6214ce 338 cinc x24, x24, eq // set bit '0'
60ffc30d
CM
339 tbz x24, #0, el1_inv // EL1 only
340 mrs x0, far_el1
341 mov x2, sp // struct pt_regs
342 bl do_debug_exception
60ffc30d
CM
343 kernel_exit 1
344el1_inv:
345 // TODO: add support for undefined instructions in kernel mode
2a283070 346 enable_dbg
60ffc30d 347 mov x0, sp
1b42804d 348 mov x2, x1
60ffc30d 349 mov x1, #BAD_SYNC
60ffc30d
CM
350 b bad_mode
351ENDPROC(el1_sync)
352
353 .align 6
354el1_irq:
355 kernel_entry 1
2a283070 356 enable_dbg
60ffc30d
CM
357#ifdef CONFIG_TRACE_IRQFLAGS
358 bl trace_hardirqs_off
359#endif
64681787 360
60ffc30d 361 irq_handler
64681787 362
60ffc30d 363#ifdef CONFIG_PREEMPT
64681787 364 get_thread_info tsk
883c0573 365 ldr w24, [tsk, #TI_PREEMPT] // get preempt count
717321fc 366 cbnz w24, 1f // preempt count != 0
60ffc30d
CM
367 ldr x0, [tsk, #TI_FLAGS] // get flags
368 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
369 bl el1_preempt
3701:
371#endif
372#ifdef CONFIG_TRACE_IRQFLAGS
373 bl trace_hardirqs_on
374#endif
375 kernel_exit 1
376ENDPROC(el1_irq)
377
378#ifdef CONFIG_PREEMPT
379el1_preempt:
380 mov x24, lr
2a283070 3811: bl preempt_schedule_irq // irq en/disable is done inside
60ffc30d
CM
382 ldr x0, [tsk, #TI_FLAGS] // get new tasks TI_FLAGS
383 tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling?
384 ret x24
385#endif
386
387/*
388 * EL0 mode handlers.
389 */
390 .align 6
391el0_sync:
392 kernel_entry 0
393 mrs x25, esr_el1 // read the syndrome register
aed40e01
MR
394 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
395 cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state
60ffc30d 396 b.eq el0_svc
aed40e01 397 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
60ffc30d 398 b.eq el0_da
aed40e01 399 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
60ffc30d 400 b.eq el0_ia
aed40e01 401 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
60ffc30d 402 b.eq el0_fpsimd_acc
aed40e01 403 cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception
60ffc30d 404 b.eq el0_fpsimd_exc
aed40e01 405 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
60ffc30d 406 b.eq el0_undef
aed40e01 407 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
60ffc30d 408 b.eq el0_sp_pc
aed40e01 409 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
60ffc30d 410 b.eq el0_sp_pc
aed40e01 411 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
60ffc30d 412 b.eq el0_undef
aed40e01 413 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
60ffc30d
CM
414 b.ge el0_dbg
415 b el0_inv
416
417#ifdef CONFIG_COMPAT
418 .align 6
419el0_sync_compat:
420 kernel_entry 0, 32
421 mrs x25, esr_el1 // read the syndrome register
aed40e01
MR
422 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
423 cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state
60ffc30d 424 b.eq el0_svc_compat
aed40e01 425 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
60ffc30d 426 b.eq el0_da
aed40e01 427 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
60ffc30d 428 b.eq el0_ia
aed40e01 429 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
60ffc30d 430 b.eq el0_fpsimd_acc
aed40e01 431 cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception
60ffc30d 432 b.eq el0_fpsimd_exc
77f3228f
MS
433 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
434 b.eq el0_sp_pc
aed40e01 435 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
60ffc30d 436 b.eq el0_undef
aed40e01 437 cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap
381cc2b9 438 b.eq el0_undef
aed40e01 439 cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap
381cc2b9 440 b.eq el0_undef
aed40e01 441 cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap
381cc2b9 442 b.eq el0_undef
aed40e01 443 cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap
381cc2b9 444 b.eq el0_undef
aed40e01 445 cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap
381cc2b9 446 b.eq el0_undef
aed40e01 447 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
60ffc30d
CM
448 b.ge el0_dbg
449 b el0_inv
450el0_svc_compat:
451 /*
452 * AArch32 syscall handling
453 */
0156411b 454 adrp stbl, compat_sys_call_table // load compat syscall table pointer
60ffc30d
CM
455 uxtw scno, w7 // syscall number in w7 (r7)
456 mov sc_nr, #__NR_compat_syscalls
457 b el0_svc_naked
458
459 .align 6
460el0_irq_compat:
461 kernel_entry 0, 32
462 b el0_irq_naked
463#endif
464
465el0_da:
466 /*
467 * Data abort handling
468 */
6ab6463a 469 mrs x26, far_el1
60ffc30d 470 // enable interrupts before calling the main handler
2a283070 471 enable_dbg_and_irq
6c81fe79 472 ct_user_exit
6ab6463a 473 bic x0, x26, #(0xff << 56)
60ffc30d
CM
474 mov x1, x25
475 mov x2, sp
d54e81f9
WD
476 bl do_mem_abort
477 b ret_to_user
60ffc30d
CM
478el0_ia:
479 /*
480 * Instruction abort handling
481 */
6ab6463a 482 mrs x26, far_el1
60ffc30d 483 // enable interrupts before calling the main handler
2a283070 484 enable_dbg_and_irq
6c81fe79 485 ct_user_exit
6ab6463a 486 mov x0, x26
60ffc30d
CM
487 orr x1, x25, #1 << 24 // use reserved ISS bit for instruction aborts
488 mov x2, sp
d54e81f9
WD
489 bl do_mem_abort
490 b ret_to_user
60ffc30d
CM
491el0_fpsimd_acc:
492 /*
493 * Floating Point or Advanced SIMD access
494 */
2a283070 495 enable_dbg
6c81fe79 496 ct_user_exit
60ffc30d
CM
497 mov x0, x25
498 mov x1, sp
d54e81f9
WD
499 bl do_fpsimd_acc
500 b ret_to_user
60ffc30d
CM
501el0_fpsimd_exc:
502 /*
503 * Floating Point or Advanced SIMD exception
504 */
2a283070 505 enable_dbg
6c81fe79 506 ct_user_exit
60ffc30d
CM
507 mov x0, x25
508 mov x1, sp
d54e81f9
WD
509 bl do_fpsimd_exc
510 b ret_to_user
60ffc30d
CM
511el0_sp_pc:
512 /*
513 * Stack or PC alignment exception handling
514 */
6ab6463a 515 mrs x26, far_el1
60ffc30d 516 // enable interrupts before calling the main handler
2a283070 517 enable_dbg_and_irq
46b0567c 518 ct_user_exit
6ab6463a 519 mov x0, x26
60ffc30d
CM
520 mov x1, x25
521 mov x2, sp
d54e81f9
WD
522 bl do_sp_pc_abort
523 b ret_to_user
60ffc30d
CM
524el0_undef:
525 /*
526 * Undefined instruction
527 */
2600e130 528 // enable interrupts before calling the main handler
2a283070 529 enable_dbg_and_irq
6c81fe79 530 ct_user_exit
2a283070 531 mov x0, sp
d54e81f9
WD
532 bl do_undefinstr
533 b ret_to_user
60ffc30d
CM
534el0_dbg:
535 /*
536 * Debug exception handling
537 */
538 tbnz x24, #0, el0_inv // EL0 only
539 mrs x0, far_el1
60ffc30d
CM
540 mov x1, x25
541 mov x2, sp
2a283070
WD
542 bl do_debug_exception
543 enable_dbg
6c81fe79 544 ct_user_exit
2a283070 545 b ret_to_user
60ffc30d 546el0_inv:
2a283070 547 enable_dbg
6c81fe79 548 ct_user_exit
60ffc30d
CM
549 mov x0, sp
550 mov x1, #BAD_SYNC
1b42804d 551 mov x2, x25
d54e81f9
WD
552 bl bad_mode
553 b ret_to_user
60ffc30d
CM
554ENDPROC(el0_sync)
555
556 .align 6
557el0_irq:
558 kernel_entry 0
559el0_irq_naked:
60ffc30d
CM
560 enable_dbg
561#ifdef CONFIG_TRACE_IRQFLAGS
562 bl trace_hardirqs_off
563#endif
64681787 564
6c81fe79 565 ct_user_exit
60ffc30d 566 irq_handler
64681787 567
60ffc30d
CM
568#ifdef CONFIG_TRACE_IRQFLAGS
569 bl trace_hardirqs_on
570#endif
571 b ret_to_user
572ENDPROC(el0_irq)
573
60ffc30d
CM
574/*
575 * Register switch for AArch64. The callee-saved registers need to be saved
576 * and restored. On entry:
577 * x0 = previous task_struct (must be preserved across the switch)
578 * x1 = next task_struct
579 * Previous and next are guaranteed not to be the same.
580 *
581 */
582ENTRY(cpu_switch_to)
c0d3fce5
WD
583 mov x10, #THREAD_CPU_CONTEXT
584 add x8, x0, x10
60ffc30d
CM
585 mov x9, sp
586 stp x19, x20, [x8], #16 // store callee-saved registers
587 stp x21, x22, [x8], #16
588 stp x23, x24, [x8], #16
589 stp x25, x26, [x8], #16
590 stp x27, x28, [x8], #16
591 stp x29, x9, [x8], #16
592 str lr, [x8]
c0d3fce5 593 add x8, x1, x10
60ffc30d
CM
594 ldp x19, x20, [x8], #16 // restore callee-saved registers
595 ldp x21, x22, [x8], #16
596 ldp x23, x24, [x8], #16
597 ldp x25, x26, [x8], #16
598 ldp x27, x28, [x8], #16
599 ldp x29, x9, [x8], #16
600 ldr lr, [x8]
601 mov sp, x9
602 ret
603ENDPROC(cpu_switch_to)
604
605/*
606 * This is the fast syscall return path. We do as little as possible here,
607 * and this includes saving x0 back into the kernel stack.
608 */
609ret_fast_syscall:
610 disable_irq // disable interrupts
412fcb6c 611 str x0, [sp, #S_X0] // returned x0
04d7e098
JS
612 ldr x1, [tsk, #TI_FLAGS] // re-check for syscall tracing
613 and x2, x1, #_TIF_SYSCALL_WORK
614 cbnz x2, ret_fast_syscall_trace
60ffc30d 615 and x2, x1, #_TIF_WORK_MASK
412fcb6c 616 cbnz x2, work_pending
2a283070 617 enable_step_tsk x1, x2
412fcb6c 618 kernel_exit 0
04d7e098
JS
619ret_fast_syscall_trace:
620 enable_irq // enable interrupts
412fcb6c 621 b __sys_trace_return_skipped // we already saved x0
60ffc30d
CM
622
623/*
624 * Ok, we need to do extra processing, enter the slow path.
625 */
60ffc30d
CM
626work_pending:
627 tbnz x1, #TIF_NEED_RESCHED, work_resched
005f78cd 628 /* TIF_SIGPENDING, TIF_NOTIFY_RESUME or TIF_FOREIGN_FPSTATE case */
60ffc30d
CM
629 ldr x2, [sp, #S_PSTATE]
630 mov x0, sp // 'regs'
631 tst x2, #PSR_MODE_MASK // user mode regs?
632 b.ne no_work_pending // returning to kernel
6916fd08 633 enable_irq // enable interrupts for do_notify_resume()
60ffc30d
CM
634 bl do_notify_resume
635 b ret_to_user
636work_resched:
db3899a6
CM
637#ifdef CONFIG_TRACE_IRQFLAGS
638 bl trace_hardirqs_off // the IRQs are off here, inform the tracing code
639#endif
60ffc30d
CM
640 bl schedule
641
642/*
643 * "slow" syscall return path.
644 */
59dc67b0 645ret_to_user:
60ffc30d
CM
646 disable_irq // disable interrupts
647 ldr x1, [tsk, #TI_FLAGS]
648 and x2, x1, #_TIF_WORK_MASK
649 cbnz x2, work_pending
2a283070 650 enable_step_tsk x1, x2
60ffc30d 651no_work_pending:
412fcb6c 652 kernel_exit 0
60ffc30d
CM
653ENDPROC(ret_to_user)
654
655/*
656 * This is how we return from a fork.
657 */
658ENTRY(ret_from_fork)
659 bl schedule_tail
c34501d2
CM
660 cbz x19, 1f // not a kernel thread
661 mov x0, x20
662 blr x19
6631: get_thread_info tsk
60ffc30d
CM
664 b ret_to_user
665ENDPROC(ret_from_fork)
666
667/*
668 * SVC handler.
669 */
670 .align 6
671el0_svc:
672 adrp stbl, sys_call_table // load syscall table pointer
673 uxtw scno, w8 // syscall number in w8
674 mov sc_nr, #__NR_syscalls
675el0_svc_naked: // compat entry point
676 stp x0, scno, [sp, #S_ORIG_X0] // save the original x0 and syscall number
2a283070 677 enable_dbg_and_irq
6c81fe79 678 ct_user_exit 1
60ffc30d 679
449f81a4
AT
680 ldr x16, [tsk, #TI_FLAGS] // check for syscall hooks
681 tst x16, #_TIF_SYSCALL_WORK
682 b.ne __sys_trace
60ffc30d
CM
683 cmp scno, sc_nr // check upper syscall limit
684 b.hs ni_sys
685 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
d54e81f9
WD
686 blr x16 // call sys_* routine
687 b ret_fast_syscall
60ffc30d
CM
688ni_sys:
689 mov x0, sp
d54e81f9
WD
690 bl do_ni_syscall
691 b ret_fast_syscall
60ffc30d
CM
692ENDPROC(el0_svc)
693
694 /*
695 * This is the really slow path. We're going to be doing context
696 * switches, and waiting for our parent to respond.
697 */
698__sys_trace:
1014c81d
AT
699 mov w0, #-1 // set default errno for
700 cmp scno, x0 // user-issued syscall(-1)
701 b.ne 1f
702 mov x0, #-ENOSYS
703 str x0, [sp, #S_X0]
7041: mov x0, sp
3157858f 705 bl syscall_trace_enter
1014c81d
AT
706 cmp w0, #-1 // skip the syscall?
707 b.eq __sys_trace_return_skipped
60ffc30d
CM
708 uxtw scno, w0 // syscall number (possibly new)
709 mov x1, sp // pointer to regs
710 cmp scno, sc_nr // check upper syscall limit
d54e81f9 711 b.hs __ni_sys_trace
60ffc30d
CM
712 ldp x0, x1, [sp] // restore the syscall args
713 ldp x2, x3, [sp, #S_X2]
714 ldp x4, x5, [sp, #S_X4]
715 ldp x6, x7, [sp, #S_X6]
716 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
d54e81f9 717 blr x16 // call sys_* routine
60ffc30d
CM
718
719__sys_trace_return:
1014c81d
AT
720 str x0, [sp, #S_X0] // save returned x0
721__sys_trace_return_skipped:
3157858f
AT
722 mov x0, sp
723 bl syscall_trace_exit
60ffc30d
CM
724 b ret_to_user
725
d54e81f9
WD
726__ni_sys_trace:
727 mov x0, sp
728 bl do_ni_syscall
729 b __sys_trace_return
730
60ffc30d
CM
731/*
732 * Special system call wrappers.
733 */
60ffc30d
CM
734ENTRY(sys_rt_sigreturn_wrapper)
735 mov x0, sp
736 b sys_rt_sigreturn
737ENDPROC(sys_rt_sigreturn_wrapper)