1
2
3
4
5
6
7
8
9#ifndef __ASM_IOCTLS_H
10#define __ASM_IOCTLS_H
11
12#include <asm/ioctl.h>
13
14#define TCGETA 0x5401
15#define TCSETA 0x5402
16#define TCSETAW 0x5403
17#define TCSETAF 0x5404
18
19#define TCSBRK 0x5405
20#define TCXONC 0x5406
21#define TCFLSH 0x5407
22
23#define TCGETS 0x540d
24#define TCSETS 0x540e
25#define TCSETSW 0x540f
26#define TCSETSF 0x5410
27
28#define TIOCEXCL 0x740d
29#define TIOCNXCL 0x740e
30#define TIOCOUTQ 0x7472
31#define TIOCSTI 0x5472
32#define TIOCMGET 0x741d
33#define TIOCMBIS 0x741b
34#define TIOCMBIC 0x741c
35#define TIOCMSET 0x741a
36#define TIOCPKT 0x5470
37#define TIOCPKT_DATA 0x00
38#define TIOCPKT_FLUSHREAD 0x01
39#define TIOCPKT_FLUSHWRITE 0x02
40#define TIOCPKT_STOP 0x04
41#define TIOCPKT_START 0x08
42#define TIOCPKT_NOSTOP 0x10
43#define TIOCPKT_DOSTOP 0x20
44#define TIOCPKT_IOCTL 0x40
45#define TIOCSWINSZ _IOW('t', 103, struct winsize)
46#define TIOCGWINSZ _IOR('t', 104, struct winsize)
47#define TIOCNOTTY 0x5471
48#define TIOCSETD 0x7401
49#define TIOCGETD 0x7400
50
51#define FIOCLEX 0x6601
52#define FIONCLEX 0x6602
53#define FIOASYNC 0x667d
54#define FIONBIO 0x667e
55#define FIOQSIZE 0x667f
56
57#define TIOCGLTC 0x7474
58#define TIOCSLTC 0x7475
59#define TIOCSPGRP _IOW('t', 118, int)
60#define TIOCGPGRP _IOR('t', 119, int)
61#define TIOCCONS _IOW('t', 120, int)
62
63#define FIONREAD 0x467f
64#define TIOCINQ FIONREAD
65
66#define TIOCGETP 0x7408
67#define TIOCSETP 0x7409
68#define TIOCSETN 0x740a
69
70
71
72
73
74
75
76
77#define TIOCSBRK 0x5427
78#define TIOCCBRK 0x5428
79#define TIOCGSID 0x7416
80#define TCGETS2 _IOR('T', 0x2A, struct termios2)
81#define TCSETS2 _IOW('T', 0x2B, struct termios2)
82#define TCSETSW2 _IOW('T', 0x2C, struct termios2)
83#define TCSETSF2 _IOW('T', 0x2D, struct termios2)
84#define TIOCGPTN _IOR('T', 0x30, unsigned int)
85#define TIOCSPTLCK _IOW('T', 0x31, int)
86#define TIOCGDEV _IOR('T', 0x32, unsigned int)
87#define TIOCSIG _IOW('T', 0x36, int)
88#define TIOCVHANGUP 0x5437
89
90
91#define TIOCSCTTY 0x5480
92#define TIOCGSOFTCAR 0x5481
93#define TIOCSSOFTCAR 0x5482
94#define TIOCLINUX 0x5483
95#define TIOCGSERIAL 0x5484
96#define TIOCSSERIAL 0x5485
97#define TCSBRKP 0x5486
98#define TIOCSERCONFIG 0x5488
99#define TIOCSERGWILD 0x5489
100#define TIOCSERSWILD 0x548a
101#define TIOCGLCKTRMIOS 0x548b
102#define TIOCSLCKTRMIOS 0x548c
103#define TIOCSERGSTRUCT 0x548d
104#define TIOCSERGETLSR 0x548e
105#define TIOCSERGETMULTI 0x548f
106#define TIOCSERSETMULTI 0x5490
107#define TIOCMIWAIT 0x5491
108#define TIOCGICOUNT 0x5492
109
110#endif
111