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> |
Dan Williams | f80dff9 | 2007-02-16 22:16:32 +0100 | [diff] [blame] | 12 | #include <asm/arch/entry-macro.S> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
| 14 | #include "entry-header.S" |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | .align 5 |
| 18 | /* |
| 19 | * This is the fast syscall return path. We do as little as |
| 20 | * possible here, and this includes saving r0 back into the SVC |
| 21 | * stack. |
| 22 | */ |
| 23 | ret_fast_syscall: |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame] | 24 | disable_irq @ disable interrupts |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | ldr r1, [tsk, #TI_FLAGS] |
| 26 | tst r1, #_TIF_WORK_MASK |
| 27 | bne fast_work_pending |
Russell King | f4dc9a4 | 2005-04-26 15:20:34 +0100 | [diff] [blame] | 28 | |
Dan Williams | f80dff9 | 2007-02-16 22:16:32 +0100 | [diff] [blame] | 29 | /* perform architecture specific actions before user return */ |
| 30 | arch_ret_to_user r1, lr |
| 31 | |
Russell King | f4dc9a4 | 2005-04-26 15:20:34 +0100 | [diff] [blame] | 32 | @ fast_restore_user_regs |
| 33 | ldr r1, [sp, #S_OFF + S_PSR] @ get calling cpsr |
| 34 | ldr lr, [sp, #S_OFF + S_PC]! @ get pc |
| 35 | msr spsr_cxsf, r1 @ save in spsr_svc |
| 36 | ldmdb sp, {r1 - lr}^ @ get calling r1 - lr |
| 37 | mov r0, r0 |
| 38 | add sp, sp, #S_FRAME_SIZE - S_PC |
| 39 | movs pc, lr @ return & move spsr_svc into cpsr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | /* |
| 42 | * Ok, we need to do extra processing, enter the slow path. |
| 43 | */ |
| 44 | fast_work_pending: |
| 45 | str r0, [sp, #S_R0+S_OFF]! @ returned r0 |
| 46 | work_pending: |
| 47 | tst r1, #_TIF_NEED_RESCHED |
| 48 | bne work_resched |
Stephane Eranian | a583f1b | 2007-07-31 00:38:00 -0700 | [diff] [blame] | 49 | tst r1, #_TIF_SIGPENDING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | beq no_work_pending |
| 51 | mov r0, sp @ 'regs' |
| 52 | mov r2, why @ 'syscall' |
| 53 | bl do_notify_resume |
Daniel Jacobowitz | a6c61e9 | 2005-11-19 10:01:07 +0000 | [diff] [blame] | 54 | b ret_slow_syscall @ Check work again |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | work_resched: |
| 57 | bl schedule |
| 58 | /* |
| 59 | * "slow" syscall return path. "why" tells us if this was a real syscall. |
| 60 | */ |
| 61 | ENTRY(ret_to_user) |
| 62 | ret_slow_syscall: |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame] | 63 | disable_irq @ disable interrupts |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | ldr r1, [tsk, #TI_FLAGS] |
| 65 | tst r1, #_TIF_WORK_MASK |
| 66 | bne work_pending |
| 67 | no_work_pending: |
Dan Williams | f80dff9 | 2007-02-16 22:16:32 +0100 | [diff] [blame] | 68 | /* perform architecture specific actions before user return */ |
| 69 | arch_ret_to_user r1, lr |
| 70 | |
Russell King | f4dc9a4 | 2005-04-26 15:20:34 +0100 | [diff] [blame] | 71 | @ slow_restore_user_regs |
| 72 | ldr r1, [sp, #S_PSR] @ get calling cpsr |
| 73 | ldr lr, [sp, #S_PC]! @ get pc |
| 74 | msr spsr_cxsf, r1 @ save in spsr_svc |
George G. Davis | 7b544c9 | 2007-12-01 05:49:41 +0100 | [diff] [blame] | 75 | ldmdb sp, {r0 - lr}^ @ get calling r0 - lr |
Russell King | f4dc9a4 | 2005-04-26 15:20:34 +0100 | [diff] [blame] | 76 | mov r0, r0 |
| 77 | add sp, sp, #S_FRAME_SIZE - S_PC |
| 78 | movs pc, lr @ return & move spsr_svc into cpsr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | /* |
| 81 | * This is how we return from a fork. |
| 82 | */ |
| 83 | ENTRY(ret_from_fork) |
| 84 | bl schedule_tail |
| 85 | get_thread_info tsk |
| 86 | ldr r1, [tsk, #TI_FLAGS] @ check for syscall tracing |
| 87 | mov why, #1 |
| 88 | tst r1, #_TIF_SYSCALL_TRACE @ are we tracing syscalls? |
| 89 | beq ret_slow_syscall |
| 90 | mov r1, sp |
| 91 | mov r0, #1 @ trace exit [IP = 1] |
| 92 | bl syscall_trace |
| 93 | b ret_slow_syscall |
| 94 | |
| 95 | |
Al Viro | fa1b4f9 | 2006-01-19 12:57:01 +0000 | [diff] [blame] | 96 | .equ NR_syscalls,0 |
| 97 | #define CALL(x) .equ NR_syscalls,NR_syscalls+1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | #include "calls.S" |
Al Viro | fa1b4f9 | 2006-01-19 12:57:01 +0000 | [diff] [blame] | 99 | #undef CALL |
| 100 | #define CALL(x) .long x |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame^] | 102 | #ifdef CONFIG_FTRACE |
| 103 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 104 | ENTRY(mcount) |
| 105 | stmdb sp!, {r0-r3, lr} |
| 106 | mov r0, lr |
| 107 | |
| 108 | .globl mcount_call |
| 109 | mcount_call: |
| 110 | bl ftrace_stub |
| 111 | ldmia sp!, {r0-r3, pc} |
| 112 | |
| 113 | ENTRY(ftrace_caller) |
| 114 | stmdb sp!, {r0-r3, lr} |
| 115 | ldr r1, [fp, #-4] |
| 116 | mov r0, lr |
| 117 | |
| 118 | .globl ftrace_call |
| 119 | ftrace_call: |
| 120 | bl ftrace_stub |
| 121 | ldmia sp!, {r0-r3, pc} |
| 122 | |
| 123 | #else |
| 124 | |
| 125 | ENTRY(mcount) |
| 126 | stmdb sp!, {r0-r3, lr} |
| 127 | ldr r0, =ftrace_trace_function |
| 128 | ldr r2, [r0] |
| 129 | adr r0, ftrace_stub |
| 130 | cmp r0, r2 |
| 131 | bne trace |
| 132 | ldmia sp!, {r0-r3, pc} |
| 133 | |
| 134 | trace: |
| 135 | ldr r1, [fp, #-4] |
| 136 | mov r0, lr |
| 137 | mov lr, pc |
| 138 | mov pc, r2 |
| 139 | ldmia sp!, {r0-r3, pc} |
| 140 | |
| 141 | #endif /* CONFIG_DYNAMIC_FTRACE */ |
| 142 | |
| 143 | .globl ftrace_stub |
| 144 | ftrace_stub: |
| 145 | mov pc, lr |
| 146 | |
| 147 | #endif /* CONFIG_FTRACE */ |
| 148 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | /*============================================================================= |
| 150 | * SWI handler |
| 151 | *----------------------------------------------------------------------------- |
| 152 | */ |
| 153 | |
| 154 | /* If we're optimising for StrongARM the resulting code won't |
| 155 | run on an ARM7 and we can save a couple of instructions. |
| 156 | --pb */ |
| 157 | #ifdef CONFIG_CPU_ARM710 |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 158 | #define A710(code...) code |
| 159 | .Larm710bug: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | ldmia sp, {r0 - lr}^ @ Get calling r0 - lr |
| 161 | mov r0, r0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | add sp, sp, #S_FRAME_SIZE |
Nicolas Pitre | 60ac133 | 2005-10-12 19:51:24 +0100 | [diff] [blame] | 163 | subs pc, lr, #4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | #else |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 165 | #define A710(code...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | #endif |
| 167 | |
| 168 | .align 5 |
| 169 | ENTRY(vector_swi) |
Russell King | f4dc9a4 | 2005-04-26 15:20:34 +0100 | [diff] [blame] | 170 | sub sp, sp, #S_FRAME_SIZE |
| 171 | stmia sp, {r0 - r12} @ Calling r0 - r12 |
| 172 | add r8, sp, #S_PC |
| 173 | stmdb r8, {sp, lr}^ @ Calling sp, lr |
| 174 | mrs r8, spsr @ called from non-FIQ mode, so ok. |
| 175 | str lr, [sp, #S_PC] @ Save calling PC |
| 176 | str r8, [sp, #S_PSR] @ Save CPSR |
| 177 | str r0, [sp, #S_OLD_R0] @ Save OLD_R0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | zero_fp |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 179 | |
| 180 | /* |
| 181 | * Get the system call number. |
| 182 | */ |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 183 | |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 184 | #if defined(CONFIG_OABI_COMPAT) |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 185 | |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 186 | /* |
| 187 | * If we have CONFIG_OABI_COMPAT then we need to look at the swi |
| 188 | * value to determine if it is an EABI or an old ABI call. |
| 189 | */ |
| 190 | #ifdef CONFIG_ARM_THUMB |
| 191 | tst r8, #PSR_T_BIT |
| 192 | movne r10, #0 @ no thumb OABI emulation |
| 193 | ldreq r10, [lr, #-4] @ get SWI instruction |
| 194 | #else |
| 195 | ldr r10, [lr, #-4] @ get SWI instruction |
| 196 | A710( and ip, r10, #0x0f000000 @ check for SWI ) |
| 197 | A710( teq ip, #0x0f000000 ) |
| 198 | A710( bne .Larm710bug ) |
| 199 | #endif |
| 200 | |
| 201 | #elif defined(CONFIG_AEABI) |
| 202 | |
| 203 | /* |
| 204 | * Pure EABI user space always put syscall number into scno (r7). |
| 205 | */ |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 206 | A710( ldr ip, [lr, #-4] @ get SWI instruction ) |
| 207 | A710( and ip, ip, #0x0f000000 @ check for SWI ) |
| 208 | A710( teq ip, #0x0f000000 ) |
| 209 | A710( bne .Larm710bug ) |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 210 | |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 211 | #elif defined(CONFIG_ARM_THUMB) |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 212 | |
| 213 | /* Legacy ABI only, possibly thumb mode. */ |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 214 | tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs |
| 215 | addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in |
| 216 | ldreq scno, [lr, #-4] |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 217 | |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 218 | #else |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 219 | |
| 220 | /* Legacy ABI only. */ |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 221 | ldr scno, [lr, #-4] @ get SWI instruction |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 222 | A710( and ip, scno, #0x0f000000 @ check for SWI ) |
| 223 | A710( teq ip, #0x0f000000 ) |
| 224 | A710( bne .Larm710bug ) |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 225 | |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 226 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
| 228 | #ifdef CONFIG_ALIGNMENT_TRAP |
| 229 | ldr ip, __cr_alignment |
| 230 | ldr ip, [ip] |
| 231 | mcr p15, 0, ip, c1, c0 @ update control register |
| 232 | #endif |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame] | 233 | enable_irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | get_thread_info tsk |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 236 | adr tbl, sys_call_table @ load syscall table pointer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | ldr ip, [tsk, #TI_FLAGS] @ check for syscall tracing |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 238 | |
| 239 | #if defined(CONFIG_OABI_COMPAT) |
| 240 | /* |
| 241 | * If the swi argument is zero, this is an EABI call and we do nothing. |
| 242 | * |
| 243 | * If this is an old ABI call, get the syscall number into scno and |
| 244 | * get the old ABI syscall table address. |
| 245 | */ |
| 246 | bics r10, r10, #0xff000000 |
| 247 | eorne scno, r10, #__NR_OABI_SYSCALL_BASE |
| 248 | ldrne tbl, =sys_oabi_call_table |
| 249 | #elif !defined(CONFIG_AEABI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | bic scno, scno, #0xff000000 @ mask off SWI op-code |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 251 | eor scno, scno, #__NR_SYSCALL_BASE @ check OS number |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 252 | #endif |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 253 | |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 254 | stmdb sp!, {r4, r5} @ push fifth and sixth args |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | tst ip, #_TIF_SYSCALL_TRACE @ are we tracing syscalls? |
| 256 | bne __sys_trace |
| 257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | cmp scno, #NR_syscalls @ check upper syscall limit |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 259 | adr lr, ret_fast_syscall @ return address |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine |
| 261 | |
| 262 | add r1, sp, #S_OFF |
| 263 | 2: mov why, #0 @ no longer a real syscall |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 264 | cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE) |
| 265 | eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | bcs arm_syscall |
| 267 | b sys_ni_syscall @ not private func |
| 268 | |
| 269 | /* |
| 270 | * This is the really slow path. We're going to be doing |
| 271 | * context switches, and waiting for our parent to respond. |
| 272 | */ |
| 273 | __sys_trace: |
Nicolas Pitre | 3f47112 | 2006-01-14 19:30:04 +0000 | [diff] [blame] | 274 | mov r2, scno |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | add r1, sp, #S_OFF |
| 276 | mov r0, #0 @ trace entry [IP = 0] |
| 277 | bl syscall_trace |
| 278 | |
| 279 | adr lr, __sys_trace_return @ return address |
Nicolas Pitre | 3f47112 | 2006-01-14 19:30:04 +0000 | [diff] [blame] | 280 | mov scno, r0 @ syscall number (possibly new) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | add r1, sp, #S_R0 + S_OFF @ pointer to regs |
| 282 | cmp scno, #NR_syscalls @ check upper syscall limit |
| 283 | ldmccia r1, {r0 - r3} @ have to reload r0 - r3 |
| 284 | ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine |
| 285 | b 2b |
| 286 | |
| 287 | __sys_trace_return: |
| 288 | str r0, [sp, #S_R0 + S_OFF]! @ save returned r0 |
Nicolas Pitre | 3f47112 | 2006-01-14 19:30:04 +0000 | [diff] [blame] | 289 | mov r2, scno |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | mov r1, sp |
| 291 | mov r0, #1 @ trace exit [IP = 1] |
| 292 | bl syscall_trace |
| 293 | b ret_slow_syscall |
| 294 | |
| 295 | .align 5 |
| 296 | #ifdef CONFIG_ALIGNMENT_TRAP |
| 297 | .type __cr_alignment, #object |
| 298 | __cr_alignment: |
| 299 | .word cr_alignment |
| 300 | #endif |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 301 | .ltorg |
| 302 | |
| 303 | /* |
| 304 | * This is the syscall table declaration for native ABI syscalls. |
| 305 | * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall. |
| 306 | */ |
| 307 | #define ABI(native, compat) native |
| 308 | #ifdef CONFIG_AEABI |
| 309 | #define OBSOLETE(syscall) sys_ni_syscall |
| 310 | #else |
| 311 | #define OBSOLETE(syscall) syscall |
| 312 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
| 314 | .type sys_call_table, #object |
| 315 | ENTRY(sys_call_table) |
| 316 | #include "calls.S" |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 317 | #undef ABI |
| 318 | #undef OBSOLETE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
| 320 | /*============================================================================ |
| 321 | * Special system call wrappers |
| 322 | */ |
| 323 | @ r0 = syscall number |
Russell King | 567bd98 | 2005-12-17 15:25:42 +0000 | [diff] [blame] | 324 | @ r8 = syscall table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | .type sys_syscall, #function |
| 326 | sys_syscall: |
Paul Brook | 5247593 | 2006-05-16 14:25:55 +0100 | [diff] [blame] | 327 | bic scno, r0, #__NR_OABI_SYSCALL_BASE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | cmp scno, #__NR_syscall - __NR_SYSCALL_BASE |
| 329 | cmpne scno, #NR_syscalls @ check range |
| 330 | stmloia sp, {r5, r6} @ shuffle args |
| 331 | movlo r0, r1 |
| 332 | movlo r1, r2 |
| 333 | movlo r2, r3 |
| 334 | movlo r3, r4 |
| 335 | ldrlo pc, [tbl, scno, lsl #2] |
| 336 | b sys_ni_syscall |
| 337 | |
| 338 | sys_fork_wrapper: |
| 339 | add r0, sp, #S_OFF |
| 340 | b sys_fork |
| 341 | |
| 342 | sys_vfork_wrapper: |
| 343 | add r0, sp, #S_OFF |
| 344 | b sys_vfork |
| 345 | |
| 346 | sys_execve_wrapper: |
| 347 | add r3, sp, #S_OFF |
| 348 | b sys_execve |
| 349 | |
| 350 | sys_clone_wrapper: |
| 351 | add ip, sp, #S_OFF |
| 352 | str ip, [sp, #4] |
| 353 | b sys_clone |
| 354 | |
| 355 | sys_sigsuspend_wrapper: |
| 356 | add r3, sp, #S_OFF |
| 357 | b sys_sigsuspend |
| 358 | |
| 359 | sys_rt_sigsuspend_wrapper: |
| 360 | add r2, sp, #S_OFF |
| 361 | b sys_rt_sigsuspend |
| 362 | |
| 363 | sys_sigreturn_wrapper: |
| 364 | add r0, sp, #S_OFF |
| 365 | b sys_sigreturn |
| 366 | |
| 367 | sys_rt_sigreturn_wrapper: |
| 368 | add r0, sp, #S_OFF |
| 369 | b sys_rt_sigreturn |
| 370 | |
| 371 | sys_sigaltstack_wrapper: |
| 372 | ldr r2, [sp, #S_OFF + S_SP] |
| 373 | b do_sigaltstack |
| 374 | |
Nicolas Pitre | 713c481 | 2006-01-14 16:35:03 +0000 | [diff] [blame] | 375 | sys_statfs64_wrapper: |
| 376 | teq r1, #88 |
| 377 | moveq r1, #84 |
| 378 | b sys_statfs64 |
| 379 | |
| 380 | sys_fstatfs64_wrapper: |
| 381 | teq r1, #88 |
| 382 | moveq r1, #84 |
| 383 | b sys_fstatfs64 |
| 384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | /* |
| 386 | * Note: off_4k (r5) is always units of 4K. If we can't do the requested |
| 387 | * offset, we return EINVAL. |
| 388 | */ |
| 389 | sys_mmap2: |
| 390 | #if PAGE_SHIFT > 12 |
| 391 | tst r5, #PGOFF_MASK |
| 392 | moveq r5, r5, lsr #PAGE_SHIFT - 12 |
| 393 | streq r5, [sp, #4] |
| 394 | beq do_mmap2 |
| 395 | mov r0, #-EINVAL |
Russell King | 7999d8d | 2006-06-25 11:17:23 +0100 | [diff] [blame] | 396 | mov pc, lr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | #else |
| 398 | str r5, [sp, #4] |
| 399 | b do_mmap2 |
| 400 | #endif |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 401 | |
Paul Brook | 48d7927 | 2008-04-18 22:43:07 +0100 | [diff] [blame] | 402 | ENTRY(pabort_ifar) |
| 403 | mrc p15, 0, r0, cr6, cr0, 2 |
| 404 | ENTRY(pabort_noifar) |
| 405 | mov pc, lr |
| 406 | |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 407 | #ifdef CONFIG_OABI_COMPAT |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 408 | |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 409 | /* |
| 410 | * These are syscalls with argument register differences |
| 411 | */ |
| 412 | |
| 413 | sys_oabi_pread64: |
| 414 | stmia sp, {r3, r4} |
| 415 | b sys_pread64 |
| 416 | |
| 417 | sys_oabi_pwrite64: |
| 418 | stmia sp, {r3, r4} |
| 419 | b sys_pwrite64 |
| 420 | |
| 421 | sys_oabi_truncate64: |
| 422 | mov r3, r2 |
| 423 | mov r2, r1 |
| 424 | b sys_truncate64 |
| 425 | |
| 426 | sys_oabi_ftruncate64: |
| 427 | mov r3, r2 |
| 428 | mov r2, r1 |
| 429 | b sys_ftruncate64 |
| 430 | |
| 431 | sys_oabi_readahead: |
| 432 | str r3, [sp] |
| 433 | mov r3, r2 |
| 434 | mov r2, r1 |
| 435 | b sys_readahead |
| 436 | |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 437 | /* |
| 438 | * Let's declare a second syscall table for old ABI binaries |
| 439 | * using the compatibility syscall entries. |
| 440 | */ |
| 441 | #define ABI(native, compat) compat |
| 442 | #define OBSOLETE(syscall) syscall |
| 443 | |
| 444 | .type sys_oabi_call_table, #object |
| 445 | ENTRY(sys_oabi_call_table) |
| 446 | #include "calls.S" |
| 447 | #undef ABI |
| 448 | #undef OBSOLETE |
| 449 | |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 450 | #endif |
| 451 | |