xref: /openbmc/qemu/linux-user/syscall_defs.h (revision 6b99bb046dd36a6dd5525b8f88c2dcddae49222a)
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))                 \
65bff4b02cSPhilippe Mathieu-Daudé     || defined(TARGET_M68K) || defined(TARGET_SH4)
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)  \
74bff4b02cSPhilippe Mathieu-Daudé     || defined(TARGET_M68K)                                             \
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 *
__target_cmsg_nxthdr(struct target_msghdr * __mhdr,struct target_cmsghdr * __cmsg,struct target_cmsghdr * __cmsg_start)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
tswap_sigset(target_sigset_t * d,const target_sigset_t * s)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
tswap_sigset(target_sigset_t * d,const target_sigset_t * s)473c227f099SAnthony Liguori static inline void tswap_sigset(target_sigset_t *d, const target_sigset_t *s)
47466fb9763Sbellard {
47566fb9763Sbellard     *d = *s;
47666fb9763Sbellard }
47766fb9763Sbellard #endif
47866fb9763Sbellard 
target_siginitset(target_sigset_t * d,abi_ulong set)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)
9487048fc59SMichael 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))     \
1237bff4b02cSPhilippe Mathieu-Daudé     || (defined(TARGET_ARM) && defined(TARGET_ABI32))
12385f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
12392521d698Sbellard struct target_stat {
124077e935f4SRichard Henderson     abi_ushort st_dev;
124177e935f4SRichard Henderson     abi_ushort __pad1;
1242992f48a0Sblueswir1     abi_ulong st_ino;
124377e935f4SRichard Henderson     abi_ushort st_mode;
124477e935f4SRichard Henderson     abi_ushort st_nlink;
124577e935f4SRichard Henderson     abi_ushort st_uid;
124677e935f4SRichard Henderson     abi_ushort st_gid;
124777e935f4SRichard Henderson     abi_ushort st_rdev;
124877e935f4SRichard Henderson     abi_ushort __pad2;
1249992f48a0Sblueswir1     abi_ulong  st_size;
1250992f48a0Sblueswir1     abi_ulong  st_blksize;
1251992f48a0Sblueswir1     abi_ulong  st_blocks;
1252992f48a0Sblueswir1     abi_ulong  target_st_atime;
12535f992db6SChen-Yu Tsai     abi_ulong  target_st_atime_nsec;
1254992f48a0Sblueswir1     abi_ulong  target_st_mtime;
12555f992db6SChen-Yu Tsai     abi_ulong  target_st_mtime_nsec;
1256992f48a0Sblueswir1     abi_ulong  target_st_ctime;
12575f992db6SChen-Yu Tsai     abi_ulong  target_st_ctime_nsec;
1258992f48a0Sblueswir1     abi_ulong  __unused4;
1259992f48a0Sblueswir1     abi_ulong  __unused5;
12602521d698Sbellard };
12612521d698Sbellard 
12622521d698Sbellard /* This matches struct stat64 in glibc2.1, hence the absolutely
12632521d698Sbellard  * insane amounts of padding around dev_t's.
12642521d698Sbellard  */
126520d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
12662521d698Sbellard struct target_stat64 {
126777e935f4SRichard Henderson     abi_ushort      st_dev;
12682521d698Sbellard     unsigned char   __pad0[10];
12692521d698Sbellard 
12702521d698Sbellard #define TARGET_STAT64_HAS_BROKEN_ST_INO 1
1271992f48a0Sblueswir1     abi_ulong       __st_ino;
12722521d698Sbellard 
1273c7828bd1SRichard Henderson     abi_uint        st_mode;
1274c7828bd1SRichard Henderson     abi_uint        st_nlink;
12752521d698Sbellard 
1276992f48a0Sblueswir1     abi_ulong       st_uid;
1277992f48a0Sblueswir1     abi_ulong       st_gid;
12782521d698Sbellard 
127977e935f4SRichard Henderson     abi_ushort      st_rdev;
12802521d698Sbellard     unsigned char   __pad3[10];
12812521d698Sbellard 
128255a1bcffSRichard Henderson     abi_llong       st_size;
1283992f48a0Sblueswir1     abi_ulong       st_blksize;
12842521d698Sbellard 
1285992f48a0Sblueswir1     abi_ulong       st_blocks;      /* Number 512-byte blocks allocated. */
1286992f48a0Sblueswir1     abi_ulong       __pad4;         /* future possible st_blocks high bits */
12872521d698Sbellard 
1288992f48a0Sblueswir1     abi_ulong       target_st_atime;
12895f992db6SChen-Yu Tsai     abi_ulong       target_st_atime_nsec;
12902521d698Sbellard 
1291992f48a0Sblueswir1     abi_ulong       target_st_mtime;
12925f992db6SChen-Yu Tsai     abi_ulong       target_st_mtime_nsec;
12932521d698Sbellard 
1294992f48a0Sblueswir1     abi_ulong       target_st_ctime;
12955f992db6SChen-Yu Tsai     abi_ulong       target_st_ctime_nsec;
12962521d698Sbellard 
12976c977729SRichard Henderson     abi_ullong      st_ino;
1298541dc0d4SStefan Weil } QEMU_PACKED;
12992521d698Sbellard 
1300ce4defa0Spbrook #ifdef TARGET_ARM
130120d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1302ce4defa0Spbrook struct target_eabi_stat64 {
13036c977729SRichard Henderson     abi_ullong   st_dev;
1304c7828bd1SRichard Henderson     abi_uint     __pad1;
1305992f48a0Sblueswir1     abi_ulong    __st_ino;
1306c7828bd1SRichard Henderson     abi_uint     st_mode;
1307c7828bd1SRichard Henderson     abi_uint     st_nlink;
1308ce4defa0Spbrook 
1309992f48a0Sblueswir1     abi_ulong    st_uid;
1310992f48a0Sblueswir1     abi_ulong    st_gid;
1311ce4defa0Spbrook 
13126c977729SRichard Henderson     abi_ullong   st_rdev;
1313c7828bd1SRichard Henderson     abi_uint     __pad2[2];
1314ce4defa0Spbrook 
131555a1bcffSRichard Henderson     abi_llong       st_size;
1316992f48a0Sblueswir1     abi_ulong    st_blksize;
1317c7828bd1SRichard Henderson     abi_uint     __pad3;
13186c977729SRichard Henderson     abi_ullong   st_blocks;
1319ce4defa0Spbrook 
1320992f48a0Sblueswir1     abi_ulong    target_st_atime;
1321992f48a0Sblueswir1     abi_ulong    target_st_atime_nsec;
1322ce4defa0Spbrook 
1323992f48a0Sblueswir1     abi_ulong    target_st_mtime;
1324992f48a0Sblueswir1     abi_ulong    target_st_mtime_nsec;
1325ce4defa0Spbrook 
1326992f48a0Sblueswir1     abi_ulong    target_st_ctime;
1327992f48a0Sblueswir1     abi_ulong    target_st_ctime_nsec;
1328ce4defa0Spbrook 
13296c977729SRichard Henderson     abi_ullong   st_ino;
1330541dc0d4SStefan Weil } QEMU_PACKED;
1331ce4defa0Spbrook #endif
1332ce4defa0Spbrook 
1333992f48a0Sblueswir1 #elif defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
13341b8dd648Sblueswir1 struct target_stat {
1335c7828bd1SRichard Henderson     abi_uint        st_dev;
1336992f48a0Sblueswir1     abi_ulong       st_ino;
1337c7828bd1SRichard Henderson     abi_uint        st_mode;
1338c7828bd1SRichard Henderson     abi_uint        st_nlink;
1339c7828bd1SRichard Henderson     abi_uint        st_uid;
1340c7828bd1SRichard Henderson     abi_uint        st_gid;
1341c7828bd1SRichard Henderson     abi_uint        st_rdev;
1342992f48a0Sblueswir1     abi_long        st_size;
1343992f48a0Sblueswir1     abi_long        target_st_atime;
1344992f48a0Sblueswir1     abi_long        target_st_mtime;
1345992f48a0Sblueswir1     abi_long        target_st_ctime;
1346992f48a0Sblueswir1     abi_long        st_blksize;
1347992f48a0Sblueswir1     abi_long        st_blocks;
1348992f48a0Sblueswir1     abi_ulong       __unused4[2];
13491b8dd648Sblueswir1 };
13501b8dd648Sblueswir1 
135120d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
13521b8dd648Sblueswir1 struct target_stat64 {
13531b8dd648Sblueswir1     unsigned char   __pad0[6];
135477e935f4SRichard Henderson     abi_ushort      st_dev;
13551b8dd648Sblueswir1 
13567af406a6SRichard Henderson     abi_ullong      st_ino;
13577af406a6SRichard Henderson     abi_ullong      st_nlink;
13581b8dd648Sblueswir1 
1359c7828bd1SRichard Henderson     abi_uint        st_mode;
13601b8dd648Sblueswir1 
1361c7828bd1SRichard Henderson     abi_uint        st_uid;
1362c7828bd1SRichard Henderson     abi_uint        st_gid;
13631b8dd648Sblueswir1 
13641b8dd648Sblueswir1     unsigned char   __pad2[6];
136577e935f4SRichard Henderson     abi_ushort      st_rdev;
13661b8dd648Sblueswir1 
136793c5c6cdSRichard Henderson     abi_llong       st_size;
136893c5c6cdSRichard Henderson     abi_llong       st_blksize;
13691b8dd648Sblueswir1 
13701b8dd648Sblueswir1     unsigned char   __pad4[4];
1371c7828bd1SRichard Henderson     abi_uint        st_blocks;
13721b8dd648Sblueswir1 
1373992f48a0Sblueswir1     abi_ulong       target_st_atime;
13745f992db6SChen-Yu Tsai     abi_ulong       target_st_atime_nsec;
13751b8dd648Sblueswir1 
1376992f48a0Sblueswir1     abi_ulong       target_st_mtime;
13775f992db6SChen-Yu Tsai     abi_ulong       target_st_mtime_nsec;
13781b8dd648Sblueswir1 
1379992f48a0Sblueswir1     abi_ulong       target_st_ctime;
13805f992db6SChen-Yu Tsai     abi_ulong       target_st_ctime_nsec;
13811b8dd648Sblueswir1 
1382992f48a0Sblueswir1     abi_ulong       __unused4[3];
13831b8dd648Sblueswir1 };
13841b8dd648Sblueswir1 
13853bfd9da1Sbellard #elif defined(TARGET_SPARC)
13863bfd9da1Sbellard 
13875f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
13883bfd9da1Sbellard struct target_stat {
138977e935f4SRichard Henderson     abi_ushort      st_dev;
1390992f48a0Sblueswir1     abi_ulong       st_ino;
139177e935f4SRichard Henderson     abi_ushort      st_mode;
139220d49567SRichard Henderson     abi_short       st_nlink;
139377e935f4SRichard Henderson     abi_ushort      st_uid;
139477e935f4SRichard Henderson     abi_ushort      st_gid;
139577e935f4SRichard Henderson     abi_ushort      st_rdev;
1396992f48a0Sblueswir1     abi_long        st_size;
1397992f48a0Sblueswir1     abi_long        target_st_atime;
13985f992db6SChen-Yu Tsai     abi_ulong       target_st_atime_nsec;
1399992f48a0Sblueswir1     abi_long        target_st_mtime;
14005f992db6SChen-Yu Tsai     abi_ulong       target_st_mtime_nsec;
1401992f48a0Sblueswir1     abi_long        target_st_ctime;
14025f992db6SChen-Yu Tsai     abi_ulong       target_st_ctime_nsec;
1403992f48a0Sblueswir1     abi_long        st_blksize;
1404992f48a0Sblueswir1     abi_long        st_blocks;
14055f992db6SChen-Yu Tsai     abi_ulong       __unused1[2];
14063bfd9da1Sbellard };
14073bfd9da1Sbellard 
140820d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
14093bfd9da1Sbellard struct target_stat64 {
14103bfd9da1Sbellard     unsigned char   __pad0[6];
141177e935f4SRichard Henderson     abi_ushort      st_dev;
14123bfd9da1Sbellard 
14137af406a6SRichard Henderson     abi_ullong      st_ino;
14143bfd9da1Sbellard 
1415c7828bd1SRichard Henderson     abi_uint        st_mode;
1416c7828bd1SRichard Henderson     abi_uint        st_nlink;
14173bfd9da1Sbellard 
1418c7828bd1SRichard Henderson     abi_uint        st_uid;
1419c7828bd1SRichard Henderson     abi_uint        st_gid;
14203bfd9da1Sbellard 
14213bfd9da1Sbellard     unsigned char   __pad2[6];
142277e935f4SRichard Henderson     abi_ushort      st_rdev;
14233bfd9da1Sbellard 
14243bfd9da1Sbellard     unsigned char   __pad3[8];
14253bfd9da1Sbellard 
142693c5c6cdSRichard Henderson     abi_llong       st_size;
1427c7828bd1SRichard Henderson     abi_uint        st_blksize;
14283bfd9da1Sbellard 
14293bfd9da1Sbellard     unsigned char   __pad4[8];
1430c7828bd1SRichard Henderson     abi_uint        st_blocks;
14313bfd9da1Sbellard 
1432c7828bd1SRichard Henderson     abi_uint        target_st_atime;
1433c7828bd1SRichard Henderson     abi_uint        target_st_atime_nsec;
14343bfd9da1Sbellard 
1435c7828bd1SRichard Henderson     abi_uint        target_st_mtime;
1436c7828bd1SRichard Henderson     abi_uint        target_st_mtime_nsec;
14373bfd9da1Sbellard 
1438c7828bd1SRichard Henderson     abi_uint        target_st_ctime;
1439c7828bd1SRichard Henderson     abi_uint        target_st_ctime_nsec;
14403bfd9da1Sbellard 
1441c7828bd1SRichard Henderson     abi_uint        __unused1;
1442c7828bd1SRichard Henderson     abi_uint        __unused2;
14433bfd9da1Sbellard };
14443bfd9da1Sbellard 
144567867308Sbellard #elif defined(TARGET_PPC)
144667867308Sbellard 
14475f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
144867867308Sbellard struct target_stat {
1449e32448e0Sj_mayer     abi_ulong st_dev;
1450992f48a0Sblueswir1     abi_ulong st_ino;
145174154d7eSThomas Huth #if defined(TARGET_PPC64)
1452e32448e0Sj_mayer     abi_ulong st_nlink;
1453c7828bd1SRichard Henderson     abi_uint  st_mode;
1454325e651fSj_mayer #else
1455c7828bd1SRichard Henderson     abi_uint  st_mode;
145677e935f4SRichard Henderson     abi_ushort st_nlink;
1457325e651fSj_mayer #endif
1458c7828bd1SRichard Henderson     abi_uint   st_uid;
1459c7828bd1SRichard Henderson     abi_uint   st_gid;
1460e32448e0Sj_mayer     abi_ulong  st_rdev;
1461992f48a0Sblueswir1     abi_ulong  st_size;
1462992f48a0Sblueswir1     abi_ulong  st_blksize;
1463992f48a0Sblueswir1     abi_ulong  st_blocks;
1464992f48a0Sblueswir1     abi_ulong  target_st_atime;
1465e32448e0Sj_mayer     abi_ulong  target_st_atime_nsec;
1466992f48a0Sblueswir1     abi_ulong  target_st_mtime;
1467e32448e0Sj_mayer     abi_ulong  target_st_mtime_nsec;
1468992f48a0Sblueswir1     abi_ulong  target_st_ctime;
1469e32448e0Sj_mayer     abi_ulong  target_st_ctime_nsec;
1470992f48a0Sblueswir1     abi_ulong  __unused4;
1471992f48a0Sblueswir1     abi_ulong  __unused5;
147274154d7eSThomas Huth #if defined(TARGET_PPC64)
1473325e651fSj_mayer     abi_ulong  __unused6;
1474325e651fSj_mayer #endif
147567867308Sbellard };
147667867308Sbellard 
147774154d7eSThomas Huth #if !defined(TARGET_PPC64)
147820d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1479541dc0d4SStefan Weil struct QEMU_PACKED target_stat64 {
14806c977729SRichard Henderson     abi_ullong st_dev;
14816c977729SRichard Henderson     abi_ullong st_ino;
1482c7828bd1SRichard Henderson     abi_uint st_mode;
1483c7828bd1SRichard Henderson     abi_uint st_nlink;
1484c7828bd1SRichard Henderson     abi_uint st_uid;
1485c7828bd1SRichard Henderson     abi_uint st_gid;
14866c977729SRichard Henderson     abi_ullong st_rdev;
14876c977729SRichard Henderson     abi_ullong __pad0;
148855a1bcffSRichard Henderson     abi_llong      st_size;
1489b3c719b2SRichard Henderson     abi_int        st_blksize;
1490c7828bd1SRichard Henderson     abi_uint       __pad1;
149155a1bcffSRichard Henderson     abi_llong      st_blocks;       /* Number 512-byte blocks allocated. */
1492b3c719b2SRichard Henderson     abi_int        target_st_atime;
1493c7828bd1SRichard Henderson     abi_uint       target_st_atime_nsec;
1494b3c719b2SRichard Henderson     abi_int        target_st_mtime;
1495c7828bd1SRichard Henderson     abi_uint       target_st_mtime_nsec;
1496b3c719b2SRichard Henderson     abi_int        target_st_ctime;
1497c7828bd1SRichard Henderson     abi_uint       target_st_ctime_nsec;
1498c7828bd1SRichard Henderson     abi_uint       __unused4;
1499c7828bd1SRichard Henderson     abi_uint       __unused5;
150067867308Sbellard };
150120d155bcSStefan Weil #endif
150267867308Sbellard 
1503b779e29eSEdgar E. Iglesias #elif defined(TARGET_MICROBLAZE)
1504b779e29eSEdgar E. Iglesias 
15055f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1506b779e29eSEdgar E. Iglesias struct target_stat {
1507b779e29eSEdgar E. Iglesias     abi_ulong st_dev;
1508b779e29eSEdgar E. Iglesias     abi_ulong st_ino;
1509c7828bd1SRichard Henderson     abi_uint st_mode;
151077e935f4SRichard Henderson     abi_ushort st_nlink;
1511c7828bd1SRichard Henderson     abi_uint st_uid;
1512c7828bd1SRichard Henderson     abi_uint st_gid;
1513b779e29eSEdgar E. Iglesias     abi_ulong  st_rdev;
1514b779e29eSEdgar E. Iglesias     abi_ulong  st_size;
1515b779e29eSEdgar E. Iglesias     abi_ulong  st_blksize;
1516b779e29eSEdgar E. Iglesias     abi_ulong  st_blocks;
1517b779e29eSEdgar E. Iglesias     abi_ulong  target_st_atime;
1518b779e29eSEdgar E. Iglesias     abi_ulong  target_st_atime_nsec;
1519b779e29eSEdgar E. Iglesias     abi_ulong  target_st_mtime;
1520b779e29eSEdgar E. Iglesias     abi_ulong  target_st_mtime_nsec;
1521b779e29eSEdgar E. Iglesias     abi_ulong  target_st_ctime;
1522b779e29eSEdgar E. Iglesias     abi_ulong  target_st_ctime_nsec;
1523b779e29eSEdgar E. Iglesias     abi_ulong  __unused4;
1524b779e29eSEdgar E. Iglesias     abi_ulong  __unused5;
1525b779e29eSEdgar E. Iglesias };
1526b779e29eSEdgar E. Iglesias 
1527b779e29eSEdgar E. Iglesias /* FIXME: Microblaze no-mmu user-space has a difference stat64 layout...  */
152820d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1529541dc0d4SStefan Weil struct QEMU_PACKED target_stat64 {
15307af406a6SRichard Henderson     abi_ullong st_dev;
1531a523eb06SEdgar E. Iglesias #define TARGET_STAT64_HAS_BROKEN_ST_INO 1
1532f6ee1627SRichard Henderson     abi_uint pad0;
1533f6ee1627SRichard Henderson     abi_uint __st_ino;
1534a523eb06SEdgar E. Iglesias 
1535f6ee1627SRichard Henderson     abi_uint st_mode;
1536f6ee1627SRichard Henderson     abi_uint st_nlink;
1537f6ee1627SRichard Henderson     abi_uint st_uid;
1538f6ee1627SRichard Henderson     abi_uint st_gid;
15397af406a6SRichard Henderson     abi_ullong st_rdev;
15407af406a6SRichard Henderson     abi_ullong __pad1;
1541b779e29eSEdgar E. Iglesias 
154293c5c6cdSRichard Henderson     abi_llong st_size;
15435dc0c971SRichard Henderson     abi_int  st_blksize;
1544f6ee1627SRichard Henderson     abi_uint __pad2;
154593c5c6cdSRichard Henderson     abi_llong st_blocks;
1546b779e29eSEdgar E. Iglesias 
1547b3c719b2SRichard Henderson     abi_int    target_st_atime;
1548c7828bd1SRichard Henderson     abi_uint   target_st_atime_nsec;
1549b3c719b2SRichard Henderson     abi_int    target_st_mtime;
1550c7828bd1SRichard Henderson     abi_uint   target_st_mtime_nsec;
1551b3c719b2SRichard Henderson     abi_int    target_st_ctime;
1552c7828bd1SRichard Henderson     abi_uint   target_st_ctime_nsec;
15537af406a6SRichard Henderson     abi_ullong st_ino;
1554b779e29eSEdgar E. Iglesias };
1555b779e29eSEdgar E. Iglesias 
1556e6e5906bSpbrook #elif defined(TARGET_M68K)
1557e6e5906bSpbrook 
1558e6e5906bSpbrook struct target_stat {
155977e935f4SRichard Henderson     abi_ushort st_dev;
156077e935f4SRichard Henderson     abi_ushort __pad1;
1561992f48a0Sblueswir1     abi_ulong  st_ino;
156277e935f4SRichard Henderson     abi_ushort st_mode;
156377e935f4SRichard Henderson     abi_ushort st_nlink;
156477e935f4SRichard Henderson     abi_ushort st_uid;
156577e935f4SRichard Henderson     abi_ushort st_gid;
156677e935f4SRichard Henderson     abi_ushort st_rdev;
156777e935f4SRichard Henderson     abi_ushort __pad2;
1568992f48a0Sblueswir1     abi_ulong  st_size;
1569992f48a0Sblueswir1     abi_ulong  st_blksize;
1570992f48a0Sblueswir1     abi_ulong  st_blocks;
1571992f48a0Sblueswir1     abi_ulong  target_st_atime;
1572992f48a0Sblueswir1     abi_ulong  __unused1;
1573992f48a0Sblueswir1     abi_ulong  target_st_mtime;
1574992f48a0Sblueswir1     abi_ulong  __unused2;
1575992f48a0Sblueswir1     abi_ulong  target_st_ctime;
1576992f48a0Sblueswir1     abi_ulong  __unused3;
1577992f48a0Sblueswir1     abi_ulong  __unused4;
1578992f48a0Sblueswir1     abi_ulong  __unused5;
1579e6e5906bSpbrook };
1580e6e5906bSpbrook 
1581e6e5906bSpbrook /* This matches struct stat64 in glibc2.1, hence the absolutely
1582e6e5906bSpbrook  * insane amounts of padding around dev_t's.
1583e6e5906bSpbrook  */
158420d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1585e6e5906bSpbrook struct target_stat64 {
15866c977729SRichard Henderson     abi_ullong      st_dev;
1587e6e5906bSpbrook     unsigned char   __pad1[2];
1588e6e5906bSpbrook 
1589e6e5906bSpbrook #define TARGET_STAT64_HAS_BROKEN_ST_INO 1
1590992f48a0Sblueswir1     abi_ulong       __st_ino;
1591e6e5906bSpbrook 
1592c7828bd1SRichard Henderson     abi_uint    st_mode;
1593c7828bd1SRichard Henderson     abi_uint    st_nlink;
1594e6e5906bSpbrook 
1595992f48a0Sblueswir1     abi_ulong       st_uid;
1596992f48a0Sblueswir1     abi_ulong       st_gid;
1597e6e5906bSpbrook 
15986c977729SRichard Henderson     abi_ullong      st_rdev;
1599e6e5906bSpbrook     unsigned char   __pad3[2];
1600e6e5906bSpbrook 
160155a1bcffSRichard Henderson     abi_llong       st_size;
1602992f48a0Sblueswir1     abi_ulong       st_blksize;
1603e6e5906bSpbrook 
1604992f48a0Sblueswir1     abi_ulong       __pad4;         /* future possible st_blocks high bits */
1605992f48a0Sblueswir1     abi_ulong       st_blocks;      /* Number 512-byte blocks allocated. */
1606e6e5906bSpbrook 
1607992f48a0Sblueswir1     abi_ulong       target_st_atime;
1608992f48a0Sblueswir1     abi_ulong       target_st_atime_nsec;
1609e6e5906bSpbrook 
1610992f48a0Sblueswir1     abi_ulong       target_st_mtime;
1611992f48a0Sblueswir1     abi_ulong       target_st_mtime_nsec;
1612e6e5906bSpbrook 
1613992f48a0Sblueswir1     abi_ulong       target_st_ctime;
1614992f48a0Sblueswir1     abi_ulong       target_st_ctime_nsec;
1615e6e5906bSpbrook 
16166c977729SRichard Henderson     abi_ullong      st_ino;
1617541dc0d4SStefan Weil } QEMU_PACKED;
1618e6e5906bSpbrook 
1619d26bc211Sths #elif defined(TARGET_ABI_MIPSN64)
1620540635baSths 
16215f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1622540635baSths /* The memory layout is the same as of struct stat64 of the 32-bit kernel.  */
1623540635baSths struct target_stat {
1624c7828bd1SRichard Henderson     abi_uint                st_dev;
1625c7828bd1SRichard Henderson     abi_uint                st_pad0[3]; /* Reserved for st_dev expansion */
1626540635baSths 
1627992f48a0Sblueswir1     abi_ulong               st_ino;
1628540635baSths 
1629c7828bd1SRichard Henderson     abi_uint                st_mode;
1630c7828bd1SRichard Henderson     abi_uint                st_nlink;
1631540635baSths 
1632b3c719b2SRichard Henderson     abi_int                 st_uid;
1633b3c719b2SRichard Henderson     abi_int                 st_gid;
1634540635baSths 
1635c7828bd1SRichard Henderson     abi_uint                st_rdev;
1636c7828bd1SRichard Henderson     abi_uint                st_pad1[3]; /* Reserved for st_rdev expansion */
1637540635baSths 
1638992f48a0Sblueswir1     abi_ulong               st_size;
1639540635baSths 
1640540635baSths     /*
1641540635baSths      * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
1642540635baSths      * but we don't have it under Linux.
1643540635baSths      */
1644c7828bd1SRichard Henderson     abi_uint                target_st_atime;
1645c7828bd1SRichard Henderson     abi_uint                target_st_atime_nsec;
1646540635baSths 
1647c7828bd1SRichard Henderson     abi_uint                target_st_mtime;
1648c7828bd1SRichard Henderson     abi_uint                target_st_mtime_nsec;
1649540635baSths 
1650c7828bd1SRichard Henderson     abi_uint                target_st_ctime;
1651c7828bd1SRichard Henderson     abi_uint                target_st_ctime_nsec;
1652540635baSths 
1653c7828bd1SRichard Henderson     abi_uint                st_blksize;
1654c7828bd1SRichard Henderson     abi_uint                st_pad2;
1655540635baSths 
1656992f48a0Sblueswir1     abi_ulong               st_blocks;
1657540635baSths };
1658540635baSths 
1659d26bc211Sths #elif defined(TARGET_ABI_MIPSN32)
1660540635baSths 
16615f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1662540635baSths struct target_stat {
16631ab2aea2SLeon Alrae     abi_ulong    st_dev;
16641ab2aea2SLeon Alrae     abi_ulong    st_pad0[3]; /* Reserved for st_dev expansion */
16657af406a6SRichard Henderson     abi_ullong   st_ino;
1666c7828bd1SRichard Henderson     abi_uint     st_mode;
1667c7828bd1SRichard Henderson     abi_uint     st_nlink;
1668b3c719b2SRichard Henderson     abi_int      st_uid;
1669b3c719b2SRichard Henderson     abi_int      st_gid;
16701ab2aea2SLeon Alrae     abi_ulong    st_rdev;
16711ab2aea2SLeon Alrae     abi_ulong    st_pad1[3]; /* Reserved for st_rdev expansion */
167293c5c6cdSRichard Henderson     abi_llong    st_size;
16731ab2aea2SLeon Alrae     abi_long     target_st_atime;
16741ab2aea2SLeon Alrae     abi_ulong    target_st_atime_nsec; /* Reserved for st_atime expansion */
16751ab2aea2SLeon Alrae     abi_long     target_st_mtime;
16761ab2aea2SLeon Alrae     abi_ulong    target_st_mtime_nsec; /* Reserved for st_mtime expansion */
16771ab2aea2SLeon Alrae     abi_long     target_st_ctime;
16781ab2aea2SLeon Alrae     abi_ulong    target_st_ctime_nsec; /* Reserved for st_ctime expansion */
16791ab2aea2SLeon Alrae     abi_ulong    st_blksize;
16801ab2aea2SLeon Alrae     abi_ulong    st_pad2;
168193c5c6cdSRichard Henderson     abi_llong    st_blocks;
1682540635baSths };
1683540635baSths 
1684d26bc211Sths #elif defined(TARGET_ABI_MIPSO32)
1685048f6b4dSbellard 
16865f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1687048f6b4dSbellard struct target_stat {
16880f41be8dSRichard Henderson     abi_uint        st_dev;
1689992f48a0Sblueswir1     abi_long        st_pad1[3];             /* Reserved for network id */
1690992f48a0Sblueswir1     abi_ulong       st_ino;
1691c7828bd1SRichard Henderson     abi_uint        st_mode;
1692c7828bd1SRichard Henderson     abi_uint        st_nlink;
1693b3c719b2SRichard Henderson     abi_int         st_uid;
1694b3c719b2SRichard Henderson     abi_int         st_gid;
16950f41be8dSRichard Henderson     abi_uint        st_rdev;
1696992f48a0Sblueswir1     abi_long        st_pad2[2];
1697992f48a0Sblueswir1     abi_long        st_size;
1698992f48a0Sblueswir1     abi_long        st_pad3;
1699048f6b4dSbellard     /*
1700048f6b4dSbellard      * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
1701048f6b4dSbellard      * but we don't have it under Linux.
1702048f6b4dSbellard      */
1703992f48a0Sblueswir1     abi_long                target_st_atime;
1704992f48a0Sblueswir1     abi_long                target_st_atime_nsec;
1705992f48a0Sblueswir1     abi_long                target_st_mtime;
1706992f48a0Sblueswir1     abi_long                target_st_mtime_nsec;
1707992f48a0Sblueswir1     abi_long                target_st_ctime;
1708992f48a0Sblueswir1     abi_long                target_st_ctime_nsec;
1709992f48a0Sblueswir1     abi_long                st_blksize;
1710992f48a0Sblueswir1     abi_long                st_blocks;
1711992f48a0Sblueswir1     abi_long                st_pad4[14];
1712048f6b4dSbellard };
1713048f6b4dSbellard 
1714048f6b4dSbellard /*
1715048f6b4dSbellard  * This matches struct stat64 in glibc2.1, hence the absolutely insane
1716048f6b4dSbellard  * amounts of padding around dev_t's.  The memory layout is the same as of
1717048f6b4dSbellard  * struct stat of the 64-bit kernel.
1718048f6b4dSbellard  */
1719048f6b4dSbellard 
172020d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1721048f6b4dSbellard struct target_stat64 {
1722992f48a0Sblueswir1     abi_ulong       st_dev;
1723992f48a0Sblueswir1     abi_ulong       st_pad0[3];     /* Reserved for st_dev expansion  */
1724048f6b4dSbellard 
17257af406a6SRichard Henderson     abi_ullong      st_ino;
1726048f6b4dSbellard 
1727c7828bd1SRichard Henderson     abi_uint        st_mode;
1728c7828bd1SRichard Henderson     abi_uint        st_nlink;
1729048f6b4dSbellard 
1730b3c719b2SRichard Henderson     abi_int         st_uid;
1731b3c719b2SRichard Henderson     abi_int         st_gid;
1732048f6b4dSbellard 
1733992f48a0Sblueswir1     abi_ulong       st_rdev;
1734992f48a0Sblueswir1     abi_ulong       st_pad1[3];     /* Reserved for st_rdev expansion  */
1735048f6b4dSbellard 
173693c5c6cdSRichard Henderson     abi_llong       st_size;
1737048f6b4dSbellard 
1738048f6b4dSbellard     /*
1739048f6b4dSbellard      * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
1740048f6b4dSbellard      * but we don't have it under Linux.
1741048f6b4dSbellard      */
1742992f48a0Sblueswir1     abi_long        target_st_atime;
1743992f48a0Sblueswir1     abi_ulong       target_st_atime_nsec;   /* Reserved for st_atime expansion  */
1744048f6b4dSbellard 
1745992f48a0Sblueswir1     abi_long        target_st_mtime;
1746992f48a0Sblueswir1     abi_ulong       target_st_mtime_nsec;   /* Reserved for st_mtime expansion  */
1747048f6b4dSbellard 
1748992f48a0Sblueswir1     abi_long        target_st_ctime;
1749992f48a0Sblueswir1     abi_ulong       target_st_ctime_nsec;   /* Reserved for st_ctime expansion  */
1750048f6b4dSbellard 
1751992f48a0Sblueswir1     abi_ulong       st_blksize;
1752992f48a0Sblueswir1     abi_ulong       st_pad2;
1753048f6b4dSbellard 
175493c5c6cdSRichard Henderson     abi_llong       st_blocks;
1755048f6b4dSbellard };
17567a3148a9Sj_mayer 
17577a3148a9Sj_mayer #elif defined(TARGET_ALPHA)
17587a3148a9Sj_mayer 
17597a3148a9Sj_mayer struct target_stat {
1760c7828bd1SRichard Henderson     abi_uint     st_dev;
1761c7828bd1SRichard Henderson     abi_uint     st_ino;
1762c7828bd1SRichard Henderson     abi_uint     st_mode;
1763c7828bd1SRichard Henderson     abi_uint     st_nlink;
1764c7828bd1SRichard Henderson     abi_uint     st_uid;
1765c7828bd1SRichard Henderson     abi_uint     st_gid;
1766c7828bd1SRichard Henderson     abi_uint     st_rdev;
1767992f48a0Sblueswir1     abi_long     st_size;
1768992f48a0Sblueswir1     abi_ulong    target_st_atime;
1769992f48a0Sblueswir1     abi_ulong    target_st_mtime;
1770992f48a0Sblueswir1     abi_ulong    target_st_ctime;
1771c7828bd1SRichard Henderson     abi_uint     st_blksize;
1772c7828bd1SRichard Henderson     abi_uint     st_blocks;
1773c7828bd1SRichard Henderson     abi_uint     st_flags;
1774c7828bd1SRichard Henderson     abi_uint     st_gen;
17757a3148a9Sj_mayer };
17767a3148a9Sj_mayer 
177720d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
17787a3148a9Sj_mayer struct target_stat64 {
1779992f48a0Sblueswir1     abi_ulong    st_dev;
1780992f48a0Sblueswir1     abi_ulong    st_ino;
1781992f48a0Sblueswir1     abi_ulong    st_rdev;
1782992f48a0Sblueswir1     abi_long     st_size;
1783992f48a0Sblueswir1     abi_ulong    st_blocks;
17847a3148a9Sj_mayer 
1785c7828bd1SRichard Henderson     abi_uint     st_mode;
1786c7828bd1SRichard Henderson     abi_uint     st_uid;
1787c7828bd1SRichard Henderson     abi_uint     st_gid;
1788c7828bd1SRichard Henderson     abi_uint     st_blksize;
1789c7828bd1SRichard Henderson     abi_uint     st_nlink;
1790c7828bd1SRichard Henderson     abi_uint     __pad0;
17917a3148a9Sj_mayer 
1792992f48a0Sblueswir1     abi_ulong    target_st_atime;
1793992f48a0Sblueswir1     abi_ulong    target_st_atime_nsec;
1794992f48a0Sblueswir1     abi_ulong    target_st_mtime;
1795992f48a0Sblueswir1     abi_ulong    target_st_mtime_nsec;
1796992f48a0Sblueswir1     abi_ulong    target_st_ctime;
1797992f48a0Sblueswir1     abi_ulong    target_st_ctime_nsec;
1798992f48a0Sblueswir1     abi_long     __unused[3];
17997a3148a9Sj_mayer };
18007a3148a9Sj_mayer 
18016db45e65Sths #elif defined(TARGET_SH4)
18026db45e65Sths 
18035f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
18046db45e65Sths struct target_stat {
1805992f48a0Sblueswir1     abi_ulong  st_dev;
1806992f48a0Sblueswir1     abi_ulong  st_ino;
180777e935f4SRichard Henderson     abi_ushort st_mode;
180877e935f4SRichard Henderson     abi_ushort st_nlink;
180977e935f4SRichard Henderson     abi_ushort st_uid;
181077e935f4SRichard Henderson     abi_ushort st_gid;
1811992f48a0Sblueswir1     abi_ulong  st_rdev;
1812992f48a0Sblueswir1     abi_ulong  st_size;
1813992f48a0Sblueswir1     abi_ulong  st_blksize;
1814992f48a0Sblueswir1     abi_ulong  st_blocks;
1815992f48a0Sblueswir1     abi_ulong  target_st_atime;
1816992f48a0Sblueswir1     abi_ulong  target_st_atime_nsec;
1817992f48a0Sblueswir1     abi_ulong  target_st_mtime;
1818992f48a0Sblueswir1     abi_ulong  target_st_mtime_nsec;
1819992f48a0Sblueswir1     abi_ulong  target_st_ctime;
1820992f48a0Sblueswir1     abi_ulong  target_st_ctime_nsec;
1821992f48a0Sblueswir1     abi_ulong  __unused4;
1822992f48a0Sblueswir1     abi_ulong  __unused5;
18236db45e65Sths };
18246db45e65Sths 
18256db45e65Sths /* This matches struct stat64 in glibc2.1, hence the absolutely
18266db45e65Sths  * insane amounts of padding around dev_t's.
18276db45e65Sths  */
182820d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
1829541dc0d4SStefan Weil struct QEMU_PACKED target_stat64 {
18306c977729SRichard Henderson     abi_ullong      st_dev;
18316db45e65Sths     unsigned char   __pad0[4];
18326db45e65Sths 
18336db45e65Sths #define TARGET_STAT64_HAS_BROKEN_ST_INO 1
1834992f48a0Sblueswir1     abi_ulong       __st_ino;
18356db45e65Sths 
1836c7828bd1SRichard Henderson     abi_uint        st_mode;
1837c7828bd1SRichard Henderson     abi_uint        st_nlink;
18386db45e65Sths 
1839992f48a0Sblueswir1     abi_ulong       st_uid;
1840992f48a0Sblueswir1     abi_ulong       st_gid;
18416db45e65Sths 
18426c977729SRichard Henderson     abi_ullong      st_rdev;
18436db45e65Sths     unsigned char   __pad3[4];
18446db45e65Sths 
184555a1bcffSRichard Henderson     abi_llong       st_size;
1846992f48a0Sblueswir1     abi_ulong       st_blksize;
18476db45e65Sths 
18486c977729SRichard Henderson     abi_ullong      st_blocks;      /* Number 512-byte blocks allocated. */
18496db45e65Sths 
1850992f48a0Sblueswir1     abi_ulong       target_st_atime;
1851992f48a0Sblueswir1     abi_ulong       target_st_atime_nsec;
18526db45e65Sths 
1853992f48a0Sblueswir1     abi_ulong       target_st_mtime;
1854992f48a0Sblueswir1     abi_ulong       target_st_mtime_nsec;
18556db45e65Sths 
1856992f48a0Sblueswir1     abi_ulong       target_st_ctime;
1857992f48a0Sblueswir1     abi_ulong       target_st_ctime_nsec;
18586db45e65Sths 
18596c977729SRichard Henderson     abi_ullong      st_ino;
18606db45e65Sths };
18616db45e65Sths 
1862d2fd1af7Sbellard #elif defined(TARGET_I386) && !defined(TARGET_ABI32)
18635f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1864d2fd1af7Sbellard struct target_stat {
1865d2fd1af7Sbellard     abi_ulong       st_dev;
1866d2fd1af7Sbellard     abi_ulong       st_ino;
1867d2fd1af7Sbellard     abi_ulong       st_nlink;
1868d2fd1af7Sbellard 
1869c7828bd1SRichard Henderson     abi_uint        st_mode;
1870c7828bd1SRichard Henderson     abi_uint        st_uid;
1871c7828bd1SRichard Henderson     abi_uint        st_gid;
1872c7828bd1SRichard Henderson     abi_uint        __pad0;
1873d2fd1af7Sbellard     abi_ulong       st_rdev;
1874d2fd1af7Sbellard     abi_long        st_size;
1875d2fd1af7Sbellard     abi_long        st_blksize;
1876d2fd1af7Sbellard     abi_long        st_blocks;      /* Number 512-byte blocks allocated. */
1877d2fd1af7Sbellard 
1878d2fd1af7Sbellard     abi_ulong       target_st_atime;
1879d2fd1af7Sbellard     abi_ulong       target_st_atime_nsec;
1880d2fd1af7Sbellard     abi_ulong       target_st_mtime;
1881d2fd1af7Sbellard     abi_ulong       target_st_mtime_nsec;
1882d2fd1af7Sbellard     abi_ulong       target_st_ctime;
1883d2fd1af7Sbellard     abi_ulong       target_st_ctime_nsec;
1884d2fd1af7Sbellard 
1885d2fd1af7Sbellard     abi_long        __unused[3];
1886d2fd1af7Sbellard };
1887a4c075f1SUlrich Hecht #elif defined(TARGET_S390X)
1888a4c075f1SUlrich Hecht struct target_stat {
1889a4c075f1SUlrich Hecht     abi_ulong  st_dev;
1890a4c075f1SUlrich Hecht     abi_ulong  st_ino;
1891a4c075f1SUlrich Hecht     abi_ulong  st_nlink;
1892c7828bd1SRichard Henderson     abi_uint   st_mode;
1893c7828bd1SRichard Henderson     abi_uint   st_uid;
1894c7828bd1SRichard Henderson     abi_uint   st_gid;
1895c7828bd1SRichard Henderson     abi_uint   __pad1;
1896a4c075f1SUlrich Hecht     abi_ulong  st_rdev;
1897a4c075f1SUlrich Hecht     abi_ulong  st_size;
1898a4c075f1SUlrich Hecht     abi_ulong  target_st_atime;
1899a4c075f1SUlrich Hecht     abi_ulong  target_st_atime_nsec;
1900a4c075f1SUlrich Hecht     abi_ulong  target_st_mtime;
1901a4c075f1SUlrich Hecht     abi_ulong  target_st_mtime_nsec;
1902a4c075f1SUlrich Hecht     abi_ulong  target_st_ctime;
1903a4c075f1SUlrich Hecht     abi_ulong  target_st_ctime_nsec;
1904a4c075f1SUlrich Hecht     abi_ulong  st_blksize;
1905a4c075f1SUlrich Hecht     abi_long       st_blocks;
1906a4c075f1SUlrich Hecht     abi_ulong  __unused[3];
1907a4c075f1SUlrich Hecht };
190809701199SAlexander Graf #elif defined(TARGET_AARCH64)
19095f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
191009701199SAlexander Graf struct target_stat {
191109701199SAlexander Graf     abi_ulong  st_dev;
191209701199SAlexander Graf     abi_ulong  st_ino;
1913c7828bd1SRichard Henderson     abi_uint   st_mode;
1914c7828bd1SRichard Henderson     abi_uint   st_nlink;
1915c7828bd1SRichard Henderson     abi_uint   st_uid;
1916c7828bd1SRichard Henderson     abi_uint   st_gid;
191709701199SAlexander Graf     abi_ulong  st_rdev;
191809701199SAlexander Graf     abi_ulong  _pad1;
191909701199SAlexander Graf     abi_long  st_size;
1920b3c719b2SRichard Henderson     abi_int    st_blksize;
1921b3c719b2SRichard Henderson     abi_int    __pad2;
192209701199SAlexander Graf     abi_long   st_blocks;
192309701199SAlexander Graf     abi_long  target_st_atime;
192409701199SAlexander Graf     abi_ulong  target_st_atime_nsec;
192509701199SAlexander Graf     abi_long  target_st_mtime;
192609701199SAlexander Graf     abi_ulong  target_st_mtime_nsec;
192709701199SAlexander Graf     abi_long  target_st_ctime;
192809701199SAlexander Graf     abi_ulong  target_st_ctime_nsec;
1929c7828bd1SRichard Henderson     abi_uint __unused[2];
193009701199SAlexander Graf };
1931ba7651fbSMax Filippov #elif defined(TARGET_XTENSA)
19325f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1933ba7651fbSMax Filippov struct target_stat {
1934ba7651fbSMax Filippov     abi_ulong       st_dev;
1935ba7651fbSMax Filippov     abi_ulong       st_ino;
1936c7828bd1SRichard Henderson     abi_uint        st_mode;
1937c7828bd1SRichard Henderson     abi_uint        st_nlink;
1938c7828bd1SRichard Henderson     abi_uint        st_uid;
1939c7828bd1SRichard Henderson     abi_uint        st_gid;
1940ba7651fbSMax Filippov     abi_ulong       st_rdev;
1941ba7651fbSMax Filippov     abi_long        st_size;
1942ba7651fbSMax Filippov     abi_ulong       st_blksize;
1943ba7651fbSMax Filippov     abi_ulong       st_blocks;
1944ba7651fbSMax Filippov     abi_ulong       target_st_atime;
1945ba7651fbSMax Filippov     abi_ulong       target_st_atime_nsec;
1946ba7651fbSMax Filippov     abi_ulong       target_st_mtime;
1947ba7651fbSMax Filippov     abi_ulong       target_st_mtime_nsec;
1948ba7651fbSMax Filippov     abi_ulong       target_st_ctime;
1949ba7651fbSMax Filippov     abi_ulong       target_st_ctime_nsec;
1950ba7651fbSMax Filippov     abi_ulong       __unused4;
1951ba7651fbSMax Filippov     abi_ulong       __unused5;
1952ba7651fbSMax Filippov };
1953ba7651fbSMax Filippov 
1954ba7651fbSMax Filippov #define TARGET_HAS_STRUCT_STAT64
1955ba7651fbSMax Filippov struct target_stat64  {
19567af406a6SRichard Henderson     abi_ullong st_dev;          /* Device */
19577af406a6SRichard Henderson     abi_ullong st_ino;          /* File serial number */
1958c7828bd1SRichard Henderson     abi_uint  st_mode;          /* File mode. */
1959c7828bd1SRichard Henderson     abi_uint  st_nlink;         /* Link count. */
1960c7828bd1SRichard Henderson     abi_uint  st_uid;           /* User ID of the file's owner. */
1961c7828bd1SRichard Henderson     abi_uint  st_gid;           /* Group ID of the file's group. */
19627af406a6SRichard Henderson     abi_ullong st_rdev;         /* Device number, if device. */
196393c5c6cdSRichard Henderson     abi_llong st_size;          /* Size of file, in bytes. */
1964ba7651fbSMax Filippov     abi_ulong st_blksize;       /* Optimal block size for I/O. */
1965ba7651fbSMax Filippov     abi_ulong __unused2;
19667af406a6SRichard Henderson     abi_ullong st_blocks;       /* Number 512-byte blocks allocated. */
1967ba7651fbSMax Filippov     abi_ulong target_st_atime;  /* Time of last access. */
1968ba7651fbSMax Filippov     abi_ulong target_st_atime_nsec;
1969ba7651fbSMax Filippov     abi_ulong target_st_mtime;  /* Time of last modification. */
1970ba7651fbSMax Filippov     abi_ulong target_st_mtime_nsec;
1971ba7651fbSMax Filippov     abi_ulong target_st_ctime;  /* Time of last status change. */
1972ba7651fbSMax Filippov     abi_ulong target_st_ctime_nsec;
1973ba7651fbSMax Filippov     abi_ulong __unused4;
1974ba7651fbSMax Filippov     abi_ulong __unused5;
1975ba7651fbSMax Filippov };
1976ba7651fbSMax Filippov 
19776c301485SPhilippe Mathieu-Daudé #elif defined(TARGET_OPENRISC) \
1978c52e4059SLaurent Vivier     || defined(TARGET_RISCV) || defined(TARGET_HEXAGON) || defined(TARGET_LOONGARCH)
1979c7819dfbSPeter Maydell 
1980c7819dfbSPeter Maydell /* These are the asm-generic versions of the stat and stat64 structures */
1981c7819dfbSPeter Maydell 
19825f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
1983d962783eSJia Liu struct target_stat {
1984d962783eSJia Liu     abi_ulong st_dev;
1985d962783eSJia Liu     abi_ulong st_ino;
1986c7828bd1SRichard Henderson     abi_uint st_mode;
1987c7828bd1SRichard Henderson     abi_uint st_nlink;
1988c7828bd1SRichard Henderson     abi_uint st_uid;
1989c7828bd1SRichard Henderson     abi_uint st_gid;
1990d962783eSJia Liu     abi_ulong st_rdev;
1991c7819dfbSPeter Maydell     abi_ulong __pad1;
1992d962783eSJia Liu     abi_long st_size;
1993b3c719b2SRichard Henderson     abi_int st_blksize;
1994b3c719b2SRichard Henderson     abi_int __pad2;
1995c7819dfbSPeter Maydell     abi_long st_blocks;
1996c7819dfbSPeter Maydell     abi_long target_st_atime;
1997d962783eSJia Liu     abi_ulong target_st_atime_nsec;
1998c7819dfbSPeter Maydell     abi_long target_st_mtime;
1999d962783eSJia Liu     abi_ulong target_st_mtime_nsec;
2000c7819dfbSPeter Maydell     abi_long target_st_ctime;
2001d962783eSJia Liu     abi_ulong target_st_ctime_nsec;
2002c7828bd1SRichard Henderson     abi_uint __unused4;
2003c7828bd1SRichard Henderson     abi_uint __unused5;
2004d962783eSJia Liu };
2005c7819dfbSPeter Maydell 
200647ae93cdSMichael Clark #if !defined(TARGET_RISCV64)
200720d155bcSStefan Weil #define TARGET_HAS_STRUCT_STAT64
2008c7819dfbSPeter Maydell struct target_stat64 {
20097af406a6SRichard Henderson     abi_ullong st_dev;
20107af406a6SRichard Henderson     abi_ullong st_ino;
2011c7828bd1SRichard Henderson     abi_uint st_mode;
2012c7828bd1SRichard Henderson     abi_uint st_nlink;
2013c7828bd1SRichard Henderson     abi_uint st_uid;
2014c7828bd1SRichard Henderson     abi_uint st_gid;
20157af406a6SRichard Henderson     abi_ullong st_rdev;
20167af406a6SRichard Henderson     abi_ullong __pad1;
201793c5c6cdSRichard Henderson     abi_llong st_size;
2018b3c719b2SRichard Henderson     abi_int st_blksize;
2019b3c719b2SRichard Henderson     abi_int __pad2;
202093c5c6cdSRichard Henderson     abi_llong st_blocks;
2021b3c719b2SRichard Henderson     abi_int target_st_atime;
2022c7828bd1SRichard Henderson     abi_uint target_st_atime_nsec;
2023b3c719b2SRichard Henderson     abi_int target_st_mtime;
2024c7828bd1SRichard Henderson     abi_uint target_st_mtime_nsec;
2025b3c719b2SRichard Henderson     abi_int target_st_ctime;
2026c7828bd1SRichard Henderson     abi_uint target_st_ctime_nsec;
2027c7828bd1SRichard Henderson     abi_uint __unused4;
2028c7828bd1SRichard Henderson     abi_uint __unused5;
2029c7819dfbSPeter Maydell };
203047ae93cdSMichael Clark #endif
2031c7819dfbSPeter Maydell 
2032a10d1e50SRichard Henderson #elif defined(TARGET_HPPA)
2033a10d1e50SRichard Henderson 
20345f992db6SChen-Yu Tsai #define TARGET_STAT_HAVE_NSEC
2035a10d1e50SRichard Henderson struct target_stat {
2036a10d1e50SRichard Henderson     abi_uint   st_dev;
2037a10d1e50SRichard Henderson     abi_uint   st_ino;
2038a10d1e50SRichard Henderson     abi_ushort st_mode;
2039a10d1e50SRichard Henderson     abi_ushort st_nlink;
2040a10d1e50SRichard Henderson     abi_ushort _res1;
2041a10d1e50SRichard Henderson     abi_ushort _res2;
2042a10d1e50SRichard Henderson     abi_uint   st_rdev;
2043a10d1e50SRichard Henderson     abi_int    st_size;
2044a10d1e50SRichard Henderson     abi_int    target_st_atime;
2045a10d1e50SRichard Henderson     abi_uint   target_st_atime_nsec;
2046a10d1e50SRichard Henderson     abi_int    target_st_mtime;
2047a10d1e50SRichard Henderson     abi_uint   target_st_mtime_nsec;
2048a10d1e50SRichard Henderson     abi_int    target_st_ctime;
2049a10d1e50SRichard Henderson     abi_uint   target_st_ctime_nsec;
2050a10d1e50SRichard Henderson     abi_int    st_blksize;
2051a10d1e50SRichard Henderson     abi_int    st_blocks;
2052a10d1e50SRichard Henderson     abi_uint   _unused1;
2053a10d1e50SRichard Henderson     abi_uint   _unused2;
2054a10d1e50SRichard Henderson     abi_uint   _unused3;
2055a10d1e50SRichard Henderson     abi_uint   _unused4;
2056a10d1e50SRichard Henderson     abi_ushort _unused5;
2057a10d1e50SRichard Henderson     abi_short  st_fstype;
2058a10d1e50SRichard Henderson     abi_uint   st_realdev;
2059a10d1e50SRichard Henderson     abi_ushort st_basemode;
2060a10d1e50SRichard Henderson     abi_ushort _unused6;
2061a10d1e50SRichard Henderson     abi_uint   st_uid;
2062a10d1e50SRichard Henderson     abi_uint   st_gid;
2063a10d1e50SRichard Henderson     abi_uint   _unused7[3];
2064a10d1e50SRichard Henderson };
2065a10d1e50SRichard Henderson 
2066a10d1e50SRichard Henderson #define TARGET_HAS_STRUCT_STAT64
2067a10d1e50SRichard Henderson struct target_stat64 {
20687af406a6SRichard Henderson     abi_ullong st_dev;
2069a10d1e50SRichard Henderson     abi_uint   _pad1;
2070a10d1e50SRichard Henderson     abi_uint   _res1;
2071a10d1e50SRichard Henderson     abi_uint   st_mode;
2072a10d1e50SRichard Henderson     abi_uint   st_nlink;
2073a10d1e50SRichard Henderson     abi_uint   st_uid;
2074a10d1e50SRichard Henderson     abi_uint   st_gid;
20757af406a6SRichard Henderson     abi_ullong st_rdev;
2076a10d1e50SRichard Henderson     abi_uint   _pad2;
207793c5c6cdSRichard Henderson     abi_llong  st_size;
2078a10d1e50SRichard Henderson     abi_int    st_blksize;
207993c5c6cdSRichard Henderson     abi_llong  st_blocks;
2080a10d1e50SRichard Henderson     abi_int    target_st_atime;
2081a10d1e50SRichard Henderson     abi_uint   target_st_atime_nsec;
2082a10d1e50SRichard Henderson     abi_int    target_st_mtime;
2083a10d1e50SRichard Henderson     abi_uint   target_st_mtime_nsec;
2084a10d1e50SRichard Henderson     abi_int    target_st_ctime;
2085a10d1e50SRichard Henderson     abi_uint   target_st_ctime_nsec;
20867af406a6SRichard Henderson     abi_ullong st_ino;
2087a10d1e50SRichard Henderson };
2088048f6b4dSbellard #else
2089048f6b4dSbellard #error unsupported CPU
2090048f6b4dSbellard #endif
20912521d698Sbellard 
20924ce6f8deSths typedef struct {
2093b3c719b2SRichard Henderson     abi_int val[2];
2094c227f099SAnthony Liguori } target_fsid_t;
20954ce6f8deSths 
209656c8f68fSbellard #ifdef TARGET_MIPS
2097d26bc211Sths #ifdef TARGET_ABI_MIPSN32
2098540635baSths struct target_statfs {
20995dc0c971SRichard Henderson     abi_int                 f_type;
21005dc0c971SRichard Henderson     abi_int                 f_bsize;
21015dc0c971SRichard Henderson     abi_int                 f_frsize;       /* Fragment size - unsupported */
21025dc0c971SRichard Henderson     abi_int                 f_blocks;
21035dc0c971SRichard Henderson     abi_int                 f_bfree;
21045dc0c971SRichard Henderson     abi_int                 f_files;
21055dc0c971SRichard Henderson     abi_int                 f_ffree;
21065dc0c971SRichard Henderson     abi_int                 f_bavail;
2107540635baSths 
2108540635baSths     /* Linux specials */
2109c227f099SAnthony Liguori     target_fsid_t           f_fsid;
21105dc0c971SRichard Henderson     abi_int                 f_namelen;
21115dc0c971SRichard Henderson     abi_int                 f_flags;
21125dc0c971SRichard Henderson     abi_int                 f_spare[5];
2113540635baSths };
2114540635baSths #else
211556c8f68fSbellard struct target_statfs {
2116992f48a0Sblueswir1     abi_long                f_type;
2117992f48a0Sblueswir1     abi_long                f_bsize;
2118992f48a0Sblueswir1     abi_long                f_frsize;       /* Fragment size - unsupported */
2119992f48a0Sblueswir1     abi_long                f_blocks;
2120992f48a0Sblueswir1     abi_long                f_bfree;
2121992f48a0Sblueswir1     abi_long                f_files;
2122992f48a0Sblueswir1     abi_long                f_ffree;
2123992f48a0Sblueswir1     abi_long                f_bavail;
212456c8f68fSbellard 
212556c8f68fSbellard     /* Linux specials */
2126c227f099SAnthony Liguori     target_fsid_t           f_fsid;
2127992f48a0Sblueswir1     abi_long                f_namelen;
2128d4247ec2SShea Levy     abi_long                f_flags;
2129d4247ec2SShea Levy     abi_long                f_spare[5];
213056c8f68fSbellard };
2131540635baSths #endif
213256c8f68fSbellard 
213356c8f68fSbellard struct target_statfs64 {
2134f6ee1627SRichard Henderson     abi_uint        f_type;
2135f6ee1627SRichard Henderson     abi_uint        f_bsize;
2136f6ee1627SRichard Henderson     abi_uint        f_frsize;       /* Fragment size - unsupported */
2137f6ee1627SRichard Henderson     abi_uint        __pad;
21387af406a6SRichard Henderson     abi_ullong      f_blocks;
21397af406a6SRichard Henderson     abi_ullong      f_bfree;
21407af406a6SRichard Henderson     abi_ullong      f_files;
21417af406a6SRichard Henderson     abi_ullong      f_ffree;
21427af406a6SRichard Henderson     abi_ullong      f_bavail;
2143c227f099SAnthony Liguori     target_fsid_t   f_fsid;
2144f6ee1627SRichard Henderson     abi_uint        f_namelen;
2145f6ee1627SRichard Henderson     abi_uint        f_flags;
2146f6ee1627SRichard Henderson     abi_uint        f_spare[5];
214756c8f68fSbellard };
2148c4d10628Sbalrog #elif (defined(TARGET_PPC64) || defined(TARGET_X86_64) ||       \
214947ae93cdSMichael Clark        defined(TARGET_SPARC64) || defined(TARGET_AARCH64) ||    \
21507bf36a5cSWANG Xuerui        defined(TARGET_RISCV) || defined(TARGET_LOONGARCH64)) && \
21517bf36a5cSWANG Xuerui     !defined(TARGET_ABI32)
2152325e651fSj_mayer struct target_statfs {
2153325e651fSj_mayer     abi_long f_type;
2154325e651fSj_mayer     abi_long f_bsize;
2155325e651fSj_mayer     abi_long f_blocks;
2156325e651fSj_mayer     abi_long f_bfree;
2157325e651fSj_mayer     abi_long f_bavail;
2158325e651fSj_mayer     abi_long f_files;
2159325e651fSj_mayer     abi_long f_ffree;
2160c227f099SAnthony Liguori     target_fsid_t f_fsid;
2161325e651fSj_mayer     abi_long f_namelen;
2162325e651fSj_mayer     abi_long f_frsize;
2163d4247ec2SShea Levy     abi_long f_flags;
2164d4247ec2SShea Levy     abi_long f_spare[4];
2165325e651fSj_mayer };
2166325e651fSj_mayer 
2167325e651fSj_mayer struct target_statfs64 {
2168325e651fSj_mayer     abi_long f_type;
2169325e651fSj_mayer     abi_long f_bsize;
2170325e651fSj_mayer     abi_long f_blocks;
2171325e651fSj_mayer     abi_long f_bfree;
2172325e651fSj_mayer     abi_long f_bavail;
2173325e651fSj_mayer     abi_long f_files;
2174325e651fSj_mayer     abi_long f_ffree;
2175c227f099SAnthony Liguori     target_fsid_t f_fsid;
2176325e651fSj_mayer     abi_long f_namelen;
2177325e651fSj_mayer     abi_long f_frsize;
2178d4247ec2SShea Levy     abi_long f_flags;
2179d4247ec2SShea Levy     abi_long f_spare[4];
2180325e651fSj_mayer };
2181a4c075f1SUlrich Hecht #elif defined(TARGET_S390X)
2182a4c075f1SUlrich Hecht struct target_statfs {
21835dc0c971SRichard Henderson     abi_int  f_type;
21845dc0c971SRichard Henderson     abi_int  f_bsize;
2185a4c075f1SUlrich Hecht     abi_long f_blocks;
2186a4c075f1SUlrich Hecht     abi_long f_bfree;
2187a4c075f1SUlrich Hecht     abi_long f_bavail;
2188a4c075f1SUlrich Hecht     abi_long f_files;
2189a4c075f1SUlrich Hecht     abi_long f_ffree;
2190a4c075f1SUlrich Hecht     kernel_fsid_t f_fsid;
21915dc0c971SRichard Henderson     abi_int  f_namelen;
21925dc0c971SRichard Henderson     abi_int  f_frsize;
21935dc0c971SRichard Henderson     abi_int  f_flags;
21945dc0c971SRichard Henderson     abi_int  f_spare[4];
2195d4247ec2SShea Levy 
2196a4c075f1SUlrich Hecht };
2197a4c075f1SUlrich Hecht 
2198a4c075f1SUlrich Hecht struct target_statfs64 {
21995dc0c971SRichard Henderson     abi_int  f_type;
22005dc0c971SRichard Henderson     abi_int  f_bsize;
2201a4c075f1SUlrich Hecht     abi_long f_blocks;
2202a4c075f1SUlrich Hecht     abi_long f_bfree;
2203a4c075f1SUlrich Hecht     abi_long f_bavail;
2204a4c075f1SUlrich Hecht     abi_long f_files;
2205a4c075f1SUlrich Hecht     abi_long f_ffree;
2206a4c075f1SUlrich Hecht     kernel_fsid_t f_fsid;
22075dc0c971SRichard Henderson     abi_int  f_namelen;
22085dc0c971SRichard Henderson     abi_int  f_frsize;
22095dc0c971SRichard Henderson     abi_int  f_flags;
22105dc0c971SRichard Henderson     abi_int  f_spare[4];
2211a4c075f1SUlrich Hecht };
221256c8f68fSbellard #else
221356c8f68fSbellard struct target_statfs {
2214f6ee1627SRichard Henderson     abi_uint f_type;
2215f6ee1627SRichard Henderson     abi_uint f_bsize;
2216f6ee1627SRichard Henderson     abi_uint f_blocks;
2217f6ee1627SRichard Henderson     abi_uint f_bfree;
2218f6ee1627SRichard Henderson     abi_uint f_bavail;
2219f6ee1627SRichard Henderson     abi_uint f_files;
2220f6ee1627SRichard Henderson     abi_uint f_ffree;
2221c227f099SAnthony Liguori     target_fsid_t f_fsid;
2222f6ee1627SRichard Henderson     abi_uint f_namelen;
2223f6ee1627SRichard Henderson     abi_uint f_frsize;
2224f6ee1627SRichard Henderson     abi_uint f_flags;
2225f6ee1627SRichard Henderson     abi_uint f_spare[4];
222656c8f68fSbellard };
222756c8f68fSbellard 
222856c8f68fSbellard struct target_statfs64 {
2229f6ee1627SRichard Henderson     abi_uint f_type;
2230f6ee1627SRichard Henderson     abi_uint f_bsize;
22317af406a6SRichard Henderson     abi_ullong f_blocks;
22327af406a6SRichard Henderson     abi_ullong f_bfree;
22337af406a6SRichard Henderson     abi_ullong f_bavail;
22347af406a6SRichard Henderson     abi_ullong f_files;
22357af406a6SRichard Henderson     abi_ullong f_ffree;
2236c227f099SAnthony Liguori     target_fsid_t f_fsid;
2237f6ee1627SRichard Henderson     abi_uint f_namelen;
2238f6ee1627SRichard Henderson     abi_uint f_frsize;
2239f6ee1627SRichard Henderson     abi_uint f_flags;
2240f6ee1627SRichard Henderson     abi_uint f_spare[4];
224156c8f68fSbellard };
224256c8f68fSbellard #endif
224356c8f68fSbellard 
22447e22e546SUlrich Hecht #define TARGET_F_LINUX_SPECIFIC_BASE 1024
22457e22e546SUlrich Hecht #define TARGET_F_SETLEASE            (TARGET_F_LINUX_SPECIFIC_BASE + 0)
22467e22e546SUlrich Hecht #define TARGET_F_GETLEASE            (TARGET_F_LINUX_SPECIFIC_BASE + 1)
22477e22e546SUlrich Hecht #define TARGET_F_DUPFD_CLOEXEC       (TARGET_F_LINUX_SPECIFIC_BASE + 6)
22482bb963ffSShu-Chun Weng #define TARGET_F_NOTIFY              (TARGET_F_LINUX_SPECIFIC_BASE + 2)
22497e3b92ecSPeter Maydell #define TARGET_F_SETPIPE_SZ          (TARGET_F_LINUX_SPECIFIC_BASE + 7)
22507e3b92ecSPeter Maydell #define TARGET_F_GETPIPE_SZ          (TARGET_F_LINUX_SPECIFIC_BASE + 8)
22512bb963ffSShu-Chun Weng #define TARGET_F_ADD_SEALS           (TARGET_F_LINUX_SPECIFIC_BASE + 9)
22522bb963ffSShu-Chun Weng #define TARGET_F_GET_SEALS           (TARGET_F_LINUX_SPECIFIC_BASE + 10)
22537e22e546SUlrich Hecht 
22545de7706eSLaurent Vivier #include "target_fcntl.h"
22558d5d3004SAndreas Schwab 
22562521d698Sbellard /* soundcard defines */
225767cc32ebSVeres Lajos /* XXX: convert them all to arch independent entries */
2258b3c719b2SRichard Henderson #define TARGET_SNDCTL_COPR_HALT           TARGET_IOWR('C',  7, abi_int);
22592521d698Sbellard #define TARGET_SNDCTL_COPR_LOAD           0xcfb04301
22602521d698Sbellard #define TARGET_SNDCTL_COPR_RCODE          0xc0144303
22612521d698Sbellard #define TARGET_SNDCTL_COPR_RCVMSG         0x8fa44309
22622521d698Sbellard #define TARGET_SNDCTL_COPR_RDATA          0xc0144302
22632521d698Sbellard #define TARGET_SNDCTL_COPR_RESET          0x00004300
22642521d698Sbellard #define TARGET_SNDCTL_COPR_RUN            0xc0144306
22652521d698Sbellard #define TARGET_SNDCTL_COPR_SENDMSG        0xcfa44308
22662521d698Sbellard #define TARGET_SNDCTL_COPR_WCODE          0x40144305
22672521d698Sbellard #define TARGET_SNDCTL_COPR_WDATA          0x40144304
22682521d698Sbellard #define TARGET_SNDCTL_DSP_RESET           TARGET_IO('P', 0)
22692521d698Sbellard #define TARGET_SNDCTL_DSP_SYNC            TARGET_IO('P', 1)
2270b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_SPEED           TARGET_IOWR('P', 2, abi_int)
2271b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_STEREO          TARGET_IOWR('P', 3, abi_int)
2272b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_GETBLKSIZE      TARGET_IOWR('P', 4, abi_int)
2273b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_SETFMT          TARGET_IOWR('P', 5, abi_int)
2274b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_CHANNELS        TARGET_IOWR('P', 6, abi_int)
2275b3c719b2SRichard Henderson #define TARGET_SOUND_PCM_WRITE_FILTER     TARGET_IOWR('P', 7, abi_int)
22762521d698Sbellard #define TARGET_SNDCTL_DSP_POST            TARGET_IO('P', 8)
2277b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_SUBDIVIDE       TARGET_IOWR('P', 9, abi_int)
2278b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_SETFRAGMENT     TARGET_IOWR('P',10, abi_int)
2279b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_GETFMTS         TARGET_IOR('P', 11, abi_int)
22802521d698Sbellard #define TARGET_SNDCTL_DSP_GETOSPACE       TARGET_IORU('P',12)
22812521d698Sbellard #define TARGET_SNDCTL_DSP_GETISPACE       TARGET_IORU('P',13)
2282b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_GETCAPS         TARGET_IOR('P', 15, abi_int)
2283b3c719b2SRichard Henderson #define TARGET_SNDCTL_DSP_GETTRIGGER      TARGET_IOR('P',16, abi_int)
22842521d698Sbellard #define TARGET_SNDCTL_DSP_GETIPTR         TARGET_IORU('P',17)
22852521d698Sbellard #define TARGET_SNDCTL_DSP_GETOPTR         TARGET_IORU('P',18)
22865f72307dSPeter Maydell #define TARGET_SNDCTL_DSP_MAPINBUF        TARGET_IORU('P', 19)
22875f72307dSPeter Maydell #define TARGET_SNDCTL_DSP_MAPOUTBUF       TARGET_IORU('P', 20)
22882521d698Sbellard #define TARGET_SNDCTL_DSP_NONBLOCK        0x0000500e
22892521d698Sbellard #define TARGET_SNDCTL_DSP_SAMPLESIZE      0xc0045005
22902521d698Sbellard #define TARGET_SNDCTL_DSP_SETDUPLEX       0x00005016
22912521d698Sbellard #define TARGET_SNDCTL_DSP_SETSYNCRO       0x00005015
22922521d698Sbellard #define TARGET_SNDCTL_DSP_SETTRIGGER      0x40045010
22932521d698Sbellard #define TARGET_SNDCTL_FM_4OP_ENABLE       0x4004510f
22942521d698Sbellard #define TARGET_SNDCTL_FM_LOAD_INSTR       0x40285107
22952521d698Sbellard #define TARGET_SNDCTL_MIDI_INFO           0xc074510c
22962521d698Sbellard #define TARGET_SNDCTL_MIDI_MPUCMD         0xc0216d02
22972521d698Sbellard #define TARGET_SNDCTL_MIDI_MPUMODE        0xc0046d01
22982521d698Sbellard #define TARGET_SNDCTL_MIDI_PRETIME        0xc0046d00
22992521d698Sbellard #define TARGET_SNDCTL_PMGR_ACCESS         0xcfb85110
23002521d698Sbellard #define TARGET_SNDCTL_PMGR_IFACE          0xcfb85001
23012521d698Sbellard #define TARGET_SNDCTL_SEQ_CTRLRATE        0xc0045103
23022521d698Sbellard #define TARGET_SNDCTL_SEQ_GETINCOUNT      0x80045105
23032521d698Sbellard #define TARGET_SNDCTL_SEQ_GETOUTCOUNT     0x80045104
23042521d698Sbellard #define TARGET_SNDCTL_SEQ_NRMIDIS         0x8004510b
23052521d698Sbellard #define TARGET_SNDCTL_SEQ_NRSYNTHS        0x8004510a
23062521d698Sbellard #define TARGET_SNDCTL_SEQ_OUTOFBAND       0x40085112
23072521d698Sbellard #define TARGET_SNDCTL_SEQ_PANIC           0x00005111
23082521d698Sbellard #define TARGET_SNDCTL_SEQ_PERCMODE        0x40045106
23092521d698Sbellard #define TARGET_SNDCTL_SEQ_RESET           0x00005100
23102521d698Sbellard #define TARGET_SNDCTL_SEQ_RESETSAMPLES    0x40045109
23112521d698Sbellard #define TARGET_SNDCTL_SEQ_SYNC            0x00005101
23122521d698Sbellard #define TARGET_SNDCTL_SEQ_TESTMIDI        0x40045108
23132521d698Sbellard #define TARGET_SNDCTL_SEQ_THRESHOLD       0x4004510d
23142521d698Sbellard #define TARGET_SNDCTL_SEQ_TRESHOLD        0x4004510d
23152521d698Sbellard #define TARGET_SNDCTL_SYNTH_INFO          0xc08c5102
23162521d698Sbellard #define TARGET_SNDCTL_SYNTH_MEMAVL        0xc004510e
23172521d698Sbellard #define TARGET_SNDCTL_TMR_CONTINUE        0x00005404
23182521d698Sbellard #define TARGET_SNDCTL_TMR_METRONOME       0x40045407
23192521d698Sbellard #define TARGET_SNDCTL_TMR_SELECT          0x40045408
23202521d698Sbellard #define TARGET_SNDCTL_TMR_SOURCE          0xc0045406
23212521d698Sbellard #define TARGET_SNDCTL_TMR_START           0x00005402
23222521d698Sbellard #define TARGET_SNDCTL_TMR_STOP            0x00005403
23232521d698Sbellard #define TARGET_SNDCTL_TMR_TEMPO           0xc0045405
23242521d698Sbellard #define TARGET_SNDCTL_TMR_TIMEBASE        0xc0045401
23252521d698Sbellard #define TARGET_SOUND_PCM_READ_RATE        0x80045002
23262521d698Sbellard #define TARGET_SOUND_PCM_READ_CHANNELS    0x80045006
23272521d698Sbellard #define TARGET_SOUND_PCM_READ_BITS        0x80045005
23282521d698Sbellard #define TARGET_SOUND_PCM_READ_FILTER      0x80045007
23292521d698Sbellard #define TARGET_SOUND_MIXER_INFO           TARGET_IOR ('M', 101, mixer_info)
23302521d698Sbellard #define TARGET_SOUND_MIXER_ACCESS         0xc0804d66
2331b3c719b2SRichard Henderson #define TARGET_SOUND_MIXER_PRIVATE1       TARGET_IOWR('M', 111, abi_int)
2332b3c719b2SRichard Henderson #define TARGET_SOUND_MIXER_PRIVATE2       TARGET_IOWR('M', 112, abi_int)
2333b3c719b2SRichard Henderson #define TARGET_SOUND_MIXER_PRIVATE3       TARGET_IOWR('M', 113, abi_int)
2334b3c719b2SRichard Henderson #define TARGET_SOUND_MIXER_PRIVATE4       TARGET_IOWR('M', 114, abi_int)
2335b3c719b2SRichard Henderson #define TARGET_SOUND_MIXER_PRIVATE5       TARGET_IOWR('M', 115, abi_int)
23362521d698Sbellard 
2337b3c719b2SRichard Henderson #define TARGET_MIXER_READ(dev)  TARGET_IOR('M', dev, abi_int)
23382521d698Sbellard 
23392521d698Sbellard #define TARGET_SOUND_MIXER_READ_VOLUME          TARGET_MIXER_READ(SOUND_MIXER_VOLUME)
23402521d698Sbellard #define TARGET_SOUND_MIXER_READ_BASS            TARGET_MIXER_READ(SOUND_MIXER_BASS)
23412521d698Sbellard #define TARGET_SOUND_MIXER_READ_TREBLE          TARGET_MIXER_READ(SOUND_MIXER_TREBLE)
23422521d698Sbellard #define TARGET_SOUND_MIXER_READ_SYNTH           TARGET_MIXER_READ(SOUND_MIXER_SYNTH)
23432521d698Sbellard #define TARGET_SOUND_MIXER_READ_PCM             TARGET_MIXER_READ(SOUND_MIXER_PCM)
23442521d698Sbellard #define TARGET_SOUND_MIXER_READ_SPEAKER         TARGET_MIXER_READ(SOUND_MIXER_SPEAKER)
23452521d698Sbellard #define TARGET_SOUND_MIXER_READ_LINE            TARGET_MIXER_READ(SOUND_MIXER_LINE)
23462521d698Sbellard #define TARGET_SOUND_MIXER_READ_MIC             TARGET_MIXER_READ(SOUND_MIXER_MIC)
23472521d698Sbellard #define TARGET_SOUND_MIXER_READ_CD              TARGET_MIXER_READ(SOUND_MIXER_CD)
23482521d698Sbellard #define TARGET_SOUND_MIXER_READ_IMIX            TARGET_MIXER_READ(SOUND_MIXER_IMIX)
23492521d698Sbellard #define TARGET_SOUND_MIXER_READ_ALTPCM          TARGET_MIXER_READ(SOUND_MIXER_ALTPCM)
23502521d698Sbellard #define TARGET_SOUND_MIXER_READ_RECLEV          TARGET_MIXER_READ(SOUND_MIXER_RECLEV)
23512521d698Sbellard #define TARGET_SOUND_MIXER_READ_IGAIN           TARGET_MIXER_READ(SOUND_MIXER_IGAIN)
23522521d698Sbellard #define TARGET_SOUND_MIXER_READ_OGAIN           TARGET_MIXER_READ(SOUND_MIXER_OGAIN)
23532521d698Sbellard #define TARGET_SOUND_MIXER_READ_LINE1           TARGET_MIXER_READ(SOUND_MIXER_LINE1)
23542521d698Sbellard #define TARGET_SOUND_MIXER_READ_LINE2           TARGET_MIXER_READ(SOUND_MIXER_LINE2)
23552521d698Sbellard #define TARGET_SOUND_MIXER_READ_LINE3           TARGET_MIXER_READ(SOUND_MIXER_LINE3)
23562521d698Sbellard 
23572521d698Sbellard /* Obsolete macros */
23582521d698Sbellard #define TARGET_SOUND_MIXER_READ_MUTE            TARGET_MIXER_READ(SOUND_MIXER_MUTE)
23592521d698Sbellard #define TARGET_SOUND_MIXER_READ_ENHANCE         TARGET_MIXER_READ(SOUND_MIXER_ENHANCE)
23602521d698Sbellard #define TARGET_SOUND_MIXER_READ_LOUD            TARGET_MIXER_READ(SOUND_MIXER_LOUD)
23612521d698Sbellard 
23622521d698Sbellard #define TARGET_SOUND_MIXER_READ_RECSRC          TARGET_MIXER_READ(SOUND_MIXER_RECSRC)
23632521d698Sbellard #define TARGET_SOUND_MIXER_READ_DEVMASK         TARGET_MIXER_READ(SOUND_MIXER_DEVMASK)
23642521d698Sbellard #define TARGET_SOUND_MIXER_READ_RECMASK         TARGET_MIXER_READ(SOUND_MIXER_RECMASK)
23652521d698Sbellard #define TARGET_SOUND_MIXER_READ_STEREODEVS      TARGET_MIXER_READ(SOUND_MIXER_STEREODEVS)
23662521d698Sbellard #define TARGET_SOUND_MIXER_READ_CAPS            TARGET_MIXER_READ(SOUND_MIXER_CAPS)
23672521d698Sbellard 
2368b3c719b2SRichard Henderson #define TARGET_MIXER_WRITE(dev)         TARGET_IOWR('M', dev, abi_int)
23692521d698Sbellard 
23702521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_VOLUME TARGET_MIXER_WRITE(SOUND_MIXER_VOLUME)
23712521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_BASS           TARGET_MIXER_WRITE(SOUND_MIXER_BASS)
23722521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_TREBLE TARGET_MIXER_WRITE(SOUND_MIXER_TREBLE)
23732521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_SYNTH          TARGET_MIXER_WRITE(SOUND_MIXER_SYNTH)
23742521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_PCM            TARGET_MIXER_WRITE(SOUND_MIXER_PCM)
23752521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_SPEAKER        TARGET_MIXER_WRITE(SOUND_MIXER_SPEAKER)
23762521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_LINE           TARGET_MIXER_WRITE(SOUND_MIXER_LINE)
23772521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_MIC            TARGET_MIXER_WRITE(SOUND_MIXER_MIC)
23782521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_CD             TARGET_MIXER_WRITE(SOUND_MIXER_CD)
23792521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_IMIX           TARGET_MIXER_WRITE(SOUND_MIXER_IMIX)
23802521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_ALTPCM TARGET_MIXER_WRITE(SOUND_MIXER_ALTPCM)
23812521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_RECLEV TARGET_MIXER_WRITE(SOUND_MIXER_RECLEV)
23822521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_IGAIN          TARGET_MIXER_WRITE(SOUND_MIXER_IGAIN)
23832521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_OGAIN          TARGET_MIXER_WRITE(SOUND_MIXER_OGAIN)
23842521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_LINE1          TARGET_MIXER_WRITE(SOUND_MIXER_LINE1)
23852521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_LINE2          TARGET_MIXER_WRITE(SOUND_MIXER_LINE2)
23862521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_LINE3          TARGET_MIXER_WRITE(SOUND_MIXER_LINE3)
23872521d698Sbellard 
23882521d698Sbellard /* Obsolete macros */
23892521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_MUTE           TARGET_MIXER_WRITE(SOUND_MIXER_MUTE)
23902521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_ENHANCE        TARGET_MIXER_WRITE(SOUND_MIXER_ENHANCE)
23912521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_LOUD           TARGET_MIXER_WRITE(SOUND_MIXER_LOUD)
23922521d698Sbellard 
23932521d698Sbellard #define TARGET_SOUND_MIXER_WRITE_RECSRC TARGET_MIXER_WRITE(SOUND_MIXER_RECSRC)
23942521d698Sbellard 
2395aca7708eSFilip Bozuta struct target_snd_timer_id {
2396b3c719b2SRichard Henderson     abi_int dev_class;
2397b3c719b2SRichard Henderson     abi_int dev_sclass;
2398b3c719b2SRichard Henderson     abi_int card;
2399b3c719b2SRichard Henderson     abi_int device;
2400b3c719b2SRichard Henderson     abi_int subdevice;
2401aca7708eSFilip Bozuta };
2402aca7708eSFilip Bozuta 
2403aca7708eSFilip Bozuta struct target_snd_timer_ginfo {
2404aca7708eSFilip Bozuta     struct target_snd_timer_id tid;
2405c7828bd1SRichard Henderson     abi_uint flags;
2406b3c719b2SRichard Henderson     abi_int card;
2407aca7708eSFilip Bozuta     unsigned char id[64];
2408aca7708eSFilip Bozuta     unsigned char name[80];
2409aca7708eSFilip Bozuta     abi_ulong reserved0;
2410aca7708eSFilip Bozuta     abi_ulong resolution;
2411aca7708eSFilip Bozuta     abi_ulong resolution_min;
2412aca7708eSFilip Bozuta     abi_ulong resolution_max;
2413c7828bd1SRichard Henderson     abi_uint clients;
2414aca7708eSFilip Bozuta     unsigned char reserved[32];
2415aca7708eSFilip Bozuta };
2416aca7708eSFilip Bozuta 
2417aca7708eSFilip Bozuta struct target_snd_timer_gparams {
2418aca7708eSFilip Bozuta     struct target_snd_timer_id tid;
2419aca7708eSFilip Bozuta     abi_ulong period_num;
2420aca7708eSFilip Bozuta     abi_ulong period_den;
2421aca7708eSFilip Bozuta     unsigned char reserved[32];
2422aca7708eSFilip Bozuta };
2423aca7708eSFilip Bozuta 
2424aca7708eSFilip Bozuta struct target_snd_timer_gstatus {
2425aca7708eSFilip Bozuta     struct target_snd_timer_id tid;
2426aca7708eSFilip Bozuta     abi_ulong resolution;
2427aca7708eSFilip Bozuta     abi_ulong resolution_num;
2428aca7708eSFilip Bozuta     abi_ulong resolution_den;
2429aca7708eSFilip Bozuta     unsigned char reserved[32];
2430aca7708eSFilip Bozuta };
2431aca7708eSFilip Bozuta 
2432d22edf0aSFilip Bozuta struct target_snd_timer_select {
2433d22edf0aSFilip Bozuta     struct target_snd_timer_id id;
2434d22edf0aSFilip Bozuta     unsigned char reserved[32];
2435d22edf0aSFilip Bozuta };
2436d22edf0aSFilip Bozuta 
2437fe333025SFilip Bozuta struct target_snd_timer_info {
2438c7828bd1SRichard Henderson     abi_uint flags;
2439b3c719b2SRichard Henderson     abi_int card;
2440fe333025SFilip Bozuta     unsigned char id[64];
2441fe333025SFilip Bozuta     unsigned char name[80];
2442fe333025SFilip Bozuta     abi_ulong reserved0;
2443fe333025SFilip Bozuta     abi_ulong resolution;
2444fe333025SFilip Bozuta     unsigned char reserved[64];
2445fe333025SFilip Bozuta };
2446fe333025SFilip Bozuta 
2447fe333025SFilip Bozuta struct target_snd_timer_status {
2448fe333025SFilip Bozuta     struct target_timespec tstamp;
2449c7828bd1SRichard Henderson     abi_uint resolution;
2450c7828bd1SRichard Henderson     abi_uint lost;
2451c7828bd1SRichard Henderson     abi_uint overrun;
2452c7828bd1SRichard Henderson     abi_uint queue;
2453fe333025SFilip Bozuta     unsigned char reserved[64];
2454fe333025SFilip Bozuta };
2455fe333025SFilip Bozuta 
24561c4c6fcdSFilip Bozuta /* alsa timer ioctls */
2457b3c719b2SRichard Henderson #define TARGET_SNDRV_TIMER_IOCTL_PVERSION     TARGET_IOR('T', 0x00, abi_int)
24581c4c6fcdSFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_NEXT_DEVICE  TARGET_IOWR('T', 0x01,    \
24591c4c6fcdSFilip Bozuta                                                           struct snd_timer_id)
2460aca7708eSFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_GINFO        TARGET_IOWR('T', 0x03,    \
2461aca7708eSFilip Bozuta                                                           struct target_snd_timer_ginfo)
2462aca7708eSFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_GPARAMS      TARGET_IOW('T', 0x04,     \
2463aca7708eSFilip Bozuta                                                          struct target_snd_timer_gparams)
2464aca7708eSFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_GSTATUS      TARGET_IOWR('T', 0x05,    \
2465aca7708eSFilip Bozuta                                                           struct target_snd_timer_gstatus)
2466d22edf0aSFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_SELECT       TARGET_IOW('T', 0x10,     \
2467d22edf0aSFilip Bozuta                                                          struct target_snd_timer_select)
2468fe333025SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_INFO         TARGET_IOR('T', 0x11,     \
2469fe333025SFilip Bozuta                                                          struct target_snd_timer_info)
2470fe333025SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_PARAMS       TARGET_IOW('T', 0x12,     \
2471fe333025SFilip Bozuta                                                          struct snd_timer_params)
2472fe333025SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_STATUS       TARGET_IOR('T', 0x14,     \
2473fe333025SFilip Bozuta                                                          struct target_snd_timer_status)
2474045823a9SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_START        TARGET_IO('T', 0xa0)
2475045823a9SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_STOP         TARGET_IO('T', 0xa1)
2476045823a9SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_CONTINUE     TARGET_IO('T', 0xa2)
2477045823a9SFilip Bozuta #define TARGET_SNDRV_TIMER_IOCTL_PAUSE        TARGET_IO('T', 0xa3)
24781c4c6fcdSFilip Bozuta 
24792521d698Sbellard /* vfat ioctls */
24802521d698Sbellard #define TARGET_VFAT_IOCTL_READDIR_BOTH    TARGET_IORU('r', 1)
24812521d698Sbellard #define TARGET_VFAT_IOCTL_READDIR_SHORT   TARGET_IORU('r', 2)
2482a5448a7dSbellard 
2483f443e396SPeter Maydell struct target_mtop {
2484f443e396SPeter Maydell     abi_short mt_op;
2485f443e396SPeter Maydell     abi_int mt_count;
2486f443e396SPeter Maydell };
2487f443e396SPeter Maydell 
2488f443e396SPeter Maydell #if defined(TARGET_SPARC) || defined(TARGET_MIPS)
2489f443e396SPeter Maydell typedef abi_long target_kernel_daddr_t;
2490f443e396SPeter Maydell #else
2491f443e396SPeter Maydell typedef abi_int target_kernel_daddr_t;
2492f443e396SPeter Maydell #endif
2493f443e396SPeter Maydell 
2494f443e396SPeter Maydell struct target_mtget {
2495f443e396SPeter Maydell     abi_long mt_type;
2496f443e396SPeter Maydell     abi_long mt_resid;
2497f443e396SPeter Maydell     abi_long mt_dsreg;
2498f443e396SPeter Maydell     abi_long mt_gstat;
2499f443e396SPeter Maydell     abi_long mt_erreg;
2500f443e396SPeter Maydell     target_kernel_daddr_t mt_fileno;
2501f443e396SPeter Maydell     target_kernel_daddr_t mt_blkno;
2502f443e396SPeter Maydell };
2503f443e396SPeter Maydell 
2504f443e396SPeter Maydell struct target_mtpos {
2505f443e396SPeter Maydell     abi_long mt_blkno;
2506f443e396SPeter Maydell };
2507f443e396SPeter Maydell 
2508f443e396SPeter Maydell #define TARGET_MTIOCTOP        TARGET_IOW('m', 1, struct target_mtop)
2509f443e396SPeter Maydell #define TARGET_MTIOCGET        TARGET_IOR('m', 2, struct target_mtget)
2510f443e396SPeter Maydell #define TARGET_MTIOCPOS        TARGET_IOR('m', 3, struct target_mtpos)
25118fbd6b52Sbalrog 
2512bd27e675SAleksandar Markovic /* kcov ioctls */
2513bd27e675SAleksandar Markovic #define TARGET_KCOV_ENABLE     TARGET_IO('c', 100)
2514bd27e675SAleksandar Markovic #define TARGET_KCOV_DISABLE    TARGET_IO('c', 101)
2515f7dbd8feSAleksandar Markovic #define TARGET_KCOV_INIT_TRACE TARGET_IOR('c', 1, abi_ulong)
2516bd27e675SAleksandar Markovic 
2517a5448a7dSbellard struct target_sysinfo {
2518992f48a0Sblueswir1     abi_long uptime;                /* Seconds since boot */
2519992f48a0Sblueswir1     abi_ulong loads[3];             /* 1, 5, and 15 minute load averages */
2520992f48a0Sblueswir1     abi_ulong totalram;             /* Total usable main memory size */
2521992f48a0Sblueswir1     abi_ulong freeram;              /* Available memory size */
2522992f48a0Sblueswir1     abi_ulong sharedram;            /* Amount of shared memory */
2523992f48a0Sblueswir1     abi_ulong bufferram;            /* Memory used by buffers */
2524992f48a0Sblueswir1     abi_ulong totalswap;            /* Total swap space size */
2525992f48a0Sblueswir1     abi_ulong freeswap;             /* swap space still available */
252677e935f4SRichard Henderson     abi_ushort procs;               /* Number of current processes */
252777e935f4SRichard Henderson     abi_ushort pad;                 /* explicit padding for m68k */
2528992f48a0Sblueswir1     abi_ulong totalhigh;            /* Total high memory size */
2529992f48a0Sblueswir1     abi_ulong freehigh;             /* Available high memory size */
2530c7828bd1SRichard Henderson     abi_uint mem_unit;              /* Memory unit size in bytes */
2531992f48a0Sblueswir1     char _f[20-2*sizeof(abi_long)-sizeof(int)]; /* Padding: libc5 uses this.. */
2532a5448a7dSbellard };
25333532fa74Sbellard 
25346556a833Saurel32 struct linux_dirent {
25356556a833Saurel32     long            d_ino;
25366556a833Saurel32     unsigned long   d_off;
25376556a833Saurel32     unsigned short  d_reclen;
2538540a736fSRichard Henderson     char            d_name[];
25396556a833Saurel32 };
25406556a833Saurel32 
25416556a833Saurel32 struct linux_dirent64 {
25426556a833Saurel32     uint64_t        d_ino;
25436556a833Saurel32     int64_t         d_off;
25446556a833Saurel32     unsigned short  d_reclen;
25456556a833Saurel32     unsigned char   d_type;
2546540a736fSRichard Henderson     char            d_name[];
25476556a833Saurel32 };
25486556a833Saurel32 
254924e1003aSaurel32 struct target_mq_attr {
255024e1003aSaurel32     abi_long mq_flags;
255124e1003aSaurel32     abi_long mq_maxmsg;
255224e1003aSaurel32     abi_long mq_msgsize;
255324e1003aSaurel32     abi_long mq_curmsgs;
255424e1003aSaurel32 };
255524e1003aSaurel32 
2556e865b97fSChen Gang struct target_drm_version {
2557b3c719b2SRichard Henderson     abi_int version_major;
2558b3c719b2SRichard Henderson     abi_int version_minor;
2559b3c719b2SRichard Henderson     abi_int version_patchlevel;
2560e865b97fSChen Gang     abi_ulong name_len;
2561e865b97fSChen Gang     abi_ulong name;
2562e865b97fSChen Gang     abi_ulong date_len;
2563e865b97fSChen Gang     abi_ulong date;
2564e865b97fSChen Gang     abi_ulong desc_len;
2565e865b97fSChen Gang     abi_ulong desc;
2566e865b97fSChen Gang };
2567e865b97fSChen Gang 
2568913b03c2SChen Gang struct target_drm_i915_getparam {
2569b3c719b2SRichard Henderson     abi_int param;
2570913b03c2SChen Gang     abi_ulong value;
2571913b03c2SChen Gang };
2572913b03c2SChen Gang 
25733532fa74Sbellard #include "socket.h"
2574637947f1Sths 
25758f968b6aSPhilippe Mathieu-Daudé #include "target_errno_defs.h"
257603dfe9f8SRiku Voipio 
257703dfe9f8SRiku Voipio #define FUTEX_WAIT              0
257803dfe9f8SRiku Voipio #define FUTEX_WAKE              1
257903dfe9f8SRiku Voipio #define FUTEX_FD                2
258003dfe9f8SRiku Voipio #define FUTEX_REQUEUE           3
258103dfe9f8SRiku Voipio #define FUTEX_CMP_REQUEUE       4
258203dfe9f8SRiku Voipio #define FUTEX_WAKE_OP           5
258303dfe9f8SRiku Voipio #define FUTEX_LOCK_PI           6
258403dfe9f8SRiku Voipio #define FUTEX_UNLOCK_PI         7
258503dfe9f8SRiku Voipio #define FUTEX_TRYLOCK_PI        8
258603dfe9f8SRiku Voipio #define FUTEX_WAIT_BITSET       9
258703dfe9f8SRiku Voipio #define FUTEX_WAKE_BITSET       10
2588c72a90dfSRichard Henderson #define FUTEX_WAIT_REQUEUE_PI   11
2589c72a90dfSRichard Henderson #define FUTEX_CMP_REQUEUE_PI    12
2590c72a90dfSRichard Henderson #define FUTEX_LOCK_PI2          13
259103dfe9f8SRiku Voipio 
259203dfe9f8SRiku Voipio #define FUTEX_PRIVATE_FLAG      128
259303dfe9f8SRiku Voipio #define FUTEX_CLOCK_REALTIME    256
259403dfe9f8SRiku Voipio #define FUTEX_CMD_MASK          ~(FUTEX_PRIVATE_FLAG | FUTEX_CLOCK_REALTIME)
259503dfe9f8SRiku Voipio 
25963b6edd16SPeter Maydell #ifdef CONFIG_EPOLL
2597928bed6aSLaurent Vivier #if defined(TARGET_X86_64)
2598928bed6aSLaurent Vivier #define TARGET_EPOLL_PACKED QEMU_PACKED
2599928bed6aSLaurent Vivier #else
2600928bed6aSLaurent Vivier #define TARGET_EPOLL_PACKED
2601928bed6aSLaurent Vivier #endif
2602928bed6aSLaurent Vivier 
26033b6edd16SPeter Maydell typedef union target_epoll_data {
26043b6edd16SPeter Maydell     abi_ulong ptr;
2605928bed6aSLaurent Vivier     abi_int fd;
2606928bed6aSLaurent Vivier     abi_uint u32;
2607928bed6aSLaurent Vivier     abi_ullong u64;
26083b6edd16SPeter Maydell } target_epoll_data_t;
26093b6edd16SPeter Maydell 
26103b6edd16SPeter Maydell struct target_epoll_event {
2611928bed6aSLaurent Vivier     abi_uint events;
26123b6edd16SPeter Maydell     target_epoll_data_t data;
2613928bed6aSLaurent Vivier } TARGET_EPOLL_PACKED;
26142ba7fae3SPeter Maydell 
26152ba7fae3SPeter Maydell #define TARGET_EP_MAX_EVENTS (INT_MAX / sizeof(struct target_epoll_event))
26162ba7fae3SPeter Maydell 
26173b6edd16SPeter Maydell #endif
2618583359a6SAkos PASZTORY 
2619583359a6SAkos PASZTORY struct target_ucred {
2620f6ee1627SRichard Henderson     abi_uint pid;
2621f6ee1627SRichard Henderson     abi_uint uid;
2622f6ee1627SRichard Henderson     abi_uint gid;
2623583359a6SAkos PASZTORY };
2624cb9c377fSPaolo Bonzini 
26255dc0c971SRichard Henderson typedef abi_int target_timer_t;
2626905bba13SErik de Castro Lopo 
262734d60862SNatanael Copa #define TARGET_SIGEV_MAX_SIZE 64
262834d60862SNatanael Copa 
262934d60862SNatanael Copa /* This is architecture-specific but most architectures use the default */
263034d60862SNatanael Copa #ifdef TARGET_MIPS
26315dc0c971SRichard Henderson #define TARGET_SIGEV_PREAMBLE_SIZE (sizeof(abi_int) * 2 + sizeof(abi_long))
263234d60862SNatanael Copa #else
26335dc0c971SRichard Henderson #define TARGET_SIGEV_PREAMBLE_SIZE (sizeof(abi_int) * 2         \
263434d60862SNatanael Copa                                     + sizeof(target_sigval_t))
263534d60862SNatanael Copa #endif
263634d60862SNatanael Copa 
263734d60862SNatanael Copa #define TARGET_SIGEV_PAD_SIZE ((TARGET_SIGEV_MAX_SIZE           \
263834d60862SNatanael Copa                                 - TARGET_SIGEV_PREAMBLE_SIZE)   \
26395dc0c971SRichard Henderson                                / sizeof(abi_int))
264034d60862SNatanael Copa 
2641905bba13SErik de Castro Lopo struct target_sigevent {
2642905bba13SErik de Castro Lopo     target_sigval_t sigev_value;
264317351c3fSPeter Maydell     abi_int sigev_signo;
264417351c3fSPeter Maydell     abi_int sigev_notify;
2645905bba13SErik de Castro Lopo     union {
264617351c3fSPeter Maydell         abi_int _pad[TARGET_SIGEV_PAD_SIZE];
264717351c3fSPeter Maydell         abi_int _tid;
2648905bba13SErik de Castro Lopo 
264917351c3fSPeter Maydell         /* The kernel (and thus QEMU) never looks at these;
265017351c3fSPeter Maydell          * they're only used as part of the ABI between a
265117351c3fSPeter Maydell          * userspace program and libc.
265217351c3fSPeter Maydell          */
2653905bba13SErik de Castro Lopo         struct {
265417351c3fSPeter Maydell             abi_ulong _function;
265517351c3fSPeter Maydell             abi_ulong _attribute;
2656905bba13SErik de Castro Lopo         } _sigev_thread;
2657905bba13SErik de Castro Lopo     } _sigev_un;
2658905bba13SErik de Castro Lopo };
2659e0eb210eSPeter Maydell 
2660e0eb210eSPeter Maydell struct target_user_cap_header {
2661f6ee1627SRichard Henderson     abi_uint version;
2662b3c719b2SRichard Henderson     abi_int  pid;
2663e0eb210eSPeter Maydell };
2664e0eb210eSPeter Maydell 
2665e0eb210eSPeter Maydell struct target_user_cap_data {
2666f6ee1627SRichard Henderson     abi_uint effective;
2667f6ee1627SRichard Henderson     abi_uint permitted;
2668f6ee1627SRichard Henderson     abi_uint inheritable;
2669e0eb210eSPeter Maydell };
26701b3c4fdfSMarkus Armbruster 
2671da2c8ad7SAleksandar Markovic /* from kernel's include/linux/syslog.h */
2672da2c8ad7SAleksandar Markovic 
2673da2c8ad7SAleksandar Markovic /* Close the log.  Currently a NOP. */
2674da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_CLOSE          0
2675da2c8ad7SAleksandar Markovic /* Open the log. Currently a NOP. */
2676da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_OPEN           1
2677da2c8ad7SAleksandar Markovic /* Read from the log. */
2678da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_READ           2
2679da2c8ad7SAleksandar Markovic /* Read all messages remaining in the ring buffer. */
2680da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_READ_ALL       3
2681da2c8ad7SAleksandar Markovic /* Read and clear all messages remaining in the ring buffer */
2682da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_READ_CLEAR     4
2683da2c8ad7SAleksandar Markovic /* Clear ring buffer. */
2684da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_CLEAR          5
2685da2c8ad7SAleksandar Markovic /* Disable printk's to console */
2686da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_CONSOLE_OFF    6
2687da2c8ad7SAleksandar Markovic /* Enable printk's to console */
2688da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_CONSOLE_ON     7
2689da2c8ad7SAleksandar Markovic /* Set level of messages printed to console */
2690da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_CONSOLE_LEVEL  8
2691da2c8ad7SAleksandar Markovic /* Return number of unread characters in the log buffer */
2692da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_SIZE_UNREAD    9
2693da2c8ad7SAleksandar Markovic /* Return size of the log buffer */
2694da2c8ad7SAleksandar Markovic #define TARGET_SYSLOG_ACTION_SIZE_BUFFER   10
2695da2c8ad7SAleksandar Markovic 
2696efa92184SAleksandar Rikalo struct target_statx_timestamp {
269793c5c6cdSRichard Henderson     abi_llong tv_sec;
2698f6ee1627SRichard Henderson     abi_uint tv_nsec;
26995dc0c971SRichard Henderson     abi_int __reserved;
2700efa92184SAleksandar Rikalo };
2701efa92184SAleksandar Rikalo 
2702efa92184SAleksandar Rikalo struct target_statx {
2703efa92184SAleksandar Rikalo     /* 0x00 */
2704f6ee1627SRichard Henderson     abi_uint stx_mask;       /* What results were written [uncond] */
2705f6ee1627SRichard Henderson     abi_uint stx_blksize;    /* Preferred general I/O size [uncond] */
27067af406a6SRichard Henderson     abi_ullong stx_attributes; /* Flags conveying information about the file */
2707efa92184SAleksandar Rikalo     /* 0x10 */
2708f6ee1627SRichard Henderson     abi_uint stx_nlink;      /* Number of hard links */
2709f6ee1627SRichard Henderson     abi_uint stx_uid;        /* User ID of owner */
2710f6ee1627SRichard Henderson     abi_uint stx_gid;        /* Group ID of owner */
2711efa92184SAleksandar Rikalo     uint16_t stx_mode;       /* File mode */
2712efa92184SAleksandar Rikalo     uint16_t __spare0[1];
2713efa92184SAleksandar Rikalo     /* 0x20 */
27147af406a6SRichard Henderson     abi_ullong stx_ino;      /* Inode number */
27157af406a6SRichard Henderson     abi_ullong stx_size;     /* File size */
27167af406a6SRichard Henderson     abi_ullong stx_blocks;   /* Number of 512-byte blocks allocated */
27177af406a6SRichard Henderson     abi_ullong stx_attributes_mask; /* Mask to show what is supported */
2718efa92184SAleksandar Rikalo     /* 0x40 */
2719efa92184SAleksandar Rikalo     struct target_statx_timestamp  stx_atime;  /* Last access time */
2720efa92184SAleksandar Rikalo     struct target_statx_timestamp  stx_btime;  /* File creation time */
2721efa92184SAleksandar Rikalo     struct target_statx_timestamp  stx_ctime;  /* Last attribute change time */
2722efa92184SAleksandar Rikalo     struct target_statx_timestamp  stx_mtime;  /* Last data modification time */
2723efa92184SAleksandar Rikalo     /* 0x80 */
2724f6ee1627SRichard Henderson     abi_uint stx_rdev_major;   /* Device ID of special file [if bdev/cdev] */
2725f6ee1627SRichard Henderson     abi_uint stx_rdev_minor;
2726f6ee1627SRichard Henderson     abi_uint stx_dev_major; /* ID of device containing file [uncond] */
2727f6ee1627SRichard Henderson     abi_uint stx_dev_minor;
2728efa92184SAleksandar Rikalo     /* 0x90 */
27297af406a6SRichard Henderson     abi_ullong __spare2[14]; /* Spare space for future expansion */
2730efa92184SAleksandar Rikalo     /* 0x100 */
2731efa92184SAleksandar Rikalo };
2732efa92184SAleksandar Rikalo 
273345ad761cSTonis Tiigi /* from kernel's include/linux/sched/types.h */
273445ad761cSTonis Tiigi struct target_sched_attr {
273545ad761cSTonis Tiigi     abi_uint size;
273645ad761cSTonis Tiigi     abi_uint sched_policy;
273745ad761cSTonis Tiigi     abi_ullong sched_flags;
273845ad761cSTonis Tiigi     abi_int sched_nice;
273945ad761cSTonis Tiigi     abi_uint sched_priority;
274045ad761cSTonis Tiigi     abi_ullong sched_runtime;
274145ad761cSTonis Tiigi     abi_ullong sched_deadline;
274245ad761cSTonis Tiigi     abi_ullong sched_period;
274345ad761cSTonis Tiigi     abi_uint sched_util_min;
274445ad761cSTonis Tiigi     abi_uint sched_util_max;
274545ad761cSTonis Tiigi };
274645ad761cSTonis Tiigi 
2747407a119bSTonis Tiigi struct target_sched_param {
2748407a119bSTonis Tiigi     abi_int sched_priority;
2749407a119bSTonis Tiigi };
2750407a119bSTonis Tiigi 
27519651ceadSMichael Vogt /* from kernel's include/uapi/linux/openat2.h */
275297299303SMichael Vogt struct open_how_ver0 {
2753c12df59dSYao Zi     uint64_t flags;
2754c12df59dSYao Zi     uint64_t mode;
2755c12df59dSYao Zi     uint64_t resolve;
275697299303SMichael Vogt };
27579651ceadSMichael Vogt struct target_open_how_ver0 {
27589651ceadSMichael Vogt     abi_ullong flags;
27599651ceadSMichael Vogt     abi_ullong mode;
27609651ceadSMichael Vogt     abi_ullong resolve;
27619651ceadSMichael Vogt };
27629651ceadSMichael Vogt #ifndef RESOLVE_NO_MAGICLINKS
27639651ceadSMichael Vogt #define RESOLVE_NO_MAGICLINKS   0x02
27649651ceadSMichael Vogt #endif
27659651ceadSMichael Vogt #ifndef RESOLVE_NO_SYMLINKS
27669651ceadSMichael Vogt #define RESOLVE_NO_SYMLINKS     0x04
27679651ceadSMichael Vogt #endif
27689651ceadSMichael Vogt 
2769*d95fd983SIlya Leoshkevich #if (defined(TARGET_I386) && defined(TARGET_ABI32)) || \
2770*d95fd983SIlya Leoshkevich     (defined(TARGET_ARM) && defined(TARGET_ABI32)) || \
2771*d95fd983SIlya Leoshkevich     defined(TARGET_M68K) || defined(TARGET_MICROBLAZE) || \
2772*d95fd983SIlya Leoshkevich     defined(TARGET_S390X)
2773*d95fd983SIlya Leoshkevich #define TARGET_ARCH_WANT_SYS_OLD_MMAP
2774*d95fd983SIlya Leoshkevich #endif
2775*d95fd983SIlya Leoshkevich 
27761b3c4fdfSMarkus Armbruster #endif
2777