blob: e16351819fed9ada8575f117c4777232da0d72b9 [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
119 .macro kernel_exit, el, ret = 0
120 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
126#ifdef CONFIG_ARM64_ERRATUM_845719
Marc Zyngierb0dd9c02015-06-03 14:36:23 +0100127
128#undef SEQUENCE_ORG
129#undef SEQUENCE_ALT
130
Will Deacon905e8c52015-03-23 19:07:02 +0000131#ifdef CONFIG_PID_IN_CONTEXTIDR
Marc Zyngierb0dd9c02015-06-03 14:36:23 +0100132
133#define SEQUENCE_ORG "nop ; nop ; nop"
134#define SEQUENCE_ALT "tbz x22, #4, 1f ; mrs x29, contextidr_el1; msr contextidr_el1, x29; 1:"
135
Will Deacon905e8c52015-03-23 19:07:02 +0000136#else
Marc Zyngierb0dd9c02015-06-03 14:36:23 +0100137
138#define SEQUENCE_ORG "nop ; nop"
139#define SEQUENCE_ALT "tbz x22, #4, 1f ; msr contextidr_el1, xzr; 1:"
140
Will Deacon905e8c52015-03-23 19:07:02 +0000141#endif
Marc Zyngierb0dd9c02015-06-03 14:36:23 +0100142
143 alternative_insn SEQUENCE_ORG, SEQUENCE_ALT, ARM64_WORKAROUND_845719
144
Will Deacon905e8c52015-03-23 19:07:02 +0000145#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000146 .endif
Will Deacon63648dd2014-09-29 12:26:41 +0100147 msr elr_el1, x21 // set up the return data
148 msr spsr_el1, x22
149 .if \ret
150 ldr x1, [sp, #S_X1] // preserve x0 (syscall return)
151 .else
152 ldp x0, x1, [sp, #16 * 0]
153 .endif
154 ldp x2, x3, [sp, #16 * 1]
155 ldp x4, x5, [sp, #16 * 2]
156 ldp x6, x7, [sp, #16 * 3]
157 ldp x8, x9, [sp, #16 * 4]
158 ldp x10, x11, [sp, #16 * 5]
159 ldp x12, x13, [sp, #16 * 6]
160 ldp x14, x15, [sp, #16 * 7]
161 ldp x16, x17, [sp, #16 * 8]
162 ldp x18, x19, [sp, #16 * 9]
163 ldp x20, x21, [sp, #16 * 10]
164 ldp x22, x23, [sp, #16 * 11]
165 ldp x24, x25, [sp, #16 * 12]
166 ldp x26, x27, [sp, #16 * 13]
167 ldp x28, x29, [sp, #16 * 14]
168 ldr lr, [sp, #S_LR]
169 add sp, sp, #S_FRAME_SIZE // restore sp
Catalin Marinas60ffc302012-03-05 11:49:27 +0000170 eret // return to kernel
171 .endm
172
173 .macro get_thread_info, rd
174 mov \rd, sp
Feng Kan845ad052013-07-23 18:52:31 +0100175 and \rd, \rd, #~(THREAD_SIZE - 1) // top of stack
Catalin Marinas60ffc302012-03-05 11:49:27 +0000176 .endm
177
178/*
179 * These are the registers used in the syscall handler, and allow us to
180 * have in theory up to 7 arguments to a function - x0 to x6.
181 *
182 * x7 is reserved for the system call number in 32-bit mode.
183 */
184sc_nr .req x25 // number of system calls
185scno .req x26 // syscall number
186stbl .req x27 // syscall table pointer
187tsk .req x28 // current thread_info
188
189/*
190 * Interrupt handling.
191 */
192 .macro irq_handler
Laura Abbottfcff5882014-11-21 21:50:38 +0000193 adrp x1, handle_arch_irq
194 ldr x1, [x1, #:lo12:handle_arch_irq]
Catalin Marinas60ffc302012-03-05 11:49:27 +0000195 mov x0, sp
196 blr x1
197 .endm
198
199 .text
200
201/*
202 * Exception vectors.
203 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000204
205 .align 11
206ENTRY(vectors)
207 ventry el1_sync_invalid // Synchronous EL1t
208 ventry el1_irq_invalid // IRQ EL1t
209 ventry el1_fiq_invalid // FIQ EL1t
210 ventry el1_error_invalid // Error EL1t
211
212 ventry el1_sync // Synchronous EL1h
213 ventry el1_irq // IRQ EL1h
214 ventry el1_fiq_invalid // FIQ EL1h
215 ventry el1_error_invalid // Error EL1h
216
217 ventry el0_sync // Synchronous 64-bit EL0
218 ventry el0_irq // IRQ 64-bit EL0
219 ventry el0_fiq_invalid // FIQ 64-bit EL0
220 ventry el0_error_invalid // Error 64-bit EL0
221
222#ifdef CONFIG_COMPAT
223 ventry el0_sync_compat // Synchronous 32-bit EL0
224 ventry el0_irq_compat // IRQ 32-bit EL0
225 ventry el0_fiq_invalid_compat // FIQ 32-bit EL0
226 ventry el0_error_invalid_compat // Error 32-bit EL0
227#else
228 ventry el0_sync_invalid // Synchronous 32-bit EL0
229 ventry el0_irq_invalid // IRQ 32-bit EL0
230 ventry el0_fiq_invalid // FIQ 32-bit EL0
231 ventry el0_error_invalid // Error 32-bit EL0
232#endif
233END(vectors)
234
235/*
236 * Invalid mode handlers
237 */
238 .macro inv_entry, el, reason, regsize = 64
239 kernel_entry el, \regsize
240 mov x0, sp
241 mov x1, #\reason
242 mrs x2, esr_el1
243 b bad_mode
244 .endm
245
246el0_sync_invalid:
247 inv_entry 0, BAD_SYNC
248ENDPROC(el0_sync_invalid)
249
250el0_irq_invalid:
251 inv_entry 0, BAD_IRQ
252ENDPROC(el0_irq_invalid)
253
254el0_fiq_invalid:
255 inv_entry 0, BAD_FIQ
256ENDPROC(el0_fiq_invalid)
257
258el0_error_invalid:
259 inv_entry 0, BAD_ERROR
260ENDPROC(el0_error_invalid)
261
262#ifdef CONFIG_COMPAT
263el0_fiq_invalid_compat:
264 inv_entry 0, BAD_FIQ, 32
265ENDPROC(el0_fiq_invalid_compat)
266
267el0_error_invalid_compat:
268 inv_entry 0, BAD_ERROR, 32
269ENDPROC(el0_error_invalid_compat)
270#endif
271
272el1_sync_invalid:
273 inv_entry 1, BAD_SYNC
274ENDPROC(el1_sync_invalid)
275
276el1_irq_invalid:
277 inv_entry 1, BAD_IRQ
278ENDPROC(el1_irq_invalid)
279
280el1_fiq_invalid:
281 inv_entry 1, BAD_FIQ
282ENDPROC(el1_fiq_invalid)
283
284el1_error_invalid:
285 inv_entry 1, BAD_ERROR
286ENDPROC(el1_error_invalid)
287
288/*
289 * EL1 mode handlers.
290 */
291 .align 6
292el1_sync:
293 kernel_entry 1
294 mrs x1, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000295 lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class
296 cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000297 b.eq el1_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000298 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Catalin Marinas60ffc302012-03-05 11:49:27 +0000299 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000300 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000301 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000302 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000303 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000304 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000305 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000306 cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000307 b.ge el1_dbg
308 b el1_inv
309el1_da:
310 /*
311 * Data abort handling
312 */
313 mrs x0, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100314 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000315 // re-enable interrupts if they were enabled in the aborted context
316 tbnz x23, #7, 1f // PSR_I_BIT
317 enable_irq
3181:
319 mov x2, sp // struct pt_regs
320 bl do_mem_abort
321
322 // disable interrupts before pulling preserved data off the stack
323 disable_irq
324 kernel_exit 1
325el1_sp_pc:
326 /*
327 * Stack or PC alignment exception handling
328 */
329 mrs x0, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100330 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000331 mov x2, sp
332 b do_sp_pc_abort
333el1_undef:
334 /*
335 * Undefined instruction
336 */
Will Deacon2a283072014-04-29 19:04:06 +0100337 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000338 mov x0, sp
339 b do_undefinstr
340el1_dbg:
341 /*
342 * Debug exception handling
343 */
Mark Rutlandaed40e02014-11-24 12:31:40 +0000344 cmp x24, #ESR_ELx_EC_BRK64 // if BRK64
Sandeepa Prabhuee6214c2013-12-04 05:50:20 +0000345 cinc x24, x24, eq // set bit '0'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000346 tbz x24, #0, el1_inv // EL1 only
347 mrs x0, far_el1
348 mov x2, sp // struct pt_regs
349 bl do_debug_exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000350 kernel_exit 1
351el1_inv:
352 // TODO: add support for undefined instructions in kernel mode
Will Deacon2a283072014-04-29 19:04:06 +0100353 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000354 mov x0, sp
Mark Rutland1b428042015-07-07 18:00:49 +0100355 mov x2, x1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000356 mov x1, #BAD_SYNC
Catalin Marinas60ffc302012-03-05 11:49:27 +0000357 b bad_mode
358ENDPROC(el1_sync)
359
360 .align 6
361el1_irq:
362 kernel_entry 1
Will Deacon2a283072014-04-29 19:04:06 +0100363 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000364#ifdef CONFIG_TRACE_IRQFLAGS
365 bl trace_hardirqs_off
366#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000367
368 irq_handler
369
Catalin Marinas60ffc302012-03-05 11:49:27 +0000370#ifdef CONFIG_PREEMPT
371 get_thread_info tsk
Neil Zhang883c0572014-01-13 08:57:56 +0000372 ldr w24, [tsk, #TI_PREEMPT] // get preempt count
Marc Zyngier717321f2013-11-04 20:14:58 +0000373 cbnz w24, 1f // preempt count != 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000374 ldr x0, [tsk, #TI_FLAGS] // get flags
375 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
376 bl el1_preempt
3771:
378#endif
379#ifdef CONFIG_TRACE_IRQFLAGS
380 bl trace_hardirqs_on
381#endif
382 kernel_exit 1
383ENDPROC(el1_irq)
384
385#ifdef CONFIG_PREEMPT
386el1_preempt:
387 mov x24, lr
Will Deacon2a283072014-04-29 19:04:06 +01003881: bl preempt_schedule_irq // irq en/disable is done inside
Catalin Marinas60ffc302012-03-05 11:49:27 +0000389 ldr x0, [tsk, #TI_FLAGS] // get new tasks TI_FLAGS
390 tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling?
391 ret x24
392#endif
393
394/*
395 * EL0 mode handlers.
396 */
397 .align 6
398el0_sync:
399 kernel_entry 0
400 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000401 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
402 cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000403 b.eq el0_svc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000404 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000405 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000406 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000407 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000408 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000409 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000410 cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000411 b.eq el0_fpsimd_exc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000412 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Catalin Marinas60ffc302012-03-05 11:49:27 +0000413 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000414 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000415 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000416 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000417 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000418 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000419 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000420 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000421 b.ge el0_dbg
422 b el0_inv
423
424#ifdef CONFIG_COMPAT
425 .align 6
426el0_sync_compat:
427 kernel_entry 0, 32
428 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000429 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
430 cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000431 b.eq el0_svc_compat
Mark Rutlandaed40e02014-11-24 12:31:40 +0000432 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000433 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000434 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000435 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000436 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000437 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000438 cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000439 b.eq el0_fpsimd_exc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000440 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000441 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000442 cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100443 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000444 cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100445 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000446 cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100447 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000448 cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100449 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000450 cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100451 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000452 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000453 b.ge el0_dbg
454 b el0_inv
455el0_svc_compat:
456 /*
457 * AArch32 syscall handling
458 */
Catalin Marinas01564112015-01-06 16:42:32 +0000459 adrp stbl, compat_sys_call_table // load compat syscall table pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000460 uxtw scno, w7 // syscall number in w7 (r7)
461 mov sc_nr, #__NR_compat_syscalls
462 b el0_svc_naked
463
464 .align 6
465el0_irq_compat:
466 kernel_entry 0, 32
467 b el0_irq_naked
468#endif
469
470el0_da:
471 /*
472 * Data abort handling
473 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100474 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000475 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100476 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700477 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100478 bic x0, x26, #(0xff << 56)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000479 mov x1, x25
480 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100481 bl do_mem_abort
482 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000483el0_ia:
484 /*
485 * Instruction abort handling
486 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100487 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000488 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100489 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700490 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100491 mov x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000492 orr x1, x25, #1 << 24 // use reserved ISS bit for instruction aborts
493 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100494 bl do_mem_abort
495 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000496el0_fpsimd_acc:
497 /*
498 * Floating Point or Advanced SIMD access
499 */
Will Deacon2a283072014-04-29 19:04:06 +0100500 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700501 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000502 mov x0, x25
503 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100504 bl do_fpsimd_acc
505 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000506el0_fpsimd_exc:
507 /*
508 * Floating Point or Advanced SIMD exception
509 */
Will Deacon2a283072014-04-29 19:04:06 +0100510 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700511 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000512 mov x0, x25
513 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100514 bl do_fpsimd_exc
515 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000516el0_sp_pc:
517 /*
518 * Stack or PC alignment exception handling
519 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100520 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000521 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100522 enable_dbg_and_irq
Mark Rutland46b05672015-06-15 16:40:27 +0100523 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100524 mov x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000525 mov x1, x25
526 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100527 bl do_sp_pc_abort
528 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000529el0_undef:
530 /*
531 * Undefined instruction
532 */
Catalin Marinas2600e132013-08-22 11:47:37 +0100533 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100534 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700535 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100536 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100537 bl do_undefinstr
538 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000539el0_dbg:
540 /*
541 * Debug exception handling
542 */
543 tbnz x24, #0, el0_inv // EL0 only
544 mrs x0, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000545 mov x1, x25
546 mov x2, sp
Will Deacon2a283072014-04-29 19:04:06 +0100547 bl do_debug_exception
548 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700549 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100550 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000551el0_inv:
Will Deacon2a283072014-04-29 19:04:06 +0100552 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700553 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000554 mov x0, sp
555 mov x1, #BAD_SYNC
Mark Rutland1b428042015-07-07 18:00:49 +0100556 mov x2, x25
Will Deacond54e81f2014-09-29 11:44:01 +0100557 bl bad_mode
558 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000559ENDPROC(el0_sync)
560
561 .align 6
562el0_irq:
563 kernel_entry 0
564el0_irq_naked:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000565 enable_dbg
566#ifdef CONFIG_TRACE_IRQFLAGS
567 bl trace_hardirqs_off
568#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000569
Larry Bassel6c81fe72014-05-30 12:34:15 -0700570 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000571 irq_handler
Marc Zyngier64681782013-11-12 17:11:53 +0000572
Catalin Marinas60ffc302012-03-05 11:49:27 +0000573#ifdef CONFIG_TRACE_IRQFLAGS
574 bl trace_hardirqs_on
575#endif
576 b ret_to_user
577ENDPROC(el0_irq)
578
579/*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000580 * Register switch for AArch64. The callee-saved registers need to be saved
581 * and restored. On entry:
582 * x0 = previous task_struct (must be preserved across the switch)
583 * x1 = next task_struct
584 * Previous and next are guaranteed not to be the same.
585 *
586 */
587ENTRY(cpu_switch_to)
Will Deaconc0d3fce2015-07-20 15:14:53 +0100588 mov x10, #THREAD_CPU_CONTEXT
589 add x8, x0, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000590 mov x9, sp
591 stp x19, x20, [x8], #16 // store callee-saved registers
592 stp x21, x22, [x8], #16
593 stp x23, x24, [x8], #16
594 stp x25, x26, [x8], #16
595 stp x27, x28, [x8], #16
596 stp x29, x9, [x8], #16
597 str lr, [x8]
Will Deaconc0d3fce2015-07-20 15:14:53 +0100598 add x8, x1, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000599 ldp x19, x20, [x8], #16 // restore callee-saved registers
600 ldp x21, x22, [x8], #16
601 ldp x23, x24, [x8], #16
602 ldp x25, x26, [x8], #16
603 ldp x27, x28, [x8], #16
604 ldp x29, x9, [x8], #16
605 ldr lr, [x8]
606 mov sp, x9
607 ret
608ENDPROC(cpu_switch_to)
609
610/*
611 * This is the fast syscall return path. We do as little as possible here,
612 * and this includes saving x0 back into the kernel stack.
613 */
614ret_fast_syscall:
615 disable_irq // disable interrupts
Josh Stone04d7e092015-06-05 14:28:03 -0700616 ldr x1, [tsk, #TI_FLAGS] // re-check for syscall tracing
617 and x2, x1, #_TIF_SYSCALL_WORK
618 cbnz x2, ret_fast_syscall_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000619 and x2, x1, #_TIF_WORK_MASK
620 cbnz x2, fast_work_pending
Will Deacon2a283072014-04-29 19:04:06 +0100621 enable_step_tsk x1, x2
Catalin Marinas60ffc302012-03-05 11:49:27 +0000622 kernel_exit 0, ret = 1
Josh Stone04d7e092015-06-05 14:28:03 -0700623ret_fast_syscall_trace:
624 enable_irq // enable interrupts
625 b __sys_trace_return
Catalin Marinas60ffc302012-03-05 11:49:27 +0000626
627/*
628 * Ok, we need to do extra processing, enter the slow path.
629 */
630fast_work_pending:
631 str x0, [sp, #S_X0] // returned x0
632work_pending:
633 tbnz x1, #TIF_NEED_RESCHED, work_resched
Ard Biesheuvel005f78c2014-05-08 11:20:23 +0200634 /* TIF_SIGPENDING, TIF_NOTIFY_RESUME or TIF_FOREIGN_FPSTATE case */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000635 ldr x2, [sp, #S_PSTATE]
636 mov x0, sp // 'regs'
637 tst x2, #PSR_MODE_MASK // user mode regs?
638 b.ne no_work_pending // returning to kernel
Catalin Marinas6916fd02012-10-08 18:04:21 +0100639 enable_irq // enable interrupts for do_notify_resume()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000640 bl do_notify_resume
641 b ret_to_user
642work_resched:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000643 bl schedule
644
645/*
646 * "slow" syscall return path.
647 */
Catalin Marinas59dc67b2012-09-10 16:11:46 +0100648ret_to_user:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000649 disable_irq // disable interrupts
650 ldr x1, [tsk, #TI_FLAGS]
651 and x2, x1, #_TIF_WORK_MASK
652 cbnz x2, work_pending
Will Deacon2a283072014-04-29 19:04:06 +0100653 enable_step_tsk x1, x2
Catalin Marinas60ffc302012-03-05 11:49:27 +0000654no_work_pending:
655 kernel_exit 0, ret = 0
656ENDPROC(ret_to_user)
657
658/*
659 * This is how we return from a fork.
660 */
661ENTRY(ret_from_fork)
662 bl schedule_tail
Catalin Marinasc34501d2012-10-05 12:31:20 +0100663 cbz x19, 1f // not a kernel thread
664 mov x0, x20
665 blr x19
6661: get_thread_info tsk
Catalin Marinas60ffc302012-03-05 11:49:27 +0000667 b ret_to_user
668ENDPROC(ret_from_fork)
669
670/*
671 * SVC handler.
672 */
673 .align 6
674el0_svc:
675 adrp stbl, sys_call_table // load syscall table pointer
676 uxtw scno, w8 // syscall number in w8
677 mov sc_nr, #__NR_syscalls
678el0_svc_naked: // compat entry point
679 stp x0, scno, [sp, #S_ORIG_X0] // save the original x0 and syscall number
Will Deacon2a283072014-04-29 19:04:06 +0100680 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700681 ct_user_exit 1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000682
AKASHI Takahiro449f81a2014-04-30 10:51:29 +0100683 ldr x16, [tsk, #TI_FLAGS] // check for syscall hooks
684 tst x16, #_TIF_SYSCALL_WORK
685 b.ne __sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000686 cmp scno, sc_nr // check upper syscall limit
687 b.hs ni_sys
688 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100689 blr x16 // call sys_* routine
690 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000691ni_sys:
692 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100693 bl do_ni_syscall
694 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000695ENDPROC(el0_svc)
696
697 /*
698 * This is the really slow path. We're going to be doing context
699 * switches, and waiting for our parent to respond.
700 */
701__sys_trace:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000702 mov w0, #-1 // set default errno for
703 cmp scno, x0 // user-issued syscall(-1)
704 b.ne 1f
705 mov x0, #-ENOSYS
706 str x0, [sp, #S_X0]
7071: mov x0, sp
AKASHI Takahiro3157858f2014-04-30 10:51:30 +0100708 bl syscall_trace_enter
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000709 cmp w0, #-1 // skip the syscall?
710 b.eq __sys_trace_return_skipped
Catalin Marinas60ffc302012-03-05 11:49:27 +0000711 uxtw scno, w0 // syscall number (possibly new)
712 mov x1, sp // pointer to regs
713 cmp scno, sc_nr // check upper syscall limit
Will Deacond54e81f2014-09-29 11:44:01 +0100714 b.hs __ni_sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000715 ldp x0, x1, [sp] // restore the syscall args
716 ldp x2, x3, [sp, #S_X2]
717 ldp x4, x5, [sp, #S_X4]
718 ldp x6, x7, [sp, #S_X6]
719 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100720 blr x16 // call sys_* routine
Catalin Marinas60ffc302012-03-05 11:49:27 +0000721
722__sys_trace_return:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000723 str x0, [sp, #S_X0] // save returned x0
724__sys_trace_return_skipped:
AKASHI Takahiro3157858f2014-04-30 10:51:30 +0100725 mov x0, sp
726 bl syscall_trace_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000727 b ret_to_user
728
Will Deacond54e81f2014-09-29 11:44:01 +0100729__ni_sys_trace:
730 mov x0, sp
731 bl do_ni_syscall
732 b __sys_trace_return
733
Catalin Marinas60ffc302012-03-05 11:49:27 +0000734/*
735 * Special system call wrappers.
736 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000737ENTRY(sys_rt_sigreturn_wrapper)
738 mov x0, sp
739 b sys_rt_sigreturn
740ENDPROC(sys_rt_sigreturn_wrapper)