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