Merge tag 'v3.10.55' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / mips / kernel / scall64-64.S
CommitLineData
1da177e4
LT
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1995, 96, 97, 98, 99, 2000, 01, 02 by Ralf Baechle
7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
8 * Copyright (C) 2001 MIPS Technologies, Inc.
9 */
1da177e4
LT
10#include <linux/errno.h>
11#include <asm/asm.h>
12#include <asm/asmmacro.h>
192ef366 13#include <asm/irqflags.h>
1da177e4
LT
14#include <asm/mipsregs.h>
15#include <asm/regdef.h>
16#include <asm/stackframe.h>
048eb582 17#include <asm/asm-offsets.h>
1da177e4
LT
18#include <asm/sysmips.h>
19#include <asm/thread_info.h>
20#include <asm/unistd.h>
21#include <asm/war.h>
22
23#ifndef CONFIG_BINFMT_ELF32
24/* Neither O32 nor N32, so define handle_sys here */
25#define handle_sys64 handle_sys
26#endif
27
70342287 28 .align 5
1da177e4
LT
29NESTED(handle_sys64, PT_SIZE, sp)
30#if !defined(CONFIG_MIPS32_O32) && !defined(CONFIG_MIPS32_N32)
31 /*
32 * When 32-bit compatibility is configured scall_o32.S
33 * already did this.
34 */
35 .set noat
36 SAVE_SOME
eae6c0da 37 TRACE_IRQS_ON_RELOAD
1da177e4
LT
38 STI
39 .set at
40#endif
41
42 dsubu t0, v0, __NR_64_Linux # check syscall number
70342287 43 sltiu t0, t0, __NR_64_Linux_syscalls + 1
1da177e4
LT
44#if !defined(CONFIG_MIPS32_O32) && !defined(CONFIG_MIPS32_N32)
45 ld t1, PT_EPC(sp) # skip syscall on return
46 daddiu t1, 4 # skip to next instruction
47 sd t1, PT_EPC(sp)
48#endif
49 beqz t0, illegal_syscall
50
51 dsll t0, v0, 3 # offset into table
52 ld t2, (sys_call_table - (__NR_64_Linux * 8))(t0)
53 # syscall routine
54
55 sd a3, PT_R26(sp) # save a3 for syscall restarting
56
1b91a02f 57 li t1, _TIF_WORK_SYSCALL_ENTRY
1da177e4
LT
58 LONG_L t0, TI_FLAGS($28) # syscall tracing enabled?
59 and t0, t1, t0
60 bnez t0, syscall_trace_entry
61
62 jalr t2 # Do The Real Thing (TM)
63
64 li t0, -EMAXERRNO - 1 # error?
65 sltu t0, t0, v0
66 sd t0, PT_R7(sp) # set error flag
67 beqz t0, 1f
68
8f5a00eb 69 ld t1, PT_R2(sp) # syscall number
1da177e4 70 dnegu v0 # error
8f5a00eb 71 sd t1, PT_R0(sp) # save it for syscall restarting
1da177e4
LT
721: sd v0, PT_R2(sp) # result
73
74n64_syscall_exit:
02f884ed 75 j syscall_exit_partial
1da177e4
LT
76
77/* ------------------------------------------------------------------------ */
78
79syscall_trace_entry:
80 SAVE_STATIC
81 move s0, t2
82 move a0, sp
8b659a39 83 jal syscall_trace_enter
1da177e4 84
04a7052c
RB
85 move t0, s0
86 RESTORE_STATIC
1da177e4
LT
87 ld a0, PT_R4(sp) # Restore argument registers
88 ld a1, PT_R5(sp)
89 ld a2, PT_R6(sp)
90 ld a3, PT_R7(sp)
91 ld a4, PT_R8(sp)
92 ld a5, PT_R9(sp)
04a7052c 93 jalr t0
1da177e4
LT
94
95 li t0, -EMAXERRNO - 1 # error?
96 sltu t0, t0, v0
97 sd t0, PT_R7(sp) # set error flag
98 beqz t0, 1f
99
8f5a00eb 100 ld t1, PT_R2(sp) # syscall number
1da177e4 101 dnegu v0 # error
8f5a00eb 102 sd t1, PT_R0(sp) # save it for syscall restarting
1da177e4
LT
1031: sd v0, PT_R2(sp) # result
104
105 j syscall_exit
106
107illegal_syscall:
108 /* This also isn't a 64-bit syscall, throw an error. */
bda8229b 109 li v0, ENOSYS # error
1da177e4
LT
110 sd v0, PT_R2(sp)
111 li t0, 1 # set error flag
112 sd t0, PT_R7(sp)
113 j n64_syscall_exit
114 END(handle_sys64)
115
1da177e4
LT
116 .align 3
117sys_call_table:
118 PTR sys_read /* 5000 */
119 PTR sys_write
120 PTR sys_open
121 PTR sys_close
122 PTR sys_newstat
123 PTR sys_newfstat /* 5005 */
124 PTR sys_newlstat
125 PTR sys_poll
126 PTR sys_lseek
dbda6ac0 127 PTR sys_mips_mmap
1da177e4
LT
128 PTR sys_mprotect /* 5010 */
129 PTR sys_munmap
130 PTR sys_brk
131 PTR sys_rt_sigaction
132 PTR sys_rt_sigprocmask
133 PTR sys_ioctl /* 5015 */
134 PTR sys_pread64
135 PTR sys_pwrite64
136 PTR sys_readv
137 PTR sys_writev
138 PTR sys_access /* 5020 */
8213bbf9 139 PTR sysm_pipe
1da177e4
LT
140 PTR sys_select
141 PTR sys_sched_yield
142 PTR sys_mremap
143 PTR sys_msync /* 5025 */
144 PTR sys_mincore
145 PTR sys_madvise
146 PTR sys_shmget
147 PTR sys_shmat
148 PTR sys_shmctl /* 5030 */
149 PTR sys_dup
150 PTR sys_dup2
151 PTR sys_pause
152 PTR sys_nanosleep
153 PTR sys_getitimer /* 5035 */
154 PTR sys_setitimer
155 PTR sys_alarm
156 PTR sys_getpid
157 PTR sys_sendfile64
158 PTR sys_socket /* 5040 */
159 PTR sys_connect
160 PTR sys_accept
161 PTR sys_sendto
162 PTR sys_recvfrom
163 PTR sys_sendmsg /* 5045 */
164 PTR sys_recvmsg
165 PTR sys_shutdown
166 PTR sys_bind
167 PTR sys_listen
168 PTR sys_getsockname /* 5050 */
169 PTR sys_getpeername
170 PTR sys_socketpair
171 PTR sys_setsockopt
172 PTR sys_getsockopt
50150d2b
AV
173 PTR __sys_clone /* 5055 */
174 PTR __sys_fork
1da177e4
LT
175 PTR sys_execve
176 PTR sys_exit
177 PTR sys_wait4
178 PTR sys_kill /* 5060 */
179 PTR sys_newuname
180 PTR sys_semget
181 PTR sys_semop
182 PTR sys_semctl
183 PTR sys_shmdt /* 5065 */
184 PTR sys_msgget
185 PTR sys_msgsnd
186 PTR sys_msgrcv
187 PTR sys_msgctl
188 PTR sys_fcntl /* 5070 */
189 PTR sys_flock
190 PTR sys_fsync
191 PTR sys_fdatasync
192 PTR sys_truncate
193 PTR sys_ftruncate /* 5075 */
194 PTR sys_getdents
195 PTR sys_getcwd
196 PTR sys_chdir
197 PTR sys_fchdir
198 PTR sys_rename /* 5080 */
199 PTR sys_mkdir
200 PTR sys_rmdir
201 PTR sys_creat
202 PTR sys_link
203 PTR sys_unlink /* 5085 */
204 PTR sys_symlink
205 PTR sys_readlink
206 PTR sys_chmod
207 PTR sys_fchmod
208 PTR sys_chown /* 5090 */
209 PTR sys_fchown
210 PTR sys_lchown
211 PTR sys_umask
212 PTR sys_gettimeofday
213 PTR sys_getrlimit /* 5095 */
214 PTR sys_getrusage
215 PTR sys_sysinfo
216 PTR sys_times
217 PTR sys_ptrace
218 PTR sys_getuid /* 5100 */
219 PTR sys_syslog
220 PTR sys_getgid
221 PTR sys_setuid
222 PTR sys_setgid
223 PTR sys_geteuid /* 5105 */
224 PTR sys_getegid
225 PTR sys_setpgid
226 PTR sys_getppid
227 PTR sys_getpgrp
228 PTR sys_setsid /* 5110 */
229 PTR sys_setreuid
230 PTR sys_setregid
231 PTR sys_getgroups
232 PTR sys_setgroups
233 PTR sys_setresuid /* 5115 */
234 PTR sys_getresuid
235 PTR sys_setresgid
236 PTR sys_getresgid
237 PTR sys_getpgid
238 PTR sys_setfsuid /* 5120 */
239 PTR sys_setfsgid
240 PTR sys_getsid
241 PTR sys_capget
242 PTR sys_capset
243 PTR sys_rt_sigpending /* 5125 */
244 PTR sys_rt_sigtimedwait
245 PTR sys_rt_sigqueueinfo
246 PTR sys_rt_sigsuspend
247 PTR sys_sigaltstack
248 PTR sys_utime /* 5130 */
249 PTR sys_mknod
250 PTR sys_personality
251 PTR sys_ustat
252 PTR sys_statfs
253 PTR sys_fstatfs /* 5135 */
254 PTR sys_sysfs
255 PTR sys_getpriority
256 PTR sys_setpriority
257 PTR sys_sched_setparam
258 PTR sys_sched_getparam /* 5140 */
259 PTR sys_sched_setscheduler
260 PTR sys_sched_getscheduler
261 PTR sys_sched_get_priority_max
262 PTR sys_sched_get_priority_min
263 PTR sys_sched_rr_get_interval /* 5145 */
264 PTR sys_mlock
265 PTR sys_munlock
266 PTR sys_mlockall
267 PTR sys_munlockall
268 PTR sys_vhangup /* 5150 */
269 PTR sys_pivot_root
270 PTR sys_sysctl
271 PTR sys_prctl
272 PTR sys_adjtimex
273 PTR sys_setrlimit /* 5155 */
274 PTR sys_chroot
275 PTR sys_sync
276 PTR sys_acct
277 PTR sys_settimeofday
278 PTR sys_mount /* 5160 */
279 PTR sys_umount
280 PTR sys_swapon
281 PTR sys_swapoff
282 PTR sys_reboot
283 PTR sys_sethostname /* 5165 */
284 PTR sys_setdomainname
285 PTR sys_ni_syscall /* was create_module */
286 PTR sys_init_module
287 PTR sys_delete_module
288 PTR sys_ni_syscall /* 5170, was get_kernel_syms */
289 PTR sys_ni_syscall /* was query_module */
290 PTR sys_quotactl
f5b94099 291 PTR sys_ni_syscall /* was nfsservctl */
1da177e4 292 PTR sys_ni_syscall /* res. for getpmsg */
70342287 293 PTR sys_ni_syscall /* 5175 for putpmsg */
1da177e4
LT
294 PTR sys_ni_syscall /* res. for afs_syscall */
295 PTR sys_ni_syscall /* res. for security */
296 PTR sys_gettid
297 PTR sys_readahead
298 PTR sys_setxattr /* 5180 */
299 PTR sys_lsetxattr
300 PTR sys_fsetxattr
301 PTR sys_getxattr
302 PTR sys_lgetxattr
303 PTR sys_fgetxattr /* 5185 */
304 PTR sys_listxattr
305 PTR sys_llistxattr
306 PTR sys_flistxattr
307 PTR sys_removexattr
308 PTR sys_lremovexattr /* 5190 */
309 PTR sys_fremovexattr
310 PTR sys_tkill
311 PTR sys_ni_syscall
312 PTR sys_futex
313 PTR sys_sched_setaffinity /* 5195 */
314 PTR sys_sched_getaffinity
315 PTR sys_cacheflush
316 PTR sys_cachectl
317 PTR sys_sysmips
318 PTR sys_io_setup /* 5200 */
319 PTR sys_io_destroy
320 PTR sys_io_getevents
321 PTR sys_io_submit
322 PTR sys_io_cancel
323 PTR sys_exit_group /* 5205 */
324 PTR sys_lookup_dcookie
325 PTR sys_epoll_create
326 PTR sys_epoll_ctl
327 PTR sys_epoll_wait
328 PTR sys_remap_file_pages /* 5210 */
329 PTR sys_rt_sigreturn
330 PTR sys_set_tid_address
331 PTR sys_restart_syscall
332 PTR sys_semtimedop
333 PTR sys_fadvise64_64 /* 5215 */
334 PTR sys_timer_create
335 PTR sys_timer_settime
336 PTR sys_timer_gettime
337 PTR sys_timer_getoverrun
338 PTR sys_timer_delete /* 5220 */
339 PTR sys_clock_settime
340 PTR sys_clock_gettime
341 PTR sys_clock_getres
342 PTR sys_clock_nanosleep
343 PTR sys_tgkill /* 5225 */
344 PTR sys_utimes
345 PTR sys_mbind
346 PTR sys_ni_syscall /* sys_get_mempolicy */
347 PTR sys_ni_syscall /* sys_set_mempolicy */
348 PTR sys_mq_open /* 5230 */
349 PTR sys_mq_unlink
350 PTR sys_mq_timedsend
351 PTR sys_mq_timedreceive
352 PTR sys_mq_notify
353 PTR sys_mq_getsetattr /* 5235 */
354 PTR sys_ni_syscall /* sys_vserver */
355 PTR sys_waitid
356 PTR sys_ni_syscall /* available, was setaltroot */
357 PTR sys_add_key
358 PTR sys_request_key /* 5240 */
359 PTR sys_keyctl
3c37026d 360 PTR sys_set_thread_area
7db36c85
RB
361 PTR sys_inotify_init
362 PTR sys_inotify_add_watch
363 PTR sys_inotify_rm_watch /* 5245 */
72bf8914
RB
364 PTR sys_migrate_pages
365 PTR sys_openat
366 PTR sys_mkdirat
367 PTR sys_mknodat
368 PTR sys_fchownat /* 5250 */
369 PTR sys_futimesat
370 PTR sys_newfstatat
371 PTR sys_unlinkat
372 PTR sys_renameat
373 PTR sys_linkat /* 5255 */
374 PTR sys_symlinkat
375 PTR sys_readlinkat
376 PTR sys_fchmodat
377 PTR sys_faccessat
378 PTR sys_pselect6 /* 5260 */
379 PTR sys_ppoll
380 PTR sys_unshare
f115da9c 381 PTR sys_splice
a8d587a7 382 PTR sys_sync_file_range
136d47d3 383 PTR sys_tee /* 5265 */
722cfd90
RB
384 PTR sys_vmsplice
385 PTR sys_move_pages
7fdeb048
AN
386 PTR sys_set_robust_list
387 PTR sys_get_robust_list
583bb86f 388 PTR sys_kexec_load /* 5270 */
991ea26d 389 PTR sys_getcpu
e016c38d 390 PTR sys_epoll_pwait
08253b39
RB
391 PTR sys_ioprio_set
392 PTR sys_ioprio_get
7a6d4f38
AN
393 PTR sys_utimensat /* 5275 */
394 PTR sys_signalfd
8bdd5142 395 PTR sys_ni_syscall /* was timerfd */
7a6d4f38 396 PTR sys_eventfd
4dc46775 397 PTR sys_fallocate
6783fe62
DV
398 PTR sys_timerfd_create /* 5280 */
399 PTR sys_timerfd_gettime
400 PTR sys_timerfd_settime
3885b71b
RB
401 PTR sys_signalfd4
402 PTR sys_eventfd2
403 PTR sys_epoll_create1 /* 5285 */
404 PTR sys_dup3
405 PTR sys_pipe2
406 PTR sys_inotify_init1
ddd9e91b 407 PTR sys_preadv
e080e616 408 PTR sys_pwritev /* 5290 */
69f16c9a 409 PTR sys_rt_tgsigqueueinfo
cdd6c482 410 PTR sys_perf_event_open
54822de7 411 PTR sys_accept4
5e844b31 412 PTR sys_recvmmsg
e080e616 413 PTR sys_fanotify_init /* 5295 */
5e844b31
DD
414 PTR sys_fanotify_mark
415 PTR sys_prlimit64
84ed9432
DD
416 PTR sys_name_to_handle_at
417 PTR sys_open_by_handle_at
418 PTR sys_clock_adjtime /* 5300 */
1bbf2875 419 PTR sys_syncfs
b12acf16 420 PTR sys_sendmmsg
7b21fddd 421 PTR sys_setns
8ff8584e
DD
422 PTR sys_process_vm_readv
423 PTR sys_process_vm_writev /* 5305 */
ce71d24c 424 PTR sys_kcmp
6295150b 425 PTR sys_finit_module
dec33aba 426 PTR sys_getdents64
08253b39 427 .size sys_call_table,.-sys_call_table