]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - arch/arm64/kernel/entry.S
3ef6e2297fb4048c22ea99df37d42d9599b2b009
[mirror_ubuntu-artful-kernel.git] / arch / arm64 / kernel / entry.S
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
24 #include <asm/alternative.h>
25 #include <asm/assembler.h>
26 #include <asm/asm-offsets.h>
27 #include <asm/cpufeature.h>
28 #include <asm/errno.h>
29 #include <asm/esr.h>
30 #include <asm/irq.h>
31 #include <asm/memory.h>
32 #include <asm/ptrace.h>
33 #include <asm/thread_info.h>
34 #include <asm/asm-uaccess.h>
35 #include <asm/unistd.h>
36
37 /*
38 * 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 /*
64 * 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_ventry label
73 .align 7
74 sub sp, sp, #S_FRAME_SIZE
75 #ifdef CONFIG_VMAP_STACK
76 /*
77 * Test whether the SP has overflowed, without corrupting a GPR.
78 * Task and IRQ stacks are aligned to (1 << THREAD_SHIFT).
79 */
80 add sp, sp, x0 // sp' = sp + x0
81 sub x0, sp, x0 // x0' = sp' - x0 = (sp + x0) - x0 = sp
82 tbnz x0, #THREAD_SHIFT, 0f
83 sub x0, sp, x0 // x0'' = sp' - x0' = (sp + x0) - sp = x0
84 sub sp, sp, x0 // sp'' = sp' - x0 = (sp + x0) - x0 = sp
85 b \label
86
87 0:
88 /*
89 * Either we've just detected an overflow, or we've taken an exception
90 * while on the overflow stack. Either way, we won't return to
91 * userspace, and can clobber EL0 registers to free up GPRs.
92 */
93
94 /* Stash the original SP (minus S_FRAME_SIZE) in tpidr_el0. */
95 msr tpidr_el0, x0
96
97 /* Recover the original x0 value and stash it in tpidrro_el0 */
98 sub x0, sp, x0
99 msr tpidrro_el0, x0
100
101 /* Switch to the overflow stack */
102 adr_this_cpu sp, overflow_stack + OVERFLOW_STACK_SIZE, x0
103
104 /*
105 * Check whether we were already on the overflow stack. This may happen
106 * after panic() re-enables interrupts.
107 */
108 mrs x0, tpidr_el0 // sp of interrupted context
109 sub x0, sp, x0 // delta with top of overflow stack
110 tst x0, #~(OVERFLOW_STACK_SIZE - 1) // within range?
111 b.ne __bad_stack // no? -> bad stack pointer
112
113 /* We were already on the overflow stack. Restore sp/x0 and carry on. */
114 sub sp, sp, x0
115 mrs x0, tpidrro_el0
116 #endif
117 b \label
118 .endm
119
120 .macro kernel_entry, el, regsize = 64
121 .if \regsize == 32
122 mov w0, w0 // zero upper 32 bits of x0
123 .endif
124 stp x0, x1, [sp, #16 * 0]
125 stp x2, x3, [sp, #16 * 1]
126 stp x4, x5, [sp, #16 * 2]
127 stp x6, x7, [sp, #16 * 3]
128 stp x8, x9, [sp, #16 * 4]
129 stp x10, x11, [sp, #16 * 5]
130 stp x12, x13, [sp, #16 * 6]
131 stp x14, x15, [sp, #16 * 7]
132 stp x16, x17, [sp, #16 * 8]
133 stp x18, x19, [sp, #16 * 9]
134 stp x20, x21, [sp, #16 * 10]
135 stp x22, x23, [sp, #16 * 11]
136 stp x24, x25, [sp, #16 * 12]
137 stp x26, x27, [sp, #16 * 13]
138 stp x28, x29, [sp, #16 * 14]
139
140 .if \el == 0
141 mrs x21, sp_el0
142 ldr_this_cpu tsk, __entry_task, x20 // Ensure MDSCR_EL1.SS is clear,
143 ldr x19, [tsk, #TSK_TI_FLAGS] // since we can unmask debug
144 disable_step_tsk x19, x20 // exceptions when scheduling.
145
146 mov x29, xzr // fp pointed to user-space
147 .else
148 add x21, sp, #S_FRAME_SIZE
149 get_thread_info tsk
150 /* Save the task's original addr_limit and set USER_DS (TASK_SIZE_64) */
151 ldr x20, [tsk, #TSK_TI_ADDR_LIMIT]
152 str x20, [sp, #S_ORIG_ADDR_LIMIT]
153 mov x20, #TASK_SIZE_64
154 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
155 /* No need to reset PSTATE.UAO, hardware's already set it to 0 for us */
156 .endif /* \el == 0 */
157 mrs x22, elr_el1
158 mrs x23, spsr_el1
159 stp lr, x21, [sp, #S_LR]
160
161 /*
162 * In order to be able to dump the contents of struct pt_regs at the
163 * time the exception was taken (in case we attempt to walk the call
164 * stack later), chain it together with the stack frames.
165 */
166 .if \el == 0
167 stp xzr, xzr, [sp, #S_STACKFRAME]
168 .else
169 stp x29, x22, [sp, #S_STACKFRAME]
170 .endif
171 add x29, sp, #S_STACKFRAME
172
173 #ifdef CONFIG_ARM64_SW_TTBR0_PAN
174 /*
175 * Set the TTBR0 PAN bit in SPSR. When the exception is taken from
176 * EL0, there is no need to check the state of TTBR0_EL1 since
177 * accesses are always enabled.
178 * Note that the meaning of this bit differs from the ARMv8.1 PAN
179 * feature as all TTBR0_EL1 accesses are disabled, not just those to
180 * user mappings.
181 */
182 alternative_if ARM64_HAS_PAN
183 b 1f // skip TTBR0 PAN
184 alternative_else_nop_endif
185
186 .if \el != 0
187 mrs x21, ttbr0_el1
188 tst x21, #0xffff << 48 // Check for the reserved ASID
189 orr x23, x23, #PSR_PAN_BIT // Set the emulated PAN in the saved SPSR
190 b.eq 1f // TTBR0 access already disabled
191 and x23, x23, #~PSR_PAN_BIT // Clear the emulated PAN in the saved SPSR
192 .endif
193
194 __uaccess_ttbr0_disable x21
195 1:
196 #endif
197
198 stp x22, x23, [sp, #S_PC]
199
200 /*
201 * Set syscallno to -1 by default (overridden later if real syscall).
202 */
203 .if \el == 0
204 mvn x21, xzr
205 str x21, [sp, #S_SYSCALLNO]
206 .endif
207
208 /*
209 * Set sp_el0 to current thread_info.
210 */
211 .if \el == 0
212 msr sp_el0, tsk
213 .endif
214
215 /*
216 * Registers that may be useful after this macro is invoked:
217 *
218 * x21 - aborted SP
219 * x22 - aborted PC
220 * x23 - aborted PSTATE
221 */
222 .endm
223
224 .macro kernel_exit, el
225 .if \el != 0
226 /* Restore the task's original addr_limit. */
227 ldr x20, [sp, #S_ORIG_ADDR_LIMIT]
228 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
229
230 /* No need to restore UAO, it will be restored from SPSR_EL1 */
231 .endif
232
233 ldp x21, x22, [sp, #S_PC] // load ELR, SPSR
234 .if \el == 0
235 ct_user_enter
236 .endif
237
238 #ifdef CONFIG_ARM64_SW_TTBR0_PAN
239 /*
240 * Restore access to TTBR0_EL1. If returning to EL0, no need for SPSR
241 * PAN bit checking.
242 */
243 alternative_if ARM64_HAS_PAN
244 b 2f // skip TTBR0 PAN
245 alternative_else_nop_endif
246
247 .if \el != 0
248 tbnz x22, #22, 1f // Skip re-enabling TTBR0 access if the PSR_PAN_BIT is set
249 .endif
250
251 __uaccess_ttbr0_enable x0
252
253 .if \el == 0
254 /*
255 * Enable errata workarounds only if returning to user. The only
256 * workaround currently required for TTBR0_EL1 changes are for the
257 * Cavium erratum 27456 (broadcast TLBI instructions may cause I-cache
258 * corruption).
259 */
260 post_ttbr0_update_workaround
261 .endif
262 1:
263 .if \el != 0
264 and x22, x22, #~PSR_PAN_BIT // ARMv8.0 CPUs do not understand this bit
265 .endif
266 2:
267 #endif
268
269 .if \el == 0
270 ldr x23, [sp, #S_SP] // load return stack pointer
271 msr sp_el0, x23
272 #ifdef CONFIG_ARM64_ERRATUM_845719
273 alternative_if ARM64_WORKAROUND_845719
274 tbz x22, #4, 1f
275 #ifdef CONFIG_PID_IN_CONTEXTIDR
276 mrs x29, contextidr_el1
277 msr contextidr_el1, x29
278 #else
279 msr contextidr_el1, xzr
280 #endif
281 1:
282 alternative_else_nop_endif
283 #endif
284 .endif
285
286 msr elr_el1, x21 // set up the return data
287 msr spsr_el1, x22
288 ldp x0, x1, [sp, #16 * 0]
289 ldp x2, x3, [sp, #16 * 1]
290 ldp x4, x5, [sp, #16 * 2]
291 ldp x6, x7, [sp, #16 * 3]
292 ldp x8, x9, [sp, #16 * 4]
293 ldp x10, x11, [sp, #16 * 5]
294 ldp x12, x13, [sp, #16 * 6]
295 ldp x14, x15, [sp, #16 * 7]
296 ldp x16, x17, [sp, #16 * 8]
297 ldp x18, x19, [sp, #16 * 9]
298 ldp x20, x21, [sp, #16 * 10]
299 ldp x22, x23, [sp, #16 * 11]
300 ldp x24, x25, [sp, #16 * 12]
301 ldp x26, x27, [sp, #16 * 13]
302 ldp x28, x29, [sp, #16 * 14]
303 ldr lr, [sp, #S_LR]
304 add sp, sp, #S_FRAME_SIZE // restore sp
305 eret // return to kernel
306 .endm
307
308 .macro irq_stack_entry
309 mov x19, sp // preserve the original sp
310
311 /*
312 * Compare sp with the base of the task stack.
313 * If the top ~(THREAD_SIZE - 1) bits match, we are on a task stack,
314 * and should switch to the irq stack.
315 */
316 ldr x25, [tsk, TSK_STACK]
317 eor x25, x25, x19
318 and x25, x25, #~(THREAD_SIZE - 1)
319 cbnz x25, 9998f
320
321 ldr_this_cpu x25, irq_stack_ptr, x26
322 mov x26, #IRQ_STACK_SIZE
323 add x26, x25, x26
324
325 /* switch to the irq stack */
326 mov sp, x26
327 9998:
328 .endm
329
330 /*
331 * x19 should be preserved between irq_stack_entry and
332 * irq_stack_exit.
333 */
334 .macro irq_stack_exit
335 mov sp, x19
336 .endm
337
338 /*
339 * These are the registers used in the syscall handler, and allow us to
340 * have in theory up to 7 arguments to a function - x0 to x6.
341 *
342 * x7 is reserved for the system call number in 32-bit mode.
343 */
344 sc_nr .req x25 // number of system calls
345 scno .req x26 // syscall number
346 stbl .req x27 // syscall table pointer
347 tsk .req x28 // current thread_info
348
349 /*
350 * Interrupt handling.
351 */
352 .macro irq_handler
353 ldr_l x1, handle_arch_irq
354 mov x0, sp
355 irq_stack_entry
356 blr x1
357 irq_stack_exit
358 .endm
359
360 .text
361
362 /*
363 * Exception vectors.
364 */
365 .pushsection ".entry.text", "ax"
366
367 .align 11
368 ENTRY(vectors)
369 kernel_ventry el1_sync_invalid // Synchronous EL1t
370 kernel_ventry el1_irq_invalid // IRQ EL1t
371 kernel_ventry el1_fiq_invalid // FIQ EL1t
372 kernel_ventry el1_error_invalid // Error EL1t
373
374 kernel_ventry el1_sync // Synchronous EL1h
375 kernel_ventry el1_irq // IRQ EL1h
376 kernel_ventry el1_fiq_invalid // FIQ EL1h
377 kernel_ventry el1_error_invalid // Error EL1h
378
379 kernel_ventry el0_sync // Synchronous 64-bit EL0
380 kernel_ventry el0_irq // IRQ 64-bit EL0
381 kernel_ventry el0_fiq_invalid // FIQ 64-bit EL0
382 kernel_ventry el0_error_invalid // Error 64-bit EL0
383
384 #ifdef CONFIG_COMPAT
385 kernel_ventry el0_sync_compat // Synchronous 32-bit EL0
386 kernel_ventry el0_irq_compat // IRQ 32-bit EL0
387 kernel_ventry el0_fiq_invalid_compat // FIQ 32-bit EL0
388 kernel_ventry el0_error_invalid_compat // Error 32-bit EL0
389 #else
390 kernel_ventry el0_sync_invalid // Synchronous 32-bit EL0
391 kernel_ventry el0_irq_invalid // IRQ 32-bit EL0
392 kernel_ventry el0_fiq_invalid // FIQ 32-bit EL0
393 kernel_ventry el0_error_invalid // Error 32-bit EL0
394 #endif
395 END(vectors)
396
397 #ifdef CONFIG_VMAP_STACK
398 /*
399 * We detected an overflow in kernel_ventry, which switched to the
400 * overflow stack. Stash the exception regs, and head to our overflow
401 * handler.
402 */
403 __bad_stack:
404 /* Restore the original x0 value */
405 mrs x0, tpidrro_el0
406
407 /*
408 * Store the original GPRs to the new stack. The orginal SP (minus
409 * S_FRAME_SIZE) was stashed in tpidr_el0 by kernel_ventry.
410 */
411 sub sp, sp, #S_FRAME_SIZE
412 kernel_entry 1
413 mrs x0, tpidr_el0
414 add x0, x0, #S_FRAME_SIZE
415 str x0, [sp, #S_SP]
416
417 /* Stash the regs for handle_bad_stack */
418 mov x0, sp
419
420 /* Time to die */
421 bl handle_bad_stack
422 ASM_BUG()
423 #endif /* CONFIG_VMAP_STACK */
424
425 /*
426 * Invalid mode handlers
427 */
428 .macro inv_entry, el, reason, regsize = 64
429 kernel_entry \el, \regsize
430 mov x0, sp
431 mov x1, #\reason
432 mrs x2, esr_el1
433 bl bad_mode
434 ASM_BUG()
435 .endm
436
437 el0_sync_invalid:
438 inv_entry 0, BAD_SYNC
439 ENDPROC(el0_sync_invalid)
440
441 el0_irq_invalid:
442 inv_entry 0, BAD_IRQ
443 ENDPROC(el0_irq_invalid)
444
445 el0_fiq_invalid:
446 inv_entry 0, BAD_FIQ
447 ENDPROC(el0_fiq_invalid)
448
449 el0_error_invalid:
450 inv_entry 0, BAD_ERROR
451 ENDPROC(el0_error_invalid)
452
453 #ifdef CONFIG_COMPAT
454 el0_fiq_invalid_compat:
455 inv_entry 0, BAD_FIQ, 32
456 ENDPROC(el0_fiq_invalid_compat)
457
458 el0_error_invalid_compat:
459 inv_entry 0, BAD_ERROR, 32
460 ENDPROC(el0_error_invalid_compat)
461 #endif
462
463 el1_sync_invalid:
464 inv_entry 1, BAD_SYNC
465 ENDPROC(el1_sync_invalid)
466
467 el1_irq_invalid:
468 inv_entry 1, BAD_IRQ
469 ENDPROC(el1_irq_invalid)
470
471 el1_fiq_invalid:
472 inv_entry 1, BAD_FIQ
473 ENDPROC(el1_fiq_invalid)
474
475 el1_error_invalid:
476 inv_entry 1, BAD_ERROR
477 ENDPROC(el1_error_invalid)
478
479 /*
480 * EL1 mode handlers.
481 */
482 .align 6
483 el1_sync:
484 kernel_entry 1
485 mrs x1, esr_el1 // read the syndrome register
486 lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class
487 cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1
488 b.eq el1_da
489 cmp x24, #ESR_ELx_EC_IABT_CUR // instruction abort in EL1
490 b.eq el1_ia
491 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
492 b.eq el1_undef
493 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
494 b.eq el1_sp_pc
495 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
496 b.eq el1_sp_pc
497 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1
498 b.eq el1_undef
499 cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1
500 b.ge el1_dbg
501 b el1_inv
502
503 el1_ia:
504 /*
505 * Fall through to the Data abort case
506 */
507 el1_da:
508 /*
509 * Data abort handling
510 */
511 mrs x3, far_el1
512 enable_dbg
513 // re-enable interrupts if they were enabled in the aborted context
514 tbnz x23, #7, 1f // PSR_I_BIT
515 enable_irq
516 1:
517 clear_address_tag x0, x3
518 mov x2, sp // struct pt_regs
519 bl do_mem_abort
520
521 // disable interrupts before pulling preserved data off the stack
522 disable_irq
523 kernel_exit 1
524 el1_sp_pc:
525 /*
526 * Stack or PC alignment exception handling
527 */
528 mrs x0, far_el1
529 enable_dbg
530 mov x2, sp
531 bl do_sp_pc_abort
532 ASM_BUG()
533 el1_undef:
534 /*
535 * Undefined instruction
536 */
537 enable_dbg
538 mov x0, sp
539 bl do_undefinstr
540 ASM_BUG()
541 el1_dbg:
542 /*
543 * Debug exception handling
544 */
545 cmp x24, #ESR_ELx_EC_BRK64 // if BRK64
546 cinc x24, x24, eq // set bit '0'
547 tbz x24, #0, el1_inv // EL1 only
548 mrs x0, far_el1
549 mov x2, sp // struct pt_regs
550 bl do_debug_exception
551 kernel_exit 1
552 el1_inv:
553 // TODO: add support for undefined instructions in kernel mode
554 enable_dbg
555 mov x0, sp
556 mov x2, x1
557 mov x1, #BAD_SYNC
558 bl bad_mode
559 ASM_BUG()
560 ENDPROC(el1_sync)
561
562 .align 6
563 el1_irq:
564 kernel_entry 1
565 enable_dbg
566 #ifdef CONFIG_TRACE_IRQFLAGS
567 bl trace_hardirqs_off
568 #endif
569
570 irq_handler
571
572 #ifdef CONFIG_PREEMPT
573 ldr w24, [tsk, #TSK_TI_PREEMPT] // get preempt count
574 cbnz w24, 1f // preempt count != 0
575 ldr x0, [tsk, #TSK_TI_FLAGS] // get flags
576 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
577 bl el1_preempt
578 1:
579 #endif
580 #ifdef CONFIG_TRACE_IRQFLAGS
581 bl trace_hardirqs_on
582 #endif
583 kernel_exit 1
584 ENDPROC(el1_irq)
585
586 #ifdef CONFIG_PREEMPT
587 el1_preempt:
588 mov x24, lr
589 1: bl preempt_schedule_irq // irq en/disable is done inside
590 ldr x0, [tsk, #TSK_TI_FLAGS] // get new tasks TI_FLAGS
591 tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling?
592 ret x24
593 #endif
594
595 /*
596 * EL0 mode handlers.
597 */
598 .align 6
599 el0_sync:
600 kernel_entry 0
601 mrs x25, esr_el1 // read the syndrome register
602 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
603 cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state
604 b.eq el0_svc
605 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
606 b.eq el0_da
607 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
608 b.eq el0_ia
609 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
610 b.eq el0_fpsimd_acc
611 cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception
612 b.eq el0_fpsimd_exc
613 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
614 b.eq el0_sys
615 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
616 b.eq el0_sp_pc
617 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
618 b.eq el0_sp_pc
619 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
620 b.eq el0_undef
621 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
622 b.ge el0_dbg
623 b el0_inv
624
625 #ifdef CONFIG_COMPAT
626 .align 6
627 el0_sync_compat:
628 kernel_entry 0, 32
629 mrs x25, esr_el1 // read the syndrome register
630 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
631 cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state
632 b.eq el0_svc_compat
633 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
634 b.eq el0_da
635 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
636 b.eq el0_ia
637 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
638 b.eq el0_fpsimd_acc
639 cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception
640 b.eq el0_fpsimd_exc
641 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
642 b.eq el0_sp_pc
643 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
644 b.eq el0_undef
645 cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap
646 b.eq el0_undef
647 cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap
648 b.eq el0_undef
649 cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap
650 b.eq el0_undef
651 cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap
652 b.eq el0_undef
653 cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap
654 b.eq el0_undef
655 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
656 b.ge el0_dbg
657 b el0_inv
658 el0_svc_compat:
659 /*
660 * AArch32 syscall handling
661 */
662 adrp stbl, compat_sys_call_table // load compat syscall table pointer
663 uxtw scno, w7 // syscall number in w7 (r7)
664 mov sc_nr, #__NR_compat_syscalls
665 b el0_svc_naked
666
667 .align 6
668 el0_irq_compat:
669 kernel_entry 0, 32
670 b el0_irq_naked
671 #endif
672
673 el0_da:
674 /*
675 * Data abort handling
676 */
677 mrs x26, far_el1
678 // enable interrupts before calling the main handler
679 enable_dbg_and_irq
680 ct_user_exit
681 clear_address_tag x0, x26
682 mov x1, x25
683 mov x2, sp
684 bl do_mem_abort
685 b ret_to_user
686 el0_ia:
687 /*
688 * Instruction abort handling
689 */
690 mrs x26, far_el1
691 // enable interrupts before calling the main handler
692 enable_dbg_and_irq
693 ct_user_exit
694 mov x0, x26
695 mov x1, x25
696 mov x2, sp
697 bl do_mem_abort
698 b ret_to_user
699 el0_fpsimd_acc:
700 /*
701 * Floating Point or Advanced SIMD access
702 */
703 enable_dbg
704 ct_user_exit
705 mov x0, x25
706 mov x1, sp
707 bl do_fpsimd_acc
708 b ret_to_user
709 el0_fpsimd_exc:
710 /*
711 * Floating Point or Advanced SIMD exception
712 */
713 enable_dbg
714 ct_user_exit
715 mov x0, x25
716 mov x1, sp
717 bl do_fpsimd_exc
718 b ret_to_user
719 el0_sp_pc:
720 /*
721 * Stack or PC alignment exception handling
722 */
723 mrs x26, far_el1
724 // enable interrupts before calling the main handler
725 enable_dbg_and_irq
726 ct_user_exit
727 mov x0, x26
728 mov x1, x25
729 mov x2, sp
730 bl do_sp_pc_abort
731 b ret_to_user
732 el0_undef:
733 /*
734 * Undefined instruction
735 */
736 // enable interrupts before calling the main handler
737 enable_dbg_and_irq
738 ct_user_exit
739 mov x0, sp
740 bl do_undefinstr
741 b ret_to_user
742 el0_sys:
743 /*
744 * System instructions, for trapped cache maintenance instructions
745 */
746 enable_dbg_and_irq
747 ct_user_exit
748 mov x0, x25
749 mov x1, sp
750 bl do_sysinstr
751 b ret_to_user
752 el0_dbg:
753 /*
754 * Debug exception handling
755 */
756 tbnz x24, #0, el0_inv // EL0 only
757 mrs x0, far_el1
758 mov x1, x25
759 mov x2, sp
760 bl do_debug_exception
761 enable_dbg
762 ct_user_exit
763 b ret_to_user
764 el0_inv:
765 enable_dbg
766 ct_user_exit
767 mov x0, sp
768 mov x1, #BAD_SYNC
769 mov x2, x25
770 bl bad_el0_sync
771 b ret_to_user
772 ENDPROC(el0_sync)
773
774 .align 6
775 el0_irq:
776 kernel_entry 0
777 el0_irq_naked:
778 enable_dbg
779 #ifdef CONFIG_TRACE_IRQFLAGS
780 bl trace_hardirqs_off
781 #endif
782
783 ct_user_exit
784 irq_handler
785
786 #ifdef CONFIG_TRACE_IRQFLAGS
787 bl trace_hardirqs_on
788 #endif
789 b ret_to_user
790 ENDPROC(el0_irq)
791
792 /*
793 * This is the fast syscall return path. We do as little as possible here,
794 * and this includes saving x0 back into the kernel stack.
795 */
796 ret_fast_syscall:
797 disable_irq // disable interrupts
798 str x0, [sp, #S_X0] // returned x0
799 ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for syscall tracing
800 and x2, x1, #_TIF_SYSCALL_WORK
801 cbnz x2, ret_fast_syscall_trace
802 and x2, x1, #_TIF_WORK_MASK
803 cbnz x2, work_pending
804 enable_step_tsk x1, x2
805 kernel_exit 0
806 ret_fast_syscall_trace:
807 enable_irq // enable interrupts
808 b __sys_trace_return_skipped // we already saved x0
809
810 /*
811 * Ok, we need to do extra processing, enter the slow path.
812 */
813 work_pending:
814 mov x0, sp // 'regs'
815 bl do_notify_resume
816 #ifdef CONFIG_TRACE_IRQFLAGS
817 bl trace_hardirqs_on // enabled while in userspace
818 #endif
819 ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for single-step
820 b finish_ret_to_user
821 /*
822 * "slow" syscall return path.
823 */
824 ret_to_user:
825 disable_irq // disable interrupts
826 ldr x1, [tsk, #TSK_TI_FLAGS]
827 and x2, x1, #_TIF_WORK_MASK
828 cbnz x2, work_pending
829 finish_ret_to_user:
830 enable_step_tsk x1, x2
831 kernel_exit 0
832 ENDPROC(ret_to_user)
833
834 /*
835 * SVC handler.
836 */
837 .align 6
838 el0_svc:
839 adrp stbl, sys_call_table // load syscall table pointer
840 uxtw scno, w8 // syscall number in w8
841 mov sc_nr, #__NR_syscalls
842 el0_svc_naked: // compat entry point
843 stp x0, scno, [sp, #S_ORIG_X0] // save the original x0 and syscall number
844 enable_dbg_and_irq
845 ct_user_exit 1
846
847 ldr x16, [tsk, #TSK_TI_FLAGS] // check for syscall hooks
848 tst x16, #_TIF_SYSCALL_WORK
849 b.ne __sys_trace
850 cmp scno, sc_nr // check upper syscall limit
851 b.hs ni_sys
852 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
853 blr x16 // call sys_* routine
854 b ret_fast_syscall
855 ni_sys:
856 mov x0, sp
857 bl do_ni_syscall
858 b ret_fast_syscall
859 ENDPROC(el0_svc)
860
861 /*
862 * This is the really slow path. We're going to be doing context
863 * switches, and waiting for our parent to respond.
864 */
865 __sys_trace:
866 mov w0, #-1 // set default errno for
867 cmp scno, x0 // user-issued syscall(-1)
868 b.ne 1f
869 mov x0, #-ENOSYS
870 str x0, [sp, #S_X0]
871 1: mov x0, sp
872 bl syscall_trace_enter
873 cmp w0, #-1 // skip the syscall?
874 b.eq __sys_trace_return_skipped
875 uxtw scno, w0 // syscall number (possibly new)
876 mov x1, sp // pointer to regs
877 cmp scno, sc_nr // check upper syscall limit
878 b.hs __ni_sys_trace
879 ldp x0, x1, [sp] // restore the syscall args
880 ldp x2, x3, [sp, #S_X2]
881 ldp x4, x5, [sp, #S_X4]
882 ldp x6, x7, [sp, #S_X6]
883 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
884 blr x16 // call sys_* routine
885
886 __sys_trace_return:
887 str x0, [sp, #S_X0] // save returned x0
888 __sys_trace_return_skipped:
889 mov x0, sp
890 bl syscall_trace_exit
891 b ret_to_user
892
893 __ni_sys_trace:
894 mov x0, sp
895 bl do_ni_syscall
896 b __sys_trace_return
897
898 .popsection // .entry.text
899
900 /*
901 * Special system call wrappers.
902 */
903 ENTRY(sys_rt_sigreturn_wrapper)
904 mov x0, sp
905 b sys_rt_sigreturn
906 ENDPROC(sys_rt_sigreturn_wrapper)
907
908 /*
909 * Register switch for AArch64. The callee-saved registers need to be saved
910 * and restored. On entry:
911 * x0 = previous task_struct (must be preserved across the switch)
912 * x1 = next task_struct
913 * Previous and next are guaranteed not to be the same.
914 *
915 */
916 ENTRY(cpu_switch_to)
917 mov x10, #THREAD_CPU_CONTEXT
918 add x8, x0, x10
919 mov x9, sp
920 stp x19, x20, [x8], #16 // store callee-saved registers
921 stp x21, x22, [x8], #16
922 stp x23, x24, [x8], #16
923 stp x25, x26, [x8], #16
924 stp x27, x28, [x8], #16
925 stp x29, x9, [x8], #16
926 str lr, [x8]
927 add x8, x1, x10
928 ldp x19, x20, [x8], #16 // restore callee-saved registers
929 ldp x21, x22, [x8], #16
930 ldp x23, x24, [x8], #16
931 ldp x25, x26, [x8], #16
932 ldp x27, x28, [x8], #16
933 ldp x29, x9, [x8], #16
934 ldr lr, [x8]
935 mov sp, x9
936 msr sp_el0, x1
937 ret
938 ENDPROC(cpu_switch_to)
939 NOKPROBE(cpu_switch_to)
940
941 /*
942 * This is how we return from a fork.
943 */
944 ENTRY(ret_from_fork)
945 bl schedule_tail
946 cbz x19, 1f // not a kernel thread
947 mov x0, x20
948 blr x19
949 1: get_thread_info tsk
950 b ret_to_user
951 ENDPROC(ret_from_fork)
952 NOKPROBE(ret_from_fork)