make oldconfig will rebuild these...
[linux-2.4.21-pre4.git] / include / asm-ia64 / termbits.h
1 #ifndef _ASM_IA64_TERMBITS_H
2 #define _ASM_IA64_TERMBITS_H
3
4 /*
5  * Copyright (C) 1999 Hewlett-Packard Co
6  * Copyright (C) 1999 David Mosberger-Tang <davidm@hpl.hp.com>
7  *
8  * 99/01/28     Added new baudrates
9  */
10
11 #include <linux/posix_types.h>
12
13 typedef unsigned char   cc_t;
14 typedef unsigned int    speed_t;
15 typedef unsigned int    tcflag_t;
16
17 #define NCCS 19
18 struct termios {
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_line;                    /* line discipline */
24         cc_t c_cc[NCCS];                /* control characters */
25 };
26
27 /* c_cc characters */
28 #define VINTR 0
29 #define VQUIT 1
30 #define VERASE 2
31 #define VKILL 3
32 #define VEOF 4
33 #define VTIME 5
34 #define VMIN 6
35 #define VSWTC 7
36 #define VSTART 8
37 #define VSTOP 9
38 #define VSUSP 10
39 #define VEOL 11
40 #define VREPRINT 12
41 #define VDISCARD 13
42 #define VWERASE 14
43 #define VLNEXT 15
44 #define VEOL2 16
45
46 /* c_iflag bits */
47 #define IGNBRK  0000001
48 #define BRKINT  0000002
49 #define IGNPAR  0000004
50 #define PARMRK  0000010
51 #define INPCK   0000020
52 #define ISTRIP  0000040
53 #define INLCR   0000100
54 #define IGNCR   0000200
55 #define ICRNL   0000400
56 #define IUCLC   0001000
57 #define IXON    0002000
58 #define IXANY   0004000
59 #define IXOFF   0010000
60 #define IMAXBEL 0020000
61
62 /* c_oflag bits */
63 #define OPOST   0000001
64 #define OLCUC   0000002
65 #define ONLCR   0000004
66 #define OCRNL   0000010
67 #define ONOCR   0000020
68 #define ONLRET  0000040
69 #define OFILL   0000100
70 #define OFDEL   0000200
71 #define NLDLY   0000400
72 #define   NL0   0000000
73 #define   NL1   0000400
74 #define CRDLY   0003000
75 #define   CR0   0000000
76 #define   CR1   0001000
77 #define   CR2   0002000
78 #define   CR3   0003000
79 #define TABDLY  0014000
80 #define   TAB0  0000000
81 #define   TAB1  0004000
82 #define   TAB2  0010000
83 #define   TAB3  0014000
84 #define   XTABS 0014000
85 #define BSDLY   0020000
86 #define   BS0   0000000
87 #define   BS1   0020000
88 #define VTDLY   0040000
89 #define   VT0   0000000
90 #define   VT1   0040000
91 #define FFDLY   0100000
92 #define   FF0   0000000
93 #define   FF1   0100000
94
95 /* c_cflag bit meaning */
96 #define CBAUD   0010017
97 #define  B0     0000000         /* hang up */
98 #define  B50    0000001
99 #define  B75    0000002
100 #define  B110   0000003
101 #define  B134   0000004
102 #define  B150   0000005
103 #define  B200   0000006
104 #define  B300   0000007
105 #define  B600   0000010
106 #define  B1200  0000011
107 #define  B1800  0000012
108 #define  B2400  0000013
109 #define  B4800  0000014
110 #define  B9600  0000015
111 #define  B19200 0000016
112 #define  B38400 0000017
113 #define EXTA B19200
114 #define EXTB B38400
115 #define CSIZE   0000060
116 #define   CS5   0000000
117 #define   CS6   0000020
118 #define   CS7   0000040
119 #define   CS8   0000060
120 #define CSTOPB  0000100
121 #define CREAD   0000200
122 #define PARENB  0000400
123 #define PARODD  0001000
124 #define HUPCL   0002000
125 #define CLOCAL  0004000
126 #define CBAUDEX 0010000
127 #define    B57600 0010001
128 #define   B115200 0010002
129 #define   B230400 0010003
130 #define   B460800 0010004
131 #define   B500000 0010005
132 #define   B576000 0010006
133 #define   B921600 0010007
134 #define  B1000000 0010010
135 #define  B1152000 0010011
136 #define  B1500000 0010012
137 #define  B2000000 0010013
138 #define  B2500000 0010014
139 #define  B3000000 0010015
140 #define  B3500000 0010016
141 #define  B4000000 0010017
142 #define CIBAUD    002003600000  /* input baud rate (not used) */
143 #define CMSPAR    010000000000          /* mark or space (stick) parity */
144 #define CRTSCTS   020000000000          /* flow control */
145
146 /* c_lflag bits */
147 #define ISIG    0000001
148 #define ICANON  0000002
149 #define XCASE   0000004
150 #define ECHO    0000010
151 #define ECHOE   0000020
152 #define ECHOK   0000040
153 #define ECHONL  0000100
154 #define NOFLSH  0000200
155 #define TOSTOP  0000400
156 #define ECHOCTL 0001000
157 #define ECHOPRT 0002000
158 #define ECHOKE  0004000
159 #define FLUSHO  0010000
160 #define PENDIN  0040000
161 #define IEXTEN  0100000
162
163 /* tcflow() and TCXONC use these */
164 #define TCOOFF          0
165 #define TCOON           1
166 #define TCIOFF          2
167 #define TCION           3
168
169 /* tcflush() and TCFLSH use these */
170 #define TCIFLUSH        0
171 #define TCOFLUSH        1
172 #define TCIOFLUSH       2
173
174 /* tcsetattr uses these */
175 #define TCSANOW         0
176 #define TCSADRAIN       1
177 #define TCSAFLUSH       2
178
179 #endif /* _ASM_IA64_TERMBITS_H */