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> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 30 | #include <asm/thread_info.h> |
| 31 | #include <asm/unistd.h> |
| 32 | |
| 33 | /* |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 34 | * Context tracking subsystem. Used to instrument transitions |
| 35 | * between user and kernel mode. |
| 36 | */ |
| 37 | .macro ct_user_exit, syscall = 0 |
| 38 | #ifdef CONFIG_CONTEXT_TRACKING |
| 39 | bl context_tracking_user_exit |
| 40 | .if \syscall == 1 |
| 41 | /* |
| 42 | * Save/restore needed during syscalls. Restore syscall arguments from |
| 43 | * the values already saved on stack during kernel_entry. |
| 44 | */ |
| 45 | ldp x0, x1, [sp] |
| 46 | ldp x2, x3, [sp, #S_X2] |
| 47 | ldp x4, x5, [sp, #S_X4] |
| 48 | ldp x6, x7, [sp, #S_X6] |
| 49 | .endif |
| 50 | #endif |
| 51 | .endm |
| 52 | |
| 53 | .macro ct_user_enter |
| 54 | #ifdef CONFIG_CONTEXT_TRACKING |
| 55 | bl context_tracking_user_enter |
| 56 | #endif |
| 57 | .endm |
| 58 | |
| 59 | /* |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 60 | * Bad Abort numbers |
| 61 | *----------------- |
| 62 | */ |
| 63 | #define BAD_SYNC 0 |
| 64 | #define BAD_IRQ 1 |
| 65 | #define BAD_FIQ 2 |
| 66 | #define BAD_ERROR 3 |
| 67 | |
| 68 | .macro kernel_entry, el, regsize = 64 |
Will Deacon | 63648dd | 2014-09-29 12:26:41 +0100 | [diff] [blame] | 69 | sub sp, sp, #S_FRAME_SIZE |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 70 | .if \regsize == 32 |
| 71 | mov w0, w0 // zero upper 32 bits of x0 |
| 72 | .endif |
Will Deacon | 63648dd | 2014-09-29 12:26:41 +0100 | [diff] [blame] | 73 | stp x0, x1, [sp, #16 * 0] |
| 74 | stp x2, x3, [sp, #16 * 1] |
| 75 | stp x4, x5, [sp, #16 * 2] |
| 76 | stp x6, x7, [sp, #16 * 3] |
| 77 | stp x8, x9, [sp, #16 * 4] |
| 78 | stp x10, x11, [sp, #16 * 5] |
| 79 | stp x12, x13, [sp, #16 * 6] |
| 80 | stp x14, x15, [sp, #16 * 7] |
| 81 | stp x16, x17, [sp, #16 * 8] |
| 82 | stp x18, x19, [sp, #16 * 9] |
| 83 | stp x20, x21, [sp, #16 * 10] |
| 84 | stp x22, x23, [sp, #16 * 11] |
| 85 | stp x24, x25, [sp, #16 * 12] |
| 86 | stp x26, x27, [sp, #16 * 13] |
| 87 | stp x28, x29, [sp, #16 * 14] |
| 88 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 89 | .if \el == 0 |
| 90 | mrs x21, sp_el0 |
Jungseok Lee | 6cdf9c7 | 2015-12-04 11:02:25 +0000 | [diff] [blame^] | 91 | mov tsk, sp |
| 92 | and tsk, tsk, #~(THREAD_SIZE - 1) // Ensure MDSCR_EL1.SS is clear, |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 93 | ldr x19, [tsk, #TI_FLAGS] // since we can unmask debug |
| 94 | disable_step_tsk x19, x20 // exceptions when scheduling. |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 95 | .else |
| 96 | add x21, sp, #S_FRAME_SIZE |
| 97 | .endif |
| 98 | mrs x22, elr_el1 |
| 99 | mrs x23, spsr_el1 |
| 100 | stp lr, x21, [sp, #S_LR] |
| 101 | stp x22, x23, [sp, #S_PC] |
| 102 | |
| 103 | /* |
| 104 | * Set syscallno to -1 by default (overridden later if real syscall). |
| 105 | */ |
| 106 | .if \el == 0 |
| 107 | mvn x21, xzr |
| 108 | str x21, [sp, #S_SYSCALLNO] |
| 109 | .endif |
| 110 | |
| 111 | /* |
Jungseok Lee | 6cdf9c7 | 2015-12-04 11:02:25 +0000 | [diff] [blame^] | 112 | * Set sp_el0 to current thread_info. |
| 113 | */ |
| 114 | .if \el == 0 |
| 115 | msr sp_el0, tsk |
| 116 | .endif |
| 117 | |
| 118 | /* |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 119 | * Registers that may be useful after this macro is invoked: |
| 120 | * |
| 121 | * x21 - aborted SP |
| 122 | * x22 - aborted PC |
| 123 | * x23 - aborted PSTATE |
| 124 | */ |
| 125 | .endm |
| 126 | |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 127 | .macro kernel_exit, el |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 128 | ldp x21, x22, [sp, #S_PC] // load ELR, SPSR |
| 129 | .if \el == 0 |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 130 | ct_user_enter |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 131 | ldr x23, [sp, #S_SP] // load return stack pointer |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 132 | msr sp_el0, x23 |
Will Deacon | 905e8c5 | 2015-03-23 19:07:02 +0000 | [diff] [blame] | 133 | #ifdef CONFIG_ARM64_ERRATUM_845719 |
Daniel Thompson | e28cabf | 2015-07-22 12:21:03 +0100 | [diff] [blame] | 134 | alternative_if_not ARM64_WORKAROUND_845719 |
| 135 | nop |
| 136 | nop |
Will Deacon | 905e8c5 | 2015-03-23 19:07:02 +0000 | [diff] [blame] | 137 | #ifdef CONFIG_PID_IN_CONTEXTIDR |
Daniel Thompson | e28cabf | 2015-07-22 12:21:03 +0100 | [diff] [blame] | 138 | nop |
Will Deacon | 905e8c5 | 2015-03-23 19:07:02 +0000 | [diff] [blame] | 139 | #endif |
Daniel Thompson | e28cabf | 2015-07-22 12:21:03 +0100 | [diff] [blame] | 140 | alternative_else |
| 141 | tbz x22, #4, 1f |
| 142 | #ifdef CONFIG_PID_IN_CONTEXTIDR |
| 143 | mrs x29, contextidr_el1 |
| 144 | msr contextidr_el1, x29 |
| 145 | #else |
| 146 | msr contextidr_el1, xzr |
| 147 | #endif |
| 148 | 1: |
| 149 | alternative_endif |
Will Deacon | 905e8c5 | 2015-03-23 19:07:02 +0000 | [diff] [blame] | 150 | #endif |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 151 | .endif |
Will Deacon | 63648dd | 2014-09-29 12:26:41 +0100 | [diff] [blame] | 152 | msr elr_el1, x21 // set up the return data |
| 153 | msr spsr_el1, x22 |
Will Deacon | 63648dd | 2014-09-29 12:26:41 +0100 | [diff] [blame] | 154 | ldp x0, x1, [sp, #16 * 0] |
Will Deacon | 63648dd | 2014-09-29 12:26:41 +0100 | [diff] [blame] | 155 | ldp x2, x3, [sp, #16 * 1] |
| 156 | ldp x4, x5, [sp, #16 * 2] |
| 157 | ldp x6, x7, [sp, #16 * 3] |
| 158 | ldp x8, x9, [sp, #16 * 4] |
| 159 | ldp x10, x11, [sp, #16 * 5] |
| 160 | ldp x12, x13, [sp, #16 * 6] |
| 161 | ldp x14, x15, [sp, #16 * 7] |
| 162 | ldp x16, x17, [sp, #16 * 8] |
| 163 | ldp x18, x19, [sp, #16 * 9] |
| 164 | ldp x20, x21, [sp, #16 * 10] |
| 165 | ldp x22, x23, [sp, #16 * 11] |
| 166 | ldp x24, x25, [sp, #16 * 12] |
| 167 | ldp x26, x27, [sp, #16 * 13] |
| 168 | ldp x28, x29, [sp, #16 * 14] |
| 169 | ldr lr, [sp, #S_LR] |
| 170 | add sp, sp, #S_FRAME_SIZE // restore sp |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 171 | eret // return to kernel |
| 172 | .endm |
| 173 | |
| 174 | .macro get_thread_info, rd |
Jungseok Lee | 6cdf9c7 | 2015-12-04 11:02:25 +0000 | [diff] [blame^] | 175 | mrs \rd, sp_el0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 176 | .endm |
| 177 | |
| 178 | /* |
| 179 | * These are the registers used in the syscall handler, and allow us to |
| 180 | * have in theory up to 7 arguments to a function - x0 to x6. |
| 181 | * |
| 182 | * x7 is reserved for the system call number in 32-bit mode. |
| 183 | */ |
| 184 | sc_nr .req x25 // number of system calls |
| 185 | scno .req x26 // syscall number |
| 186 | stbl .req x27 // syscall table pointer |
| 187 | tsk .req x28 // current thread_info |
| 188 | |
| 189 | /* |
| 190 | * Interrupt handling. |
| 191 | */ |
| 192 | .macro irq_handler |
Laura Abbott | fcff588 | 2014-11-21 21:50:38 +0000 | [diff] [blame] | 193 | adrp x1, handle_arch_irq |
| 194 | ldr x1, [x1, #:lo12:handle_arch_irq] |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 195 | mov x0, sp |
| 196 | blr x1 |
| 197 | .endm |
| 198 | |
| 199 | .text |
| 200 | |
| 201 | /* |
| 202 | * Exception vectors. |
| 203 | */ |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 204 | |
| 205 | .align 11 |
| 206 | ENTRY(vectors) |
| 207 | ventry el1_sync_invalid // Synchronous EL1t |
| 208 | ventry el1_irq_invalid // IRQ EL1t |
| 209 | ventry el1_fiq_invalid // FIQ EL1t |
| 210 | ventry el1_error_invalid // Error EL1t |
| 211 | |
| 212 | ventry el1_sync // Synchronous EL1h |
| 213 | ventry el1_irq // IRQ EL1h |
| 214 | ventry el1_fiq_invalid // FIQ EL1h |
| 215 | ventry el1_error_invalid // Error EL1h |
| 216 | |
| 217 | ventry el0_sync // Synchronous 64-bit EL0 |
| 218 | ventry el0_irq // IRQ 64-bit EL0 |
| 219 | ventry el0_fiq_invalid // FIQ 64-bit EL0 |
| 220 | ventry el0_error_invalid // Error 64-bit EL0 |
| 221 | |
| 222 | #ifdef CONFIG_COMPAT |
| 223 | ventry el0_sync_compat // Synchronous 32-bit EL0 |
| 224 | ventry el0_irq_compat // IRQ 32-bit EL0 |
| 225 | ventry el0_fiq_invalid_compat // FIQ 32-bit EL0 |
| 226 | ventry el0_error_invalid_compat // Error 32-bit EL0 |
| 227 | #else |
| 228 | ventry el0_sync_invalid // Synchronous 32-bit EL0 |
| 229 | ventry el0_irq_invalid // IRQ 32-bit EL0 |
| 230 | ventry el0_fiq_invalid // FIQ 32-bit EL0 |
| 231 | ventry el0_error_invalid // Error 32-bit EL0 |
| 232 | #endif |
| 233 | END(vectors) |
| 234 | |
| 235 | /* |
| 236 | * Invalid mode handlers |
| 237 | */ |
| 238 | .macro inv_entry, el, reason, regsize = 64 |
| 239 | kernel_entry el, \regsize |
| 240 | mov x0, sp |
| 241 | mov x1, #\reason |
| 242 | mrs x2, esr_el1 |
| 243 | b bad_mode |
| 244 | .endm |
| 245 | |
| 246 | el0_sync_invalid: |
| 247 | inv_entry 0, BAD_SYNC |
| 248 | ENDPROC(el0_sync_invalid) |
| 249 | |
| 250 | el0_irq_invalid: |
| 251 | inv_entry 0, BAD_IRQ |
| 252 | ENDPROC(el0_irq_invalid) |
| 253 | |
| 254 | el0_fiq_invalid: |
| 255 | inv_entry 0, BAD_FIQ |
| 256 | ENDPROC(el0_fiq_invalid) |
| 257 | |
| 258 | el0_error_invalid: |
| 259 | inv_entry 0, BAD_ERROR |
| 260 | ENDPROC(el0_error_invalid) |
| 261 | |
| 262 | #ifdef CONFIG_COMPAT |
| 263 | el0_fiq_invalid_compat: |
| 264 | inv_entry 0, BAD_FIQ, 32 |
| 265 | ENDPROC(el0_fiq_invalid_compat) |
| 266 | |
| 267 | el0_error_invalid_compat: |
| 268 | inv_entry 0, BAD_ERROR, 32 |
| 269 | ENDPROC(el0_error_invalid_compat) |
| 270 | #endif |
| 271 | |
| 272 | el1_sync_invalid: |
| 273 | inv_entry 1, BAD_SYNC |
| 274 | ENDPROC(el1_sync_invalid) |
| 275 | |
| 276 | el1_irq_invalid: |
| 277 | inv_entry 1, BAD_IRQ |
| 278 | ENDPROC(el1_irq_invalid) |
| 279 | |
| 280 | el1_fiq_invalid: |
| 281 | inv_entry 1, BAD_FIQ |
| 282 | ENDPROC(el1_fiq_invalid) |
| 283 | |
| 284 | el1_error_invalid: |
| 285 | inv_entry 1, BAD_ERROR |
| 286 | ENDPROC(el1_error_invalid) |
| 287 | |
| 288 | /* |
| 289 | * EL1 mode handlers. |
| 290 | */ |
| 291 | .align 6 |
| 292 | el1_sync: |
| 293 | kernel_entry 1 |
| 294 | mrs x1, esr_el1 // read the syndrome register |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 295 | lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class |
| 296 | cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 297 | b.eq el1_da |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 298 | cmp x24, #ESR_ELx_EC_SYS64 // configurable trap |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 299 | b.eq el1_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 300 | cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 301 | b.eq el1_sp_pc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 302 | cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 303 | b.eq el1_sp_pc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 304 | cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 305 | b.eq el1_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 306 | cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 307 | b.ge el1_dbg |
| 308 | b el1_inv |
| 309 | el1_da: |
| 310 | /* |
| 311 | * Data abort handling |
| 312 | */ |
| 313 | mrs x0, far_el1 |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 314 | enable_dbg |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 315 | // re-enable interrupts if they were enabled in the aborted context |
| 316 | tbnz x23, #7, 1f // PSR_I_BIT |
| 317 | enable_irq |
| 318 | 1: |
| 319 | mov x2, sp // struct pt_regs |
| 320 | bl do_mem_abort |
| 321 | |
| 322 | // disable interrupts before pulling preserved data off the stack |
| 323 | disable_irq |
| 324 | kernel_exit 1 |
| 325 | el1_sp_pc: |
| 326 | /* |
| 327 | * Stack or PC alignment exception handling |
| 328 | */ |
| 329 | mrs x0, far_el1 |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 330 | enable_dbg |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 331 | mov x2, sp |
| 332 | b do_sp_pc_abort |
| 333 | el1_undef: |
| 334 | /* |
| 335 | * Undefined instruction |
| 336 | */ |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 337 | enable_dbg |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 338 | mov x0, sp |
| 339 | b do_undefinstr |
| 340 | el1_dbg: |
| 341 | /* |
| 342 | * Debug exception handling |
| 343 | */ |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 344 | cmp x24, #ESR_ELx_EC_BRK64 // if BRK64 |
Sandeepa Prabhu | ee6214c | 2013-12-04 05:50:20 +0000 | [diff] [blame] | 345 | cinc x24, x24, eq // set bit '0' |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 346 | tbz x24, #0, el1_inv // EL1 only |
| 347 | mrs x0, far_el1 |
| 348 | mov x2, sp // struct pt_regs |
| 349 | bl do_debug_exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 350 | kernel_exit 1 |
| 351 | el1_inv: |
| 352 | // TODO: add support for undefined instructions in kernel mode |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 353 | enable_dbg |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 354 | mov x0, sp |
Mark Rutland | 1b42804 | 2015-07-07 18:00:49 +0100 | [diff] [blame] | 355 | mov x2, x1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 356 | mov x1, #BAD_SYNC |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 357 | b bad_mode |
| 358 | ENDPROC(el1_sync) |
| 359 | |
| 360 | .align 6 |
| 361 | el1_irq: |
| 362 | kernel_entry 1 |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 363 | enable_dbg |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 364 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 365 | bl trace_hardirqs_off |
| 366 | #endif |
Marc Zyngier | 6468178 | 2013-11-12 17:11:53 +0000 | [diff] [blame] | 367 | |
| 368 | irq_handler |
| 369 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 370 | #ifdef CONFIG_PREEMPT |
| 371 | get_thread_info tsk |
Neil Zhang | 883c057 | 2014-01-13 08:57:56 +0000 | [diff] [blame] | 372 | ldr w24, [tsk, #TI_PREEMPT] // get preempt count |
Marc Zyngier | 717321f | 2013-11-04 20:14:58 +0000 | [diff] [blame] | 373 | cbnz w24, 1f // preempt count != 0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 374 | ldr x0, [tsk, #TI_FLAGS] // get flags |
| 375 | tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling? |
| 376 | bl el1_preempt |
| 377 | 1: |
| 378 | #endif |
| 379 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 380 | bl trace_hardirqs_on |
| 381 | #endif |
| 382 | kernel_exit 1 |
| 383 | ENDPROC(el1_irq) |
| 384 | |
| 385 | #ifdef CONFIG_PREEMPT |
| 386 | el1_preempt: |
| 387 | mov x24, lr |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 388 | 1: bl preempt_schedule_irq // irq en/disable is done inside |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 389 | ldr x0, [tsk, #TI_FLAGS] // get new tasks TI_FLAGS |
| 390 | tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling? |
| 391 | ret x24 |
| 392 | #endif |
| 393 | |
| 394 | /* |
| 395 | * EL0 mode handlers. |
| 396 | */ |
| 397 | .align 6 |
| 398 | el0_sync: |
| 399 | kernel_entry 0 |
| 400 | mrs x25, esr_el1 // read the syndrome register |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 401 | lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class |
| 402 | cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 403 | b.eq el0_svc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 404 | cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 405 | b.eq el0_da |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 406 | cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 407 | b.eq el0_ia |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 408 | cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 409 | b.eq el0_fpsimd_acc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 410 | cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 411 | b.eq el0_fpsimd_exc |
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 el0_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 el0_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 el0_sp_pc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 418 | cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 419 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 420 | cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 421 | b.ge el0_dbg |
| 422 | b el0_inv |
| 423 | |
| 424 | #ifdef CONFIG_COMPAT |
| 425 | .align 6 |
| 426 | el0_sync_compat: |
| 427 | kernel_entry 0, 32 |
| 428 | mrs x25, esr_el1 // read the syndrome register |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 429 | lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class |
| 430 | cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 431 | b.eq el0_svc_compat |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 432 | cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 433 | b.eq el0_da |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 434 | cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 435 | b.eq el0_ia |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 436 | cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 437 | b.eq el0_fpsimd_acc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 438 | cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 439 | b.eq el0_fpsimd_exc |
Mark Salyzyn | 77f3228f | 2015-10-13 14:30:51 -0700 | [diff] [blame] | 440 | cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception |
| 441 | b.eq el0_sp_pc |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 442 | cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 443 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 444 | cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap |
Mark Rutland | 381cc2b | 2013-05-24 12:02:35 +0100 | [diff] [blame] | 445 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 446 | cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap |
Mark Rutland | 381cc2b | 2013-05-24 12:02:35 +0100 | [diff] [blame] | 447 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 448 | cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap |
Mark Rutland | 381cc2b | 2013-05-24 12:02:35 +0100 | [diff] [blame] | 449 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 450 | cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap |
Mark Rutland | 381cc2b | 2013-05-24 12:02:35 +0100 | [diff] [blame] | 451 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 452 | cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap |
Mark Rutland | 381cc2b | 2013-05-24 12:02:35 +0100 | [diff] [blame] | 453 | b.eq el0_undef |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 454 | cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 455 | b.ge el0_dbg |
| 456 | b el0_inv |
| 457 | el0_svc_compat: |
| 458 | /* |
| 459 | * AArch32 syscall handling |
| 460 | */ |
Catalin Marinas | 0156411 | 2015-01-06 16:42:32 +0000 | [diff] [blame] | 461 | adrp stbl, compat_sys_call_table // load compat syscall table pointer |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 462 | uxtw scno, w7 // syscall number in w7 (r7) |
| 463 | mov sc_nr, #__NR_compat_syscalls |
| 464 | b el0_svc_naked |
| 465 | |
| 466 | .align 6 |
| 467 | el0_irq_compat: |
| 468 | kernel_entry 0, 32 |
| 469 | b el0_irq_naked |
| 470 | #endif |
| 471 | |
| 472 | el0_da: |
| 473 | /* |
| 474 | * Data abort handling |
| 475 | */ |
Larry Bassel | 6ab6463 | 2014-05-30 20:34:14 +0100 | [diff] [blame] | 476 | mrs x26, far_el1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 477 | // enable interrupts before calling the main handler |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 478 | enable_dbg_and_irq |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 479 | ct_user_exit |
Larry Bassel | 6ab6463 | 2014-05-30 20:34:14 +0100 | [diff] [blame] | 480 | bic x0, x26, #(0xff << 56) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 481 | mov x1, x25 |
| 482 | mov x2, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 483 | bl do_mem_abort |
| 484 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 485 | el0_ia: |
| 486 | /* |
| 487 | * Instruction abort handling |
| 488 | */ |
Larry Bassel | 6ab6463 | 2014-05-30 20:34:14 +0100 | [diff] [blame] | 489 | mrs x26, far_el1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 490 | // enable interrupts before calling the main handler |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 491 | enable_dbg_and_irq |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 492 | ct_user_exit |
Larry Bassel | 6ab6463 | 2014-05-30 20:34:14 +0100 | [diff] [blame] | 493 | mov x0, x26 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 494 | orr x1, x25, #1 << 24 // use reserved ISS bit for instruction aborts |
| 495 | mov x2, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 496 | bl do_mem_abort |
| 497 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 498 | el0_fpsimd_acc: |
| 499 | /* |
| 500 | * Floating Point or Advanced SIMD access |
| 501 | */ |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 502 | enable_dbg |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 503 | ct_user_exit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 504 | mov x0, x25 |
| 505 | mov x1, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 506 | bl do_fpsimd_acc |
| 507 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 508 | el0_fpsimd_exc: |
| 509 | /* |
| 510 | * Floating Point or Advanced SIMD exception |
| 511 | */ |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 512 | enable_dbg |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 513 | ct_user_exit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 514 | mov x0, x25 |
| 515 | mov x1, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 516 | bl do_fpsimd_exc |
| 517 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 518 | el0_sp_pc: |
| 519 | /* |
| 520 | * Stack or PC alignment exception handling |
| 521 | */ |
Larry Bassel | 6ab6463 | 2014-05-30 20:34:14 +0100 | [diff] [blame] | 522 | mrs x26, far_el1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 523 | // enable interrupts before calling the main handler |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 524 | enable_dbg_and_irq |
Mark Rutland | 46b0567 | 2015-06-15 16:40:27 +0100 | [diff] [blame] | 525 | ct_user_exit |
Larry Bassel | 6ab6463 | 2014-05-30 20:34:14 +0100 | [diff] [blame] | 526 | mov x0, x26 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 527 | mov x1, x25 |
| 528 | mov x2, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 529 | bl do_sp_pc_abort |
| 530 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 531 | el0_undef: |
| 532 | /* |
| 533 | * Undefined instruction |
| 534 | */ |
Catalin Marinas | 2600e13 | 2013-08-22 11:47:37 +0100 | [diff] [blame] | 535 | // enable interrupts before calling the main handler |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 536 | enable_dbg_and_irq |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 537 | ct_user_exit |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 538 | mov x0, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 539 | bl do_undefinstr |
| 540 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 541 | el0_dbg: |
| 542 | /* |
| 543 | * Debug exception handling |
| 544 | */ |
| 545 | tbnz x24, #0, el0_inv // EL0 only |
| 546 | mrs x0, far_el1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 547 | mov x1, x25 |
| 548 | mov x2, sp |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 549 | bl do_debug_exception |
| 550 | enable_dbg |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 551 | ct_user_exit |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 552 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 553 | el0_inv: |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 554 | enable_dbg |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 555 | ct_user_exit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 556 | mov x0, sp |
| 557 | mov x1, #BAD_SYNC |
Mark Rutland | 1b42804 | 2015-07-07 18:00:49 +0100 | [diff] [blame] | 558 | mov x2, x25 |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 559 | bl bad_mode |
| 560 | b ret_to_user |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 561 | ENDPROC(el0_sync) |
| 562 | |
| 563 | .align 6 |
| 564 | el0_irq: |
| 565 | kernel_entry 0 |
| 566 | el0_irq_naked: |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 567 | enable_dbg |
| 568 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 569 | bl trace_hardirqs_off |
| 570 | #endif |
Marc Zyngier | 6468178 | 2013-11-12 17:11:53 +0000 | [diff] [blame] | 571 | |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 572 | ct_user_exit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 573 | irq_handler |
Marc Zyngier | 6468178 | 2013-11-12 17:11:53 +0000 | [diff] [blame] | 574 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 575 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 576 | bl trace_hardirqs_on |
| 577 | #endif |
| 578 | b ret_to_user |
| 579 | ENDPROC(el0_irq) |
| 580 | |
| 581 | /* |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 582 | * Register switch for AArch64. The callee-saved registers need to be saved |
| 583 | * and restored. On entry: |
| 584 | * x0 = previous task_struct (must be preserved across the switch) |
| 585 | * x1 = next task_struct |
| 586 | * Previous and next are guaranteed not to be the same. |
| 587 | * |
| 588 | */ |
| 589 | ENTRY(cpu_switch_to) |
Will Deacon | c0d3fce | 2015-07-20 15:14:53 +0100 | [diff] [blame] | 590 | mov x10, #THREAD_CPU_CONTEXT |
| 591 | add x8, x0, x10 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 592 | mov x9, sp |
| 593 | stp x19, x20, [x8], #16 // store callee-saved registers |
| 594 | stp x21, x22, [x8], #16 |
| 595 | stp x23, x24, [x8], #16 |
| 596 | stp x25, x26, [x8], #16 |
| 597 | stp x27, x28, [x8], #16 |
| 598 | stp x29, x9, [x8], #16 |
| 599 | str lr, [x8] |
Will Deacon | c0d3fce | 2015-07-20 15:14:53 +0100 | [diff] [blame] | 600 | add x8, x1, x10 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 601 | ldp x19, x20, [x8], #16 // restore callee-saved registers |
| 602 | ldp x21, x22, [x8], #16 |
| 603 | ldp x23, x24, [x8], #16 |
| 604 | ldp x25, x26, [x8], #16 |
| 605 | ldp x27, x28, [x8], #16 |
| 606 | ldp x29, x9, [x8], #16 |
| 607 | ldr lr, [x8] |
| 608 | mov sp, x9 |
Jungseok Lee | 6cdf9c7 | 2015-12-04 11:02:25 +0000 | [diff] [blame^] | 609 | and x9, x9, #~(THREAD_SIZE - 1) |
| 610 | msr sp_el0, x9 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 611 | ret |
| 612 | ENDPROC(cpu_switch_to) |
| 613 | |
| 614 | /* |
| 615 | * This is the fast syscall return path. We do as little as possible here, |
| 616 | * and this includes saving x0 back into the kernel stack. |
| 617 | */ |
| 618 | ret_fast_syscall: |
| 619 | disable_irq // disable interrupts |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 620 | str x0, [sp, #S_X0] // returned x0 |
Josh Stone | 04d7e09 | 2015-06-05 14:28:03 -0700 | [diff] [blame] | 621 | ldr x1, [tsk, #TI_FLAGS] // re-check for syscall tracing |
| 622 | and x2, x1, #_TIF_SYSCALL_WORK |
| 623 | cbnz x2, ret_fast_syscall_trace |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 624 | and x2, x1, #_TIF_WORK_MASK |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 625 | cbnz x2, work_pending |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 626 | enable_step_tsk x1, x2 |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 627 | kernel_exit 0 |
Josh Stone | 04d7e09 | 2015-06-05 14:28:03 -0700 | [diff] [blame] | 628 | ret_fast_syscall_trace: |
| 629 | enable_irq // enable interrupts |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 630 | b __sys_trace_return_skipped // we already saved x0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 631 | |
| 632 | /* |
| 633 | * Ok, we need to do extra processing, enter the slow path. |
| 634 | */ |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 635 | work_pending: |
| 636 | tbnz x1, #TIF_NEED_RESCHED, work_resched |
Ard Biesheuvel | 005f78c | 2014-05-08 11:20:23 +0200 | [diff] [blame] | 637 | /* TIF_SIGPENDING, TIF_NOTIFY_RESUME or TIF_FOREIGN_FPSTATE case */ |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 638 | ldr x2, [sp, #S_PSTATE] |
| 639 | mov x0, sp // 'regs' |
| 640 | tst x2, #PSR_MODE_MASK // user mode regs? |
| 641 | b.ne no_work_pending // returning to kernel |
Catalin Marinas | 6916fd0 | 2012-10-08 18:04:21 +0100 | [diff] [blame] | 642 | enable_irq // enable interrupts for do_notify_resume() |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 643 | bl do_notify_resume |
| 644 | b ret_to_user |
| 645 | work_resched: |
Catalin Marinas | db3899a | 2015-12-04 12:42:29 +0000 | [diff] [blame] | 646 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 647 | bl trace_hardirqs_off // the IRQs are off here, inform the tracing code |
| 648 | #endif |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 649 | bl schedule |
| 650 | |
| 651 | /* |
| 652 | * "slow" syscall return path. |
| 653 | */ |
Catalin Marinas | 59dc67b | 2012-09-10 16:11:46 +0100 | [diff] [blame] | 654 | ret_to_user: |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 655 | disable_irq // disable interrupts |
| 656 | ldr x1, [tsk, #TI_FLAGS] |
| 657 | and x2, x1, #_TIF_WORK_MASK |
| 658 | cbnz x2, work_pending |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 659 | enable_step_tsk x1, x2 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 660 | no_work_pending: |
Will Deacon | 412fcb6 | 2015-08-19 15:57:09 +0100 | [diff] [blame] | 661 | kernel_exit 0 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 662 | ENDPROC(ret_to_user) |
| 663 | |
| 664 | /* |
| 665 | * This is how we return from a fork. |
| 666 | */ |
| 667 | ENTRY(ret_from_fork) |
| 668 | bl schedule_tail |
Catalin Marinas | c34501d | 2012-10-05 12:31:20 +0100 | [diff] [blame] | 669 | cbz x19, 1f // not a kernel thread |
| 670 | mov x0, x20 |
| 671 | blr x19 |
| 672 | 1: get_thread_info tsk |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 673 | b ret_to_user |
| 674 | ENDPROC(ret_from_fork) |
| 675 | |
| 676 | /* |
| 677 | * SVC handler. |
| 678 | */ |
| 679 | .align 6 |
| 680 | el0_svc: |
| 681 | adrp stbl, sys_call_table // load syscall table pointer |
| 682 | uxtw scno, w8 // syscall number in w8 |
| 683 | mov sc_nr, #__NR_syscalls |
| 684 | el0_svc_naked: // compat entry point |
| 685 | stp x0, scno, [sp, #S_ORIG_X0] // save the original x0 and syscall number |
Will Deacon | 2a28307 | 2014-04-29 19:04:06 +0100 | [diff] [blame] | 686 | enable_dbg_and_irq |
Larry Bassel | 6c81fe7 | 2014-05-30 12:34:15 -0700 | [diff] [blame] | 687 | ct_user_exit 1 |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 688 | |
AKASHI Takahiro | 449f81a | 2014-04-30 10:51:29 +0100 | [diff] [blame] | 689 | ldr x16, [tsk, #TI_FLAGS] // check for syscall hooks |
| 690 | tst x16, #_TIF_SYSCALL_WORK |
| 691 | b.ne __sys_trace |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 692 | cmp scno, sc_nr // check upper syscall limit |
| 693 | b.hs ni_sys |
| 694 | ldr x16, [stbl, scno, lsl #3] // address in the syscall table |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 695 | blr x16 // call sys_* routine |
| 696 | b ret_fast_syscall |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 697 | ni_sys: |
| 698 | mov x0, sp |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 699 | bl do_ni_syscall |
| 700 | b ret_fast_syscall |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 701 | ENDPROC(el0_svc) |
| 702 | |
| 703 | /* |
| 704 | * This is the really slow path. We're going to be doing context |
| 705 | * switches, and waiting for our parent to respond. |
| 706 | */ |
| 707 | __sys_trace: |
AKASHI Takahiro | 1014c81 | 2014-11-28 05:26:35 +0000 | [diff] [blame] | 708 | mov w0, #-1 // set default errno for |
| 709 | cmp scno, x0 // user-issued syscall(-1) |
| 710 | b.ne 1f |
| 711 | mov x0, #-ENOSYS |
| 712 | str x0, [sp, #S_X0] |
| 713 | 1: mov x0, sp |
AKASHI Takahiro | 3157858f | 2014-04-30 10:51:30 +0100 | [diff] [blame] | 714 | bl syscall_trace_enter |
AKASHI Takahiro | 1014c81 | 2014-11-28 05:26:35 +0000 | [diff] [blame] | 715 | cmp w0, #-1 // skip the syscall? |
| 716 | b.eq __sys_trace_return_skipped |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 717 | uxtw scno, w0 // syscall number (possibly new) |
| 718 | mov x1, sp // pointer to regs |
| 719 | cmp scno, sc_nr // check upper syscall limit |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 720 | b.hs __ni_sys_trace |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 721 | ldp x0, x1, [sp] // restore the syscall args |
| 722 | ldp x2, x3, [sp, #S_X2] |
| 723 | ldp x4, x5, [sp, #S_X4] |
| 724 | ldp x6, x7, [sp, #S_X6] |
| 725 | ldr x16, [stbl, scno, lsl #3] // address in the syscall table |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 726 | blr x16 // call sys_* routine |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 727 | |
| 728 | __sys_trace_return: |
AKASHI Takahiro | 1014c81 | 2014-11-28 05:26:35 +0000 | [diff] [blame] | 729 | str x0, [sp, #S_X0] // save returned x0 |
| 730 | __sys_trace_return_skipped: |
AKASHI Takahiro | 3157858f | 2014-04-30 10:51:30 +0100 | [diff] [blame] | 731 | mov x0, sp |
| 732 | bl syscall_trace_exit |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 733 | b ret_to_user |
| 734 | |
Will Deacon | d54e81f | 2014-09-29 11:44:01 +0100 | [diff] [blame] | 735 | __ni_sys_trace: |
| 736 | mov x0, sp |
| 737 | bl do_ni_syscall |
| 738 | b __sys_trace_return |
| 739 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 740 | /* |
| 741 | * Special system call wrappers. |
| 742 | */ |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 743 | ENTRY(sys_rt_sigreturn_wrapper) |
| 744 | mov x0, sp |
| 745 | b sys_rt_sigreturn |
| 746 | ENDPROC(sys_rt_sigreturn_wrapper) |