termbits.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. #ifndef __ASM_ARM_TERMBITS_H
  2. #define __ASM_ARM_TERMBITS_H
  3. typedef unsigned char cc_t;
  4. typedef unsigned int speed_t;
  5. typedef unsigned int tcflag_t;
  6. #define NCCS 19
  7. struct termios {
  8. tcflag_t c_iflag; /* input mode flags */
  9. tcflag_t c_oflag; /* output mode flags */
  10. tcflag_t c_cflag; /* control mode flags */
  11. tcflag_t c_lflag; /* local mode flags */
  12. cc_t c_line; /* line discipline */
  13. cc_t c_cc[NCCS]; /* control characters */
  14. };
  15. struct termios2 {
  16. tcflag_t c_iflag; /* input mode flags */
  17. tcflag_t c_oflag; /* output mode flags */
  18. tcflag_t c_cflag; /* control mode flags */
  19. tcflag_t c_lflag; /* local mode flags */
  20. cc_t c_line; /* line discipline */
  21. cc_t c_cc[NCCS]; /* control characters */
  22. speed_t c_ispeed; /* input speed */
  23. speed_t c_ospeed; /* output speed */
  24. };
  25. struct ktermios {
  26. tcflag_t c_iflag; /* input mode flags */
  27. tcflag_t c_oflag; /* output mode flags */
  28. tcflag_t c_cflag; /* control mode flags */
  29. tcflag_t c_lflag; /* local mode flags */
  30. cc_t c_line; /* line discipline */
  31. cc_t c_cc[NCCS]; /* control characters */
  32. speed_t c_ispeed; /* input speed */
  33. speed_t c_ospeed; /* output speed */
  34. };
  35. /* c_cc characters */
  36. #define VINTR 0
  37. #define VQUIT 1
  38. #define VERASE 2
  39. #define VKILL 3
  40. #define VEOF 4
  41. #define VTIME 5
  42. #define VMIN 6
  43. #define VSWTC 7
  44. #define VSTART 8
  45. #define VSTOP 9
  46. #define VSUSP 10
  47. #define VEOL 11
  48. #define VREPRINT 12
  49. #define VDISCARD 13
  50. #define VWERASE 14
  51. #define VLNEXT 15
  52. #define VEOL2 16
  53. /* c_iflag bits */
  54. #define IGNBRK 0000001
  55. #define BRKINT 0000002
  56. #define IGNPAR 0000004
  57. #define PARMRK 0000010
  58. #define INPCK 0000020
  59. #define ISTRIP 0000040
  60. #define INLCR 0000100
  61. #define IGNCR 0000200
  62. #define ICRNL 0000400
  63. #define IUCLC 0001000
  64. #define IXON 0002000
  65. #define IXANY 0004000
  66. #define IXOFF 0010000
  67. #define IMAXBEL 0020000
  68. #define IUTF8 0040000
  69. /* c_oflag bits */
  70. #define OPOST 0000001
  71. #define OLCUC 0000002
  72. #define ONLCR 0000004
  73. #define OCRNL 0000010
  74. #define ONOCR 0000020
  75. #define ONLRET 0000040
  76. #define OFILL 0000100
  77. #define OFDEL 0000200
  78. #define NLDLY 0000400
  79. #define NL0 0000000
  80. #define NL1 0000400
  81. #define CRDLY 0003000
  82. #define CR0 0000000
  83. #define CR1 0001000
  84. #define CR2 0002000
  85. #define CR3 0003000
  86. #define TABDLY 0014000
  87. #define TAB0 0000000
  88. #define TAB1 0004000
  89. #define TAB2 0010000
  90. #define TAB3 0014000
  91. #define XTABS 0014000
  92. #define BSDLY 0020000
  93. #define BS0 0000000
  94. #define BS1 0020000
  95. #define VTDLY 0040000
  96. #define VT0 0000000
  97. #define VT1 0040000
  98. #define FFDLY 0100000
  99. #define FF0 0000000
  100. #define FF1 0100000
  101. /* c_cflag bit meaning */
  102. #define CBAUD 0010017
  103. #define B0 0000000 /* hang up */
  104. #define B50 0000001
  105. #define B75 0000002
  106. #define B110 0000003
  107. #define B134 0000004
  108. #define B150 0000005
  109. #define B200 0000006
  110. #define B300 0000007
  111. #define B600 0000010
  112. #define B1200 0000011
  113. #define B1800 0000012
  114. #define B2400 0000013
  115. #define B4800 0000014
  116. #define B9600 0000015
  117. #define B19200 0000016
  118. #define B38400 0000017
  119. #define EXTA B19200
  120. #define EXTB B38400
  121. #define CSIZE 0000060
  122. #define CS5 0000000
  123. #define CS6 0000020
  124. #define CS7 0000040
  125. #define CS8 0000060
  126. #define CSTOPB 0000100
  127. #define CREAD 0000200
  128. #define PARENB 0000400
  129. #define PARODD 0001000
  130. #define HUPCL 0002000
  131. #define CLOCAL 0004000
  132. #define CBAUDEX 0010000
  133. #define BOTHER 0010000
  134. #define B57600 0010001
  135. #define B115200 0010002
  136. #define B230400 0010003
  137. #define B460800 0010004
  138. #define B500000 0010005
  139. #define B576000 0010006
  140. #define B921600 0010007
  141. #define B1000000 0010010
  142. #define B1152000 0010011
  143. #define B1500000 0010012
  144. #define B2000000 0010013
  145. #define B2500000 0010014
  146. #define B3000000 0010015
  147. #define B3500000 0010016
  148. #define B4000000 0010017
  149. #define CIBAUD 002003600000 /* input baud rate */
  150. #define CMSPAR 010000000000 /* mark or space (stick) parity */
  151. #define CRTSCTS 020000000000 /* flow control */
  152. #define IBSHIFT 16
  153. /* c_lflag bits */
  154. #define ISIG 0000001
  155. #define ICANON 0000002
  156. #define XCASE 0000004
  157. #define ECHO 0000010
  158. #define ECHOE 0000020
  159. #define ECHOK 0000040
  160. #define ECHONL 0000100
  161. #define NOFLSH 0000200
  162. #define TOSTOP 0000400
  163. #define ECHOCTL 0001000
  164. #define ECHOPRT 0002000
  165. #define ECHOKE 0004000
  166. #define FLUSHO 0010000
  167. #define PENDIN 0040000
  168. #define IEXTEN 0100000
  169. #define EXTPROC 0200000
  170. /* tcflow() and TCXONC use these */
  171. #define TCOOFF 0
  172. #define TCOON 1
  173. #define TCIOFF 2
  174. #define TCION 3
  175. /* tcflush() and TCFLSH use these */
  176. #define TCIFLUSH 0
  177. #define TCOFLUSH 1
  178. #define TCIOFLUSH 2
  179. /* tcsetattr uses these */
  180. #define TCSANOW 0
  181. #define TCSADRAIN 1
  182. #define TCSAFLUSH 2
  183. #endif /* __ASM_ARM_TERMBITS_H */