root/include/asm-i386/termios.h

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

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. trans_from_termio
  2. trans_to_termio

   1 #ifndef _I386_TERMIOS_H
   2 #define _I386_TERMIOS_H
   3 
   4 /* 0x54 is just a magic number to make these relatively unique ('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 TIOCTTYGSTRUCT  0x5426  /* For debugging only */
  45 #define FIONCLEX        0x5450  /* these numbers need to be adjusted. */
  46 #define FIOCLEX         0x5451
  47 #define FIOASYNC        0x5452
  48 #define TIOCSERCONFIG   0x5453
  49 #define TIOCSERGWILD    0x5454
  50 #define TIOCSERSWILD    0x5455
  51 #define TIOCGLCKTRMIOS  0x5456
  52 #define TIOCSLCKTRMIOS  0x5457
  53 #define TIOCSERGSTRUCT  0x5458 /* For debugging only */
  54 #define TIOCSERGETLSR   0x5459 /* Get line status register */
  55 #define TIOCSERGETMULTI 0x545A /* Get multiport config  */
  56 #define TIOCSERSETMULTI 0x545B /* Set multiport config */
  57 
  58 /* Used for packet mode */
  59 #define TIOCPKT_DATA             0
  60 #define TIOCPKT_FLUSHREAD        1
  61 #define TIOCPKT_FLUSHWRITE       2
  62 #define TIOCPKT_STOP             4
  63 #define TIOCPKT_START            8
  64 #define TIOCPKT_NOSTOP          16
  65 #define TIOCPKT_DOSTOP          32
  66 
  67 struct winsize {
  68         unsigned short ws_row;
  69         unsigned short ws_col;
  70         unsigned short ws_xpixel;
  71         unsigned short ws_ypixel;
  72 };
  73 
  74 #define NCC 8
  75 struct termio {
  76         unsigned short c_iflag;         /* input mode flags */
  77         unsigned short c_oflag;         /* output mode flags */
  78         unsigned short c_cflag;         /* control mode flags */
  79         unsigned short c_lflag;         /* local mode flags */
  80         unsigned char c_line;           /* line discipline */
  81         unsigned char c_cc[NCC];        /* control characters */
  82 };
  83 
  84 #define NCCS 19
  85 struct termios {
  86         tcflag_t c_iflag;               /* input mode flags */
  87         tcflag_t c_oflag;               /* output mode flags */
  88         tcflag_t c_cflag;               /* control mode flags */
  89         tcflag_t c_lflag;               /* local mode flags */
  90         cc_t c_line;                    /* line discipline */
  91         cc_t c_cc[NCCS];                /* control characters */
  92 };
  93 
  94 /* c_cc characters */
  95 #define VINTR 0
  96 #define VQUIT 1
  97 #define VERASE 2
  98 #define VKILL 3
  99 #define VEOF 4
 100 #define VTIME 5
 101 #define VMIN 6
 102 #define VSWTC 7
 103 #define VSTART 8
 104 #define VSTOP 9
 105 #define VSUSP 10
 106 #define VEOL 11
 107 #define VREPRINT 12
 108 #define VDISCARD 13
 109 #define VWERASE 14
 110 #define VLNEXT 15
 111 #define VEOL2 16
 112 
 113 #ifdef __KERNEL__
 114 /*      intr=^C         quit=^|         erase=del       kill=^U
 115         eof=^D          vtime=\0        vmin=\1         sxtc=\0
 116         start=^Q        stop=^S         susp=^Z         eol=\0
 117         reprint=^R      discard=^U      werase=^W       lnext=^V
 118         eol2=\0
 119 */
 120 #define INIT_C_CC "\003\034\177\025\004\0\1\0\021\023\032\0\022\017\027\026\0"
 121 #endif
 122 
 123 /* c_iflag bits */
 124 #define IGNBRK  0000001
 125 #define BRKINT  0000002
 126 #define IGNPAR  0000004
 127 #define PARMRK  0000010
 128 #define INPCK   0000020
 129 #define ISTRIP  0000040
 130 #define INLCR   0000100
 131 #define IGNCR   0000200
 132 #define ICRNL   0000400
 133 #define IUCLC   0001000
 134 #define IXON    0002000
 135 #define IXANY   0004000
 136 #define IXOFF   0010000
 137 #define IMAXBEL 0020000
 138 
 139 /* c_oflag bits */
 140 #define OPOST   0000001
 141 #define OLCUC   0000002
 142 #define ONLCR   0000004
 143 #define OCRNL   0000010
 144 #define ONOCR   0000020
 145 #define ONLRET  0000040
 146 #define OFILL   0000100
 147 #define OFDEL   0000200
 148 #define NLDLY   0000400
 149 #define   NL0   0000000
 150 #define   NL1   0000400
 151 #define CRDLY   0003000
 152 #define   CR0   0000000
 153 #define   CR1   0001000
 154 #define   CR2   0002000
 155 #define   CR3   0003000
 156 #define TABDLY  0014000
 157 #define   TAB0  0000000
 158 #define   TAB1  0004000
 159 #define   TAB2  0010000
 160 #define   TAB3  0014000
 161 #define   XTABS 0014000
 162 #define BSDLY   0020000
 163 #define   BS0   0000000
 164 #define   BS1   0020000
 165 #define VTDLY   0040000
 166 #define   VT0   0000000
 167 #define   VT1   0040000
 168 #define FFDLY   0100000
 169 #define   FF0   0000000
 170 #define   FF1   0100000
 171 
 172 /* c_cflag bit meaning */
 173 #define CBAUD   0010017
 174 #define  B0     0000000         /* hang up */
 175 #define  B50    0000001
 176 #define  B75    0000002
 177 #define  B110   0000003
 178 #define  B134   0000004
 179 #define  B150   0000005
 180 #define  B200   0000006
 181 #define  B300   0000007
 182 #define  B600   0000010
 183 #define  B1200  0000011
 184 #define  B1800  0000012
 185 #define  B2400  0000013
 186 #define  B4800  0000014
 187 #define  B9600  0000015
 188 #define  B19200 0000016
 189 #define  B38400 0000017
 190 #define EXTA B19200
 191 #define EXTB B38400
 192 #define CSIZE   0000060
 193 #define   CS5   0000000
 194 #define   CS6   0000020
 195 #define   CS7   0000040
 196 #define   CS8   0000060
 197 #define CSTOPB  0000100
 198 #define CREAD   0000200
 199 #define PARENB  0000400
 200 #define PARODD  0001000
 201 #define HUPCL   0002000
 202 #define CLOCAL  0004000
 203 #define CBAUDEX 0010000
 204 #define  B57600  0010001
 205 #define  B115200 0010002
 206 #define  B230400 0010003
 207 #define CIBAUD    002003600000  /* input baud rate (not used) */
 208 #define CRTSCTS   020000000000          /* flow control */
 209 
 210 /* c_lflag bits */
 211 #define ISIG    0000001
 212 #define ICANON  0000002
 213 #define XCASE   0000004
 214 #define ECHO    0000010
 215 #define ECHOE   0000020
 216 #define ECHOK   0000040
 217 #define ECHONL  0000100
 218 #define NOFLSH  0000200
 219 #define TOSTOP  0000400
 220 #define ECHOCTL 0001000
 221 #define ECHOPRT 0002000
 222 #define ECHOKE  0004000
 223 #define FLUSHO  0010000
 224 #define PENDIN  0040000
 225 #define IEXTEN  0100000
 226 
 227 /* modem lines */
 228 #define TIOCM_LE        0x001
 229 #define TIOCM_DTR       0x002
 230 #define TIOCM_RTS       0x004
 231 #define TIOCM_ST        0x008
 232 #define TIOCM_SR        0x010
 233 #define TIOCM_CTS       0x020
 234 #define TIOCM_CAR       0x040
 235 #define TIOCM_RNG       0x080
 236 #define TIOCM_DSR       0x100
 237 #define TIOCM_CD        TIOCM_CAR
 238 #define TIOCM_RI        TIOCM_RNG
 239 
 240 /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
 241 #define TIOCSER_TEMT    0x01    /* Transmitter physically empty */
 242 
 243 
 244 /* tcflow() and TCXONC use these */
 245 #define TCOOFF          0
 246 #define TCOON           1
 247 #define TCIOFF          2
 248 #define TCION           3
 249 
 250 /* tcflush() and TCFLSH use these */
 251 #define TCIFLUSH        0
 252 #define TCOFLUSH        1
 253 #define TCIOFLUSH       2
 254 
 255 /* tcsetattr uses these */
 256 #define TCSANOW         0
 257 #define TCSADRAIN       1
 258 #define TCSAFLUSH       2
 259 
 260 /* line disciplines */
 261 #define N_TTY           0
 262 #define N_SLIP          1
 263 #define N_MOUSE         2
 264 #define N_PPP           3
 265 
 266 #ifdef __KERNEL__
 267 
 268 /*
 269  * Translate a "termio" structure into a "termios". Ugh.
 270  */
 271 extern inline void trans_from_termio(struct termio * termio,
     /* [previous][next][first][last][top][bottom][index][help] */
 272         struct termios * termios)
 273 {
 274 #define SET_LOW_BITS(x,y)       ((x) = (0xffff0000 & (x)) | (y))
 275         SET_LOW_BITS(termios->c_iflag, termio->c_iflag);
 276         SET_LOW_BITS(termios->c_oflag, termio->c_oflag);
 277         SET_LOW_BITS(termios->c_cflag, termio->c_cflag);
 278         SET_LOW_BITS(termios->c_lflag, termio->c_lflag);
 279 #undef SET_LOW_BITS
 280         memcpy(termios->c_cc, termio->c_cc, NCC);
 281 }
 282 
 283 /*
 284  * Translate a "termios" structure into a "termio". Ugh.
 285  */
 286 extern inline void trans_to_termio(struct termios * termios,
     /* [previous][next][first][last][top][bottom][index][help] */
 287         struct termio * termio)
 288 {
 289         termio->c_iflag = termios->c_iflag;
 290         termio->c_oflag = termios->c_oflag;
 291         termio->c_cflag = termios->c_cflag;
 292         termio->c_lflag = termios->c_lflag;
 293         termio->c_line  = termios->c_line;
 294         memcpy(termio->c_cc, termios->c_cc, NCC);
 295 }
 296 
 297 #endif  /* __KERNEL__ */
 298 
 299 #endif  /* _I386_TERMIOS_H */

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