ioctls_powerpc.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _ASM_POWERPC_IOCTLS_H
  3. #define _ASM_POWERPC_IOCTLS_H
  4. #include <asm/ioctl.h>
  5. #define FIOCLEX _IO('f', 1)
  6. #define FIONCLEX _IO('f', 2)
  7. #define FIOASYNC _IOW('f', 125, int)
  8. #define FIONBIO _IOW('f', 126, int)
  9. #define FIONREAD _IOR('f', 127, int)
  10. #define TIOCINQ FIONREAD
  11. #define FIOQSIZE _IOR('f', 128, loff_t)
  12. #define TIOCGETP _IOR('t', 8, struct sgttyb)
  13. #define TIOCSETP _IOW('t', 9, struct sgttyb)
  14. #define TIOCSETN _IOW('t', 10, struct sgttyb) /* TIOCSETP wo flush */
  15. #define TIOCSETC _IOW('t', 17, struct tchars)
  16. #define TIOCGETC _IOR('t', 18, struct tchars)
  17. #define TCGETS _IOR('t', 19, struct termios)
  18. #define TCSETS _IOW('t', 20, struct termios)
  19. #define TCSETSW _IOW('t', 21, struct termios)
  20. #define TCSETSF _IOW('t', 22, struct termios)
  21. #define TCGETA _IOR('t', 23, struct termio)
  22. #define TCSETA _IOW('t', 24, struct termio)
  23. #define TCSETAW _IOW('t', 25, struct termio)
  24. #define TCSETAF _IOW('t', 28, struct termio)
  25. #define TCSBRK _IO('t', 29)
  26. #define TCXONC _IO('t', 30)
  27. #define TCFLSH _IO('t', 31)
  28. #define TIOCSWINSZ _IOW('t', 103, struct winsize)
  29. #define TIOCGWINSZ _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. #define TIOCGLTC _IOR('t', 116, struct ltchars)
  34. #define TIOCSLTC _IOW('t', 117, struct ltchars)
  35. #define TIOCSPGRP _IOW('t', 118, int)
  36. #define TIOCGPGRP _IOR('t', 119, int)
  37. #define TIOCEXCL 0x540C
  38. #define TIOCNXCL 0x540D
  39. #define TIOCSCTTY 0x540E
  40. #define TIOCSTI 0x5412
  41. #define TIOCMGET 0x5415
  42. #define TIOCMBIS 0x5416
  43. #define TIOCMBIC 0x5417
  44. #define TIOCMSET 0x5418
  45. # define TIOCM_LE 0x001
  46. # define TIOCM_DTR 0x002
  47. # define TIOCM_RTS 0x004
  48. # define TIOCM_ST 0x008
  49. # define TIOCM_SR 0x010
  50. # define TIOCM_CTS 0x020
  51. # define TIOCM_CAR 0x040
  52. # define TIOCM_RNG 0x080
  53. # define TIOCM_DSR 0x100
  54. # define TIOCM_CD TIOCM_CAR
  55. # define TIOCM_RI TIOCM_RNG
  56. #define TIOCM_OUT1 0x2000
  57. #define TIOCM_OUT2 0x4000
  58. #define TIOCM_LOOP 0x8000
  59. #define TIOCGSOFTCAR 0x5419
  60. #define TIOCSSOFTCAR 0x541A
  61. #define TIOCLINUX 0x541C
  62. #define TIOCCONS 0x541D
  63. #define TIOCGSERIAL 0x541E
  64. #define TIOCSSERIAL 0x541F
  65. #define TIOCPKT 0x5420
  66. # define TIOCPKT_DATA 0
  67. # define TIOCPKT_FLUSHREAD 1
  68. # define TIOCPKT_FLUSHWRITE 2
  69. # define TIOCPKT_STOP 4
  70. # define TIOCPKT_START 8
  71. # define TIOCPKT_NOSTOP 16
  72. # define TIOCPKT_DOSTOP 32
  73. # define TIOCPKT_IOCTL 64
  74. #define TIOCNOTTY 0x5422
  75. #define TIOCSETD 0x5423
  76. #define TIOCGETD 0x5424
  77. #define TCSBRKP 0x5425 /* Needed for POSIX tcsendbreak() */
  78. #define TIOCSBRK 0x5427 /* BSD compatibility */
  79. #define TIOCCBRK 0x5428 /* BSD compatibility */
  80. #define TIOCGSID 0x5429 /* Return the session ID of FD */
  81. #define TIOCGRS485 0x542e
  82. #define TIOCSRS485 0x542f
  83. #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */
  84. #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */
  85. #define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get primary device node of /dev/console */
  86. #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */
  87. #define TIOCVHANGUP 0x5437
  88. #define TIOCGPKT _IOR('T', 0x38, int) /* Get packet mode state */
  89. #define TIOCGPTLCK _IOR('T', 0x39, int) /* Get Pty lock state */
  90. #define TIOCGEXCL _IOR('T', 0x40, int) /* Get exclusive mode state */
  91. #define TIOCGPTPEER _IO('T', 0x41) /* Safely open the slave */
  92. #define TIOCGISO7816 _IOR('T', 0x42, struct serial_iso7816)
  93. #define TIOCSISO7816 _IOWR('T', 0x43, struct serial_iso7816)
  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_POWERPC_IOCTLS_H */