termbits.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. #ifndef _ASM_POWERPC_TERMBITS_H
  2. #define _ASM_POWERPC_TERMBITS_H
  3. /*
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version
  7. * 2 of the License, or (at your option) any later version.
  8. */
  9. typedef unsigned char cc_t;
  10. typedef unsigned int speed_t;
  11. typedef unsigned int tcflag_t;
  12. /*
  13. * termios type and macro definitions. Be careful about adding stuff
  14. * to this file since it's used in GNU libc and there are strict rules
  15. * concerning namespace pollution.
  16. */
  17. #define NCCS 19
  18. struct termios {
  19. tcflag_t c_iflag; /* input mode flags */
  20. tcflag_t c_oflag; /* output mode flags */
  21. tcflag_t c_cflag; /* control mode flags */
  22. tcflag_t c_lflag; /* local mode flags */
  23. cc_t c_cc[NCCS]; /* control characters */
  24. cc_t c_line; /* line discipline (== c_cc[19]) */
  25. speed_t c_ispeed; /* input speed */
  26. speed_t c_ospeed; /* output speed */
  27. };
  28. /* For PowerPC the termios and ktermios are the same */
  29. struct ktermios {
  30. tcflag_t c_iflag; /* input mode flags */
  31. tcflag_t c_oflag; /* output mode flags */
  32. tcflag_t c_cflag; /* control mode flags */
  33. tcflag_t c_lflag; /* local mode flags */
  34. cc_t c_cc[NCCS]; /* control characters */
  35. cc_t c_line; /* line discipline (== c_cc[19]) */
  36. speed_t c_ispeed; /* input speed */
  37. speed_t c_ospeed; /* output speed */
  38. };
  39. /* c_cc characters */
  40. #define VINTR 0
  41. #define VQUIT 1
  42. #define VERASE 2
  43. #define VKILL 3
  44. #define VEOF 4
  45. #define VMIN 5
  46. #define VEOL 6
  47. #define VTIME 7
  48. #define VEOL2 8
  49. #define VSWTC 9
  50. #define VWERASE 10
  51. #define VREPRINT 11
  52. #define VSUSP 12
  53. #define VSTART 13
  54. #define VSTOP 14
  55. #define VLNEXT 15
  56. #define VDISCARD 16
  57. /* c_iflag bits */
  58. #define IGNBRK 0000001
  59. #define BRKINT 0000002
  60. #define IGNPAR 0000004
  61. #define PARMRK 0000010
  62. #define INPCK 0000020
  63. #define ISTRIP 0000040
  64. #define INLCR 0000100
  65. #define IGNCR 0000200
  66. #define ICRNL 0000400
  67. #define IXON 0001000
  68. #define IXOFF 0002000
  69. #define IXANY 0004000
  70. #define IUCLC 0010000
  71. #define IMAXBEL 0020000
  72. #define IUTF8 0040000
  73. /* c_oflag bits */
  74. #define OPOST 0000001
  75. #define ONLCR 0000002
  76. #define OLCUC 0000004
  77. #define OCRNL 0000010
  78. #define ONOCR 0000020
  79. #define ONLRET 0000040
  80. #define OFILL 00000100
  81. #define OFDEL 00000200
  82. #define NLDLY 00001400
  83. #define NL0 00000000
  84. #define NL1 00000400
  85. #define NL2 00001000
  86. #define NL3 00001400
  87. #define TABDLY 00006000
  88. #define TAB0 00000000
  89. #define TAB1 00002000
  90. #define TAB2 00004000
  91. #define TAB3 00006000
  92. #define XTABS 00006000 /* required by POSIX to == TAB3 */
  93. #define CRDLY 00030000
  94. #define CR0 00000000
  95. #define CR1 00010000
  96. #define CR2 00020000
  97. #define CR3 00030000
  98. #define FFDLY 00040000
  99. #define FF0 00000000
  100. #define FF1 00040000
  101. #define BSDLY 00100000
  102. #define BS0 00000000
  103. #define BS1 00100000
  104. #define VTDLY 00200000
  105. #define VT0 00000000
  106. #define VT1 00200000
  107. /* c_cflag bit meaning */
  108. #define CBAUD 0000377
  109. #define B0 0000000 /* hang up */
  110. #define B50 0000001
  111. #define B75 0000002
  112. #define B110 0000003
  113. #define B134 0000004
  114. #define B150 0000005
  115. #define B200 0000006
  116. #define B300 0000007
  117. #define B600 0000010
  118. #define B1200 0000011
  119. #define B1800 0000012
  120. #define B2400 0000013
  121. #define B4800 0000014
  122. #define B9600 0000015
  123. #define B19200 0000016
  124. #define B38400 0000017
  125. #define EXTA B19200
  126. #define EXTB B38400
  127. #define CBAUDEX 0000000
  128. #define B57600 00020
  129. #define B115200 00021
  130. #define B230400 00022
  131. #define B460800 00023
  132. #define B500000 00024
  133. #define B576000 00025
  134. #define B921600 00026
  135. #define B1000000 00027
  136. #define B1152000 00030
  137. #define B1500000 00031
  138. #define B2000000 00032
  139. #define B2500000 00033
  140. #define B3000000 00034
  141. #define B3500000 00035
  142. #define B4000000 00036
  143. #define BOTHER 00037
  144. #define CIBAUD 077600000
  145. #define IBSHIFT 16 /* Shift from CBAUD to CIBAUD */
  146. #define CSIZE 00001400
  147. #define CS5 00000000
  148. #define CS6 00000400
  149. #define CS7 00001000
  150. #define CS8 00001400
  151. #define CSTOPB 00002000
  152. #define CREAD 00004000
  153. #define PARENB 00010000
  154. #define PARODD 00020000
  155. #define HUPCL 00040000
  156. #define CLOCAL 00100000
  157. #define CMSPAR 010000000000 /* mark or space (stick) parity */
  158. #define CRTSCTS 020000000000 /* flow control */
  159. /* c_lflag bits */
  160. #define ISIG 0x00000080
  161. #define ICANON 0x00000100
  162. #define XCASE 0x00004000
  163. #define ECHO 0x00000008
  164. #define ECHOE 0x00000002
  165. #define ECHOK 0x00000004
  166. #define ECHONL 0x00000010
  167. #define NOFLSH 0x80000000
  168. #define TOSTOP 0x00400000
  169. #define ECHOCTL 0x00000040
  170. #define ECHOPRT 0x00000020
  171. #define ECHOKE 0x00000001
  172. #define FLUSHO 0x00800000
  173. #define PENDIN 0x20000000
  174. #define IEXTEN 0x00000400
  175. /* Values for the ACTION argument to `tcflow'. */
  176. #define TCOOFF 0
  177. #define TCOON 1
  178. #define TCIOFF 2
  179. #define TCION 3
  180. /* Values for the QUEUE_SELECTOR argument to `tcflush'. */
  181. #define TCIFLUSH 0
  182. #define TCOFLUSH 1
  183. #define TCIOFLUSH 2
  184. /* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'. */
  185. #define TCSANOW 0
  186. #define TCSADRAIN 1
  187. #define TCSAFLUSH 2
  188. #endif /* _ASM_POWERPC_TERMBITS_H */