xref: /openbmc/linux/arch/x86/include/asm/syscalls.h (revision 2eb0f624b709e78ec8e2f4c3412947703db99301)
1 /*
2  * syscalls.h - Linux syscall interfaces (arch-specific)
3  *
4  * Copyright (c) 2008 Jaswinder Singh Rajput
5  *
6  * This file is released under the GPLv2.
7  * See the file COPYING for more details.
8  */
9 
10 #ifndef _ASM_X86_SYSCALLS_H
11 #define _ASM_X86_SYSCALLS_H
12 
13 #include <linux/compiler.h>
14 #include <linux/linkage.h>
15 #include <linux/signal.h>
16 #include <linux/types.h>
17 
18 /* Common in X86_32 and X86_64 */
19 /* kernel/ioport.c */
20 long ksys_ioperm(unsigned long from, unsigned long num, int turn_on);
21 asmlinkage long sys_ioperm(unsigned long, unsigned long, int);
22 asmlinkage long sys_iopl(unsigned int);
23 
24 /* kernel/ldt.c */
25 asmlinkage long sys_modify_ldt(int, void __user *, unsigned long);
26 
27 /* kernel/signal.c */
28 asmlinkage long sys_rt_sigreturn(void);
29 
30 /* kernel/tls.c */
31 asmlinkage long sys_set_thread_area(struct user_desc __user *);
32 asmlinkage long sys_get_thread_area(struct user_desc __user *);
33 
34 /* X86_32 only */
35 #ifdef CONFIG_X86_32
36 
37 /* kernel/signal.c */
38 asmlinkage long sys_sigreturn(void);
39 
40 /* kernel/vm86_32.c */
41 struct vm86_struct;
42 asmlinkage long sys_vm86old(struct vm86_struct __user *);
43 asmlinkage long sys_vm86(unsigned long, unsigned long);
44 
45 #else /* CONFIG_X86_32 */
46 
47 /* X86_64 only */
48 /* kernel/process_64.c */
49 asmlinkage long sys_arch_prctl(int, unsigned long);
50 
51 /* kernel/sys_x86_64.c */
52 asmlinkage long sys_mmap(unsigned long, unsigned long, unsigned long,
53 			 unsigned long, unsigned long, unsigned long);
54 
55 #endif /* CONFIG_X86_32 */
56 #endif /* _ASM_X86_SYSCALLS_H */
57