1 #ifndef _ALPHA_TERMBITS_H
2 #define _ALPHA_TERMBITS_H
4 #include <linux/posix_types.h>
6 typedef unsigned char cc_t
;
7 typedef unsigned int speed_t
;
8 typedef unsigned int tcflag_t
;
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.
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 */
28 /* Alpha has matching termios and ktermios */
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 */
61 #define IGNBRK 0000001
62 #define BRKINT 0000002
63 #define IGNPAR 0000004
64 #define PARMRK 0000010
66 #define ISTRIP 0000040
74 #define IMAXBEL 0020000
84 #define ONLRET 0000040
86 #define OFILL 00000100
87 #define OFDEL 00000200
88 #define NLDLY 00001400
93 #define TABDLY 00006000
98 #define CRDLY 00030000
103 #define FFDLY 00040000
106 #define BSDLY 00100000
109 #define VTDLY 00200000
112 #define XTABS 01000000 /* Hmm.. Linux/i386 considers this part of TABDLY.. */
114 /* c_cflag bit meaning */
115 #define CBAUD 0000037
116 #define B0 0000000 /* hang up */
125 #define B1200 0000011
126 #define B1800 0000012
127 #define B2400 0000013
128 #define B4800 0000014
129 #define B9600 0000015
130 #define B19200 0000016
131 #define B38400 0000017
134 #define CBAUDEX 0000000
136 #define B115200 00021
137 #define B230400 00022
138 #define B460800 00023
139 #define B500000 00024
140 #define B576000 00025
141 #define B921600 00026
142 #define B1000000 00027
143 #define B1152000 00030
144 #define B1500000 00031
145 #define B2000000 00032
146 #define B2500000 00033
147 #define B3000000 00034
148 #define B3500000 00035
149 #define B4000000 00036
151 #define CSIZE 00001400
157 #define CSTOPB 00002000
158 #define CREAD 00004000
159 #define PARENB 00010000
160 #define PARODD 00020000
161 #define HUPCL 00040000
163 #define CLOCAL 00100000
164 #define CMSPAR 010000000000 /* mark or space (stick) parity */
165 #define CRTSCTS 020000000000 /* flow control */
168 #define ISIG 0x00000080
169 #define ICANON 0x00000100
170 #define XCASE 0x00004000
171 #define ECHO 0x00000008
172 #define ECHOE 0x00000002
173 #define ECHOK 0x00000004
174 #define ECHONL 0x00000010
175 #define NOFLSH 0x80000000
176 #define TOSTOP 0x00400000
177 #define ECHOCTL 0x00000040
178 #define ECHOPRT 0x00000020
179 #define ECHOKE 0x00000001
180 #define FLUSHO 0x00800000
181 #define PENDIN 0x20000000
182 #define IEXTEN 0x00000400
184 /* Values for the ACTION argument to `tcflow'. */
190 /* Values for the QUEUE_SELECTOR argument to `tcflush'. */
195 /* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'. */
200 #endif /* _ALPHA_TERMBITS_H */