1 /**************************************************************************** 2 **************************************************************************** 3 *** 4 *** This header was automatically generated from a Linux kernel header 5 *** of the same name, to make information necessary for userspace to 6 *** call into the kernel available to libc. It contains only constants, 7 *** structures, and macros generated from the original header, and thus, 8 *** contains no copyrightable information. 9 *** 10 **************************************************************************** 11 ****************************************************************************/ 12 #ifndef __ASM_ARM_TERMIOS_H 13 #define __ASM_ARM_TERMIOS_H 14 15 #include <asm/termbits.h> 16 #include <asm/ioctls.h> 17 18 struct winsize { 19 unsigned short ws_row; 20 unsigned short ws_col; 21 unsigned short ws_xpixel; 22 unsigned short ws_ypixel; 23 }; 24 25 #define NCC 8 26 struct termio { 27 unsigned short c_iflag; 28 unsigned short c_oflag; 29 unsigned short c_cflag; 30 unsigned short c_lflag; 31 unsigned char c_line; 32 unsigned char c_cc[NCC]; 33 }; 34 35 #define TIOCM_LE 0x001 36 #define TIOCM_DTR 0x002 37 #define TIOCM_RTS 0x004 38 #define TIOCM_ST 0x008 39 #define TIOCM_SR 0x010 40 #define TIOCM_CTS 0x020 41 #define TIOCM_CAR 0x040 42 #define TIOCM_RNG 0x080 43 #define TIOCM_DSR 0x100 44 #define TIOCM_CD TIOCM_CAR 45 #define TIOCM_RI TIOCM_RNG 46 #define TIOCM_OUT1 0x2000 47 #define TIOCM_OUT2 0x4000 48 #define TIOCM_LOOP 0x8000 49 50 #define N_TTY 0 51 #define N_SLIP 1 52 #define N_MOUSE 2 53 #define N_PPP 3 54 #define N_STRIP 4 55 #define N_AX25 5 56 #define N_X25 6 57 #define N_6PACK 7 58 #define N_MASC 8 59 #define N_R3964 9 60 #define N_PROFIBUS_FDL 10 61 #define N_IRDA 11 62 #define N_SMSBLOCK 12 63 #define N_HDLC 13 64 #define N_SYNC_PPP 14 65 #define N_HCI 15 66 67 #endif 68