538640fa6609070e1d84b28ed8370a93aeb42b6a
[dragonfly.git] / sys / sys / termios.h
1 /*
2  * Copyright (c) 1988, 1989, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)termios.h   8.3 (Berkeley) 3/28/94
34  * $FreeBSD: src/sys/sys/termios.h,v 1.13.2.1 2001/03/06 06:31:44 jhb Exp $
35  * $DragonFly: src/sys/sys/termios.h,v 1.3 2003/08/20 07:31:21 rob Exp $
36  */
37
38 #ifndef _SYS_TERMIOS_H_
39 #define _SYS_TERMIOS_H_
40
41 /*
42  * Special Control Characters
43  *
44  * Index into c_cc[] character array.
45  *
46  *      Name         Subscript  Enabled by
47  */
48 #define VEOF            0       /* ICANON */
49 #define VEOL            1       /* ICANON */
50 #ifndef _POSIX_SOURCE
51 #define VEOL2           2       /* ICANON together with IEXTEN */
52 #endif
53 #define VERASE          3       /* ICANON */
54 #ifndef _POSIX_SOURCE
55 #define VWERASE         4       /* ICANON together with IEXTEN */
56 #endif
57 #define VKILL           5       /* ICANON */
58 #ifndef _POSIX_SOURCE
59 #define VREPRINT        6       /* ICANON together with IEXTEN */
60 #define VERASE2         7       /* ICANON */
61 #endif
62 /*                      7          ex-spare 1 */
63 #define VINTR           8       /* ISIG */
64 #define VQUIT           9       /* ISIG */
65 #define VSUSP           10      /* ISIG */
66 #ifndef _POSIX_SOURCE
67 #define VDSUSP          11      /* ISIG together with IEXTEN */
68 #endif
69 #define VSTART          12      /* IXON, IXOFF */
70 #define VSTOP           13      /* IXON, IXOFF */
71 #ifndef _POSIX_SOURCE
72 #define VLNEXT          14      /* IEXTEN */
73 #define VDISCARD        15      /* IEXTEN */
74 #endif
75 #define VMIN            16      /* !ICANON */
76 #define VTIME           17      /* !ICANON */
77 #ifndef _POSIX_SOURCE
78 #define VSTATUS         18      /* ICANON together with IEXTEN */
79 /*                      19         spare 2 */
80 #endif
81 #define NCCS            20
82
83 #define _POSIX_VDISABLE 0xff
84
85 #ifndef _POSIX_SOURCE
86 #define CCEQ(val, c)    ((c) == (val) ? (val) != _POSIX_VDISABLE : 0)
87 #endif
88
89 /*
90  * Input flags - software input processing
91  */
92 #define IGNBRK          0x00000001      /* ignore BREAK condition */
93 #define BRKINT          0x00000002      /* map BREAK to SIGINTR */
94 #define IGNPAR          0x00000004      /* ignore (discard) parity errors */
95 #define PARMRK          0x00000008      /* mark parity and framing errors */
96 #define INPCK           0x00000010      /* enable checking of parity errors */
97 #define ISTRIP          0x00000020      /* strip 8th bit off chars */
98 #define INLCR           0x00000040      /* map NL into CR */
99 #define IGNCR           0x00000080      /* ignore CR */
100 #define ICRNL           0x00000100      /* map CR to NL (ala CRMOD) */
101 #define IXON            0x00000200      /* enable output flow control */
102 #define IXOFF           0x00000400      /* enable input flow control */
103 #ifndef _POSIX_SOURCE
104 #define IXANY           0x00000800      /* any char will restart after stop */
105 #define IMAXBEL         0x00002000      /* ring bell on input queue full */
106 #endif  /*_POSIX_SOURCE */
107
108 /*
109  * Output flags - software output processing
110  */
111 #define OPOST           0x00000001      /* enable following output processing */
112 #ifndef _POSIX_SOURCE
113 #define ONLCR           0x00000002      /* map NL to CR-NL (ala CRMOD) */
114 #define OXTABS          0x00000004      /* expand tabs to spaces */
115 #define ONOEOT          0x00000008      /* discard EOT's (^D) on output) */
116 #define OCRNL           0x00000010      /* map CR to NL on output */
117 #define ONOCR           0x00000020      /* no CR output at column 0 */
118 #define ONLRET          0x00000040      /* NL performs CR function */
119 #endif  /*_POSIX_SOURCE */
120
121 /*
122  * Control flags - hardware control of terminal
123  */
124 #ifndef _POSIX_SOURCE
125 #define CIGNORE         0x00000001      /* ignore control flags */
126 #endif
127 #define CSIZE           0x00000300      /* character size mask */
128 #define     CS5             0x00000000      /* 5 bits (pseudo) */
129 #define     CS6             0x00000100      /* 6 bits */
130 #define     CS7             0x00000200      /* 7 bits */
131 #define     CS8             0x00000300      /* 8 bits */
132 #define CSTOPB          0x00000400      /* send 2 stop bits */
133 #define CREAD           0x00000800      /* enable receiver */
134 #define PARENB          0x00001000      /* parity enable */
135 #define PARODD          0x00002000      /* odd parity, else even */
136 #define HUPCL           0x00004000      /* hang up on last close */
137 #define CLOCAL          0x00008000      /* ignore modem status lines */
138 #ifndef _POSIX_SOURCE
139 #define CCTS_OFLOW      0x00010000      /* CTS flow control of output */
140 #define CRTSCTS         (CCTS_OFLOW | CRTS_IFLOW)
141 #define CRTS_IFLOW      0x00020000      /* RTS flow control of input */
142 #define CDTR_IFLOW      0x00040000      /* DTR flow control of input */
143 #define CDSR_OFLOW      0x00080000      /* DSR flow control of output */
144 #define CCAR_OFLOW      0x00100000      /* DCD flow control of output */
145 #define MDMBUF          0x00100000      /* old name for CCAR_OFLOW */
146 #endif
147
148
149 /*
150  * "Local" flags - dumping ground for other state
151  *
152  * Warning: some flags in this structure begin with
153  * the letter "I" and look like they belong in the
154  * input flag.
155  */
156
157 #ifndef _POSIX_SOURCE
158 #define ECHOKE          0x00000001      /* visual erase for line kill */
159 #endif  /*_POSIX_SOURCE */
160 #define ECHOE           0x00000002      /* visually erase chars */
161 #define ECHOK           0x00000004      /* echo NL after line kill */
162 #define ECHO            0x00000008      /* enable echoing */
163 #define ECHONL          0x00000010      /* echo NL even if ECHO is off */
164 #ifndef _POSIX_SOURCE
165 #define ECHOPRT         0x00000020      /* visual erase mode for hardcopy */
166 #define ECHOCTL         0x00000040      /* echo control chars as ^(Char) */
167 #endif  /*_POSIX_SOURCE */
168 #define ISIG            0x00000080      /* enable signals INTR, QUIT, [D]SUSP */
169 #define ICANON          0x00000100      /* canonicalize input lines */
170 #ifndef _POSIX_SOURCE
171 #define ALTWERASE       0x00000200      /* use alternate WERASE algorithm */
172 #endif  /*_POSIX_SOURCE */
173 #define IEXTEN          0x00000400      /* enable DISCARD and LNEXT */
174 #define EXTPROC         0x00000800      /* external processing */
175 #define TOSTOP          0x00400000      /* stop background jobs from output */
176 #ifndef _POSIX_SOURCE
177 #define FLUSHO          0x00800000      /* output being flushed (state) */
178 #define NOKERNINFO      0x02000000      /* no kernel output from VSTATUS */
179 #define PENDIN          0x20000000      /* XXX retype pending input (state) */
180 #endif  /*_POSIX_SOURCE */
181 #define NOFLSH          0x80000000      /* don't flush after interrupt */
182
183 typedef unsigned int    tcflag_t;
184 typedef unsigned char   cc_t;
185 typedef unsigned int    speed_t;
186
187 struct termios {
188         tcflag_t        c_iflag;        /* input flags */
189         tcflag_t        c_oflag;        /* output flags */
190         tcflag_t        c_cflag;        /* control flags */
191         tcflag_t        c_lflag;        /* local flags */
192         cc_t            c_cc[NCCS];     /* control chars */
193         speed_t         c_ispeed;       /* input speed */
194         speed_t         c_ospeed;       /* output speed */
195 };
196
197 /*
198  * Commands passed to tcsetattr() for setting the termios structure.
199  */
200 #define TCSANOW         0               /* make change immediate */
201 #define TCSADRAIN       1               /* drain output, then change */
202 #define TCSAFLUSH       2               /* drain output, flush input */
203 #ifndef _POSIX_SOURCE
204 #define TCSASOFT        0x10            /* flag - don't alter h.w. state */
205 #endif
206
207 /*
208  * Standard speeds
209  */
210 #define B0      0
211 #define B50     50
212 #define B75     75
213 #define B110    110
214 #define B134    134
215 #define B150    150
216 #define B200    200
217 #define B300    300
218 #define B600    600
219 #define B1200   1200
220 #define B1800   1800
221 #define B2400   2400
222 #define B4800   4800
223 #define B9600   9600
224 #define B19200  19200
225 #define B38400  38400
226 #ifndef _POSIX_SOURCE
227 #define B7200   7200
228 #define B14400  14400
229 #define B28800  28800
230 #define B57600  57600
231 #define B76800  76800
232 #define B115200 115200
233 #define B230400 230400
234 #define EXTA    19200
235 #define EXTB    38400
236 #endif  /* !_POSIX_SOURCE */
237
238 #ifndef _KERNEL
239
240 #define TCIFLUSH        1
241 #define TCOFLUSH        2
242 #define TCIOFLUSH       3
243 #define TCOOFF          1
244 #define TCOON           2
245 #define TCIOFF          3
246 #define TCION           4
247
248 #include <sys/cdefs.h>
249
250 __BEGIN_DECLS
251 speed_t cfgetispeed (const struct termios *);
252 speed_t cfgetospeed (const struct termios *);
253 int     cfsetispeed (struct termios *, speed_t);
254 int     cfsetospeed (struct termios *, speed_t);
255 int     tcgetattr (int, struct termios *);
256 int     tcsetattr (int, int, const struct termios *);
257 int     tcdrain (int);
258 int     tcflow (int, int);
259 int     tcflush (int, int);
260 int     tcsendbreak (int, int);
261
262 #ifndef _POSIX_SOURCE
263 void    cfmakeraw (struct termios *);
264 int     cfsetspeed (struct termios *, speed_t);
265 #endif /* !_POSIX_SOURCE */
266 __END_DECLS
267
268 #endif /* !_KERNEL */
269
270 #ifndef _POSIX_SOURCE
271
272 /*
273  * Include tty ioctl's that aren't just for backwards compatibility
274  * with the old tty driver.  These ioctl definitions were previously
275  * in <sys/ioctl.h>.
276  */
277 #include <sys/ttycom.h>
278 #endif
279
280 /*
281  * END OF PROTECTED INCLUDE.
282  */
283 #endif /* !_SYS_TERMIOS_H_ */
284
285 #ifndef _POSIX_SOURCE
286 #include <sys/ttydefaults.h>
287 #endif