1 #ifndef _PPC_TERMBITS_H
2 #define _PPC_TERMBITS_H
4 typedef unsigned char cc_t
;
5 typedef unsigned int speed_t
;
6 typedef unsigned int tcflag_t
;
9 * termios type and macro definitions. Be careful about adding stuff
10 * to this file since it's used in GNU libc and there are strict rules
11 * concerning namespace pollution.
16 tcflag_t c_iflag
; /* input mode flags */
17 tcflag_t c_oflag
; /* output mode flags */
18 tcflag_t c_cflag
; /* control mode flags */
19 tcflag_t c_lflag
; /* local mode flags */
20 cc_t c_cc
[NCCS
]; /* control characters */
21 cc_t c_line
; /* line discipline (== c_cc[19]) */
22 speed_t c_ispeed
; /* input speed */
23 speed_t c_ospeed
; /* output speed */
47 #define IGNBRK 0000001
48 #define BRKINT 0000002
49 #define IGNPAR 0000004
50 #define PARMRK 0000010
52 #define ISTRIP 0000040
60 #define IMAXBEL 0020000
70 #define ONLRET 0000040
72 #define OFILL 00000100
73 #define OFDEL 00000200
74 #define NLDLY 00001400
79 #define TABDLY 00006000
84 #define XTABS 00006000 /* required by POSIX to == TAB3 */
85 #define CRDLY 00030000
90 #define FFDLY 00040000
93 #define BSDLY 00100000
96 #define VTDLY 00200000
100 /* c_cflag bit meaning */
101 #define CBAUD 0000377
102 #define B0 0000000 /* hang up */
111 #define B1200 0000011
112 #define B1800 0000012
113 #define B2400 0000013
114 #define B4800 0000014
115 #define B9600 0000015
116 #define B19200 0000016
117 #define B38400 0000017
120 #define CBAUDEX 0000000
122 #define B115200 00021
123 #define B230400 00022
124 #define B460800 00023
125 #define B500000 00024
126 #define B576000 00025
127 #define B921600 00026
128 #define B1000000 00027
129 #define B1152000 00030
130 #define B1500000 00031
131 #define B2000000 00032
132 #define B2500000 00033
133 #define B3000000 00034
134 #define B3500000 00035
135 #define B4000000 00036
137 #define CSIZE 00001400
143 #define CSTOPB 00002000
144 #define CREAD 00004000
145 #define PARENB 00010000
146 #define PARODD 00020000
147 #define HUPCL 00040000
149 #define CLOCAL 00100000
150 #define CRTSCTS 020000000000 /* flow control */
153 #define ISIG 0x00000080
154 #define ICANON 0x00000100
155 #define XCASE 0x00004000
156 #define ECHO 0x00000008
157 #define ECHOE 0x00000002
158 #define ECHOK 0x00000004
159 #define ECHONL 0x00000010
160 #define NOFLSH 0x80000000
161 #define TOSTOP 0x00400000
162 #define ECHOCTL 0x00000040
163 #define ECHOPRT 0x00000020
164 #define ECHOKE 0x00000001
165 #define FLUSHO 0x00800000
166 #define PENDIN 0x20000000
167 #define IEXTEN 0x00000400
169 /* Values for the ACTION argument to `tcflow'. */
175 /* Values for the QUEUE_SELECTOR argument to `tcflush'. */
180 /* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'. */
185 #endif /* _PPC_TERMBITS_H */