Home | History | Annotate | Line # | Download | only in common
linux_termios.h revision 1.10
      1 /*	$NetBSD: linux_termios.h,v 1.10 2001/09/22 21:24:16 manu 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 #else
     53 #error Undefined linux_termios.h machine type.
     54 #endif
     55 
     56 struct linux_winsize {
     57 	unsigned short ws_row;
     58 	unsigned short ws_col;
     59 	unsigned short ws_xpixel;
     60 	unsigned short ws_ypixel;
     61 };
     62 
     63 /*
     64  * LINUX_NCC is architecture dependent. It is now
     65  * defined in sys/compat/linux/<arch>/linux_termios.h
     66  */
     67 struct linux_termio {
     68 	unsigned short c_iflag;
     69 	unsigned short c_oflag;
     70 	unsigned short c_cflag;
     71 	unsigned short c_lflag;
     72 	unsigned char c_line;
     73 	unsigned char c_cc[LINUX_NCC];
     74 };
     75 
     76 struct linux_termios {
     77 	linux_tcflag_t	c_iflag;
     78 	linux_tcflag_t	c_oflag;
     79 	linux_tcflag_t	c_cflag;
     80 	linux_tcflag_t	c_lflag;
     81 	linux_cc_t	c_line;
     82 	linux_cc_t	c_cc[LINUX_NCCS];
     83 #ifdef LINUX_LARGE_STRUCT_TERMIOS
     84 	/*
     85     * Present on some linux ports but unused:
     86 	 * However we must enable it, else it breaks ioctl
     87 	 * definitions (the size does not match anymore)
     88     */
     89 	linux_speed_t	c_ispeed;
     90 	linux_speed_t	c_ospeed;
     91 #endif
     92 };
     93 
     94 /* Linux modem line defines.. not sure if they'll be used */
     95 #define LINUX_TIOCM_LE		0x0001
     96 #define LINUX_TIOCM_DTR		0x0002
     97 #define LINUX_TIOCM_RTS		0x0004
     98 #define LINUX_TIOCM_ST		0x0008
     99 #define LINUX_TIOCM_SR		0x0010
    100 #define LINUX_TIOCM_CTS		0x0020
    101 #define LINUX_TIOCM_CAR		0x0040
    102 #define LINUX_TIOCM_RNG		0x0080
    103 #define LINUX_TIOCM_DSR		0x0100
    104 #define LINUX_TIOCM_CD		LINUX_TIOCM_CAR
    105 #define LINUX_TIOCM_RI 		LINUX_TIOCM_RNG
    106 
    107 #define	LINUX_TCIFLUSH		0
    108 #define	LINUX_TCOFLUSH		1
    109 #define	LINUX_TCIOFLUSH		2
    110 
    111 #define	LINUX_TCOOFF		0
    112 #define	LINUX_TCOON		1
    113 #define	LINUX_TCIOFF		2
    114 #define	LINUX_TCION		3
    115 
    116 #define	LINUX_TCSANOW		0
    117 #define	LINUX_TCSADRAIN		1
    118 #define	LINUX_TCSAFLUSH		2
    119 
    120 /* Linux line disciplines */
    121 #define LINUX_N_TTY		0
    122 #define LINUX_N_SLIP		1
    123 #define LINUX_N_MOUSE		2
    124 #define LINUX_N_PPP		3
    125 #define	LINUX_N_STRIP		4
    126 
    127 /* currently unused: */
    128 #define	LINUX_N_AX25		5
    129 #define	LINUX_N_X25		6
    130 #define	LINUX_N_6PACK		7
    131 
    132 /* values passed to TIOCLINUX ioctl */
    133 #define LINUX_TIOCLINUX_COPY		 2
    134 #define LINUX_TIOCLINUX_PASTE		 3
    135 #define LINUX_TIOCLINUX_UNBLANK		 4
    136 #define LINUX_TIOCLINUX_LOADLUT		 5
    137 #define LINUX_TIOCLINUX_READSHIFT	 6
    138 #define LINUX_TIOCLINUX_READMOUSE	 7
    139 #define LINUX_TIOCLINUX_VESABLANK	10
    140 #define LINUX_TIOCLINUX_KERNMSG		11
    141 #define LINUX_TIOCLINUX_CURCONS		12
    142 
    143 #endif /* !_LINUX_TERMIOS_H */
    144