Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Low-level exception handling code |
| 3 | * |
| 4 | * Copyright (C) 2012 ARM Ltd. |
| 5 | * Authors: Catalin Marinas <catalin.marinas@arm.com> |
| 6 | * Will Deacon <will.deacon@arm.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 19 | */ |
| 20 | |
| 21 | #include <linux/init.h> |
| 22 | #include <linux/linkage.h> |
| 23 | |
Marc Zyngier | 8d883b2 | 2015-06-01 10:47:41 +0100 | [diff] [blame] | 24 | #include <asm/alternative.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 25 | #include <asm/assembler.h> |
| 26 | #include <asm/asm-offsets.h> |
Will Deacon | 905e8c5 | 2015-03-23 19:07:02 +0000 | [diff] [blame] | 27 | #include <asm/cpufeature.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 28 | #include <asm/errno.h> |
Marc Zyngier | 5c1ce6f | 2013-04-08 17:17:03 +0100 | [diff] [blame] | 29 | #include <asm/esr.h> |
James Morse | 8e23dac | 2015-12-04 11:02:27 +0000 | [diff] [blame] | 30 | #include <asm/irq.h> |
James Morse | e19a6ee | 2016-06-20 18:28:01 +0100 | [diff] [blame] | 31 | #include <asm/memory.h> |
Catalin Marinas | 39bc88e | 2016-09-02 14:54:03 +0100 | [diff] [blame] | 32 | #include <asm/ptrace.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 33 | #include <asm/thread_info.h> |
Al Viro | b4b8664 | 2016-12-26 04:10:19 -0500 | [diff] [blame] | 34 | #include <asm/asm-uaccess.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 35 | #include <asm/unistd.h> |
| 36 | |
| 37 | /* |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 38 | * Context tracking subsystem. Used to instrument transitions |
| 39 | * between user and kernel mode. |
| 40 | */ |
| 41 | .macro ct_user_exit, syscall = 0 |
| 42 | #ifdef CONFIG_CONTEXT_TRACKING |
| 43 | bl context_tracking_user_exit |
| 44 | .if \syscall == 1 |
| 45 | /* |
| 46 | * Save/restore needed during syscalls. Restore syscall arguments from |
| 47 | * the values already saved on stack during kernel_entry. |
| 48 | */ |
| 49 | ldp x0, x1, [sp] |
| 50 | ldp x2, x3, [sp, #S_X2] |
| 51 | ldp x4, x5, [sp, #S_X4] |
| 52 | ldp x6, x7, [sp, #S_X6] |
| 53 | .endif |
| 54 | #endif |
| 55 | .endm |
| 56 | |
| 57 | .macro ct_user_enter |
| 58 | #ifdef CONFIG_CONTEXT_TRACKING |
| 59 | bl context_tracking_user_enter |
| 60 | #endif |
| 61 | .endm |
| 62 | |
| 63 | /* |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 64 | * Bad Abort numbers |
| 65 | *----------------- |
| 66 | */ |
| 67 | #define BAD_SYNC 0 |
| 68 | #define BAD_IRQ 1 |
| 69 | #define BAD_FIQ 2 |
| 70 | #define BAD_ERROR 3 |
| 71 | |
| 72 | .macro kernel_entry, el, regsize = 64 |
Will Deacon | 63648dd | 2014-09-29 12:26:41 +0100 | [diff] [blame] | 73 | sub sp, sp, #S_FRAME_SIZE |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 74 | .if \regsize == 32 |
| 75 | mov w0, w0 // zero upper 32 bits of x0 |
| 76 | .endif |
Will Deacon | 63648dd | 2014-09-29 12:26:41 +0100 | [diff] [blame] | 77 | stp x0, x1, [sp, #16 * 0] |
| 78 | stp x2, x3, [sp, #16 * 1] |
| 79 | stp x4, x5, [sp, #16 * 2] |
| 80 | stp x6, x7, [sp, #16 * 3] |
| 81 | stp x8, x9, [sp, #16 * 4] |
| 82 | stp x10, x11, [sp, #16 * 5] |
| 83 | stp x12, x13, [sp, #16 * 6] |
| 84 | stp x14, x15, [sp, #16 * 7] |
| 85 | stp x16, x17, [sp, #16 * 8] |
| 86 | stp x18, x19, [sp, #16 * 9] |
| 87 | stp x20, x21, [sp, #16 * 10] |
| 88 | stp x22, x23, [sp, #16 * 11] |
| 89 | stp x24, x25, [sp, #16 * 12] |
| 90 | stp x26, x27, [sp, #16 * 13] |
| 91 | stp x28, x29, [sp, #16 * 14] |
| 92 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 93 | .if \el == 0 |
| 94 | mrs x21, sp_el0 |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 95 | ldr_this_cpu tsk, __entry_task, x20 // Ensure MDSCR_EL1.SS is clear, |
| 96 | ldr x19, [tsk, #TSK_TI_FLAGS] // since we can unmask debug |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 97 | disable_step_tsk x19, x20 // exceptions when scheduling. |
James Morse | 49003a8 | 2015-12-10 10:22:41 +0000 | [diff] [blame] | 98 | |
| 99 | mov x29, xzr // fp pointed to user-space |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 100 | .else |
| 101 | add x21, sp, #S_FRAME_SIZE |
James Morse | e19a6ee | 2016-06-20 18:28:01 +0100 | [diff] [blame] | 102 | get_thread_info tsk |
| 103 | /* Save the task's original addr_limit and set USER_DS (TASK_SIZE_64) */ |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 104 | ldr x20, [tsk, #TSK_TI_ADDR_LIMIT] |
James Morse | e19a6ee | 2016-06-20 18:28:01 +0100 | [diff] [blame] | 105 | str x20, [sp, #S_ORIG_ADDR_LIMIT] |
| 106 | mov x20, #TASK_SIZE_64 |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 107 | str x20, [tsk, #TSK_TI_ADDR_LIMIT] |
Vladimir Murzin | 563cada | 2016-09-01 14:35:59 +0100 | [diff] [blame] | 108 | /* No need to reset PSTATE.UAO, hardware's already set it to 0 for us */ |
James Morse | e19a6ee | 2016-06-20 18:28:01 +0100 | [diff] [blame] | 109 | .endif /* \el == 0 */ |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 110 | mrs x22, elr_el1 |
| 111 | mrs x23, spsr_el1 |
| 112 | stp lr, x21, [sp, #S_LR] |
Catalin Marinas | 39bc88e | 2016-09-02 14:54:03 +0100 | [diff] [blame] | 113 | |
| 114 | #ifdef CONFIG_ARM64_SW_TTBR0_PAN |
| 115 | /* |
| 116 | * Set the TTBR0 PAN bit in SPSR. When the exception is taken from |
| 117 | * EL0, there is no need to check the state of TTBR0_EL1 since |
| 118 | * accesses are always enabled. |
| 119 | * Note that the meaning of this bit differs from the ARMv8.1 PAN |
| 120 | * feature as all TTBR0_EL1 accesses are disabled, not just those to |
| 121 | * user mappings. |
| 122 | */ |
| 123 | alternative_if ARM64_HAS_PAN |
| 124 | b 1f // skip TTBR0 PAN |
| 125 | alternative_else_nop_endif |
| 126 | |
| 127 | .if \el != 0 |
| 128 | mrs x21, ttbr0_el1 |
| 129 | tst x21, #0xffff << 48 // Check for the reserved ASID |
| 130 | orr x23, x23, #PSR_PAN_BIT // Set the emulated PAN in the saved SPSR |
| 131 | b.eq 1f // TTBR0 access already disabled |
| 132 | and x23, x23, #~PSR_PAN_BIT // Clear the emulated PAN in the saved SPSR |
| 133 | .endif |
| 134 | |
| 135 | __uaccess_ttbr0_disable x21 |
| 136 | 1: |
| 137 | #endif |
| 138 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 139 | stp x22, x23, [sp, #S_PC] |
| 140 | |
| 141 | /* |
| 142 | * Set syscallno to -1 by default (overridden later if real syscall). |
| 143 | */ |
| 144 | .if \el == 0 |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 145 | mvn w21, wzr |
| 146 | str w21, [sp, #S_SYSCALLNO] |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 147 | .endif |
| 148 | |
| 149 | /* |
Jungseok Lee | 6cdf9c7 | 2015-12-04 11:02:25 +0000 | [diff] [blame] | 150 | * Set sp_el0 to current thread_info. |
| 151 | */ |
| 152 | .if \el == 0 |
| 153 | msr sp_el0, tsk |
| 154 | .endif |
| 155 | |
| 156 | /* |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 157 | * Registers that may be useful after this macro is invoked: |
| 158 | * |
| 159 | * x21 - aborted SP |
| 160 | * x22 - aborted PC |
| 161 | * x23 - aborted PSTATE |
| 162 | */ |
| 163 | .endm |
| 164 | |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 165 | .macro kernel_exit, el |
James Morse | e19a6ee | 2016-06-20 18:28:01 +0100 | [diff] [blame] | 166 | .if \el != 0 |
| 167 | /* Restore the task's original addr_limit. */ |
| 168 | ldr x20, [sp, #S_ORIG_ADDR_LIMIT] |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 169 | str x20, [tsk, #TSK_TI_ADDR_LIMIT] |
James Morse | e19a6ee | 2016-06-20 18:28:01 +0100 | [diff] [blame] | 170 | |
| 171 | /* No need to restore UAO, it will be restored from SPSR_EL1 */ |
| 172 | .endif |
| 173 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 174 | ldp x21, x22, [sp, #S_PC] // load ELR, SPSR |
| 175 | .if \el == 0 |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 176 | ct_user_enter |
Catalin Marinas | 39bc88e | 2016-09-02 14:54:03 +0100 | [diff] [blame] | 177 | .endif |
| 178 | |
| 179 | #ifdef CONFIG_ARM64_SW_TTBR0_PAN |
| 180 | /* |
| 181 | * Restore access to TTBR0_EL1. If returning to EL0, no need for SPSR |
| 182 | * PAN bit checking. |
| 183 | */ |
| 184 | alternative_if ARM64_HAS_PAN |
| 185 | b 2f // skip TTBR0 PAN |
| 186 | alternative_else_nop_endif |
| 187 | |
| 188 | .if \el != 0 |
| 189 | tbnz x22, #22, 1f // Skip re-enabling TTBR0 access if the PSR_PAN_BIT is set |
| 190 | .endif |
| 191 | |
| 192 | __uaccess_ttbr0_enable x0 |
| 193 | |
| 194 | .if \el == 0 |
| 195 | /* |
| 196 | * Enable errata workarounds only if returning to user. The only |
| 197 | * workaround currently required for TTBR0_EL1 changes are for the |
| 198 | * Cavium erratum 27456 (broadcast TLBI instructions may cause I-cache |
| 199 | * corruption). |
| 200 | */ |
| 201 | post_ttbr0_update_workaround |
| 202 | .endif |
| 203 | 1: |
| 204 | .if \el != 0 |
| 205 | and x22, x22, #~PSR_PAN_BIT // ARMv8.0 CPUs do not understand this bit |
| 206 | .endif |
| 207 | 2: |
| 208 | #endif |
| 209 | |
| 210 | .if \el == 0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 211 | ldr x23, [sp, #S_SP] // load return stack pointer |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 212 | msr sp_el0, x23 |
Will Deacon | 905e8c5 | 2015-03-23 19:07:02 +0000 | [diff] [blame] | 213 | #ifdef CONFIG_ARM64_ERRATUM_845719 |
Mark Rutland | 6ba3b55 | 2016-09-07 11:07:09 +0100 | [diff] [blame] | 214 | alternative_if ARM64_WORKAROUND_845719 |
Daniel Thompson | e28cabf | 2015-07-22 12:21:03 +0100 | [diff] [blame] | 215 | tbz x22, #4, 1f |
| 216 | #ifdef CONFIG_PID_IN_CONTEXTIDR |
| 217 | mrs x29, contextidr_el1 |
| 218 | msr contextidr_el1, x29 |
| 219 | #else |
| 220 | msr contextidr_el1, xzr |
| 221 | #endif |
| 222 | 1: |
Mark Rutland | 6ba3b55 | 2016-09-07 11:07:09 +0100 | [diff] [blame] | 223 | alternative_else_nop_endif |
Will Deacon | 905e8c5 | 2015-03-23 19:07:02 +0000 | [diff] [blame] | 224 | #endif |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 225 | .endif |
Catalin Marinas | 39bc88e | 2016-09-02 14:54:03 +0100 | [diff] [blame] | 226 | |
Will Deacon | 63648dd | 2014-09-29 12:26:41 +0100 | [diff] [blame] | 227 | msr elr_el1, x21 // set up the return data |
| 228 | msr spsr_el1, x22 |
Will Deacon | 63648dd | 2014-09-29 12:26:41 +0100 | [diff] [blame] | 229 | ldp x0, x1, [sp, #16 * 0] |
Will Deacon | 63648dd | 2014-09-29 12:26:41 +0100 | [diff] [blame] | 230 | ldp x2, x3, [sp, #16 * 1] |
| 231 | ldp x4, x5, [sp, #16 * 2] |
| 232 | ldp x6, x7, [sp, #16 * 3] |
| 233 | ldp x8, x9, [sp, #16 * 4] |
| 234 | ldp x10, x11, [sp, #16 * 5] |
| 235 | ldp x12, x13, [sp, #16 * 6] |
| 236 | ldp x14, x15, [sp, #16 * 7] |
| 237 | ldp x16, x17, [sp, #16 * 8] |
| 238 | ldp x18, x19, [sp, #16 * 9] |
| 239 | ldp x20, x21, [sp, #16 * 10] |
| 240 | ldp x22, x23, [sp, #16 * 11] |
| 241 | ldp x24, x25, [sp, #16 * 12] |
| 242 | ldp x26, x27, [sp, #16 * 13] |
| 243 | ldp x28, x29, [sp, #16 * 14] |
| 244 | ldr lr, [sp, #S_LR] |
| 245 | add sp, sp, #S_FRAME_SIZE // restore sp |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 246 | eret // return to kernel |
| 247 | .endm |
| 248 | |
James Morse | 971c67c | 2015-12-15 11:21:25 +0000 | [diff] [blame] | 249 | .macro irq_stack_entry |
James Morse | 8e23dac | 2015-12-04 11:02:27 +0000 | [diff] [blame] | 250 | mov x19, sp // preserve the original sp |
| 251 | |
James Morse | 8e23dac | 2015-12-04 11:02:27 +0000 | [diff] [blame] | 252 | /* |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 253 | * Compare sp with the base of the task stack. |
| 254 | * If the top ~(THREAD_SIZE - 1) bits match, we are on a task stack, |
| 255 | * and should switch to the irq stack. |
James Morse | 8e23dac | 2015-12-04 11:02:27 +0000 | [diff] [blame] | 256 | */ |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 257 | ldr x25, [tsk, TSK_STACK] |
| 258 | eor x25, x25, x19 |
| 259 | and x25, x25, #~(THREAD_SIZE - 1) |
| 260 | cbnz x25, 9998f |
James Morse | 8e23dac | 2015-12-04 11:02:27 +0000 | [diff] [blame] | 261 | |
Mark Rutland | 1b7e229 | 2016-11-03 20:23:12 +0000 | [diff] [blame] | 262 | adr_this_cpu x25, irq_stack, x26 |
James Morse | 8e23dac | 2015-12-04 11:02:27 +0000 | [diff] [blame] | 263 | mov x26, #IRQ_STACK_START_SP |
| 264 | add x26, x25, x26 |
James Morse | d224a69 | 2015-12-18 16:01:47 +0000 | [diff] [blame] | 265 | |
| 266 | /* switch to the irq stack */ |
James Morse | 8e23dac | 2015-12-04 11:02:27 +0000 | [diff] [blame] | 267 | mov sp, x26 |
| 268 | |
James Morse | 971c67c | 2015-12-15 11:21:25 +0000 | [diff] [blame] | 269 | /* |
| 270 | * Add a dummy stack frame, this non-standard format is fixed up |
| 271 | * by unwind_frame() |
| 272 | */ |
| 273 | stp x29, x19, [sp, #-16]! |
James Morse | 8e23dac | 2015-12-04 11:02:27 +0000 | [diff] [blame] | 274 | mov x29, sp |
James Morse | 8e23dac | 2015-12-04 11:02:27 +0000 | [diff] [blame] | 275 | |
| 276 | 9998: |
| 277 | .endm |
| 278 | |
| 279 | /* |
| 280 | * x19 should be preserved between irq_stack_entry and |
| 281 | * irq_stack_exit. |
| 282 | */ |
| 283 | .macro irq_stack_exit |
| 284 | mov sp, x19 |
| 285 | .endm |
| 286 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 287 | /* |
| 288 | * These are the registers used in the syscall handler, and allow us to |
| 289 | * have in theory up to 7 arguments to a function - x0 to x6. |
| 290 | * |
| 291 | * x7 is reserved for the system call number in 32-bit mode. |
| 292 | */ |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 293 | wsc_nr .req w25 // number of system calls |
| 294 | wscno .req w26 // syscall number |
| 295 | xscno .req x26 // syscall number (zero-extended) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 296 | stbl .req x27 // syscall table pointer |
| 297 | tsk .req x28 // current thread_info |
| 298 | |
| 299 | /* |
| 300 | * Interrupt handling. |
| 301 | */ |
| 302 | .macro irq_handler |
James Morse | 8e23dac | 2015-12-04 11:02:27 +0000 | [diff] [blame] | 303 | ldr_l x1, handle_arch_irq |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 304 | mov x0, sp |
James Morse | 971c67c | 2015-12-15 11:21:25 +0000 | [diff] [blame] | 305 | irq_stack_entry |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 306 | blr x1 |
James Morse | 8e23dac | 2015-12-04 11:02:27 +0000 | [diff] [blame] | 307 | irq_stack_exit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 308 | .endm |
| 309 | |
| 310 | .text |
| 311 | |
| 312 | /* |
| 313 | * Exception vectors. |
| 314 | */ |
Pratyush Anand | 888b3c8 | 2016-07-08 12:35:50 -0400 | [diff] [blame] | 315 | .pushsection ".entry.text", "ax" |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 316 | |
| 317 | .align 11 |
| 318 | ENTRY(vectors) |
| 319 | ventry el1_sync_invalid // Synchronous EL1t |
| 320 | ventry el1_irq_invalid // IRQ EL1t |
| 321 | ventry el1_fiq_invalid // FIQ EL1t |
| 322 | ventry el1_error_invalid // Error EL1t |
| 323 | |
| 324 | ventry el1_sync // Synchronous EL1h |
| 325 | ventry el1_irq // IRQ EL1h |
| 326 | ventry el1_fiq_invalid // FIQ EL1h |
| 327 | ventry el1_error_invalid // Error EL1h |
| 328 | |
| 329 | ventry el0_sync // Synchronous 64-bit EL0 |
| 330 | ventry el0_irq // IRQ 64-bit EL0 |
| 331 | ventry el0_fiq_invalid // FIQ 64-bit EL0 |
| 332 | ventry el0_error_invalid // Error 64-bit EL0 |
| 333 | |
| 334 | #ifdef CONFIG_COMPAT |
| 335 | ventry el0_sync_compat // Synchronous 32-bit EL0 |
| 336 | ventry el0_irq_compat // IRQ 32-bit EL0 |
| 337 | ventry el0_fiq_invalid_compat // FIQ 32-bit EL0 |
| 338 | ventry el0_error_invalid_compat // Error 32-bit EL0 |
| 339 | #else |
| 340 | ventry el0_sync_invalid // Synchronous 32-bit EL0 |
| 341 | ventry el0_irq_invalid // IRQ 32-bit EL0 |
| 342 | ventry el0_fiq_invalid // FIQ 32-bit EL0 |
| 343 | ventry el0_error_invalid // Error 32-bit EL0 |
| 344 | #endif |
| 345 | END(vectors) |
| 346 | |
| 347 | /* |
| 348 | * Invalid mode handlers |
| 349 | */ |
| 350 | .macro inv_entry, el, reason, regsize = 64 |
Ard Biesheuvel | b660950 | 2016-03-18 10:58:09 +0100 | [diff] [blame] | 351 | kernel_entry \el, \regsize |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 352 | mov x0, sp |
| 353 | mov x1, #\reason |
| 354 | mrs x2, esr_el1 |
| 355 | b bad_mode |
| 356 | .endm |
| 357 | |
| 358 | el0_sync_invalid: |
| 359 | inv_entry 0, BAD_SYNC |
| 360 | ENDPROC(el0_sync_invalid) |
| 361 | |
| 362 | el0_irq_invalid: |
| 363 | inv_entry 0, BAD_IRQ |
| 364 | ENDPROC(el0_irq_invalid) |
| 365 | |
| 366 | el0_fiq_invalid: |
| 367 | inv_entry 0, BAD_FIQ |
| 368 | ENDPROC(el0_fiq_invalid) |
| 369 | |
| 370 | el0_error_invalid: |
| 371 | inv_entry 0, BAD_ERROR |
| 372 | ENDPROC(el0_error_invalid) |
| 373 | |
| 374 | #ifdef CONFIG_COMPAT |
| 375 | el0_fiq_invalid_compat: |
| 376 | inv_entry 0, BAD_FIQ, 32 |
| 377 | ENDPROC(el0_fiq_invalid_compat) |
| 378 | |
| 379 | el0_error_invalid_compat: |
| 380 | inv_entry 0, BAD_ERROR, 32 |
| 381 | ENDPROC(el0_error_invalid_compat) |
| 382 | #endif |
| 383 | |
| 384 | el1_sync_invalid: |
| 385 | inv_entry 1, BAD_SYNC |
| 386 | ENDPROC(el1_sync_invalid) |
| 387 | |
| 388 | el1_irq_invalid: |
| 389 | inv_entry 1, BAD_IRQ |
| 390 | ENDPROC(el1_irq_invalid) |
| 391 | |
| 392 | el1_fiq_invalid: |
| 393 | inv_entry 1, BAD_FIQ |
| 394 | ENDPROC(el1_fiq_invalid) |
| 395 | |
| 396 | el1_error_invalid: |
| 397 | inv_entry 1, BAD_ERROR |
| 398 | ENDPROC(el1_error_invalid) |
| 399 | |
| 400 | /* |
| 401 | * EL1 mode handlers. |
| 402 | */ |
| 403 | .align 6 |
| 404 | el1_sync: |
| 405 | kernel_entry 1 |
| 406 | mrs x1, esr_el1 // read the syndrome register |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 407 | lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class |
| 408 | cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 409 | b.eq el1_da |
Laura Abbott | 9adeb8e | 2016-08-09 18:25:26 -0700 | [diff] [blame] | 410 | cmp x24, #ESR_ELx_EC_IABT_CUR // instruction abort in EL1 |
| 411 | b.eq el1_ia |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 412 | cmp x24, #ESR_ELx_EC_SYS64 // configurable trap |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 413 | b.eq el1_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 414 | cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 415 | b.eq el1_sp_pc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 416 | cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 417 | b.eq el1_sp_pc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 418 | cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 419 | b.eq el1_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 420 | cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 421 | b.ge el1_dbg |
| 422 | b el1_inv |
Laura Abbott | 9adeb8e | 2016-08-09 18:25:26 -0700 | [diff] [blame] | 423 | |
| 424 | el1_ia: |
| 425 | /* |
| 426 | * Fall through to the Data abort case |
| 427 | */ |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 428 | el1_da: |
| 429 | /* |
| 430 | * Data abort handling |
| 431 | */ |
Kristina Martsenko | 276e932 | 2017-05-03 16:37:47 +0100 | [diff] [blame] | 432 | mrs x3, far_el1 |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 433 | enable_dbg |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 434 | // re-enable interrupts if they were enabled in the aborted context |
| 435 | tbnz x23, #7, 1f // PSR_I_BIT |
| 436 | enable_irq |
| 437 | 1: |
Kristina Martsenko | 276e932 | 2017-05-03 16:37:47 +0100 | [diff] [blame] | 438 | clear_address_tag x0, x3 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 439 | mov x2, sp // struct pt_regs |
| 440 | bl do_mem_abort |
| 441 | |
| 442 | // disable interrupts before pulling preserved data off the stack |
| 443 | disable_irq |
| 444 | kernel_exit 1 |
| 445 | el1_sp_pc: |
| 446 | /* |
| 447 | * Stack or PC alignment exception handling |
| 448 | */ |
| 449 | mrs x0, far_el1 |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 450 | enable_dbg |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 451 | mov x2, sp |
| 452 | b do_sp_pc_abort |
| 453 | el1_undef: |
| 454 | /* |
| 455 | * Undefined instruction |
| 456 | */ |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 457 | enable_dbg |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 458 | mov x0, sp |
| 459 | b do_undefinstr |
| 460 | el1_dbg: |
| 461 | /* |
| 462 | * Debug exception handling |
| 463 | */ |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 464 | cmp x24, #ESR_ELx_EC_BRK64 // if BRK64 |
Sandeepa Prabhu | ee6214c | 2013-12-04 05:50:20 +0000 | [diff] [blame] | 465 | cinc x24, x24, eq // set bit '0' |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 466 | tbz x24, #0, el1_inv // EL1 only |
| 467 | mrs x0, far_el1 |
| 468 | mov x2, sp // struct pt_regs |
| 469 | bl do_debug_exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 470 | kernel_exit 1 |
| 471 | el1_inv: |
| 472 | // TODO: add support for undefined instructions in kernel mode |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 473 | enable_dbg |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 474 | mov x0, sp |
Mark Rutland | 1b42804 | 2015-07-07 18:00:49 +0100 | [diff] [blame] | 475 | mov x2, x1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 476 | mov x1, #BAD_SYNC |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 477 | b bad_mode |
| 478 | ENDPROC(el1_sync) |
| 479 | |
| 480 | .align 6 |
| 481 | el1_irq: |
| 482 | kernel_entry 1 |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 483 | enable_dbg |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 484 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 485 | bl trace_hardirqs_off |
| 486 | #endif |
Marc Zyngier | 6468178 | 2013-11-12 17:11:53 +0000 | [diff] [blame] | 487 | |
| 488 | irq_handler |
| 489 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 490 | #ifdef CONFIG_PREEMPT |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 491 | ldr w24, [tsk, #TSK_TI_PREEMPT] // get preempt count |
Marc Zyngier | 717321f | 2013-11-04 20:14:58 +0000 | [diff] [blame] | 492 | cbnz w24, 1f // preempt count != 0 |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 493 | ldr x0, [tsk, #TSK_TI_FLAGS] // get flags |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 494 | tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling? |
| 495 | bl el1_preempt |
| 496 | 1: |
| 497 | #endif |
| 498 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 499 | bl trace_hardirqs_on |
| 500 | #endif |
| 501 | kernel_exit 1 |
| 502 | ENDPROC(el1_irq) |
| 503 | |
| 504 | #ifdef CONFIG_PREEMPT |
| 505 | el1_preempt: |
| 506 | mov x24, lr |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 507 | 1: bl preempt_schedule_irq // irq en/disable is done inside |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 508 | ldr x0, [tsk, #TSK_TI_FLAGS] // get new tasks TI_FLAGS |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 509 | tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling? |
| 510 | ret x24 |
| 511 | #endif |
| 512 | |
| 513 | /* |
| 514 | * EL0 mode handlers. |
| 515 | */ |
| 516 | .align 6 |
| 517 | el0_sync: |
| 518 | kernel_entry 0 |
| 519 | mrs x25, esr_el1 // read the syndrome register |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 520 | lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class |
| 521 | cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 522 | b.eq el0_svc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 523 | cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 524 | b.eq el0_da |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 525 | cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 526 | b.eq el0_ia |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 527 | cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 528 | b.eq el0_fpsimd_acc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 529 | cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 530 | b.eq el0_fpsimd_exc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 531 | cmp x24, #ESR_ELx_EC_SYS64 // configurable trap |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 532 | b.eq el0_sys |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 533 | cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 534 | b.eq el0_sp_pc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 535 | cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 536 | b.eq el0_sp_pc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 537 | cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 538 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 539 | cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 540 | b.ge el0_dbg |
| 541 | b el0_inv |
| 542 | |
| 543 | #ifdef CONFIG_COMPAT |
| 544 | .align 6 |
| 545 | el0_sync_compat: |
| 546 | kernel_entry 0, 32 |
| 547 | mrs x25, esr_el1 // read the syndrome register |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 548 | lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class |
| 549 | cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 550 | b.eq el0_svc_compat |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 551 | cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 552 | b.eq el0_da |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 553 | cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 554 | b.eq el0_ia |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 555 | cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 556 | b.eq el0_fpsimd_acc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 557 | cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 558 | b.eq el0_fpsimd_exc |
Mark Salyzyn | 77f3228f | 2015-10-13 14:30:51 -0700 | [diff] [blame] | 559 | cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception |
| 560 | b.eq el0_sp_pc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 561 | cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 562 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 563 | cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap |
Mark Rutland | 381cc2b | 2013-05-24 12:02:35 +0100 | [diff] [blame] | 564 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 565 | cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap |
Mark Rutland | 381cc2b | 2013-05-24 12:02:35 +0100 | [diff] [blame] | 566 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 567 | cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap |
Mark Rutland | 381cc2b | 2013-05-24 12:02:35 +0100 | [diff] [blame] | 568 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 569 | cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap |
Mark Rutland | 381cc2b | 2013-05-24 12:02:35 +0100 | [diff] [blame] | 570 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 571 | cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap |
Mark Rutland | 381cc2b | 2013-05-24 12:02:35 +0100 | [diff] [blame] | 572 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 573 | cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 574 | b.ge el0_dbg |
| 575 | b el0_inv |
| 576 | el0_svc_compat: |
| 577 | /* |
| 578 | * AArch32 syscall handling |
| 579 | */ |
Catalin Marinas | 0156411 | 2015-01-06 16:42:32 +0000 | [diff] [blame] | 580 | adrp stbl, compat_sys_call_table // load compat syscall table pointer |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 581 | mov wscno, w7 // syscall number in w7 (r7) |
| 582 | mov wsc_nr, #__NR_compat_syscalls |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 583 | b el0_svc_naked |
| 584 | |
| 585 | .align 6 |
| 586 | el0_irq_compat: |
| 587 | kernel_entry 0, 32 |
| 588 | b el0_irq_naked |
| 589 | #endif |
| 590 | |
| 591 | el0_da: |
| 592 | /* |
| 593 | * Data abort handling |
| 594 | */ |
Larry Bassel | 6ab6463 | 2014-05-30 20:34:14 +0100 | [diff] [blame] | 595 | mrs x26, far_el1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 596 | // enable interrupts before calling the main handler |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 597 | enable_dbg_and_irq |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 598 | ct_user_exit |
Kristina Martsenko | 276e932 | 2017-05-03 16:37:47 +0100 | [diff] [blame] | 599 | clear_address_tag x0, x26 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 600 | mov x1, x25 |
| 601 | mov x2, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 602 | bl do_mem_abort |
| 603 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 604 | el0_ia: |
| 605 | /* |
| 606 | * Instruction abort handling |
| 607 | */ |
Larry Bassel | 6ab6463 | 2014-05-30 20:34:14 +0100 | [diff] [blame] | 608 | mrs x26, far_el1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 609 | // enable interrupts before calling the main handler |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 610 | enable_dbg_and_irq |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 611 | ct_user_exit |
Larry Bassel | 6ab6463 | 2014-05-30 20:34:14 +0100 | [diff] [blame] | 612 | mov x0, x26 |
Mark Rutland | 541ec87 | 2016-05-31 12:33:03 +0100 | [diff] [blame] | 613 | mov x1, x25 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 614 | mov x2, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 615 | bl do_mem_abort |
| 616 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 617 | el0_fpsimd_acc: |
| 618 | /* |
| 619 | * Floating Point or Advanced SIMD access |
| 620 | */ |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 621 | enable_dbg |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 622 | ct_user_exit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 623 | mov x0, x25 |
| 624 | mov x1, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 625 | bl do_fpsimd_acc |
| 626 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 627 | el0_fpsimd_exc: |
| 628 | /* |
| 629 | * Floating Point or Advanced SIMD exception |
| 630 | */ |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 631 | enable_dbg |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 632 | ct_user_exit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 633 | mov x0, x25 |
| 634 | mov x1, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 635 | bl do_fpsimd_exc |
| 636 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 637 | el0_sp_pc: |
| 638 | /* |
| 639 | * Stack or PC alignment exception handling |
| 640 | */ |
Larry Bassel | 6ab6463 | 2014-05-30 20:34:14 +0100 | [diff] [blame] | 641 | mrs x26, far_el1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 642 | // enable interrupts before calling the main handler |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 643 | enable_dbg_and_irq |
Mark Rutland | 46b0567 | 2015-06-15 16:40:27 +0100 | [diff] [blame] | 644 | ct_user_exit |
Larry Bassel | 6ab6463 | 2014-05-30 20:34:14 +0100 | [diff] [blame] | 645 | mov x0, x26 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 646 | mov x1, x25 |
| 647 | mov x2, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 648 | bl do_sp_pc_abort |
| 649 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 650 | el0_undef: |
| 651 | /* |
| 652 | * Undefined instruction |
| 653 | */ |
Catalin Marinas | 2600e13 | 2013-08-22 11:47:37 +0100 | [diff] [blame] | 654 | // enable interrupts before calling the main handler |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 655 | enable_dbg_and_irq |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 656 | ct_user_exit |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 657 | mov x0, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 658 | bl do_undefinstr |
| 659 | b ret_to_user |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 660 | el0_sys: |
| 661 | /* |
| 662 | * System instructions, for trapped cache maintenance instructions |
| 663 | */ |
| 664 | enable_dbg_and_irq |
| 665 | ct_user_exit |
| 666 | mov x0, x25 |
| 667 | mov x1, sp |
| 668 | bl do_sysinstr |
| 669 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 670 | el0_dbg: |
| 671 | /* |
| 672 | * Debug exception handling |
| 673 | */ |
| 674 | tbnz x24, #0, el0_inv // EL0 only |
| 675 | mrs x0, far_el1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 676 | mov x1, x25 |
| 677 | mov x2, sp |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 678 | bl do_debug_exception |
| 679 | enable_dbg |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 680 | ct_user_exit |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 681 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 682 | el0_inv: |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 683 | enable_dbg |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 684 | ct_user_exit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 685 | mov x0, sp |
| 686 | mov x1, #BAD_SYNC |
Mark Rutland | 1b42804 | 2015-07-07 18:00:49 +0100 | [diff] [blame] | 687 | mov x2, x25 |
Mark Rutland | 7d9e8f7 | 2017-01-18 17:23:41 +0000 | [diff] [blame] | 688 | bl bad_el0_sync |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 689 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 690 | ENDPROC(el0_sync) |
| 691 | |
| 692 | .align 6 |
| 693 | el0_irq: |
| 694 | kernel_entry 0 |
| 695 | el0_irq_naked: |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 696 | enable_dbg |
| 697 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 698 | bl trace_hardirqs_off |
| 699 | #endif |
Marc Zyngier | 6468178 | 2013-11-12 17:11:53 +0000 | [diff] [blame] | 700 | |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 701 | ct_user_exit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 702 | irq_handler |
Marc Zyngier | 6468178 | 2013-11-12 17:11:53 +0000 | [diff] [blame] | 703 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 704 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 705 | bl trace_hardirqs_on |
| 706 | #endif |
| 707 | b ret_to_user |
| 708 | ENDPROC(el0_irq) |
| 709 | |
| 710 | /* |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 711 | * Register switch for AArch64. The callee-saved registers need to be saved |
| 712 | * and restored. On entry: |
| 713 | * x0 = previous task_struct (must be preserved across the switch) |
| 714 | * x1 = next task_struct |
| 715 | * Previous and next are guaranteed not to be the same. |
| 716 | * |
| 717 | */ |
| 718 | ENTRY(cpu_switch_to) |
Will Deacon | c0d3fce | 2015-07-20 15:14:53 +0100 | [diff] [blame] | 719 | mov x10, #THREAD_CPU_CONTEXT |
| 720 | add x8, x0, x10 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 721 | mov x9, sp |
| 722 | stp x19, x20, [x8], #16 // store callee-saved registers |
| 723 | stp x21, x22, [x8], #16 |
| 724 | stp x23, x24, [x8], #16 |
| 725 | stp x25, x26, [x8], #16 |
| 726 | stp x27, x28, [x8], #16 |
| 727 | stp x29, x9, [x8], #16 |
| 728 | str lr, [x8] |
Will Deacon | c0d3fce | 2015-07-20 15:14:53 +0100 | [diff] [blame] | 729 | add x8, x1, x10 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 730 | ldp x19, x20, [x8], #16 // restore callee-saved registers |
| 731 | ldp x21, x22, [x8], #16 |
| 732 | ldp x23, x24, [x8], #16 |
| 733 | ldp x25, x26, [x8], #16 |
| 734 | ldp x27, x28, [x8], #16 |
| 735 | ldp x29, x9, [x8], #16 |
| 736 | ldr lr, [x8] |
| 737 | mov sp, x9 |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 738 | msr sp_el0, x1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 739 | ret |
| 740 | ENDPROC(cpu_switch_to) |
| 741 | |
| 742 | /* |
| 743 | * This is the fast syscall return path. We do as little as possible here, |
| 744 | * and this includes saving x0 back into the kernel stack. |
| 745 | */ |
| 746 | ret_fast_syscall: |
| 747 | disable_irq // disable interrupts |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 748 | str x0, [sp, #S_X0] // returned x0 |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 749 | ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for syscall tracing |
Josh Stone | 04d7e09 | 2015-06-05 14:28:03 -0700 | [diff] [blame] | 750 | and x2, x1, #_TIF_SYSCALL_WORK |
| 751 | cbnz x2, ret_fast_syscall_trace |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 752 | and x2, x1, #_TIF_WORK_MASK |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 753 | cbnz x2, work_pending |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 754 | enable_step_tsk x1, x2 |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 755 | kernel_exit 0 |
Josh Stone | 04d7e09 | 2015-06-05 14:28:03 -0700 | [diff] [blame] | 756 | ret_fast_syscall_trace: |
| 757 | enable_irq // enable interrupts |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 758 | b __sys_trace_return_skipped // we already saved x0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 759 | |
| 760 | /* |
| 761 | * Ok, we need to do extra processing, enter the slow path. |
| 762 | */ |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 763 | work_pending: |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 764 | mov x0, sp // 'regs' |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 765 | bl do_notify_resume |
Catalin Marinas | db3899a | 2015-12-04 12:42:29 +0000 | [diff] [blame] | 766 | #ifdef CONFIG_TRACE_IRQFLAGS |
Chris Metcalf | 421dd6f | 2016-07-14 16:48:14 -0400 | [diff] [blame] | 767 | bl trace_hardirqs_on // enabled while in userspace |
Catalin Marinas | db3899a | 2015-12-04 12:42:29 +0000 | [diff] [blame] | 768 | #endif |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 769 | ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for single-step |
Chris Metcalf | 421dd6f | 2016-07-14 16:48:14 -0400 | [diff] [blame] | 770 | b finish_ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 771 | /* |
| 772 | * "slow" syscall return path. |
| 773 | */ |
Catalin Marinas | 59dc67b | 2012-09-10 16:11:46 +0100 | [diff] [blame] | 774 | ret_to_user: |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 775 | disable_irq // disable interrupts |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 776 | ldr x1, [tsk, #TSK_TI_FLAGS] |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 777 | and x2, x1, #_TIF_WORK_MASK |
| 778 | cbnz x2, work_pending |
Chris Metcalf | 421dd6f | 2016-07-14 16:48:14 -0400 | [diff] [blame] | 779 | finish_ret_to_user: |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 780 | enable_step_tsk x1, x2 |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 781 | kernel_exit 0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 782 | ENDPROC(ret_to_user) |
| 783 | |
| 784 | /* |
| 785 | * This is how we return from a fork. |
| 786 | */ |
| 787 | ENTRY(ret_from_fork) |
| 788 | bl schedule_tail |
Catalin Marinas | c34501d | 2012-10-05 12:31:20 +0100 | [diff] [blame] | 789 | cbz x19, 1f // not a kernel thread |
| 790 | mov x0, x20 |
| 791 | blr x19 |
| 792 | 1: get_thread_info tsk |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 793 | b ret_to_user |
| 794 | ENDPROC(ret_from_fork) |
| 795 | |
| 796 | /* |
| 797 | * SVC handler. |
| 798 | */ |
| 799 | .align 6 |
| 800 | el0_svc: |
| 801 | adrp stbl, sys_call_table // load syscall table pointer |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 802 | mov wscno, w8 // syscall number in w8 |
| 803 | mov wsc_nr, #__NR_syscalls |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 804 | el0_svc_naked: // compat entry point |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 805 | stp x0, xscno, [sp, #S_ORIG_X0] // save the original x0 and syscall number |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 806 | enable_dbg_and_irq |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 807 | ct_user_exit 1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 808 | |
Mark Rutland | c02433d | 2016-11-03 20:23:13 +0000 | [diff] [blame] | 809 | ldr x16, [tsk, #TSK_TI_FLAGS] // check for syscall hooks |
AKASHI Takahiro | 449f81a | 2014-04-30 10:51:29 +0100 | [diff] [blame] | 810 | tst x16, #_TIF_SYSCALL_WORK |
| 811 | b.ne __sys_trace |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 812 | cmp wscno, wsc_nr // check upper syscall limit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 813 | b.hs ni_sys |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 814 | ldr x16, [stbl, xscno, lsl #3] // address in the syscall table |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 815 | blr x16 // call sys_* routine |
| 816 | b ret_fast_syscall |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 817 | ni_sys: |
| 818 | mov x0, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 819 | bl do_ni_syscall |
| 820 | b ret_fast_syscall |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 821 | ENDPROC(el0_svc) |
| 822 | |
| 823 | /* |
| 824 | * This is the really slow path. We're going to be doing context |
| 825 | * switches, and waiting for our parent to respond. |
| 826 | */ |
| 827 | __sys_trace: |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 828 | cmp wscno, #-1 // user-issued syscall(-1)? |
AKASHI Takahiro | 1014c81 | 2014-11-28 05:26:35 +0000 | [diff] [blame] | 829 | b.ne 1f |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 830 | mov x0, #-ENOSYS // set default errno if so |
AKASHI Takahiro | 1014c81 | 2014-11-28 05:26:35 +0000 | [diff] [blame] | 831 | str x0, [sp, #S_X0] |
| 832 | 1: mov x0, sp |
AKASHI Takahiro | 3157858f | 2014-04-30 10:51:30 +0100 | [diff] [blame] | 833 | bl syscall_trace_enter |
AKASHI Takahiro | 1014c81 | 2014-11-28 05:26:35 +0000 | [diff] [blame] | 834 | cmp w0, #-1 // skip the syscall? |
| 835 | b.eq __sys_trace_return_skipped |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 836 | mov wscno, w0 // syscall number (possibly new) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 837 | mov x1, sp // pointer to regs |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 838 | cmp wscno, wsc_nr // check upper syscall limit |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 839 | b.hs __ni_sys_trace |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 840 | ldp x0, x1, [sp] // restore the syscall args |
| 841 | ldp x2, x3, [sp, #S_X2] |
| 842 | ldp x4, x5, [sp, #S_X4] |
| 843 | ldp x6, x7, [sp, #S_X6] |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame^] | 844 | ldr x16, [stbl, xscno, lsl #3] // address in the syscall table |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 845 | blr x16 // call sys_* routine |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 846 | |
| 847 | __sys_trace_return: |
AKASHI Takahiro | 1014c81 | 2014-11-28 05:26:35 +0000 | [diff] [blame] | 848 | str x0, [sp, #S_X0] // save returned x0 |
| 849 | __sys_trace_return_skipped: |
AKASHI Takahiro | 3157858f | 2014-04-30 10:51:30 +0100 | [diff] [blame] | 850 | mov x0, sp |
| 851 | bl syscall_trace_exit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 852 | b ret_to_user |
| 853 | |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 854 | __ni_sys_trace: |
| 855 | mov x0, sp |
| 856 | bl do_ni_syscall |
| 857 | b __sys_trace_return |
| 858 | |
Pratyush Anand | 888b3c8 | 2016-07-08 12:35:50 -0400 | [diff] [blame] | 859 | .popsection // .entry.text |
| 860 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 861 | /* |
| 862 | * Special system call wrappers. |
| 863 | */ |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 864 | ENTRY(sys_rt_sigreturn_wrapper) |
| 865 | mov x0, sp |
| 866 | b sys_rt_sigreturn |
| 867 | ENDPROC(sys_rt_sigreturn_wrapper) |