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