blob: 4306c937b1ffc4fb224f88d176d30e8fb65a3c70 [file] [log] [blame]
Catalin Marinas60ffc302012-03-05 11:49:27 +00001/*
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
Marc Zyngier8d883b22015-06-01 10:47:41 +010024#include <asm/alternative.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000025#include <asm/assembler.h>
26#include <asm/asm-offsets.h>
Will Deacon905e8c52015-03-23 19:07:02 +000027#include <asm/cpufeature.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000028#include <asm/errno.h>
Marc Zyngier5c1ce6f2013-04-08 17:17:03 +010029#include <asm/esr.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000030#include <asm/thread_info.h>
31#include <asm/unistd.h>
32
33/*
Larry Bassel6c81fe72014-05-30 12:34:15 -070034 * Context tracking subsystem. Used to instrument transitions
35 * between user and kernel mode.
36 */
37 .macro ct_user_exit, syscall = 0
38#ifdef CONFIG_CONTEXT_TRACKING
39 bl context_tracking_user_exit
40 .if \syscall == 1
41 /*
42 * Save/restore needed during syscalls. Restore syscall arguments from
43 * the values already saved on stack during kernel_entry.
44 */
45 ldp x0, x1, [sp]
46 ldp x2, x3, [sp, #S_X2]
47 ldp x4, x5, [sp, #S_X4]
48 ldp x6, x7, [sp, #S_X6]
49 .endif
50#endif
51 .endm
52
53 .macro ct_user_enter
54#ifdef CONFIG_CONTEXT_TRACKING
55 bl context_tracking_user_enter
56#endif
57 .endm
58
59/*
Catalin Marinas60ffc302012-03-05 11:49:27 +000060 * Bad Abort numbers
61 *-----------------
62 */
63#define BAD_SYNC 0
64#define BAD_IRQ 1
65#define BAD_FIQ 2
66#define BAD_ERROR 3
67
68 .macro kernel_entry, el, regsize = 64
Will Deacon63648dd2014-09-29 12:26:41 +010069 sub sp, sp, #S_FRAME_SIZE
Catalin Marinas60ffc302012-03-05 11:49:27 +000070 .if \regsize == 32
71 mov w0, w0 // zero upper 32 bits of x0
72 .endif
Will Deacon63648dd2014-09-29 12:26:41 +010073 stp x0, x1, [sp, #16 * 0]
74 stp x2, x3, [sp, #16 * 1]
75 stp x4, x5, [sp, #16 * 2]
76 stp x6, x7, [sp, #16 * 3]
77 stp x8, x9, [sp, #16 * 4]
78 stp x10, x11, [sp, #16 * 5]
79 stp x12, x13, [sp, #16 * 6]
80 stp x14, x15, [sp, #16 * 7]
81 stp x16, x17, [sp, #16 * 8]
82 stp x18, x19, [sp, #16 * 9]
83 stp x20, x21, [sp, #16 * 10]
84 stp x22, x23, [sp, #16 * 11]
85 stp x24, x25, [sp, #16 * 12]
86 stp x26, x27, [sp, #16 * 13]
87 stp x28, x29, [sp, #16 * 14]
88
Catalin Marinas60ffc302012-03-05 11:49:27 +000089 .if \el == 0
90 mrs x21, sp_el0
Will Deacon2a283072014-04-29 19:04:06 +010091 get_thread_info tsk // Ensure MDSCR_EL1.SS is clear,
92 ldr x19, [tsk, #TI_FLAGS] // since we can unmask debug
93 disable_step_tsk x19, x20 // exceptions when scheduling.
Catalin Marinas60ffc302012-03-05 11:49:27 +000094 .else
95 add x21, sp, #S_FRAME_SIZE
96 .endif
97 mrs x22, elr_el1
98 mrs x23, spsr_el1
99 stp lr, x21, [sp, #S_LR]
100 stp x22, x23, [sp, #S_PC]
101
102 /*
103 * Set syscallno to -1 by default (overridden later if real syscall).
104 */
105 .if \el == 0
106 mvn x21, xzr
107 str x21, [sp, #S_SYSCALLNO]
108 .endif
109
110 /*
111 * Registers that may be useful after this macro is invoked:
112 *
113 * x21 - aborted SP
114 * x22 - aborted PC
115 * x23 - aborted PSTATE
116 */
117 .endm
118
Will Deacon412fcb62015-08-19 15:57:09 +0100119 .macro kernel_exit, el
Catalin Marinas60ffc302012-03-05 11:49:27 +0000120 ldp x21, x22, [sp, #S_PC] // load ELR, SPSR
121 .if \el == 0
Larry Bassel6c81fe72014-05-30 12:34:15 -0700122 ct_user_enter
Catalin Marinas60ffc302012-03-05 11:49:27 +0000123 ldr x23, [sp, #S_SP] // load return stack pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000124 msr sp_el0, x23
Will Deacon905e8c52015-03-23 19:07:02 +0000125#ifdef CONFIG_ARM64_ERRATUM_845719
Daniel Thompsone28cabf2015-07-22 12:21:03 +0100126alternative_if_not ARM64_WORKAROUND_845719
127 nop
128 nop
Will Deacon905e8c52015-03-23 19:07:02 +0000129#ifdef CONFIG_PID_IN_CONTEXTIDR
Daniel Thompsone28cabf2015-07-22 12:21:03 +0100130 nop
Will Deacon905e8c52015-03-23 19:07:02 +0000131#endif
Daniel Thompsone28cabf2015-07-22 12:21:03 +0100132alternative_else
133 tbz x22, #4, 1f
134#ifdef CONFIG_PID_IN_CONTEXTIDR
135 mrs x29, contextidr_el1
136 msr contextidr_el1, x29
137#else
138 msr contextidr_el1, xzr
139#endif
1401:
141alternative_endif
Will Deacon905e8c52015-03-23 19:07:02 +0000142#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000143 .endif
Will Deacon63648dd2014-09-29 12:26:41 +0100144 msr elr_el1, x21 // set up the return data
145 msr spsr_el1, x22
Will Deacon63648dd2014-09-29 12:26:41 +0100146 ldp x0, x1, [sp, #16 * 0]
Will Deacon63648dd2014-09-29 12:26:41 +0100147 ldp x2, x3, [sp, #16 * 1]
148 ldp x4, x5, [sp, #16 * 2]
149 ldp x6, x7, [sp, #16 * 3]
150 ldp x8, x9, [sp, #16 * 4]
151 ldp x10, x11, [sp, #16 * 5]
152 ldp x12, x13, [sp, #16 * 6]
153 ldp x14, x15, [sp, #16 * 7]
154 ldp x16, x17, [sp, #16 * 8]
155 ldp x18, x19, [sp, #16 * 9]
156 ldp x20, x21, [sp, #16 * 10]
157 ldp x22, x23, [sp, #16 * 11]
158 ldp x24, x25, [sp, #16 * 12]
159 ldp x26, x27, [sp, #16 * 13]
160 ldp x28, x29, [sp, #16 * 14]
161 ldr lr, [sp, #S_LR]
162 add sp, sp, #S_FRAME_SIZE // restore sp
Catalin Marinas60ffc302012-03-05 11:49:27 +0000163 eret // return to kernel
164 .endm
165
166 .macro get_thread_info, rd
167 mov \rd, sp
Feng Kan845ad052013-07-23 18:52:31 +0100168 and \rd, \rd, #~(THREAD_SIZE - 1) // top of stack
Catalin Marinas60ffc302012-03-05 11:49:27 +0000169 .endm
170
171/*
172 * These are the registers used in the syscall handler, and allow us to
173 * have in theory up to 7 arguments to a function - x0 to x6.
174 *
175 * x7 is reserved for the system call number in 32-bit mode.
176 */
177sc_nr .req x25 // number of system calls
178scno .req x26 // syscall number
179stbl .req x27 // syscall table pointer
180tsk .req x28 // current thread_info
181
182/*
183 * Interrupt handling.
184 */
185 .macro irq_handler
Laura Abbottfcff5882014-11-21 21:50:38 +0000186 adrp x1, handle_arch_irq
187 ldr x1, [x1, #:lo12:handle_arch_irq]
Catalin Marinas60ffc302012-03-05 11:49:27 +0000188 mov x0, sp
189 blr x1
190 .endm
191
192 .text
193
194/*
195 * Exception vectors.
196 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000197
198 .align 11
199ENTRY(vectors)
200 ventry el1_sync_invalid // Synchronous EL1t
201 ventry el1_irq_invalid // IRQ EL1t
202 ventry el1_fiq_invalid // FIQ EL1t
203 ventry el1_error_invalid // Error EL1t
204
205 ventry el1_sync // Synchronous EL1h
206 ventry el1_irq // IRQ EL1h
207 ventry el1_fiq_invalid // FIQ EL1h
208 ventry el1_error_invalid // Error EL1h
209
210 ventry el0_sync // Synchronous 64-bit EL0
211 ventry el0_irq // IRQ 64-bit EL0
212 ventry el0_fiq_invalid // FIQ 64-bit EL0
213 ventry el0_error_invalid // Error 64-bit EL0
214
215#ifdef CONFIG_COMPAT
216 ventry el0_sync_compat // Synchronous 32-bit EL0
217 ventry el0_irq_compat // IRQ 32-bit EL0
218 ventry el0_fiq_invalid_compat // FIQ 32-bit EL0
219 ventry el0_error_invalid_compat // Error 32-bit EL0
220#else
221 ventry el0_sync_invalid // Synchronous 32-bit EL0
222 ventry el0_irq_invalid // IRQ 32-bit EL0
223 ventry el0_fiq_invalid // FIQ 32-bit EL0
224 ventry el0_error_invalid // Error 32-bit EL0
225#endif
226END(vectors)
227
228/*
229 * Invalid mode handlers
230 */
231 .macro inv_entry, el, reason, regsize = 64
232 kernel_entry el, \regsize
233 mov x0, sp
234 mov x1, #\reason
235 mrs x2, esr_el1
236 b bad_mode
237 .endm
238
239el0_sync_invalid:
240 inv_entry 0, BAD_SYNC
241ENDPROC(el0_sync_invalid)
242
243el0_irq_invalid:
244 inv_entry 0, BAD_IRQ
245ENDPROC(el0_irq_invalid)
246
247el0_fiq_invalid:
248 inv_entry 0, BAD_FIQ
249ENDPROC(el0_fiq_invalid)
250
251el0_error_invalid:
252 inv_entry 0, BAD_ERROR
253ENDPROC(el0_error_invalid)
254
255#ifdef CONFIG_COMPAT
256el0_fiq_invalid_compat:
257 inv_entry 0, BAD_FIQ, 32
258ENDPROC(el0_fiq_invalid_compat)
259
260el0_error_invalid_compat:
261 inv_entry 0, BAD_ERROR, 32
262ENDPROC(el0_error_invalid_compat)
263#endif
264
265el1_sync_invalid:
266 inv_entry 1, BAD_SYNC
267ENDPROC(el1_sync_invalid)
268
269el1_irq_invalid:
270 inv_entry 1, BAD_IRQ
271ENDPROC(el1_irq_invalid)
272
273el1_fiq_invalid:
274 inv_entry 1, BAD_FIQ
275ENDPROC(el1_fiq_invalid)
276
277el1_error_invalid:
278 inv_entry 1, BAD_ERROR
279ENDPROC(el1_error_invalid)
280
281/*
282 * EL1 mode handlers.
283 */
284 .align 6
285el1_sync:
286 kernel_entry 1
287 mrs x1, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000288 lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class
289 cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000290 b.eq el1_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000291 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Catalin Marinas60ffc302012-03-05 11:49:27 +0000292 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000293 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000294 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000295 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000296 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000297 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000298 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000299 cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000300 b.ge el1_dbg
301 b el1_inv
302el1_da:
303 /*
304 * Data abort handling
305 */
306 mrs x0, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100307 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000308 // re-enable interrupts if they were enabled in the aborted context
309 tbnz x23, #7, 1f // PSR_I_BIT
310 enable_irq
3111:
312 mov x2, sp // struct pt_regs
313 bl do_mem_abort
314
315 // disable interrupts before pulling preserved data off the stack
316 disable_irq
317 kernel_exit 1
318el1_sp_pc:
319 /*
320 * Stack or PC alignment exception handling
321 */
322 mrs x0, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100323 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000324 mov x2, sp
325 b do_sp_pc_abort
326el1_undef:
327 /*
328 * Undefined instruction
329 */
Will Deacon2a283072014-04-29 19:04:06 +0100330 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000331 mov x0, sp
332 b do_undefinstr
333el1_dbg:
334 /*
335 * Debug exception handling
336 */
Mark Rutlandaed40e02014-11-24 12:31:40 +0000337 cmp x24, #ESR_ELx_EC_BRK64 // if BRK64
Sandeepa Prabhuee6214c2013-12-04 05:50:20 +0000338 cinc x24, x24, eq // set bit '0'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000339 tbz x24, #0, el1_inv // EL1 only
340 mrs x0, far_el1
341 mov x2, sp // struct pt_regs
342 bl do_debug_exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000343 kernel_exit 1
344el1_inv:
345 // TODO: add support for undefined instructions in kernel mode
Will Deacon2a283072014-04-29 19:04:06 +0100346 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000347 mov x0, sp
Mark Rutland1b428042015-07-07 18:00:49 +0100348 mov x2, x1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000349 mov x1, #BAD_SYNC
Catalin Marinas60ffc302012-03-05 11:49:27 +0000350 b bad_mode
351ENDPROC(el1_sync)
352
353 .align 6
354el1_irq:
355 kernel_entry 1
Will Deacon2a283072014-04-29 19:04:06 +0100356 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000357#ifdef CONFIG_TRACE_IRQFLAGS
358 bl trace_hardirqs_off
359#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000360
361 irq_handler
362
Catalin Marinas60ffc302012-03-05 11:49:27 +0000363#ifdef CONFIG_PREEMPT
364 get_thread_info tsk
Neil Zhang883c0572014-01-13 08:57:56 +0000365 ldr w24, [tsk, #TI_PREEMPT] // get preempt count
Marc Zyngier717321f2013-11-04 20:14:58 +0000366 cbnz w24, 1f // preempt count != 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000367 ldr x0, [tsk, #TI_FLAGS] // get flags
368 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
369 bl el1_preempt
3701:
371#endif
372#ifdef CONFIG_TRACE_IRQFLAGS
373 bl trace_hardirqs_on
374#endif
375 kernel_exit 1
376ENDPROC(el1_irq)
377
378#ifdef CONFIG_PREEMPT
379el1_preempt:
380 mov x24, lr
Will Deacon2a283072014-04-29 19:04:06 +01003811: bl preempt_schedule_irq // irq en/disable is done inside
Catalin Marinas60ffc302012-03-05 11:49:27 +0000382 ldr x0, [tsk, #TI_FLAGS] // get new tasks TI_FLAGS
383 tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling?
384 ret x24
385#endif
386
387/*
388 * EL0 mode handlers.
389 */
390 .align 6
391el0_sync:
392 kernel_entry 0
393 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000394 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
395 cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000396 b.eq el0_svc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000397 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000398 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000399 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000400 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000401 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000402 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000403 cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000404 b.eq el0_fpsimd_exc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000405 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Catalin Marinas60ffc302012-03-05 11:49:27 +0000406 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000407 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000408 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000409 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000410 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000411 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000412 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000413 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000414 b.ge el0_dbg
415 b el0_inv
416
417#ifdef CONFIG_COMPAT
418 .align 6
419el0_sync_compat:
420 kernel_entry 0, 32
421 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000422 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
423 cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000424 b.eq el0_svc_compat
Mark Rutlandaed40e02014-11-24 12:31:40 +0000425 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000426 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000427 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000428 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000429 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000430 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000431 cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000432 b.eq el0_fpsimd_exc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000433 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000434 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000435 cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100436 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000437 cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100438 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000439 cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100440 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000441 cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100442 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000443 cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100444 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000445 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000446 b.ge el0_dbg
447 b el0_inv
448el0_svc_compat:
449 /*
450 * AArch32 syscall handling
451 */
Catalin Marinas01564112015-01-06 16:42:32 +0000452 adrp stbl, compat_sys_call_table // load compat syscall table pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000453 uxtw scno, w7 // syscall number in w7 (r7)
454 mov sc_nr, #__NR_compat_syscalls
455 b el0_svc_naked
456
457 .align 6
458el0_irq_compat:
459 kernel_entry 0, 32
460 b el0_irq_naked
461#endif
462
463el0_da:
464 /*
465 * Data abort handling
466 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100467 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000468 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100469 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700470 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100471 bic x0, x26, #(0xff << 56)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000472 mov x1, x25
473 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100474 bl do_mem_abort
475 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000476el0_ia:
477 /*
478 * Instruction abort handling
479 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100480 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000481 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100482 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700483 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100484 mov x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000485 orr x1, x25, #1 << 24 // use reserved ISS bit for instruction aborts
486 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100487 bl do_mem_abort
488 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000489el0_fpsimd_acc:
490 /*
491 * Floating Point or Advanced SIMD access
492 */
Will Deacon2a283072014-04-29 19:04:06 +0100493 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700494 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000495 mov x0, x25
496 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100497 bl do_fpsimd_acc
498 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000499el0_fpsimd_exc:
500 /*
501 * Floating Point or Advanced SIMD exception
502 */
Will Deacon2a283072014-04-29 19:04:06 +0100503 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700504 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000505 mov x0, x25
506 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100507 bl do_fpsimd_exc
508 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000509el0_sp_pc:
510 /*
511 * Stack or PC alignment exception handling
512 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100513 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000514 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100515 enable_dbg_and_irq
Mark Rutland46b05672015-06-15 16:40:27 +0100516 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100517 mov x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000518 mov x1, x25
519 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100520 bl do_sp_pc_abort
521 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000522el0_undef:
523 /*
524 * Undefined instruction
525 */
Catalin Marinas2600e132013-08-22 11:47:37 +0100526 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100527 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700528 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100529 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100530 bl do_undefinstr
531 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000532el0_dbg:
533 /*
534 * Debug exception handling
535 */
536 tbnz x24, #0, el0_inv // EL0 only
537 mrs x0, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000538 mov x1, x25
539 mov x2, sp
Will Deacon2a283072014-04-29 19:04:06 +0100540 bl do_debug_exception
541 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700542 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100543 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000544el0_inv:
Will Deacon2a283072014-04-29 19:04:06 +0100545 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700546 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000547 mov x0, sp
548 mov x1, #BAD_SYNC
Mark Rutland1b428042015-07-07 18:00:49 +0100549 mov x2, x25
Will Deacond54e81f2014-09-29 11:44:01 +0100550 bl bad_mode
551 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000552ENDPROC(el0_sync)
553
554 .align 6
555el0_irq:
556 kernel_entry 0
557el0_irq_naked:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000558 enable_dbg
559#ifdef CONFIG_TRACE_IRQFLAGS
560 bl trace_hardirqs_off
561#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000562
Larry Bassel6c81fe72014-05-30 12:34:15 -0700563 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000564 irq_handler
Marc Zyngier64681782013-11-12 17:11:53 +0000565
Catalin Marinas60ffc302012-03-05 11:49:27 +0000566#ifdef CONFIG_TRACE_IRQFLAGS
567 bl trace_hardirqs_on
568#endif
569 b ret_to_user
570ENDPROC(el0_irq)
571
572/*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000573 * Register switch for AArch64. The callee-saved registers need to be saved
574 * and restored. On entry:
575 * x0 = previous task_struct (must be preserved across the switch)
576 * x1 = next task_struct
577 * Previous and next are guaranteed not to be the same.
578 *
579 */
580ENTRY(cpu_switch_to)
Will Deaconc0d3fce2015-07-20 15:14:53 +0100581 mov x10, #THREAD_CPU_CONTEXT
582 add x8, x0, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000583 mov x9, sp
584 stp x19, x20, [x8], #16 // store callee-saved registers
585 stp x21, x22, [x8], #16
586 stp x23, x24, [x8], #16
587 stp x25, x26, [x8], #16
588 stp x27, x28, [x8], #16
589 stp x29, x9, [x8], #16
590 str lr, [x8]
Will Deaconc0d3fce2015-07-20 15:14:53 +0100591 add x8, x1, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000592 ldp x19, x20, [x8], #16 // restore callee-saved registers
593 ldp x21, x22, [x8], #16
594 ldp x23, x24, [x8], #16
595 ldp x25, x26, [x8], #16
596 ldp x27, x28, [x8], #16
597 ldp x29, x9, [x8], #16
598 ldr lr, [x8]
599 mov sp, x9
600 ret
601ENDPROC(cpu_switch_to)
602
603/*
604 * This is the fast syscall return path. We do as little as possible here,
605 * and this includes saving x0 back into the kernel stack.
606 */
607ret_fast_syscall:
608 disable_irq // disable interrupts
Will Deacon412fcb62015-08-19 15:57:09 +0100609 str x0, [sp, #S_X0] // returned x0
Josh Stone04d7e092015-06-05 14:28:03 -0700610 ldr x1, [tsk, #TI_FLAGS] // re-check for syscall tracing
611 and x2, x1, #_TIF_SYSCALL_WORK
612 cbnz x2, ret_fast_syscall_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000613 and x2, x1, #_TIF_WORK_MASK
Will Deacon412fcb62015-08-19 15:57:09 +0100614 cbnz x2, work_pending
Will Deacon2a283072014-04-29 19:04:06 +0100615 enable_step_tsk x1, x2
Will Deacon412fcb62015-08-19 15:57:09 +0100616 kernel_exit 0
Josh Stone04d7e092015-06-05 14:28:03 -0700617ret_fast_syscall_trace:
618 enable_irq // enable interrupts
Will Deacon412fcb62015-08-19 15:57:09 +0100619 b __sys_trace_return_skipped // we already saved x0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000620
621/*
622 * Ok, we need to do extra processing, enter the slow path.
623 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000624work_pending:
625 tbnz x1, #TIF_NEED_RESCHED, work_resched
Ard Biesheuvel005f78c2014-05-08 11:20:23 +0200626 /* TIF_SIGPENDING, TIF_NOTIFY_RESUME or TIF_FOREIGN_FPSTATE case */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000627 ldr x2, [sp, #S_PSTATE]
628 mov x0, sp // 'regs'
629 tst x2, #PSR_MODE_MASK // user mode regs?
630 b.ne no_work_pending // returning to kernel
Catalin Marinas6916fd02012-10-08 18:04:21 +0100631 enable_irq // enable interrupts for do_notify_resume()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000632 bl do_notify_resume
633 b ret_to_user
634work_resched:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000635 bl schedule
636
637/*
638 * "slow" syscall return path.
639 */
Catalin Marinas59dc67b2012-09-10 16:11:46 +0100640ret_to_user:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000641 disable_irq // disable interrupts
642 ldr x1, [tsk, #TI_FLAGS]
643 and x2, x1, #_TIF_WORK_MASK
644 cbnz x2, work_pending
Will Deacon2a283072014-04-29 19:04:06 +0100645 enable_step_tsk x1, x2
Catalin Marinas60ffc302012-03-05 11:49:27 +0000646no_work_pending:
Will Deacon412fcb62015-08-19 15:57:09 +0100647 kernel_exit 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000648ENDPROC(ret_to_user)
649
650/*
651 * This is how we return from a fork.
652 */
653ENTRY(ret_from_fork)
654 bl schedule_tail
Catalin Marinasc34501d2012-10-05 12:31:20 +0100655 cbz x19, 1f // not a kernel thread
656 mov x0, x20
657 blr x19
6581: get_thread_info tsk
Catalin Marinas60ffc302012-03-05 11:49:27 +0000659 b ret_to_user
660ENDPROC(ret_from_fork)
661
662/*
663 * SVC handler.
664 */
665 .align 6
666el0_svc:
667 adrp stbl, sys_call_table // load syscall table pointer
668 uxtw scno, w8 // syscall number in w8
669 mov sc_nr, #__NR_syscalls
670el0_svc_naked: // compat entry point
671 stp x0, scno, [sp, #S_ORIG_X0] // save the original x0 and syscall number
Will Deacon2a283072014-04-29 19:04:06 +0100672 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700673 ct_user_exit 1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000674
AKASHI Takahiro449f81a2014-04-30 10:51:29 +0100675 ldr x16, [tsk, #TI_FLAGS] // check for syscall hooks
676 tst x16, #_TIF_SYSCALL_WORK
677 b.ne __sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000678 cmp scno, sc_nr // check upper syscall limit
679 b.hs ni_sys
680 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100681 blr x16 // call sys_* routine
682 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000683ni_sys:
684 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100685 bl do_ni_syscall
686 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000687ENDPROC(el0_svc)
688
689 /*
690 * This is the really slow path. We're going to be doing context
691 * switches, and waiting for our parent to respond.
692 */
693__sys_trace:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000694 mov w0, #-1 // set default errno for
695 cmp scno, x0 // user-issued syscall(-1)
696 b.ne 1f
697 mov x0, #-ENOSYS
698 str x0, [sp, #S_X0]
6991: mov x0, sp
AKASHI Takahiro3157858f2014-04-30 10:51:30 +0100700 bl syscall_trace_enter
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000701 cmp w0, #-1 // skip the syscall?
702 b.eq __sys_trace_return_skipped
Catalin Marinas60ffc302012-03-05 11:49:27 +0000703 uxtw scno, w0 // syscall number (possibly new)
704 mov x1, sp // pointer to regs
705 cmp scno, sc_nr // check upper syscall limit
Will Deacond54e81f2014-09-29 11:44:01 +0100706 b.hs __ni_sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000707 ldp x0, x1, [sp] // restore the syscall args
708 ldp x2, x3, [sp, #S_X2]
709 ldp x4, x5, [sp, #S_X4]
710 ldp x6, x7, [sp, #S_X6]
711 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100712 blr x16 // call sys_* routine
Catalin Marinas60ffc302012-03-05 11:49:27 +0000713
714__sys_trace_return:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000715 str x0, [sp, #S_X0] // save returned x0
716__sys_trace_return_skipped:
AKASHI Takahiro3157858f2014-04-30 10:51:30 +0100717 mov x0, sp
718 bl syscall_trace_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000719 b ret_to_user
720
Will Deacond54e81f2014-09-29 11:44:01 +0100721__ni_sys_trace:
722 mov x0, sp
723 bl do_ni_syscall
724 b __sys_trace_return
725
Catalin Marinas60ffc302012-03-05 11:49:27 +0000726/*
727 * Special system call wrappers.
728 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000729ENTRY(sys_rt_sigreturn_wrapper)
730 mov x0, sp
731 b sys_rt_sigreturn
732ENDPROC(sys_rt_sigreturn_wrapper)