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 #define TIOCSERCONFIG   0x5453
  48 #define TIOCSERGWILD    0x5454
  49 #define TIOCSERSWILD    0x5455
  50 #define TIOCGLCKTRMIOS  0x5456
  51 #define TIOCSLCKTRMIOS  0x5457
  52 
  53 /* Used for packet mode */
  54 #define TIOCPKT_DATA             0
  55 #define TIOCPKT_FLUSHREAD        1
  56 #define TIOCPKT_FLUSHWRITE       2
  57 #define TIOCPKT_STOP             4
  58 #define TIOCPKT_START            8
  59 #define TIOCPKT_NOSTOP          16
  60 #define TIOCPKT_DOSTOP          32
  61 
  62 struct winsize {
  63         unsigned short ws_row;
  64         unsigned short ws_col;
  65         unsigned short ws_xpixel;
  66         unsigned short ws_ypixel;
  67 };
  68 
  69 #define NCC 8
  70 struct termio {
  71         unsigned short c_iflag;         /* input mode flags */
  72         unsigned short c_oflag;         /* output mode flags */
  73         unsigned short c_cflag;         /* control mode flags */
  74         unsigned short c_lflag;         /* local mode flags */
  75         unsigned char c_line;           /* line discipline */
  76         unsigned char c_cc[NCC];        /* control characters */
  77 };
  78 
  79 #define NCCS 19
  80 struct termios {
  81         tcflag_t c_iflag;               /* input mode flags */
  82         tcflag_t c_oflag;               /* output mode flags */
  83         tcflag_t c_cflag;               /* control mode flags */
  84         tcflag_t c_lflag;               /* local mode flags */
  85         cc_t c_line;                    /* line discipline */
  86         cc_t c_cc[NCCS];                /* control characters */
  87 };
  88 
  89 /* c_cc characters */
  90 #define VINTR 0
  91 #define VQUIT 1
  92 #define VERASE 2
  93 #define VKILL 3
  94 #define VEOF 4
  95 #define VTIME 5
  96 #define VMIN 6
  97 #define VSWTC 7
  98 #define VSTART 8
  99 #define VSTOP 9
 100 #define VSUSP 10
 101 #define VEOL 11
 102 #define VREPRINT 12
 103 #define VDISCARD 13
 104 #define VWERASE 14
 105 #define VLNEXT 15
 106 #define VEOL2 16
 107 
 108 /* c_iflag bits */
 109 #define IGNBRK  0000001
 110 #define BRKINT  0000002
 111 #define IGNPAR  0000004
 112 #define PARMRK  0000010
 113 #define INPCK   0000020
 114 #define ISTRIP  0000040
 115 #define INLCR   0000100
 116 #define IGNCR   0000200
 117 #define ICRNL   0000400
 118 #define IUCLC   0001000
 119 #define IXON    0002000
 120 #define IXANY   0004000
 121 #define IXOFF   0010000
 122 #define IMAXBEL 0020000
 123 
 124 /* c_oflag bits */
 125 #define OPOST   0000001
 126 #define OLCUC   0000002
 127 #define ONLCR   0000004
 128 #define OCRNL   0000010
 129 #define ONOCR   0000020
 130 #define ONLRET  0000040
 131 #define OFILL   0000100
 132 #define OFDEL   0000200
 133 #define NLDLY   0000400
 134 #define   NL0   0000000
 135 #define   NL1   0000400
 136 #define CRDLY   0003000
 137 #define   CR0   0000000
 138 #define   CR1   0001000
 139 #define   CR2   0002000
 140 #define   CR3   0003000
 141 #define TABDLY  0014000
 142 #define   TAB0  0000000
 143 #define   TAB1  0004000
 144 #define   TAB2  0010000
 145 #define   TAB3  0014000
 146 #define   XTABS 0014000
 147 #define BSDLY   0020000
 148 #define   BS0   0000000
 149 #define   BS1   0020000
 150 #define VTDLY   0040000
 151 #define   VT0   0000000
 152 #define   VT1   0040000
 153 #define FFDLY   0100000
 154 #define   FF0   0000000
 155 #define   FF1   0100000
 156 
 157 /* c_cflag bit meaning */
 158 #define CBAUD   0000017
 159 #define  B0     0000000         /* hang up */
 160 #define  B50    0000001
 161 #define  B75    0000002
 162 #define  B110   0000003
 163 #define  B134   0000004
 164 #define  B150   0000005
 165 #define  B200   0000006
 166 #define  B300   0000007
 167 #define  B600   0000010
 168 #define  B1200  0000011
 169 #define  B1800  0000012
 170 #define  B2400  0000013
 171 #define  B4800  0000014
 172 #define  B9600  0000015
 173 #define  B19200 0000016
 174 #define  B38400 0000017
 175 #define EXTA B19200
 176 #define EXTB B38400
 177 #define CSIZE   0000060
 178 #define   CS5   0000000
 179 #define   CS6   0000020
 180 #define   CS7   0000040
 181 #define   CS8   0000060
 182 #define CSTOPB  0000100
 183 #define CREAD   0000200
 184 #define PARENB  0000400
 185 #define PARODD  0001000
 186 #define HUPCL   0002000
 187 #define CLOCAL  0004000
 188 #define CIBAUD  03600000                /* input baud rate (not used) */
 189 #define CRTSCTS   020000000000          /* flow control */
 190 
 191 /* c_lflag bits */
 192 #define ISIG    0000001
 193 #define ICANON  0000002
 194 #define XCASE   0000004
 195 #define ECHO    0000010
 196 #define ECHOE   0000020
 197 #define ECHOK   0000040
 198 #define ECHONL  0000100
 199 #define NOFLSH  0000200
 200 #define TOSTOP  0000400
 201 #define ECHOCTL 0001000
 202 #define ECHOPRT 0002000
 203 #define ECHOKE  0004000
 204 #define FLUSHO  0010000
 205 #define PENDIN  0040000
 206 #define IEXTEN  0100000
 207 
 208 /* modem lines */
 209 #define TIOCM_LE        0x001
 210 #define TIOCM_DTR       0x002
 211 #define TIOCM_RTS       0x004
 212 #define TIOCM_ST        0x008
 213 #define TIOCM_SR        0x010
 214 #define TIOCM_CTS       0x020
 215 #define TIOCM_CAR       0x040
 216 #define TIOCM_RNG       0x080
 217 #define TIOCM_DSR       0x100
 218 #define TIOCM_CD        TIOCM_CAR
 219 #define TIOCM_RI        TIOCM_RNG
 220 
 221 /* tcflow() and TCXONC use these */
 222 #define TCOOFF          0
 223 #define TCOON           1
 224 #define TCIOFF          2
 225 #define TCION           3
 226 
 227 /* tcflush() and TCFLSH use these */
 228 #define TCIFLUSH        0
 229 #define TCOFLUSH        1
 230 #define TCIOFLUSH       2
 231 
 232 /* tcsetattr uses these */
 233 #define TCSANOW         0
 234 #define TCSADRAIN       1
 235 #define TCSAFLUSH       2
 236 
 237 /* line disciplines */
 238 #define N_TTY           0
 239 #define N_SLIP          1
 240 #define N_MOUSE         2
 241 #define N_PPP           3
 242 
 243 #endif

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