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