• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/mips/include/asm/
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License.  See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1995, 96, 99, 2001, 06 Ralf Baechle
7 * Copyright (C) 1999 Silicon Graphics, Inc.
8 * Copyright (C) 2001 MIPS Technologies, Inc.
9 */
10#ifndef _ASM_TERMBITS_H
11#define _ASM_TERMBITS_H
12
13#include <linux/posix_types.h>
14
15typedef unsigned char cc_t;
16typedef unsigned int speed_t;
17typedef unsigned int tcflag_t;
18
19/*
20 * The ABI says nothing about NCC but seems to use NCCS as
21 * replacement for it in struct termio
22 */
23#define NCCS	23
24struct termios {
25	tcflag_t c_iflag;		/* input mode flags */
26	tcflag_t c_oflag;		/* output mode flags */
27	tcflag_t c_cflag;		/* control mode flags */
28	tcflag_t c_lflag;		/* local mode flags */
29	cc_t c_line;			/* line discipline */
30	cc_t c_cc[NCCS];		/* control characters */
31};
32
33struct termios2 {
34	tcflag_t c_iflag;		/* input mode flags */
35	tcflag_t c_oflag;		/* output mode flags */
36	tcflag_t c_cflag;		/* control mode flags */
37	tcflag_t c_lflag;		/* local mode flags */
38	cc_t c_line;			/* line discipline */
39	cc_t c_cc[NCCS];		/* control characters */
40	speed_t c_ispeed;		/* input speed */
41	speed_t c_ospeed;		/* output speed */
42};
43
44struct ktermios {
45	tcflag_t c_iflag;		/* input mode flags */
46	tcflag_t c_oflag;		/* output mode flags */
47	tcflag_t c_cflag;		/* control mode flags */
48	tcflag_t c_lflag;		/* local mode flags */
49	cc_t c_line;			/* line discipline */
50	cc_t c_cc[NCCS];		/* control characters */
51	speed_t c_ispeed;		/* input speed */
52	speed_t c_ospeed;		/* output speed */
53};
54
55/* c_cc characters */
56#define VINTR		 0		/* Interrupt character [ISIG].  */
57#define VQUIT		 1		/* Quit character [ISIG].  */
58#define VERASE		 2		/* Erase character [ICANON].  */
59#define VKILL		 3		/* Kill-line character [ICANON].  */
60#define VMIN		 4		/* Minimum number of bytes read at once [!ICANON].  */
61#define VTIME		 5		/* Time-out value (tenths of a second) [!ICANON].  */
62#define VEOL2		 6		/* Second EOL character [ICANON].  */
63#define VSWTC		 7		/* ??? */
64#define VSWTCH		VSWTC
65#define VSTART		 8		/* Start (X-ON) character [IXON, IXOFF].  */
66#define VSTOP		 9		/* Stop (X-OFF) character [IXON, IXOFF].  */
67#define VSUSP		10		/* Suspend character [ISIG].  */
68#define VREPRINT	12		/* Reprint-line character [ICANON].  */
69#define VDISCARD	13		/* Discard character [IEXTEN].  */
70#define VWERASE		14		/* Word-erase character [ICANON].  */
71#define VLNEXT		15		/* Literal-next character [IEXTEN].  */
72#define VEOF		16		/* End-of-file character [ICANON].  */
73#define VEOL		17		/* End-of-line character [ICANON].  */
74
75/* c_iflag bits */
76#define IGNBRK	0000001		/* Ignore break condition.  */
77#define BRKINT	0000002		/* Signal interrupt on break.  */
78#define IGNPAR	0000004		/* Ignore characters with parity errors.  */
79#define PARMRK	0000010		/* Mark parity and framing errors.  */
80#define INPCK	0000020		/* Enable input parity check.  */
81#define ISTRIP	0000040		/* Strip 8th bit off characters.  */
82#define INLCR	0000100		/* Map NL to CR on input.  */
83#define IGNCR	0000200		/* Ignore CR.  */
84#define ICRNL	0000400		/* Map CR to NL on input.  */
85#define IUCLC	0001000		/* Map upper case to lower case on input.  */
86#define IXON	0002000		/* Enable start/stop output control.  */
87#define IXANY	0004000		/* Any character will restart after stop.  */
88#define IXOFF	0010000		/* Enable start/stop input control.  */
89#define IMAXBEL	0020000		/* Ring bell when input queue is full.  */
90#define IUTF8	0040000		/* Input is UTF-8 */
91
92/* c_oflag bits */
93#define OPOST	0000001		/* Perform output processing.  */
94#define OLCUC	0000002		/* Map lower case to upper case on output.  */
95#define ONLCR	0000004		/* Map NL to CR-NL on output.  */
96#define OCRNL	0000010
97#define ONOCR	0000020
98#define ONLRET	0000040
99#define OFILL	0000100
100#define OFDEL	0000200
101#define NLDLY	0000400
102#define   NL0	0000000
103#define   NL1	0000400
104#define CRDLY	0003000
105#define   CR0	0000000
106#define   CR1	0001000
107#define   CR2	0002000
108#define   CR3	0003000
109#define TABDLY	0014000
110#define   TAB0	0000000
111#define   TAB1	0004000
112#define   TAB2	0010000
113#define   TAB3	0014000
114#define   XTABS	0014000
115#define BSDLY	0020000
116#define   BS0	0000000
117#define   BS1	0020000
118#define VTDLY	0040000
119#define   VT0	0000000
120#define   VT1	0040000
121#define FFDLY	0100000
122#define   FF0	0000000
123#define   FF1	0100000
124/*
125#define PAGEOUT ???
126#define WRAP    ???
127 */
128
129/* c_cflag bit meaning */
130#define CBAUD	0010017
131#define  B0	0000000		/* hang up */
132#define  B50	0000001
133#define  B75	0000002
134#define  B110	0000003
135#define  B134	0000004
136#define  B150	0000005
137#define  B200	0000006
138#define  B300	0000007
139#define  B600	0000010
140#define  B1200	0000011
141#define  B1800	0000012
142#define  B2400	0000013
143#define  B4800	0000014
144#define  B9600	0000015
145#define  B19200	0000016
146#define  B38400	0000017
147#define EXTA B19200
148#define EXTB B38400
149#define CSIZE	0000060		/* Number of bits per byte (mask).  */
150#define   CS5	0000000		/* 5 bits per byte.  */
151#define   CS6	0000020		/* 6 bits per byte.  */
152#define   CS7	0000040		/* 7 bits per byte.  */
153#define   CS8	0000060		/* 8 bits per byte.  */
154#define CSTOPB	0000100		/* Two stop bits instead of one.  */
155#define CREAD	0000200		/* Enable receiver.  */
156#define PARENB	0000400		/* Parity enable.  */
157#define PARODD	0001000		/* Odd parity instead of even.  */
158#define HUPCL	0002000		/* Hang up on last close.  */
159#define CLOCAL	0004000		/* Ignore modem status lines.  */
160#define CBAUDEX 0010000
161#define    BOTHER 0010000
162#define    B57600 0010001
163#define   B115200 0010002
164#define   B230400 0010003
165#define   B460800 0010004
166#define   B500000 0010005
167#define   B576000 0010006
168#define   B921600 0010007
169#define  B1000000 0010010
170#define  B1152000 0010011
171#define  B1500000 0010012
172#define  B2000000 0010013
173#define  B2500000 0010014
174#define  B3000000 0010015
175#define  B3500000 0010016
176#define  B4000000 0010017
177#define CIBAUD	  002003600000	/* input baud rate */
178#define CMSPAR    010000000000	/* mark or space (stick) parity */
179#define CRTSCTS	  020000000000	/* flow control */
180
181#define IBSHIFT	16		/* Shift from CBAUD to CIBAUD */
182
183/* c_lflag bits */
184#define ISIG	0000001		/* Enable signals.  */
185#define ICANON	0000002		/* Do erase and kill processing.  */
186#define XCASE	0000004
187#define ECHO	0000010		/* Enable echo.  */
188#define ECHOE	0000020		/* Visual erase for ERASE.  */
189#define ECHOK	0000040		/* Echo NL after KILL.  */
190#define ECHONL	0000100		/* Echo NL even if ECHO is off.  */
191#define NOFLSH	0000200		/* Disable flush after interrupt.  */
192#define IEXTEN	0000400		/* Enable DISCARD and LNEXT.  */
193#define ECHOCTL	0001000		/* Echo control characters as ^X.  */
194#define ECHOPRT	0002000		/* Hardcopy visual erase.  */
195#define ECHOKE	0004000		/* Visual erase for KILL.  */
196#define FLUSHO	0020000
197#define PENDIN	0040000		/* Retype pending input (state).  */
198#define TOSTOP	0100000		/* Send SIGTTOU for background output.  */
199#define ITOSTOP	TOSTOP
200#define EXTPROC	0200000		/* External processing on pty */
201
202/* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
203#define TIOCSER_TEMT    0x01	/* Transmitter physically empty */
204
205/* tcflow() and TCXONC use these */
206#define	TCOOFF		0	/* Suspend output.  */
207#define	TCOON		1	/* Restart suspended output.  */
208#define	TCIOFF		2	/* Send a STOP character.  */
209#define	TCION		3	/* Send a START character.  */
210
211/* tcflush() and TCFLSH use these */
212#define	TCIFLUSH	0	/* Discard data received but not yet read.  */
213#define	TCOFLUSH	1	/* Discard data written but not yet sent.  */
214#define	TCIOFLUSH	2	/* Discard all pending data.  */
215
216/* tcsetattr uses these */
217#define	TCSANOW		TCSETS	/* Change immediately.  */
218#define	TCSADRAIN	TCSETSW	/* Change when pending output is written.  */
219#define	TCSAFLUSH	TCSETSF	/* Flush pending input before changing.  */
220
221#endif /* _ASM_TERMBITS_H */
222