root/include/linux/termios.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _LINUX_TERMIOS_H
   2 #define _LINUX_TERMIOS_H
   3 
   4 /* 0x54 is just a magic number to make these relatively uniqe ('T') */
   5 
   6 #define TCGETS          0x5401
   7 #define TCSETS          0x5402
   8 #define TCSETSW         0x5403
   9 #define TCSETSF         0x5404
  10 #define TCGETA          0x5405
  11 #define TCSETA          0x5406
  12 #define TCSETAW         0x5407
  13 #define TCSETAF         0x5408
  14 #define TCSBRK          0x5409
  15 #define TCXONC          0x540A
  16 #define TCFLSH          0x540B
  17 #define TIOCEXCL        0x540C
  18 #define TIOCNXCL        0x540D
  19 #define TIOCSCTTY       0x540E
  20 #define TIOCGPGRP       0x540F
  21 #define TIOCSPGRP       0x5410
  22 #define TIOCOUTQ        0x5411
  23 #define TIOCSTI         0x5412
  24 #define TIOCGWINSZ      0x5413
  25 #define TIOCSWINSZ      0x5414
  26 #define TIOCMGET        0x5415
  27 #define TIOCMBIS        0x5416
  28 #define TIOCMBIC        0x5417
  29 #define TIOCMSET        0x5418
  30 #define TIOCGSOFTCAR    0x5419
  31 #define TIOCSSOFTCAR    0x541A
  32 #define FIONREAD        0x541B
  33 #define TIOCINQ         FIONREAD
  34 #define TIOCLINUX       0x541C
  35 #define TIOCCONS        0x541D
  36 #define TIOCGSERIAL     0x541E
  37 #define TIOCSSERIAL     0x541F
  38 #define TIOCPKT         0x5420
  39 #define FIONBIO         0x5421
  40 #define TIOCNOTTY       0x5422
  41 #define TIOCSETD        0x5423
  42 #define TIOCGETD        0x5424
  43 #define TCSBRKP         0x5425  /* Needed for POSIX tcsendbreak() */
  44 #define FIONCLEX        0x5450  /* these numbers need to be adjusted. */
  45 #define FIOCLEX         0x5451
  46 #define FIOASYNC        0x5452
  47 
  48 /* Used for packet mode */
  49 #define TIOCPKT_FLUSHREAD        1
  50 #define TIOCPKT_FLUSHWRITE       2
  51 #define TIOCPKT_STOP             4
  52 #define TIOCPKT_START            8
  53 #define TIOCPKT_DOSTOP          16
  54 #define TIOCPKT_NOSTOP          32
  55 
  56 struct winsize {
  57         unsigned short ws_row;
  58         unsigned short ws_col;
  59         unsigned short ws_xpixel;
  60         unsigned short ws_ypixel;
  61 };
  62 
  63 #define NCC 8
  64 struct termio {
  65         unsigned short c_iflag;         /* input mode flags */
  66         unsigned short c_oflag;         /* output mode flags */
  67         unsigned short c_cflag;         /* control mode flags */
  68         unsigned short c_lflag;         /* local mode flags */
  69         unsigned char c_line;           /* line discipline */
  70         unsigned char c_cc[NCC];        /* control characters */
  71 };
  72 
  73 #define NCCS 19
  74 struct termios {
  75         tcflag_t c_iflag;               /* input mode flags */
  76         tcflag_t c_oflag;               /* output mode flags */
  77         tcflag_t c_cflag;               /* control mode flags */
  78         tcflag_t c_lflag;               /* local mode flags */
  79         cc_t c_line;                    /* line discipline */
  80         cc_t c_cc[NCCS];                /* control characters */
  81 };
  82 
  83 /* c_cc characters */
  84 #define VINTR 0
  85 #define VQUIT 1
  86 #define VERASE 2
  87 #define VKILL 3
  88 #define VEOF 4
  89 #define VTIME 5
  90 #define VMIN 6
  91 #define VSWTC 7
  92 #define VSTART 8
  93 #define VSTOP 9
  94 #define VSUSP 10
  95 #define VEOL 11
  96 #define VREPRINT 12
  97 #define VDISCARD 13
  98 #define VWERASE 14
  99 #define VLNEXT 15
 100 #define VEOL2 16
 101 
 102 /* c_iflag bits */
 103 #define IGNBRK  0000001
 104 #define BRKINT  0000002
 105 #define IGNPAR  0000004
 106 #define PARMRK  0000010
 107 #define INPCK   0000020
 108 #define ISTRIP  0000040
 109 #define INLCR   0000100
 110 #define IGNCR   0000200
 111 #define ICRNL   0000400
 112 #define IUCLC   0001000
 113 #define IXON    0002000
 114 #define IXANY   0004000
 115 #define IXOFF   0010000
 116 #define IMAXBEL 0020000
 117 
 118 /* c_oflag bits */
 119 #define OPOST   0000001
 120 #define OLCUC   0000002
 121 #define ONLCR   0000004
 122 #define OCRNL   0000010
 123 #define ONOCR   0000020
 124 #define ONLRET  0000040
 125 #define OFILL   0000100
 126 #define OFDEL   0000200
 127 #define NLDLY   0000400
 128 #define   NL0   0000000
 129 #define   NL1   0000400
 130 #define CRDLY   0003000
 131 #define   CR0   0000000
 132 #define   CR1   0001000
 133 #define   CR2   0002000
 134 #define   CR3   0003000
 135 #define TABDLY  0014000
 136 #define   TAB0  0000000
 137 #define   TAB1  0004000
 138 #define   TAB2  0010000
 139 #define   TAB3  0014000
 140 #define   XTABS 0014000
 141 #define BSDLY   0020000
 142 #define   BS0   0000000
 143 #define   BS1   0020000
 144 #define VTDLY   0040000
 145 #define   VT0   0000000
 146 #define   VT1   0040000
 147 #define FFDLY   0040000
 148 #define   FF0   0000000
 149 #define   FF1   0040000
 150 
 151 /* c_cflag bit meaning */
 152 #define CBAUD   0000017
 153 #define  B0     0000000         /* hang up */
 154 #define  B50    0000001
 155 #define  B75    0000002
 156 #define  B110   0000003
 157 #define  B134   0000004
 158 #define  B150   0000005
 159 #define  B200   0000006
 160 #define  B300   0000007
 161 #define  B600   0000010
 162 #define  B1200  0000011
 163 #define  B1800  0000012
 164 #define  B2400  0000013
 165 #define  B4800  0000014
 166 #define  B9600  0000015
 167 #define  B19200 0000016
 168 #define  B38400 0000017
 169 #define EXTA B19200
 170 #define EXTB B38400
 171 #define CSIZE   0000060
 172 #define   CS5   0000000
 173 #define   CS6   0000020
 174 #define   CS7   0000040
 175 #define   CS8   0000060
 176 #define CSTOPB  0000100
 177 #define CREAD   0000200
 178 #define PARENB  0000400
 179 #define PARODD  0001000
 180 #define HUPCL   0002000
 181 #define CLOCAL  0004000
 182 #define CIBAUD  03600000                /* input baud rate (not used) */
 183 #define CRTSCTS   020000000000          /* flow control */
 184 
 185 /* c_lflag bits */
 186 #define ISIG    0000001
 187 #define ICANON  0000002
 188 #define XCASE   0000004
 189 #define ECHO    0000010
 190 #define ECHOE   0000020
 191 #define ECHOK   0000040
 192 #define ECHONL  0000100
 193 #define NOFLSH  0000200
 194 #define TOSTOP  0000400
 195 #define ECHOCTL 0001000
 196 #define ECHOPRT 0002000
 197 #define ECHOKE  0004000
 198 #define FLUSHO  0010000
 199 #define PENDIN  0040000
 200 #define IEXTEN  0100000
 201 
 202 /* modem lines */
 203 #define TIOCM_LE        0x001
 204 #define TIOCM_DTR       0x002
 205 #define TIOCM_RTS       0x004
 206 #define TIOCM_ST        0x008
 207 #define TIOCM_SR        0x010
 208 #define TIOCM_CTS       0x020
 209 #define TIOCM_CAR       0x040
 210 #define TIOCM_RNG       0x080
 211 #define TIOCM_DSR       0x100
 212 #define TIOCM_CD        TIOCM_CAR
 213 #define TIOCM_RI        TIOCM_RNG
 214 
 215 /* tcflow() and TCXONC use these */
 216 #define TCOOFF          0
 217 #define TCOON           1
 218 #define TCIOFF          2
 219 #define TCION           3
 220 
 221 /* tcflush() and TCFLSH use these */
 222 #define TCIFLUSH        0
 223 #define TCOFLUSH        1
 224 #define TCIOFLUSH       2
 225 
 226 /* tcsetattr uses these */
 227 #define TCSANOW         0
 228 #define TCSADRAIN       1
 229 #define TCSAFLUSH       2
 230 
 231 /* line disciplines */
 232 #define N_TTY           0
 233 #define N_SLIP          1
 234 #define N_MOUSE         2
 235 
 236 #endif

/* [previous][next][first][last][top][bottom][index][help] */