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