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

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