1#ifndef _SPARC64_TERMBITS_H
2#define _SPARC64_TERMBITS_H
3
4#include <linux/posix_types.h>
5
6typedef unsigned char   cc_t;
7typedef unsigned int    speed_t;
8
9typedef unsigned int    tcflag_t;
10
11#define NCC 8
12struct termio {
13	unsigned short c_iflag;		/* input mode flags */
14	unsigned short c_oflag;		/* output mode flags */
15	unsigned short c_cflag;		/* control mode flags */
16	unsigned short c_lflag;		/* local mode flags */
17	unsigned char c_line;		/* line discipline */
18	unsigned char c_cc[NCC];	/* control characters */
19};
20
21#define NCCS 17
22struct termios {
23	tcflag_t c_iflag;		/* input mode flags */
24	tcflag_t c_oflag;		/* output mode flags */
25	tcflag_t c_cflag;		/* control mode flags */
26	tcflag_t c_lflag;		/* local mode flags */
27	cc_t c_line;			/* line discipline */
28	cc_t c_cc[NCCS];		/* control characters */
29#ifdef __KERNEL__
30#define SIZEOF_USER_TERMIOS sizeof (struct termios) - (2*sizeof (cc_t))
31	cc_t _x_cc[2];                  /* We need them to hold vmin/vtime */
32#endif
33};
34
35struct ktermios {
36	tcflag_t c_iflag;		/* input mode flags */
37	tcflag_t c_oflag;		/* output mode flags */
38	tcflag_t c_cflag;		/* control mode flags */
39	tcflag_t c_lflag;		/* local mode flags */
40	cc_t c_line;			/* line discipline */
41	cc_t c_cc[NCCS];		/* control characters */
42	cc_t _x_cc[2];                  /* We need them to hold vmin/vtime */
43	speed_t c_ispeed;		/* input speed */
44	speed_t c_ospeed;		/* output speed */
45};
46
47/* c_cc characters */
48#define VINTR    0
49#define VQUIT    1
50#define VERASE   2
51#define VKILL    3
52#define VEOF     4
53#define VEOL     5
54#define VEOL2    6
55#define VSWTC    7
56#define VSTART   8
57#define VSTOP    9
58
59
60
61#define VSUSP    10
62#define VDSUSP   11  /* SunOS POSIX nicety I do believe... */
63#define VREPRINT 12
64#define VDISCARD 13
65#define VWERASE  14
66#define VLNEXT   15
67
68/* Kernel keeps vmin/vtime separated, user apps assume vmin/vtime is
69 * shared with eof/eol
70 */
71#ifdef __KERNEL__
72#define VMIN     16
73#define VTIME    17
74#else
75#define VMIN     VEOF
76#define VTIME    VEOL
77#endif
78
79/* c_iflag bits */
80#define IGNBRK	0x00000001
81#define BRKINT	0x00000002
82#define IGNPAR	0x00000004
83#define PARMRK	0x00000008
84#define INPCK	0x00000010
85#define ISTRIP	0x00000020
86#define INLCR	0x00000040
87#define IGNCR	0x00000080
88#define ICRNL	0x00000100
89#define IUCLC	0x00000200
90#define IXON	0x00000400
91#define IXANY	0x00000800
92#define IXOFF	0x00001000
93#define IMAXBEL	0x00002000
94#define IUTF8	0x00004000
95
96/* c_oflag bits */
97#define OPOST	0x00000001
98#define OLCUC	0x00000002
99#define ONLCR	0x00000004
100#define OCRNL	0x00000008
101#define ONOCR	0x00000010
102#define ONLRET	0x00000020
103#define OFILL	0x00000040
104#define OFDEL	0x00000080
105#define NLDLY	0x00000100
106#define   NL0	0x00000000
107#define   NL1	0x00000100
108#define CRDLY	0x00000600
109#define   CR0	0x00000000
110#define   CR1	0x00000200
111#define   CR2	0x00000400
112#define   CR3	0x00000600
113#define TABDLY	0x00001800
114#define   TAB0	0x00000000
115#define   TAB1	0x00000800
116#define   TAB2	0x00001000
117#define   TAB3	0x00001800
118#define   XTABS	0x00001800
119#define BSDLY	0x00002000
120#define   BS0	0x00000000
121#define   BS1	0x00002000
122#define VTDLY	0x00004000
123#define   VT0	0x00000000
124#define   VT1	0x00004000
125#define FFDLY	0x00008000
126#define   FF0	0x00000000
127#define   FF1	0x00008000
128#define PAGEOUT 0x00010000  /* SUNOS specific */
129#define WRAP    0x00020000  /* SUNOS specific */
130
131/* c_cflag bit meaning */
132#define CBAUD	  0x0000100f
133#define  B0	  0x00000000   /* hang up */
134#define  B50	  0x00000001
135#define  B75	  0x00000002
136#define  B110	  0x00000003
137#define  B134	  0x00000004
138#define  B150	  0x00000005
139#define  B200	  0x00000006
140#define  B300	  0x00000007
141#define  B600	  0x00000008
142#define  B1200	  0x00000009
143#define  B1800	  0x0000000a
144#define  B2400	  0x0000000b
145#define  B4800	  0x0000000c
146#define  B9600	  0x0000000d
147#define  B19200	  0x0000000e
148#define  B38400	  0x0000000f
149#define EXTA      B19200
150#define EXTB      B38400
151#define  CSIZE    0x00000030
152#define   CS5	  0x00000000
153#define   CS6	  0x00000010
154#define   CS7	  0x00000020
155#define   CS8	  0x00000030
156#define CSTOPB	  0x00000040
157#define CREAD	  0x00000080
158#define PARENB	  0x00000100
159#define PARODD	  0x00000200
160#define HUPCL	  0x00000400
161#define CLOCAL	  0x00000800
162#define CBAUDEX   0x00001000
163#define  B57600   0x00001001
164#define  B115200  0x00001002
165#define  B230400  0x00001003
166#define  B460800  0x00001004
167/* This is what we can do with the Zilogs. */
168#define  B76800   0x00001005
169/* This is what we can do with the SAB82532. */
170#define  B153600  0x00001006
171#define  B307200  0x00001007
172#define  B614400  0x00001008
173#define  B921600  0x00001009
174/* And these are the rest... */
175#define  B500000  0x0000100a
176#define  B576000  0x0000100b
177#define B1000000  0x0000100c
178#define B1152000  0x0000100d
179#define B1500000  0x0000100e
180#define B2000000  0x0000100f
181/* These have totally bogus values and nobody uses them
182   so far. Later on we'd have to use say 0x10000x and
183   adjust CBAUD constant and drivers accordingly.
184#define B2500000  0x00001010
185#define B3000000  0x00001011
186#define B3500000  0x00001012
187#define B4000000  0x00001013  */
188#define CIBAUD	  0x100f0000  /* input baud rate (not used) */
189#define CMSPAR    0x40000000  /* mark or space (stick) parity */
190#define CRTSCTS	  0x80000000  /* flow control */
191
192/* c_lflag bits */
193#define ISIG	0x00000001
194#define ICANON	0x00000002
195#define XCASE	0x00000004
196#define ECHO	0x00000008
197#define ECHOE	0x00000010
198#define ECHOK	0x00000020
199#define ECHONL	0x00000040
200#define NOFLSH	0x00000080
201#define TOSTOP	0x00000100
202#define ECHOCTL	0x00000200
203#define ECHOPRT	0x00000400
204#define ECHOKE	0x00000800
205#define DEFECHO 0x00001000  /* SUNOS thing, what is it? */
206#define FLUSHO	0x00002000
207#define PENDIN	0x00004000
208#define IEXTEN	0x00008000
209
210/* modem lines */
211#define TIOCM_LE	0x001
212#define TIOCM_DTR	0x002
213#define TIOCM_RTS	0x004
214#define TIOCM_ST	0x008
215#define TIOCM_SR	0x010
216#define TIOCM_CTS	0x020
217#define TIOCM_CAR	0x040
218#define TIOCM_RNG	0x080
219#define TIOCM_DSR	0x100
220#define TIOCM_CD	TIOCM_CAR
221#define TIOCM_RI	TIOCM_RNG
222#define TIOCM_OUT1	0x2000
223#define TIOCM_OUT2	0x4000
224#define TIOCM_LOOP	0x8000
225
226/* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
227#define TIOCSER_TEMT    0x01	/* Transmitter physically empty */
228
229
230/* tcflow() and TCXONC use these */
231#define	TCOOFF		0
232#define	TCOON		1
233#define	TCIOFF		2
234#define	TCION		3
235
236/* tcflush() and TCFLSH use these */
237#define	TCIFLUSH	0
238#define	TCOFLUSH	1
239#define	TCIOFLUSH	2
240
241/* tcsetattr uses these */
242#define	TCSANOW		0
243#define	TCSADRAIN	1
244#define	TCSAFLUSH	2
245
246#endif /* !(_SPARC64_TERMBITS_H) */
247