blob: ac474a70db858cd3778fd4119432f06db83dcbe7 [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>
James Morsee19a6ee2016-06-20 18:28:01 +010031#include <asm/memory.h>
Will Deacona329b062017-11-14 14:07:40 +000032#include <asm/mmu.h>
Catalin Marinascfa93772016-09-02 14:54:03 +010033#include <asm/ptrace.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000034#include <asm/thread_info.h>
Catalin Marinascfa93772016-09-02 14:54:03 +010035#include <asm/uaccess.h>
Kristina Martsenko9e09d902017-06-06 20:14:10 +010036#include <asm/asm-uaccess.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000037#include <asm/unistd.h>
38
39/*
Larry Bassel6c81fe72014-05-30 12:34:15 -070040 * Context tracking subsystem. Used to instrument transitions
41 * between user and kernel mode.
42 */
43 .macro ct_user_exit, syscall = 0
44#ifdef CONFIG_CONTEXT_TRACKING
45 bl context_tracking_user_exit
46 .if \syscall == 1
47 /*
48 * Save/restore needed during syscalls. Restore syscall arguments from
49 * the values already saved on stack during kernel_entry.
50 */
51 ldp x0, x1, [sp]
52 ldp x2, x3, [sp, #S_X2]
53 ldp x4, x5, [sp, #S_X4]
54 ldp x6, x7, [sp, #S_X6]
55 .endif
56#endif
57 .endm
58
59 .macro ct_user_enter
60#ifdef CONFIG_CONTEXT_TRACKING
61 bl context_tracking_user_enter
62#endif
63 .endm
64
65/*
Catalin Marinas60ffc302012-03-05 11:49:27 +000066 * Bad Abort numbers
67 *-----------------
68 */
69#define BAD_SYNC 0
70#define BAD_IRQ 1
71#define BAD_FIQ 2
72#define BAD_ERROR 3
73
Will Deacon8fdbffb2017-11-14 14:20:21 +000074 .macro kernel_ventry, el, label, regsize = 64
Mark Rutland17d35922017-07-19 17:24:49 +010075 .align 7
Will Deacon63648dd2014-09-29 12:26:41 +010076 sub sp, sp, #S_FRAME_SIZE
Will Deacon8fdbffb2017-11-14 14:20:21 +000077 b el\()\el\()_\label
Mark Rutland17d35922017-07-19 17:24:49 +010078 .endm
79
80 .macro kernel_entry, el, regsize = 64
Catalin Marinas60ffc302012-03-05 11:49:27 +000081 .if \regsize == 32
82 mov w0, w0 // zero upper 32 bits of x0
83 .endif
Will Deacon63648dd2014-09-29 12:26:41 +010084 stp x0, x1, [sp, #16 * 0]
85 stp x2, x3, [sp, #16 * 1]
86 stp x4, x5, [sp, #16 * 2]
87 stp x6, x7, [sp, #16 * 3]
88 stp x8, x9, [sp, #16 * 4]
89 stp x10, x11, [sp, #16 * 5]
90 stp x12, x13, [sp, #16 * 6]
91 stp x14, x15, [sp, #16 * 7]
92 stp x16, x17, [sp, #16 * 8]
93 stp x18, x19, [sp, #16 * 9]
94 stp x20, x21, [sp, #16 * 10]
95 stp x22, x23, [sp, #16 * 11]
96 stp x24, x25, [sp, #16 * 12]
97 stp x26, x27, [sp, #16 * 13]
98 stp x28, x29, [sp, #16 * 14]
99
Catalin Marinas60ffc302012-03-05 11:49:27 +0000100 .if \el == 0
101 mrs x21, sp_el0
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000102 mov tsk, sp
103 and tsk, tsk, #~(THREAD_SIZE - 1) // Ensure MDSCR_EL1.SS is clear,
Will Deacon2a283072014-04-29 19:04:06 +0100104 ldr x19, [tsk, #TI_FLAGS] // since we can unmask debug
105 disable_step_tsk x19, x20 // exceptions when scheduling.
James Morse49003a82015-12-10 10:22:41 +0000106
107 mov x29, xzr // fp pointed to user-space
Catalin Marinas60ffc302012-03-05 11:49:27 +0000108 .else
109 add x21, sp, #S_FRAME_SIZE
James Morsee19a6ee2016-06-20 18:28:01 +0100110 get_thread_info tsk
111 /* Save the task's original addr_limit and set USER_DS (TASK_SIZE_64) */
112 ldr x20, [tsk, #TI_ADDR_LIMIT]
113 str x20, [sp, #S_ORIG_ADDR_LIMIT]
114 mov x20, #TASK_SIZE_64
115 str x20, [tsk, #TI_ADDR_LIMIT]
Vladimir Murzin563cada2016-09-01 14:35:59 +0100116 /* No need to reset PSTATE.UAO, hardware's already set it to 0 for us */
James Morsee19a6ee2016-06-20 18:28:01 +0100117 .endif /* \el == 0 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000118 mrs x22, elr_el1
119 mrs x23, spsr_el1
120 stp lr, x21, [sp, #S_LR]
Catalin Marinascfa93772016-09-02 14:54:03 +0100121
122#ifdef CONFIG_ARM64_SW_TTBR0_PAN
123 /*
124 * Set the TTBR0 PAN bit in SPSR. When the exception is taken from
125 * EL0, there is no need to check the state of TTBR0_EL1 since
126 * accesses are always enabled.
127 * Note that the meaning of this bit differs from the ARMv8.1 PAN
128 * feature as all TTBR0_EL1 accesses are disabled, not just those to
129 * user mappings.
130 */
131alternative_if ARM64_HAS_PAN
132 b 1f // skip TTBR0 PAN
133alternative_else_nop_endif
134
135 .if \el != 0
Will Deacon599c71f2017-08-10 13:58:16 +0100136 mrs x21, ttbr1_el1
Catalin Marinascfa93772016-09-02 14:54:03 +0100137 tst x21, #0xffff << 48 // Check for the reserved ASID
138 orr x23, x23, #PSR_PAN_BIT // Set the emulated PAN in the saved SPSR
139 b.eq 1f // TTBR0 access already disabled
140 and x23, x23, #~PSR_PAN_BIT // Clear the emulated PAN in the saved SPSR
141 .endif
142
143 __uaccess_ttbr0_disable x21
1441:
145#endif
146
Catalin Marinas60ffc302012-03-05 11:49:27 +0000147 stp x22, x23, [sp, #S_PC]
148
149 /*
150 * Set syscallno to -1 by default (overridden later if real syscall).
151 */
152 .if \el == 0
153 mvn x21, xzr
154 str x21, [sp, #S_SYSCALLNO]
155 .endif
156
157 /*
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000158 * Set sp_el0 to current thread_info.
159 */
160 .if \el == 0
161 msr sp_el0, tsk
162 .endif
163
164 /*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000165 * Registers that may be useful after this macro is invoked:
166 *
167 * x21 - aborted SP
168 * x22 - aborted PC
169 * x23 - aborted PSTATE
170 */
171 .endm
172
Will Deacon412fcb62015-08-19 15:57:09 +0100173 .macro kernel_exit, el
James Morsee19a6ee2016-06-20 18:28:01 +0100174 .if \el != 0
175 /* Restore the task's original addr_limit. */
176 ldr x20, [sp, #S_ORIG_ADDR_LIMIT]
177 str x20, [tsk, #TI_ADDR_LIMIT]
178
179 /* No need to restore UAO, it will be restored from SPSR_EL1 */
180 .endif
181
Catalin Marinas60ffc302012-03-05 11:49:27 +0000182 ldp x21, x22, [sp, #S_PC] // load ELR, SPSR
183 .if \el == 0
Larry Bassel6c81fe72014-05-30 12:34:15 -0700184 ct_user_enter
Catalin Marinascfa93772016-09-02 14:54:03 +0100185 .endif
186
187#ifdef CONFIG_ARM64_SW_TTBR0_PAN
188 /*
189 * Restore access to TTBR0_EL1. If returning to EL0, no need for SPSR
190 * PAN bit checking.
191 */
192alternative_if ARM64_HAS_PAN
193 b 2f // skip TTBR0 PAN
194alternative_else_nop_endif
195
196 .if \el != 0
197 tbnz x22, #22, 1f // Skip re-enabling TTBR0 access if the PSR_PAN_BIT is set
198 .endif
199
Will Deacon599c71f2017-08-10 13:58:16 +0100200 __uaccess_ttbr0_enable x0, x1
Catalin Marinascfa93772016-09-02 14:54:03 +0100201
202 .if \el == 0
203 /*
204 * Enable errata workarounds only if returning to user. The only
205 * workaround currently required for TTBR0_EL1 changes are for the
206 * Cavium erratum 27456 (broadcast TLBI instructions may cause I-cache
207 * corruption).
208 */
Will Deacon071a49f2017-08-10 13:34:30 +0100209 post_ttbr_update_workaround
Catalin Marinascfa93772016-09-02 14:54:03 +0100210 .endif
2111:
212 .if \el != 0
213 and x22, x22, #~PSR_PAN_BIT // ARMv8.0 CPUs do not understand this bit
214 .endif
2152:
216#endif
217
218 .if \el == 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000219 ldr x23, [sp, #S_SP] // load return stack pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000220 msr sp_el0, x23
Will Deacon905e8c52015-03-23 19:07:02 +0000221#ifdef CONFIG_ARM64_ERRATUM_845719
Mark Rutland6ba3b552016-09-07 11:07:09 +0100222alternative_if ARM64_WORKAROUND_845719
Daniel Thompsone28cabf2015-07-22 12:21:03 +0100223 tbz x22, #4, 1f
224#ifdef CONFIG_PID_IN_CONTEXTIDR
225 mrs x29, contextidr_el1
226 msr contextidr_el1, x29
227#else
228 msr contextidr_el1, xzr
229#endif
2301:
Mark Rutland6ba3b552016-09-07 11:07:09 +0100231alternative_else_nop_endif
Will Deacon905e8c52015-03-23 19:07:02 +0000232#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000233 .endif
Catalin Marinascfa93772016-09-02 14:54:03 +0100234
Will Deacon63648dd2014-09-29 12:26:41 +0100235 msr elr_el1, x21 // set up the return data
236 msr spsr_el1, x22
Will Deacon63648dd2014-09-29 12:26:41 +0100237 ldp x0, x1, [sp, #16 * 0]
Will Deacon63648dd2014-09-29 12:26:41 +0100238 ldp x2, x3, [sp, #16 * 1]
239 ldp x4, x5, [sp, #16 * 2]
240 ldp x6, x7, [sp, #16 * 3]
241 ldp x8, x9, [sp, #16 * 4]
242 ldp x10, x11, [sp, #16 * 5]
243 ldp x12, x13, [sp, #16 * 6]
244 ldp x14, x15, [sp, #16 * 7]
245 ldp x16, x17, [sp, #16 * 8]
246 ldp x18, x19, [sp, #16 * 9]
247 ldp x20, x21, [sp, #16 * 10]
248 ldp x22, x23, [sp, #16 * 11]
249 ldp x24, x25, [sp, #16 * 12]
250 ldp x26, x27, [sp, #16 * 13]
251 ldp x28, x29, [sp, #16 * 14]
252 ldr lr, [sp, #S_LR]
253 add sp, sp, #S_FRAME_SIZE // restore sp
Catalin Marinas60ffc302012-03-05 11:49:27 +0000254 eret // return to kernel
255 .endm
256
James Morse971c67c2015-12-15 11:21:25 +0000257 .macro irq_stack_entry
James Morse8e23dac2015-12-04 11:02:27 +0000258 mov x19, sp // preserve the original sp
259
James Morse8e23dac2015-12-04 11:02:27 +0000260 /*
James Morsed224a692015-12-18 16:01:47 +0000261 * Compare sp with the current thread_info, if the top
262 * ~(THREAD_SIZE - 1) bits match, we are on a task stack, and
263 * should switch to the irq stack.
James Morse8e23dac2015-12-04 11:02:27 +0000264 */
James Morsed224a692015-12-18 16:01:47 +0000265 and x25, x19, #~(THREAD_SIZE - 1)
266 cmp x25, tsk
267 b.ne 9998f
James Morse8e23dac2015-12-04 11:02:27 +0000268
James Morsed224a692015-12-18 16:01:47 +0000269 this_cpu_ptr irq_stack, x25, x26
James Morse8e23dac2015-12-04 11:02:27 +0000270 mov x26, #IRQ_STACK_START_SP
271 add x26, x25, x26
James Morsed224a692015-12-18 16:01:47 +0000272
273 /* switch to the irq stack */
James Morse8e23dac2015-12-04 11:02:27 +0000274 mov sp, x26
275
James Morse971c67c2015-12-15 11:21:25 +0000276 /*
277 * Add a dummy stack frame, this non-standard format is fixed up
278 * by unwind_frame()
279 */
280 stp x29, x19, [sp, #-16]!
James Morse8e23dac2015-12-04 11:02:27 +0000281 mov x29, sp
James Morse8e23dac2015-12-04 11:02:27 +0000282
2839998:
284 .endm
285
286 /*
287 * x19 should be preserved between irq_stack_entry and
288 * irq_stack_exit.
289 */
290 .macro irq_stack_exit
291 mov sp, x19
292 .endm
293
Catalin Marinas60ffc302012-03-05 11:49:27 +0000294/*
295 * These are the registers used in the syscall handler, and allow us to
296 * have in theory up to 7 arguments to a function - x0 to x6.
297 *
298 * x7 is reserved for the system call number in 32-bit mode.
299 */
300sc_nr .req x25 // number of system calls
301scno .req x26 // syscall number
302stbl .req x27 // syscall table pointer
303tsk .req x28 // current thread_info
304
305/*
306 * Interrupt handling.
307 */
308 .macro irq_handler
James Morse8e23dac2015-12-04 11:02:27 +0000309 ldr_l x1, handle_arch_irq
Catalin Marinas60ffc302012-03-05 11:49:27 +0000310 mov x0, sp
James Morse971c67c2015-12-15 11:21:25 +0000311 irq_stack_entry
Catalin Marinas60ffc302012-03-05 11:49:27 +0000312 blr x1
James Morse8e23dac2015-12-04 11:02:27 +0000313 irq_stack_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000314 .endm
315
316 .text
317
318/*
319 * Exception vectors.
320 */
Pratyush Anand888b3c82016-07-08 12:35:50 -0400321 .pushsection ".entry.text", "ax"
Catalin Marinas60ffc302012-03-05 11:49:27 +0000322
323 .align 11
324ENTRY(vectors)
Will Deacon8fdbffb2017-11-14 14:20:21 +0000325 kernel_ventry 1, sync_invalid // Synchronous EL1t
326 kernel_ventry 1, irq_invalid // IRQ EL1t
327 kernel_ventry 1, fiq_invalid // FIQ EL1t
328 kernel_ventry 1, error_invalid // Error EL1t
Catalin Marinas60ffc302012-03-05 11:49:27 +0000329
Will Deacon8fdbffb2017-11-14 14:20:21 +0000330 kernel_ventry 1, sync // Synchronous EL1h
331 kernel_ventry 1, irq // IRQ EL1h
332 kernel_ventry 1, fiq_invalid // FIQ EL1h
333 kernel_ventry 1, error_invalid // Error EL1h
Catalin Marinas60ffc302012-03-05 11:49:27 +0000334
Will Deacon8fdbffb2017-11-14 14:20:21 +0000335 kernel_ventry 0, sync // Synchronous 64-bit EL0
336 kernel_ventry 0, irq // IRQ 64-bit EL0
337 kernel_ventry 0, fiq_invalid // FIQ 64-bit EL0
338 kernel_ventry 0, error_invalid // Error 64-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000339
340#ifdef CONFIG_COMPAT
Will Deacon8fdbffb2017-11-14 14:20:21 +0000341 kernel_ventry 0, sync_compat, 32 // Synchronous 32-bit EL0
342 kernel_ventry 0, irq_compat, 32 // IRQ 32-bit EL0
343 kernel_ventry 0, fiq_invalid_compat, 32 // FIQ 32-bit EL0
344 kernel_ventry 0, error_invalid_compat, 32 // Error 32-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000345#else
Will Deacon8fdbffb2017-11-14 14:20:21 +0000346 kernel_ventry 0, sync_invalid, 32 // Synchronous 32-bit EL0
347 kernel_ventry 0, irq_invalid, 32 // IRQ 32-bit EL0
348 kernel_ventry 0, fiq_invalid, 32 // FIQ 32-bit EL0
349 kernel_ventry 0, error_invalid, 32 // Error 32-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000350#endif
351END(vectors)
352
353/*
354 * Invalid mode handlers
355 */
356 .macro inv_entry, el, reason, regsize = 64
Ard Biesheuvelb6609502016-03-18 10:58:09 +0100357 kernel_entry \el, \regsize
Catalin Marinas60ffc302012-03-05 11:49:27 +0000358 mov x0, sp
359 mov x1, #\reason
360 mrs x2, esr_el1
361 b bad_mode
362 .endm
363
364el0_sync_invalid:
365 inv_entry 0, BAD_SYNC
366ENDPROC(el0_sync_invalid)
367
368el0_irq_invalid:
369 inv_entry 0, BAD_IRQ
370ENDPROC(el0_irq_invalid)
371
372el0_fiq_invalid:
373 inv_entry 0, BAD_FIQ
374ENDPROC(el0_fiq_invalid)
375
376el0_error_invalid:
377 inv_entry 0, BAD_ERROR
378ENDPROC(el0_error_invalid)
379
380#ifdef CONFIG_COMPAT
381el0_fiq_invalid_compat:
382 inv_entry 0, BAD_FIQ, 32
383ENDPROC(el0_fiq_invalid_compat)
384
385el0_error_invalid_compat:
386 inv_entry 0, BAD_ERROR, 32
387ENDPROC(el0_error_invalid_compat)
388#endif
389
390el1_sync_invalid:
391 inv_entry 1, BAD_SYNC
392ENDPROC(el1_sync_invalid)
393
394el1_irq_invalid:
395 inv_entry 1, BAD_IRQ
396ENDPROC(el1_irq_invalid)
397
398el1_fiq_invalid:
399 inv_entry 1, BAD_FIQ
400ENDPROC(el1_fiq_invalid)
401
402el1_error_invalid:
403 inv_entry 1, BAD_ERROR
404ENDPROC(el1_error_invalid)
405
406/*
407 * EL1 mode handlers.
408 */
409 .align 6
410el1_sync:
411 kernel_entry 1
412 mrs x1, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000413 lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class
414 cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000415 b.eq el1_da
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700416 cmp x24, #ESR_ELx_EC_IABT_CUR // instruction abort in EL1
417 b.eq el1_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000418 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Catalin Marinas60ffc302012-03-05 11:49:27 +0000419 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000420 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000421 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000422 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000423 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000424 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000425 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000426 cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000427 b.ge el1_dbg
428 b el1_inv
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700429
430el1_ia:
431 /*
432 * Fall through to the Data abort case
433 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000434el1_da:
435 /*
436 * Data abort handling
437 */
Kristina Martsenko9e09d902017-06-06 20:14:10 +0100438 mrs x3, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100439 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000440 // re-enable interrupts if they were enabled in the aborted context
441 tbnz x23, #7, 1f // PSR_I_BIT
442 enable_irq
4431:
Kristina Martsenko9e09d902017-06-06 20:14:10 +0100444 clear_address_tag x0, x3
Catalin Marinas60ffc302012-03-05 11:49:27 +0000445 mov x2, sp // struct pt_regs
446 bl do_mem_abort
447
448 // disable interrupts before pulling preserved data off the stack
449 disable_irq
450 kernel_exit 1
451el1_sp_pc:
452 /*
453 * Stack or PC alignment exception handling
454 */
455 mrs x0, far_el1
Will Deacon2a283072014-04-29 19:04:06 +0100456 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000457 mov x2, sp
458 b do_sp_pc_abort
459el1_undef:
460 /*
461 * Undefined instruction
462 */
Will Deacon2a283072014-04-29 19:04:06 +0100463 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000464 mov x0, sp
465 b do_undefinstr
466el1_dbg:
467 /*
468 * Debug exception handling
469 */
Mark Rutlandaed40e02014-11-24 12:31:40 +0000470 cmp x24, #ESR_ELx_EC_BRK64 // if BRK64
Sandeepa Prabhuee6214c2013-12-04 05:50:20 +0000471 cinc x24, x24, eq // set bit '0'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000472 tbz x24, #0, el1_inv // EL1 only
473 mrs x0, far_el1
474 mov x2, sp // struct pt_regs
475 bl do_debug_exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000476 kernel_exit 1
477el1_inv:
478 // TODO: add support for undefined instructions in kernel mode
Will Deacon2a283072014-04-29 19:04:06 +0100479 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000480 mov x0, sp
Mark Rutland1b428042015-07-07 18:00:49 +0100481 mov x2, x1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000482 mov x1, #BAD_SYNC
Catalin Marinas60ffc302012-03-05 11:49:27 +0000483 b bad_mode
484ENDPROC(el1_sync)
485
486 .align 6
487el1_irq:
488 kernel_entry 1
Will Deacon2a283072014-04-29 19:04:06 +0100489 enable_dbg
Catalin Marinas60ffc302012-03-05 11:49:27 +0000490#ifdef CONFIG_TRACE_IRQFLAGS
491 bl trace_hardirqs_off
492#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000493
494 irq_handler
495
Catalin Marinas60ffc302012-03-05 11:49:27 +0000496#ifdef CONFIG_PREEMPT
Neil Zhang883c0572014-01-13 08:57:56 +0000497 ldr w24, [tsk, #TI_PREEMPT] // get preempt count
Marc Zyngier717321f2013-11-04 20:14:58 +0000498 cbnz w24, 1f // preempt count != 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000499 ldr x0, [tsk, #TI_FLAGS] // get flags
500 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
501 bl el1_preempt
5021:
503#endif
504#ifdef CONFIG_TRACE_IRQFLAGS
505 bl trace_hardirqs_on
506#endif
507 kernel_exit 1
508ENDPROC(el1_irq)
509
510#ifdef CONFIG_PREEMPT
511el1_preempt:
512 mov x24, lr
Will Deacon2a283072014-04-29 19:04:06 +01005131: bl preempt_schedule_irq // irq en/disable is done inside
Catalin Marinas60ffc302012-03-05 11:49:27 +0000514 ldr x0, [tsk, #TI_FLAGS] // get new tasks TI_FLAGS
515 tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling?
516 ret x24
517#endif
518
519/*
520 * EL0 mode handlers.
521 */
522 .align 6
523el0_sync:
524 kernel_entry 0
525 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000526 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
527 cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000528 b.eq el0_svc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000529 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000530 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000531 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000532 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000533 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000534 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000535 cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000536 b.eq el0_fpsimd_exc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000537 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100538 b.eq el0_sys
Mark Rutlandaed40e02014-11-24 12:31:40 +0000539 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000540 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000541 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000542 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000543 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000544 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000545 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000546 b.ge el0_dbg
547 b el0_inv
548
549#ifdef CONFIG_COMPAT
550 .align 6
551el0_sync_compat:
552 kernel_entry 0, 32
553 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000554 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
555 cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000556 b.eq el0_svc_compat
Mark Rutlandaed40e02014-11-24 12:31:40 +0000557 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000558 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000559 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000560 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000561 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000562 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000563 cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000564 b.eq el0_fpsimd_exc
Mark Salyzyn77f3228f2015-10-13 14:30:51 -0700565 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
566 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000567 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000568 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000569 cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100570 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000571 cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100572 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000573 cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100574 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000575 cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100576 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000577 cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100578 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000579 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000580 b.ge el0_dbg
581 b el0_inv
582el0_svc_compat:
583 /*
584 * AArch32 syscall handling
585 */
Catalin Marinas01564112015-01-06 16:42:32 +0000586 adrp stbl, compat_sys_call_table // load compat syscall table pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000587 uxtw scno, w7 // syscall number in w7 (r7)
588 mov sc_nr, #__NR_compat_syscalls
589 b el0_svc_naked
590
591 .align 6
592el0_irq_compat:
593 kernel_entry 0, 32
594 b el0_irq_naked
595#endif
596
597el0_da:
598 /*
599 * Data abort handling
600 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100601 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000602 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100603 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700604 ct_user_exit
Kristina Martsenko9e09d902017-06-06 20:14:10 +0100605 clear_address_tag x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000606 mov x1, x25
607 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100608 bl do_mem_abort
609 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000610el0_ia:
611 /*
612 * Instruction abort handling
613 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100614 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000615 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100616 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700617 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100618 mov x0, x26
Mark Rutland541ec872016-05-31 12:33:03 +0100619 mov x1, x25
Catalin Marinas60ffc302012-03-05 11:49:27 +0000620 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100621 bl do_mem_abort
622 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000623el0_fpsimd_acc:
624 /*
625 * Floating Point or Advanced SIMD access
626 */
Will Deacon2a283072014-04-29 19:04:06 +0100627 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700628 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000629 mov x0, x25
630 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100631 bl do_fpsimd_acc
632 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000633el0_fpsimd_exc:
634 /*
635 * Floating Point or Advanced SIMD exception
636 */
Will Deacon2a283072014-04-29 19:04:06 +0100637 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700638 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000639 mov x0, x25
640 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100641 bl do_fpsimd_exc
642 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000643el0_sp_pc:
644 /*
645 * Stack or PC alignment exception handling
646 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100647 mrs x26, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000648 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100649 enable_dbg_and_irq
Mark Rutland46b05672015-06-15 16:40:27 +0100650 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100651 mov x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000652 mov x1, x25
653 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100654 bl do_sp_pc_abort
655 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000656el0_undef:
657 /*
658 * Undefined instruction
659 */
Catalin Marinas2600e132013-08-22 11:47:37 +0100660 // enable interrupts before calling the main handler
Will Deacon2a283072014-04-29 19:04:06 +0100661 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700662 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100663 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100664 bl do_undefinstr
665 b ret_to_user
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100666el0_sys:
667 /*
668 * System instructions, for trapped cache maintenance instructions
669 */
670 enable_dbg_and_irq
671 ct_user_exit
672 mov x0, x25
673 mov x1, sp
674 bl do_sysinstr
675 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000676el0_dbg:
677 /*
678 * Debug exception handling
679 */
680 tbnz x24, #0, el0_inv // EL0 only
681 mrs x0, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000682 mov x1, x25
683 mov x2, sp
Will Deacon2a283072014-04-29 19:04:06 +0100684 bl do_debug_exception
685 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700686 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100687 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000688el0_inv:
Will Deacon2a283072014-04-29 19:04:06 +0100689 enable_dbg
Larry Bassel6c81fe72014-05-30 12:34:15 -0700690 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000691 mov x0, sp
692 mov x1, #BAD_SYNC
Mark Rutland1b428042015-07-07 18:00:49 +0100693 mov x2, x25
Mark Rutlandde327942017-01-18 17:23:41 +0000694 bl bad_el0_sync
Will Deacond54e81f2014-09-29 11:44:01 +0100695 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000696ENDPROC(el0_sync)
697
698 .align 6
699el0_irq:
700 kernel_entry 0
701el0_irq_naked:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000702 enable_dbg
703#ifdef CONFIG_TRACE_IRQFLAGS
704 bl trace_hardirqs_off
705#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000706
Larry Bassel6c81fe72014-05-30 12:34:15 -0700707 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000708 irq_handler
Marc Zyngier64681782013-11-12 17:11:53 +0000709
Catalin Marinas60ffc302012-03-05 11:49:27 +0000710#ifdef CONFIG_TRACE_IRQFLAGS
711 bl trace_hardirqs_on
712#endif
713 b ret_to_user
714ENDPROC(el0_irq)
715
716/*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000717 * Register switch for AArch64. The callee-saved registers need to be saved
718 * and restored. On entry:
719 * x0 = previous task_struct (must be preserved across the switch)
720 * x1 = next task_struct
721 * Previous and next are guaranteed not to be the same.
722 *
723 */
724ENTRY(cpu_switch_to)
Will Deaconc0d3fce2015-07-20 15:14:53 +0100725 mov x10, #THREAD_CPU_CONTEXT
726 add x8, x0, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000727 mov x9, sp
728 stp x19, x20, [x8], #16 // store callee-saved registers
729 stp x21, x22, [x8], #16
730 stp x23, x24, [x8], #16
731 stp x25, x26, [x8], #16
732 stp x27, x28, [x8], #16
733 stp x29, x9, [x8], #16
734 str lr, [x8]
Will Deaconc0d3fce2015-07-20 15:14:53 +0100735 add x8, x1, x10
Catalin Marinas60ffc302012-03-05 11:49:27 +0000736 ldp x19, x20, [x8], #16 // restore callee-saved registers
737 ldp x21, x22, [x8], #16
738 ldp x23, x24, [x8], #16
739 ldp x25, x26, [x8], #16
740 ldp x27, x28, [x8], #16
741 ldp x29, x9, [x8], #16
742 ldr lr, [x8]
743 mov sp, x9
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000744 and x9, x9, #~(THREAD_SIZE - 1)
745 msr sp_el0, x9
Catalin Marinas60ffc302012-03-05 11:49:27 +0000746 ret
747ENDPROC(cpu_switch_to)
748
749/*
750 * This is the fast syscall return path. We do as little as possible here,
751 * and this includes saving x0 back into the kernel stack.
752 */
753ret_fast_syscall:
754 disable_irq // disable interrupts
Will Deacon412fcb62015-08-19 15:57:09 +0100755 str x0, [sp, #S_X0] // returned x0
Josh Stone04d7e092015-06-05 14:28:03 -0700756 ldr x1, [tsk, #TI_FLAGS] // re-check for syscall tracing
757 and x2, x1, #_TIF_SYSCALL_WORK
758 cbnz x2, ret_fast_syscall_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000759 and x2, x1, #_TIF_WORK_MASK
Will Deacon412fcb62015-08-19 15:57:09 +0100760 cbnz x2, work_pending
Will Deacon2a283072014-04-29 19:04:06 +0100761 enable_step_tsk x1, x2
Will Deacon412fcb62015-08-19 15:57:09 +0100762 kernel_exit 0
Josh Stone04d7e092015-06-05 14:28:03 -0700763ret_fast_syscall_trace:
764 enable_irq // enable interrupts
Will Deacon412fcb62015-08-19 15:57:09 +0100765 b __sys_trace_return_skipped // we already saved x0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000766
767/*
768 * Ok, we need to do extra processing, enter the slow path.
769 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000770work_pending:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000771 mov x0, sp // 'regs'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000772 bl do_notify_resume
Catalin Marinasdb3899a2015-12-04 12:42:29 +0000773#ifdef CONFIG_TRACE_IRQFLAGS
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400774 bl trace_hardirqs_on // enabled while in userspace
Catalin Marinasdb3899a2015-12-04 12:42:29 +0000775#endif
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400776 ldr x1, [tsk, #TI_FLAGS] // re-check for single-step
777 b finish_ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000778/*
779 * "slow" syscall return path.
780 */
Catalin Marinas59dc67b2012-09-10 16:11:46 +0100781ret_to_user:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000782 disable_irq // disable interrupts
783 ldr x1, [tsk, #TI_FLAGS]
784 and x2, x1, #_TIF_WORK_MASK
785 cbnz x2, work_pending
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400786finish_ret_to_user:
Will Deacon2a283072014-04-29 19:04:06 +0100787 enable_step_tsk x1, x2
Will Deacon412fcb62015-08-19 15:57:09 +0100788 kernel_exit 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000789ENDPROC(ret_to_user)
790
791/*
792 * This is how we return from a fork.
793 */
794ENTRY(ret_from_fork)
795 bl schedule_tail
Catalin Marinasc34501d2012-10-05 12:31:20 +0100796 cbz x19, 1f // not a kernel thread
797 mov x0, x20
798 blr x19
7991: get_thread_info tsk
Catalin Marinas60ffc302012-03-05 11:49:27 +0000800 b ret_to_user
801ENDPROC(ret_from_fork)
802
803/*
804 * SVC handler.
805 */
806 .align 6
807el0_svc:
808 adrp stbl, sys_call_table // load syscall table pointer
809 uxtw scno, w8 // syscall number in w8
810 mov sc_nr, #__NR_syscalls
811el0_svc_naked: // compat entry point
812 stp x0, scno, [sp, #S_ORIG_X0] // save the original x0 and syscall number
Will Deacon2a283072014-04-29 19:04:06 +0100813 enable_dbg_and_irq
Larry Bassel6c81fe72014-05-30 12:34:15 -0700814 ct_user_exit 1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000815
AKASHI Takahiro449f81a2014-04-30 10:51:29 +0100816 ldr x16, [tsk, #TI_FLAGS] // check for syscall hooks
817 tst x16, #_TIF_SYSCALL_WORK
818 b.ne __sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000819 cmp scno, sc_nr // check upper syscall limit
820 b.hs ni_sys
821 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100822 blr x16 // call sys_* routine
823 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000824ni_sys:
825 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100826 bl do_ni_syscall
827 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000828ENDPROC(el0_svc)
829
830 /*
831 * This is the really slow path. We're going to be doing context
832 * switches, and waiting for our parent to respond.
833 */
834__sys_trace:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000835 mov w0, #-1 // set default errno for
836 cmp scno, x0 // user-issued syscall(-1)
837 b.ne 1f
838 mov x0, #-ENOSYS
839 str x0, [sp, #S_X0]
8401: mov x0, sp
AKASHI Takahiro31578582014-04-30 10:51:30 +0100841 bl syscall_trace_enter
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000842 cmp w0, #-1 // skip the syscall?
843 b.eq __sys_trace_return_skipped
Catalin Marinas60ffc302012-03-05 11:49:27 +0000844 uxtw scno, w0 // syscall number (possibly new)
845 mov x1, sp // pointer to regs
846 cmp scno, sc_nr // check upper syscall limit
Will Deacond54e81f2014-09-29 11:44:01 +0100847 b.hs __ni_sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000848 ldp x0, x1, [sp] // restore the syscall args
849 ldp x2, x3, [sp, #S_X2]
850 ldp x4, x5, [sp, #S_X4]
851 ldp x6, x7, [sp, #S_X6]
852 ldr x16, [stbl, scno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100853 blr x16 // call sys_* routine
Catalin Marinas60ffc302012-03-05 11:49:27 +0000854
855__sys_trace_return:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000856 str x0, [sp, #S_X0] // save returned x0
857__sys_trace_return_skipped:
AKASHI Takahiro31578582014-04-30 10:51:30 +0100858 mov x0, sp
859 bl syscall_trace_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000860 b ret_to_user
861
Will Deacond54e81f2014-09-29 11:44:01 +0100862__ni_sys_trace:
863 mov x0, sp
864 bl do_ni_syscall
865 b __sys_trace_return
866
Pratyush Anand888b3c82016-07-08 12:35:50 -0400867 .popsection // .entry.text
868
Will Deacona329b062017-11-14 14:07:40 +0000869#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
870/*
871 * Exception vectors trampoline.
872 */
873 .pushsection ".entry.tramp.text", "ax"
874
875 .macro tramp_map_kernel, tmp
876 mrs \tmp, ttbr1_el1
877 sub \tmp, \tmp, #(SWAPPER_DIR_SIZE + RESERVED_TTBR0_SIZE)
878 bic \tmp, \tmp, #USER_ASID_FLAG
879 msr ttbr1_el1, \tmp
880 .endm
881
882 .macro tramp_unmap_kernel, tmp
883 mrs \tmp, ttbr1_el1
884 add \tmp, \tmp, #(SWAPPER_DIR_SIZE + RESERVED_TTBR0_SIZE)
885 orr \tmp, \tmp, #USER_ASID_FLAG
886 msr ttbr1_el1, \tmp
887 /*
888 * We avoid running the post_ttbr_update_workaround here because the
889 * user and kernel ASIDs don't have conflicting mappings, so any
890 * "blessing" as described in:
891 *
892 * http://lkml.kernel.org/r/56BB848A.6060603@caviumnetworks.com
893 *
894 * will not hurt correctness. Whilst this may partially defeat the
895 * point of using split ASIDs in the first place, it avoids
896 * the hit of invalidating the entire I-cache on every return to
897 * userspace.
898 */
899 .endm
900
901 .macro tramp_ventry, regsize = 64
902 .align 7
9031:
904 .if \regsize == 64
905 msr tpidrro_el0, x30 // Restored in kernel_ventry
906 .endif
907 tramp_map_kernel x30
908 ldr x30, =vectors
909 prfm plil1strm, [x30, #(1b - tramp_vectors)]
910 msr vbar_el1, x30
911 add x30, x30, #(1b - tramp_vectors)
912 isb
913 br x30
914 .endm
915
916 .macro tramp_exit, regsize = 64
917 adr x30, tramp_vectors
918 msr vbar_el1, x30
919 tramp_unmap_kernel x30
920 .if \regsize == 64
921 mrs x30, far_el1
922 .endif
923 eret
924 .endm
925
926 .align 11
927ENTRY(tramp_vectors)
928 .space 0x400
929
930 tramp_ventry
931 tramp_ventry
932 tramp_ventry
933 tramp_ventry
934
935 tramp_ventry 32
936 tramp_ventry 32
937 tramp_ventry 32
938 tramp_ventry 32
939END(tramp_vectors)
940
941ENTRY(tramp_exit_native)
942 tramp_exit
943END(tramp_exit_native)
944
945ENTRY(tramp_exit_compat)
946 tramp_exit 32
947END(tramp_exit_compat)
948
949 .ltorg
950 .popsection // .entry.tramp.text
951#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
952
Catalin Marinas60ffc302012-03-05 11:49:27 +0000953/*
954 * Special system call wrappers.
955 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000956ENTRY(sys_rt_sigreturn_wrapper)
957 mov x0, sp
958 b sys_rt_sigreturn
959ENDPROC(sys_rt_sigreturn_wrapper)