xref: /netbsd/sys/compat/linux/common/linux_termios.h (revision bf9ec67e)
1 /*	$NetBSD: linux_termios.h,v 1.11 2002/01/14 23:14:43 bjh21 Exp $	*/
2 
3 /*-
4  * Copyright (c) 1998 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Eric Haszlakiewicz.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *	This product includes software developed by the NetBSD
21  *	Foundation, Inc. and its contributors.
22  * 4. Neither the name of The NetBSD Foundation nor the names of its
23  *    contributors may be used to endorse or promote products derived
24  *    from this software without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  * POSSIBILITY OF SUCH DAMAGE.
37  */
38 
39 #ifndef _LINUX_TERMIOS_H
40 #define _LINUX_TERMIOS_H
41 
42 #if defined(__i386__)
43 #include <compat/linux/arch/i386/linux_termios.h>
44 #elif defined(__m68k__)
45 #include <compat/linux/arch/m68k/linux_termios.h>
46 #elif defined(__alpha__)
47 #include <compat/linux/arch/alpha/linux_termios.h>
48 #elif defined(__powerpc__)
49 #include <compat/linux/arch/powerpc/linux_termios.h>
50 #elif defined(__mips__)
51 #include <compat/linux/arch/mips/linux_termios.h>
52 #elif defined(__arm__)
53 #include <compat/linux/arch/arm/linux_termios.h>
54 #else
55 #error Undefined linux_termios.h machine type.
56 #endif
57 
58 struct linux_winsize {
59 	unsigned short ws_row;
60 	unsigned short ws_col;
61 	unsigned short ws_xpixel;
62 	unsigned short ws_ypixel;
63 };
64 
65 /*
66  * LINUX_NCC is architecture dependent. It is now
67  * defined in sys/compat/linux/<arch>/linux_termios.h
68  */
69 struct linux_termio {
70 	unsigned short c_iflag;
71 	unsigned short c_oflag;
72 	unsigned short c_cflag;
73 	unsigned short c_lflag;
74 	unsigned char c_line;
75 	unsigned char c_cc[LINUX_NCC];
76 };
77 
78 struct linux_termios {
79 	linux_tcflag_t	c_iflag;
80 	linux_tcflag_t	c_oflag;
81 	linux_tcflag_t	c_cflag;
82 	linux_tcflag_t	c_lflag;
83 	linux_cc_t	c_line;
84 	linux_cc_t	c_cc[LINUX_NCCS];
85 #ifdef LINUX_LARGE_STRUCT_TERMIOS
86 	/*
87     * Present on some linux ports but unused:
88 	 * However we must enable it, else it breaks ioctl
89 	 * definitions (the size does not match anymore)
90     */
91 	linux_speed_t	c_ispeed;
92 	linux_speed_t	c_ospeed;
93 #endif
94 };
95 
96 /* Linux modem line defines.. not sure if they'll be used */
97 #define LINUX_TIOCM_LE		0x0001
98 #define LINUX_TIOCM_DTR		0x0002
99 #define LINUX_TIOCM_RTS		0x0004
100 #define LINUX_TIOCM_ST		0x0008
101 #define LINUX_TIOCM_SR		0x0010
102 #define LINUX_TIOCM_CTS		0x0020
103 #define LINUX_TIOCM_CAR		0x0040
104 #define LINUX_TIOCM_RNG		0x0080
105 #define LINUX_TIOCM_DSR		0x0100
106 #define LINUX_TIOCM_CD		LINUX_TIOCM_CAR
107 #define LINUX_TIOCM_RI 		LINUX_TIOCM_RNG
108 
109 #define	LINUX_TCIFLUSH		0
110 #define	LINUX_TCOFLUSH		1
111 #define	LINUX_TCIOFLUSH		2
112 
113 #define	LINUX_TCOOFF		0
114 #define	LINUX_TCOON		1
115 #define	LINUX_TCIOFF		2
116 #define	LINUX_TCION		3
117 
118 #define	LINUX_TCSANOW		0
119 #define	LINUX_TCSADRAIN		1
120 #define	LINUX_TCSAFLUSH		2
121 
122 /* Linux line disciplines */
123 #define LINUX_N_TTY		0
124 #define LINUX_N_SLIP		1
125 #define LINUX_N_MOUSE		2
126 #define LINUX_N_PPP		3
127 #define	LINUX_N_STRIP		4
128 
129 /* currently unused: */
130 #define	LINUX_N_AX25		5
131 #define	LINUX_N_X25		6
132 #define	LINUX_N_6PACK		7
133 
134 /* values passed to TIOCLINUX ioctl */
135 #define LINUX_TIOCLINUX_COPY		 2
136 #define LINUX_TIOCLINUX_PASTE		 3
137 #define LINUX_TIOCLINUX_UNBLANK		 4
138 #define LINUX_TIOCLINUX_LOADLUT		 5
139 #define LINUX_TIOCLINUX_READSHIFT	 6
140 #define LINUX_TIOCLINUX_READMOUSE	 7
141 #define LINUX_TIOCLINUX_VESABLANK	10
142 #define LINUX_TIOCLINUX_KERNMSG		11
143 #define LINUX_TIOCLINUX_CURCONS		12
144 
145 #endif /* !_LINUX_TERMIOS_H */
146