1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/*
* linux/include/asm-arm/unistd.h
*
* Copyright (C) 2001-2005 Russell King
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Please forward _all_ changes to this file to rmk@arm.linux.org.uk,
* no matter what the change is. Thanks!
*/
#define __NR_io_setup 0
#define __NR_io_destroy 1
#define __NR_io_submit 2
#define __NR_io_cancel 3
#define __NR_io_getevents 4
#define __sys2(x) #x
#define __sys1(x) __sys2(x)
#define __SYS_REG(name) register long __sysreg __asm__("w8") = __NR_##name;
#define __SYS_REG_LIST(regs...) "r" (__sysreg) , ##regs
#define __syscall(name) "svc\t#0"
#define io_syscall1(type,fname,sname,type1,arg1) \
type fname(type1 arg1) { \
__SYS_REG(sname) \
register long __x0 __asm__("x0") = (long)arg1; \
register long __res_x0 __asm__("x0"); \
__asm__ __volatile__ ( \
__syscall(sname) \
: "=r" (__res_x0) \
: __SYS_REG_LIST( "0" (__x0) ) \
: "memory" ); \
return (type) __res_x0; \
}
#define io_syscall2(type,fname,sname,type1,arg1,type2,arg2) \
type fname(type1 arg1,type2 arg2) { \
__SYS_REG(sname) \
register long __x0 __asm__("x0") = (long)arg1; \
register long __x1 __asm__("x1") = (long)arg2; \
register long __res_x0 __asm__("x0"); \
__asm__ __volatile__ ( \
__syscall(sname) \
: "=r" (__res_x0) \
: __SYS_REG_LIST( "0" (__x0), "r" (__x1) ) \
: "memory" ); \
return (type) __res_x0; \
}
#define io_syscall3(type,fname,sname,type1,arg1,type2,arg2,type3,arg3) \
type fname(type1 arg1,type2 arg2,type3 arg3) { \
__SYS_REG(sname) \
register long __x0 __asm__("x0") = (long)arg1; \
register long __x1 __asm__("x1") = (long)arg2; \
register long __x2 __asm__("x2") = (long)arg3; \
register long __res_x0 __asm__("x0"); \
__asm__ __volatile__ ( \
__syscall(sname) \
: "=r" (__res_x0) \
: __SYS_REG_LIST( "0" (__x0), "r" (__x1), "r" (__x2) ) \
: "memory" ); \
return (type) __res_x0; \
}
#define io_syscall4(type,fname,sname,type1,arg1,type2,arg2,type3,arg3,type4,arg4)\
type fname(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
__SYS_REG(sname) \
register long __x0 __asm__("x0") = (long)arg1; \
register long __x1 __asm__("x1") = (long)arg2; \
register long __x2 __asm__("x2") = (long)arg3; \
register long __x3 __asm__("x3") = (long)arg4; \
register long __res_x0 __asm__("x0"); \
__asm__ __volatile__ ( \
__syscall(sname) \
: "=r" (__res_x0) \
: __SYS_REG_LIST( "0" (__x0), "r" (__x1), "r" (__x2), "r" (__x3) ) \
: "memory" ); \
return (type) __res_x0; \
}
#define io_syscall5(type,fname,sname,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \
type fname(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) {\
__SYS_REG(sname) \
register long __x0 __asm__("x0") = (long)arg1; \
register long __x1 __asm__("x1") = (long)arg2; \
register long __x2 __asm__("x2") = (long)arg3; \
register long __x3 __asm__("x3") = (long)arg4; \
register long __x4 __asm__("x4") = (long)arg5; \
register long __res_x0 __asm__("x0"); \
__asm__ __volatile__ ( \
__syscall(sname) \
: "=r" (__res_x0) \
: __SYS_REG_LIST( "0" (__x0), "r" (__x1), "r" (__x2), \
"r" (__x3), "r" (__x4) ) \
: "memory" ); \
return (type) __res_x0; \
}
|