linux/arch/sh/include/asm/ioctls.h
<<
>>
Prefs
   1#ifndef __ASM_SH_IOCTLS_H
   2#define __ASM_SH_IOCTLS_H
   3
   4#include <asm/ioctl.h>
   5
   6#define FIOCLEX         _IO('f', 1)
   7#define FIONCLEX        _IO('f', 2)
   8#define FIOASYNC        _IOW('f', 125, int)
   9#define FIONBIO         _IOW('f', 126, int)
  10#define FIONREAD        _IOR('f', 127, int)
  11#define TIOCINQ         FIONREAD
  12#define FIOQSIZE        _IOR('f', 128, loff_t)
  13
  14#define TCGETS          0x5401
  15#define TCSETS          0x5402
  16#define TCSETSW         0x5403
  17#define TCSETSF         0x5404
  18
  19#define TCGETA          0x80127417      /* _IOR('t', 23, struct termio) */
  20#define TCSETA          0x40127418      /* _IOW('t', 24, struct termio) */
  21#define TCSETAW         0x40127419      /* _IOW('t', 25, struct termio) */
  22#define TCSETAF         0x4012741C      /* _IOW('t', 28, struct termio) */
  23
  24#define TCSBRK          _IO('t', 29)
  25#define TCXONC          _IO('t', 30)
  26#define TCFLSH          _IO('t', 31)
  27
  28#define TIOCSWINSZ      0x40087467      /* _IOW('t', 103, struct winsize) */
  29#define TIOCGWINSZ      0x80087468      /* _IOR('t', 104, struct winsize) */
  30#define TIOCSTART       _IO('t', 110)           /* start output, like ^Q */
  31#define TIOCSTOP        _IO('t', 111)           /* stop output, like ^S */
  32#define TIOCOUTQ        _IOR('t', 115, int)     /* output queue size */
  33
  34#define TIOCSPGRP       _IOW('t', 118, int)
  35#define TIOCGPGRP       _IOR('t', 119, int)
  36
  37#define TIOCEXCL        _IO('T', 12) /* 0x540C */
  38#define TIOCNXCL        _IO('T', 13) /* 0x540D */
  39#define TIOCSCTTY       _IO('T', 14) /* 0x540E */
  40
  41#define TIOCSTI         _IOW('T', 18, char) /* 0x5412 */
  42#define TIOCMGET        _IOR('T', 21, unsigned int) /* 0x5415 */
  43#define TIOCMBIS        _IOW('T', 22, unsigned int) /* 0x5416 */
  44#define TIOCMBIC        _IOW('T', 23, unsigned int) /* 0x5417 */
  45#define TIOCMSET        _IOW('T', 24, unsigned int) /* 0x5418 */
  46# define TIOCM_LE       0x001
  47# define TIOCM_DTR      0x002
  48# define TIOCM_RTS      0x004
  49# define TIOCM_ST       0x008
  50# define TIOCM_SR       0x010
  51# define TIOCM_CTS      0x020
  52# define TIOCM_CAR      0x040
  53# define TIOCM_RNG      0x080
  54# define TIOCM_DSR      0x100
  55# define TIOCM_CD       TIOCM_CAR
  56# define TIOCM_RI       TIOCM_RNG
  57
  58#define TIOCGSOFTCAR    _IOR('T', 25, unsigned int) /* 0x5419 */
  59#define TIOCSSOFTCAR    _IOW('T', 26, unsigned int) /* 0x541A */
  60#define TIOCLINUX       _IOW('T', 28, char) /* 0x541C */
  61#define TIOCCONS        _IO('T', 29) /* 0x541D */
  62#define TIOCGSERIAL     0x803C541E      /* _IOR('T', 30, struct serial_struct) 0x541E */
  63#define TIOCSSERIAL     0x403C541F      /* _IOW('T', 31, struct serial_struct) 0x541F */
  64#define TIOCPKT         _IOW('T', 32, int) /* 0x5420 */
  65# define TIOCPKT_DATA            0
  66# define TIOCPKT_FLUSHREAD       1
  67# define TIOCPKT_FLUSHWRITE      2
  68# define TIOCPKT_STOP            4
  69# define TIOCPKT_START           8
  70# define TIOCPKT_NOSTOP         16
  71# define TIOCPKT_DOSTOP         32
  72# define TIOCPKT_IOCTL          64
  73
  74
  75#define TIOCNOTTY       _IO('T', 34) /* 0x5422 */
  76#define TIOCSETD        _IOW('T', 35, int) /* 0x5423 */
  77#define TIOCGETD        _IOR('T', 36, int) /* 0x5424 */
  78#define TCSBRKP         _IOW('T', 37, int) /* 0x5425 */ /* Needed for POSIX tcsendbreak() */
  79#define TIOCSBRK        _IO('T', 39) /* 0x5427 */ /* BSD compatibility */
  80#define TIOCCBRK        _IO('T', 40) /* 0x5428 */ /* BSD compatibility */
  81#define TIOCGSID        _IOR('T', 41, pid_t) /* 0x5429 */ /* Return the session ID of FD */
  82#define TCGETS2         _IOR('T', 42, struct termios2)
  83#define TCSETS2         _IOW('T', 43, struct termios2)
  84#define TCSETSW2        _IOW('T', 44, struct termios2)
  85#define TCSETSF2        _IOW('T', 45, struct termios2)
  86#define TIOCGPTN        _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */
  87#define TIOCSPTLCK      _IOW('T',0x31, int)  /* Lock/unlock Pty */
  88#define TIOCGDEV        _IOR('T',0x32, unsigned int) /* Get primary device node of /dev/console */
  89#define TIOCSIG         _IOW('T',0x36, int)  /* Generate signal on Pty slave */
  90
  91#define TIOCSERCONFIG   _IO('T', 83) /* 0x5453 */
  92#define TIOCSERGWILD    _IOR('T', 84,  int) /* 0x5454 */
  93#define TIOCSERSWILD    _IOW('T', 85,  int) /* 0x5455 */
  94#define TIOCGLCKTRMIOS  0x5456
  95#define TIOCSLCKTRMIOS  0x5457
  96#define TIOCSERGSTRUCT  0x80d85458      /* _IOR('T', 88, struct async_struct) 0x5458 */ /* For debugging only */
  97#define TIOCSERGETLSR   _IOR('T', 89, unsigned int) /* 0x5459 */ /* Get line status register */
  98  /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
  99# define TIOCSER_TEMT    0x01   /* Transmitter physically empty */
 100#define TIOCSERGETMULTI 0x80A8545A      /* _IOR('T', 90, struct serial_multiport_struct) 0x545A */ /* Get multiport config */
 101#define TIOCSERSETMULTI 0x40A8545B      /* _IOW('T', 91, struct serial_multiport_struct) 0x545B */ /* Set multiport config */
 102
 103#define TIOCMIWAIT      _IO('T', 92) /* 0x545C */       /* wait for a change on serial input line(s) */
 104#define TIOCGICOUNT     0x545D  /* read serial port inline interrupt counts */
 105
 106#endif /* __ASM_SH_IOCTLS_H */
 107