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 | |
Russell King | 6ebbf2c | 2014-06-30 16:29:12 +0100 | [diff] [blame] | 11 | #include <asm/assembler.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <asm/unistd.h> |
Abhishek Sagar | 395a59d | 2008-06-21 23:47:27 +0530 | [diff] [blame] | 13 | #include <asm/ftrace.h> |
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 | |
Rob Herring | 13a5045 | 2012-02-07 09:28:22 -0600 | [diff] [blame] | 16 | #ifdef CONFIG_NEED_RET_TO_USER |
| 17 | #include <mach/entry-macro.S> |
| 18 | #else |
| 19 | .macro arch_ret_to_user, tmp1, tmp2 |
| 20 | .endm |
| 21 | #endif |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "entry-header.S" |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | .align 5 |
| 27 | /* |
| 28 | * This is the fast syscall return path. We do as little as |
| 29 | * possible here, and this includes saving r0 back into the SVC |
| 30 | * stack. |
| 31 | */ |
| 32 | ret_fast_syscall: |
Catalin Marinas | c4c5716 | 2009-02-16 11:42:09 +0100 | [diff] [blame] | 33 | UNWIND(.fnstart ) |
| 34 | UNWIND(.cantunwind ) |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame] | 35 | disable_irq @ disable interrupts |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | ldr r1, [tsk, #TI_FLAGS] |
| 37 | tst r1, #_TIF_WORK_MASK |
| 38 | bne fast_work_pending |
Todd Android Poynor | d13e5ed | 2010-12-23 01:52:44 +0100 | [diff] [blame] | 39 | asm_trace_hardirqs_on |
Russell King | f4dc9a4 | 2005-04-26 15:20:34 +0100 | [diff] [blame] | 40 | |
Dan Williams | f80dff9 | 2007-02-16 22:16:32 +0100 | [diff] [blame] | 41 | /* perform architecture specific actions before user return */ |
| 42 | arch_ret_to_user r1, lr |
Kevin Hilman | b008848 | 2013-03-28 22:54:40 +0100 | [diff] [blame] | 43 | ct_user_enter |
Dan Williams | f80dff9 | 2007-02-16 22:16:32 +0100 | [diff] [blame] | 44 | |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 45 | restore_user_regs fast = 1, offset = S_OFF |
Catalin Marinas | c4c5716 | 2009-02-16 11:42:09 +0100 | [diff] [blame] | 46 | UNWIND(.fnend ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | /* |
| 49 | * Ok, we need to do extra processing, enter the slow path. |
| 50 | */ |
| 51 | fast_work_pending: |
| 52 | str r0, [sp, #S_R0+S_OFF]! @ returned r0 |
| 53 | work_pending: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | mov r0, sp @ 'regs' |
| 55 | mov r2, why @ 'syscall' |
Al Viro | 0a267fa | 2012-07-19 17:47:55 +0100 | [diff] [blame] | 56 | bl do_work_pending |
Al Viro | 6628521 | 2012-07-19 17:48:50 +0100 | [diff] [blame] | 57 | cmp r0, #0 |
Al Viro | 8178378 | 2012-07-19 17:48:21 +0100 | [diff] [blame] | 58 | beq no_work_pending |
Al Viro | 6628521 | 2012-07-19 17:48:50 +0100 | [diff] [blame] | 59 | movlt scno, #(__NR_restart_syscall - __NR_SYSCALL_BASE) |
Al Viro | 8178378 | 2012-07-19 17:48:21 +0100 | [diff] [blame] | 60 | ldmia sp, {r0 - r6} @ have to reload r0 - r6 |
| 61 | b local_restart @ ... and off we go |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | /* |
| 64 | * "slow" syscall return path. "why" tells us if this was a real syscall. |
| 65 | */ |
| 66 | ENTRY(ret_to_user) |
| 67 | ret_slow_syscall: |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame] | 68 | disable_irq @ disable interrupts |
Ming Lei | 9fc2552 | 2011-06-05 02:24:58 +0100 | [diff] [blame] | 69 | ENTRY(ret_to_user_from_irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | ldr r1, [tsk, #TI_FLAGS] |
| 71 | tst r1, #_TIF_WORK_MASK |
| 72 | bne work_pending |
| 73 | no_work_pending: |
Todd Android Poynor | d13e5ed | 2010-12-23 01:52:44 +0100 | [diff] [blame] | 74 | asm_trace_hardirqs_on |
Russell King | 651e949 | 2013-03-28 11:44:25 +0000 | [diff] [blame] | 75 | |
Dan Williams | f80dff9 | 2007-02-16 22:16:32 +0100 | [diff] [blame] | 76 | /* perform architecture specific actions before user return */ |
| 77 | arch_ret_to_user r1, lr |
Kevin Hilman | b008848 | 2013-03-28 22:54:40 +0100 | [diff] [blame] | 78 | ct_user_enter save = 0 |
Dan Williams | f80dff9 | 2007-02-16 22:16:32 +0100 | [diff] [blame] | 79 | |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 80 | restore_user_regs fast = 0, offset = 0 |
Ming Lei | 9fc2552 | 2011-06-05 02:24:58 +0100 | [diff] [blame] | 81 | ENDPROC(ret_to_user_from_irq) |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 82 | ENDPROC(ret_to_user) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
| 84 | /* |
| 85 | * This is how we return from a fork. |
| 86 | */ |
| 87 | ENTRY(ret_from_fork) |
| 88 | bl schedule_tail |
Al Viro | 9fff2fa | 2012-10-10 22:23:29 -0400 | [diff] [blame] | 89 | cmp r5, #0 |
| 90 | movne r0, r4 |
Russell King | 14327c6 | 2015-04-21 14:17:25 +0100 | [diff] [blame^] | 91 | badrne lr, 1f |
Russell King | 6ebbf2c | 2014-06-30 16:29:12 +0100 | [diff] [blame] | 92 | retne r5 |
Russell King | 68687c8 | 2012-10-15 00:16:49 +0100 | [diff] [blame] | 93 | 1: get_thread_info tsk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | b ret_slow_syscall |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 95 | ENDPROC(ret_from_fork) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Al Viro | fa1b4f9 | 2006-01-19 12:57:01 +0000 | [diff] [blame] | 97 | .equ NR_syscalls,0 |
| 98 | #define CALL(x) .equ NR_syscalls,NR_syscalls+1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | #include "calls.S" |
Wade Farnsworth | 1f66e06 | 2012-09-07 18:18:25 +0100 | [diff] [blame] | 100 | |
| 101 | /* |
| 102 | * Ensure that the system call table is equal to __NR_syscalls, |
| 103 | * which is the value the rest of the system sees |
| 104 | */ |
| 105 | .ifne NR_syscalls - __NR_syscalls |
| 106 | .error "__NR_syscalls is not equal to the size of the syscall table" |
| 107 | .endif |
| 108 | |
Al Viro | fa1b4f9 | 2006-01-19 12:57:01 +0000 | [diff] [blame] | 109 | #undef CALL |
| 110 | #define CALL(x) .long x |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | /*============================================================================= |
| 113 | * SWI handler |
| 114 | *----------------------------------------------------------------------------- |
| 115 | */ |
| 116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | .align 5 |
| 118 | ENTRY(vector_swi) |
Uwe Kleine-König | 19c4d59 | 2010-05-21 18:06:42 +0100 | [diff] [blame] | 119 | #ifdef CONFIG_CPU_V7M |
| 120 | v7m_exception_entry |
| 121 | #else |
Russell King | f4dc9a4 | 2005-04-26 15:20:34 +0100 | [diff] [blame] | 122 | sub sp, sp, #S_FRAME_SIZE |
| 123 | stmia sp, {r0 - r12} @ Calling r0 - r12 |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 124 | ARM( add r8, sp, #S_PC ) |
| 125 | ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr |
| 126 | THUMB( mov r8, sp ) |
| 127 | THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr |
Russell King | f4dc9a4 | 2005-04-26 15:20:34 +0100 | [diff] [blame] | 128 | mrs r8, spsr @ called from non-FIQ mode, so ok. |
| 129 | str lr, [sp, #S_PC] @ Save calling PC |
| 130 | str r8, [sp, #S_PSR] @ Save CPSR |
| 131 | str r0, [sp, #S_OLD_R0] @ Save OLD_R0 |
Uwe Kleine-König | 19c4d59 | 2010-05-21 18:06:42 +0100 | [diff] [blame] | 132 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | zero_fp |
Russell King | 195b58a | 2014-08-28 13:08:14 +0100 | [diff] [blame] | 134 | alignment_trap r10, ip, __cr_alignment |
Will Deacon | 1aa2b3b | 2013-06-05 11:25:13 +0100 | [diff] [blame] | 135 | enable_irq |
| 136 | ct_user_exit |
| 137 | get_thread_info tsk |
| 138 | |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 139 | /* |
| 140 | * Get the system call number. |
| 141 | */ |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 142 | |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 143 | #if defined(CONFIG_OABI_COMPAT) |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 144 | |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 145 | /* |
| 146 | * If we have CONFIG_OABI_COMPAT then we need to look at the swi |
| 147 | * value to determine if it is an EABI or an old ABI call. |
| 148 | */ |
| 149 | #ifdef CONFIG_ARM_THUMB |
| 150 | tst r8, #PSR_T_BIT |
| 151 | movne r10, #0 @ no thumb OABI emulation |
Will Deacon | 1aa2b3b | 2013-06-05 11:25:13 +0100 | [diff] [blame] | 152 | USER( ldreq r10, [lr, #-4] ) @ get SWI instruction |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 153 | #else |
Will Deacon | 1aa2b3b | 2013-06-05 11:25:13 +0100 | [diff] [blame] | 154 | USER( ldr r10, [lr, #-4] ) @ get SWI instruction |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 155 | #endif |
Ben Dooks | 457c240 | 2013-02-12 18:59:57 +0000 | [diff] [blame] | 156 | ARM_BE8(rev r10, r10) @ little endian instruction |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 157 | |
| 158 | #elif defined(CONFIG_AEABI) |
| 159 | |
| 160 | /* |
| 161 | * Pure EABI user space always put syscall number into scno (r7). |
| 162 | */ |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 163 | #elif defined(CONFIG_ARM_THUMB) |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 164 | /* Legacy ABI only, possibly thumb mode. */ |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 165 | tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs |
| 166 | addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in |
Will Deacon | 1aa2b3b | 2013-06-05 11:25:13 +0100 | [diff] [blame] | 167 | USER( ldreq scno, [lr, #-4] ) |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 168 | |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 169 | #else |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 170 | /* Legacy ABI only. */ |
Will Deacon | 1aa2b3b | 2013-06-05 11:25:13 +0100 | [diff] [blame] | 171 | USER( ldr scno, [lr, #-4] ) @ get SWI instruction |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 172 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 174 | adr tbl, sys_call_table @ load syscall table pointer |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 175 | |
| 176 | #if defined(CONFIG_OABI_COMPAT) |
| 177 | /* |
| 178 | * If the swi argument is zero, this is an EABI call and we do nothing. |
| 179 | * |
| 180 | * If this is an old ABI call, get the syscall number into scno and |
| 181 | * get the old ABI syscall table address. |
| 182 | */ |
| 183 | bics r10, r10, #0xff000000 |
| 184 | eorne scno, r10, #__NR_OABI_SYSCALL_BASE |
| 185 | ldrne tbl, =sys_oabi_call_table |
| 186 | #elif !defined(CONFIG_AEABI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | bic scno, scno, #0xff000000 @ mask off SWI op-code |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 188 | eor scno, scno, #__NR_SYSCALL_BASE @ check OS number |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 189 | #endif |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 190 | |
Al Viro | 8178378 | 2012-07-19 17:48:21 +0100 | [diff] [blame] | 191 | local_restart: |
Nicolas Pitre | 70c70d9 | 2010-08-26 15:08:35 -0700 | [diff] [blame] | 192 | ldr r10, [tsk, #TI_FLAGS] @ check for syscall tracing |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 193 | stmdb sp!, {r4, r5} @ push fifth and sixth args |
Nicolas Pitre | 70c70d9 | 2010-08-26 15:08:35 -0700 | [diff] [blame] | 194 | |
Nathaniel Husted | 29ef73b | 2012-01-03 14:23:09 -0500 | [diff] [blame] | 195 | tst r10, #_TIF_SYSCALL_WORK @ are we tracing syscalls? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | bne __sys_trace |
| 197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | cmp scno, #NR_syscalls @ check upper syscall limit |
Russell King | 14327c6 | 2015-04-21 14:17:25 +0100 | [diff] [blame^] | 199 | badr lr, ret_fast_syscall @ return address |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine |
| 201 | |
| 202 | add r1, sp, #S_OFF |
Will Deacon | d95bc25 | 2013-09-19 10:32:20 +0100 | [diff] [blame] | 203 | 2: cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE) |
Russell King | e0f9f4a | 2005-04-26 15:19:24 +0100 | [diff] [blame] | 204 | eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back |
Will Deacon | 377747c | 2013-05-13 19:16:34 +0100 | [diff] [blame] | 205 | bcs arm_syscall |
Will Deacon | d95bc25 | 2013-09-19 10:32:20 +0100 | [diff] [blame] | 206 | mov why, #0 @ no longer a real syscall |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | b sys_ni_syscall @ not private func |
Will Deacon | 1aa2b3b | 2013-06-05 11:25:13 +0100 | [diff] [blame] | 208 | |
| 209 | #if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI) |
| 210 | /* |
| 211 | * We failed to handle a fault trying to access the page |
| 212 | * containing the swi instruction, but we're not really in a |
| 213 | * position to return -EFAULT. Instead, return back to the |
| 214 | * instruction and re-enter the user fault handling path trying |
| 215 | * to page it in. This will likely result in sending SEGV to the |
| 216 | * current task. |
| 217 | */ |
| 218 | 9001: |
| 219 | sub lr, lr, #4 |
| 220 | str lr, [sp, #S_PC] |
| 221 | b ret_fast_syscall |
| 222 | #endif |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 223 | ENDPROC(vector_swi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
| 225 | /* |
| 226 | * This is the really slow path. We're going to be doing |
| 227 | * context switches, and waiting for our parent to respond. |
| 228 | */ |
| 229 | __sys_trace: |
Will Deacon | ad72254 | 2012-07-06 15:50:14 +0100 | [diff] [blame] | 230 | mov r1, scno |
| 231 | add r0, sp, #S_OFF |
| 232 | bl syscall_trace_enter |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Russell King | 14327c6 | 2015-04-21 14:17:25 +0100 | [diff] [blame^] | 234 | badr lr, __sys_trace_return @ return address |
Nicolas Pitre | 3f47112 | 2006-01-14 19:30:04 +0000 | [diff] [blame] | 235 | mov scno, r0 @ syscall number (possibly new) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | add r1, sp, #S_R0 + S_OFF @ pointer to regs |
| 237 | cmp scno, #NR_syscalls @ check upper syscall limit |
Will Deacon | c7aa00d | 2012-07-19 17:49:22 +0100 | [diff] [blame] | 238 | ldmccia r1, {r0 - r6} @ have to reload r0 - r6 |
| 239 | stmccia sp, {r4, r5} @ and update the stack args |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine |
Kees Cook | ad75b51 | 2012-11-15 22:12:17 +0100 | [diff] [blame] | 241 | cmp scno, #-1 @ skip the syscall? |
| 242 | bne 2b |
| 243 | add sp, sp, #S_OFF @ restore stack |
| 244 | b ret_slow_syscall |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
| 246 | __sys_trace_return: |
| 247 | str r0, [sp, #S_R0 + S_OFF]! @ save returned r0 |
Will Deacon | ad72254 | 2012-07-06 15:50:14 +0100 | [diff] [blame] | 248 | mov r0, sp |
| 249 | bl syscall_trace_exit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | b ret_slow_syscall |
| 251 | |
| 252 | .align 5 |
| 253 | #ifdef CONFIG_ALIGNMENT_TRAP |
| 254 | .type __cr_alignment, #object |
| 255 | __cr_alignment: |
| 256 | .word cr_alignment |
| 257 | #endif |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 258 | .ltorg |
| 259 | |
| 260 | /* |
| 261 | * This is the syscall table declaration for native ABI syscalls. |
| 262 | * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall. |
| 263 | */ |
| 264 | #define ABI(native, compat) native |
| 265 | #ifdef CONFIG_AEABI |
| 266 | #define OBSOLETE(syscall) sys_ni_syscall |
| 267 | #else |
| 268 | #define OBSOLETE(syscall) syscall |
| 269 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
| 271 | .type sys_call_table, #object |
| 272 | ENTRY(sys_call_table) |
| 273 | #include "calls.S" |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 274 | #undef ABI |
| 275 | #undef OBSOLETE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
| 277 | /*============================================================================ |
| 278 | * Special system call wrappers |
| 279 | */ |
| 280 | @ r0 = syscall number |
Russell King | 567bd98 | 2005-12-17 15:25:42 +0000 | [diff] [blame] | 281 | @ r8 = syscall table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | sys_syscall: |
Paul Brook | 5247593 | 2006-05-16 14:25:55 +0100 | [diff] [blame] | 283 | bic scno, r0, #__NR_OABI_SYSCALL_BASE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | cmp scno, #__NR_syscall - __NR_SYSCALL_BASE |
| 285 | cmpne scno, #NR_syscalls @ check range |
| 286 | stmloia sp, {r5, r6} @ shuffle args |
| 287 | movlo r0, r1 |
| 288 | movlo r1, r2 |
| 289 | movlo r2, r3 |
| 290 | movlo r3, r4 |
| 291 | ldrlo pc, [tbl, scno, lsl #2] |
| 292 | b sys_ni_syscall |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 293 | ENDPROC(sys_syscall) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | sys_sigreturn_wrapper: |
| 296 | add r0, sp, #S_OFF |
Al Viro | 653d48b | 2010-09-17 14:34:39 +0100 | [diff] [blame] | 297 | mov why, #0 @ prevent syscall restart handling |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | b sys_sigreturn |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 299 | ENDPROC(sys_sigreturn_wrapper) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
| 301 | sys_rt_sigreturn_wrapper: |
| 302 | add r0, sp, #S_OFF |
Al Viro | 653d48b | 2010-09-17 14:34:39 +0100 | [diff] [blame] | 303 | mov why, #0 @ prevent syscall restart handling |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | b sys_rt_sigreturn |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 305 | ENDPROC(sys_rt_sigreturn_wrapper) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
Nicolas Pitre | 713c481 | 2006-01-14 16:35:03 +0000 | [diff] [blame] | 307 | sys_statfs64_wrapper: |
| 308 | teq r1, #88 |
| 309 | moveq r1, #84 |
| 310 | b sys_statfs64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 311 | ENDPROC(sys_statfs64_wrapper) |
Nicolas Pitre | 713c481 | 2006-01-14 16:35:03 +0000 | [diff] [blame] | 312 | |
| 313 | sys_fstatfs64_wrapper: |
| 314 | teq r1, #88 |
| 315 | moveq r1, #84 |
| 316 | b sys_fstatfs64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 317 | ENDPROC(sys_fstatfs64_wrapper) |
Nicolas Pitre | 713c481 | 2006-01-14 16:35:03 +0000 | [diff] [blame] | 318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | /* |
| 320 | * Note: off_4k (r5) is always units of 4K. If we can't do the requested |
| 321 | * offset, we return EINVAL. |
| 322 | */ |
| 323 | sys_mmap2: |
| 324 | #if PAGE_SHIFT > 12 |
| 325 | tst r5, #PGOFF_MASK |
| 326 | moveq r5, r5, lsr #PAGE_SHIFT - 12 |
| 327 | streq r5, [sp, #4] |
Al Viro | f8b7256 | 2009-11-30 17:37:04 -0500 | [diff] [blame] | 328 | beq sys_mmap_pgoff |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | mov r0, #-EINVAL |
Russell King | 6ebbf2c | 2014-06-30 16:29:12 +0100 | [diff] [blame] | 330 | ret lr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | #else |
| 332 | str r5, [sp, #4] |
Al Viro | f8b7256 | 2009-11-30 17:37:04 -0500 | [diff] [blame] | 333 | b sys_mmap_pgoff |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | #endif |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 335 | ENDPROC(sys_mmap2) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 336 | |
| 337 | #ifdef CONFIG_OABI_COMPAT |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 338 | |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 339 | /* |
| 340 | * These are syscalls with argument register differences |
| 341 | */ |
| 342 | |
| 343 | sys_oabi_pread64: |
| 344 | stmia sp, {r3, r4} |
| 345 | b sys_pread64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 346 | ENDPROC(sys_oabi_pread64) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 347 | |
| 348 | sys_oabi_pwrite64: |
| 349 | stmia sp, {r3, r4} |
| 350 | b sys_pwrite64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 351 | ENDPROC(sys_oabi_pwrite64) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 352 | |
| 353 | sys_oabi_truncate64: |
| 354 | mov r3, r2 |
| 355 | mov r2, r1 |
| 356 | b sys_truncate64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 357 | ENDPROC(sys_oabi_truncate64) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 358 | |
| 359 | sys_oabi_ftruncate64: |
| 360 | mov r3, r2 |
| 361 | mov r2, r1 |
| 362 | b sys_ftruncate64 |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 363 | ENDPROC(sys_oabi_ftruncate64) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 364 | |
| 365 | sys_oabi_readahead: |
| 366 | str r3, [sp] |
| 367 | mov r3, r2 |
| 368 | mov r2, r1 |
| 369 | b sys_readahead |
Catalin Marinas | 93ed397 | 2008-08-28 11:22:32 +0100 | [diff] [blame] | 370 | ENDPROC(sys_oabi_readahead) |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 371 | |
Nicolas Pitre | dd35afc | 2006-01-14 16:36:12 +0000 | [diff] [blame] | 372 | /* |
| 373 | * Let's declare a second syscall table for old ABI binaries |
| 374 | * using the compatibility syscall entries. |
| 375 | */ |
| 376 | #define ABI(native, compat) compat |
| 377 | #define OBSOLETE(syscall) syscall |
| 378 | |
| 379 | .type sys_oabi_call_table, #object |
| 380 | ENTRY(sys_oabi_call_table) |
| 381 | #include "calls.S" |
| 382 | #undef ABI |
| 383 | #undef OBSOLETE |
| 384 | |
Nicolas Pitre | 687ad01 | 2006-01-14 16:35:31 +0000 | [diff] [blame] | 385 | #endif |
| 386 | |