2 * Access to user system call parameters and results
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * See asm-generic/syscall.h for descriptions of what we must do here.
10 * Copyright (C) 2012 Ralf Baechle <ralf@linux-mips.org>
13 #ifndef __ASM_MIPS_SYSCALL_H
14 #define __ASM_MIPS_SYSCALL_H
16 #include <linux/compiler.h>
17 #include <uapi/linux/audit.h>
18 #include <linux/elf-em.h>
19 #include <linux/kernel.h>
20 #include <linux/sched.h>
21 #include <linux/uaccess.h>
22 #include <asm/ptrace.h>
23 #include <asm/unistd.h>
25 #ifndef __NR_syscall /* Only defined if _MIPS_SIM == _MIPS_SIM_ABI32 */
26 #define __NR_syscall 4000
29 static inline long syscall_get_nr(struct task_struct *task,
32 return current_thread_info()->syscall;
35 static inline unsigned long mips_get_syscall_arg(unsigned long *arg,
36 struct task_struct *task, struct pt_regs *regs, unsigned int n)
38 unsigned long usp __maybe_unused = regs->regs[29];
41 case 0: case 1: case 2: case 3:
42 *arg = regs->regs[4 + n];
47 case 4: case 5: case 6: case 7:
48 return get_user(*arg, (int *)usp + n);
52 case 4: case 5: case 6: case 7:
53 #ifdef CONFIG_MIPS32_O32
54 if (test_thread_flag(TIF_32BIT_REGS))
55 return get_user(*arg, (int *)usp + n);
58 *arg = regs->regs[4 + n];
70 static inline long syscall_get_return_value(struct task_struct *task,
76 static inline void syscall_rollback(struct task_struct *task,
82 static inline void syscall_set_return_value(struct task_struct *task,
87 regs->regs[2] = -error;
95 static inline void syscall_get_arguments(struct task_struct *task,
97 unsigned int i, unsigned int n,
101 /* O32 ABI syscall() - Either 64-bit with O32 or 32-bit */
102 if ((config_enabled(CONFIG_32BIT) ||
103 test_tsk_thread_flag(task, TIF_32BIT_REGS)) &&
104 (regs->regs[2] == __NR_syscall)) {
110 ret |= mips_get_syscall_arg(args++, task, regs, i++);
113 * No way to communicate an error because this is a void function.
120 extern const unsigned long sys_call_table[];
121 extern const unsigned long sys32_call_table[];
122 extern const unsigned long sysn32_call_table[];
124 static inline int syscall_get_arch(void)
126 int arch = AUDIT_ARCH_MIPS;
128 if (!test_thread_flag(TIF_32BIT_REGS)) {
129 arch |= __AUDIT_ARCH_64BIT;
130 /* N32 sets only TIF_32BIT_ADDR */
131 if (test_thread_flag(TIF_32BIT_ADDR))
132 arch |= __AUDIT_ARCH_CONVENTION_MIPS64_N32;
135 #if defined(__LITTLE_ENDIAN)
136 arch |= __AUDIT_ARCH_LE;
141 #endif /* __ASM_MIPS_SYSCALL_H */