Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/kernel/entry-common.S |
| 3 | * |
| 4 | * Copyright (C) 2000 Russell King |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <asm/unistd.h> |
Abhishek Sagar | 395a59d | 2008-06-21 23:47:27 +0530 | [diff] [blame] | 12 | #include <asm/ftrace.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 13 | #include <mach/entry-macro.S> |
Catalin Marinas | c4c5716 | 2009-02-16 11:42:09 +0100 | [diff] [blame] | 14 | #include <asm/unwind.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
| 16 | #include "entry-header.S" |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
| 19 | .align 5 |
| 20 | /* |
| 21 | * This is the fast syscall return path. We do as little as |
| 22 | * possible here, and this includes saving r0 back into the SVC |
| 23 | * stack. |
| 24 | */ |
| 25 | ret_fast_syscall: |
Catalin Marinas | c4c5716 | 2009-02-16 11:42:09 +0100 | [diff] [blame] | 26 | UNWIND(.fnstart ) |
| 27 | UNWIND(.cantunwind ) |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame] | 28 | disable_irq @ disable interrupts |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | ldr r1, [tsk, #TI_FLAGS] |
| 30 | tst r1, #_TIF_WORK_MASK |
| 31 | bne fast_work_pending |
Russell King | f4dc9a4 | 2005-04-26 15:20:34 +0100 | [diff] [blame] | 32 | |
Dan Williams | f80dff9 | 2007-02-16 22:16:32 +0100 | [diff] [blame] | 33 | /* perform architecture specific actions before user return */ |
| 34 | arch_ret_to_user r1, lr |
| 35 | |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 36 | restore_user_regs fast = 1, offset = S_OFF |
Catalin Marinas | c4c5716 | 2009-02-16 11:42:09 +0100 | [diff] [blame] | 37 | UNWIND(.fnend ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | /* |
| 40 | * Ok, we need to do extra processing, enter the slow path. |
| 41 | */ |
| 42 | fast_work_pending: |
| 43 | str r0, [sp, #S_R0+S_OFF]! @ returned r0 |
| 44 | work_pending: |
| 45 | tst r1, #_TIF_NEED_RESCHED |
| 46 | bne work_resched |
David Howells | d0420c8 | 2009-09-02 09:14:16 +0100 | [diff] [blame] | 47 | tst r1, #_TIF_SIGPENDING|_TIF_NOTIFY_RESUME |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | beq no_work_pending |
| 49 | mov r0, sp @ 'regs' |
| 50 | mov r2, why @ 'syscall' |
| 51 | bl do_notify_resume |
Daniel Jacobowitz | a6c61e9 | 2005-11-19 10:01:07 +0000 | [diff] [blame] | 52 | b ret_slow_syscall @ Check work again |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | work_resched: |
| 55 | bl schedule |
| 56 | /* |
| 57 | * "slow" syscall return path. "why" tells us if this was a real syscall. |
| 58 | */ |
| 59 | ENTRY(ret_to_user) |
| 60 | ret_slow_syscall: |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame] | 61 | disable_irq @ disable interrupts |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | ldr r1, [tsk, #TI_FLAGS] |
| 63 | tst r1, #_TIF_WORK_MASK |
| 64 | bne work_pending |
| 65 | no_work_pending: |
Dan Williams | f80dff9 | 2007-02-16 22:16:32 +0100 | [diff] [blame] | 66 | /* perform architecture specific actions before user return */ |
| 67 | arch_ret_to_user r1, lr |
| 68 | |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 69 | restore_user_regs fast = 0, offset = 0 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 70 | ENDPROC(ret_to_user) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
| 72 | /* |
| 73 | * This is how we return from a fork. |
| 74 | */ |
| 75 | ENTRY(ret_from_fork) |
| 76 | bl schedule_tail |
| 77 | get_thread_info tsk |
| 78 | ldr r1, [tsk, #TI_FLAGS] @ check for syscall tracing |
| 79 | mov why, #1 |
| 80 | tst r1, #_TIF_SYSCALL_TRACE @ are we tracing syscalls? |
| 81 | beq ret_slow_syscall |
| 82 | mov r1, sp |
| 83 | mov r0, #1 @ trace exit [IP = 1] |
| 84 | bl syscall_trace |
| 85 | b ret_slow_syscall |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 86 | ENDPROC(ret_from_fork) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Al Viro | fa1b4f9 | 2006-01-19 12:57:01 +0000 | [diff] [blame] | 88 | .equ NR_syscalls,0 |
| 89 | #define CALL(x) .equ NR_syscalls,NR_syscalls+1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | #include "calls.S" |
Al Viro | fa1b4f9 | 2006-01-19 12:57:01 +0000 | [diff] [blame] | 91 | #undef CALL |
| 92 | #define CALL(x) .long x |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 94 | #ifdef CONFIG_FUNCTION_TRACER |
Rabin Vincent | 686ff22 | 2010-08-03 17:09:40 +0100 | [diff] [blame] | 95 | /* |
| 96 | * When compiling with -pg, gcc inserts a call to the mcount routine at the |
| 97 | * start of every function. In mcount, apart from the function's address (in |
| 98 | * lr), we need to get hold of the function's caller's address. |
| 99 | * |
| 100 | * Older GCCs (pre-4.4) inserted a call to a routine called mcount like this: |
| 101 | * |
| 102 | * bl mcount |
| 103 | * |
| 104 | * These versions have the limitation that in order for the mcount routine to |
| 105 | * be able to determine the function's caller's address, an APCS-style frame |
| 106 | * pointer (which is set up with something like the code below) is required. |
| 107 | * |
| 108 | * mov ip, sp |
| 109 | * push {fp, ip, lr, pc} |
| 110 | * sub fp, ip, #4 |
| 111 | * |
| 112 | * With EABI, these frame pointers are not available unless -mapcs-frame is |
| 113 | * specified, and if building as Thumb-2, not even then. |
| 114 | * |
| 115 | * Newer GCCs (4.4+) solve this problem by introducing a new version of mcount, |
| 116 | * with call sites like: |
| 117 | * |
| 118 | * push {lr} |
| 119 | * bl __gnu_mcount_nc |
| 120 | * |
| 121 | * With these compilers, frame pointers are not necessary. |
| 122 | * |
| 123 | * mcount can be thought of as a function called in the middle of a subroutine |
| 124 | * call. As such, it needs to be transparent for both the caller and the |
| 125 | * callee: the original lr needs to be restored when leaving mcount, and no |
| 126 | * registers should be clobbered. (In the __gnu_mcount_nc implementation, we |
| 127 | * clobber the ip register. This is OK because the ARM calling convention |
| 128 | * allows it to be clobbered in subroutines and doesn't use it to hold |
| 129 | * parameters.) |
| 130 | */ |
Rabin Vincent | 09bfafa | 2010-08-10 19:32:37 +0100 | [diff] [blame] | 131 | |
| 132 | #ifndef CONFIG_OLD_MCOUNT |
| 133 | #if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4)) |
| 134 | #error Ftrace requires CONFIG_FRAME_POINTER=y with GCC older than 4.4.0. |
| 135 | #endif |
| 136 | #endif |
| 137 | |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 138 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 139 | ENTRY(mcount) |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 140 | stmdb sp!, {r0-r3, lr} |
| 141 | mov r0, lr |
| 142 | sub r0, r0, #MCOUNT_INSN_SIZE |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 143 | |
| 144 | .globl mcount_call |
| 145 | mcount_call: |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 146 | bl ftrace_stub |
| 147 | ldr lr, [fp, #-4] @ restore lr |
| 148 | ldmia sp!, {r0-r3, pc} |
Rabin Vincent | 72fa62f | 2010-08-10 19:33:52 +0100 | [diff] [blame] | 149 | ENDPROC(mcount) |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 150 | |
| 151 | ENTRY(ftrace_caller) |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 152 | stmdb sp!, {r0-r3, lr} |
| 153 | ldr r1, [fp, #-4] |
| 154 | mov r0, lr |
| 155 | sub r0, r0, #MCOUNT_INSN_SIZE |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 156 | |
| 157 | .globl ftrace_call |
| 158 | ftrace_call: |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 159 | bl ftrace_stub |
| 160 | ldr lr, [fp, #-4] @ restore lr |
| 161 | ldmia sp!, {r0-r3, pc} |
Rabin Vincent | 72fa62f | 2010-08-10 19:33:52 +0100 | [diff] [blame] | 162 | ENDPROC(ftrace_caller) |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 163 | |
| 164 | #else |
| 165 | |
Uwe Kleine-König | 181f817 | 2009-08-13 20:38:16 +0200 | [diff] [blame] | 166 | ENTRY(__gnu_mcount_nc) |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 167 | stmdb sp!, {r0-r3, lr} |
| 168 | ldr r0, =ftrace_trace_function |
| 169 | ldr r2, [r0] |
Rabin Vincent | a3ba87a | 2010-08-10 19:37:21 +0100 | [diff] [blame^] | 170 | adr r0, .Lftrace_stub |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 171 | cmp r0, r2 |
| 172 | bne gnu_trace |
| 173 | ldmia sp!, {r0-r3, ip, lr} |
| 174 | mov pc, ip |
Uwe Kleine-König | 181f817 | 2009-08-13 20:38:16 +0200 | [diff] [blame] | 175 | |
| 176 | gnu_trace: |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 177 | ldr r1, [sp, #20] @ lr of instrumented routine |
| 178 | mov r0, lr |
| 179 | sub r0, r0, #MCOUNT_INSN_SIZE |
Rabin Vincent | a3ba87a | 2010-08-10 19:37:21 +0100 | [diff] [blame^] | 180 | adr lr, BSYM(1f) |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 181 | mov pc, r2 |
Rabin Vincent | a3ba87a | 2010-08-10 19:37:21 +0100 | [diff] [blame^] | 182 | 1: |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 183 | ldmia sp!, {r0-r3, ip, lr} |
| 184 | mov pc, ip |
Rabin Vincent | 72fa62f | 2010-08-10 19:33:52 +0100 | [diff] [blame] | 185 | ENDPROC(__gnu_mcount_nc) |
Uwe Kleine-König | 181f817 | 2009-08-13 20:38:16 +0200 | [diff] [blame] | 186 | |
Rabin Vincent | 09bfafa | 2010-08-10 19:32:37 +0100 | [diff] [blame] | 187 | #ifdef CONFIG_OLD_MCOUNT |
| 188 | /* |
| 189 | * This is under an ifdef in order to force link-time errors for people trying |
| 190 | * to build with !FRAME_POINTER with a GCC which doesn't use the new-style |
| 191 | * mcount. |
| 192 | */ |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 193 | ENTRY(mcount) |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 194 | stmdb sp!, {r0-r3, lr} |
| 195 | ldr r0, =ftrace_trace_function |
| 196 | ldr r2, [r0] |
| 197 | adr r0, ftrace_stub |
| 198 | cmp r0, r2 |
| 199 | bne trace |
| 200 | ldr lr, [fp, #-4] @ restore lr |
| 201 | ldmia sp!, {r0-r3, pc} |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 202 | |
| 203 | trace: |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 204 | ldr r1, [fp, #-4] @ lr of instrumented routine |
| 205 | mov r0, lr |
| 206 | sub r0, r0, #MCOUNT_INSN_SIZE |
| 207 | mov lr, pc |
| 208 | mov pc, r2 |
| 209 | ldr lr, [fp, #-4] @ restore lr |
| 210 | ldmia sp!, {r0-r3, pc} |
Rabin Vincent | 72fa62f | 2010-08-10 19:33:52 +0100 | [diff] [blame] | 211 | ENDPROC(mcount) |
Rabin Vincent | 09bfafa | 2010-08-10 19:32:37 +0100 | [diff] [blame] | 212 | #endif |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 213 | |
| 214 | #endif /* CONFIG_DYNAMIC_FTRACE */ |
| 215 | |
Rabin Vincent | 72fa62f | 2010-08-10 19:33:52 +0100 | [diff] [blame] | 216 | ENTRY(ftrace_stub) |
Rabin Vincent | a3ba87a | 2010-08-10 19:37:21 +0100 | [diff] [blame^] | 217 | .Lftrace_stub: |
Rabin Vincent | 28e192d | 2010-08-03 17:08:09 +0100 | [diff] [blame] | 218 | mov pc, lr |
Rabin Vincent | 72fa62f | 2010-08-10 19:33:52 +0100 | [diff] [blame] | 219 | ENDPROC(ftrace_stub) |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 220 | |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 221 | #endif /* CONFIG_FUNCTION_TRACER */ |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | /*============================================================================= |
| 224 | * SWI handler |
| 225 | *----------------------------------------------------------------------------- |
| 226 | */ |
| 227 | |
| 228 | /* If we're optimising for StrongARM the resulting code won't |
| 229 | run on an ARM7 and we can save a couple of instructions. |
| 230 | --pb */ |
| 231 | #ifdef CONFIG_CPU_ARM710 |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 232 | #define A710(code...) code |
| 233 | .Larm710bug: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | ldmia sp, {r0 - lr}^ @ Get calling r0 - lr |
| 235 | mov r0, r0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | add sp, sp, #S_FRAME_SIZE |
Nicolas Pitre | 60ac133 | 2005-10-12 19:51:24 +0100 | [diff] [blame] | 237 | subs pc, lr, #4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | #else |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 239 | #define A710(code...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | #endif |
| 241 | |
| 242 | .align 5 |
| 243 | ENTRY(vector_swi) |
Russell King | f4dc9a4 | 2005-04-26 15:20:34 +0100 | [diff] [blame] | 244 | sub sp, sp, #S_FRAME_SIZE |
| 245 | stmia sp, {r0 - r12} @ Calling r0 - r12 |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 246 | ARM( add r8, sp, #S_PC ) |
| 247 | ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr |
| 248 | THUMB( mov r8, sp ) |
| 249 | THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr |
Russell King | f4dc9a4 | 2005-04-26 15:20:34 +0100 | [diff] [blame] | 250 | mrs r8, spsr @ called from non-FIQ mode, so ok. |
| 251 | str lr, [sp, #S_PC] @ Save calling PC |
| 252 | str r8, [sp, #S_PSR] @ Save CPSR |
| 253 | str r0, [sp, #S_OLD_R0] @ Save OLD_R0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | zero_fp |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 255 | |
| 256 | /* |
| 257 | * Get the system call number. |
| 258 | */ |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 259 | |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 260 | #if defined(CONFIG_OABI_COMPAT) |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 261 | |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 262 | /* |
| 263 | * If we have CONFIG_OABI_COMPAT then we need to look at the swi |
| 264 | * value to determine if it is an EABI or an old ABI call. |
| 265 | */ |
| 266 | #ifdef CONFIG_ARM_THUMB |
| 267 | tst r8, #PSR_T_BIT |
| 268 | movne r10, #0 @ no thumb OABI emulation |
| 269 | ldreq r10, [lr, #-4] @ get SWI instruction |
| 270 | #else |
| 271 | ldr r10, [lr, #-4] @ get SWI instruction |
| 272 | A710( and ip, r10, #0x0f000000 @ check for SWI ) |
| 273 | A710( teq ip, #0x0f000000 ) |
| 274 | A710( bne .Larm710bug ) |
| 275 | #endif |
Catalin Marinas | 2658485 | 2009-05-30 14:00:18 +0100 | [diff] [blame] | 276 | #ifdef CONFIG_CPU_ENDIAN_BE8 |
| 277 | rev r10, r10 @ little endian instruction |
| 278 | #endif |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 279 | |
| 280 | #elif defined(CONFIG_AEABI) |
| 281 | |
| 282 | /* |
| 283 | * Pure EABI user space always put syscall number into scno (r7). |
| 284 | */ |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 285 | A710( ldr ip, [lr, #-4] @ get SWI instruction ) |
| 286 | A710( and ip, ip, #0x0f000000 @ check for SWI ) |
| 287 | A710( teq ip, #0x0f000000 ) |
| 288 | A710( bne .Larm710bug ) |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 289 | |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 290 | #elif defined(CONFIG_ARM_THUMB) |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 291 | |
| 292 | /* Legacy ABI only, possibly thumb mode. */ |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 293 | tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs |
| 294 | addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in |
| 295 | ldreq scno, [lr, #-4] |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 296 | |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 297 | #else |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 298 | |
| 299 | /* Legacy ABI only. */ |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 300 | ldr scno, [lr, #-4] @ get SWI instruction |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 301 | A710( and ip, scno, #0x0f000000 @ check for SWI ) |
| 302 | A710( teq ip, #0x0f000000 ) |
| 303 | A710( bne .Larm710bug ) |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 304 | |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 305 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
| 307 | #ifdef CONFIG_ALIGNMENT_TRAP |
| 308 | ldr ip, __cr_alignment |
| 309 | ldr ip, [ip] |
| 310 | mcr p15, 0, ip, c1, c0 @ update control register |
| 311 | #endif |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame] | 312 | enable_irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | get_thread_info tsk |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 315 | adr tbl, sys_call_table @ load syscall table pointer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | ldr ip, [tsk, #TI_FLAGS] @ check for syscall tracing |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 317 | |
| 318 | #if defined(CONFIG_OABI_COMPAT) |
| 319 | /* |
| 320 | * If the swi argument is zero, this is an EABI call and we do nothing. |
| 321 | * |
| 322 | * If this is an old ABI call, get the syscall number into scno and |
| 323 | * get the old ABI syscall table address. |
| 324 | */ |
| 325 | bics r10, r10, #0xff000000 |
| 326 | eorne scno, r10, #__NR_OABI_SYSCALL_BASE |
| 327 | ldrne tbl, =sys_oabi_call_table |
| 328 | #elif !defined(CONFIG_AEABI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | bic scno, scno, #0xff000000 @ mask off SWI op-code |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 330 | eor scno, scno, #__NR_SYSCALL_BASE @ check OS number |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 331 | #endif |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 332 | |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 333 | stmdb sp!, {r4, r5} @ push fifth and sixth args |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | tst ip, #_TIF_SYSCALL_TRACE @ are we tracing syscalls? |
| 335 | bne __sys_trace |
| 336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | cmp scno, #NR_syscalls @ check upper syscall limit |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 338 | adr lr, BSYM(ret_fast_syscall) @ return address |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine |
| 340 | |
| 341 | add r1, sp, #S_OFF |
| 342 | 2: mov why, #0 @ no longer a real syscall |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 343 | cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE) |
| 344 | eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | bcs arm_syscall |
| 346 | b sys_ni_syscall @ not private func |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 347 | ENDPROC(vector_swi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
| 349 | /* |
| 350 | * This is the really slow path. We're going to be doing |
| 351 | * context switches, and waiting for our parent to respond. |
| 352 | */ |
| 353 | __sys_trace: |
Nicolas Pitre | 3f47112 | 2006-01-14 19:30:04 +0000 | [diff] [blame] | 354 | mov r2, scno |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | add r1, sp, #S_OFF |
| 356 | mov r0, #0 @ trace entry [IP = 0] |
| 357 | bl syscall_trace |
| 358 | |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 359 | adr lr, BSYM(__sys_trace_return) @ return address |
Nicolas Pitre | 3f47112 | 2006-01-14 19:30:04 +0000 | [diff] [blame] | 360 | mov scno, r0 @ syscall number (possibly new) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | add r1, sp, #S_R0 + S_OFF @ pointer to regs |
| 362 | cmp scno, #NR_syscalls @ check upper syscall limit |
| 363 | ldmccia r1, {r0 - r3} @ have to reload r0 - r3 |
| 364 | ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine |
| 365 | b 2b |
| 366 | |
| 367 | __sys_trace_return: |
| 368 | str r0, [sp, #S_R0 + S_OFF]! @ save returned r0 |
Nicolas Pitre | 3f47112 | 2006-01-14 19:30:04 +0000 | [diff] [blame] | 369 | mov r2, scno |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | mov r1, sp |
| 371 | mov r0, #1 @ trace exit [IP = 1] |
| 372 | bl syscall_trace |
| 373 | b ret_slow_syscall |
| 374 | |
| 375 | .align 5 |
| 376 | #ifdef CONFIG_ALIGNMENT_TRAP |
| 377 | .type __cr_alignment, #object |
| 378 | __cr_alignment: |
| 379 | .word cr_alignment |
| 380 | #endif |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 381 | .ltorg |
| 382 | |
| 383 | /* |
| 384 | * This is the syscall table declaration for native ABI syscalls. |
| 385 | * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall. |
| 386 | */ |
| 387 | #define ABI(native, compat) native |
| 388 | #ifdef CONFIG_AEABI |
| 389 | #define OBSOLETE(syscall) sys_ni_syscall |
| 390 | #else |
| 391 | #define OBSOLETE(syscall) syscall |
| 392 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
| 394 | .type sys_call_table, #object |
| 395 | ENTRY(sys_call_table) |
| 396 | #include "calls.S" |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 397 | #undef ABI |
| 398 | #undef OBSOLETE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
| 400 | /*============================================================================ |
| 401 | * Special system call wrappers |
| 402 | */ |
| 403 | @ r0 = syscall number |
Russell King | 567bd98 | 2005-12-17 15:25:42 +0000 | [diff] [blame] | 404 | @ r8 = syscall table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | sys_syscall: |
Paul Brook | 5247593 | 2006-05-16 14:25:55 +0100 | [diff] [blame] | 406 | bic scno, r0, #__NR_OABI_SYSCALL_BASE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | cmp scno, #__NR_syscall - __NR_SYSCALL_BASE |
| 408 | cmpne scno, #NR_syscalls @ check range |
| 409 | stmloia sp, {r5, r6} @ shuffle args |
| 410 | movlo r0, r1 |
| 411 | movlo r1, r2 |
| 412 | movlo r2, r3 |
| 413 | movlo r3, r4 |
| 414 | ldrlo pc, [tbl, scno, lsl #2] |
| 415 | b sys_ni_syscall |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 416 | ENDPROC(sys_syscall) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
| 418 | sys_fork_wrapper: |
| 419 | add r0, sp, #S_OFF |
| 420 | b sys_fork |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 421 | ENDPROC(sys_fork_wrapper) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
| 423 | sys_vfork_wrapper: |
| 424 | add r0, sp, #S_OFF |
| 425 | b sys_vfork |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 426 | ENDPROC(sys_vfork_wrapper) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
| 428 | sys_execve_wrapper: |
| 429 | add r3, sp, #S_OFF |
| 430 | b sys_execve |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 431 | ENDPROC(sys_execve_wrapper) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
| 433 | sys_clone_wrapper: |
| 434 | add ip, sp, #S_OFF |
| 435 | str ip, [sp, #4] |
| 436 | b sys_clone |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 437 | ENDPROC(sys_clone_wrapper) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | sys_sigreturn_wrapper: |
| 440 | add r0, sp, #S_OFF |
| 441 | b sys_sigreturn |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 442 | ENDPROC(sys_sigreturn_wrapper) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
| 444 | sys_rt_sigreturn_wrapper: |
| 445 | add r0, sp, #S_OFF |
| 446 | b sys_rt_sigreturn |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 447 | ENDPROC(sys_rt_sigreturn_wrapper) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
| 449 | sys_sigaltstack_wrapper: |
| 450 | ldr r2, [sp, #S_OFF + S_SP] |
| 451 | b do_sigaltstack |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 452 | ENDPROC(sys_sigaltstack_wrapper) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
Nicolas Pitre | 713c481 | 2006-01-14 16:35:03 +0000 | [diff] [blame] | 454 | sys_statfs64_wrapper: |
| 455 | teq r1, #88 |
| 456 | moveq r1, #84 |
| 457 | b sys_statfs64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 458 | ENDPROC(sys_statfs64_wrapper) |
Nicolas Pitre | 713c481 | 2006-01-14 16:35:03 +0000 | [diff] [blame] | 459 | |
| 460 | sys_fstatfs64_wrapper: |
| 461 | teq r1, #88 |
| 462 | moveq r1, #84 |
| 463 | b sys_fstatfs64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 464 | ENDPROC(sys_fstatfs64_wrapper) |
Nicolas Pitre | 713c481 | 2006-01-14 16:35:03 +0000 | [diff] [blame] | 465 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | /* |
| 467 | * Note: off_4k (r5) is always units of 4K. If we can't do the requested |
| 468 | * offset, we return EINVAL. |
| 469 | */ |
| 470 | sys_mmap2: |
| 471 | #if PAGE_SHIFT > 12 |
| 472 | tst r5, #PGOFF_MASK |
| 473 | moveq r5, r5, lsr #PAGE_SHIFT - 12 |
| 474 | streq r5, [sp, #4] |
Al Viro | f8b7256 | 2009-11-30 17:37:04 -0500 | [diff] [blame] | 475 | beq sys_mmap_pgoff |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | mov r0, #-EINVAL |
Russell King | 7999d8d | 2006-06-25 11:17:23 +0100 | [diff] [blame] | 477 | mov pc, lr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | #else |
| 479 | str r5, [sp, #4] |
Al Viro | f8b7256 | 2009-11-30 17:37:04 -0500 | [diff] [blame] | 480 | b sys_mmap_pgoff |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | #endif |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 482 | ENDPROC(sys_mmap2) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 483 | |
| 484 | #ifdef CONFIG_OABI_COMPAT |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 485 | |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 486 | /* |
| 487 | * These are syscalls with argument register differences |
| 488 | */ |
| 489 | |
| 490 | sys_oabi_pread64: |
| 491 | stmia sp, {r3, r4} |
| 492 | b sys_pread64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 493 | ENDPROC(sys_oabi_pread64) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 494 | |
| 495 | sys_oabi_pwrite64: |
| 496 | stmia sp, {r3, r4} |
| 497 | b sys_pwrite64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 498 | ENDPROC(sys_oabi_pwrite64) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 499 | |
| 500 | sys_oabi_truncate64: |
| 501 | mov r3, r2 |
| 502 | mov r2, r1 |
| 503 | b sys_truncate64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 504 | ENDPROC(sys_oabi_truncate64) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 505 | |
| 506 | sys_oabi_ftruncate64: |
| 507 | mov r3, r2 |
| 508 | mov r2, r1 |
| 509 | b sys_ftruncate64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 510 | ENDPROC(sys_oabi_ftruncate64) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 511 | |
| 512 | sys_oabi_readahead: |
| 513 | str r3, [sp] |
| 514 | mov r3, r2 |
| 515 | mov r2, r1 |
| 516 | b sys_readahead |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 517 | ENDPROC(sys_oabi_readahead) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 518 | |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 519 | /* |
| 520 | * Let's declare a second syscall table for old ABI binaries |
| 521 | * using the compatibility syscall entries. |
| 522 | */ |
| 523 | #define ABI(native, compat) compat |
| 524 | #define OBSOLETE(syscall) syscall |
| 525 | |
| 526 | .type sys_oabi_call_table, #object |
| 527 | ENTRY(sys_oabi_call_table) |
| 528 | #include "calls.S" |
| 529 | #undef ABI |
| 530 | #undef OBSOLETE |
| 531 | |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 532 | #endif |
| 533 | |