Linux-libre 4.4.228-gnu
[librecmc/linux-libre.git] / arch / alpha / include / uapi / asm / termbits.h
1 #ifndef _ALPHA_TERMBITS_H
2 #define _ALPHA_TERMBITS_H
3
4 #include <linux/posix_types.h>
5
6 typedef unsigned char   cc_t;
7 typedef unsigned int    speed_t;
8 typedef unsigned int    tcflag_t;
9
10 /*
11  * termios type and macro definitions.  Be careful about adding stuff
12  * to this file since it's used in GNU libc and there are strict rules
13  * concerning namespace pollution.
14  */
15
16 #define NCCS 19
17 struct termios {
18         tcflag_t c_iflag;               /* input mode flags */
19         tcflag_t c_oflag;               /* output mode flags */
20         tcflag_t c_cflag;               /* control mode flags */
21         tcflag_t c_lflag;               /* local mode flags */
22         cc_t c_cc[NCCS];                /* control characters */
23         cc_t c_line;                    /* line discipline (== c_cc[19]) */
24         speed_t c_ispeed;               /* input speed */
25         speed_t c_ospeed;               /* output speed */
26 };
27
28 /* Alpha has identical termios and termios2 */
29
30 struct termios2 {
31         tcflag_t c_iflag;               /* input mode flags */
32         tcflag_t c_oflag;               /* output mode flags */
33         tcflag_t c_cflag;               /* control mode flags */
34         tcflag_t c_lflag;               /* local mode flags */
35         cc_t c_cc[NCCS];                /* control characters */
36         cc_t c_line;                    /* line discipline (== c_cc[19]) */
37         speed_t c_ispeed;               /* input speed */
38         speed_t c_ospeed;               /* output speed */
39 };
40
41 /* Alpha has matching termios and ktermios */
42
43 struct ktermios {
44         tcflag_t c_iflag;               /* input mode flags */
45         tcflag_t c_oflag;               /* output mode flags */
46         tcflag_t c_cflag;               /* control mode flags */
47         tcflag_t c_lflag;               /* local mode flags */
48         cc_t c_cc[NCCS];                /* control characters */
49         cc_t c_line;                    /* line discipline (== c_cc[19]) */
50         speed_t c_ispeed;               /* input speed */
51         speed_t c_ospeed;               /* output speed */
52 };
53
54 /* c_cc characters */
55 #define VEOF 0
56 #define VEOL 1
57 #define VEOL2 2
58 #define VERASE 3
59 #define VWERASE 4
60 #define VKILL 5
61 #define VREPRINT 6
62 #define VSWTC 7
63 #define VINTR 8
64 #define VQUIT 9
65 #define VSUSP 10
66 #define VSTART 12
67 #define VSTOP 13
68 #define VLNEXT 14
69 #define VDISCARD 15
70 #define VMIN 16
71 #define VTIME 17
72
73 /* c_iflag bits */
74 #define IGNBRK  0000001
75 #define BRKINT  0000002
76 #define IGNPAR  0000004
77 #define PARMRK  0000010
78 #define INPCK   0000020
79 #define ISTRIP  0000040
80 #define INLCR   0000100
81 #define IGNCR   0000200
82 #define ICRNL   0000400
83 #define IXON    0001000
84 #define IXOFF   0002000
85 #define IXANY   0004000
86 #define IUCLC   0010000
87 #define IMAXBEL 0020000
88 #define IUTF8   0040000
89
90 /* c_oflag bits */
91 #define OPOST   0000001
92 #define ONLCR   0000002
93 #define OLCUC   0000004
94
95 #define OCRNL   0000010
96 #define ONOCR   0000020
97 #define ONLRET  0000040
98
99 #define OFILL   00000100
100 #define OFDEL   00000200
101 #define NLDLY   00001400
102 #define   NL0   00000000
103 #define   NL1   00000400
104 #define   NL2   00001000
105 #define   NL3   00001400
106 #define TABDLY  00006000
107 #define   TAB0  00000000
108 #define   TAB1  00002000
109 #define   TAB2  00004000
110 #define   TAB3  00006000
111 #define CRDLY   00030000
112 #define   CR0   00000000
113 #define   CR1   00010000
114 #define   CR2   00020000
115 #define   CR3   00030000
116 #define FFDLY   00040000
117 #define   FF0   00000000
118 #define   FF1   00040000
119 #define BSDLY   00100000
120 #define   BS0   00000000
121 #define   BS1   00100000
122 #define VTDLY   00200000
123 #define   VT0   00000000
124 #define   VT1   00200000
125 #define XTABS   01000000 /* Hmm.. Linux/i386 considers this part of TABDLY.. */
126
127 /* c_cflag bit meaning */
128 #define CBAUD   0000037
129 #define  B0     0000000         /* hang up */
130 #define  B50    0000001
131 #define  B75    0000002
132 #define  B110   0000003
133 #define  B134   0000004
134 #define  B150   0000005
135 #define  B200   0000006
136 #define  B300   0000007
137 #define  B600   0000010
138 #define  B1200  0000011
139 #define  B1800  0000012
140 #define  B2400  0000013
141 #define  B4800  0000014
142 #define  B9600  0000015
143 #define  B19200 0000016
144 #define  B38400 0000017
145 #define EXTA B19200
146 #define EXTB B38400
147 #define CBAUDEX 0000000
148 #define  B57600   00020
149 #define  B115200  00021
150 #define  B230400  00022
151 #define  B460800  00023
152 #define  B500000  00024
153 #define  B576000  00025
154 #define  B921600  00026
155 #define B1000000  00027
156 #define B1152000  00030
157 #define B1500000  00031
158 #define B2000000  00032
159 #define B2500000  00033
160 #define B3000000  00034
161 #define B3500000  00035
162 #define B4000000  00036
163 #define BOTHER    00037
164
165 #define CSIZE   00001400
166 #define   CS5   00000000
167 #define   CS6   00000400
168 #define   CS7   00001000
169 #define   CS8   00001400
170
171 #define CSTOPB  00002000
172 #define CREAD   00004000
173 #define PARENB  00010000
174 #define PARODD  00020000
175 #define HUPCL   00040000
176
177 #define CLOCAL  00100000
178 #define CMSPAR    010000000000          /* mark or space (stick) parity */
179 #define CRTSCTS   020000000000          /* flow control */
180
181 #define CIBAUD  07600000
182 #define IBSHIFT 16
183
184 /* c_lflag bits */
185 #define ISIG    0x00000080
186 #define ICANON  0x00000100
187 #define XCASE   0x00004000
188 #define ECHO    0x00000008
189 #define ECHOE   0x00000002
190 #define ECHOK   0x00000004
191 #define ECHONL  0x00000010
192 #define NOFLSH  0x80000000
193 #define TOSTOP  0x00400000
194 #define ECHOCTL 0x00000040
195 #define ECHOPRT 0x00000020
196 #define ECHOKE  0x00000001
197 #define FLUSHO  0x00800000
198 #define PENDIN  0x20000000
199 #define IEXTEN  0x00000400
200 #define EXTPROC 0x10000000
201
202 /* Values for the ACTION argument to `tcflow'.  */
203 #define TCOOFF          0
204 #define TCOON           1
205 #define TCIOFF          2
206 #define TCION           3
207
208 /* Values for the QUEUE_SELECTOR argument to `tcflush'.  */
209 #define TCIFLUSH        0
210 #define TCOFLUSH        1
211 #define TCIOFLUSH       2
212
213 /* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'.  */
214 #define TCSANOW         0
215 #define TCSADRAIN       1
216 #define TCSAFLUSH       2
217
218 #endif /* _ALPHA_TERMBITS_H */