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

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [asm-ppc/] [termbits.h] - Blame information for rev 1782

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1633 jcastillo
#ifndef _PPC_TERMBITS_H
2
#define _PPC_TERMBITS_H
3
 
4
#include <linux/posix_types.h>
5
 
6
typedef unsigned char   cc_t;
7
typedef unsigned int    speed_t;
8
typedef unsigned int    tcflag_t;
9
 
10
#if 0 /* This is how it's done on Alpha - maybe later. */
11
/*
12
 * termios type and macro definitions.  Be careful about adding stuff
13
 * to this file since it's used in GNU libc and there are strict rules
14
 * concerning namespace pollution.
15
 */
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_cc[NCCS];                /* control characters */
24
        cc_t c_line;                    /* line discipline (== c_cc[19]) */
25
        speed_t c_ispeed;               /* input speed */
26
        speed_t c_ospeed;               /* output speed */
27
};
28
 
29
/* c_cc characters */
30
#define VEOF 0
31
#define VEOL 1
32
#define VEOL2 2
33
#define VERASE 3
34
#define VWERASE 4
35
#define VKILL 5
36
#define VREPRINT 6
37
#define VSWTC 7
38
#define VINTR 8
39
#define VQUIT 9
40
#define VSUSP 10
41
#define VSTART 12
42
#define VSTOP 13
43
#define VLNEXT 14
44
#define VDISCARD 15
45
#define VMIN 16
46
#define VTIME 17
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 IXON    0001000
59
#define IXOFF   0002000
60
#if !defined(KERNEL) || defined(__USE_BSD)
61
  /* POSIX.1 doesn't want these... */
62
# define IXANY          0004000
63
# define IUCLC          0010000
64
# define IMAXBEL        0020000
65
#endif
66
 
67
/* c_oflag bits */
68
#define OPOST   0000001
69
#define ONLCR   0000002
70
#define OLCUC   0000004
71
 
72
#define OCRNL   0000010
73
#define ONOCR   0000020
74
#define ONLRET  0000040
75
 
76
#define OFILL   00000100
77
#define OFDEL   00000200
78
#define NLDLY   00001400
79
#define   NL0   00000000
80
#define   NL1   00000400
81
#define   NL2   00001000
82
#define   NL3   00001400
83
#define TABDLY  00006000
84
#define   TAB0  00000000
85
#define   TAB1  00002000
86
#define   TAB2  00004000
87
#define   TAB3  00006000
88
#define CRDLY   00030000
89
#define   CR0   00000000
90
#define   CR1   00010000
91
#define   CR2   00020000
92
#define   CR3   00030000
93
#define FFDLY   00040000
94
#define   FF0   00000000
95
#define   FF1   00040000
96
#define BSDLY   00100000
97
#define   BS0   00000000
98
#define   BS1   00100000
99
#define VTDLY   00200000
100
#define   VT0   00000000
101
#define   VT1   00200000
102
#define XTABS   01000000 /* Hmm.. Linux/i386 considers this part of TABDLY.. */
103
 
104
/* c_cflag bit meaning */
105
#define CBAUD   0000017
106
#define  B0     0000000         /* hang up */
107
#define  B50    0000001
108
#define  B75    0000002
109
#define  B110   0000003
110
#define  B134   0000004
111
#define  B150   0000005
112
#define  B200   0000006
113
#define  B300   0000007
114
#define  B600   0000010
115
#define  B1200  0000011
116
#define  B1800  0000012
117
#define  B2400  0000013
118
#define  B4800  0000014
119
#define  B9600  0000015
120
#define  B19200 0000016
121
#define  B38400 0000017
122
#define EXTA B19200
123
#define EXTB B38400
124
#define CBAUDEX 0000020
125
#define  B57600   00020
126
#define  B115200  00021
127
#define  B230400  00022
128
 
129
#define CSIZE   00001400
130
#define   CS5   00000000
131
#define   CS6   00000400
132
#define   CS7   00001000
133
#define   CS8   00001400
134
 
135
#define CSTOPB  00002000
136
#define CREAD   00004000
137
#define PARENB  00010000
138
#define PARODD  00020000
139
#define HUPCL   00040000
140
 
141
#define CLOCAL  00100000
142
#define CRTSCTS   020000000000          /* flow control */
143
 
144
/* c_lflag bits */
145
#define ISIG    0x00000080
146
#define ICANON  0x00000100
147
#define XCASE   0x00004000
148
#define ECHO    0x00000008
149
#define ECHOE   0x00000002
150
#define ECHOK   0x00000004
151
#define ECHONL  0x00000010
152
#define NOFLSH  0x80000000
153
#define TOSTOP  0x00400000
154
#define ECHOCTL 0x00000040
155
#define ECHOPRT 0x00000020
156
#define ECHOKE  0x00000001
157
#define FLUSHO  0x00800000
158
#define PENDIN  0x20000000
159
#define IEXTEN  0x00000400
160
 
161
/* Values for the ACTION argument to `tcflow'.  */
162
#define TCOOFF          0
163
#define TCOON           1
164
#define TCIOFF          2
165
#define TCION           3
166
 
167
/* Values for the QUEUE_SELECTOR argument to `tcflush'.  */
168
#define TCIFLUSH        0
169
#define TCOFLUSH        1
170
#define TCIOFLUSH       2
171
 
172
/* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'.  */
173
#define TCSANOW         0
174
#define TCSADRAIN       1
175
#define TCSAFLUSH       2
176
#endif
177
 
178
#endif /* _PPC_TERMBITS_H */

powered by: WebSVN 2.1.0

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