ioctls.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. #ifndef _ASM_ALPHA_IOCTLS_H
  2. #define _ASM_ALPHA_IOCTLS_H
  3. #include <asm/ioctl.h>
  4. #define FIOCLEX _IO('f', 1)
  5. #define FIONCLEX _IO('f', 2)
  6. #define FIOASYNC _IOW('f', 125, int)
  7. #define FIONBIO _IOW('f', 126, int)
  8. #define FIONREAD _IOR('f', 127, int)
  9. #define TIOCINQ FIONREAD
  10. #define FIOQSIZE _IOR('f', 128, loff_t)
  11. #define TIOCGETP _IOR('t', 8, struct sgttyb)
  12. #define TIOCSETP _IOW('t', 9, struct sgttyb)
  13. #define TIOCSETN _IOW('t', 10, struct sgttyb) /* TIOCSETP wo flush */
  14. #define TIOCSETC _IOW('t', 17, struct tchars)
  15. #define TIOCGETC _IOR('t', 18, struct tchars)
  16. #define TCGETS _IOR('t', 19, struct termios)
  17. #define TCSETS _IOW('t', 20, struct termios)
  18. #define TCSETSW _IOW('t', 21, struct termios)
  19. #define TCSETSF _IOW('t', 22, struct termios)
  20. #define TCGETA _IOR('t', 23, struct termio)
  21. #define TCSETA _IOW('t', 24, struct termio)
  22. #define TCSETAW _IOW('t', 25, struct termio)
  23. #define TCSETAF _IOW('t', 28, struct termio)
  24. #define TCSBRK _IO('t', 29)
  25. #define TCXONC _IO('t', 30)
  26. #define TCFLSH _IO('t', 31)
  27. #define TCGETS2 _IOR('T', 42, struct termios2)
  28. #define TCSETS2 _IOW('T', 43, struct termios2)
  29. #define TCSETSW2 _IOW('T', 44, struct termios2)
  30. #define TCSETSF2 _IOW('T', 45, struct termios2)
  31. #define TIOCSWINSZ _IOW('t', 103, struct winsize)
  32. #define TIOCGWINSZ _IOR('t', 104, struct winsize)
  33. #define TIOCSTART _IO('t', 110) /* start output, like ^Q */
  34. #define TIOCSTOP _IO('t', 111) /* stop output, like ^S */
  35. #define TIOCOUTQ _IOR('t', 115, int) /* output queue size */
  36. #define TIOCGLTC _IOR('t', 116, struct ltchars)
  37. #define TIOCSLTC _IOW('t', 117, struct ltchars)
  38. #define TIOCSPGRP _IOW('t', 118, int)
  39. #define TIOCGPGRP _IOR('t', 119, int)
  40. #define TIOCEXCL 0x540C
  41. #define TIOCNXCL 0x540D
  42. #define TIOCSCTTY 0x540E
  43. #define TIOCSTI 0x5412
  44. #define TIOCMGET 0x5415
  45. #define TIOCMBIS 0x5416
  46. #define TIOCMBIC 0x5417
  47. #define TIOCMSET 0x5418
  48. # define TIOCM_LE 0x001
  49. # define TIOCM_DTR 0x002
  50. # define TIOCM_RTS 0x004
  51. # define TIOCM_ST 0x008
  52. # define TIOCM_SR 0x010
  53. # define TIOCM_CTS 0x020
  54. # define TIOCM_CAR 0x040
  55. # define TIOCM_RNG 0x080
  56. # define TIOCM_DSR 0x100
  57. # define TIOCM_CD TIOCM_CAR
  58. # define TIOCM_RI TIOCM_RNG
  59. # define TIOCM_OUT1 0x2000
  60. # define TIOCM_OUT2 0x4000
  61. # define TIOCM_LOOP 0x8000
  62. #define TIOCGSOFTCAR 0x5419
  63. #define TIOCSSOFTCAR 0x541A
  64. #define TIOCLINUX 0x541C
  65. #define TIOCCONS 0x541D
  66. #define TIOCGSERIAL 0x541E
  67. #define TIOCSSERIAL 0x541F
  68. #define TIOCPKT 0x5420
  69. # define TIOCPKT_DATA 0
  70. # define TIOCPKT_FLUSHREAD 1
  71. # define TIOCPKT_FLUSHWRITE 2
  72. # define TIOCPKT_STOP 4
  73. # define TIOCPKT_START 8
  74. # define TIOCPKT_NOSTOP 16
  75. # define TIOCPKT_DOSTOP 32
  76. # define TIOCPKT_IOCTL 64
  77. #define TIOCNOTTY 0x5422
  78. #define TIOCSETD 0x5423
  79. #define TIOCGETD 0x5424
  80. #define TCSBRKP 0x5425 /* Needed for POSIX tcsendbreak() */
  81. #define TIOCSBRK 0x5427 /* BSD compatibility */
  82. #define TIOCCBRK 0x5428 /* BSD compatibility */
  83. #define TIOCGSID 0x5429 /* Return the session ID of FD */
  84. #define TIOCGRS485 _IOR('T', 0x2E, struct serial_rs485)
  85. #define TIOCSRS485 _IOWR('T', 0x2F, struct serial_rs485)
  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. #define TIOCVHANGUP 0x5437
  91. #define TIOCGPKT _IOR('T', 0x38, int) /* Get packet mode state */
  92. #define TIOCGPTLCK _IOR('T', 0x39, int) /* Get Pty lock state */
  93. #define TIOCGEXCL _IOR('T', 0x40, int) /* Get exclusive mode state */
  94. #define TIOCSERCONFIG 0x5453
  95. #define TIOCSERGWILD 0x5454
  96. #define TIOCSERSWILD 0x5455
  97. #define TIOCGLCKTRMIOS 0x5456
  98. #define TIOCSLCKTRMIOS 0x5457
  99. #define TIOCSERGSTRUCT 0x5458 /* For debugging only */
  100. #define TIOCSERGETLSR 0x5459 /* Get line status register */
  101. /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
  102. # define TIOCSER_TEMT 0x01 /* Transmitter physically empty */
  103. #define TIOCSERGETMULTI 0x545A /* Get multiport config */
  104. #define TIOCSERSETMULTI 0x545B /* Set multiport config */
  105. #define TIOCMIWAIT 0x545C /* wait for a change on serial input line(s) */
  106. #define TIOCGICOUNT 0x545D /* read serial port inline interrupt counts */
  107. #endif /* _ASM_ALPHA_IOCTLS_H */