xref: /openbmc/qemu/linux-user/syscall_defs.h (revision 7048fc59ef6a9f76693db3bafede6234a3897385)
131e31b8aSbellard /* common syscall defines for all architectures */
231e31b8aSbellard 
32521d698Sbellard /* Note: although the syscall numbers change between architectures,
4b4916d7bSDong Xu Wang    most of them stay the same, so we handle it by putting ifdefs if
52521d698Sbellard    necessary */
62521d698Sbellard 
7cb9c377fSPaolo Bonzini #ifndef SYSCALL_DEFS_H
81b3c4fdfSMarkus Armbruster #define SYSCALL_DEFS_H
9cb9c377fSPaolo Bonzini 
106180a181Sbellard #include "syscall_nr.h"
112521d698Sbellard 
12ff71a454SAleksandar Markovic 
13ff71a454SAleksandar Markovic /* socket operations for socketcall() */
14ff71a454SAleksandar Markovic #define TARGET_SYS_SOCKET       1         /* socket()              */
15ff71a454SAleksandar Markovic #define TARGET_SYS_BIND         2         /* bind()                */
16ff71a454SAleksandar Markovic #define TARGET_SYS_CONNECT      3         /* connect()             */
17ff71a454SAleksandar Markovic #define TARGET_SYS_LISTEN       4         /* listen()              */
18ff71a454SAleksandar Markovic #define TARGET_SYS_ACCEPT       5         /* accept()              */
19ff71a454SAleksandar Markovic #define TARGET_SYS_GETSOCKNAME  6         /* getsockname()         */
20ff71a454SAleksandar Markovic #define TARGET_SYS_GETPEERNAME  7         /* getpeername()         */
21ff71a454SAleksandar Markovic #define TARGET_SYS_SOCKETPAIR   8         /* socketpair()          */
22ff71a454SAleksandar Markovic #define TARGET_SYS_SEND         9         /* send()                */
23ff71a454SAleksandar Markovic #define TARGET_SYS_RECV         10        /* recv()                */
24ff71a454SAleksandar Markovic #define TARGET_SYS_SENDTO       11        /* sendto()              */
25ff71a454SAleksandar Markovic #define TARGET_SYS_RECVFROM     12        /* recvfrom()            */
26ff71a454SAleksandar Markovic #define TARGET_SYS_SHUTDOWN     13        /* shutdown()            */
27ff71a454SAleksandar Markovic #define TARGET_SYS_SETSOCKOPT   14        /* setsockopt()          */
28ff71a454SAleksandar Markovic #define TARGET_SYS_GETSOCKOPT   15        /* getsockopt()          */
29ff71a454SAleksandar Markovic #define TARGET_SYS_SENDMSG      16        /* sendmsg()             */
30ff71a454SAleksandar Markovic #define TARGET_SYS_RECVMSG      17        /* recvmsg()             */
31ff71a454SAleksandar Markovic #define TARGET_SYS_ACCEPT4      18        /* accept4()             */
32ff71a454SAleksandar Markovic #define TARGET_SYS_RECVMMSG     19        /* recvmmsg()            */
33ff71a454SAleksandar Markovic #define TARGET_SYS_SENDMMSG     20        /* sendmmsg()            */
3431e31b8aSbellard 
35524fa340SLaurent Vivier #define IPCOP_CALL(VERSION, OP) ((VERSION) << 16 | (OP))
368853f86eSbellard #define IPCOP_semop             1
378853f86eSbellard #define IPCOP_semget            2
388853f86eSbellard #define IPCOP_semctl            3
398853f86eSbellard #define IPCOP_semtimedop        4
408853f86eSbellard #define IPCOP_msgsnd            11
418853f86eSbellard #define IPCOP_msgrcv            12
428853f86eSbellard #define IPCOP_msgget            13
438853f86eSbellard #define IPCOP_msgctl            14
448853f86eSbellard #define IPCOP_shmat             21
458853f86eSbellard #define IPCOP_shmdt             22
468853f86eSbellard #define IPCOP_shmget            23
478853f86eSbellard #define IPCOP_shmctl            24
488853f86eSbellard 
490a7ec849SFilip Bozuta #define TARGET_SEMOPM     500
500a7ec849SFilip Bozuta 
512521d698Sbellard /*
522521d698Sbellard  * The following is for compatibility across the various Linux
532521d698Sbellard  * platforms.  The i386 ioctl numbering scheme doesn't really enforce
542521d698Sbellard  * a type field.  De facto, however, the top 8 bits of the lower 16
552521d698Sbellard  * bits are indeed used as a type field, so we might just as well make
562521d698Sbellard  * this explicit here.  Please be sure to use the decoding macros
572521d698Sbellard  * below from now on.
582521d698Sbellard  */
592521d698Sbellard #define TARGET_IOC_NRBITS       8
602521d698Sbellard #define TARGET_IOC_TYPEBITS     8
612521d698Sbellard 
62716f3fbeSPeter Maydell #if (defined(TARGET_I386) && defined(TARGET_ABI32))                     \
63716f3fbeSPeter Maydell     || (defined(TARGET_ARM) && defined(TARGET_ABI32))                   \
64baead642SPhilippe Mathieu-Daudé     || (defined(TARGET_SPARC) && defined(TARGET_ABI32))                 \
650c866a7eSRiku Voipio     || defined(TARGET_M68K) || defined(TARGET_SH4) || defined(TARGET_CRIS)
6674d753acSMika Westerberg /* 16 bit uid wrappers emulation */
6774d753acSMika Westerberg #define USE_UID16
680c866a7eSRiku Voipio #define target_id uint16_t
690c866a7eSRiku Voipio #else
70f6ee1627SRichard Henderson #define target_id abi_uint
7174d753acSMika Westerberg #endif
7274d753acSMika Westerberg 
73e6e5906bSpbrook #if defined(TARGET_I386) || defined(TARGET_ARM) || defined(TARGET_SH4)  \
74b16189b2SChen Gang     || defined(TARGET_M68K) || defined(TARGET_CRIS)                     \
752cc1a901SThomas Huth     || defined(TARGET_S390X) || defined(TARGET_OPENRISC)                \
766c301485SPhilippe Mathieu-Daudé     || defined(TARGET_RISCV)                                            \
771f630196SSong Gao     || defined(TARGET_XTENSA) || defined(TARGET_LOONGARCH64)
782521d698Sbellard 
792521d698Sbellard #define TARGET_IOC_SIZEBITS     14
802521d698Sbellard #define TARGET_IOC_DIRBITS      2
812521d698Sbellard 
822521d698Sbellard #define TARGET_IOC_NONE   0U
832521d698Sbellard #define TARGET_IOC_WRITE  1U
842521d698Sbellard #define TARGET_IOC_READ   2U
852521d698Sbellard 
86048f6b4dSbellard #elif defined(TARGET_PPC) || defined(TARGET_ALPHA) ||           \
87b779e29eSEdgar E. Iglesias     defined(TARGET_SPARC) || defined(TARGET_MICROBLAZE) ||      \
88b779e29eSEdgar E. Iglesias     defined(TARGET_MIPS)
892521d698Sbellard 
902521d698Sbellard #define TARGET_IOC_SIZEBITS     13
912521d698Sbellard #define TARGET_IOC_DIRBITS      3
922521d698Sbellard 
932521d698Sbellard #define TARGET_IOC_NONE   1U
942521d698Sbellard #define TARGET_IOC_READ   2U
952521d698Sbellard #define TARGET_IOC_WRITE  4U
962521d698Sbellard 
97a10d1e50SRichard Henderson #elif defined(TARGET_HPPA)
98a10d1e50SRichard Henderson 
99a10d1e50SRichard Henderson #define TARGET_IOC_SIZEBITS  14
100a10d1e50SRichard Henderson #define TARGET_IOC_DIRBITS    2
101a10d1e50SRichard Henderson 
102a10d1e50SRichard Henderson #define TARGET_IOC_NONE   0U
103a10d1e50SRichard Henderson #define TARGET_IOC_WRITE  2U
104a10d1e50SRichard Henderson #define TARGET_IOC_READ   1U
105a10d1e50SRichard Henderson 
106d2a56bd2STaylor Simpson #elif defined(TARGET_HEXAGON)
107d2a56bd2STaylor Simpson 
108d2a56bd2STaylor Simpson #define TARGET_IOC_SIZEBITS     14
109d2a56bd2STaylor Simpson 
110d2a56bd2STaylor Simpson #define TARGET_IOC_NONE   0U
111d2a56bd2STaylor Simpson #define TARGET_IOC_WRITE  1U
112d2a56bd2STaylor Simpson #define TARGET_IOC_READ          2U
113d2a56bd2STaylor Simpson 
1142521d698Sbellard #else
1152521d698Sbellard #error unsupported CPU
1162521d698Sbellard #endif
1172521d698Sbellard 
1182521d698Sbellard #define TARGET_IOC_NRMASK       ((1 << TARGET_IOC_NRBITS)-1)
1192521d698Sbellard #define TARGET_IOC_TYPEMASK     ((1 << TARGET_IOC_TYPEBITS)-1)
1202521d698Sbellard #define TARGET_IOC_SIZEMASK     ((1 << TARGET_IOC_SIZEBITS)-1)
1212521d698Sbellard #define TARGET_IOC_DIRMASK      ((1 << TARGET_IOC_DIRBITS)-1)
1222521d698Sbellard 
1232521d698Sbellard #define TARGET_IOC_NRSHIFT      0
1242521d698Sbellard #define TARGET_IOC_TYPESHIFT    (TARGET_IOC_NRSHIFT+TARGET_IOC_NRBITS)
1252521d698Sbellard #define TARGET_IOC_SIZESHIFT    (TARGET_IOC_TYPESHIFT+TARGET_IOC_TYPEBITS)
1262521d698Sbellard #define TARGET_IOC_DIRSHIFT     (TARGET_IOC_SIZESHIFT+TARGET_IOC_SIZEBITS)
1272521d698Sbellard 
1282521d698Sbellard #define TARGET_IOC(dir,type,nr,size)            \
1292521d698Sbellard     (((dir)  << TARGET_IOC_DIRSHIFT) |          \
1302521d698Sbellard      ((type) << TARGET_IOC_TYPESHIFT) |         \
1312521d698Sbellard      ((nr)   << TARGET_IOC_NRSHIFT) |           \
1322521d698Sbellard      ((size) << TARGET_IOC_SIZESHIFT))
1332521d698Sbellard 
1342521d698Sbellard /* used to create numbers */
1352521d698Sbellard #define TARGET_IO(type,nr)              TARGET_IOC(TARGET_IOC_NONE,(type),(nr),0)
1362521d698Sbellard #define TARGET_IOR(type,nr,size)        TARGET_IOC(TARGET_IOC_READ,(type),(nr),sizeof(size))
1372521d698Sbellard #define TARGET_IOW(type,nr,size)        TARGET_IOC(TARGET_IOC_WRITE,(type),(nr),sizeof(size))
1382521d698Sbellard #define TARGET_IOWR(type,nr,size)       TARGET_IOC(TARGET_IOC_READ|TARGET_IOC_WRITE,(type),(nr),sizeof(size))
1392521d698Sbellard 
1402521d698Sbellard /* the size is automatically computed for these defines */
1412521d698Sbellard #define TARGET_IORU(type,nr)    TARGET_IOC(TARGET_IOC_READ,(type),(nr),TARGET_IOC_SIZEMASK)
1422521d698Sbellard #define TARGET_IOWU(type,nr)    TARGET_IOC(TARGET_IOC_WRITE,(type),(nr),TARGET_IOC_SIZEMASK)
1432521d698Sbellard #define TARGET_IOWRU(type,nr)   TARGET_IOC(TARGET_IOC_READ|TARGET_IOC_WRITE,(type),(nr),TARGET_IOC_SIZEMASK)
1442521d698Sbellard 
1457854b056Sbellard struct target_sockaddr {
1469a68960dSPhilippe Mathieu-Daudé     abi_ushort sa_family;
1477854b056Sbellard     uint8_t sa_data[14];
1487854b056Sbellard };
1497854b056Sbellard 
15033a29b51SJoakim Tjernlund struct target_sockaddr_ll {
1519a68960dSPhilippe Mathieu-Daudé     abi_ushort sll_family;   /* Always AF_PACKET */
1529a68960dSPhilippe Mathieu-Daudé     abi_ushort sll_protocol; /* Physical layer protocol */
1539a68960dSPhilippe Mathieu-Daudé     abi_int    sll_ifindex;  /* Interface number */
1549a68960dSPhilippe Mathieu-Daudé     abi_ushort sll_hatype;   /* ARP hardware type */
15533a29b51SJoakim Tjernlund     uint8_t    sll_pkttype;  /* Packet type */
15633a29b51SJoakim Tjernlund     uint8_t    sll_halen;    /* Length of address */
15733a29b51SJoakim Tjernlund     uint8_t    sll_addr[8];  /* Physical layer address */
15833a29b51SJoakim Tjernlund };
15933a29b51SJoakim Tjernlund 
160fb3aabf3SLaurent Vivier struct target_sockaddr_un {
1619a68960dSPhilippe Mathieu-Daudé     abi_ushort su_family;
162fb3aabf3SLaurent Vivier     uint8_t sun_path[108];
163fb3aabf3SLaurent Vivier };
164fb3aabf3SLaurent Vivier 
165a47401bcSPhilippe Mathieu-Daudé struct target_sockaddr_nl {
166a47401bcSPhilippe Mathieu-Daudé     abi_ushort nl_family;   /* AF_NETLINK */
167a47401bcSPhilippe Mathieu-Daudé     abi_ushort __pad;
168a47401bcSPhilippe Mathieu-Daudé     abi_uint nl_pid;
169a47401bcSPhilippe Mathieu-Daudé     abi_uint nl_groups;
170a47401bcSPhilippe Mathieu-Daudé };
171a47401bcSPhilippe Mathieu-Daudé 
172fb3aabf3SLaurent Vivier struct target_in_addr {
1739a68960dSPhilippe Mathieu-Daudé     abi_uint s_addr; /* big endian */
174fb3aabf3SLaurent Vivier };
175fb3aabf3SLaurent Vivier 
176fb3aabf3SLaurent Vivier struct target_sockaddr_in {
1779a68960dSPhilippe Mathieu-Daudé     abi_ushort sin_family;
1789a68960dSPhilippe Mathieu-Daudé     abi_short sin_port; /* big endian */
179fb3aabf3SLaurent Vivier     struct target_in_addr sin_addr;
180fb3aabf3SLaurent Vivier     uint8_t __pad[sizeof(struct target_sockaddr) -
1819a68960dSPhilippe Mathieu-Daudé                   sizeof(abi_ushort) - sizeof(abi_short) -
182fb3aabf3SLaurent Vivier                   sizeof(struct target_in_addr)];
183fb3aabf3SLaurent Vivier };
184fb3aabf3SLaurent Vivier 
185ee1ac3a1SHelge Deller struct target_sockaddr_in6 {
1869a68960dSPhilippe Mathieu-Daudé     abi_ushort sin6_family;
1879a68960dSPhilippe Mathieu-Daudé     abi_ushort sin6_port; /* big endian */
1889a68960dSPhilippe Mathieu-Daudé     abi_uint sin6_flowinfo; /* big endian */
189ee1ac3a1SHelge Deller     struct in6_addr sin6_addr; /* IPv6 address, big endian */
1909a68960dSPhilippe Mathieu-Daudé     abi_uint sin6_scope_id;
191ee1ac3a1SHelge Deller };
192ee1ac3a1SHelge Deller 
193f57d4192SLaurent Vivier struct target_sock_filter {
194f57d4192SLaurent Vivier     abi_ushort code;
195f57d4192SLaurent Vivier     uint8_t jt;
196f57d4192SLaurent Vivier     uint8_t jf;
197f57d4192SLaurent Vivier     abi_uint k;
198f57d4192SLaurent Vivier };
199f57d4192SLaurent Vivier 
200f57d4192SLaurent Vivier struct target_sock_fprog {
201f57d4192SLaurent Vivier     abi_ushort len;
202f57d4192SLaurent Vivier     abi_ulong filter;
203f57d4192SLaurent Vivier };
204f57d4192SLaurent Vivier 
205b975b83bSLionel Landwerlin struct target_ip_mreq {
206b975b83bSLionel Landwerlin     struct target_in_addr imr_multiaddr;
207b975b83bSLionel Landwerlin     struct target_in_addr imr_address;
208b975b83bSLionel Landwerlin };
209b975b83bSLionel Landwerlin 
210b975b83bSLionel Landwerlin struct target_ip_mreqn {
211b975b83bSLionel Landwerlin     struct target_in_addr imr_multiaddr;
212b975b83bSLionel Landwerlin     struct target_in_addr imr_address;
213b975b83bSLionel Landwerlin     abi_long imr_ifindex;
214b975b83bSLionel Landwerlin };
215b975b83bSLionel Landwerlin 
2166e3cb58fSLionel Landwerlin struct target_ip_mreq_source {
2176e3cb58fSLionel Landwerlin     /* big endian */
218f6ee1627SRichard Henderson     abi_uint imr_multiaddr;
219f6ee1627SRichard Henderson     abi_uint imr_interface;
220f6ee1627SRichard Henderson     abi_uint imr_sourceaddr;
2216e3cb58fSLionel Landwerlin };
2226e3cb58fSLionel Landwerlin 
22383eb6e50SCarlo Marcelo Arenas Belón struct target_linger {
22483eb6e50SCarlo Marcelo Arenas Belón     abi_int l_onoff;        /* Linger active                */
22583eb6e50SCarlo Marcelo Arenas Belón     abi_int l_linger;       /* How long to linger for       */
22683eb6e50SCarlo Marcelo Arenas Belón };
22783eb6e50SCarlo Marcelo Arenas Belón 
2286d5d5ddeSDaniel P. Berrangé #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
2296d5d5ddeSDaniel P. Berrangé struct target_timeval {
2306d5d5ddeSDaniel P. Berrangé     abi_long tv_sec;
2316d5d5ddeSDaniel P. Berrangé     abi_int tv_usec;
2326d5d5ddeSDaniel P. Berrangé };
2336d5d5ddeSDaniel P. Berrangé #define target__kernel_sock_timeval target_timeval
2346d5d5ddeSDaniel P. Berrangé #else
23531e31b8aSbellard struct target_timeval {
236992f48a0Sblueswir1     abi_long tv_sec;
237992f48a0Sblueswir1     abi_long tv_usec;
23831e31b8aSbellard };
23931e31b8aSbellard 
2406d5d5ddeSDaniel P. Berrangé struct target__kernel_sock_timeval {
2416d5d5ddeSDaniel P. Berrangé     abi_llong tv_sec;
2426d5d5ddeSDaniel P. Berrangé     abi_llong tv_usec;
2436d5d5ddeSDaniel P. Berrangé };
2446d5d5ddeSDaniel P. Berrangé #endif
2456d5d5ddeSDaniel P. Berrangé 
2461b6b029eSbellard struct target_timespec {
247992f48a0Sblueswir1     abi_long tv_sec;
248992f48a0Sblueswir1     abi_long tv_nsec;
2491b6b029eSbellard };
2501b6b029eSbellard 
2516d5d5ddeSDaniel P. Berrangé struct target__kernel_timespec {
2526d5d5ddeSDaniel P. Berrangé     abi_llong tv_sec;
2536d5d5ddeSDaniel P. Berrangé     abi_llong tv_nsec;
2546d5d5ddeSDaniel P. Berrangé };
2556d5d5ddeSDaniel P. Berrangé 
256ef4467e9SPaul Burton struct target_timezone {
257ef4467e9SPaul Burton     abi_int tz_minuteswest;
258ef4467e9SPaul Burton     abi_int tz_dsttime;
259ef4467e9SPaul Burton };
260ef4467e9SPaul Burton 
26166fb9763Sbellard struct target_itimerval {
26266fb9763Sbellard     struct target_timeval it_interval;
26366fb9763Sbellard     struct target_timeval it_value;
26466fb9763Sbellard };
26566fb9763Sbellard 
266905bba13SErik de Castro Lopo struct target_itimerspec {
267905bba13SErik de Castro Lopo     struct target_timespec it_interval;
268905bba13SErik de Castro Lopo     struct target_timespec it_value;
269905bba13SErik de Castro Lopo };
270905bba13SErik de Castro Lopo 
271828cb3a1SFilip Bozuta struct target__kernel_itimerspec {
272828cb3a1SFilip Bozuta     struct target__kernel_timespec it_interval;
273828cb3a1SFilip Bozuta     struct target__kernel_timespec it_value;
274828cb3a1SFilip Bozuta };
275828cb3a1SFilip Bozuta 
27619f59bceSAleksandar Markovic struct target_timex {
27719f59bceSAleksandar Markovic     abi_uint modes;              /* Mode selector */
27819f59bceSAleksandar Markovic     abi_long offset;             /* Time offset */
27919f59bceSAleksandar Markovic     abi_long freq;               /* Frequency offset */
28019f59bceSAleksandar Markovic     abi_long maxerror;           /* Maximum error (microseconds) */
28119f59bceSAleksandar Markovic     abi_long esterror;           /* Estimated error (microseconds) */
28219f59bceSAleksandar Markovic     abi_int status;              /* Clock command/status */
28319f59bceSAleksandar Markovic     abi_long constant;           /* PLL (phase-locked loop) time constant */
28419f59bceSAleksandar Markovic     abi_long precision;          /* Clock precision (microseconds, ro) */
28519f59bceSAleksandar Markovic     abi_long tolerance;          /* Clock freq. tolerance (ppm, ro) */
28619f59bceSAleksandar Markovic     struct target_timeval time;  /* Current time */
28719f59bceSAleksandar Markovic     abi_long tick;               /* Microseconds between clock ticks */
28819f59bceSAleksandar Markovic     abi_long ppsfreq;            /* PPS (pulse per second) frequency */
28919f59bceSAleksandar Markovic     abi_long jitter;             /* PPS jitter (ro); nanoseconds */
29019f59bceSAleksandar Markovic     abi_int shift;               /* PPS interval duration (seconds) */
29119f59bceSAleksandar Markovic     abi_long stabil;             /* PPS stability */
29219f59bceSAleksandar Markovic     abi_long jitcnt;             /* PPS jitter limit exceeded (ro) */
29319f59bceSAleksandar Markovic     abi_long calcnt;             /* PPS calibration intervals */
29419f59bceSAleksandar Markovic     abi_long errcnt;             /* PPS calibration errors */
29519f59bceSAleksandar Markovic     abi_long stbcnt;             /* PPS stability limit exceeded */
29619f59bceSAleksandar Markovic     abi_int tai;                 /* TAI offset */
29719f59bceSAleksandar Markovic 
29819f59bceSAleksandar Markovic     /* Further padding bytes to allow for future expansion */
29919f59bceSAleksandar Markovic     abi_int:32; abi_int:32; abi_int:32; abi_int:32;
30019f59bceSAleksandar Markovic     abi_int:32; abi_int:32; abi_int:32; abi_int:32;
30119f59bceSAleksandar Markovic     abi_int:32; abi_int:32; abi_int:32;
30219f59bceSAleksandar Markovic };
30319f59bceSAleksandar Markovic 
3046ac03b2cSFilip Bozuta struct target__kernel_timex {
3056ac03b2cSFilip Bozuta     abi_uint modes;               /* Mode selector */
3066ac03b2cSFilip Bozuta     abi_int: 32;                  /* pad */
3076ac03b2cSFilip Bozuta     abi_llong offset;             /* Time offset */
3086ac03b2cSFilip Bozuta     abi_llong freq;               /* Frequency offset */
3096ac03b2cSFilip Bozuta     abi_llong maxerror;           /* Maximum error (microseconds) */
3106ac03b2cSFilip Bozuta     abi_llong esterror;           /* Estimated error (microseconds) */
3116ac03b2cSFilip Bozuta     abi_int status;               /* Clock command/status */
3126ac03b2cSFilip Bozuta     abi_int: 32;                  /* pad */
3136ac03b2cSFilip Bozuta     abi_llong constant;           /* PLL (phase-locked loop) time constant */
3146ac03b2cSFilip Bozuta     abi_llong precision;          /* Clock precision (microseconds, ro) */
3156ac03b2cSFilip Bozuta     abi_llong tolerance;          /* Clock freq. tolerance (ppm, ro) */
3166ac03b2cSFilip Bozuta     struct target__kernel_sock_timeval time;  /* Current time */
3176ac03b2cSFilip Bozuta     abi_llong tick;               /* Microseconds between clock ticks */
3186ac03b2cSFilip Bozuta     abi_llong ppsfreq;            /* PPS (pulse per second) frequency */
3196ac03b2cSFilip Bozuta     abi_llong jitter;             /* PPS jitter (ro); nanoseconds */
3206ac03b2cSFilip Bozuta     abi_int shift;                /* PPS interval duration (seconds) */
3216ac03b2cSFilip Bozuta     abi_int: 32;                  /* pad */
3226ac03b2cSFilip Bozuta     abi_llong stabil;             /* PPS stability */
3236ac03b2cSFilip Bozuta     abi_llong jitcnt;             /* PPS jitter limit exceeded (ro) */
3246ac03b2cSFilip Bozuta     abi_llong calcnt;             /* PPS calibration intervals */
3256ac03b2cSFilip Bozuta     abi_llong errcnt;             /* PPS calibration errors */
3266ac03b2cSFilip Bozuta     abi_llong stbcnt;             /* PPS stability limit exceeded */
3276ac03b2cSFilip Bozuta     abi_int tai;                  /* TAI offset */
3286ac03b2cSFilip Bozuta 
3296ac03b2cSFilip Bozuta     /* Further padding bytes to allow for future expansion */
3306ac03b2cSFilip Bozuta     abi_int:32; abi_int:32; abi_int:32; abi_int:32;
3316ac03b2cSFilip Bozuta     abi_int:32; abi_int:32; abi_int:32; abi_int:32;
3326ac03b2cSFilip Bozuta     abi_int:32; abi_int:32; abi_int:32;
3336ac03b2cSFilip Bozuta };
3346ac03b2cSFilip Bozuta 
335c227f099SAnthony Liguori typedef abi_long target_clock_t;
33632f36bceSbellard 
337c596ed17Sbellard #define TARGET_HZ 100
338c596ed17Sbellard 
33932f36bceSbellard struct target_tms {
340c227f099SAnthony Liguori     target_clock_t tms_utime;
341c227f099SAnthony Liguori     target_clock_t tms_stime;
342c227f099SAnthony Liguori     target_clock_t tms_cutime;
343c227f099SAnthony Liguori     target_clock_t tms_cstime;
34432f36bceSbellard };
34532f36bceSbellard 
3466180a181Sbellard struct target_utimbuf {
347992f48a0Sblueswir1     abi_long actime;
348992f48a0Sblueswir1     abi_long modtime;
3496180a181Sbellard };
3506180a181Sbellard 
351f2674e31Sbellard struct target_sel_arg_struct {
352992f48a0Sblueswir1     abi_long n;
353992f48a0Sblueswir1     abi_long inp, outp, exp;
354992f48a0Sblueswir1     abi_long tvp;
355f2674e31Sbellard };
356f2674e31Sbellard 
35731e31b8aSbellard struct target_iovec {
358992f48a0Sblueswir1     abi_long iov_base;   /* Starting address */
359992f48a0Sblueswir1     abi_long iov_len;   /* Number of bytes */
36031e31b8aSbellard };
36131e31b8aSbellard 
3621a9353d2Sbellard struct target_msghdr {
363992f48a0Sblueswir1     abi_long     msg_name;       /* Socket name                 */
364b3c719b2SRichard Henderson     abi_int      msg_namelen;    /* Length of name              */
365992f48a0Sblueswir1     abi_long     msg_iov;        /* Data blocks                 */
366992f48a0Sblueswir1     abi_long     msg_iovlen;     /* Number of blocks            */
367992f48a0Sblueswir1     abi_long     msg_control;    /* Per protocol magic (eg BSD file descriptor passing) */
368992f48a0Sblueswir1     abi_long     msg_controllen; /* Length of cmsg list */
369c7828bd1SRichard Henderson     abi_uint     msg_flags;
3701a9353d2Sbellard };
3711a9353d2Sbellard 
3727854b056Sbellard struct target_cmsghdr {
373992f48a0Sblueswir1     abi_long     cmsg_len;
374b3c719b2SRichard Henderson     abi_int      cmsg_level;
375b3c719b2SRichard Henderson     abi_int      cmsg_type;
3767854b056Sbellard };
3777854b056Sbellard 
3787854b056Sbellard #define TARGET_CMSG_DATA(cmsg) ((unsigned char *) ((struct target_cmsghdr *) (cmsg) + 1))
379ee104587SJonathan Neuschäfer #define TARGET_CMSG_NXTHDR(mhdr, cmsg, cmsg_start)      \
380ee104587SJonathan Neuschäfer     __target_cmsg_nxthdr(mhdr, cmsg, cmsg_start)
381992f48a0Sblueswir1 #define TARGET_CMSG_ALIGN(len) (((len) + sizeof (abi_long) - 1)         \
382992f48a0Sblueswir1                                 & (size_t) ~(sizeof (abi_long) - 1))
383ad762b99SPeter Maydell #define TARGET_CMSG_SPACE(len) (sizeof(struct target_cmsghdr) + \
384ad762b99SPeter Maydell                                 TARGET_CMSG_ALIGN(len))
385ad762b99SPeter Maydell #define TARGET_CMSG_LEN(len) (sizeof(struct target_cmsghdr) + (len))
3867854b056Sbellard 
3877854b056Sbellard static __inline__ struct target_cmsghdr *
388ee104587SJonathan Neuschäfer __target_cmsg_nxthdr(struct target_msghdr *__mhdr,
389ee104587SJonathan Neuschäfer                      struct target_cmsghdr *__cmsg,
390ee104587SJonathan Neuschäfer                      struct target_cmsghdr *__cmsg_start)
3917854b056Sbellard {
3922b8bdefcSths     struct target_cmsghdr *__ptr;
3937854b056Sbellard 
3942b8bdefcSths     __ptr = (struct target_cmsghdr *)((unsigned char *) __cmsg
395cbb21eedSMatthias Braun                                       + TARGET_CMSG_ALIGN (tswapal(__cmsg->cmsg_len)));
396ee104587SJonathan Neuschäfer     if ((unsigned long)((char *)(__ptr+1) - (char *)__cmsg_start)
397ee104587SJonathan Neuschäfer         > tswapal(__mhdr->msg_controllen)) {
3987854b056Sbellard         /* No more entries.  */
3992b8bdefcSths         return (struct target_cmsghdr *)0;
400ee104587SJonathan Neuschäfer     }
401ee104587SJonathan Neuschäfer     return __ptr;
4027854b056Sbellard }
4037854b056Sbellard 
404f19e00d7SAlexander Graf struct target_mmsghdr {
405f19e00d7SAlexander Graf     struct target_msghdr msg_hdr;              /* Message header */
406c7828bd1SRichard Henderson     abi_uint             msg_len;              /* Number of bytes transmitted */
407f19e00d7SAlexander Graf };
4087854b056Sbellard 
40931e31b8aSbellard struct  target_rusage {
41031e31b8aSbellard     struct target_timeval ru_utime;        /* user time used */
41131e31b8aSbellard     struct target_timeval ru_stime;        /* system time used */
412992f48a0Sblueswir1     abi_long    ru_maxrss;                 /* maximum resident set size */
413992f48a0Sblueswir1     abi_long    ru_ixrss;                  /* integral shared memory size */
414992f48a0Sblueswir1     abi_long    ru_idrss;                  /* integral unshared data size */
415992f48a0Sblueswir1     abi_long    ru_isrss;                  /* integral unshared stack size */
416992f48a0Sblueswir1     abi_long    ru_minflt;                 /* page reclaims */
417992f48a0Sblueswir1     abi_long    ru_majflt;                 /* page faults */
418992f48a0Sblueswir1     abi_long    ru_nswap;                  /* swaps */
419992f48a0Sblueswir1     abi_long    ru_inblock;                /* block input operations */
420992f48a0Sblueswir1     abi_long    ru_oublock;                /* block output operations */
421992f48a0Sblueswir1     abi_long    ru_msgsnd;                 /* messages sent */
422992f48a0Sblueswir1     abi_long    ru_msgrcv;                 /* messages received */
423992f48a0Sblueswir1     abi_long    ru_nsignals;               /* signals received */
424992f48a0Sblueswir1     abi_long    ru_nvcsw;                  /* voluntary context switches */
425992f48a0Sblueswir1     abi_long    ru_nivcsw;                 /* involuntary " */
42631e31b8aSbellard };
42731e31b8aSbellard 
42831e31b8aSbellard typedef struct {
429b3c719b2SRichard Henderson     abi_int val[2];
430c227f099SAnthony Liguori } kernel_fsid_t;
43131e31b8aSbellard 
432dab2ed99Sbellard struct target_dirent {
433992f48a0Sblueswir1     abi_long        d_ino;
434992f48a0Sblueswir1     abi_long        d_off;
43577e935f4SRichard Henderson     abi_ushort      d_reclen;
436333858b7SDmitry V. Levin     char            d_name[];
437dab2ed99Sbellard };
438dab2ed99Sbellard 
439dab2ed99Sbellard struct target_dirent64 {
4401962cb00SRichard Henderson     abi_ullong      d_ino;
4411962cb00SRichard Henderson     abi_llong       d_off;
4421962cb00SRichard Henderson     abi_ushort      d_reclen;
443dab2ed99Sbellard     unsigned char   d_type;
444540a736fSRichard Henderson     char            d_name[];
445dab2ed99Sbellard };
446dab2ed99Sbellard 
447dab2ed99Sbellard 
44831e31b8aSbellard /* mostly generic signal stuff */
449992f48a0Sblueswir1 #define TARGET_SIG_DFL  ((abi_long)0)   /* default signal handling */
450992f48a0Sblueswir1 #define TARGET_SIG_IGN  ((abi_long)1)   /* ignore signal */
451992f48a0Sblueswir1 #define TARGET_SIG_ERR  ((abi_long)-1)  /* error return from signal */
45231e31b8aSbellard 
45331e31b8aSbellard #ifdef TARGET_MIPS
45431e31b8aSbellard #define TARGET_NSIG        128
45531e31b8aSbellard #else
45631e31b8aSbellard #define TARGET_NSIG        64
45731e31b8aSbellard #endif
458992f48a0Sblueswir1 #define TARGET_NSIG_BPW    TARGET_ABI_BITS
45931e31b8aSbellard #define TARGET_NSIG_WORDS  (TARGET_NSIG / TARGET_NSIG_BPW)
46031e31b8aSbellard 
46131e31b8aSbellard typedef struct {
462992f48a0Sblueswir1     abi_ulong sig[TARGET_NSIG_WORDS];
463c227f099SAnthony Liguori } target_sigset_t;
46431e31b8aSbellard 
46566fb9763Sbellard #ifdef BSWAP_NEEDED
466c227f099SAnthony Liguori static inline void tswap_sigset(target_sigset_t *d, const target_sigset_t *s)
46766fb9763Sbellard {
46866fb9763Sbellard     int i;
46966fb9763Sbellard     for(i = 0;i < TARGET_NSIG_WORDS; i++)
470cbb21eedSMatthias Braun         d->sig[i] = tswapal(s->sig[i]);
47166fb9763Sbellard }
47266fb9763Sbellard #else
473c227f099SAnthony Liguori static inline void tswap_sigset(target_sigset_t *d, const target_sigset_t *s)
47466fb9763Sbellard {
47566fb9763Sbellard     *d = *s;
47666fb9763Sbellard }
47766fb9763Sbellard #endif
47866fb9763Sbellard 
479c227f099SAnthony Liguori static inline void target_siginitset(target_sigset_t *d, abi_ulong set)
48066fb9763Sbellard {
48166fb9763Sbellard     int i;
48266fb9763Sbellard     d->sig[0] = set;
48366fb9763Sbellard     for(i = 1;i < TARGET_NSIG_WORDS; i++)
48466fb9763Sbellard         d->sig[i] = 0;
48566fb9763Sbellard }
48666fb9763Sbellard 
487c227f099SAnthony Liguori void host_to_target_sigset(target_sigset_t *d, const sigset_t *s);
488c227f099SAnthony Liguori void target_to_host_sigset(sigset_t *d, const target_sigset_t *s);
489992f48a0Sblueswir1 void host_to_target_old_sigset(abi_ulong *old_sigset,
49066fb9763Sbellard                                const sigset_t *sigset);
49166fb9763Sbellard void target_to_host_old_sigset(sigset_t *sigset,
492992f48a0Sblueswir1                                const abi_ulong *old_sigset);
49366fb9763Sbellard struct target_sigaction;
49466fb9763Sbellard int do_sigaction(int sig, const struct target_sigaction *act,
49502fb28e8SRichard Henderson                  struct target_sigaction *oact, abi_ulong ka_restorer);
49666fb9763Sbellard 
4979850f9f6SLaurent Vivier #include "target_signal.h"
4989850f9f6SLaurent Vivier 
4997f047de1SRichard Henderson #ifdef TARGET_SA_RESTORER
5007f047de1SRichard Henderson #define TARGET_ARCH_HAS_SA_RESTORER 1
5017f047de1SRichard Henderson #endif
5027f047de1SRichard Henderson 
5036049f4f8SRichard Henderson #if defined(TARGET_ALPHA)
5045dc0c971SRichard Henderson typedef abi_int target_old_sa_flags;
50502d0de10SRichard Henderson #else
50602d0de10SRichard Henderson typedef abi_ulong target_old_sa_flags;
50702d0de10SRichard Henderson #endif
508106ec879Sbellard 
50902d0de10SRichard Henderson #if defined(TARGET_MIPS)
510106ec879Sbellard struct target_sigaction {
511f6ee1627SRichard Henderson     abi_uint        sa_flags;
512d26bc211Sths #if defined(TARGET_ABI_MIPSN32)
513f6ee1627SRichard Henderson     abi_uint        _sa_handler;
514540635baSths #else
515992f48a0Sblueswir1     abi_ulong       _sa_handler;
516540635baSths #endif
517c227f099SAnthony Liguori     target_sigset_t sa_mask;
5187f047de1SRichard Henderson #ifdef TARGET_ARCH_HAS_SA_RESTORER
5197f047de1SRichard Henderson     /* ??? This is always present, but ignored unless O32.  */
5207f047de1SRichard Henderson     abi_ulong sa_restorer;
5217f047de1SRichard Henderson #endif
522106ec879Sbellard };
523106ec879Sbellard #else
5242521d698Sbellard struct target_old_sigaction {
525992f48a0Sblueswir1     abi_ulong _sa_handler;
526992f48a0Sblueswir1     abi_ulong sa_mask;
52702d0de10SRichard Henderson     target_old_sa_flags sa_flags;
5287f047de1SRichard Henderson #ifdef TARGET_ARCH_HAS_SA_RESTORER
529992f48a0Sblueswir1     abi_ulong sa_restorer;
5307f047de1SRichard Henderson #endif
5312521d698Sbellard };
5322521d698Sbellard 
5332521d698Sbellard struct target_sigaction {
534992f48a0Sblueswir1     abi_ulong _sa_handler;
535992f48a0Sblueswir1     abi_ulong sa_flags;
5367f047de1SRichard Henderson #ifdef TARGET_ARCH_HAS_SA_RESTORER
537992f48a0Sblueswir1     abi_ulong sa_restorer;
5387f047de1SRichard Henderson #endif
539c227f099SAnthony Liguori     target_sigset_t sa_mask;
5405de154e8SLaurent Vivier #ifdef TARGET_ARCH_HAS_KA_RESTORER
5415de154e8SLaurent Vivier     abi_ulong ka_restorer;
5425de154e8SLaurent Vivier #endif
5432521d698Sbellard };
544106ec879Sbellard #endif
5452521d698Sbellard 
5462521d698Sbellard typedef union target_sigval {
547b3c719b2SRichard Henderson     abi_int sival_int;
548992f48a0Sblueswir1     abi_ulong sival_ptr;
549c227f099SAnthony Liguori } target_sigval_t;
5502521d698Sbellard 
5512521d698Sbellard #define TARGET_SI_MAX_SIZE      128
552aa5e03d2SMaxim Ostapenko 
553aa5e03d2SMaxim Ostapenko #if TARGET_ABI_BITS == 32
554aa5e03d2SMaxim Ostapenko #define TARGET_SI_PREAMBLE_SIZE (3 * sizeof(int))
555aa5e03d2SMaxim Ostapenko #else
556aa5e03d2SMaxim Ostapenko #define TARGET_SI_PREAMBLE_SIZE (4 * sizeof(int))
557aa5e03d2SMaxim Ostapenko #endif
558aa5e03d2SMaxim Ostapenko 
559aa5e03d2SMaxim Ostapenko #define TARGET_SI_PAD_SIZE ((TARGET_SI_MAX_SIZE - TARGET_SI_PREAMBLE_SIZE) / sizeof(int))
5602521d698Sbellard 
561a70dadc7SPeter Maydell /* Within QEMU the top 16 bits of si_code indicate which of the parts of
562a70dadc7SPeter Maydell  * the union in target_siginfo is valid. This only applies between
563a70dadc7SPeter Maydell  * host_to_target_siginfo_noswap() and tswap_siginfo(); it does not
564a70dadc7SPeter Maydell  * appear either within host siginfo_t or in target_siginfo structures
565a70dadc7SPeter Maydell  * which we get from the guest userspace program. (The Linux kernel
566a70dadc7SPeter Maydell  * does a similar thing with using the top bits for its own internal
567a70dadc7SPeter Maydell  * purposes but not letting them be visible to userspace.)
568a70dadc7SPeter Maydell  */
569a70dadc7SPeter Maydell #define QEMU_SI_KILL 0
570a70dadc7SPeter Maydell #define QEMU_SI_TIMER 1
571a70dadc7SPeter Maydell #define QEMU_SI_POLL 2
572a70dadc7SPeter Maydell #define QEMU_SI_FAULT 3
573a70dadc7SPeter Maydell #define QEMU_SI_CHLD 4
574a70dadc7SPeter Maydell #define QEMU_SI_RT 5
575a70dadc7SPeter Maydell 
5762521d698Sbellard typedef struct target_siginfo {
5773f53d546Spbrook #ifdef TARGET_MIPS
578b3c719b2SRichard Henderson     abi_int si_signo;
579b3c719b2SRichard Henderson     abi_int si_code;
580b3c719b2SRichard Henderson     abi_int si_errno;
5813f53d546Spbrook #else
582b3c719b2SRichard Henderson     abi_int si_signo;
583b3c719b2SRichard Henderson     abi_int si_errno;
584b3c719b2SRichard Henderson     abi_int si_code;
5853f53d546Spbrook #endif
5862521d698Sbellard 
5872521d698Sbellard     union {
588b3c719b2SRichard Henderson         abi_int _pad[TARGET_SI_PAD_SIZE];
5892521d698Sbellard 
5902521d698Sbellard         /* kill() */
5912521d698Sbellard         struct {
5922521d698Sbellard             pid_t _pid;             /* sender's pid */
5932521d698Sbellard             uid_t _uid;             /* sender's uid */
5942521d698Sbellard         } _kill;
5952521d698Sbellard 
5962521d698Sbellard         /* POSIX.1b timers */
5972521d698Sbellard         struct {
598c7828bd1SRichard Henderson             abi_uint _timer1;
599c7828bd1SRichard Henderson             abi_uint _timer2;
6002521d698Sbellard         } _timer;
6012521d698Sbellard 
6022521d698Sbellard         /* POSIX.1b signals */
6032521d698Sbellard         struct {
6042521d698Sbellard             pid_t _pid;             /* sender's pid */
6052521d698Sbellard             uid_t _uid;             /* sender's uid */
606c227f099SAnthony Liguori             target_sigval_t _sigval;
6072521d698Sbellard         } _rt;
6082521d698Sbellard 
6092521d698Sbellard         /* SIGCHLD */
6102521d698Sbellard         struct {
6112521d698Sbellard             pid_t _pid;             /* which child */
6122521d698Sbellard             uid_t _uid;             /* sender's uid */
613b3c719b2SRichard Henderson             abi_int _status;        /* exit code */
614c227f099SAnthony Liguori             target_clock_t _utime;
615c227f099SAnthony Liguori             target_clock_t _stime;
6162521d698Sbellard         } _sigchld;
6172521d698Sbellard 
6182521d698Sbellard         /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
6192521d698Sbellard         struct {
620992f48a0Sblueswir1             abi_ulong _addr; /* faulting insn/memory ref. */
6212521d698Sbellard         } _sigfault;
6222521d698Sbellard 
6232521d698Sbellard         /* SIGPOLL */
6242521d698Sbellard         struct {
625b3c719b2SRichard Henderson             abi_int _band;   /* POLL_IN, POLL_OUT, POLL_MSG */
626b3c719b2SRichard Henderson             abi_int _fd;
6272521d698Sbellard         } _sigpoll;
6282521d698Sbellard     } _sifields;
629c227f099SAnthony Liguori } target_siginfo_t;
6302521d698Sbellard 
6312521d698Sbellard /*
6322521d698Sbellard  * si_code values
6332521d698Sbellard  * Digital reserves positive values for kernel-generated signals.
6342521d698Sbellard  */
6352521d698Sbellard #define TARGET_SI_USER          0       /* sent by kill, sigsend, raise */
6362521d698Sbellard #define TARGET_SI_KERNEL        0x80    /* sent by the kernel from somewhere */
6372521d698Sbellard #define TARGET_SI_QUEUE -1              /* sent by sigqueue */
6382521d698Sbellard #define TARGET_SI_TIMER -2              /* sent by timer expiration */
6392521d698Sbellard #define TARGET_SI_MESGQ -3              /* sent by real time mesq state change */
6402521d698Sbellard #define TARGET_SI_ASYNCIO       -4      /* sent by AIO completion */
6412521d698Sbellard #define TARGET_SI_SIGIO -5              /* sent by queued SIGIO */
6422521d698Sbellard 
6432521d698Sbellard /*
6442521d698Sbellard  * SIGILL si_codes
6452521d698Sbellard  */
646ffa65c3bSbellard #define TARGET_ILL_ILLOPC       (1)     /* illegal opcode */
6472521d698Sbellard #define TARGET_ILL_ILLOPN       (2)     /* illegal operand */
648ffa65c3bSbellard #define TARGET_ILL_ILLADR       (3)     /* illegal addressing mode */
649ffa65c3bSbellard #define TARGET_ILL_ILLTRP       (4)     /* illegal trap */
650ffa65c3bSbellard #define TARGET_ILL_PRVOPC       (5)     /* privileged opcode */
651ffa65c3bSbellard #define TARGET_ILL_PRVREG       (6)     /* privileged register */
652ffa65c3bSbellard #define TARGET_ILL_COPROC       (7)     /* coprocessor error */
653ffa65c3bSbellard #define TARGET_ILL_BADSTK       (8)     /* internal stack error */
6542521d698Sbellard 
6552521d698Sbellard /*
6562521d698Sbellard  * SIGFPE si_codes
6572521d698Sbellard  */
6582521d698Sbellard #define TARGET_FPE_INTDIV      (1)  /* integer divide by zero */
6592521d698Sbellard #define TARGET_FPE_INTOVF      (2)  /* integer overflow */
6602521d698Sbellard #define TARGET_FPE_FLTDIV      (3)  /* floating point divide by zero */
6612521d698Sbellard #define TARGET_FPE_FLTOVF      (4)  /* floating point overflow */
6622521d698Sbellard #define TARGET_FPE_FLTUND      (5)  /* floating point underflow */
6632521d698Sbellard #define TARGET_FPE_FLTRES      (6)  /* floating point inexact result */
6642521d698Sbellard #define TARGET_FPE_FLTINV      (7)  /* floating point invalid operation */
6652521d698Sbellard #define TARGET_FPE_FLTSUB      (8)  /* subscript out of range */
66621ba8564SRichard Henderson #define TARGET_FPE_FLTUNK      (14) /* undiagnosed fp exception */
6670edf34c9SRichard Henderson #define TARGET_FPE_CONDTRAP    (15) /* trap on condition */
6682521d698Sbellard 
6692521d698Sbellard /*
6702521d698Sbellard  * SIGSEGV si_codes
6712521d698Sbellard  */
6722521d698Sbellard #define TARGET_SEGV_MAPERR     (1)  /* address not mapped to object */
6732521d698Sbellard #define TARGET_SEGV_ACCERR     (2)  /* invalid permissions for mapped object */
674de2fdd56SChen Gang #define TARGET_SEGV_BNDERR     (3)  /* failed address bound checks */
6752521d698Sbellard 
6762521d698Sbellard /*
677ffa65c3bSbellard  * SIGBUS si_codes
678ffa65c3bSbellard  */
679ffa65c3bSbellard #define TARGET_BUS_ADRALN       (1)     /* invalid address alignment */
680b4916d7bSDong Xu Wang #define TARGET_BUS_ADRERR       (2)     /* non-existent physical address */
681ffa65c3bSbellard #define TARGET_BUS_OBJERR       (3)     /* object specific hardware error */
682de2fdd56SChen Gang /* hardware memory error consumed on a machine check: action required */
683de2fdd56SChen Gang #define TARGET_BUS_MCEERR_AR    (4)
684de2fdd56SChen Gang /* hardware memory error detected in process but not consumed: action optional*/
685de2fdd56SChen Gang #define TARGET_BUS_MCEERR_AO    (5)
686ffa65c3bSbellard 
687ffa65c3bSbellard /*
6882521d698Sbellard  * SIGTRAP si_codes
6892521d698Sbellard  */
6902521d698Sbellard #define TARGET_TRAP_BRKPT       (1)     /* process breakpoint */
6912521d698Sbellard #define TARGET_TRAP_TRACE       (2)     /* process trace trap */
692de2fdd56SChen Gang #define TARGET_TRAP_BRANCH      (3)     /* process taken branch trap */
693de2fdd56SChen Gang #define TARGET_TRAP_HWBKPT      (4)     /* hardware breakpoint/watchpoint */
694d010b8bdSRichard Henderson #define TARGET_TRAP_UNK         (5)     /* undiagnosed trap */
6952521d698Sbellard 
696e64c6d42SRichard Henderson /*
697e64c6d42SRichard Henderson  * SIGEMT si_codes
698e64c6d42SRichard Henderson  */
699e64c6d42SRichard Henderson #define TARGET_EMT_TAGOVF      1       /* tag overflow */
700e64c6d42SRichard Henderson 
701b13e49bcSSerge Belyshev #include "target_resource.h"
702e22b7015SWesley W. Terpstra 
7039de5e440Sbellard struct target_pollfd {
704b3c719b2SRichard Henderson     abi_int fd;       /* file descriptor */
70520d49567SRichard Henderson     abi_short events;     /* requested events */
70620d49567SRichard Henderson     abi_short revents;    /* returned events */
7079de5e440Sbellard };
7089de5e440Sbellard 
7098e5a0667Sbellard /* virtual terminal ioctls */
7100221cfcdSbellard #define TARGET_KIOCSOUND       0x4B2F   /* start sound generation (0 for off) */
7110221cfcdSbellard #define TARGET_KDMKTONE        0x4B30   /* generate tone */
7128e5a0667Sbellard #define TARGET_KDGKBTYPE       0x4b33
713f7680a55SUlrich Hecht #define TARGET_KDSETMODE       0x4b3a
714f7680a55SUlrich Hecht #define TARGET_KDGKBMODE       0x4b44
715f7680a55SUlrich Hecht #define TARGET_KDSKBMODE       0x4b45
7160221cfcdSbellard #define TARGET_KDGKBENT        0x4B46   /* gets one entry in translation table */
7170221cfcdSbellard #define TARGET_KDGKBSENT       0x4B48   /* gets one function key string entry */
718e6fe18fbSCédric VINCENT #define TARGET_KDGKBLED        0x4B64   /* get led flags (not lights) */
719e6fe18fbSCédric VINCENT #define TARGET_KDSKBLED        0x4B65   /* set led flags (not lights) */
720e6fe18fbSCédric VINCENT #define TARGET_KDGETLED        0x4B31   /* return current led state */
721e6fe18fbSCédric VINCENT #define TARGET_KDSETLED        0x4B32   /* set led state [lights, not flags] */
722ca56f5b5SPaul Burton #define TARGET_KDSIGACCEPT     0x4B4E
7238e5a0667Sbellard 
724373b067fSFilip Bozuta struct target_rtc_pll_info {
725b3c719b2SRichard Henderson     abi_int pll_ctrl;
726b3c719b2SRichard Henderson     abi_int pll_value;
727b3c719b2SRichard Henderson     abi_int pll_max;
728b3c719b2SRichard Henderson     abi_int pll_min;
729b3c719b2SRichard Henderson     abi_int pll_posmult;
730b3c719b2SRichard Henderson     abi_int pll_negmult;
731373b067fSFilip Bozuta     abi_long pll_clock;
732373b067fSFilip Bozuta };
733373b067fSFilip Bozuta 
73468365f96SFilip Bozuta /* real time clock ioctls */
73568365f96SFilip Bozuta #define TARGET_RTC_AIE_ON           TARGET_IO('p', 0x01)
73668365f96SFilip Bozuta #define TARGET_RTC_AIE_OFF          TARGET_IO('p', 0x02)
73768365f96SFilip Bozuta #define TARGET_RTC_UIE_ON           TARGET_IO('p', 0x03)
73868365f96SFilip Bozuta #define TARGET_RTC_UIE_OFF          TARGET_IO('p', 0x04)
73968365f96SFilip Bozuta #define TARGET_RTC_PIE_ON           TARGET_IO('p', 0x05)
74068365f96SFilip Bozuta #define TARGET_RTC_PIE_OFF          TARGET_IO('p', 0x06)
74168365f96SFilip Bozuta #define TARGET_RTC_WIE_ON           TARGET_IO('p', 0x0f)
74268365f96SFilip Bozuta #define TARGET_RTC_WIE_OFF          TARGET_IO('p', 0x10)
743178b14a0SFilip Bozuta #define TARGET_RTC_ALM_READ         TARGET_IOR('p', 0x08, struct rtc_time)
744178b14a0SFilip Bozuta #define TARGET_RTC_ALM_SET          TARGET_IOW('p', 0x07, struct rtc_time)
745178b14a0SFilip Bozuta #define TARGET_RTC_RD_TIME          TARGET_IOR('p', 0x09, struct rtc_time)
746178b14a0SFilip Bozuta #define TARGET_RTC_SET_TIME         TARGET_IOW('p', 0x0a, struct rtc_time)
747fa857eb5SFilip Bozuta #define TARGET_RTC_IRQP_READ        TARGET_IOR('p', 0x0b, abi_ulong)
748fa857eb5SFilip Bozuta #define TARGET_RTC_IRQP_SET         TARGET_IOW('p', 0x0c, abi_ulong)
749fa857eb5SFilip Bozuta #define TARGET_RTC_EPOCH_READ       TARGET_IOR('p', 0x0d, abi_ulong)
750fa857eb5SFilip Bozuta #define TARGET_RTC_EPOCH_SET        TARGET_IOW('p', 0x0e, abi_ulong)
751abc81bf6SFilip Bozuta #define TARGET_RTC_WKALM_RD         TARGET_IOR('p', 0x10, struct rtc_wkalrm)
752abc81bf6SFilip Bozuta #define TARGET_RTC_WKALM_SET        TARGET_IOW('p', 0x0f, struct rtc_wkalrm)
753373b067fSFilip Bozuta #define TARGET_RTC_PLL_GET          TARGET_IOR('p', 0x11,               \
754373b067fSFilip Bozuta                                                struct target_rtc_pll_info)
755373b067fSFilip Bozuta #define TARGET_RTC_PLL_SET          TARGET_IOW('p', 0x12,               \
756373b067fSFilip Bozuta                                                struct target_rtc_pll_info)
757b3c719b2SRichard Henderson #define TARGET_RTC_VL_READ          TARGET_IOR('p', 0x13, abi_int)
758a7b09746SFilip Bozuta #define TARGET_RTC_VL_CLR           TARGET_IO('p', 0x14)
75968365f96SFilip Bozuta 
760d14eabbeSAleksandar Markovic #if defined(TARGET_ALPHA) || defined(TARGET_MIPS) || defined(TARGET_SH4) || \
761d14eabbeSAleksandar Markovic     defined(TARGET_XTENSA)
762b3c719b2SRichard Henderson #define TARGET_FIOGETOWN       TARGET_IOR('f', 123, abi_int)
763b3c719b2SRichard Henderson #define TARGET_FIOSETOWN       TARGET_IOW('f', 124, abi_int)
764b3c719b2SRichard Henderson #define TARGET_SIOCATMARK      TARGET_IOR('s', 7, abi_int)
765c495a793SAleksandar Markovic #define TARGET_SIOCSPGRP       TARGET_IOW('s', 8, pid_t)
766405b4915SHelge Deller #define TARGET_SIOCGPGRP       TARGET_IOR('s', 9, pid_t)
767e1be1606SAleksandar Markovic #else
7684e4b173fSAleksandar Markovic #define TARGET_FIOGETOWN       0x8903
7694e4b173fSAleksandar Markovic #define TARGET_FIOSETOWN       0x8901
7702521d698Sbellard #define TARGET_SIOCATMARK      0x8905
771c495a793SAleksandar Markovic #define TARGET_SIOCSPGRP       0x8902
772405b4915SHelge Deller #define TARGET_SIOCGPGRP       0x8904
773e1be1606SAleksandar Markovic #endif
774c495a793SAleksandar Markovic 
7756d5d5ddeSDaniel P. Berrangé #if defined(TARGET_SH4)
7766d5d5ddeSDaniel P. Berrangé #define TARGET_SIOCGSTAMP_OLD   TARGET_IOR('s', 100, struct target_timeval)
7776d5d5ddeSDaniel P. Berrangé #define TARGET_SIOCGSTAMPNS_OLD TARGET_IOR('s', 101, struct target_timespec)
7786d5d5ddeSDaniel P. Berrangé #else
7796d5d5ddeSDaniel P. Berrangé #define TARGET_SIOCGSTAMP_OLD   0x8906
7806d5d5ddeSDaniel P. Berrangé #define TARGET_SIOCGSTAMPNS_OLD 0x8907
7816d5d5ddeSDaniel P. Berrangé #endif
7826d5d5ddeSDaniel P. Berrangé 
7836d5d5ddeSDaniel P. Berrangé #define TARGET_SIOCGSTAMP_NEW   TARGET_IOR(0x89, 0x06, abi_llong[2])
7846d5d5ddeSDaniel P. Berrangé #define TARGET_SIOCGSTAMPNS_NEW TARGET_IOR(0x89, 0x07, abi_llong[2])
7852521d698Sbellard 
78631e31b8aSbellard /* Networking ioctls */
78731e31b8aSbellard #define TARGET_SIOCADDRT       0x890B          /* add routing table entry */
78831e31b8aSbellard #define TARGET_SIOCDELRT       0x890C          /* delete routing table entry */
78931e31b8aSbellard #define TARGET_SIOCGIFNAME     0x8910          /* get iface name               */
79031e31b8aSbellard #define TARGET_SIOCSIFLINK     0x8911          /* set iface channel            */
79131e31b8aSbellard #define TARGET_SIOCGIFCONF     0x8912          /* get iface list               */
79231e31b8aSbellard #define TARGET_SIOCGIFFLAGS    0x8913          /* get flags                    */
79331e31b8aSbellard #define TARGET_SIOCSIFFLAGS    0x8914          /* set flags                    */
79431e31b8aSbellard #define TARGET_SIOCGIFADDR     0x8915          /* get PA address               */
79531e31b8aSbellard #define TARGET_SIOCSIFADDR     0x8916          /* set PA address               */
79631e31b8aSbellard #define TARGET_SIOCGIFDSTADDR  0x8917          /* get remote PA address        */
79731e31b8aSbellard #define TARGET_SIOCSIFDSTADDR  0x8918          /* set remote PA address        */
79831e31b8aSbellard #define TARGET_SIOCGIFBRDADDR  0x8919          /* get broadcast PA address     */
79931e31b8aSbellard #define TARGET_SIOCSIFBRDADDR  0x891a          /* set broadcast PA address     */
80031e31b8aSbellard #define TARGET_SIOCGIFNETMASK  0x891b          /* get network PA mask          */
80131e31b8aSbellard #define TARGET_SIOCSIFNETMASK  0x891c          /* set network PA mask          */
80231e31b8aSbellard #define TARGET_SIOCGIFMETRIC   0x891d          /* get metric                   */
80331e31b8aSbellard #define TARGET_SIOCSIFMETRIC   0x891e          /* set metric                   */
80431e31b8aSbellard #define TARGET_SIOCGIFMEM      0x891f          /* get memory address (BSD)     */
80531e31b8aSbellard #define TARGET_SIOCSIFMEM      0x8920          /* set memory address (BSD)     */
80631e31b8aSbellard #define TARGET_SIOCGIFMTU      0x8921          /* get MTU size                 */
80731e31b8aSbellard #define TARGET_SIOCSIFMTU      0x8922          /* set MTU size                 */
80831e31b8aSbellard #define TARGET_SIOCSIFHWADDR   0x8924          /* set hardware address (NI)    */
80931e31b8aSbellard #define TARGET_SIOCGIFENCAP    0x8925          /* get/set slip encapsulation   */
81031e31b8aSbellard #define TARGET_SIOCSIFENCAP    0x8926
81131e31b8aSbellard #define TARGET_SIOCGIFHWADDR   0x8927          /* Get hardware address         */
81231e31b8aSbellard #define TARGET_SIOCGIFSLAVE    0x8929          /* Driver slaving support       */
81331e31b8aSbellard #define TARGET_SIOCSIFSLAVE    0x8930
81431e31b8aSbellard #define TARGET_SIOCADDMULTI    0x8931          /* Multicast address lists      */
81531e31b8aSbellard #define TARGET_SIOCDELMULTI    0x8932
816f63eb01aSPaul Burton #define TARGET_SIOCGIFINDEX    0x8933
8174bdcd79eSNeng Chen #define TARGET_SIOCSIFPFLAGS   0x8934          /* set extended flags          */
8184bdcd79eSNeng Chen #define TARGET_SIOCGIFPFLAGS   0x8935          /* get extended flags          */
81931e31b8aSbellard 
82031e31b8aSbellard /* Bridging control calls */
82131e31b8aSbellard #define TARGET_SIOCGIFBR       0x8940          /* Bridging support             */
82231e31b8aSbellard #define TARGET_SIOCSIFBR       0x8941          /* Set bridging options         */
82331e31b8aSbellard 
82431e31b8aSbellard #define TARGET_SIOCGIFTXQLEN   0x8942          /* Get the tx queue length      */
82531e31b8aSbellard #define TARGET_SIOCSIFTXQLEN   0x8943          /* Set the tx queue length      */
82631e31b8aSbellard 
82731e31b8aSbellard /* ARP cache control calls. */
82831e31b8aSbellard #define TARGET_OLD_SIOCDARP    0x8950          /* old delete ARP table entry   */
82931e31b8aSbellard #define TARGET_OLD_SIOCGARP    0x8951          /* old get ARP table entry      */
83031e31b8aSbellard #define TARGET_OLD_SIOCSARP    0x8952          /* old set ARP table entry      */
83131e31b8aSbellard #define TARGET_SIOCDARP        0x8953          /* delete ARP table entry       */
83231e31b8aSbellard #define TARGET_SIOCGARP        0x8954          /* get ARP table entry          */
83331e31b8aSbellard #define TARGET_SIOCSARP        0x8955          /* set ARP table entry          */
83431e31b8aSbellard 
83531e31b8aSbellard /* RARP cache control calls. */
83631e31b8aSbellard #define TARGET_SIOCDRARP       0x8960          /* delete RARP table entry      */
83731e31b8aSbellard #define TARGET_SIOCGRARP       0x8961          /* get RARP table entry         */
83831e31b8aSbellard #define TARGET_SIOCSRARP       0x8962          /* set RARP table entry         */
83931e31b8aSbellard 
84031e31b8aSbellard /* Driver configuration calls */
84131e31b8aSbellard #define TARGET_SIOCGIFMAP      0x8970          /* Get device parameters        */
84231e31b8aSbellard #define TARGET_SIOCSIFMAP      0x8971          /* Set device parameters        */
84331e31b8aSbellard 
84431e31b8aSbellard /* DLCI configuration calls */
84531e31b8aSbellard #define TARGET_SIOCADDDLCI     0x8980          /* Create new DLCI device       */
84631e31b8aSbellard #define TARGET_SIOCDELDLCI     0x8981          /* Delete DLCI device           */
84731e31b8aSbellard 
84886fcd946SLaurent Vivier /* From <linux/wireless.h> */
84986fcd946SLaurent Vivier 
85086fcd946SLaurent Vivier #define TARGET_SIOCGIWNAME     0x8B01          /* get name == wireless protocol */
85131e31b8aSbellard 
8526addf06aSShu-Chun Weng /* From <linux/if_tun.h> */
8536addf06aSShu-Chun Weng 
854b3c719b2SRichard Henderson #define TARGET_TUNSETDEBUG        TARGET_IOW('T', 201, abi_int)
855b3c719b2SRichard Henderson #define TARGET_TUNSETIFF          TARGET_IOW('T', 202, abi_int)
856b3c719b2SRichard Henderson #define TARGET_TUNSETPERSIST      TARGET_IOW('T', 203, abi_int)
857b3c719b2SRichard Henderson #define TARGET_TUNSETOWNER        TARGET_IOW('T', 204, abi_int)
858b3c719b2SRichard Henderson #define TARGET_TUNSETLINK         TARGET_IOW('T', 205, abi_int)
859b3c719b2SRichard Henderson #define TARGET_TUNSETGROUP        TARGET_IOW('T', 206, abi_int)
860c7828bd1SRichard Henderson #define TARGET_TUNGETFEATURES     TARGET_IOR('T', 207, abi_uint)
861c7828bd1SRichard Henderson #define TARGET_TUNSETOFFLOAD      TARGET_IOW('T', 208, abi_uint)
862c7828bd1SRichard Henderson #define TARGET_TUNSETTXFILTER     TARGET_IOW('T', 209, abi_uint)
863c7828bd1SRichard Henderson #define TARGET_TUNGETIFF          TARGET_IOR('T', 210, abi_uint)
864b3c719b2SRichard Henderson #define TARGET_TUNGETSNDBUF       TARGET_IOR('T', 211, abi_int)
865b3c719b2SRichard Henderson #define TARGET_TUNSETSNDBUF       TARGET_IOW('T', 212, abi_int)
8666addf06aSShu-Chun Weng /*
8676addf06aSShu-Chun Weng  * TUNATTACHFILTER and TUNDETACHFILTER are not supported. Linux kernel keeps a
8686addf06aSShu-Chun Weng  * user pointer in TUNATTACHFILTER, which we are not able to correctly handle.
8696addf06aSShu-Chun Weng  */
870b3c719b2SRichard Henderson #define TARGET_TUNGETVNETHDRSZ    TARGET_IOR('T', 215, abi_int)
871b3c719b2SRichard Henderson #define TARGET_TUNSETVNETHDRSZ    TARGET_IOW('T', 216, abi_int)
872b3c719b2SRichard Henderson #define TARGET_TUNSETQUEUE        TARGET_IOW('T', 217, abi_int)
873c7828bd1SRichard Henderson #define TARGET_TUNSETIFINDEX      TARGET_IOW('T', 218, abi_uint)
8746addf06aSShu-Chun Weng /* TUNGETFILTER is not supported: see TUNATTACHFILTER. */
875b3c719b2SRichard Henderson #define TARGET_TUNSETVNETLE       TARGET_IOW('T', 220, abi_int)
876b3c719b2SRichard Henderson #define TARGET_TUNGETVNETLE       TARGET_IOR('T', 221, abi_int)
877b3c719b2SRichard Henderson #define TARGET_TUNSETVNETBE       TARGET_IOW('T', 222, abi_int)
878b3c719b2SRichard Henderson #define TARGET_TUNGETVNETBE       TARGET_IOR('T', 223, abi_int)
879b3c719b2SRichard Henderson #define TARGET_TUNSETSTEERINGEBPF TARGET_IOR('T', 224, abi_int)
880b3c719b2SRichard Henderson #define TARGET_TUNSETFILTEREBPF   TARGET_IOR('T', 225, abi_int)
881b3c719b2SRichard Henderson #define TARGET_TUNSETCARRIER      TARGET_IOW('T', 226, abi_int)
8826addf06aSShu-Chun Weng #define TARGET_TUNGETDEVNETNS     TARGET_IO('T', 227)
8836addf06aSShu-Chun Weng 
884d6d6d6feSMarco A L Barbosa /* From <linux/random.h> */
885d6d6d6feSMarco A L Barbosa 
886b3c719b2SRichard Henderson #define TARGET_RNDGETENTCNT    TARGET_IOR('R', 0x00, abi_int)
887b3c719b2SRichard Henderson #define TARGET_RNDADDTOENTCNT  TARGET_IOW('R', 0x01, abi_int)
888d6d6d6feSMarco A L Barbosa #define TARGET_RNDZAPENTCNT    TARGET_IO('R', 0x04)
889d6d6d6feSMarco A L Barbosa #define TARGET_RNDCLEARPOOL    TARGET_IO('R', 0x06)
89092c096f0SAleksandar Markovic #define TARGET_RNDRESEEDCRNG   TARGET_IO('R', 0x07)
891d6d6d6feSMarco A L Barbosa 
89231e31b8aSbellard /* From <linux/fs.h> */
89331e31b8aSbellard 
89431e31b8aSbellard #define TARGET_BLKROSET   TARGET_IO(0x12,93) /* set device read-only (0 = read-write) */
89531e31b8aSbellard #define TARGET_BLKROGET   TARGET_IO(0x12,94) /* get read-only status (0 = read_write) */
89631e31b8aSbellard #define TARGET_BLKRRPART  TARGET_IO(0x12,95) /* re-read partition table */
89731e31b8aSbellard #define TARGET_BLKGETSIZE TARGET_IO(0x12,96) /* return device size /512 (long *arg) */
89831e31b8aSbellard #define TARGET_BLKFLSBUF  TARGET_IO(0x12,97) /* flush buffer cache */
89931e31b8aSbellard #define TARGET_BLKRASET   TARGET_IO(0x12,98) /* Set read ahead for block device */
90031e31b8aSbellard #define TARGET_BLKRAGET   TARGET_IO(0x12,99) /* get current read ahead setting */
90131e31b8aSbellard #define TARGET_BLKFRASET  TARGET_IO(0x12,100)/* set filesystem (mm/filemap.c) read-ahead */
90231e31b8aSbellard #define TARGET_BLKFRAGET  TARGET_IO(0x12,101)/* get filesystem (mm/filemap.c) read-ahead */
90331e31b8aSbellard #define TARGET_BLKSECTSET TARGET_IO(0x12,102)/* set max sectors per request (ll_rw_blk.c) */
90431e31b8aSbellard #define TARGET_BLKSECTGET TARGET_IO(0x12,103)/* get max sectors per request (ll_rw_blk.c) */
90531e31b8aSbellard #define TARGET_BLKSSZGET  TARGET_IO(0x12,104)/* get block device sector size */
906fff8c539SAndreas Färber #define TARGET_BLKPG      TARGET_IO(0x12,105)/* Partition table and disk geometry handling */
90731e31b8aSbellard /* A jump here: 108-111 have been used for various private purposes. */
908c8b0bf54SPeter Maydell #define TARGET_BLKBSZGET  TARGET_IOR(0x12, 112, abi_ulong)
909c8b0bf54SPeter Maydell #define TARGET_BLKBSZSET  TARGET_IOW(0x12, 113, abi_ulong)
910edafea13SAlexander Graf #define TARGET_BLKGETSIZE64 TARGET_IOR(0x12,114,abi_ulong)
911edafea13SAlexander Graf /* return device size in bytes
912edafea13SAlexander Graf    (u64 *arg) */
9134715856aSPeter Maydell 
9144715856aSPeter Maydell #define TARGET_BLKDISCARD TARGET_IO(0x12, 119)
9154715856aSPeter Maydell #define TARGET_BLKIOMIN TARGET_IO(0x12, 120)
9164715856aSPeter Maydell #define TARGET_BLKIOOPT TARGET_IO(0x12, 121)
9174715856aSPeter Maydell #define TARGET_BLKALIGNOFF TARGET_IO(0x12, 122)
9184715856aSPeter Maydell #define TARGET_BLKPBSZGET TARGET_IO(0x12, 123)
9194715856aSPeter Maydell #define TARGET_BLKDISCARDZEROES TARGET_IO(0x12, 124)
9204715856aSPeter Maydell #define TARGET_BLKSECDISCARD TARGET_IO(0x12, 125)
9214715856aSPeter Maydell #define TARGET_BLKROTATIONAL TARGET_IO(0x12, 126)
9224715856aSPeter Maydell #define TARGET_BLKZEROOUT TARGET_IO(0x12, 127)
9234715856aSPeter Maydell 
924ab22b4ddSYunqiang Su /* From <linux/fd.h> */
925ab22b4ddSYunqiang Su 
9267e35fc8bSAleksandar Markovic #define TARGET_FDMSGON        TARGET_IO(2, 0x45)
9277e35fc8bSAleksandar Markovic #define TARGET_FDMSGOFF       TARGET_IO(2, 0x46)
92808e3ce59SAleksandar Markovic #define TARGET_FDFMTBEG       TARGET_IO(2, 0x47)
92908e3ce59SAleksandar Markovic #define TARGET_FDFMTTRK      TARGET_IOW(2, 0x48, struct format_descr)
93008e3ce59SAleksandar Markovic #define TARGET_FDFMTEND       TARGET_IO(2, 0x49)
93181eb1a36SAleksandar Markovic #define TARGET_FDSETEMSGTRESH TARGET_IO(2, 0x4a)
932ab22b4ddSYunqiang Su #define TARGET_FDFLUSH        TARGET_IO(2, 0x4b)
93381eb1a36SAleksandar Markovic #define TARGET_FDSETMAXERRS  TARGET_IOW(2, 0x4c, struct floppy_max_errors)
93481eb1a36SAleksandar Markovic #define TARGET_FDGETMAXERRS  TARGET_IOR(2, 0x0e, struct floppy_max_errors)
9355eea9429SAleksandar Markovic #define TARGET_FDRESET        TARGET_IO(2, 0x54)
9365eea9429SAleksandar Markovic #define TARGET_FDRAWCMD       TARGET_IO(2, 0x58)
9375eea9429SAleksandar Markovic #define TARGET_FDTWADDLE      TARGET_IO(2, 0x59)
9385eea9429SAleksandar Markovic #define TARGET_FDEJECT        TARGET_IO(2, 0x5a)
939ab22b4ddSYunqiang Su 
94031e31b8aSbellard #define TARGET_FIBMAP     TARGET_IO(0x00,1)  /* bmap access */
94131e31b8aSbellard #define TARGET_FIGETBSZ   TARGET_IO(0x00,2)  /* get the block size used for bmap */
94221992cb6SHelge Deller 
943b3c719b2SRichard Henderson #define TARGET_FICLONE    TARGET_IOW(0x94, 9, abi_int)
94421992cb6SHelge Deller #define TARGET_FICLONERANGE TARGET_IOW(0x94, 13, struct file_clone_range)
94521992cb6SHelge Deller 
946f9eebe31SMichael Vogt #define TARGET_FIFREEZE    TARGET_IOWR('X', 119, abi_int)
947f9eebe31SMichael Vogt #define TARGET_FITHAW    TARGET_IOWR('X', 120, abi_int)
948*7048fc59SMichael Vogt #define TARGET_FITRIM    TARGET_IOWR('X', 121, struct fstrim_range)
949f9eebe31SMichael Vogt 
9505ae774a9SAleksandar Markovic /*
9515ae774a9SAleksandar Markovic  * Note that the ioctl numbers for FS_IOC_<GET|SET><FLAGS|VERSION>
9525ae774a9SAleksandar Markovic  * claim type "long" but the actual type used by the kernel is "int".
95360807231SPeter Maydell  */
9541847b7baSPeter Maydell #define TARGET_FS_IOC_GETFLAGS TARGET_IOR('f', 1, abi_long)
9551847b7baSPeter Maydell #define TARGET_FS_IOC_SETFLAGS TARGET_IOW('f', 2, abi_long)
9565ae774a9SAleksandar Markovic #define TARGET_FS_IOC_GETVERSION TARGET_IOR('v', 1, abi_long)
9575ae774a9SAleksandar Markovic #define TARGET_FS_IOC_SETVERSION TARGET_IOW('v', 2, abi_long)
958285da2b9SPeter Maydell #define TARGET_FS_IOC_FIEMAP TARGET_IOWR('f',11,struct fiemap)
959b3c719b2SRichard Henderson #define TARGET_FS_IOC32_GETFLAGS TARGET_IOR('f', 1, abi_int)
960b3c719b2SRichard Henderson #define TARGET_FS_IOC32_SETFLAGS TARGET_IOW('f', 2, abi_int)
961b3c719b2SRichard Henderson #define TARGET_FS_IOC32_GETVERSION TARGET_IOR('v', 1, abi_int)
962b3c719b2SRichard Henderson #define TARGET_FS_IOC32_SETVERSION TARGET_IOW('v', 2, abi_int)
96331e31b8aSbellard 
964d6092e08SFilip Bozuta /* btrfs ioctls */
96548f670ecSThomas Huth #ifdef HAVE_BTRFS_H
966527e8d8fSFilip Bozuta #define TARGET_BTRFS_IOC_SNAP_CREATE            TARGET_IOWU(BTRFS_IOCTL_MAGIC, 1)
9679bbd60e7SFilip Bozuta #define TARGET_BTRFS_IOC_SCAN_DEV               TARGET_IOWU(BTRFS_IOCTL_MAGIC, 4)
9689bbd60e7SFilip Bozuta #define TARGET_BTRFS_IOC_FORGET_DEV             TARGET_IOWU(BTRFS_IOCTL_MAGIC, 5)
9699bbd60e7SFilip Bozuta #define TARGET_BTRFS_IOC_ADD_DEV                TARGET_IOWU(BTRFS_IOCTL_MAGIC, 10)
9709bbd60e7SFilip Bozuta #define TARGET_BTRFS_IOC_RM_DEV                 TARGET_IOWU(BTRFS_IOCTL_MAGIC, 11)
971d6092e08SFilip Bozuta #define TARGET_BTRFS_IOC_SUBVOL_CREATE          TARGET_IOWU(BTRFS_IOCTL_MAGIC, 14)
972527e8d8fSFilip Bozuta #define TARGET_BTRFS_IOC_SNAP_DESTROY           TARGET_IOWU(BTRFS_IOCTL_MAGIC, 15)
9730ff496a0SFilip Bozuta #define TARGET_BTRFS_IOC_INO_LOOKUP             TARGET_IOWRU(BTRFS_IOCTL_MAGIC, 18)
974784c08c8SFilip Bozuta #define TARGET_BTRFS_IOC_DEFAULT_SUBVOL         TARGET_IOW(BTRFS_IOCTL_MAGIC, 19, \
975784c08c8SFilip Bozuta                                                            abi_ullong)
976d6092e08SFilip Bozuta #define TARGET_BTRFS_IOC_SUBVOL_GETFLAGS        TARGET_IOR(BTRFS_IOCTL_MAGIC, 25, \
977d6092e08SFilip Bozuta                                                            abi_ullong)
978d6092e08SFilip Bozuta #define TARGET_BTRFS_IOC_SUBVOL_SETFLAGS        TARGET_IOW(BTRFS_IOCTL_MAGIC, 26, \
979d6092e08SFilip Bozuta                                                            abi_ullong)
9809a5a5a05SFilip Bozuta #define TARGET_BTRFS_IOC_SCRUB                  TARGET_IOWRU(BTRFS_IOCTL_MAGIC, 27)
9819a5a5a05SFilip Bozuta #define TARGET_BTRFS_IOC_SCRUB_CANCEL           TARGET_IO(BTRFS_IOCTL_MAGIC, 28)
9829a5a5a05SFilip Bozuta #define TARGET_BTRFS_IOC_SCRUB_PROGRESS         TARGET_IOWRU(BTRFS_IOCTL_MAGIC, 29)
9839bbd60e7SFilip Bozuta #define TARGET_BTRFS_IOC_DEV_INFO               TARGET_IOWRU(BTRFS_IOCTL_MAGIC, 30)
9840ff496a0SFilip Bozuta #define TARGET_BTRFS_IOC_INO_PATHS              TARGET_IOWRU(BTRFS_IOCTL_MAGIC, 35)
9850ff496a0SFilip Bozuta #define TARGET_BTRFS_IOC_LOGICAL_INO            TARGET_IOWRU(BTRFS_IOCTL_MAGIC, 36)
98653906f68SFilip Bozuta #define TARGET_BTRFS_IOC_QUOTA_CTL              TARGET_IOWRU(BTRFS_IOCTL_MAGIC, 40)
98753906f68SFilip Bozuta #define TARGET_BTRFS_IOC_QGROUP_ASSIGN          TARGET_IOWU(BTRFS_IOCTL_MAGIC, 41)
98853906f68SFilip Bozuta #define TARGET_BTRFS_IOC_QGROUP_CREATE          TARGET_IOWU(BTRFS_IOCTL_MAGIC, 42)
98953906f68SFilip Bozuta #define TARGET_BTRFS_IOC_QGROUP_LIMIT           TARGET_IORU(BTRFS_IOCTL_MAGIC, 43)
99053906f68SFilip Bozuta #define TARGET_BTRFS_IOC_QUOTA_RESCAN           TARGET_IOWU(BTRFS_IOCTL_MAGIC, 44)
99153906f68SFilip Bozuta #define TARGET_BTRFS_IOC_QUOTA_RESCAN_STATUS    TARGET_IORU(BTRFS_IOCTL_MAGIC, 45)
99253906f68SFilip Bozuta #define TARGET_BTRFS_IOC_QUOTA_RESCAN_WAIT      TARGET_IO(BTRFS_IOCTL_MAGIC, 46)
9939bbd60e7SFilip Bozuta #define TARGET_BTRFS_IOC_GET_DEV_STATS          TARGET_IOWRU(BTRFS_IOCTL_MAGIC, 52)
99449b422a8SFilip Bozuta #define TARGET_BTRFS_IOC_GET_FEATURES           TARGET_IORU(BTRFS_IOCTL_MAGIC, 57)
99549b422a8SFilip Bozuta #define TARGET_BTRFS_IOC_SET_FEATURES           TARGET_IOWU(BTRFS_IOCTL_MAGIC, 57)
99649b422a8SFilip Bozuta #define TARGET_BTRFS_IOC_GET_SUPPORTED_FEATURES TARGET_IORU(BTRFS_IOCTL_MAGIC, 57)
9970ff496a0SFilip Bozuta #define TARGET_BTRFS_IOC_LOGICAL_INO_V2         TARGET_IOWRU(BTRFS_IOCTL_MAGIC, 59)
998d6092e08SFilip Bozuta #define TARGET_BTRFS_IOC_GET_SUBVOL_INFO        TARGET_IORU(BTRFS_IOCTL_MAGIC, 60)
999784c08c8SFilip Bozuta #define TARGET_BTRFS_IOC_GET_SUBVOL_ROOTREF     TARGET_IOWRU(BTRFS_IOCTL_MAGIC, 61)
10000ff496a0SFilip Bozuta #define TARGET_BTRFS_IOC_INO_LOOKUP_USER        TARGET_IOWRU(BTRFS_IOCTL_MAGIC, 62)
10015d5d1752SFilip Bozuta #endif
1002d6092e08SFilip Bozuta 
10036c753a63SCortland Tölva /* usb ioctls */
10046c753a63SCortland Tölva #define TARGET_USBDEVFS_CONTROL TARGET_IOWRU('U', 0)
10056c753a63SCortland Tölva #define TARGET_USBDEVFS_BULK TARGET_IOWRU('U', 2)
10066c753a63SCortland Tölva #define TARGET_USBDEVFS_RESETEP TARGET_IORU('U', 3)
10076c753a63SCortland Tölva #define TARGET_USBDEVFS_SETINTERFACE TARGET_IORU('U', 4)
10086c753a63SCortland Tölva #define TARGET_USBDEVFS_SETCONFIGURATION TARGET_IORU('U',  5)
10096c753a63SCortland Tölva #define TARGET_USBDEVFS_GETDRIVER TARGET_IOWU('U', 8)
1010a133367eSCortland Tölva #define TARGET_USBDEVFS_SUBMITURB TARGET_IORU('U', 10)
1011a133367eSCortland Tölva #define TARGET_USBDEVFS_DISCARDURB TARGET_IO('U', 11)
1012a133367eSCortland Tölva #define TARGET_USBDEVFS_REAPURB TARGET_IOWU('U', 12)
1013a133367eSCortland Tölva #define TARGET_USBDEVFS_REAPURBNDELAY TARGET_IOWU('U', 13)
10146c753a63SCortland Tölva #define TARGET_USBDEVFS_DISCSIGNAL TARGET_IORU('U', 14)
10156c753a63SCortland Tölva #define TARGET_USBDEVFS_CLAIMINTERFACE TARGET_IORU('U', 15)
10166c753a63SCortland Tölva #define TARGET_USBDEVFS_RELEASEINTERFACE TARGET_IORU('U', 16)
10176c753a63SCortland Tölva #define TARGET_USBDEVFS_CONNECTINFO TARGET_IOWU('U', 17)
10186c753a63SCortland Tölva #define TARGET_USBDEVFS_IOCTL TARGET_IOWRU('U', 18)
10196c753a63SCortland Tölva #define TARGET_USBDEVFS_HUB_PORTINFO TARGET_IORU('U', 19)
10206c753a63SCortland Tölva #define TARGET_USBDEVFS_RESET TARGET_IO('U', 20)
10216c753a63SCortland Tölva #define TARGET_USBDEVFS_CLEAR_HALT TARGET_IORU('U', 21)
10226c753a63SCortland Tölva #define TARGET_USBDEVFS_DISCONNECT TARGET_IO('U', 22)
10236c753a63SCortland Tölva #define TARGET_USBDEVFS_CONNECT TARGET_IO('U', 23)
10246c753a63SCortland Tölva #define TARGET_USBDEVFS_CLAIM_PORT TARGET_IORU('U', 24)
10256c753a63SCortland Tölva #define TARGET_USBDEVFS_RELEASE_PORT TARGET_IORU('U', 25)
10266c753a63SCortland Tölva #define TARGET_USBDEVFS_GET_CAPABILITIES TARGET_IORU('U', 26)
10276c753a63SCortland Tölva #define TARGET_USBDEVFS_DISCONNECT_CLAIM TARGET_IORU('U', 27)
10286c753a63SCortland Tölva #define TARGET_USBDEVFS_DROP_PRIVILEGES TARGET_IOWU('U', 30)
10296c753a63SCortland Tölva #define TARGET_USBDEVFS_GET_SPEED TARGET_IO('U', 31)
10306c753a63SCortland Tölva 
103131e31b8aSbellard /* cdrom commands */
103231e31b8aSbellard #define TARGET_CDROMPAUSE               0x5301 /* Pause Audio Operation */
103331e31b8aSbellard #define TARGET_CDROMRESUME              0x5302 /* Resume paused Audio Operation */
103431e31b8aSbellard #define TARGET_CDROMPLAYMSF             0x5303 /* Play Audio MSF (struct cdrom_msf) */
103531e31b8aSbellard #define TARGET_CDROMPLAYTRKIND          0x5304 /* Play Audio Track/index
103631e31b8aSbellard                                                   (struct cdrom_ti) */
103731e31b8aSbellard #define TARGET_CDROMREADTOCHDR          0x5305 /* Read TOC header
103831e31b8aSbellard                                                   (struct cdrom_tochdr) */
103931e31b8aSbellard #define TARGET_CDROMREADTOCENTRY        0x5306 /* Read TOC entry
104031e31b8aSbellard                                                   (struct cdrom_tocentry) */
104131e31b8aSbellard #define TARGET_CDROMSTOP                0x5307 /* Stop the cdrom drive */
104231e31b8aSbellard #define TARGET_CDROMSTART               0x5308 /* Start the cdrom drive */
104331e31b8aSbellard #define TARGET_CDROMEJECT               0x5309 /* Ejects the cdrom media */
104431e31b8aSbellard #define TARGET_CDROMVOLCTRL             0x530a /* Control output volume
104531e31b8aSbellard                                                   (struct cdrom_volctrl) */
104631e31b8aSbellard #define TARGET_CDROMSUBCHNL             0x530b /* Read subchannel data
104731e31b8aSbellard                                                   (struct cdrom_subchnl) */
104831e31b8aSbellard #define TARGET_CDROMREADMODE2           0x530c /* Read TARGET_CDROM mode 2 data (2336 Bytes)
104931e31b8aSbellard                                                   (struct cdrom_read) */
105031e31b8aSbellard #define TARGET_CDROMREADMODE1           0x530d /* Read TARGET_CDROM mode 1 data (2048 Bytes)
105131e31b8aSbellard                                                   (struct cdrom_read) */
105231e31b8aSbellard #define TARGET_CDROMREADAUDIO           0x530e /* (struct cdrom_read_audio) */
105331e31b8aSbellard #define TARGET_CDROMEJECT_SW            0x530f /* enable(1)/disable(0) auto-ejecting */
105431e31b8aSbellard #define TARGET_CDROMMULTISESSION        0x5310 /* Obtain the start-of-last-session
105531e31b8aSbellard                                                   address of multi session disks
105631e31b8aSbellard                                                   (struct cdrom_multisession) */
105731e31b8aSbellard #define TARGET_CDROM_GET_MCN            0x5311 /* Obtain the "Universal Product Code"
105831e31b8aSbellard                                                   if available (struct cdrom_mcn) */
105967cc32ebSVeres Lajos #define TARGET_CDROM_GET_UPC            TARGET_CDROM_GET_MCN  /* This one is deprecated,
1060b4916d7bSDong Xu Wang                                                                  but here anyway for compatibility */
106131e31b8aSbellard #define TARGET_CDROMRESET               0x5312 /* hard-reset the drive */
106231e31b8aSbellard #define TARGET_CDROMVOLREAD             0x5313 /* Get the drive's volume setting
106331e31b8aSbellard                                                   (struct cdrom_volctrl) */
106431e31b8aSbellard #define TARGET_CDROMREADRAW             0x5314  /* read data in raw mode (2352 Bytes)
106531e31b8aSbellard                                                    (struct cdrom_read) */
106631e31b8aSbellard /*
106731e31b8aSbellard  * These ioctls are used only used in aztcd.c and optcd.c
106831e31b8aSbellard  */
106931e31b8aSbellard #define TARGET_CDROMREADCOOKED          0x5315  /* read data in cooked mode */
107031e31b8aSbellard #define TARGET_CDROMSEEK                0x5316  /* seek msf address */
107131e31b8aSbellard 
107231e31b8aSbellard /*
107331e31b8aSbellard  * This ioctl is only used by the scsi-cd driver.
107431e31b8aSbellard  It is for playing audio in logical block addressing mode.
107531e31b8aSbellard */
107631e31b8aSbellard #define TARGET_CDROMPLAYBLK             0x5317  /* (struct cdrom_blk) */
107731e31b8aSbellard 
107831e31b8aSbellard /*
107931e31b8aSbellard  * These ioctls are only used in optcd.c
108031e31b8aSbellard  */
108131e31b8aSbellard #define TARGET_CDROMREADALL             0x5318  /* read all 2646 bytes */
108231e31b8aSbellard 
108331e31b8aSbellard /*
108431e31b8aSbellard  * These ioctls are (now) only in ide-cd.c for controlling
108531e31b8aSbellard  * drive spindown time.  They should be implemented in the
108631e31b8aSbellard  * Uniform driver, via generic packet commands, GPCMD_MODE_SELECT_10,
108731e31b8aSbellard  * GPCMD_MODE_SENSE_10 and the GPMODE_POWER_PAGE...
108831e31b8aSbellard  *  -Erik
108931e31b8aSbellard  */
109031e31b8aSbellard #define TARGET_CDROMGETSPINDOWN        0x531d
109131e31b8aSbellard #define TARGET_CDROMSETSPINDOWN        0x531e
109231e31b8aSbellard 
109331e31b8aSbellard /*
109431e31b8aSbellard  * These ioctls are implemented through the uniform CD-ROM driver
109531e31b8aSbellard  * They _will_ be adopted by all CD-ROM drivers, when all the CD-ROM
109631e31b8aSbellard  * drivers are eventually ported to the uniform CD-ROM driver interface.
109731e31b8aSbellard  */
109831e31b8aSbellard #define TARGET_CDROMCLOSETRAY           0x5319  /* pendant of CDROMEJECT */
109931e31b8aSbellard #define TARGET_CDROM_SET_OPTIONS        0x5320  /* Set behavior options */
110031e31b8aSbellard #define TARGET_CDROM_CLEAR_OPTIONS      0x5321  /* Clear behavior options */
110131e31b8aSbellard #define TARGET_CDROM_SELECT_SPEED       0x5322  /* Set the CD-ROM speed */
110231e31b8aSbellard #define TARGET_CDROM_SELECT_DISC        0x5323  /* Select disc (for juke-boxes) */
110331e31b8aSbellard #define TARGET_CDROM_MEDIA_CHANGED      0x5325  /* Check is media changed  */
110431e31b8aSbellard #define TARGET_CDROM_DRIVE_STATUS       0x5326  /* Get tray position, etc. */
110531e31b8aSbellard #define TARGET_CDROM_DISC_STATUS        0x5327  /* Get disc type, etc. */
110631e31b8aSbellard #define TARGET_CDROM_CHANGER_NSLOTS    0x5328  /* Get number of slots */
110731e31b8aSbellard #define TARGET_CDROM_LOCKDOOR           0x5329  /* lock or unlock door */
110831e31b8aSbellard #define TARGET_CDROM_DEBUG              0x5330  /* Turn debug messages on/off */
110931e31b8aSbellard #define TARGET_CDROM_GET_CAPABILITY     0x5331  /* get capabilities */
111031e31b8aSbellard 
111131e31b8aSbellard /* Note that scsi/scsi_ioctl.h also uses 0x5382 - 0x5386.
111231e31b8aSbellard  * Future CDROM ioctls should be kept below 0x537F
111331e31b8aSbellard  */
111431e31b8aSbellard 
111531e31b8aSbellard /* This ioctl is only used by sbpcd at the moment */
111631e31b8aSbellard #define TARGET_CDROMAUDIOBUFSIZ        0x5382   /* set the audio buffer size */
111731e31b8aSbellard /* conflict with SCSI_IOCTL_GET_IDLUN */
111831e31b8aSbellard 
111931e31b8aSbellard /* DVD-ROM Specific ioctls */
112031e31b8aSbellard #define TARGET_DVD_READ_STRUCT          0x5390  /* Read structure */
112131e31b8aSbellard #define TARGET_DVD_WRITE_STRUCT 0x5391  /* Write structure */
112231e31b8aSbellard #define TARGET_DVD_AUTH         0x5392  /* Authentication */
112331e31b8aSbellard 
112431e31b8aSbellard #define TARGET_CDROM_SEND_PACKET        0x5393  /* send a packet to the drive */
112531e31b8aSbellard #define TARGET_CDROM_NEXT_WRITABLE      0x5394  /* get next writable block */
112631e31b8aSbellard #define TARGET_CDROM_LAST_WRITTEN       0x5395  /* get last block written on disc */
112731e31b8aSbellard 
112831e31b8aSbellard /* HD commands */
112931e31b8aSbellard 
113031e31b8aSbellard /* hd/ide ctl's that pass (arg) ptrs to user space are numbered 0x030n/0x031n */
113131e31b8aSbellard #define TARGET_HDIO_GETGEO            0x0301  /* get device geometry */
113231e31b8aSbellard #define TARGET_HDIO_GET_UNMASKINTR    0x0302  /* get current unmask setting */
113331e31b8aSbellard #define TARGET_HDIO_GET_MULTCOUNT     0x0304  /* get current IDE blockmode setting */
113431e31b8aSbellard #define TARGET_HDIO_GET_KEEPSETTINGS  0x0308  /* get keep-settings-on-reset flag */
113531e31b8aSbellard #define TARGET_HDIO_GET_32BIT         0x0309  /* get current io_32bit setting */
113631e31b8aSbellard #define TARGET_HDIO_GET_NOWERR        0x030a  /* get ignore-write-error flag */
113731e31b8aSbellard #define TARGET_HDIO_GET_DMA           0x030b  /* get use-dma flag */
11382521d698Sbellard #define TARGET_HDIO_GET_IDENTITY      0x030d  /* get IDE identification info */
113931e31b8aSbellard #define TARGET_HDIO_DRIVE_CMD         0x031f  /* execute a special drive command */
114031e31b8aSbellard 
114131e31b8aSbellard /* hd/ide ctl's that pass (arg) non-ptr values are numbered 0x032n/0x033n */
114231e31b8aSbellard #define TARGET_HDIO_SET_MULTCOUNT     0x0321  /* change IDE blockmode */
114331e31b8aSbellard #define TARGET_HDIO_SET_UNMASKINTR    0x0322  /* permit other irqs during I/O */
114431e31b8aSbellard #define TARGET_HDIO_SET_KEEPSETTINGS  0x0323  /* keep ioctl settings on reset */
114531e31b8aSbellard #define TARGET_HDIO_SET_32BIT         0x0324  /* change io_32bit flags */
114631e31b8aSbellard #define TARGET_HDIO_SET_NOWERR        0x0325  /* change ignore-write-error flag */
114731e31b8aSbellard #define TARGET_HDIO_SET_DMA           0x0326  /* change use-dma flag */
114831e31b8aSbellard #define TARGET_HDIO_SET_PIO_MODE      0x0327  /* reconfig interface to new speed */
11492521d698Sbellard 
1150b8005914Sbalrog /* loop ioctls */
1151b8005914Sbalrog #define TARGET_LOOP_SET_FD            0x4C00
1152b8005914Sbalrog #define TARGET_LOOP_CLR_FD            0x4C01
1153b8005914Sbalrog #define TARGET_LOOP_SET_STATUS        0x4C02
1154b8005914Sbalrog #define TARGET_LOOP_GET_STATUS        0x4C03
1155b8005914Sbalrog #define TARGET_LOOP_SET_STATUS64      0x4C04
1156b8005914Sbalrog #define TARGET_LOOP_GET_STATUS64      0x4C05
1157b8005914Sbalrog #define TARGET_LOOP_CHANGE_FD         0x4C06
11580a761ce3SAndreas Schwab #define TARGET_LOOP_SET_CAPACITY      0x4C07
11590a761ce3SAndreas Schwab #define TARGET_LOOP_SET_DIRECT_IO     0x4C08
11600a761ce3SAndreas Schwab #define TARGET_LOOP_SET_BLOCK_SIZE    0x4C09
11610a761ce3SAndreas Schwab #define TARGET_LOOP_CONFIGURE         0x4C0A
11622521d698Sbellard 
1163884cdc48SPeter Maydell #define TARGET_LOOP_CTL_ADD           0x4C80
1164884cdc48SPeter Maydell #define TARGET_LOOP_CTL_REMOVE        0x4C81
1165884cdc48SPeter Maydell #define TARGET_LOOP_CTL_GET_FREE      0x4C82
1166884cdc48SPeter Maydell 
1167f7680a55SUlrich Hecht /* fb ioctls */
1168f7680a55SUlrich Hecht #define TARGET_FBIOGET_VSCREENINFO    0x4600
1169f7680a55SUlrich Hecht #define TARGET_FBIOPUT_VSCREENINFO    0x4601
1170f7680a55SUlrich Hecht #define TARGET_FBIOGET_FSCREENINFO    0x4602
117112b81b71SCédric VINCENT #define TARGET_FBIOGETCMAP            0x4604
117212b81b71SCédric VINCENT #define TARGET_FBIOPUTCMAP            0x4605
117312b81b71SCédric VINCENT #define TARGET_FBIOPAN_DISPLAY        0x4606
117412b81b71SCédric VINCENT #define TARGET_FBIOGET_CON2FBMAP      0x460F
117512b81b71SCédric VINCENT #define TARGET_FBIOPUT_CON2FBMAP      0x4610
1176f7680a55SUlrich Hecht 
1177f7680a55SUlrich Hecht /* vt ioctls */
1178f7680a55SUlrich Hecht #define TARGET_VT_OPENQRY             0x5600
1179f7680a55SUlrich Hecht #define TARGET_VT_GETSTATE            0x5603
1180f7680a55SUlrich Hecht #define TARGET_VT_ACTIVATE            0x5606
1181f7680a55SUlrich Hecht #define TARGET_VT_WAITACTIVE          0x5607
1182f7680a55SUlrich Hecht #define TARGET_VT_LOCKSWITCH          0x560b
1183f7680a55SUlrich Hecht #define TARGET_VT_UNLOCKSWITCH        0x560c
1184774750c0SCédric VINCENT #define TARGET_VT_GETMODE             0x5601
1185774750c0SCédric VINCENT #define TARGET_VT_SETMODE             0x5602
1186774750c0SCédric VINCENT #define TARGET_VT_RELDISP             0x5605
1187774750c0SCédric VINCENT #define TARGET_VT_DISALLOCATE         0x5608
1188f7680a55SUlrich Hecht 
118956e904ecSAlexander Graf /* device mapper */
119056e904ecSAlexander Graf #define TARGET_DM_VERSION             TARGET_IOWRU(0xfd, 0x00)
119156e904ecSAlexander Graf #define TARGET_DM_REMOVE_ALL          TARGET_IOWRU(0xfd, 0x01)
119256e904ecSAlexander Graf #define TARGET_DM_LIST_DEVICES        TARGET_IOWRU(0xfd, 0x02)
119356e904ecSAlexander Graf #define TARGET_DM_DEV_CREATE          TARGET_IOWRU(0xfd, 0x03)
119456e904ecSAlexander Graf #define TARGET_DM_DEV_REMOVE          TARGET_IOWRU(0xfd, 0x04)
119556e904ecSAlexander Graf #define TARGET_DM_DEV_RENAME          TARGET_IOWRU(0xfd, 0x05)
119656e904ecSAlexander Graf #define TARGET_DM_DEV_SUSPEND         TARGET_IOWRU(0xfd, 0x06)
119756e904ecSAlexander Graf #define TARGET_DM_DEV_STATUS          TARGET_IOWRU(0xfd, 0x07)
119856e904ecSAlexander Graf #define TARGET_DM_DEV_WAIT            TARGET_IOWRU(0xfd, 0x08)
119956e904ecSAlexander Graf #define TARGET_DM_TABLE_LOAD          TARGET_IOWRU(0xfd, 0x09)
120056e904ecSAlexander Graf #define TARGET_DM_TABLE_CLEAR         TARGET_IOWRU(0xfd, 0x0a)
120156e904ecSAlexander Graf #define TARGET_DM_TABLE_DEPS          TARGET_IOWRU(0xfd, 0x0b)
120256e904ecSAlexander Graf #define TARGET_DM_TABLE_STATUS        TARGET_IOWRU(0xfd, 0x0c)
120356e904ecSAlexander Graf #define TARGET_DM_LIST_VERSIONS       TARGET_IOWRU(0xfd, 0x0d)
120456e904ecSAlexander Graf #define TARGET_DM_TARGET_MSG          TARGET_IOWRU(0xfd, 0x0e)
120556e904ecSAlexander Graf #define TARGET_DM_DEV_SET_GEOMETRY    TARGET_IOWRU(0xfd, 0x0f)
120656e904ecSAlexander Graf 
1207e865b97fSChen Gang /* drm ioctls */
1208e865b97fSChen Gang #define TARGET_DRM_IOCTL_VERSION      TARGET_IOWRU('d', 0x00)
1209e865b97fSChen Gang 
1210913b03c2SChen Gang /* drm i915 ioctls */
1211913b03c2SChen Gang #define TARGET_DRM_IOCTL_I915_GETPARAM              TARGET_IOWRU('d', 0x46)
1212913b03c2SChen Gang 
12132521d698Sbellard /* from asm/termbits.h */
12142521d698Sbellard 
12153bfd9da1Sbellard #define TARGET_NCC 8
12163bfd9da1Sbellard struct target_termio {
121777e935f4SRichard Henderson     abi_ushort c_iflag;             /* input mode flags */
121877e935f4SRichard Henderson     abi_ushort c_oflag;             /* output mode flags */
121977e935f4SRichard Henderson     abi_ushort c_cflag;             /* control mode flags */
122077e935f4SRichard Henderson     abi_ushort c_lflag;             /* local mode flags */
12212521d698Sbellard     unsigned char c_line;           /* line discipline */
12223bfd9da1Sbellard     unsigned char c_cc[TARGET_NCC]; /* control characters */
12232521d698Sbellard };
12242521d698Sbellard 
12253bfd9da1Sbellard struct target_winsize {
122677e935f4SRichard Henderson     abi_ushort ws_row;
122777e935f4SRichard Henderson     abi_ushort ws_col;
122877e935f4SRichard Henderson     abi_ushort ws_xpixel;
122977e935f4SRichard Henderson     abi_ushort ws_ypixel;
12303bfd9da1Sbellard };
12312521d698Sbellard 
12323bfd9da1Sbellard #include "termbits.h"
12332521d698Sbellard 
1234492fe4e7SRichard Henderson #include "target_mman.h"
12352521d698Sbellard 
123609701199SAlexander Graf #if (defined(TARGET_I386) && defined(TARGET_ABI32))     \
123709701199SAlexander Graf     || (defined(TARGET_ARM) && defined(TARGET_ABI32))   \
1238daa4374aSPeter Maydell     || defined(TARGET_CRIS)
12395f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
12402521d698Sbellard struct target_stat {
124177e935f4SRichard Henderson     abi_ushort st_dev;
124277e935f4SRichard Henderson     abi_ushort __pad1;
1243992f48a0Sblueswir1     abi_ulong st_ino;
124477e935f4SRichard Henderson     abi_ushort st_mode;
124577e935f4SRichard Henderson     abi_ushort st_nlink;
124677e935f4SRichard Henderson     abi_ushort st_uid;
124777e935f4SRichard Henderson     abi_ushort st_gid;
124877e935f4SRichard Henderson     abi_ushort st_rdev;
124977e935f4SRichard Henderson     abi_ushort __pad2;
1250992f48a0Sblueswir1     abi_ulong  st_size;
1251992f48a0Sblueswir1     abi_ulong  st_blksize;
1252992f48a0Sblueswir1     abi_ulong  st_blocks;
1253992f48a0Sblueswir1     abi_ulong  target_st_atime;
12545f992db6SChen-Yu Tsai     abi_ulong  target_st_atime_nsec;
1255992f48a0Sblueswir1     abi_ulong  target_st_mtime;
12565f992db6SChen-Yu Tsai     abi_ulong  target_st_mtime_nsec;
1257992f48a0Sblueswir1     abi_ulong  target_st_ctime;
12585f992db6SChen-Yu Tsai     abi_ulong  target_st_ctime_nsec;
1259992f48a0Sblueswir1     abi_ulong  __unused4;
1260992f48a0Sblueswir1     abi_ulong  __unused5;
12612521d698Sbellard };
12622521d698Sbellard 
12632521d698Sbellard /* This matches struct stat64 in glibc2.1, hence the absolutely
12642521d698Sbellard  * insane amounts of padding around dev_t's.
12652521d698Sbellard  */
126620d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
12672521d698Sbellard struct target_stat64 {
126877e935f4SRichard Henderson     abi_ushort      st_dev;
12692521d698Sbellard     unsigned char   __pad0[10];
12702521d698Sbellard 
12712521d698Sbellard #define TARGET_STAT64_HAS_BROKEN_ST_INO 1
1272992f48a0Sblueswir1     abi_ulong       __st_ino;
12732521d698Sbellard 
1274c7828bd1SRichard Henderson     abi_uint        st_mode;
1275c7828bd1SRichard Henderson     abi_uint        st_nlink;
12762521d698Sbellard 
1277992f48a0Sblueswir1     abi_ulong       st_uid;
1278992f48a0Sblueswir1     abi_ulong       st_gid;
12792521d698Sbellard 
128077e935f4SRichard Henderson     abi_ushort      st_rdev;
12812521d698Sbellard     unsigned char   __pad3[10];
12822521d698Sbellard 
128355a1bcffSRichard Henderson     abi_llong       st_size;
1284992f48a0Sblueswir1     abi_ulong       st_blksize;
12852521d698Sbellard 
1286992f48a0Sblueswir1     abi_ulong       st_blocks;      /* Number 512-byte blocks allocated. */
1287992f48a0Sblueswir1     abi_ulong       __pad4;         /* future possible st_blocks high bits */
12882521d698Sbellard 
1289992f48a0Sblueswir1     abi_ulong       target_st_atime;
12905f992db6SChen-Yu Tsai     abi_ulong       target_st_atime_nsec;
12912521d698Sbellard 
1292992f48a0Sblueswir1     abi_ulong       target_st_mtime;
12935f992db6SChen-Yu Tsai     abi_ulong       target_st_mtime_nsec;
12942521d698Sbellard 
1295992f48a0Sblueswir1     abi_ulong       target_st_ctime;
12965f992db6SChen-Yu Tsai     abi_ulong       target_st_ctime_nsec;
12972521d698Sbellard 
12986c977729SRichard Henderson     abi_ullong      st_ino;
1299541dc0d4SStefan Weil } QEMU_PACKED;
13002521d698Sbellard 
1301ce4defa0Spbrook #ifdef TARGET_ARM
130220d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1303ce4defa0Spbrook struct target_eabi_stat64 {
13046c977729SRichard Henderson     abi_ullong   st_dev;
1305c7828bd1SRichard Henderson     abi_uint     __pad1;
1306992f48a0Sblueswir1     abi_ulong    __st_ino;
1307c7828bd1SRichard Henderson     abi_uint     st_mode;
1308c7828bd1SRichard Henderson     abi_uint     st_nlink;
1309ce4defa0Spbrook 
1310992f48a0Sblueswir1     abi_ulong    st_uid;
1311992f48a0Sblueswir1     abi_ulong    st_gid;
1312ce4defa0Spbrook 
13136c977729SRichard Henderson     abi_ullong   st_rdev;
1314c7828bd1SRichard Henderson     abi_uint     __pad2[2];
1315ce4defa0Spbrook 
131655a1bcffSRichard Henderson     abi_llong       st_size;
1317992f48a0Sblueswir1     abi_ulong    st_blksize;
1318c7828bd1SRichard Henderson     abi_uint     __pad3;
13196c977729SRichard Henderson     abi_ullong   st_blocks;
1320ce4defa0Spbrook 
1321992f48a0Sblueswir1     abi_ulong    target_st_atime;
1322992f48a0Sblueswir1     abi_ulong    target_st_atime_nsec;
1323ce4defa0Spbrook 
1324992f48a0Sblueswir1     abi_ulong    target_st_mtime;
1325992f48a0Sblueswir1     abi_ulong    target_st_mtime_nsec;
1326ce4defa0Spbrook 
1327992f48a0Sblueswir1     abi_ulong    target_st_ctime;
1328992f48a0Sblueswir1     abi_ulong    target_st_ctime_nsec;
1329ce4defa0Spbrook 
13306c977729SRichard Henderson     abi_ullong   st_ino;
1331541dc0d4SStefan Weil } QEMU_PACKED;
1332ce4defa0Spbrook #endif
1333ce4defa0Spbrook 
1334992f48a0Sblueswir1 #elif defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
13351b8dd648Sblueswir1 struct target_stat {
1336c7828bd1SRichard Henderson     abi_uint        st_dev;
1337992f48a0Sblueswir1     abi_ulong       st_ino;
1338c7828bd1SRichard Henderson     abi_uint        st_mode;
1339c7828bd1SRichard Henderson     abi_uint        st_nlink;
1340c7828bd1SRichard Henderson     abi_uint        st_uid;
1341c7828bd1SRichard Henderson     abi_uint        st_gid;
1342c7828bd1SRichard Henderson     abi_uint        st_rdev;
1343992f48a0Sblueswir1     abi_long        st_size;
1344992f48a0Sblueswir1     abi_long        target_st_atime;
1345992f48a0Sblueswir1     abi_long        target_st_mtime;
1346992f48a0Sblueswir1     abi_long        target_st_ctime;
1347992f48a0Sblueswir1     abi_long        st_blksize;
1348992f48a0Sblueswir1     abi_long        st_blocks;
1349992f48a0Sblueswir1     abi_ulong       __unused4[2];
13501b8dd648Sblueswir1 };
13511b8dd648Sblueswir1 
135220d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
13531b8dd648Sblueswir1 struct target_stat64 {
13541b8dd648Sblueswir1     unsigned char   __pad0[6];
135577e935f4SRichard Henderson     abi_ushort      st_dev;
13561b8dd648Sblueswir1 
13577af406a6SRichard Henderson     abi_ullong      st_ino;
13587af406a6SRichard Henderson     abi_ullong      st_nlink;
13591b8dd648Sblueswir1 
1360c7828bd1SRichard Henderson     abi_uint        st_mode;
13611b8dd648Sblueswir1 
1362c7828bd1SRichard Henderson     abi_uint        st_uid;
1363c7828bd1SRichard Henderson     abi_uint        st_gid;
13641b8dd648Sblueswir1 
13651b8dd648Sblueswir1     unsigned char   __pad2[6];
136677e935f4SRichard Henderson     abi_ushort      st_rdev;
13671b8dd648Sblueswir1 
136893c5c6cdSRichard Henderson     abi_llong       st_size;
136993c5c6cdSRichard Henderson     abi_llong       st_blksize;
13701b8dd648Sblueswir1 
13711b8dd648Sblueswir1     unsigned char   __pad4[4];
1372c7828bd1SRichard Henderson     abi_uint        st_blocks;
13731b8dd648Sblueswir1 
1374992f48a0Sblueswir1     abi_ulong       target_st_atime;
13755f992db6SChen-Yu Tsai     abi_ulong       target_st_atime_nsec;
13761b8dd648Sblueswir1 
1377992f48a0Sblueswir1     abi_ulong       target_st_mtime;
13785f992db6SChen-Yu Tsai     abi_ulong       target_st_mtime_nsec;
13791b8dd648Sblueswir1 
1380992f48a0Sblueswir1     abi_ulong       target_st_ctime;
13815f992db6SChen-Yu Tsai     abi_ulong       target_st_ctime_nsec;
13821b8dd648Sblueswir1 
1383992f48a0Sblueswir1     abi_ulong       __unused4[3];
13841b8dd648Sblueswir1 };
13851b8dd648Sblueswir1 
13863bfd9da1Sbellard #elif defined(TARGET_SPARC)
13873bfd9da1Sbellard 
13885f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
13893bfd9da1Sbellard struct target_stat {
139077e935f4SRichard Henderson     abi_ushort      st_dev;
1391992f48a0Sblueswir1     abi_ulong       st_ino;
139277e935f4SRichard Henderson     abi_ushort      st_mode;
139320d49567SRichard Henderson     abi_short       st_nlink;
139477e935f4SRichard Henderson     abi_ushort      st_uid;
139577e935f4SRichard Henderson     abi_ushort      st_gid;
139677e935f4SRichard Henderson     abi_ushort      st_rdev;
1397992f48a0Sblueswir1     abi_long        st_size;
1398992f48a0Sblueswir1     abi_long        target_st_atime;
13995f992db6SChen-Yu Tsai     abi_ulong       target_st_atime_nsec;
1400992f48a0Sblueswir1     abi_long        target_st_mtime;
14015f992db6SChen-Yu Tsai     abi_ulong       target_st_mtime_nsec;
1402992f48a0Sblueswir1     abi_long        target_st_ctime;
14035f992db6SChen-Yu Tsai     abi_ulong       target_st_ctime_nsec;
1404992f48a0Sblueswir1     abi_long        st_blksize;
1405992f48a0Sblueswir1     abi_long        st_blocks;
14065f992db6SChen-Yu Tsai     abi_ulong       __unused1[2];
14073bfd9da1Sbellard };
14083bfd9da1Sbellard 
140920d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
14103bfd9da1Sbellard struct target_stat64 {
14113bfd9da1Sbellard     unsigned char   __pad0[6];
141277e935f4SRichard Henderson     abi_ushort      st_dev;
14133bfd9da1Sbellard 
14147af406a6SRichard Henderson     abi_ullong      st_ino;
14153bfd9da1Sbellard 
1416c7828bd1SRichard Henderson     abi_uint        st_mode;
1417c7828bd1SRichard Henderson     abi_uint        st_nlink;
14183bfd9da1Sbellard 
1419c7828bd1SRichard Henderson     abi_uint        st_uid;
1420c7828bd1SRichard Henderson     abi_uint        st_gid;
14213bfd9da1Sbellard 
14223bfd9da1Sbellard     unsigned char   __pad2[6];
142377e935f4SRichard Henderson     abi_ushort      st_rdev;
14243bfd9da1Sbellard 
14253bfd9da1Sbellard     unsigned char   __pad3[8];
14263bfd9da1Sbellard 
142793c5c6cdSRichard Henderson     abi_llong       st_size;
1428c7828bd1SRichard Henderson     abi_uint        st_blksize;
14293bfd9da1Sbellard 
14303bfd9da1Sbellard     unsigned char   __pad4[8];
1431c7828bd1SRichard Henderson     abi_uint        st_blocks;
14323bfd9da1Sbellard 
1433c7828bd1SRichard Henderson     abi_uint        target_st_atime;
1434c7828bd1SRichard Henderson     abi_uint        target_st_atime_nsec;
14353bfd9da1Sbellard 
1436c7828bd1SRichard Henderson     abi_uint        target_st_mtime;
1437c7828bd1SRichard Henderson     abi_uint        target_st_mtime_nsec;
14383bfd9da1Sbellard 
1439c7828bd1SRichard Henderson     abi_uint        target_st_ctime;
1440c7828bd1SRichard Henderson     abi_uint        target_st_ctime_nsec;
14413bfd9da1Sbellard 
1442c7828bd1SRichard Henderson     abi_uint        __unused1;
1443c7828bd1SRichard Henderson     abi_uint        __unused2;
14443bfd9da1Sbellard };
14453bfd9da1Sbellard 
144667867308Sbellard #elif defined(TARGET_PPC)
144767867308Sbellard 
14485f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
144967867308Sbellard struct target_stat {
1450e32448e0Sj_mayer     abi_ulong st_dev;
1451992f48a0Sblueswir1     abi_ulong st_ino;
145274154d7eSThomas Huth #if defined(TARGET_PPC64)
1453e32448e0Sj_mayer     abi_ulong st_nlink;
1454c7828bd1SRichard Henderson     abi_uint  st_mode;
1455325e651fSj_mayer #else
1456c7828bd1SRichard Henderson     abi_uint  st_mode;
145777e935f4SRichard Henderson     abi_ushort st_nlink;
1458325e651fSj_mayer #endif
1459c7828bd1SRichard Henderson     abi_uint   st_uid;
1460c7828bd1SRichard Henderson     abi_uint   st_gid;
1461e32448e0Sj_mayer     abi_ulong  st_rdev;
1462992f48a0Sblueswir1     abi_ulong  st_size;
1463992f48a0Sblueswir1     abi_ulong  st_blksize;
1464992f48a0Sblueswir1     abi_ulong  st_blocks;
1465992f48a0Sblueswir1     abi_ulong  target_st_atime;
1466e32448e0Sj_mayer     abi_ulong  target_st_atime_nsec;
1467992f48a0Sblueswir1     abi_ulong  target_st_mtime;
1468e32448e0Sj_mayer     abi_ulong  target_st_mtime_nsec;
1469992f48a0Sblueswir1     abi_ulong  target_st_ctime;
1470e32448e0Sj_mayer     abi_ulong  target_st_ctime_nsec;
1471992f48a0Sblueswir1     abi_ulong  __unused4;
1472992f48a0Sblueswir1     abi_ulong  __unused5;
147374154d7eSThomas Huth #if defined(TARGET_PPC64)
1474325e651fSj_mayer     abi_ulong  __unused6;
1475325e651fSj_mayer #endif
147667867308Sbellard };
147767867308Sbellard 
147874154d7eSThomas Huth #if !defined(TARGET_PPC64)
147920d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1480541dc0d4SStefan Weil struct QEMU_PACKED target_stat64 {
14816c977729SRichard Henderson     abi_ullong st_dev;
14826c977729SRichard Henderson     abi_ullong st_ino;
1483c7828bd1SRichard Henderson     abi_uint st_mode;
1484c7828bd1SRichard Henderson     abi_uint st_nlink;
1485c7828bd1SRichard Henderson     abi_uint st_uid;
1486c7828bd1SRichard Henderson     abi_uint st_gid;
14876c977729SRichard Henderson     abi_ullong st_rdev;
14886c977729SRichard Henderson     abi_ullong __pad0;
148955a1bcffSRichard Henderson     abi_llong      st_size;
1490b3c719b2SRichard Henderson     abi_int        st_blksize;
1491c7828bd1SRichard Henderson     abi_uint       __pad1;
149255a1bcffSRichard Henderson     abi_llong      st_blocks;       /* Number 512-byte blocks allocated. */
1493b3c719b2SRichard Henderson     abi_int        target_st_atime;
1494c7828bd1SRichard Henderson     abi_uint       target_st_atime_nsec;
1495b3c719b2SRichard Henderson     abi_int        target_st_mtime;
1496c7828bd1SRichard Henderson     abi_uint       target_st_mtime_nsec;
1497b3c719b2SRichard Henderson     abi_int        target_st_ctime;
1498c7828bd1SRichard Henderson     abi_uint       target_st_ctime_nsec;
1499c7828bd1SRichard Henderson     abi_uint       __unused4;
1500c7828bd1SRichard Henderson     abi_uint       __unused5;
150167867308Sbellard };
150220d155bcSStefan Weil #endif
150367867308Sbellard 
1504b779e29eSEdgar E. Iglesias #elif defined(TARGET_MICROBLAZE)
1505b779e29eSEdgar E. Iglesias 
15065f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1507b779e29eSEdgar E. Iglesias struct target_stat {
1508b779e29eSEdgar E. Iglesias     abi_ulong st_dev;
1509b779e29eSEdgar E. Iglesias     abi_ulong st_ino;
1510c7828bd1SRichard Henderson     abi_uint st_mode;
151177e935f4SRichard Henderson     abi_ushort st_nlink;
1512c7828bd1SRichard Henderson     abi_uint st_uid;
1513c7828bd1SRichard Henderson     abi_uint st_gid;
1514b779e29eSEdgar E. Iglesias     abi_ulong  st_rdev;
1515b779e29eSEdgar E. Iglesias     abi_ulong  st_size;
1516b779e29eSEdgar E. Iglesias     abi_ulong  st_blksize;
1517b779e29eSEdgar E. Iglesias     abi_ulong  st_blocks;
1518b779e29eSEdgar E. Iglesias     abi_ulong  target_st_atime;
1519b779e29eSEdgar E. Iglesias     abi_ulong  target_st_atime_nsec;
1520b779e29eSEdgar E. Iglesias     abi_ulong  target_st_mtime;
1521b779e29eSEdgar E. Iglesias     abi_ulong  target_st_mtime_nsec;
1522b779e29eSEdgar E. Iglesias     abi_ulong  target_st_ctime;
1523b779e29eSEdgar E. Iglesias     abi_ulong  target_st_ctime_nsec;
1524b779e29eSEdgar E. Iglesias     abi_ulong  __unused4;
1525b779e29eSEdgar E. Iglesias     abi_ulong  __unused5;
1526b779e29eSEdgar E. Iglesias };
1527b779e29eSEdgar E. Iglesias 
1528b779e29eSEdgar E. Iglesias /* FIXME: Microblaze no-mmu user-space has a difference stat64 layout...  */
152920d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1530541dc0d4SStefan Weil struct QEMU_PACKED target_stat64 {
15317af406a6SRichard Henderson     abi_ullong st_dev;
1532a523eb06SEdgar E. Iglesias #define TARGET_STAT64_HAS_BROKEN_ST_INO 1
1533f6ee1627SRichard Henderson     abi_uint pad0;
1534f6ee1627SRichard Henderson     abi_uint __st_ino;
1535a523eb06SEdgar E. Iglesias 
1536f6ee1627SRichard Henderson     abi_uint st_mode;
1537f6ee1627SRichard Henderson     abi_uint st_nlink;
1538f6ee1627SRichard Henderson     abi_uint st_uid;
1539f6ee1627SRichard Henderson     abi_uint st_gid;
15407af406a6SRichard Henderson     abi_ullong st_rdev;
15417af406a6SRichard Henderson     abi_ullong __pad1;
1542b779e29eSEdgar E. Iglesias 
154393c5c6cdSRichard Henderson     abi_llong st_size;
15445dc0c971SRichard Henderson     abi_int  st_blksize;
1545f6ee1627SRichard Henderson     abi_uint __pad2;
154693c5c6cdSRichard Henderson     abi_llong st_blocks;
1547b779e29eSEdgar E. Iglesias 
1548b3c719b2SRichard Henderson     abi_int    target_st_atime;
1549c7828bd1SRichard Henderson     abi_uint   target_st_atime_nsec;
1550b3c719b2SRichard Henderson     abi_int    target_st_mtime;
1551c7828bd1SRichard Henderson     abi_uint   target_st_mtime_nsec;
1552b3c719b2SRichard Henderson     abi_int    target_st_ctime;
1553c7828bd1SRichard Henderson     abi_uint   target_st_ctime_nsec;
15547af406a6SRichard Henderson     abi_ullong st_ino;
1555b779e29eSEdgar E. Iglesias };
1556b779e29eSEdgar E. Iglesias 
1557e6e5906bSpbrook #elif defined(TARGET_M68K)
1558e6e5906bSpbrook 
1559e6e5906bSpbrook struct target_stat {
156077e935f4SRichard Henderson     abi_ushort st_dev;
156177e935f4SRichard Henderson     abi_ushort __pad1;
1562992f48a0Sblueswir1     abi_ulong  st_ino;
156377e935f4SRichard Henderson     abi_ushort st_mode;
156477e935f4SRichard Henderson     abi_ushort st_nlink;
156577e935f4SRichard Henderson     abi_ushort st_uid;
156677e935f4SRichard Henderson     abi_ushort st_gid;
156777e935f4SRichard Henderson     abi_ushort st_rdev;
156877e935f4SRichard Henderson     abi_ushort __pad2;
1569992f48a0Sblueswir1     abi_ulong  st_size;
1570992f48a0Sblueswir1     abi_ulong  st_blksize;
1571992f48a0Sblueswir1     abi_ulong  st_blocks;
1572992f48a0Sblueswir1     abi_ulong  target_st_atime;
1573992f48a0Sblueswir1     abi_ulong  __unused1;
1574992f48a0Sblueswir1     abi_ulong  target_st_mtime;
1575992f48a0Sblueswir1     abi_ulong  __unused2;
1576992f48a0Sblueswir1     abi_ulong  target_st_ctime;
1577992f48a0Sblueswir1     abi_ulong  __unused3;
1578992f48a0Sblueswir1     abi_ulong  __unused4;
1579992f48a0Sblueswir1     abi_ulong  __unused5;
1580e6e5906bSpbrook };
1581e6e5906bSpbrook 
1582e6e5906bSpbrook /* This matches struct stat64 in glibc2.1, hence the absolutely
1583e6e5906bSpbrook  * insane amounts of padding around dev_t's.
1584e6e5906bSpbrook  */
158520d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1586e6e5906bSpbrook struct target_stat64 {
15876c977729SRichard Henderson     abi_ullong      st_dev;
1588e6e5906bSpbrook     unsigned char   __pad1[2];
1589e6e5906bSpbrook 
1590e6e5906bSpbrook #define TARGET_STAT64_HAS_BROKEN_ST_INO 1
1591992f48a0Sblueswir1     abi_ulong       __st_ino;
1592e6e5906bSpbrook 
1593c7828bd1SRichard Henderson     abi_uint    st_mode;
1594c7828bd1SRichard Henderson     abi_uint    st_nlink;
1595e6e5906bSpbrook 
1596992f48a0Sblueswir1     abi_ulong       st_uid;
1597992f48a0Sblueswir1     abi_ulong       st_gid;
1598e6e5906bSpbrook 
15996c977729SRichard Henderson     abi_ullong      st_rdev;
1600e6e5906bSpbrook     unsigned char   __pad3[2];
1601e6e5906bSpbrook 
160255a1bcffSRichard Henderson     abi_llong       st_size;
1603992f48a0Sblueswir1     abi_ulong       st_blksize;
1604e6e5906bSpbrook 
1605992f48a0Sblueswir1     abi_ulong       __pad4;         /* future possible st_blocks high bits */
1606992f48a0Sblueswir1     abi_ulong       st_blocks;      /* Number 512-byte blocks allocated. */
1607e6e5906bSpbrook 
1608992f48a0Sblueswir1     abi_ulong       target_st_atime;
1609992f48a0Sblueswir1     abi_ulong       target_st_atime_nsec;
1610e6e5906bSpbrook 
1611992f48a0Sblueswir1     abi_ulong       target_st_mtime;
1612992f48a0Sblueswir1     abi_ulong       target_st_mtime_nsec;
1613e6e5906bSpbrook 
1614992f48a0Sblueswir1     abi_ulong       target_st_ctime;
1615992f48a0Sblueswir1     abi_ulong       target_st_ctime_nsec;
1616e6e5906bSpbrook 
16176c977729SRichard Henderson     abi_ullong      st_ino;
1618541dc0d4SStefan Weil } QEMU_PACKED;
1619e6e5906bSpbrook 
1620d26bc211Sths #elif defined(TARGET_ABI_MIPSN64)
1621540635baSths 
16225f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1623540635baSths /* The memory layout is the same as of struct stat64 of the 32-bit kernel.  */
1624540635baSths struct target_stat {
1625c7828bd1SRichard Henderson     abi_uint                st_dev;
1626c7828bd1SRichard Henderson     abi_uint                st_pad0[3]; /* Reserved for st_dev expansion */
1627540635baSths 
1628992f48a0Sblueswir1     abi_ulong               st_ino;
1629540635baSths 
1630c7828bd1SRichard Henderson     abi_uint                st_mode;
1631c7828bd1SRichard Henderson     abi_uint                st_nlink;
1632540635baSths 
1633b3c719b2SRichard Henderson     abi_int                 st_uid;
1634b3c719b2SRichard Henderson     abi_int                 st_gid;
1635540635baSths 
1636c7828bd1SRichard Henderson     abi_uint                st_rdev;
1637c7828bd1SRichard Henderson     abi_uint                st_pad1[3]; /* Reserved for st_rdev expansion */
1638540635baSths 
1639992f48a0Sblueswir1     abi_ulong               st_size;
1640540635baSths 
1641540635baSths     /*
1642540635baSths      * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
1643540635baSths      * but we don't have it under Linux.
1644540635baSths      */
1645c7828bd1SRichard Henderson     abi_uint                target_st_atime;
1646c7828bd1SRichard Henderson     abi_uint                target_st_atime_nsec;
1647540635baSths 
1648c7828bd1SRichard Henderson     abi_uint                target_st_mtime;
1649c7828bd1SRichard Henderson     abi_uint                target_st_mtime_nsec;
1650540635baSths 
1651c7828bd1SRichard Henderson     abi_uint                target_st_ctime;
1652c7828bd1SRichard Henderson     abi_uint                target_st_ctime_nsec;
1653540635baSths 
1654c7828bd1SRichard Henderson     abi_uint                st_blksize;
1655c7828bd1SRichard Henderson     abi_uint                st_pad2;
1656540635baSths 
1657992f48a0Sblueswir1     abi_ulong               st_blocks;
1658540635baSths };
1659540635baSths 
1660d26bc211Sths #elif defined(TARGET_ABI_MIPSN32)
1661540635baSths 
16625f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1663540635baSths struct target_stat {
16641ab2aea2SLeon Alrae     abi_ulong    st_dev;
16651ab2aea2SLeon Alrae     abi_ulong    st_pad0[3]; /* Reserved for st_dev expansion */
16667af406a6SRichard Henderson     abi_ullong   st_ino;
1667c7828bd1SRichard Henderson     abi_uint     st_mode;
1668c7828bd1SRichard Henderson     abi_uint     st_nlink;
1669b3c719b2SRichard Henderson     abi_int      st_uid;
1670b3c719b2SRichard Henderson     abi_int      st_gid;
16711ab2aea2SLeon Alrae     abi_ulong    st_rdev;
16721ab2aea2SLeon Alrae     abi_ulong    st_pad1[3]; /* Reserved for st_rdev expansion */
167393c5c6cdSRichard Henderson     abi_llong    st_size;
16741ab2aea2SLeon Alrae     abi_long     target_st_atime;
16751ab2aea2SLeon Alrae     abi_ulong    target_st_atime_nsec; /* Reserved for st_atime expansion */
16761ab2aea2SLeon Alrae     abi_long     target_st_mtime;
16771ab2aea2SLeon Alrae     abi_ulong    target_st_mtime_nsec; /* Reserved for st_mtime expansion */
16781ab2aea2SLeon Alrae     abi_long     target_st_ctime;
16791ab2aea2SLeon Alrae     abi_ulong    target_st_ctime_nsec; /* Reserved for st_ctime expansion */
16801ab2aea2SLeon Alrae     abi_ulong    st_blksize;
16811ab2aea2SLeon Alrae     abi_ulong    st_pad2;
168293c5c6cdSRichard Henderson     abi_llong    st_blocks;
1683540635baSths };
1684540635baSths 
1685d26bc211Sths #elif defined(TARGET_ABI_MIPSO32)
1686048f6b4dSbellard 
16875f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1688048f6b4dSbellard struct target_stat {
16890f41be8dSRichard Henderson     abi_uint        st_dev;
1690992f48a0Sblueswir1     abi_long        st_pad1[3];             /* Reserved for network id */
1691992f48a0Sblueswir1     abi_ulong       st_ino;
1692c7828bd1SRichard Henderson     abi_uint        st_mode;
1693c7828bd1SRichard Henderson     abi_uint        st_nlink;
1694b3c719b2SRichard Henderson     abi_int         st_uid;
1695b3c719b2SRichard Henderson     abi_int         st_gid;
16960f41be8dSRichard Henderson     abi_uint        st_rdev;
1697992f48a0Sblueswir1     abi_long        st_pad2[2];
1698992f48a0Sblueswir1     abi_long        st_size;
1699992f48a0Sblueswir1     abi_long        st_pad3;
1700048f6b4dSbellard     /*
1701048f6b4dSbellard      * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
1702048f6b4dSbellard      * but we don't have it under Linux.
1703048f6b4dSbellard      */
1704992f48a0Sblueswir1     abi_long                target_st_atime;
1705992f48a0Sblueswir1     abi_long                target_st_atime_nsec;
1706992f48a0Sblueswir1     abi_long                target_st_mtime;
1707992f48a0Sblueswir1     abi_long                target_st_mtime_nsec;
1708992f48a0Sblueswir1     abi_long                target_st_ctime;
1709992f48a0Sblueswir1     abi_long                target_st_ctime_nsec;
1710992f48a0Sblueswir1     abi_long                st_blksize;
1711992f48a0Sblueswir1     abi_long                st_blocks;
1712992f48a0Sblueswir1     abi_long                st_pad4[14];
1713048f6b4dSbellard };
1714048f6b4dSbellard 
1715048f6b4dSbellard /*
1716048f6b4dSbellard  * This matches struct stat64 in glibc2.1, hence the absolutely insane
1717048f6b4dSbellard  * amounts of padding around dev_t's.  The memory layout is the same as of
1718048f6b4dSbellard  * struct stat of the 64-bit kernel.
1719048f6b4dSbellard  */
1720048f6b4dSbellard 
172120d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1722048f6b4dSbellard struct target_stat64 {
1723992f48a0Sblueswir1     abi_ulong       st_dev;
1724992f48a0Sblueswir1     abi_ulong       st_pad0[3];     /* Reserved for st_dev expansion  */
1725048f6b4dSbellard 
17267af406a6SRichard Henderson     abi_ullong      st_ino;
1727048f6b4dSbellard 
1728c7828bd1SRichard Henderson     abi_uint        st_mode;
1729c7828bd1SRichard Henderson     abi_uint        st_nlink;
1730048f6b4dSbellard 
1731b3c719b2SRichard Henderson     abi_int         st_uid;
1732b3c719b2SRichard Henderson     abi_int         st_gid;
1733048f6b4dSbellard 
1734992f48a0Sblueswir1     abi_ulong       st_rdev;
1735992f48a0Sblueswir1     abi_ulong       st_pad1[3];     /* Reserved for st_rdev expansion  */
1736048f6b4dSbellard 
173793c5c6cdSRichard Henderson     abi_llong       st_size;
1738048f6b4dSbellard 
1739048f6b4dSbellard     /*
1740048f6b4dSbellard      * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
1741048f6b4dSbellard      * but we don't have it under Linux.
1742048f6b4dSbellard      */
1743992f48a0Sblueswir1     abi_long        target_st_atime;
1744992f48a0Sblueswir1     abi_ulong       target_st_atime_nsec;   /* Reserved for st_atime expansion  */
1745048f6b4dSbellard 
1746992f48a0Sblueswir1     abi_long        target_st_mtime;
1747992f48a0Sblueswir1     abi_ulong       target_st_mtime_nsec;   /* Reserved for st_mtime expansion  */
1748048f6b4dSbellard 
1749992f48a0Sblueswir1     abi_long        target_st_ctime;
1750992f48a0Sblueswir1     abi_ulong       target_st_ctime_nsec;   /* Reserved for st_ctime expansion  */
1751048f6b4dSbellard 
1752992f48a0Sblueswir1     abi_ulong       st_blksize;
1753992f48a0Sblueswir1     abi_ulong       st_pad2;
1754048f6b4dSbellard 
175593c5c6cdSRichard Henderson     abi_llong       st_blocks;
1756048f6b4dSbellard };
17577a3148a9Sj_mayer 
17587a3148a9Sj_mayer #elif defined(TARGET_ALPHA)
17597a3148a9Sj_mayer 
17607a3148a9Sj_mayer struct target_stat {
1761c7828bd1SRichard Henderson     abi_uint     st_dev;
1762c7828bd1SRichard Henderson     abi_uint     st_ino;
1763c7828bd1SRichard Henderson     abi_uint     st_mode;
1764c7828bd1SRichard Henderson     abi_uint     st_nlink;
1765c7828bd1SRichard Henderson     abi_uint     st_uid;
1766c7828bd1SRichard Henderson     abi_uint     st_gid;
1767c7828bd1SRichard Henderson     abi_uint     st_rdev;
1768992f48a0Sblueswir1     abi_long     st_size;
1769992f48a0Sblueswir1     abi_ulong    target_st_atime;
1770992f48a0Sblueswir1     abi_ulong    target_st_mtime;
1771992f48a0Sblueswir1     abi_ulong    target_st_ctime;
1772c7828bd1SRichard Henderson     abi_uint     st_blksize;
1773c7828bd1SRichard Henderson     abi_uint     st_blocks;
1774c7828bd1SRichard Henderson     abi_uint     st_flags;
1775c7828bd1SRichard Henderson     abi_uint     st_gen;
17767a3148a9Sj_mayer };
17777a3148a9Sj_mayer 
177820d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
17797a3148a9Sj_mayer struct target_stat64 {
1780992f48a0Sblueswir1     abi_ulong    st_dev;
1781992f48a0Sblueswir1     abi_ulong    st_ino;
1782992f48a0Sblueswir1     abi_ulong    st_rdev;
1783992f48a0Sblueswir1     abi_long     st_size;
1784992f48a0Sblueswir1     abi_ulong    st_blocks;
17857a3148a9Sj_mayer 
1786c7828bd1SRichard Henderson     abi_uint     st_mode;
1787c7828bd1SRichard Henderson     abi_uint     st_uid;
1788c7828bd1SRichard Henderson     abi_uint     st_gid;
1789c7828bd1SRichard Henderson     abi_uint     st_blksize;
1790c7828bd1SRichard Henderson     abi_uint     st_nlink;
1791c7828bd1SRichard Henderson     abi_uint     __pad0;
17927a3148a9Sj_mayer 
1793992f48a0Sblueswir1     abi_ulong    target_st_atime;
1794992f48a0Sblueswir1     abi_ulong    target_st_atime_nsec;
1795992f48a0Sblueswir1     abi_ulong    target_st_mtime;
1796992f48a0Sblueswir1     abi_ulong    target_st_mtime_nsec;
1797992f48a0Sblueswir1     abi_ulong    target_st_ctime;
1798992f48a0Sblueswir1     abi_ulong    target_st_ctime_nsec;
1799992f48a0Sblueswir1     abi_long     __unused[3];
18007a3148a9Sj_mayer };
18017a3148a9Sj_mayer 
18026db45e65Sths #elif defined(TARGET_SH4)
18036db45e65Sths 
18045f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
18056db45e65Sths struct target_stat {
1806992f48a0Sblueswir1     abi_ulong  st_dev;
1807992f48a0Sblueswir1     abi_ulong  st_ino;
180877e935f4SRichard Henderson     abi_ushort st_mode;
180977e935f4SRichard Henderson     abi_ushort st_nlink;
181077e935f4SRichard Henderson     abi_ushort st_uid;
181177e935f4SRichard Henderson     abi_ushort st_gid;
1812992f48a0Sblueswir1     abi_ulong  st_rdev;
1813992f48a0Sblueswir1     abi_ulong  st_size;
1814992f48a0Sblueswir1     abi_ulong  st_blksize;
1815992f48a0Sblueswir1     abi_ulong  st_blocks;
1816992f48a0Sblueswir1     abi_ulong  target_st_atime;
1817992f48a0Sblueswir1     abi_ulong  target_st_atime_nsec;
1818992f48a0Sblueswir1     abi_ulong  target_st_mtime;
1819992f48a0Sblueswir1     abi_ulong  target_st_mtime_nsec;
1820992f48a0Sblueswir1     abi_ulong  target_st_ctime;
1821992f48a0Sblueswir1     abi_ulong  target_st_ctime_nsec;
1822992f48a0Sblueswir1     abi_ulong  __unused4;
1823992f48a0Sblueswir1     abi_ulong  __unused5;
18246db45e65Sths };
18256db45e65Sths 
18266db45e65Sths /* This matches struct stat64 in glibc2.1, hence the absolutely
18276db45e65Sths  * insane amounts of padding around dev_t's.
18286db45e65Sths  */
182920d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1830541dc0d4SStefan Weil struct QEMU_PACKED target_stat64 {
18316c977729SRichard Henderson     abi_ullong      st_dev;
18326db45e65Sths     unsigned char   __pad0[4];
18336db45e65Sths 
18346db45e65Sths #define TARGET_STAT64_HAS_BROKEN_ST_INO 1
1835992f48a0Sblueswir1     abi_ulong       __st_ino;
18366db45e65Sths 
1837c7828bd1SRichard Henderson     abi_uint        st_mode;
1838c7828bd1SRichard Henderson     abi_uint        st_nlink;
18396db45e65Sths 
1840992f48a0Sblueswir1     abi_ulong       st_uid;
1841992f48a0Sblueswir1     abi_ulong       st_gid;
18426db45e65Sths 
18436c977729SRichard Henderson     abi_ullong      st_rdev;
18446db45e65Sths     unsigned char   __pad3[4];
18456db45e65Sths 
184655a1bcffSRichard Henderson     abi_llong       st_size;
1847992f48a0Sblueswir1     abi_ulong       st_blksize;
18486db45e65Sths 
18496c977729SRichard Henderson     abi_ullong      st_blocks;      /* Number 512-byte blocks allocated. */
18506db45e65Sths 
1851992f48a0Sblueswir1     abi_ulong       target_st_atime;
1852992f48a0Sblueswir1     abi_ulong       target_st_atime_nsec;
18536db45e65Sths 
1854992f48a0Sblueswir1     abi_ulong       target_st_mtime;
1855992f48a0Sblueswir1     abi_ulong       target_st_mtime_nsec;
18566db45e65Sths 
1857992f48a0Sblueswir1     abi_ulong       target_st_ctime;
1858992f48a0Sblueswir1     abi_ulong       target_st_ctime_nsec;
18596db45e65Sths 
18606c977729SRichard Henderson     abi_ullong      st_ino;
18616db45e65Sths };
18626db45e65Sths 
1863d2fd1af7Sbellard #elif defined(TARGET_I386) && !defined(TARGET_ABI32)
18645f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1865d2fd1af7Sbellard struct target_stat {
1866d2fd1af7Sbellard     abi_ulong       st_dev;
1867d2fd1af7Sbellard     abi_ulong       st_ino;
1868d2fd1af7Sbellard     abi_ulong       st_nlink;
1869d2fd1af7Sbellard 
1870c7828bd1SRichard Henderson     abi_uint        st_mode;
1871c7828bd1SRichard Henderson     abi_uint        st_uid;
1872c7828bd1SRichard Henderson     abi_uint        st_gid;
1873c7828bd1SRichard Henderson     abi_uint        __pad0;
1874d2fd1af7Sbellard     abi_ulong       st_rdev;
1875d2fd1af7Sbellard     abi_long        st_size;
1876d2fd1af7Sbellard     abi_long        st_blksize;
1877d2fd1af7Sbellard     abi_long        st_blocks;      /* Number 512-byte blocks allocated. */
1878d2fd1af7Sbellard 
1879d2fd1af7Sbellard     abi_ulong       target_st_atime;
1880d2fd1af7Sbellard     abi_ulong       target_st_atime_nsec;
1881d2fd1af7Sbellard     abi_ulong       target_st_mtime;
1882d2fd1af7Sbellard     abi_ulong       target_st_mtime_nsec;
1883d2fd1af7Sbellard     abi_ulong       target_st_ctime;
1884d2fd1af7Sbellard     abi_ulong       target_st_ctime_nsec;
1885d2fd1af7Sbellard 
1886d2fd1af7Sbellard     abi_long        __unused[3];
1887d2fd1af7Sbellard };
1888a4c075f1SUlrich Hecht #elif defined(TARGET_S390X)
1889a4c075f1SUlrich Hecht struct target_stat {
1890a4c075f1SUlrich Hecht     abi_ulong  st_dev;
1891a4c075f1SUlrich Hecht     abi_ulong  st_ino;
1892a4c075f1SUlrich Hecht     abi_ulong  st_nlink;
1893c7828bd1SRichard Henderson     abi_uint   st_mode;
1894c7828bd1SRichard Henderson     abi_uint   st_uid;
1895c7828bd1SRichard Henderson     abi_uint   st_gid;
1896c7828bd1SRichard Henderson     abi_uint   __pad1;
1897a4c075f1SUlrich Hecht     abi_ulong  st_rdev;
1898a4c075f1SUlrich Hecht     abi_ulong  st_size;
1899a4c075f1SUlrich Hecht     abi_ulong  target_st_atime;
1900a4c075f1SUlrich Hecht     abi_ulong  target_st_atime_nsec;
1901a4c075f1SUlrich Hecht     abi_ulong  target_st_mtime;
1902a4c075f1SUlrich Hecht     abi_ulong  target_st_mtime_nsec;
1903a4c075f1SUlrich Hecht     abi_ulong  target_st_ctime;
1904a4c075f1SUlrich Hecht     abi_ulong  target_st_ctime_nsec;
1905a4c075f1SUlrich Hecht     abi_ulong  st_blksize;
1906a4c075f1SUlrich Hecht     abi_long       st_blocks;
1907a4c075f1SUlrich Hecht     abi_ulong  __unused[3];
1908a4c075f1SUlrich Hecht };
190909701199SAlexander Graf #elif defined(TARGET_AARCH64)
19105f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
191109701199SAlexander Graf struct target_stat {
191209701199SAlexander Graf     abi_ulong  st_dev;
191309701199SAlexander Graf     abi_ulong  st_ino;
1914c7828bd1SRichard Henderson     abi_uint   st_mode;
1915c7828bd1SRichard Henderson     abi_uint   st_nlink;
1916c7828bd1SRichard Henderson     abi_uint   st_uid;
1917c7828bd1SRichard Henderson     abi_uint   st_gid;
191809701199SAlexander Graf     abi_ulong  st_rdev;
191909701199SAlexander Graf     abi_ulong  _pad1;
192009701199SAlexander Graf     abi_long  st_size;
1921b3c719b2SRichard Henderson     abi_int    st_blksize;
1922b3c719b2SRichard Henderson     abi_int    __pad2;
192309701199SAlexander Graf     abi_long   st_blocks;
192409701199SAlexander Graf     abi_long  target_st_atime;
192509701199SAlexander Graf     abi_ulong  target_st_atime_nsec;
192609701199SAlexander Graf     abi_long  target_st_mtime;
192709701199SAlexander Graf     abi_ulong  target_st_mtime_nsec;
192809701199SAlexander Graf     abi_long  target_st_ctime;
192909701199SAlexander Graf     abi_ulong  target_st_ctime_nsec;
1930c7828bd1SRichard Henderson     abi_uint __unused[2];
193109701199SAlexander Graf };
1932ba7651fbSMax Filippov #elif defined(TARGET_XTENSA)
19335f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1934ba7651fbSMax Filippov struct target_stat {
1935ba7651fbSMax Filippov     abi_ulong       st_dev;
1936ba7651fbSMax Filippov     abi_ulong       st_ino;
1937c7828bd1SRichard Henderson     abi_uint        st_mode;
1938c7828bd1SRichard Henderson     abi_uint        st_nlink;
1939c7828bd1SRichard Henderson     abi_uint        st_uid;
1940c7828bd1SRichard Henderson     abi_uint        st_gid;
1941ba7651fbSMax Filippov     abi_ulong       st_rdev;
1942ba7651fbSMax Filippov     abi_long        st_size;
1943ba7651fbSMax Filippov     abi_ulong       st_blksize;
1944ba7651fbSMax Filippov     abi_ulong       st_blocks;
1945ba7651fbSMax Filippov     abi_ulong       target_st_atime;
1946ba7651fbSMax Filippov     abi_ulong       target_st_atime_nsec;
1947ba7651fbSMax Filippov     abi_ulong       target_st_mtime;
1948ba7651fbSMax Filippov     abi_ulong       target_st_mtime_nsec;
1949ba7651fbSMax Filippov     abi_ulong       target_st_ctime;
1950ba7651fbSMax Filippov     abi_ulong       target_st_ctime_nsec;
1951ba7651fbSMax Filippov     abi_ulong       __unused4;
1952ba7651fbSMax Filippov     abi_ulong       __unused5;
1953ba7651fbSMax Filippov };
1954ba7651fbSMax Filippov 
1955ba7651fbSMax Filippov #define TARGET_HAS_STRUCT_STAT64
1956ba7651fbSMax Filippov struct target_stat64  {
19577af406a6SRichard Henderson     abi_ullong st_dev;          /* Device */
19587af406a6SRichard Henderson     abi_ullong st_ino;          /* File serial number */
1959c7828bd1SRichard Henderson     abi_uint  st_mode;          /* File mode. */
1960c7828bd1SRichard Henderson     abi_uint  st_nlink;         /* Link count. */
1961c7828bd1SRichard Henderson     abi_uint  st_uid;           /* User ID of the file's owner. */
1962c7828bd1SRichard Henderson     abi_uint  st_gid;           /* Group ID of the file's group. */
19637af406a6SRichard Henderson     abi_ullong st_rdev;         /* Device number, if device. */
196493c5c6cdSRichard Henderson     abi_llong st_size;          /* Size of file, in bytes. */
1965ba7651fbSMax Filippov     abi_ulong st_blksize;       /* Optimal block size for I/O. */
1966ba7651fbSMax Filippov     abi_ulong __unused2;
19677af406a6SRichard Henderson     abi_ullong st_blocks;       /* Number 512-byte blocks allocated. */
1968ba7651fbSMax Filippov     abi_ulong target_st_atime;  /* Time of last access. */
1969ba7651fbSMax Filippov     abi_ulong target_st_atime_nsec;
1970ba7651fbSMax Filippov     abi_ulong target_st_mtime;  /* Time of last modification. */
1971ba7651fbSMax Filippov     abi_ulong target_st_mtime_nsec;
1972ba7651fbSMax Filippov     abi_ulong target_st_ctime;  /* Time of last status change. */
1973ba7651fbSMax Filippov     abi_ulong target_st_ctime_nsec;
1974ba7651fbSMax Filippov     abi_ulong __unused4;
1975ba7651fbSMax Filippov     abi_ulong __unused5;
1976ba7651fbSMax Filippov };
1977ba7651fbSMax Filippov 
19786c301485SPhilippe Mathieu-Daudé #elif defined(TARGET_OPENRISC) \
1979be23b0ebSPhilippe Mathieu-Daudé     || defined(TARGET_RISCV) || defined(TARGET_HEXAGON)
1980c7819dfbSPeter Maydell 
1981c7819dfbSPeter Maydell /* These are the asm-generic versions of the stat and stat64 structures */
1982c7819dfbSPeter Maydell 
19835f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1984d962783eSJia Liu struct target_stat {
1985d962783eSJia Liu     abi_ulong st_dev;
1986d962783eSJia Liu     abi_ulong st_ino;
1987c7828bd1SRichard Henderson     abi_uint st_mode;
1988c7828bd1SRichard Henderson     abi_uint st_nlink;
1989c7828bd1SRichard Henderson     abi_uint st_uid;
1990c7828bd1SRichard Henderson     abi_uint st_gid;
1991d962783eSJia Liu     abi_ulong st_rdev;
1992c7819dfbSPeter Maydell     abi_ulong __pad1;
1993d962783eSJia Liu     abi_long st_size;
1994b3c719b2SRichard Henderson     abi_int st_blksize;
1995b3c719b2SRichard Henderson     abi_int __pad2;
1996c7819dfbSPeter Maydell     abi_long st_blocks;
1997c7819dfbSPeter Maydell     abi_long target_st_atime;
1998d962783eSJia Liu     abi_ulong target_st_atime_nsec;
1999c7819dfbSPeter Maydell     abi_long target_st_mtime;
2000d962783eSJia Liu     abi_ulong target_st_mtime_nsec;
2001c7819dfbSPeter Maydell     abi_long target_st_ctime;
2002d962783eSJia Liu     abi_ulong target_st_ctime_nsec;
2003c7828bd1SRichard Henderson     abi_uint __unused4;
2004c7828bd1SRichard Henderson     abi_uint __unused5;
2005d962783eSJia Liu };
2006c7819dfbSPeter Maydell 
200747ae93cdSMichael Clark #if !defined(TARGET_RISCV64)
200820d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
2009c7819dfbSPeter Maydell struct target_stat64 {
20107af406a6SRichard Henderson     abi_ullong st_dev;
20117af406a6SRichard Henderson     abi_ullong st_ino;
2012c7828bd1SRichard Henderson     abi_uint st_mode;
2013c7828bd1SRichard Henderson     abi_uint st_nlink;
2014c7828bd1SRichard Henderson     abi_uint st_uid;
2015c7828bd1SRichard Henderson     abi_uint st_gid;
20167af406a6SRichard Henderson     abi_ullong st_rdev;
20177af406a6SRichard Henderson     abi_ullong __pad1;
201893c5c6cdSRichard Henderson     abi_llong st_size;
2019b3c719b2SRichard Henderson     abi_int st_blksize;
2020b3c719b2SRichard Henderson     abi_int __pad2;
202193c5c6cdSRichard Henderson     abi_llong st_blocks;
2022b3c719b2SRichard Henderson     abi_int target_st_atime;
2023c7828bd1SRichard Henderson     abi_uint target_st_atime_nsec;
2024b3c719b2SRichard Henderson     abi_int target_st_mtime;
2025c7828bd1SRichard Henderson     abi_uint target_st_mtime_nsec;
2026b3c719b2SRichard Henderson     abi_int target_st_ctime;
2027c7828bd1SRichard Henderson     abi_uint target_st_ctime_nsec;
2028c7828bd1SRichard Henderson     abi_uint __unused4;
2029c7828bd1SRichard Henderson     abi_uint __unused5;
2030c7819dfbSPeter Maydell };
203147ae93cdSMichael Clark #endif
2032c7819dfbSPeter Maydell 
2033a10d1e50SRichard Henderson #elif defined(TARGET_HPPA)
2034a10d1e50SRichard Henderson 
20355f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
2036a10d1e50SRichard Henderson struct target_stat {
2037a10d1e50SRichard Henderson     abi_uint   st_dev;
2038a10d1e50SRichard Henderson     abi_uint   st_ino;
2039a10d1e50SRichard Henderson     abi_ushort st_mode;
2040a10d1e50SRichard Henderson     abi_ushort st_nlink;
2041a10d1e50SRichard Henderson     abi_ushort _res1;
2042a10d1e50SRichard Henderson     abi_ushort _res2;
2043a10d1e50SRichard Henderson     abi_uint   st_rdev;
2044a10d1e50SRichard Henderson     abi_int    st_size;
2045a10d1e50SRichard Henderson     abi_int    target_st_atime;
2046a10d1e50SRichard Henderson     abi_uint   target_st_atime_nsec;
2047a10d1e50SRichard Henderson     abi_int    target_st_mtime;
2048a10d1e50SRichard Henderson     abi_uint   target_st_mtime_nsec;
2049a10d1e50SRichard Henderson     abi_int    target_st_ctime;
2050a10d1e50SRichard Henderson     abi_uint   target_st_ctime_nsec;
2051a10d1e50SRichard Henderson     abi_int    st_blksize;
2052a10d1e50SRichard Henderson     abi_int    st_blocks;
2053a10d1e50SRichard Henderson     abi_uint   _unused1;
2054a10d1e50SRichard Henderson     abi_uint   _unused2;
2055a10d1e50SRichard Henderson     abi_uint   _unused3;
2056a10d1e50SRichard Henderson     abi_uint   _unused4;
2057a10d1e50SRichard Henderson     abi_ushort _unused5;
2058a10d1e50SRichard Henderson     abi_short  st_fstype;
2059a10d1e50SRichard Henderson     abi_uint   st_realdev;
2060a10d1e50SRichard Henderson     abi_ushort st_basemode;
2061a10d1e50SRichard Henderson     abi_ushort _unused6;
2062a10d1e50SRichard Henderson     abi_uint   st_uid;
2063a10d1e50SRichard Henderson     abi_uint   st_gid;
2064a10d1e50SRichard Henderson     abi_uint   _unused7[3];
2065a10d1e50SRichard Henderson };
2066a10d1e50SRichard Henderson 
2067a10d1e50SRichard Henderson #define TARGET_HAS_STRUCT_STAT64
2068a10d1e50SRichard Henderson struct target_stat64 {
20697af406a6SRichard Henderson     abi_ullong st_dev;
2070a10d1e50SRichard Henderson     abi_uint   _pad1;
2071a10d1e50SRichard Henderson     abi_uint   _res1;
2072a10d1e50SRichard Henderson     abi_uint   st_mode;
2073a10d1e50SRichard Henderson     abi_uint   st_nlink;
2074a10d1e50SRichard Henderson     abi_uint   st_uid;
2075a10d1e50SRichard Henderson     abi_uint   st_gid;
20767af406a6SRichard Henderson     abi_ullong st_rdev;
2077a10d1e50SRichard Henderson     abi_uint   _pad2;
207893c5c6cdSRichard Henderson     abi_llong  st_size;
2079a10d1e50SRichard Henderson     abi_int    st_blksize;
208093c5c6cdSRichard Henderson     abi_llong  st_blocks;
2081a10d1e50SRichard Henderson     abi_int    target_st_atime;
2082a10d1e50SRichard Henderson     abi_uint   target_st_atime_nsec;
2083a10d1e50SRichard Henderson     abi_int    target_st_mtime;
2084a10d1e50SRichard Henderson     abi_uint   target_st_mtime_nsec;
2085a10d1e50SRichard Henderson     abi_int    target_st_ctime;
2086a10d1e50SRichard Henderson     abi_uint   target_st_ctime_nsec;
20877af406a6SRichard Henderson     abi_ullong st_ino;
2088a10d1e50SRichard Henderson };
2089a10d1e50SRichard Henderson 
20901f630196SSong Gao #elif defined(TARGET_LOONGARCH64)
20911f630196SSong Gao 
20921f630196SSong Gao /* LoongArch no newfstatat/fstat syscall. */
20931f630196SSong Gao 
2094048f6b4dSbellard #else
2095048f6b4dSbellard #error unsupported CPU
2096048f6b4dSbellard #endif
20972521d698Sbellard 
20984ce6f8deSths typedef struct {
2099b3c719b2SRichard Henderson     abi_int val[2];
2100c227f099SAnthony Liguori } target_fsid_t;
21014ce6f8deSths 
210256c8f68fSbellard #ifdef TARGET_MIPS
2103d26bc211Sths #ifdef TARGET_ABI_MIPSN32
2104540635baSths struct target_statfs {
21055dc0c971SRichard Henderson     abi_int                 f_type;
21065dc0c971SRichard Henderson     abi_int                 f_bsize;
21075dc0c971SRichard Henderson     abi_int                 f_frsize;       /* Fragment size - unsupported */
21085dc0c971SRichard Henderson     abi_int                 f_blocks;
21095dc0c971SRichard Henderson     abi_int                 f_bfree;
21105dc0c971SRichard Henderson     abi_int                 f_files;
21115dc0c971SRichard Henderson     abi_int                 f_ffree;
21125dc0c971SRichard Henderson     abi_int                 f_bavail;
2113540635baSths 
2114540635baSths     /* Linux specials */
2115c227f099SAnthony Liguori     target_fsid_t           f_fsid;
21165dc0c971SRichard Henderson     abi_int                 f_namelen;
21175dc0c971SRichard Henderson     abi_int                 f_flags;
21185dc0c971SRichard Henderson     abi_int                 f_spare[5];
2119540635baSths };
2120540635baSths #else
212156c8f68fSbellard struct target_statfs {
2122992f48a0Sblueswir1     abi_long                f_type;
2123992f48a0Sblueswir1     abi_long                f_bsize;
2124992f48a0Sblueswir1     abi_long                f_frsize;       /* Fragment size - unsupported */
2125992f48a0Sblueswir1     abi_long                f_blocks;
2126992f48a0Sblueswir1     abi_long                f_bfree;
2127992f48a0Sblueswir1     abi_long                f_files;
2128992f48a0Sblueswir1     abi_long                f_ffree;
2129992f48a0Sblueswir1     abi_long                f_bavail;
213056c8f68fSbellard 
213156c8f68fSbellard     /* Linux specials */
2132c227f099SAnthony Liguori     target_fsid_t           f_fsid;
2133992f48a0Sblueswir1     abi_long                f_namelen;
2134d4247ec2SShea Levy     abi_long                f_flags;
2135d4247ec2SShea Levy     abi_long                f_spare[5];
213656c8f68fSbellard };
2137540635baSths #endif
213856c8f68fSbellard 
213956c8f68fSbellard struct target_statfs64 {
2140f6ee1627SRichard Henderson     abi_uint        f_type;
2141f6ee1627SRichard Henderson     abi_uint        f_bsize;
2142f6ee1627SRichard Henderson     abi_uint        f_frsize;       /* Fragment size - unsupported */
2143f6ee1627SRichard Henderson     abi_uint        __pad;
21447af406a6SRichard Henderson     abi_ullong      f_blocks;
21457af406a6SRichard Henderson     abi_ullong      f_bfree;
21467af406a6SRichard Henderson     abi_ullong      f_files;
21477af406a6SRichard Henderson     abi_ullong      f_ffree;
21487af406a6SRichard Henderson     abi_ullong      f_bavail;
2149c227f099SAnthony Liguori     target_fsid_t   f_fsid;
2150f6ee1627SRichard Henderson     abi_uint        f_namelen;
2151f6ee1627SRichard Henderson     abi_uint        f_flags;
2152f6ee1627SRichard Henderson     abi_uint        f_spare[5];
215356c8f68fSbellard };
2154c4d10628Sbalrog #elif (defined(TARGET_PPC64) || defined(TARGET_X86_64) ||       \
215547ae93cdSMichael Clark        defined(TARGET_SPARC64) || defined(TARGET_AARCH64) ||    \
21567bf36a5cSWANG Xuerui        defined(TARGET_RISCV) || defined(TARGET_LOONGARCH64)) && \
21577bf36a5cSWANG Xuerui     !defined(TARGET_ABI32)
2158325e651fSj_mayer struct target_statfs {
2159325e651fSj_mayer     abi_long f_type;
2160325e651fSj_mayer     abi_long f_bsize;
2161325e651fSj_mayer     abi_long f_blocks;
2162325e651fSj_mayer     abi_long f_bfree;
2163325e651fSj_mayer     abi_long f_bavail;
2164325e651fSj_mayer     abi_long f_files;
2165325e651fSj_mayer     abi_long f_ffree;
2166c227f099SAnthony Liguori     target_fsid_t f_fsid;
2167325e651fSj_mayer     abi_long f_namelen;
2168325e651fSj_mayer     abi_long f_frsize;
2169d4247ec2SShea Levy     abi_long f_flags;
2170d4247ec2SShea Levy     abi_long f_spare[4];
2171325e651fSj_mayer };
2172325e651fSj_mayer 
2173325e651fSj_mayer struct target_statfs64 {
2174325e651fSj_mayer     abi_long f_type;
2175325e651fSj_mayer     abi_long f_bsize;
2176325e651fSj_mayer     abi_long f_blocks;
2177325e651fSj_mayer     abi_long f_bfree;
2178325e651fSj_mayer     abi_long f_bavail;
2179325e651fSj_mayer     abi_long f_files;
2180325e651fSj_mayer     abi_long f_ffree;
2181c227f099SAnthony Liguori     target_fsid_t f_fsid;
2182325e651fSj_mayer     abi_long f_namelen;
2183325e651fSj_mayer     abi_long f_frsize;
2184d4247ec2SShea Levy     abi_long f_flags;
2185d4247ec2SShea Levy     abi_long f_spare[4];
2186325e651fSj_mayer };
2187a4c075f1SUlrich Hecht #elif defined(TARGET_S390X)
2188a4c075f1SUlrich Hecht struct target_statfs {
21895dc0c971SRichard Henderson     abi_int  f_type;
21905dc0c971SRichard Henderson     abi_int  f_bsize;
2191a4c075f1SUlrich Hecht     abi_long f_blocks;
2192a4c075f1SUlrich Hecht     abi_long f_bfree;
2193a4c075f1SUlrich Hecht     abi_long f_bavail;
2194a4c075f1SUlrich Hecht     abi_long f_files;
2195a4c075f1SUlrich Hecht     abi_long f_ffree;
2196a4c075f1SUlrich Hecht     kernel_fsid_t f_fsid;
21975dc0c971SRichard Henderson     abi_int  f_namelen;
21985dc0c971SRichard Henderson     abi_int  f_frsize;
21995dc0c971SRichard Henderson     abi_int  f_flags;
22005dc0c971SRichard Henderson     abi_int  f_spare[4];
2201d4247ec2SShea Levy 
2202a4c075f1SUlrich Hecht };
2203a4c075f1SUlrich Hecht 
2204a4c075f1SUlrich Hecht struct target_statfs64 {
22055dc0c971SRichard Henderson     abi_int  f_type;
22065dc0c971SRichard Henderson     abi_int  f_bsize;
2207a4c075f1SUlrich Hecht     abi_long f_blocks;
2208a4c075f1SUlrich Hecht     abi_long f_bfree;
2209a4c075f1SUlrich Hecht     abi_long f_bavail;
2210a4c075f1SUlrich Hecht     abi_long f_files;
2211a4c075f1SUlrich Hecht     abi_long f_ffree;
2212a4c075f1SUlrich Hecht     kernel_fsid_t f_fsid;
22135dc0c971SRichard Henderson     abi_int  f_namelen;
22145dc0c971SRichard Henderson     abi_int  f_frsize;
22155dc0c971SRichard Henderson     abi_int  f_flags;
22165dc0c971SRichard Henderson     abi_int  f_spare[4];
2217a4c075f1SUlrich Hecht };
221856c8f68fSbellard #else
221956c8f68fSbellard struct target_statfs {
2220f6ee1627SRichard Henderson     abi_uint f_type;
2221f6ee1627SRichard Henderson     abi_uint f_bsize;
2222f6ee1627SRichard Henderson     abi_uint f_blocks;
2223f6ee1627SRichard Henderson     abi_uint f_bfree;
2224f6ee1627SRichard Henderson     abi_uint f_bavail;
2225f6ee1627SRichard Henderson     abi_uint f_files;
2226f6ee1627SRichard Henderson     abi_uint f_ffree;
2227c227f099SAnthony Liguori     target_fsid_t f_fsid;
2228f6ee1627SRichard Henderson     abi_uint f_namelen;
2229f6ee1627SRichard Henderson     abi_uint f_frsize;
2230f6ee1627SRichard Henderson     abi_uint f_flags;
2231f6ee1627SRichard Henderson     abi_uint f_spare[4];
223256c8f68fSbellard };
223356c8f68fSbellard 
223456c8f68fSbellard struct target_statfs64 {
2235f6ee1627SRichard Henderson     abi_uint f_type;
2236f6ee1627SRichard Henderson     abi_uint f_bsize;
22377af406a6SRichard Henderson     abi_ullong f_blocks;
22387af406a6SRichard Henderson     abi_ullong f_bfree;
22397af406a6SRichard Henderson     abi_ullong f_bavail;
22407af406a6SRichard Henderson     abi_ullong f_files;
22417af406a6SRichard Henderson     abi_ullong f_ffree;
2242c227f099SAnthony Liguori     target_fsid_t f_fsid;
2243f6ee1627SRichard Henderson     abi_uint f_namelen;
2244f6ee1627SRichard Henderson     abi_uint f_frsize;
2245f6ee1627SRichard Henderson     abi_uint f_flags;
2246f6ee1627SRichard Henderson     abi_uint f_spare[4];
224756c8f68fSbellard };
224856c8f68fSbellard #endif
224956c8f68fSbellard 
22507e22e546SUlrich Hecht #define TARGET_F_LINUX_SPECIFIC_BASE 1024
22517e22e546SUlrich Hecht #define TARGET_F_SETLEASE            (TARGET_F_LINUX_SPECIFIC_BASE + 0)
22527e22e546SUlrich Hecht #define TARGET_F_GETLEASE            (TARGET_F_LINUX_SPECIFIC_BASE + 1)
22537e22e546SUlrich Hecht #define TARGET_F_DUPFD_CLOEXEC       (TARGET_F_LINUX_SPECIFIC_BASE + 6)
22542bb963ffSShu-Chun Weng #define TARGET_F_NOTIFY              (TARGET_F_LINUX_SPECIFIC_BASE + 2)
22557e3b92ecSPeter Maydell #define TARGET_F_SETPIPE_SZ          (TARGET_F_LINUX_SPECIFIC_BASE + 7)
22567e3b92ecSPeter Maydell #define TARGET_F_GETPIPE_SZ          (TARGET_F_LINUX_SPECIFIC_BASE + 8)
22572bb963ffSShu-Chun Weng #define TARGET_F_ADD_SEALS           (TARGET_F_LINUX_SPECIFIC_BASE + 9)
22582bb963ffSShu-Chun Weng #define TARGET_F_GET_SEALS           (TARGET_F_LINUX_SPECIFIC_BASE + 10)
22597e22e546SUlrich Hecht 
22605de7706eSLaurent Vivier #include "target_fcntl.h"
22618d5d3004SAndreas Schwab 
22622521d698Sbellard /* soundcard defines */
226367cc32ebSVeres Lajos /* XXX: convert them all to arch independent entries */
2264b3c719b2SRichard Henderson #define TARGET_SNDCTL_COPR_HALT           TARGET_IOWR('C',  7, abi_int);
22652521d698Sbellard #define TARGET_SNDCTL_COPR_LOAD           0xcfb04301
22662521d698Sbellard #define TARGET_SNDCTL_COPR_RCODE          0xc0144303
22672521d698Sbellard #define TARGET_SNDCTL_COPR_RCVMSG         0x8fa44309
22682521d698Sbellard #define TARGET_SNDCTL_COPR_RDATA          0xc0144302
22692521d698Sbellard #define TARGET_SNDCTL_COPR_RESET          0x00004300
22702521d698Sbellard #define TARGET_SNDCTL_COPR_RUN            0xc0144306
22712521d698Sbellard #define TARGET_SNDCTL_COPR_SENDMSG        0xcfa44308
22722521d698Sbellard #define TARGET_SNDCTL_COPR_WCODE          0x40144305
22732521d698Sbellard #define TARGET_SNDCTL_COPR_WDATA          0x40144304
22742521d698Sbellard #define TARGET_SNDCTL_DSP_RESET           TARGET_IO('P', 0)
22752521d698Sbellard #define TARGET_SNDCTL_DSP_SYNC            TARGET_IO('P', 1)
2276b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_SPEED           TARGET_IOWR('P', 2, abi_int)
2277b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_STEREO          TARGET_IOWR('P', 3, abi_int)
2278b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_GETBLKSIZE      TARGET_IOWR('P', 4, abi_int)
2279b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_SETFMT          TARGET_IOWR('P', 5, abi_int)
2280b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_CHANNELS        TARGET_IOWR('P', 6, abi_int)
2281b3c719b2SRichard Henderson #define TARGET_SOUND_PCM_WRITE_FILTER     TARGET_IOWR('P', 7, abi_int)
22822521d698Sbellard #define TARGET_SNDCTL_DSP_POST            TARGET_IO('P', 8)
2283b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_SUBDIVIDE       TARGET_IOWR('P', 9, abi_int)
2284b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_SETFRAGMENT     TARGET_IOWR('P',10, abi_int)
2285b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_GETFMTS         TARGET_IOR('P', 11, abi_int)
22862521d698Sbellard #define TARGET_SNDCTL_DSP_GETOSPACE       TARGET_IORU('P',12)
22872521d698Sbellard #define TARGET_SNDCTL_DSP_GETISPACE       TARGET_IORU('P',13)
2288b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_GETCAPS         TARGET_IOR('P', 15, abi_int)
2289b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_GETTRIGGER      TARGET_IOR('P',16, abi_int)
22902521d698Sbellard #define TARGET_SNDCTL_DSP_GETIPTR         TARGET_IORU('P',17)
22912521d698Sbellard #define TARGET_SNDCTL_DSP_GETOPTR         TARGET_IORU('P',18)
22925f72307dSPeter Maydell #define TARGET_SNDCTL_DSP_MAPINBUF        TARGET_IORU('P', 19)
22935f72307dSPeter Maydell #define TARGET_SNDCTL_DSP_MAPOUTBUF       TARGET_IORU('P', 20)
22942521d698Sbellard #define TARGET_SNDCTL_DSP_NONBLOCK        0x0000500e
22952521d698Sbellard #define TARGET_SNDCTL_DSP_SAMPLESIZE      0xc0045005
22962521d698Sbellard #define TARGET_SNDCTL_DSP_SETDUPLEX       0x00005016
22972521d698Sbellard #define TARGET_SNDCTL_DSP_SETSYNCRO       0x00005015
22982521d698Sbellard #define TARGET_SNDCTL_DSP_SETTRIGGER      0x40045010
22992521d698Sbellard #define TARGET_SNDCTL_FM_4OP_ENABLE       0x4004510f
23002521d698Sbellard #define TARGET_SNDCTL_FM_LOAD_INSTR       0x40285107
23012521d698Sbellard #define TARGET_SNDCTL_MIDI_INFO           0xc074510c
23022521d698Sbellard #define TARGET_SNDCTL_MIDI_MPUCMD         0xc0216d02
23032521d698Sbellard #define TARGET_SNDCTL_MIDI_MPUMODE        0xc0046d01
23042521d698Sbellard #define TARGET_SNDCTL_MIDI_PRETIME        0xc0046d00
23052521d698Sbellard #define TARGET_SNDCTL_PMGR_ACCESS         0xcfb85110
23062521d698Sbellard #define TARGET_SNDCTL_PMGR_IFACE          0xcfb85001
23072521d698Sbellard #define TARGET_SNDCTL_SEQ_CTRLRATE        0xc0045103
23082521d698Sbellard #define TARGET_SNDCTL_SEQ_GETINCOUNT      0x80045105
23092521d698Sbellard #define TARGET_SNDCTL_SEQ_GETOUTCOUNT     0x80045104
23102521d698Sbellard #define TARGET_SNDCTL_SEQ_NRMIDIS         0x8004510b
23112521d698Sbellard #define TARGET_SNDCTL_SEQ_NRSYNTHS        0x8004510a
23122521d698Sbellard #define TARGET_SNDCTL_SEQ_OUTOFBAND       0x40085112
23132521d698Sbellard #define TARGET_SNDCTL_SEQ_PANIC           0x00005111
23142521d698Sbellard #define TARGET_SNDCTL_SEQ_PERCMODE        0x40045106
23152521d698Sbellard #define TARGET_SNDCTL_SEQ_RESET           0x00005100
23162521d698Sbellard #define TARGET_SNDCTL_SEQ_RESETSAMPLES    0x40045109
23172521d698Sbellard #define TARGET_SNDCTL_SEQ_SYNC            0x00005101
23182521d698Sbellard #define TARGET_SNDCTL_SEQ_TESTMIDI        0x40045108
23192521d698Sbellard #define TARGET_SNDCTL_SEQ_THRESHOLD       0x4004510d
23202521d698Sbellard #define TARGET_SNDCTL_SEQ_TRESHOLD        0x4004510d
23212521d698Sbellard #define TARGET_SNDCTL_SYNTH_INFO          0xc08c5102
23222521d698Sbellard #define TARGET_SNDCTL_SYNTH_MEMAVL        0xc004510e
23232521d698Sbellard #define TARGET_SNDCTL_TMR_CONTINUE        0x00005404
23242521d698Sbellard #define TARGET_SNDCTL_TMR_METRONOME       0x40045407
23252521d698Sbellard #define TARGET_SNDCTL_TMR_SELECT          0x40045408
23262521d698Sbellard #define TARGET_SNDCTL_TMR_SOURCE          0xc0045406
23272521d698Sbellard #define TARGET_SNDCTL_TMR_START           0x00005402
23282521d698Sbellard #define TARGET_SNDCTL_TMR_STOP            0x00005403
23292521d698Sbellard #define TARGET_SNDCTL_TMR_TEMPO           0xc0045405
23302521d698Sbellard #define TARGET_SNDCTL_TMR_TIMEBASE        0xc0045401
23312521d698Sbellard #define TARGET_SOUND_PCM_READ_RATE        0x80045002
23322521d698Sbellard #define TARGET_SOUND_PCM_READ_CHANNELS    0x80045006
23332521d698Sbellard #define TARGET_SOUND_PCM_READ_BITS        0x80045005
23342521d698Sbellard #define TARGET_SOUND_PCM_READ_FILTER      0x80045007
23352521d698Sbellard #define TARGET_SOUND_MIXER_INFO           TARGET_IOR ('M', 101, mixer_info)
23362521d698Sbellard #define TARGET_SOUND_MIXER_ACCESS         0xc0804d66
2337b3c719b2SRichard Henderson #define TARGET_SOUND_MIXER_PRIVATE1       TARGET_IOWR('M', 111, abi_int)
2338b3c719b2SRichard Henderson #define TARGET_SOUND_MIXER_PRIVATE2       TARGET_IOWR('M', 112, abi_int)
2339b3c719b2SRichard Henderson #define TARGET_SOUND_MIXER_PRIVATE3       TARGET_IOWR('M', 113, abi_int)
2340b3c719b2SRichard Henderson #define TARGET_SOUND_MIXER_PRIVATE4       TARGET_IOWR('M', 114, abi_int)
2341b3c719b2SRichard Henderson #define TARGET_SOUND_MIXER_PRIVATE5       TARGET_IOWR('M', 115, abi_int)
23422521d698Sbellard 
2343b3c719b2SRichard Henderson #define TARGET_MIXER_READ(dev)  TARGET_IOR('M', dev, abi_int)
23442521d698Sbellard 
23452521d698Sbellard #define TARGET_SOUND_MIXER_READ_VOLUME          TARGET_MIXER_READ(SOUND_MIXER_VOLUME)
23462521d698Sbellard #define TARGET_SOUND_MIXER_READ_BASS            TARGET_MIXER_READ(SOUND_MIXER_BASS)
23472521d698Sbellard #define TARGET_SOUND_MIXER_READ_TREBLE          TARGET_MIXER_READ(SOUND_MIXER_TREBLE)
23482521d698Sbellard #define TARGET_SOUND_MIXER_READ_SYNTH           TARGET_MIXER_READ(SOUND_MIXER_SYNTH)
23492521d698Sbellard #define TARGET_SOUND_MIXER_READ_PCM             TARGET_MIXER_READ(SOUND_MIXER_PCM)
23502521d698Sbellard #define TARGET_SOUND_MIXER_READ_SPEAKER         TARGET_MIXER_READ(SOUND_MIXER_SPEAKER)
23512521d698Sbellard #define TARGET_SOUND_MIXER_READ_LINE            TARGET_MIXER_READ(SOUND_MIXER_LINE)
23522521d698Sbellard #define TARGET_SOUND_MIXER_READ_MIC             TARGET_MIXER_READ(SOUND_MIXER_MIC)
23532521d698Sbellard #define TARGET_SOUND_MIXER_READ_CD              TARGET_MIXER_READ(SOUND_MIXER_CD)
23542521d698Sbellard #define TARGET_SOUND_MIXER_READ_IMIX            TARGET_MIXER_READ(SOUND_MIXER_IMIX)
23552521d698Sbellard #define TARGET_SOUND_MIXER_READ_ALTPCM          TARGET_MIXER_READ(SOUND_MIXER_ALTPCM)
23562521d698Sbellard #define TARGET_SOUND_MIXER_READ_RECLEV          TARGET_MIXER_READ(SOUND_MIXER_RECLEV)
23572521d698Sbellard #define TARGET_SOUND_MIXER_READ_IGAIN           TARGET_MIXER_READ(SOUND_MIXER_IGAIN)
23582521d698Sbellard #define TARGET_SOUND_MIXER_READ_OGAIN           TARGET_MIXER_READ(SOUND_MIXER_OGAIN)
23592521d698Sbellard #define TARGET_SOUND_MIXER_READ_LINE1           TARGET_MIXER_READ(SOUND_MIXER_LINE1)
23602521d698Sbellard #define TARGET_SOUND_MIXER_READ_LINE2           TARGET_MIXER_READ(SOUND_MIXER_LINE2)
23612521d698Sbellard #define TARGET_SOUND_MIXER_READ_LINE3           TARGET_MIXER_READ(SOUND_MIXER_LINE3)
23622521d698Sbellard 
23632521d698Sbellard /* Obsolete macros */
23642521d698Sbellard #define TARGET_SOUND_MIXER_READ_MUTE            TARGET_MIXER_READ(SOUND_MIXER_MUTE)
23652521d698Sbellard #define TARGET_SOUND_MIXER_READ_ENHANCE         TARGET_MIXER_READ(SOUND_MIXER_ENHANCE)
23662521d698Sbellard #define TARGET_SOUND_MIXER_READ_LOUD            TARGET_MIXER_READ(SOUND_MIXER_LOUD)
23672521d698Sbellard 
23682521d698Sbellard #define TARGET_SOUND_MIXER_READ_RECSRC          TARGET_MIXER_READ(SOUND_MIXER_RECSRC)
23692521d698Sbellard #define TARGET_SOUND_MIXER_READ_DEVMASK         TARGET_MIXER_READ(SOUND_MIXER_DEVMASK)
23702521d698Sbellard #define TARGET_SOUND_MIXER_READ_RECMASK         TARGET_MIXER_READ(SOUND_MIXER_RECMASK)
23712521d698Sbellard #define TARGET_SOUND_MIXER_READ_STEREODEVS      TARGET_MIXER_READ(SOUND_MIXER_STEREODEVS)
23722521d698Sbellard #define TARGET_SOUND_MIXER_READ_CAPS            TARGET_MIXER_READ(SOUND_MIXER_CAPS)
23732521d698Sbellard 
2374b3c719b2SRichard Henderson #define TARGET_MIXER_WRITE(dev)         TARGET_IOWR('M', dev, abi_int)
23752521d698Sbellard 
23762521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_VOLUME TARGET_MIXER_WRITE(SOUND_MIXER_VOLUME)
23772521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_BASS           TARGET_MIXER_WRITE(SOUND_MIXER_BASS)
23782521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_TREBLE TARGET_MIXER_WRITE(SOUND_MIXER_TREBLE)
23792521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_SYNTH          TARGET_MIXER_WRITE(SOUND_MIXER_SYNTH)
23802521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_PCM            TARGET_MIXER_WRITE(SOUND_MIXER_PCM)
23812521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_SPEAKER        TARGET_MIXER_WRITE(SOUND_MIXER_SPEAKER)
23822521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_LINE           TARGET_MIXER_WRITE(SOUND_MIXER_LINE)
23832521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_MIC            TARGET_MIXER_WRITE(SOUND_MIXER_MIC)
23842521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_CD             TARGET_MIXER_WRITE(SOUND_MIXER_CD)
23852521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_IMIX           TARGET_MIXER_WRITE(SOUND_MIXER_IMIX)
23862521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_ALTPCM TARGET_MIXER_WRITE(SOUND_MIXER_ALTPCM)
23872521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_RECLEV TARGET_MIXER_WRITE(SOUND_MIXER_RECLEV)
23882521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_IGAIN          TARGET_MIXER_WRITE(SOUND_MIXER_IGAIN)
23892521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_OGAIN          TARGET_MIXER_WRITE(SOUND_MIXER_OGAIN)
23902521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_LINE1          TARGET_MIXER_WRITE(SOUND_MIXER_LINE1)
23912521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_LINE2          TARGET_MIXER_WRITE(SOUND_MIXER_LINE2)
23922521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_LINE3          TARGET_MIXER_WRITE(SOUND_MIXER_LINE3)
23932521d698Sbellard 
23942521d698Sbellard /* Obsolete macros */
23952521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_MUTE           TARGET_MIXER_WRITE(SOUND_MIXER_MUTE)
23962521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_ENHANCE        TARGET_MIXER_WRITE(SOUND_MIXER_ENHANCE)
23972521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_LOUD           TARGET_MIXER_WRITE(SOUND_MIXER_LOUD)
23982521d698Sbellard 
23992521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_RECSRC TARGET_MIXER_WRITE(SOUND_MIXER_RECSRC)
24002521d698Sbellard 
2401aca7708eSFilip Bozuta struct target_snd_timer_id {
2402b3c719b2SRichard Henderson     abi_int dev_class;
2403b3c719b2SRichard Henderson     abi_int dev_sclass;
2404b3c719b2SRichard Henderson     abi_int card;
2405b3c719b2SRichard Henderson     abi_int device;
2406b3c719b2SRichard Henderson     abi_int subdevice;
2407aca7708eSFilip Bozuta };
2408aca7708eSFilip Bozuta 
2409aca7708eSFilip Bozuta struct target_snd_timer_ginfo {
2410aca7708eSFilip Bozuta     struct target_snd_timer_id tid;
2411c7828bd1SRichard Henderson     abi_uint flags;
2412b3c719b2SRichard Henderson     abi_int card;
2413aca7708eSFilip Bozuta     unsigned char id[64];
2414aca7708eSFilip Bozuta     unsigned char name[80];
2415aca7708eSFilip Bozuta     abi_ulong reserved0;
2416aca7708eSFilip Bozuta     abi_ulong resolution;
2417aca7708eSFilip Bozuta     abi_ulong resolution_min;
2418aca7708eSFilip Bozuta     abi_ulong resolution_max;
2419c7828bd1SRichard Henderson     abi_uint clients;
2420aca7708eSFilip Bozuta     unsigned char reserved[32];
2421aca7708eSFilip Bozuta };
2422aca7708eSFilip Bozuta 
2423aca7708eSFilip Bozuta struct target_snd_timer_gparams {
2424aca7708eSFilip Bozuta     struct target_snd_timer_id tid;
2425aca7708eSFilip Bozuta     abi_ulong period_num;
2426aca7708eSFilip Bozuta     abi_ulong period_den;
2427aca7708eSFilip Bozuta     unsigned char reserved[32];
2428aca7708eSFilip Bozuta };
2429aca7708eSFilip Bozuta 
2430aca7708eSFilip Bozuta struct target_snd_timer_gstatus {
2431aca7708eSFilip Bozuta     struct target_snd_timer_id tid;
2432aca7708eSFilip Bozuta     abi_ulong resolution;
2433aca7708eSFilip Bozuta     abi_ulong resolution_num;
2434aca7708eSFilip Bozuta     abi_ulong resolution_den;
2435aca7708eSFilip Bozuta     unsigned char reserved[32];
2436aca7708eSFilip Bozuta };
2437aca7708eSFilip Bozuta 
2438d22edf0aSFilip Bozuta struct target_snd_timer_select {
2439d22edf0aSFilip Bozuta     struct target_snd_timer_id id;
2440d22edf0aSFilip Bozuta     unsigned char reserved[32];
2441d22edf0aSFilip Bozuta };
2442d22edf0aSFilip Bozuta 
2443fe333025SFilip Bozuta struct target_snd_timer_info {
2444c7828bd1SRichard Henderson     abi_uint flags;
2445b3c719b2SRichard Henderson     abi_int card;
2446fe333025SFilip Bozuta     unsigned char id[64];
2447fe333025SFilip Bozuta     unsigned char name[80];
2448fe333025SFilip Bozuta     abi_ulong reserved0;
2449fe333025SFilip Bozuta     abi_ulong resolution;
2450fe333025SFilip Bozuta     unsigned char reserved[64];
2451fe333025SFilip Bozuta };
2452fe333025SFilip Bozuta 
2453fe333025SFilip Bozuta struct target_snd_timer_status {
2454fe333025SFilip Bozuta     struct target_timespec tstamp;
2455c7828bd1SRichard Henderson     abi_uint resolution;
2456c7828bd1SRichard Henderson     abi_uint lost;
2457c7828bd1SRichard Henderson     abi_uint overrun;
2458c7828bd1SRichard Henderson     abi_uint queue;
2459fe333025SFilip Bozuta     unsigned char reserved[64];
2460fe333025SFilip Bozuta };
2461fe333025SFilip Bozuta 
24621c4c6fcdSFilip Bozuta /* alsa timer ioctls */
2463b3c719b2SRichard Henderson #define TARGET_SNDRV_TIMER_IOCTL_PVERSION     TARGET_IOR('T', 0x00, abi_int)
24641c4c6fcdSFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_NEXT_DEVICE  TARGET_IOWR('T', 0x01,    \
24651c4c6fcdSFilip Bozuta                                                           struct snd_timer_id)
2466aca7708eSFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_GINFO        TARGET_IOWR('T', 0x03,    \
2467aca7708eSFilip Bozuta                                                           struct target_snd_timer_ginfo)
2468aca7708eSFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_GPARAMS      TARGET_IOW('T', 0x04,     \
2469aca7708eSFilip Bozuta                                                          struct target_snd_timer_gparams)
2470aca7708eSFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_GSTATUS      TARGET_IOWR('T', 0x05,    \
2471aca7708eSFilip Bozuta                                                           struct target_snd_timer_gstatus)
2472d22edf0aSFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_SELECT       TARGET_IOW('T', 0x10,     \
2473d22edf0aSFilip Bozuta                                                          struct target_snd_timer_select)
2474fe333025SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_INFO         TARGET_IOR('T', 0x11,     \
2475fe333025SFilip Bozuta                                                          struct target_snd_timer_info)
2476fe333025SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_PARAMS       TARGET_IOW('T', 0x12,     \
2477fe333025SFilip Bozuta                                                          struct snd_timer_params)
2478fe333025SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_STATUS       TARGET_IOR('T', 0x14,     \
2479fe333025SFilip Bozuta                                                          struct target_snd_timer_status)
2480045823a9SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_START        TARGET_IO('T', 0xa0)
2481045823a9SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_STOP         TARGET_IO('T', 0xa1)
2482045823a9SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_CONTINUE     TARGET_IO('T', 0xa2)
2483045823a9SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_PAUSE        TARGET_IO('T', 0xa3)
24841c4c6fcdSFilip Bozuta 
24852521d698Sbellard /* vfat ioctls */
24862521d698Sbellard #define TARGET_VFAT_IOCTL_READDIR_BOTH    TARGET_IORU('r', 1)
24872521d698Sbellard #define TARGET_VFAT_IOCTL_READDIR_SHORT   TARGET_IORU('r', 2)
2488a5448a7dSbellard 
2489f443e396SPeter Maydell struct target_mtop {
2490f443e396SPeter Maydell     abi_short mt_op;
2491f443e396SPeter Maydell     abi_int mt_count;
2492f443e396SPeter Maydell };
2493f443e396SPeter Maydell 
2494f443e396SPeter Maydell #if defined(TARGET_SPARC) || defined(TARGET_MIPS)
2495f443e396SPeter Maydell typedef abi_long target_kernel_daddr_t;
2496f443e396SPeter Maydell #else
2497f443e396SPeter Maydell typedef abi_int target_kernel_daddr_t;
2498f443e396SPeter Maydell #endif
2499f443e396SPeter Maydell 
2500f443e396SPeter Maydell struct target_mtget {
2501f443e396SPeter Maydell     abi_long mt_type;
2502f443e396SPeter Maydell     abi_long mt_resid;
2503f443e396SPeter Maydell     abi_long mt_dsreg;
2504f443e396SPeter Maydell     abi_long mt_gstat;
2505f443e396SPeter Maydell     abi_long mt_erreg;
2506f443e396SPeter Maydell     target_kernel_daddr_t mt_fileno;
2507f443e396SPeter Maydell     target_kernel_daddr_t mt_blkno;
2508f443e396SPeter Maydell };
2509f443e396SPeter Maydell 
2510f443e396SPeter Maydell struct target_mtpos {
2511f443e396SPeter Maydell     abi_long mt_blkno;
2512f443e396SPeter Maydell };
2513f443e396SPeter Maydell 
2514f443e396SPeter Maydell #define TARGET_MTIOCTOP        TARGET_IOW('m', 1, struct target_mtop)
2515f443e396SPeter Maydell #define TARGET_MTIOCGET        TARGET_IOR('m', 2, struct target_mtget)
2516f443e396SPeter Maydell #define TARGET_MTIOCPOS        TARGET_IOR('m', 3, struct target_mtpos)
25178fbd6b52Sbalrog 
2518bd27e675SAleksandar Markovic /* kcov ioctls */
2519bd27e675SAleksandar Markovic #define TARGET_KCOV_ENABLE     TARGET_IO('c', 100)
2520bd27e675SAleksandar Markovic #define TARGET_KCOV_DISABLE    TARGET_IO('c', 101)
2521f7dbd8feSAleksandar Markovic #define TARGET_KCOV_INIT_TRACE TARGET_IOR('c', 1, abi_ulong)
2522bd27e675SAleksandar Markovic 
2523a5448a7dSbellard struct target_sysinfo {
2524992f48a0Sblueswir1     abi_long uptime;                /* Seconds since boot */
2525992f48a0Sblueswir1     abi_ulong loads[3];             /* 1, 5, and 15 minute load averages */
2526992f48a0Sblueswir1     abi_ulong totalram;             /* Total usable main memory size */
2527992f48a0Sblueswir1     abi_ulong freeram;              /* Available memory size */
2528992f48a0Sblueswir1     abi_ulong sharedram;            /* Amount of shared memory */
2529992f48a0Sblueswir1     abi_ulong bufferram;            /* Memory used by buffers */
2530992f48a0Sblueswir1     abi_ulong totalswap;            /* Total swap space size */
2531992f48a0Sblueswir1     abi_ulong freeswap;             /* swap space still available */
253277e935f4SRichard Henderson     abi_ushort procs;               /* Number of current processes */
253377e935f4SRichard Henderson     abi_ushort pad;                 /* explicit padding for m68k */
2534992f48a0Sblueswir1     abi_ulong totalhigh;            /* Total high memory size */
2535992f48a0Sblueswir1     abi_ulong freehigh;             /* Available high memory size */
2536c7828bd1SRichard Henderson     abi_uint mem_unit;              /* Memory unit size in bytes */
2537992f48a0Sblueswir1     char _f[20-2*sizeof(abi_long)-sizeof(int)]; /* Padding: libc5 uses this.. */
2538a5448a7dSbellard };
25393532fa74Sbellard 
25406556a833Saurel32 struct linux_dirent {
25416556a833Saurel32     long            d_ino;
25426556a833Saurel32     unsigned long   d_off;
25436556a833Saurel32     unsigned short  d_reclen;
2544540a736fSRichard Henderson     char            d_name[];
25456556a833Saurel32 };
25466556a833Saurel32 
25476556a833Saurel32 struct linux_dirent64 {
25486556a833Saurel32     uint64_t        d_ino;
25496556a833Saurel32     int64_t         d_off;
25506556a833Saurel32     unsigned short  d_reclen;
25516556a833Saurel32     unsigned char   d_type;
2552540a736fSRichard Henderson     char            d_name[];
25536556a833Saurel32 };
25546556a833Saurel32 
255524e1003aSaurel32 struct target_mq_attr {
255624e1003aSaurel32     abi_long mq_flags;
255724e1003aSaurel32     abi_long mq_maxmsg;
255824e1003aSaurel32     abi_long mq_msgsize;
255924e1003aSaurel32     abi_long mq_curmsgs;
256024e1003aSaurel32 };
256124e1003aSaurel32 
2562e865b97fSChen Gang struct target_drm_version {
2563b3c719b2SRichard Henderson     abi_int version_major;
2564b3c719b2SRichard Henderson     abi_int version_minor;
2565b3c719b2SRichard Henderson     abi_int version_patchlevel;
2566e865b97fSChen Gang     abi_ulong name_len;
2567e865b97fSChen Gang     abi_ulong name;
2568e865b97fSChen Gang     abi_ulong date_len;
2569e865b97fSChen Gang     abi_ulong date;
2570e865b97fSChen Gang     abi_ulong desc_len;
2571e865b97fSChen Gang     abi_ulong desc;
2572e865b97fSChen Gang };
2573e865b97fSChen Gang 
2574913b03c2SChen Gang struct target_drm_i915_getparam {
2575b3c719b2SRichard Henderson     abi_int param;
2576913b03c2SChen Gang     abi_ulong value;
2577913b03c2SChen Gang };
2578913b03c2SChen Gang 
25793532fa74Sbellard #include "socket.h"
2580637947f1Sths 
25818f968b6aSPhilippe Mathieu-Daudé #include "target_errno_defs.h"
258203dfe9f8SRiku Voipio 
258303dfe9f8SRiku Voipio #define FUTEX_WAIT              0
258403dfe9f8SRiku Voipio #define FUTEX_WAKE              1
258503dfe9f8SRiku Voipio #define FUTEX_FD                2
258603dfe9f8SRiku Voipio #define FUTEX_REQUEUE           3
258703dfe9f8SRiku Voipio #define FUTEX_CMP_REQUEUE       4
258803dfe9f8SRiku Voipio #define FUTEX_WAKE_OP           5
258903dfe9f8SRiku Voipio #define FUTEX_LOCK_PI           6
259003dfe9f8SRiku Voipio #define FUTEX_UNLOCK_PI         7
259103dfe9f8SRiku Voipio #define FUTEX_TRYLOCK_PI        8
259203dfe9f8SRiku Voipio #define FUTEX_WAIT_BITSET       9
259303dfe9f8SRiku Voipio #define FUTEX_WAKE_BITSET       10
2594c72a90dfSRichard Henderson #define FUTEX_WAIT_REQUEUE_PI   11
2595c72a90dfSRichard Henderson #define FUTEX_CMP_REQUEUE_PI    12
2596c72a90dfSRichard Henderson #define FUTEX_LOCK_PI2          13
259703dfe9f8SRiku Voipio 
259803dfe9f8SRiku Voipio #define FUTEX_PRIVATE_FLAG      128
259903dfe9f8SRiku Voipio #define FUTEX_CLOCK_REALTIME    256
260003dfe9f8SRiku Voipio #define FUTEX_CMD_MASK          ~(FUTEX_PRIVATE_FLAG | FUTEX_CLOCK_REALTIME)
260103dfe9f8SRiku Voipio 
26023b6edd16SPeter Maydell #ifdef CONFIG_EPOLL
2603928bed6aSLaurent Vivier #if defined(TARGET_X86_64)
2604928bed6aSLaurent Vivier #define TARGET_EPOLL_PACKED QEMU_PACKED
2605928bed6aSLaurent Vivier #else
2606928bed6aSLaurent Vivier #define TARGET_EPOLL_PACKED
2607928bed6aSLaurent Vivier #endif
2608928bed6aSLaurent Vivier 
26093b6edd16SPeter Maydell typedef union target_epoll_data {
26103b6edd16SPeter Maydell     abi_ulong ptr;
2611928bed6aSLaurent Vivier     abi_int fd;
2612928bed6aSLaurent Vivier     abi_uint u32;
2613928bed6aSLaurent Vivier     abi_ullong u64;
26143b6edd16SPeter Maydell } target_epoll_data_t;
26153b6edd16SPeter Maydell 
26163b6edd16SPeter Maydell struct target_epoll_event {
2617928bed6aSLaurent Vivier     abi_uint events;
26183b6edd16SPeter Maydell     target_epoll_data_t data;
2619928bed6aSLaurent Vivier } TARGET_EPOLL_PACKED;
26202ba7fae3SPeter Maydell 
26212ba7fae3SPeter Maydell #define TARGET_EP_MAX_EVENTS (INT_MAX / sizeof(struct target_epoll_event))
26222ba7fae3SPeter Maydell 
26233b6edd16SPeter Maydell #endif
2624583359a6SAkos PASZTORY 
2625583359a6SAkos PASZTORY struct target_ucred {
2626f6ee1627SRichard Henderson     abi_uint pid;
2627f6ee1627SRichard Henderson     abi_uint uid;
2628f6ee1627SRichard Henderson     abi_uint gid;
2629583359a6SAkos PASZTORY };
2630cb9c377fSPaolo Bonzini 
26315dc0c971SRichard Henderson typedef abi_int target_timer_t;
2632905bba13SErik de Castro Lopo 
263334d60862SNatanael Copa #define TARGET_SIGEV_MAX_SIZE 64
263434d60862SNatanael Copa 
263534d60862SNatanael Copa /* This is architecture-specific but most architectures use the default */
263634d60862SNatanael Copa #ifdef TARGET_MIPS
26375dc0c971SRichard Henderson #define TARGET_SIGEV_PREAMBLE_SIZE (sizeof(abi_int) * 2 + sizeof(abi_long))
263834d60862SNatanael Copa #else
26395dc0c971SRichard Henderson #define TARGET_SIGEV_PREAMBLE_SIZE (sizeof(abi_int) * 2         \
264034d60862SNatanael Copa                                     + sizeof(target_sigval_t))
264134d60862SNatanael Copa #endif
264234d60862SNatanael Copa 
264334d60862SNatanael Copa #define TARGET_SIGEV_PAD_SIZE ((TARGET_SIGEV_MAX_SIZE           \
264434d60862SNatanael Copa                                 - TARGET_SIGEV_PREAMBLE_SIZE)   \
26455dc0c971SRichard Henderson                                / sizeof(abi_int))
264634d60862SNatanael Copa 
2647905bba13SErik de Castro Lopo struct target_sigevent {
2648905bba13SErik de Castro Lopo     target_sigval_t sigev_value;
264917351c3fSPeter Maydell     abi_int sigev_signo;
265017351c3fSPeter Maydell     abi_int sigev_notify;
2651905bba13SErik de Castro Lopo     union {
265217351c3fSPeter Maydell         abi_int _pad[TARGET_SIGEV_PAD_SIZE];
265317351c3fSPeter Maydell         abi_int _tid;
2654905bba13SErik de Castro Lopo 
265517351c3fSPeter Maydell         /* The kernel (and thus QEMU) never looks at these;
265617351c3fSPeter Maydell          * they're only used as part of the ABI between a
265717351c3fSPeter Maydell          * userspace program and libc.
265817351c3fSPeter Maydell          */
2659905bba13SErik de Castro Lopo         struct {
266017351c3fSPeter Maydell             abi_ulong _function;
266117351c3fSPeter Maydell             abi_ulong _attribute;
2662905bba13SErik de Castro Lopo         } _sigev_thread;
2663905bba13SErik de Castro Lopo     } _sigev_un;
2664905bba13SErik de Castro Lopo };
2665e0eb210eSPeter Maydell 
2666e0eb210eSPeter Maydell struct target_user_cap_header {
2667f6ee1627SRichard Henderson     abi_uint version;
2668b3c719b2SRichard Henderson     abi_int  pid;
2669e0eb210eSPeter Maydell };
2670e0eb210eSPeter Maydell 
2671e0eb210eSPeter Maydell struct target_user_cap_data {
2672f6ee1627SRichard Henderson     abi_uint effective;
2673f6ee1627SRichard Henderson     abi_uint permitted;
2674f6ee1627SRichard Henderson     abi_uint inheritable;
2675e0eb210eSPeter Maydell };
26761b3c4fdfSMarkus Armbruster 
2677da2c8ad7SAleksandar Markovic /* from kernel's include/linux/syslog.h */
2678da2c8ad7SAleksandar Markovic 
2679da2c8ad7SAleksandar Markovic /* Close the log.  Currently a NOP. */
2680da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_CLOSE          0
2681da2c8ad7SAleksandar Markovic /* Open the log. Currently a NOP. */
2682da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_OPEN           1
2683da2c8ad7SAleksandar Markovic /* Read from the log. */
2684da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_READ           2
2685da2c8ad7SAleksandar Markovic /* Read all messages remaining in the ring buffer. */
2686da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_READ_ALL       3
2687da2c8ad7SAleksandar Markovic /* Read and clear all messages remaining in the ring buffer */
2688da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_READ_CLEAR     4
2689da2c8ad7SAleksandar Markovic /* Clear ring buffer. */
2690da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_CLEAR          5
2691da2c8ad7SAleksandar Markovic /* Disable printk's to console */
2692da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_CONSOLE_OFF    6
2693da2c8ad7SAleksandar Markovic /* Enable printk's to console */
2694da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_CONSOLE_ON     7
2695da2c8ad7SAleksandar Markovic /* Set level of messages printed to console */
2696da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_CONSOLE_LEVEL  8
2697da2c8ad7SAleksandar Markovic /* Return number of unread characters in the log buffer */
2698da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_SIZE_UNREAD    9
2699da2c8ad7SAleksandar Markovic /* Return size of the log buffer */
2700da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_SIZE_BUFFER   10
2701da2c8ad7SAleksandar Markovic 
2702efa92184SAleksandar Rikalo struct target_statx_timestamp {
270393c5c6cdSRichard Henderson     abi_llong tv_sec;
2704f6ee1627SRichard Henderson     abi_uint tv_nsec;
27055dc0c971SRichard Henderson     abi_int __reserved;
2706efa92184SAleksandar Rikalo };
2707efa92184SAleksandar Rikalo 
2708efa92184SAleksandar Rikalo struct target_statx {
2709efa92184SAleksandar Rikalo     /* 0x00 */
2710f6ee1627SRichard Henderson     abi_uint stx_mask;       /* What results were written [uncond] */
2711f6ee1627SRichard Henderson     abi_uint stx_blksize;    /* Preferred general I/O size [uncond] */
27127af406a6SRichard Henderson     abi_ullong stx_attributes; /* Flags conveying information about the file */
2713efa92184SAleksandar Rikalo     /* 0x10 */
2714f6ee1627SRichard Henderson     abi_uint stx_nlink;      /* Number of hard links */
2715f6ee1627SRichard Henderson     abi_uint stx_uid;        /* User ID of owner */
2716f6ee1627SRichard Henderson     abi_uint stx_gid;        /* Group ID of owner */
2717efa92184SAleksandar Rikalo     uint16_t stx_mode;       /* File mode */
2718efa92184SAleksandar Rikalo     uint16_t __spare0[1];
2719efa92184SAleksandar Rikalo     /* 0x20 */
27207af406a6SRichard Henderson     abi_ullong stx_ino;      /* Inode number */
27217af406a6SRichard Henderson     abi_ullong stx_size;     /* File size */
27227af406a6SRichard Henderson     abi_ullong stx_blocks;   /* Number of 512-byte blocks allocated */
27237af406a6SRichard Henderson     abi_ullong stx_attributes_mask; /* Mask to show what is supported */
2724efa92184SAleksandar Rikalo     /* 0x40 */
2725efa92184SAleksandar Rikalo     struct target_statx_timestamp  stx_atime;  /* Last access time */
2726efa92184SAleksandar Rikalo     struct target_statx_timestamp  stx_btime;  /* File creation time */
2727efa92184SAleksandar Rikalo     struct target_statx_timestamp  stx_ctime;  /* Last attribute change time */
2728efa92184SAleksandar Rikalo     struct target_statx_timestamp  stx_mtime;  /* Last data modification time */
2729efa92184SAleksandar Rikalo     /* 0x80 */
2730f6ee1627SRichard Henderson     abi_uint stx_rdev_major;   /* Device ID of special file [if bdev/cdev] */
2731f6ee1627SRichard Henderson     abi_uint stx_rdev_minor;
2732f6ee1627SRichard Henderson     abi_uint stx_dev_major; /* ID of device containing file [uncond] */
2733f6ee1627SRichard Henderson     abi_uint stx_dev_minor;
2734efa92184SAleksandar Rikalo     /* 0x90 */
27357af406a6SRichard Henderson     abi_ullong __spare2[14]; /* Spare space for future expansion */
2736efa92184SAleksandar Rikalo     /* 0x100 */
2737efa92184SAleksandar Rikalo };
2738efa92184SAleksandar Rikalo 
273945ad761cSTonis Tiigi /* from kernel's include/linux/sched/types.h */
274045ad761cSTonis Tiigi struct target_sched_attr {
274145ad761cSTonis Tiigi     abi_uint size;
274245ad761cSTonis Tiigi     abi_uint sched_policy;
274345ad761cSTonis Tiigi     abi_ullong sched_flags;
274445ad761cSTonis Tiigi     abi_int sched_nice;
274545ad761cSTonis Tiigi     abi_uint sched_priority;
274645ad761cSTonis Tiigi     abi_ullong sched_runtime;
274745ad761cSTonis Tiigi     abi_ullong sched_deadline;
274845ad761cSTonis Tiigi     abi_ullong sched_period;
274945ad761cSTonis Tiigi     abi_uint sched_util_min;
275045ad761cSTonis Tiigi     abi_uint sched_util_max;
275145ad761cSTonis Tiigi };
275245ad761cSTonis Tiigi 
2753407a119bSTonis Tiigi struct target_sched_param {
2754407a119bSTonis Tiigi     abi_int sched_priority;
2755407a119bSTonis Tiigi };
2756407a119bSTonis Tiigi 
27571b3c4fdfSMarkus Armbruster #endif
2758