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
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.
10 #include <linux/config.h>
11 #include <linux/errno.h>
13 #include <asm/asmmacro.h>
14 #include <asm/mipsregs.h>
15 #include <asm/regdef.h>
16 #include <asm/stackframe.h>
17 #include <asm/offset.h>
18 #include <asm/sysmips.h>
19 #include <asm/thread_info.h>
20 #include <asm/unistd.h>
22 #ifndef CONFIG_BINFMT_ELF32
23 /* Neither O32 nor N32, so define handle_sys here */
24 #define handle_sys64 handle_sys
28 NESTED(handle_sys64, PT_SIZE, sp)
29 #if !defined(CONFIG_MIPS32_O32) && !defined(CONFIG_MIPS32_N32)
31 * When 32-bit compatibility is configured scall_o32.S
40 FEXPORT(__handle_sys64)
41 subu t0, v0, __NR_64_Linux # check syscall number
42 sltiu t0, t0, __NR_64_Linux_syscalls + 1
43 #if !defined(CONFIG_MIPS32_O32) && !defined(CONFIG_MIPS32_N32)
44 ld t1, PT_EPC(sp) # skip syscall on return
45 daddiu t1, 4 # skip to next instruction
48 beqz t0, illegal_syscall
50 dsll t0, v0, 3 # offset into table
51 ld t2, (sys_call_table - (__NR_64_Linux * 8))(t0)
54 sd a3, PT_R26(sp) # save a3 for syscall restarting
56 LONG_L t0, TI_FLAGS($28)
57 bltz t0, syscall_trace_entry # syscall tracing enabled?
59 jalr t2 # Do The Real Thing (TM)
61 li t0, -EMAXERRNO - 1 # error?
63 sd t0, PT_R7(sp) # set error flag
67 sd v0, PT_R0(sp) # set flag for syscall
69 1: sd v0, PT_R2(sp) # result
72 local_irq_disable # make sure need_resched and
73 # signals dont change between
75 LONG_L a2, TI_FLAGS($28) # current->work
76 li t0, _TIF_ALLWORK_MASK
78 bnez t0, n64_syscall_exit_work
82 n64_syscall_exit_work:
83 j syscall_exit_work_partial
85 /* ------------------------------------------------------------------------ */
95 ld a0, PT_R4(sp) # Restore argument registers
101 li t0, -EMAXERRNO - 1 # error?
103 sd t0, PT_R7(sp) # set error flag
107 sd v0, PT_R0(sp) # set flag for syscall restarting
108 1: sd v0, PT_R2(sp) # result
113 /* This also isn't a 64-bit syscall, throw an error. */
114 li v0, ENOSYS # error
116 li t0, 1 # set error flag
121 LEAF(mips_atomic_set)
122 andi v0, a1, 3 # must be word aligned
123 bnez v0, bad_alignment
125 LONG_L v1, TI_ADDR_LIMIT($28) # in legal address range?
131 #ifdef CONFIG_CPU_HAS_LLSC
132 /* Ok, this is the ll/sc case. World is sane :-) */
138 .section __ex_table,"a"
155 * At this point the page should be readable and writable unless
156 * there was no more memory available.
161 .section __ex_table,"a"
167 sd zero, PT_R7(sp) # success
168 sd v0, PT_R2(sp) # result
170 /* Success, so skip usual error handling garbage. */
171 LONG_L a2, TI_FLAGS($28) # syscall tracing enabled?
172 li t0, _TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT
184 no_mem: li v0, -ENOMEM
197 beq a0, MIPS_ATOMIC_SET, mips_atomic_set
201 LEAF(sys_syscall) /* Quick'n'dirty ... */
214 PTR sys_read /* 5000 */
219 PTR sys_newfstat /* 5005 */
224 PTR sys_mprotect /* 5010 */
228 PTR sys_rt_sigprocmask
229 PTR sys_ioctl /* 5015 */
234 PTR sys_access /* 5020 */
239 PTR sys_msync /* 5025 */
244 PTR sys_shmctl /* 5030 */
249 PTR sys_getitimer /* 5035 */
254 PTR sys_socket /* 5040 */
259 PTR sys_sendmsg /* 5045 */
264 PTR sys_getsockname /* 5050 */
269 PTR sys_clone /* 5055 */
274 PTR sys_kill /* 5060 */
279 PTR sys_shmdt /* 5065 */
284 PTR sys_fcntl /* 5070 */
289 PTR sys_ftruncate /* 5075 */
294 PTR sys_rename /* 5080 */
299 PTR sys_unlink /* 5085 */
304 PTR sys_chown /* 5090 */
309 PTR sys_getrlimit /* 5095 */
314 PTR sys_getuid /* 5100 */
319 PTR sys_geteuid /* 5105 */
324 PTR sys_setsid /* 5110 */
329 PTR sys_setresuid /* 5115 */
334 PTR sys_setfsuid /* 5120 */
339 PTR sys_rt_sigpending /* 5125 */
340 PTR sys_rt_sigtimedwait
341 PTR sys_rt_sigqueueinfo
342 PTR sys_rt_sigsuspend
344 PTR sys_utime /* 5130 */
349 PTR sys_fstatfs /* 5135 */
353 PTR sys_sched_setparam
354 PTR sys_sched_getparam /* 5140 */
355 PTR sys_sched_setscheduler
356 PTR sys_sched_getscheduler
357 PTR sys_sched_get_priority_max
358 PTR sys_sched_get_priority_min
359 PTR sys_sched_rr_get_interval /* 5145 */
364 PTR sys_vhangup /* 5150 */
369 PTR sys_setrlimit /* 5155 */
374 PTR sys_mount /* 5160 */
379 PTR sys_sethostname /* 5165 */
380 PTR sys_setdomainname
381 PTR sys_ni_syscall /* was create_module */
383 PTR sys_delete_module
384 PTR sys_ni_syscall /* 5170, was get_kernel_syms */
385 PTR sys_ni_syscall /* was query_module */
388 PTR sys_ni_syscall /* res. for getpmsg */
389 PTR sys_ni_syscall /* 5175 for putpmsg */
390 PTR sys_ni_syscall /* res. for afs_syscall */
391 PTR sys_ni_syscall /* res. for security */
394 PTR sys_setxattr /* 5180 */
399 PTR sys_fgetxattr /* 5185 */
404 PTR sys_lremovexattr /* 5190 */
409 PTR sys_sched_setaffinity /* 5195 */
410 PTR sys_sched_getaffinity
414 PTR sys_io_setup /* 5200 */
419 PTR sys_exit_group /* 5205 */
420 PTR sys_lookup_dcookie
424 PTR sys_remap_file_pages /* 5210 */
426 PTR sys_set_tid_address
427 PTR sys_restart_syscall
429 PTR sys_fadvise64_64 /* 5215 */
431 PTR sys_timer_settime
432 PTR sys_timer_gettime
433 PTR sys_timer_getoverrun
434 PTR sys_timer_delete /* 5220 */
435 PTR sys_clock_settime
436 PTR sys_clock_gettime
438 PTR sys_clock_nanosleep
439 PTR sys_tgkill /* 5225 */
441 PTR sys_ni_syscall /* sys_mbind */
442 PTR sys_ni_syscall /* sys_get_mempolicy */
443 PTR sys_ni_syscall /* sys_set_mempolicy */
444 PTR sys_mq_open /* 5230 */
447 PTR sys_mq_timedreceive
449 PTR sys_mq_getsetattr /* 5235 */
450 PTR sys_ni_syscall /* sys_vserver */