OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [include/] [asm-ia64/] [termbits.h] - Blame information for rev 1765

Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.