1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef _ALPHA_TERMBITS_H
3 #define _ALPHA_TERMBITS_H
5 #include <linux/posix_types.h>
7 typedef unsigned char cc_t
;
8 typedef unsigned int speed_t
;
9 typedef unsigned int tcflag_t
;
12 * termios type and macro definitions. Be careful about adding stuff
13 * to this file since it's used in GNU libc and there are strict rules
14 * concerning namespace pollution.
19 tcflag_t c_iflag
; /* input mode flags */
20 tcflag_t c_oflag
; /* output mode flags */
21 tcflag_t c_cflag
; /* control mode flags */
22 tcflag_t c_lflag
; /* local mode flags */
23 cc_t c_cc
[NCCS
]; /* control characters */
24 cc_t c_line
; /* line discipline (== c_cc[19]) */
25 speed_t c_ispeed
; /* input speed */
26 speed_t c_ospeed
; /* output speed */
29 /* Alpha has identical termios and termios2 */
32 tcflag_t c_iflag
; /* input mode flags */
33 tcflag_t c_oflag
; /* output mode flags */
34 tcflag_t c_cflag
; /* control mode flags */
35 tcflag_t c_lflag
; /* local mode flags */
36 cc_t c_cc
[NCCS
]; /* control characters */
37 cc_t c_line
; /* line discipline (== c_cc[19]) */
38 speed_t c_ispeed
; /* input speed */
39 speed_t c_ospeed
; /* output speed */
42 /* Alpha has matching termios and ktermios */
45 tcflag_t c_iflag
; /* input mode flags */
46 tcflag_t c_oflag
; /* output mode flags */
47 tcflag_t c_cflag
; /* control mode flags */
48 tcflag_t c_lflag
; /* local mode flags */
49 cc_t c_cc
[NCCS
]; /* control characters */
50 cc_t c_line
; /* line discipline (== c_cc[19]) */
51 speed_t c_ispeed
; /* input speed */
52 speed_t c_ospeed
; /* output speed */
75 #define IGNBRK 0000001
76 #define BRKINT 0000002
77 #define IGNPAR 0000004
78 #define PARMRK 0000010
80 #define ISTRIP 0000040
88 #define IMAXBEL 0020000
98 #define ONLRET 0000040
100 #define OFILL 00000100
101 #define OFDEL 00000200
102 #define NLDLY 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
117 #define FFDLY 00040000
120 #define BSDLY 00100000
123 #define VTDLY 00200000
127 * Should be equivalent to TAB3, see description of TAB3 in
128 * POSIX.1-2008, Ch. 11.2.3 "Output Modes"
132 /* c_cflag bit meaning */
133 #define CBAUD 0000037
134 #define B0 0000000 /* hang up */
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
152 #define CBAUDEX 0000000
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
170 #define CSIZE 00001400
176 #define CSTOPB 00002000
177 #define CREAD 00004000
178 #define PARENB 00010000
179 #define PARODD 00020000
180 #define HUPCL 00040000
182 #define CLOCAL 00100000
183 #define CMSPAR 010000000000 /* mark or space (stick) parity */
184 #define CRTSCTS 020000000000 /* flow control */
186 #define CIBAUD 07600000
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
207 /* Values for the ACTION argument to `tcflow'. */
213 /* Values for the QUEUE_SELECTOR argument to `tcflush'. */
218 /* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'. */
223 #endif /* _ALPHA_TERMBITS_H */