blob: e394f8c9595a493f00c083f1d0733ad1fdca5a27 [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>
James Morse8e23dac2015-12-04 11:02:27 +000030#include <asm/irq.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000031#include <asm/thread_info.h>
32#include <asm/unistd.h>
33
34/*
Larry Bassel6c81fe72014-05-30 12:34:15 -070035 * 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/*
Catalin Marinas60ffc302012-03-05 11:49:27 +000061 * 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
Will Deacon63648dd2014-09-29 12:26:41 +010070 sub sp, sp, #S_FRAME_SIZE
Catalin Marinas60ffc302012-03-05 11:49:27 +000071 .if \regsize == 32
72 mov w0, w0 // zero upper 32 bits of x0
73 .endif
Will Deacon63648dd2014-09-29 12:26:41 +010074 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
Catalin Marinas60ffc302012-03-05 11:49:27 +000090 .if \el == 0
91 mrs x21, sp_el0
Jungseok Lee6cdf9c72015-12-04 11:02:25 +000092 mov tsk, sp
93 and tsk, tsk, #~(THREAD_SIZE - 1) // Ensure MDSCR_EL1.SS is clear,
Will Deacon2a283072014-04-29 19:04:06 +010094 ldr x19, [tsk, #TI_FLAGS] // since we can unmask debug
95 disable_step_tsk x19, x20 // exceptions when scheduling.
Catalin Marinas60ffc302012-03-05 11:49:27 +000096 .else
97 add x21, sp, #S_FRAME_SIZE
98 .endif
99 mrs x22, elr_el1
100 mrs x23, spsr_el1
101 stp lr, x21, [sp, #S_LR]
102 stp x22, x23, [sp, #S_PC]
103
104 /*
105 * Set syscallno to -1 by default (overridden later if real syscall).
106 */
107 .if \el == 0
108 mvn x21, xzr
109 str x21, [sp, #S_SYSCALLNO]
110 .endif
111
112 /*
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000113 * Set sp_el0 to current thread_info.
114 */
115 .if \el == 0
116 msr sp_el0, tsk
117 .endif
118
119 /*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000120 * Registers that may be useful after this macro is invoked:
121 *
122 * x21 - aborted SP
123 * x22 - aborted PC
124 * x23 - aborted PSTATE
125 */
126 .endm
127
Will Deacon412fcb62015-08-19 15:57:09 +0100128 .macro kernel_exit, el
Catalin Marinas60ffc302012-03-05 11:49:27 +0000129 ldp x21, x22, [sp, #S_PC] // load ELR, SPSR
130 .if \el == 0
Larry Bassel6c81fe72014-05-30 12:34:15 -0700131 ct_user_enter
Catalin Marinas60ffc302012-03-05 11:49:27 +0000132 ldr x23, [sp, #S_SP] // load return stack pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000133 msr sp_el0, x23
Will Deacon905e8c52015-03-23 19:07:02 +0000134#ifdef CONFIG_ARM64_ERRATUM_845719
Daniel Thompsone28cabf2015-07-22 12:21:03 +0100135alternative_if_not ARM64_WORKAROUND_845719
136 nop
137 nop
Will Deacon905e8c52015-03-23 19:07:02 +0000138#ifdef CONFIG_PID_IN_CONTEXTIDR
Daniel Thompsone28cabf2015-07-22 12:21:03 +0100139 nop
Will Deacon905e8c52015-03-23 19:07:02 +0000140#endif
Daniel Thompsone28cabf2015-07-22 12:21:03 +0100141alternative_else
142 tbz x22, #4, 1f
143#ifdef CONFIG_PID_IN_CONTEXTIDR
144 mrs x29, contextidr_el1
145 msr contextidr_el1, x29
146#else
147 msr contextidr_el1, xzr
148#endif
1491:
150alternative_endif
Will Deacon905e8c52015-03-23 19:07:02 +0000151#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000152 .endif
Will Deacon63648dd2014-09-29 12:26:41 +0100153 msr elr_el1, x21 // set up the return data
154 msr spsr_el1, x22
Will Deacon63648dd2014-09-29 12:26:41 +0100155 ldp x0, x1, [sp, #16 * 0]
Will Deacon63648dd2014-09-29 12:26:41 +0100156 ldp x2, x3, [sp, #16 * 1]
157 ldp x4, x5, [sp, #16 * 2]
158 ldp x6, x7, [sp, #16 * 3]
159 ldp x8, x9, [sp, #16 * 4]
160 ldp x10, x11, [sp, #16 * 5]
161 ldp x12, x13, [sp, #16 * 6]
162 ldp x14, x15, [sp, #16 * 7]
163 ldp x16, x17, [sp, #16 * 8]
164 ldp x18, x19, [sp, #16 * 9]
165 ldp x20, x21, [sp, #16 * 10]
166 ldp x22, x23, [sp, #16 * 11]
167 ldp x24, x25, [sp, #16 * 12]
168 ldp x26, x27, [sp, #16 * 13]
169 ldp x28, x29, [sp, #16 * 14]
170 ldr lr, [sp, #S_LR]
171 add sp, sp, #S_FRAME_SIZE // restore sp
Catalin Marinas60ffc302012-03-05 11:49:27 +0000172 eret // return to kernel
173 .endm
174
175 .macro get_thread_info, rd
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000176 mrs \rd, sp_el0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000177 .endm
178
James Morse8e23dac2015-12-04 11:02:27 +0000179 .macro irq_stack_entry, dummy_lr
180 mov x19, sp // preserve the original sp
181
James Morseaa4d5d32015-12-10 10:22:39 +0000182 this_cpu_ptr irq_stack, x25, x26
James Morse8e23dac2015-12-04 11:02:27 +0000183
184 /*
185 * Check the lowest address on irq_stack for the irq_count value,
186 * incremented by do_softirq_own_stack if we have re-enabled irqs
187 * while on the irq_stack.
188 */
189 ldr x26, [x25]
190 cbnz x26, 9998f // recursive use?
191
192 /* switch to the irq stack */
193 mov x26, #IRQ_STACK_START_SP
194 add x26, x25, x26
195 mov sp, x26
196
197 /* Add a dummy stack frame */
198 stp x29, \dummy_lr, [sp, #-16]! // dummy stack frame
199 mov x29, sp
Will Deacon7596abf2015-12-09 13:58:42 +0000200 stp x19, xzr, [sp, #-16]!
James Morse8e23dac2015-12-04 11:02:27 +0000201
2029998:
203 .endm
204
205 /*
206 * x19 should be preserved between irq_stack_entry and
207 * irq_stack_exit.
208 */
209 .macro irq_stack_exit
210 mov sp, x19
211 .endm
212
Catalin Marinas60ffc302012-03-05 11:49:27 +0000213/*
214 * These are the registers used in the syscall handler, and allow us to
215 * have in theory up to 7 arguments to a function - x0 to x6.
216 *
217 * x7 is reserved for the system call number in 32-bit mode.
218 */
219sc_nr .req x25 // number of system calls
220scno .req x26 // syscall number
221stbl .req x27 // syscall table pointer
222tsk .req x28 // current thread_info
223
224/*
225 * Interrupt handling.
226 */
227 .macro irq_handler
James Morse8e23dac2015-12-04 11:02:27 +0000228 ldr_l x1, handle_arch_irq
Catalin Marinas60ffc302012-03-05 11:49:27 +0000229 mov x0, sp
James Morse8e23dac2015-12-04 11:02:27 +0000230 irq_stack_entry x22
Catalin Marinas60ffc302012-03-05 11:49:27 +0000231 blr x1
James Morse8e23dac2015-12-04 11:02:27 +0000232 irq_stack_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000233 .endm
234
235 .text
236
237/*
238 * Exception vectors.
239 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000240
241 .align 11
242ENTRY(vectors)
243 ventry el1_sync_invalid // Synchronous EL1t
244 ventry el1_irq_invalid // IRQ EL1t
245 ventry el1_fiq_invalid // FIQ EL1t
246 ventry el1_error_invalid // Error EL1t
247
248 ventry el1_sync // Synchronous EL1h
249 ventry el1_irq // IRQ EL1h
250 ventry el1_fiq_invalid // FIQ EL1h
251 ventry el1_error_invalid // Error EL1h
252
253 ventry el0_sync // Synchronous 64-bit EL0
254 ventry el0_irq // IRQ 64-bit EL0
255 ventry el0_fiq_invalid // FIQ 64-bit EL0
256 ventry el0_error_invalid // Error 64-bit EL0
257
258#ifdef CONFIG_COMPAT
259 ventry el0_sync_compat // Synchronous 32-bit EL0
260 ventry el0_irq_compat // IRQ 32-bit EL0
261 ventry el0_fiq_invalid_compat // FIQ 32-bit EL0
262 ventry el0_error_invalid_compat // Error 32-bit EL0
263#else
264 ventry el0_sync_invalid // Synchronous 32-bit EL0
265 ventry el0_irq_invalid // IRQ 32-bit EL0
266 ventry el0_fiq_invalid // FIQ 32-bit EL0
267 ventry el0_error_invalid // Error 32-bit EL0
268#endif
269END(vectors)
270
271/*
272 * Invalid mode handlers
273 */
274 .macro inv_entry, el, reason, regsize = 64
275 kernel_entry el, \regsize
276 mov x0, sp
277 mov x1, #\reason
278 mrs x2, esr_el1
279 b bad_mode
280 .endm
281
282el0_sync_invalid:
283 inv_entry 0, BAD_SYNC
284ENDPROC(el0_sync_invalid)
285
286el0_irq_invalid:
287 inv_entry 0, BAD_IRQ
288ENDPROC(el0_irq_invalid)
289
290el0_fiq_invalid:
291 inv_entry 0, BAD_FIQ
292ENDPROC(el0_fiq_invalid)
293
294el0_error_invalid:
295 inv_entry 0, BAD_ERROR
296ENDPROC(el0_error_invalid)
297
298#ifdef CONFIG_COMPAT
299el0_fiq_invalid_compat:
300 inv_entry 0, BAD_FIQ, 32
301ENDPROC(el0_fiq_invalid_compat)
302
303el0_error_invalid_compat:
304 inv_entry 0, BAD_ERROR, 32
305ENDPROC(el0_error_invalid_compat)
306#endif
307
308el1_sync_invalid:
309 inv_entry 1, BAD_SYNC
310ENDPROC(el1_sync_invalid)
311
312el1_irq_invalid:
313 inv_entry 1, BAD_IRQ
314ENDPROC(el1_irq_invalid)
315
316el1_fiq_invalid:
317 inv_entry 1, BAD_FIQ
318ENDPROC(el1_fiq_invalid)
319
320el1_error_invalid:
321 inv_entry 1, BAD_ERROR
322ENDPROC(el1_error_invalid)
323
324/*
325 * EL1 mode handlers.
326 */
327 .align 6
328el1_sync:
329 kernel_entry 1
330 mrs x1, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000331 lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class
332 cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000333 b.eq el1_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000334 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Catalin Marinas60ffc302012-03-05 11:49:27 +0000335 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000336 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000337 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000338 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000339 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000340 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000341 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000342 cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000343 b.ge el1_dbg
344 b el1_inv
345el1_da:
346 /*
347 * Data abort handling
348 */
349 mrs x0, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100350 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000351 // re-enable interrupts if they were enabled in the aborted context
352 tbnz x23, #7, 1f // PSR_I_BIT
353 enable_irq
3541:
355 mov x2, sp // struct pt_regs
356 bl do_mem_abort
357
358 // disable interrupts before pulling preserved data off the stack
359 disable_irq
360 kernel_exit 1
361el1_sp_pc:
362 /*
363 * Stack or PC alignment exception handling
364 */
365 mrs x0, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100366 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000367 mov x2, sp
368 b do_sp_pc_abort
369el1_undef:
370 /*
371 * Undefined instruction
372 */
Will Deacon2a283072014-04-29 19:04:06 +0100373 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000374 mov x0, sp
375 b do_undefinstr
376el1_dbg:
377 /*
378 * Debug exception handling
379 */
Mark Rutlandaed40e02014-11-24 12:31:40 +0000380 cmp x24, #ESR_ELx_EC_BRK64 // if BRK64
Sandeepa Prabhuee6214c2013-12-04 05:50:20 +0000381 cinc x24, x24, eq // set bit '0'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000382 tbz x24, #0, el1_inv // EL1 only
383 mrs x0, far_el1
384 mov x2, sp // struct pt_regs
385 bl do_debug_exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000386 kernel_exit 1
387el1_inv:
388 // TODO: add support for undefined instructions in kernel mode
Will Deacon2a283072014-04-29 19:04:06 +0100389 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000390 mov x0, sp
Mark Rutland1b428042015-07-07 18:00:49 +0100391 mov x2, x1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000392 mov x1, #BAD_SYNC
Catalin Marinas60ffc302012-03-05 11:49:27 +0000393 b bad_mode
394ENDPROC(el1_sync)
395
396 .align 6
397el1_irq:
398 kernel_entry 1
Will Deacon2a283072014-04-29 19:04:06 +0100399 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000400#ifdef CONFIG_TRACE_IRQFLAGS
401 bl trace_hardirqs_off
402#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000403
404 irq_handler
405
Catalin Marinas60ffc302012-03-05 11:49:27 +0000406#ifdef CONFIG_PREEMPT
407 get_thread_info tsk
Neil Zhang883c0572014-01-13 08:57:56 +0000408 ldr w24, [tsk, #TI_PREEMPT] // get preempt count
Marc Zyngier717321f2013-11-04 20:14:58 +0000409 cbnz w24, 1f // preempt count != 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000410 ldr x0, [tsk, #TI_FLAGS] // get flags
411 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
412 bl el1_preempt
4131:
414#endif
415#ifdef CONFIG_TRACE_IRQFLAGS
416 bl trace_hardirqs_on
417#endif
418 kernel_exit 1
419ENDPROC(el1_irq)
420
421#ifdef CONFIG_PREEMPT
422el1_preempt:
423 mov x24, lr
Will Deacon2a283072014-04-29 19:04:06 +01004241: bl preempt_schedule_irq // irq en/disable is done inside
Catalin Marinas60ffc302012-03-05 11:49:27 +0000425 ldr x0, [tsk, #TI_FLAGS] // get new tasks TI_FLAGS
426 tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling?
427 ret x24
428#endif
429
430/*
431 * EL0 mode handlers.
432 */
433 .align 6
434el0_sync:
435 kernel_entry 0
436 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000437 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
438 cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000439 b.eq el0_svc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000440 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000441 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000442 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000443 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000444 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000445 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000446 cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000447 b.eq el0_fpsimd_exc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000448 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Catalin Marinas60ffc302012-03-05 11:49:27 +0000449 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000450 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000451 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000452 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000453 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000454 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000455 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000456 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000457 b.ge el0_dbg
458 b el0_inv
459
460#ifdef CONFIG_COMPAT
461 .align 6
462el0_sync_compat:
463 kernel_entry 0, 32
464 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000465 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
466 cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000467 b.eq el0_svc_compat
Mark Rutlandaed40e02014-11-24 12:31:40 +0000468 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000469 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000470 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000471 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000472 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000473 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000474 cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000475 b.eq el0_fpsimd_exc
Mark Salyzyn77f3228f2015-10-13 14:30:51 -0700476 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
477 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000478 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000479 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000480 cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100481 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000482 cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100483 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000484 cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100485 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000486 cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100487 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000488 cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100489 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000490 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000491 b.ge el0_dbg
492 b el0_inv
493el0_svc_compat:
494 /*
495 * AArch32 syscall handling
496 */
Catalin Marinas01564112015-01-06 16:42:32 +0000497 adrp stbl, compat_sys_call_table // load compat syscall table pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000498 uxtw scno, w7 // syscall number in w7 (r7)
499 mov sc_nr, #__NR_compat_syscalls
500 b el0_svc_naked
501
502 .align 6
503el0_irq_compat:
504 kernel_entry 0, 32
505 b el0_irq_naked
506#endif
507
508el0_da:
509 /*
510 * Data abort handling
511 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100512 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000513 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100514 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700515 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100516 bic x0, x26, #(0xff << 56)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000517 mov x1, x25
518 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100519 bl do_mem_abort
520 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000521el0_ia:
522 /*
523 * Instruction abort handling
524 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100525 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000526 // 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
Larry Bassel6ab64632014-05-30 20:34:14 +0100529 mov x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000530 orr x1, x25, #1 << 24 // use reserved ISS bit for instruction aborts
531 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100532 bl do_mem_abort
533 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000534el0_fpsimd_acc:
535 /*
536 * Floating Point or Advanced SIMD access
537 */
Will Deacon2a283072014-04-29 19:04:06 +0100538 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700539 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000540 mov x0, x25
541 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100542 bl do_fpsimd_acc
543 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000544el0_fpsimd_exc:
545 /*
546 * Floating Point or Advanced SIMD exception
547 */
Will Deacon2a283072014-04-29 19:04:06 +0100548 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700549 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000550 mov x0, x25
551 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100552 bl do_fpsimd_exc
553 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000554el0_sp_pc:
555 /*
556 * Stack or PC alignment exception handling
557 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100558 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000559 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100560 enable_dbg_and_irq
Mark Rutland46b05672015-06-15 16:40:27 +0100561 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100562 mov x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000563 mov x1, x25
564 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100565 bl do_sp_pc_abort
566 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000567el0_undef:
568 /*
569 * Undefined instruction
570 */
Catalin Marinas2600e132013-08-22 11:47:37 +0100571 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100572 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700573 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100574 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100575 bl do_undefinstr
576 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000577el0_dbg:
578 /*
579 * Debug exception handling
580 */
581 tbnz x24, #0, el0_inv // EL0 only
582 mrs x0, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000583 mov x1, x25
584 mov x2, sp
Will Deacon2a283072014-04-29 19:04:06 +0100585 bl do_debug_exception
586 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700587 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100588 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000589el0_inv:
Will Deacon2a283072014-04-29 19:04:06 +0100590 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700591 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000592 mov x0, sp
593 mov x1, #BAD_SYNC
Mark Rutland1b428042015-07-07 18:00:49 +0100594 mov x2, x25
Will Deacond54e81f2014-09-29 11:44:01 +0100595 bl bad_mode
596 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000597ENDPROC(el0_sync)
598
599 .align 6
600el0_irq:
601 kernel_entry 0
602el0_irq_naked:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000603 enable_dbg
604#ifdef CONFIG_TRACE_IRQFLAGS
605 bl trace_hardirqs_off
606#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000607
Larry Bassel6c81fe72014-05-30 12:34:15 -0700608 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000609 irq_handler
Marc Zyngier64681782013-11-12 17:11:53 +0000610
Catalin Marinas60ffc302012-03-05 11:49:27 +0000611#ifdef CONFIG_TRACE_IRQFLAGS
612 bl trace_hardirqs_on
613#endif
614 b ret_to_user
615ENDPROC(el0_irq)
616
617/*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000618 * Register switch for AArch64. The callee-saved registers need to be saved
619 * and restored. On entry:
620 * x0 = previous task_struct (must be preserved across the switch)
621 * x1 = next task_struct
622 * Previous and next are guaranteed not to be the same.
623 *
624 */
625ENTRY(cpu_switch_to)
Will Deaconc0d3fce2015-07-20 15:14:53 +0100626 mov x10, #THREAD_CPU_CONTEXT
627 add x8, x0, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000628 mov x9, sp
629 stp x19, x20, [x8], #16 // store callee-saved registers
630 stp x21, x22, [x8], #16
631 stp x23, x24, [x8], #16
632 stp x25, x26, [x8], #16
633 stp x27, x28, [x8], #16
634 stp x29, x9, [x8], #16
635 str lr, [x8]
Will Deaconc0d3fce2015-07-20 15:14:53 +0100636 add x8, x1, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000637 ldp x19, x20, [x8], #16 // restore callee-saved registers
638 ldp x21, x22, [x8], #16
639 ldp x23, x24, [x8], #16
640 ldp x25, x26, [x8], #16
641 ldp x27, x28, [x8], #16
642 ldp x29, x9, [x8], #16
643 ldr lr, [x8]
644 mov sp, x9
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000645 and x9, x9, #~(THREAD_SIZE - 1)
646 msr sp_el0, x9
Catalin Marinas60ffc302012-03-05 11:49:27 +0000647 ret
648ENDPROC(cpu_switch_to)
649
650/*
651 * This is the fast syscall return path. We do as little as possible here,
652 * and this includes saving x0 back into the kernel stack.
653 */
654ret_fast_syscall:
655 disable_irq // disable interrupts
Will Deacon412fcb62015-08-19 15:57:09 +0100656 str x0, [sp, #S_X0] // returned x0
Josh Stone04d7e092015-06-05 14:28:03 -0700657 ldr x1, [tsk, #TI_FLAGS] // re-check for syscall tracing
658 and x2, x1, #_TIF_SYSCALL_WORK
659 cbnz x2, ret_fast_syscall_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000660 and x2, x1, #_TIF_WORK_MASK
Will Deacon412fcb62015-08-19 15:57:09 +0100661 cbnz x2, work_pending
Will Deacon2a283072014-04-29 19:04:06 +0100662 enable_step_tsk x1, x2
Will Deacon412fcb62015-08-19 15:57:09 +0100663 kernel_exit 0
Josh Stone04d7e092015-06-05 14:28:03 -0700664ret_fast_syscall_trace:
665 enable_irq // enable interrupts
Will Deacon412fcb62015-08-19 15:57:09 +0100666 b __sys_trace_return_skipped // we already saved x0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000667
668/*
669 * Ok, we need to do extra processing, enter the slow path.
670 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000671work_pending:
672 tbnz x1, #TIF_NEED_RESCHED, work_resched
Ard Biesheuvel005f78c2014-05-08 11:20:23 +0200673 /* TIF_SIGPENDING, TIF_NOTIFY_RESUME or TIF_FOREIGN_FPSTATE case */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000674 ldr x2, [sp, #S_PSTATE]
675 mov x0, sp // 'regs'
676 tst x2, #PSR_MODE_MASK // user mode regs?
677 b.ne no_work_pending // returning to kernel
Catalin Marinas6916fd02012-10-08 18:04:21 +0100678 enable_irq // enable interrupts for do_notify_resume()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000679 bl do_notify_resume
680 b ret_to_user
681work_resched:
Catalin Marinasdb3899a2015-12-04 12:42:29 +0000682#ifdef CONFIG_TRACE_IRQFLAGS
683 bl trace_hardirqs_off // the IRQs are off here, inform the tracing code
684#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000685 bl schedule
686
687/*
688 * "slow" syscall return path.
689 */
Catalin Marinas59dc67b2012-09-10 16:11:46 +0100690ret_to_user:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000691 disable_irq // disable interrupts
692 ldr x1, [tsk, #TI_FLAGS]
693 and x2, x1, #_TIF_WORK_MASK
694 cbnz x2, work_pending
Will Deacon2a283072014-04-29 19:04:06 +0100695 enable_step_tsk x1, x2
Catalin Marinas60ffc302012-03-05 11:49:27 +0000696no_work_pending:
Will Deacon412fcb62015-08-19 15:57:09 +0100697 kernel_exit 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000698ENDPROC(ret_to_user)
699
700/*
701 * This is how we return from a fork.
702 */
703ENTRY(ret_from_fork)
704 bl schedule_tail
Catalin Marinasc34501d2012-10-05 12:31:20 +0100705 cbz x19, 1f // not a kernel thread
706 mov x0, x20
707 blr x19
7081: get_thread_info tsk
Catalin Marinas60ffc302012-03-05 11:49:27 +0000709 b ret_to_user
710ENDPROC(ret_from_fork)
711
712/*
713 * SVC handler.
714 */
715 .align 6
716el0_svc:
717 adrp stbl, sys_call_table // load syscall table pointer
718 uxtw scno, w8 // syscall number in w8
719 mov sc_nr, #__NR_syscalls
720el0_svc_naked: // compat entry point
721 stp x0, scno, [sp, #S_ORIG_X0] // save the original x0 and syscall number
Will Deacon2a283072014-04-29 19:04:06 +0100722 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700723 ct_user_exit 1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000724
AKASHI Takahiro449f81a2014-04-30 10:51:29 +0100725 ldr x16, [tsk, #TI_FLAGS] // check for syscall hooks
726 tst x16, #_TIF_SYSCALL_WORK
727 b.ne __sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000728 cmp scno, sc_nr // check upper syscall limit
729 b.hs ni_sys
730 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100731 blr x16 // call sys_* routine
732 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000733ni_sys:
734 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100735 bl do_ni_syscall
736 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000737ENDPROC(el0_svc)
738
739 /*
740 * This is the really slow path. We're going to be doing context
741 * switches, and waiting for our parent to respond.
742 */
743__sys_trace:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000744 mov w0, #-1 // set default errno for
745 cmp scno, x0 // user-issued syscall(-1)
746 b.ne 1f
747 mov x0, #-ENOSYS
748 str x0, [sp, #S_X0]
7491: mov x0, sp
AKASHI Takahiro3157858f2014-04-30 10:51:30 +0100750 bl syscall_trace_enter
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000751 cmp w0, #-1 // skip the syscall?
752 b.eq __sys_trace_return_skipped
Catalin Marinas60ffc302012-03-05 11:49:27 +0000753 uxtw scno, w0 // syscall number (possibly new)
754 mov x1, sp // pointer to regs
755 cmp scno, sc_nr // check upper syscall limit
Will Deacond54e81f2014-09-29 11:44:01 +0100756 b.hs __ni_sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000757 ldp x0, x1, [sp] // restore the syscall args
758 ldp x2, x3, [sp, #S_X2]
759 ldp x4, x5, [sp, #S_X4]
760 ldp x6, x7, [sp, #S_X6]
761 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100762 blr x16 // call sys_* routine
Catalin Marinas60ffc302012-03-05 11:49:27 +0000763
764__sys_trace_return:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000765 str x0, [sp, #S_X0] // save returned x0
766__sys_trace_return_skipped:
AKASHI Takahiro3157858f2014-04-30 10:51:30 +0100767 mov x0, sp
768 bl syscall_trace_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000769 b ret_to_user
770
Will Deacond54e81f2014-09-29 11:44:01 +0100771__ni_sys_trace:
772 mov x0, sp
773 bl do_ni_syscall
774 b __sys_trace_return
775
Catalin Marinas60ffc302012-03-05 11:49:27 +0000776/*
777 * Special system call wrappers.
778 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000779ENTRY(sys_rt_sigreturn_wrapper)
780 mov x0, sp
781 b sys_rt_sigreturn
782ENDPROC(sys_rt_sigreturn_wrapper)