ioctls.h 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. #ifndef __ARCH_PARISC_IOCTLS_H__
  2. #define __ARCH_PARISC_IOCTLS_H__
  3. #include <asm/ioctl.h>
  4. /* 0x54 is just a magic number to make these relatively unique ('T') */
  5. #define TCGETS _IOR('T', 16, struct termios) /* TCGETATTR */
  6. #define TCSETS _IOW('T', 17, struct termios) /* TCSETATTR */
  7. #define TCSETSW _IOW('T', 18, struct termios) /* TCSETATTRD */
  8. #define TCSETSF _IOW('T', 19, struct termios) /* TCSETATTRF */
  9. #define TCGETA _IOR('T', 1, struct termio)
  10. #define TCSETA _IOW('T', 2, struct termio)
  11. #define TCSETAW _IOW('T', 3, struct termio)
  12. #define TCSETAF _IOW('T', 4, struct termio)
  13. #define TCSBRK _IO('T', 5)
  14. #define TCXONC _IO('T', 6)
  15. #define TCFLSH _IO('T', 7)
  16. #define TIOCEXCL 0x540C
  17. #define TIOCNXCL 0x540D
  18. #define TIOCSCTTY 0x540E
  19. #define TIOCGPGRP _IOR('T', 30, int)
  20. #define TIOCSPGRP _IOW('T', 29, int)
  21. #define TIOCOUTQ 0x5411
  22. #define TIOCSTI 0x5412
  23. #define TIOCGWINSZ 0x5413
  24. #define TIOCSWINSZ 0x5414
  25. #define TIOCMGET 0x5415
  26. #define TIOCMBIS 0x5416
  27. #define TIOCMBIC 0x5417
  28. #define TIOCMSET 0x5418
  29. #define TIOCGSOFTCAR 0x5419
  30. #define TIOCSSOFTCAR 0x541A
  31. #define FIONREAD 0x541B
  32. #define TIOCINQ FIONREAD
  33. #define TIOCLINUX 0x541C
  34. #define TIOCCONS 0x541D
  35. #define TIOCGSERIAL 0x541E
  36. #define TIOCSSERIAL 0x541F
  37. #define TIOCPKT 0x5420
  38. #define FIONBIO 0x5421
  39. #define TIOCNOTTY 0x5422
  40. #define TIOCSETD 0x5423
  41. #define TIOCGETD 0x5424
  42. #define TCSBRKP 0x5425 /* Needed for POSIX tcsendbreak() */
  43. #define TIOCSBRK 0x5427 /* BSD compatibility */
  44. #define TIOCCBRK 0x5428 /* BSD compatibility */
  45. #define TIOCGSID _IOR('T', 20, int) /* Return the session ID of FD */
  46. #define TCGETS2 _IOR('T',0x2A, struct termios2)
  47. #define TCSETS2 _IOW('T',0x2B, struct termios2)
  48. #define TCSETSW2 _IOW('T',0x2C, struct termios2)
  49. #define TCSETSF2 _IOW('T',0x2D, struct termios2)
  50. #define TIOCGRS485 _IOR('T', 0x2E, struct serial_rs485)
  51. #define TIOCSRS485 _IOWR('T', 0x2F, struct serial_rs485)
  52. #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */
  53. #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */
  54. #define TIOCGDEV _IOR('T',0x32, int) /* Get primary device node of /dev/console */
  55. #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */
  56. #define TIOCVHANGUP 0x5437
  57. #define TIOCGPKT _IOR('T', 0x38, int) /* Get packet mode state */
  58. #define TIOCGPTLCK _IOR('T', 0x39, int) /* Get Pty lock state */
  59. #define TIOCGEXCL _IOR('T', 0x40, int) /* Get exclusive mode state */
  60. #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */
  61. #define FIOCLEX 0x5451
  62. #define FIOASYNC 0x5452
  63. #define TIOCSERCONFIG 0x5453
  64. #define TIOCSERGWILD 0x5454
  65. #define TIOCSERSWILD 0x5455
  66. #define TIOCGLCKTRMIOS 0x5456
  67. #define TIOCSLCKTRMIOS 0x5457
  68. #define TIOCSERGSTRUCT 0x5458 /* For debugging only */
  69. #define TIOCSERGETLSR 0x5459 /* Get line status register */
  70. #define TIOCSERGETMULTI 0x545A /* Get multiport config */
  71. #define TIOCSERSETMULTI 0x545B /* Set multiport config */
  72. #define TIOCMIWAIT 0x545C /* wait for a change on serial input line(s) */
  73. #define TIOCGICOUNT 0x545D /* read serial port inline interrupt counts */
  74. #define FIOQSIZE 0x5460 /* Get exact space used by quota */
  75. #define TIOCSTART 0x5461
  76. #define TIOCSTOP 0x5462
  77. #define TIOCSLTC 0x5462
  78. /* Used for packet mode */
  79. #define TIOCPKT_DATA 0
  80. #define TIOCPKT_FLUSHREAD 1
  81. #define TIOCPKT_FLUSHWRITE 2
  82. #define TIOCPKT_STOP 4
  83. #define TIOCPKT_START 8
  84. #define TIOCPKT_NOSTOP 16
  85. #define TIOCPKT_DOSTOP 32
  86. #define TIOCPKT_IOCTL 64
  87. #define TIOCSER_TEMT 0x01 /* Transmitter physically empty */
  88. #endif /* _ASM_PARISC_IOCTLS_H */