Replace FSF snail mail address with URLs.
[glibc.git] / sysdeps / unix / sysv / linux / powerpc / bits / termios.h
blobd97162cc74ff2de6fde534398673b5c056187b1f
1 /* Copyright (C) 1997,1999,2001,2003-2005,2010 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #ifndef _TERMIOS_H
19 # error "Never include <bits/termios.h> directly; use <termios.h> instead."
20 #endif
22 typedef unsigned char cc_t;
23 typedef unsigned int speed_t;
24 typedef unsigned int tcflag_t;
27 * termios type and macro definitions. Be careful about adding stuff
28 * to this file since it's used in GNU libc and there are strict rules
29 * concerning namespace pollution.
32 #define NCCS 32
33 struct termios {
34 tcflag_t c_iflag; /* input mode flags */
35 tcflag_t c_oflag; /* output mode flags */
36 tcflag_t c_cflag; /* control mode flags */
37 tcflag_t c_lflag; /* local mode flags */
38 cc_t c_line; /* line discipline (== c_cc[19]) */
39 cc_t c_cc[NCCS]; /* control characters */
40 speed_t c_ispeed; /* input speed */
41 speed_t c_ospeed; /* output speed */
42 #define _HAVE_STRUCT_TERMIOS_C_ISPEED 1
43 #define _HAVE_STRUCT_TERMIOS_C_OSPEED 1
46 /* c_cc characters */
47 #define VINTR 0
48 #define VQUIT 1
49 #define VERASE 2
50 #define VKILL 3
51 #define VEOF 4
52 #define VMIN 5
53 #define VEOL 6
54 #define VTIME 7
55 #define VEOL2 8
56 #define VSWTC 9
58 #define VWERASE 10
59 #define VREPRINT 11
60 #define VSUSP 12
61 #define VSTART 13
62 #define VSTOP 14
63 #define VLNEXT 15
64 #define VDISCARD 16
66 /* c_iflag bits */
67 #define IGNBRK 0000001
68 #define BRKINT 0000002
69 #define IGNPAR 0000004
70 #define PARMRK 0000010
71 #define INPCK 0000020
72 #define ISTRIP 0000040
73 #define INLCR 0000100
74 #define IGNCR 0000200
75 #define ICRNL 0000400
76 #define IXON 0001000
77 #define IXOFF 0002000
78 #define IXANY 0004000
79 #define IUCLC 0010000
80 #define IMAXBEL 0020000
81 #define IUTF8 0040000
83 /* c_oflag bits */
84 #define OPOST 0000001
85 #define ONLCR 0000002
86 #define OLCUC 0000004
88 #define OCRNL 0000010
89 #define ONOCR 0000020
90 #define ONLRET 0000040
92 #define OFILL 00000100
93 #define OFDEL 00000200
94 #if defined __USE_MISC || defined __USE_XOPEN
95 # define NLDLY 00001400
96 # define NL0 00000000
97 # define NL1 00000400
98 # define NL2 00001000
99 # define NL3 00001400
100 # define TABDLY 00006000
101 # define TAB0 00000000
102 # define TAB1 00002000
103 # define TAB2 00004000
104 # define TAB3 00006000
105 # define CRDLY 00030000
106 # define CR0 00000000
107 # define CR1 00010000
108 # define CR2 00020000
109 # define CR3 00030000
110 # define FFDLY 00040000
111 # define FF0 00000000
112 # define FF1 00040000
113 # define BSDLY 00100000
114 # define BS0 00000000
115 # define BS1 00100000
116 #endif
117 #define VTDLY 00200000
118 #define VT0 00000000
119 #define VT1 00200000
121 #ifdef __USE_MISC
122 # define XTABS 00006000
123 #endif
125 /* c_cflag bit meaning */
126 #ifdef __USE_MISC
127 # define CBAUD 0000377
128 #endif
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 #ifdef __USE_MISC
146 # define EXTA B19200
147 # define EXTB B38400
148 # define CBAUDEX 0000020
149 #endif
150 #define B57600 00020
151 #define B115200 00021
152 #define B230400 00022
153 #define B460800 00023
154 #define B500000 00024
155 #define B576000 00025
156 #define B921600 00026
157 #define B1000000 00027
158 #define B1152000 00030
159 #define B1500000 00031
160 #define B2000000 00032
161 #define B2500000 00033
162 #define B3000000 00034
163 #define B3500000 00035
164 #define B4000000 00036
165 #define __MAX_BAUD B4000000
167 #define CSIZE 00001400
168 #define CS5 00000000
169 #define CS6 00000400
170 #define CS7 00001000
171 #define CS8 00001400
173 #define CSTOPB 00002000
174 #define CREAD 00004000
175 #define PARENB 00010000
176 #define PARODD 00020000
177 #define HUPCL 00040000
179 #define CLOCAL 00100000
180 #ifdef __USE_MISC
181 # define CMSPAR 010000000000 /* mark or space (stick) parity */
182 # define CRTSCTS 020000000000 /* flow control */
183 #endif
185 /* c_lflag bits */
186 #define ISIG 0x00000080
187 #define ICANON 0x00000100
188 #if defined __USE_MISC || defined __USE_XOPEN
189 # define XCASE 0x00004000
190 #endif
191 #define ECHO 0x00000008
192 #define ECHOE 0x00000002
193 #define ECHOK 0x00000004
194 #define ECHONL 0x00000010
195 #define NOFLSH 0x80000000
196 #define TOSTOP 0x00400000
197 #ifdef __USE_MISC
198 # define ECHOCTL 0x00000040
199 # define ECHOPRT 0x00000020
200 # define ECHOKE 0x00000001
201 # define FLUSHO 0x00800000
202 # define PENDIN 0x20000000
203 #endif
204 #define IEXTEN 0x00000400
205 #ifdef __USE_BSD
206 # define EXTPROC 0x10000000
207 #endif
209 /* Values for the ACTION argument to `tcflow'. */
210 #define TCOOFF 0
211 #define TCOON 1
212 #define TCIOFF 2
213 #define TCION 3
215 /* Values for the QUEUE_SELECTOR argument to `tcflush'. */
216 #define TCIFLUSH 0
217 #define TCOFLUSH 1
218 #define TCIOFLUSH 2
220 /* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'. */
221 #define TCSANOW 0
222 #define TCSADRAIN 1
223 #define TCSAFLUSH 2
225 struct sgttyb {
226 char sg_ispeed;
227 char sg_ospeed;
228 char sg_erase;
229 char sg_kill;
230 short sg_flags;
233 struct tchars {
234 char t_intrc;
235 char t_quitc;
236 char t_startc;
237 char t_stopc;
238 char t_eofc;
239 char t_brkc;
242 struct ltchars {
243 char t_suspc;
244 char t_dsuspc;
245 char t_rprntc;
246 char t_flushc;
247 char t_werasc;
248 char t_lnextc;
251 /* Used for packet mode */
252 #define TIOCPKT_DATA 0
253 #define TIOCPKT_FLUSHREAD 1
254 #define TIOCPKT_FLUSHWRITE 2
255 #define TIOCPKT_STOP 4
256 #define TIOCPKT_START 8
257 #define TIOCPKT_NOSTOP 16
258 #define TIOCPKT_DOSTOP 32
260 struct winsize {
261 unsigned short ws_row;
262 unsigned short ws_col;
263 unsigned short ws_xpixel;
264 unsigned short ws_ypixel;
267 #define NCC 10
268 struct termio {
269 unsigned short c_iflag; /* input mode flags */
270 unsigned short c_oflag; /* output mode flags */
271 unsigned short c_cflag; /* control mode flags */
272 unsigned short c_lflag; /* local mode flags */
273 unsigned char c_line; /* line discipline */
274 unsigned char c_cc[NCC]; /* control characters */
277 /* c_cc characters */
278 #define _VINTR 0
279 #define _VQUIT 1
280 #define _VERASE 2
281 #define _VKILL 3
282 #define _VEOF 4
283 #define _VMIN 5
284 #define _VEOL 6
285 #define _VTIME 7
286 #define _VEOL2 8
287 #define _VSWTC 9
289 /* modem lines */
290 #define TIOCM_LE 0x001
291 #define TIOCM_DTR 0x002
292 #define TIOCM_RTS 0x004
293 #define TIOCM_ST 0x008
294 #define TIOCM_SR 0x010
295 #define TIOCM_CTS 0x020
296 #define TIOCM_CAR 0x040
297 #define TIOCM_RNG 0x080
298 #define TIOCM_DSR 0x100
299 #define TIOCM_CD TIOCM_CAR
300 #define TIOCM_RI TIOCM_RNG
302 /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
303 #define TIOCSER_TEMT 0x01 /* Transmitter physically empty */
305 /* line disciplines */
306 #define N_TTY 0
307 #define N_SLIP 1
308 #define N_MOUSE 2
309 #define N_PPP 3
310 #define N_STRIP 4
311 #define N_AX25 5
312 #define N_X25 6 /* X.25 async */
313 #define N_6PACK 7
314 #define N_MASC 8 /* Mobitex module */
315 #define N_R3964 9 /* Simatic R3964 module */
316 #define N_PROFIBUS_FDL 10 /* Profibus */
317 #define N_IRDA 11 /* Linux IR */
318 #define N_SMSBLOCK 12 /* SMS block mode */
319 #define N_HDLC 13 /* synchronous HDLC */
320 #define N_SYNC_PPP 14 /* synchronous PPP */
321 #define N_HCI 15 /* Bluetooth HCI UART */