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