]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - include/asm-s390/termbits.h
Linux-2.6.12-rc2
[mirror_ubuntu-artful-kernel.git] / include / asm-s390 / termbits.h
1 /*
2 * include/asm-s390/termbits.h
3 *
4 * S390 version
5 *
6 * Derived from "include/asm-i386/termbits.h"
7 */
8
9 #ifndef __ARCH_S390_TERMBITS_H__
10 #define __ARCH_S390_TERMBITS_H__
11
12 #include <linux/posix_types.h>
13
14 typedef unsigned char cc_t;
15 typedef unsigned int speed_t;
16 typedef unsigned int tcflag_t;
17
18 #define NCCS 19
19 struct termios {
20 tcflag_t c_iflag; /* input mode flags */
21 tcflag_t c_oflag; /* output mode flags */
22 tcflag_t c_cflag; /* control mode flags */
23 tcflag_t c_lflag; /* local mode flags */
24 cc_t c_line; /* line discipline */
25 cc_t c_cc[NCCS]; /* control characters */
26 };
27
28 /* c_cc characters */
29 #define VINTR 0
30 #define VQUIT 1
31 #define VERASE 2
32 #define VKILL 3
33 #define VEOF 4
34 #define VTIME 5
35 #define VMIN 6
36 #define VSWTC 7
37 #define VSTART 8
38 #define VSTOP 9
39 #define VSUSP 10
40 #define VEOL 11
41 #define VREPRINT 12
42 #define VDISCARD 13
43 #define VWERASE 14
44 #define VLNEXT 15
45 #define VEOL2 16
46
47 /* c_iflag bits */
48 #define IGNBRK 0000001
49 #define BRKINT 0000002
50 #define IGNPAR 0000004
51 #define PARMRK 0000010
52 #define INPCK 0000020
53 #define ISTRIP 0000040
54 #define INLCR 0000100
55 #define IGNCR 0000200
56 #define ICRNL 0000400
57 #define IUCLC 0001000
58 #define IXON 0002000
59 #define IXANY 0004000
60 #define IXOFF 0010000
61 #define IMAXBEL 0020000
62 #define IUTF8 0040000
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