termbits.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _SPARC64_TERMBITS_H
  2. #define _SPARC64_TERMBITS_H
  3. #include <linux/posix_types.h>
  4. typedef unsigned char   cc_t;
  5. typedef unsigned int    speed_t;
  6. /* XXX is this right for sparc64?  it was an unsigned long... XXX */
  7. typedef unsigned int    tcflag_t;
  8. #define NCC 8
  9. struct termio {
  10. unsigned short c_iflag; /* input mode flags */
  11. unsigned short c_oflag; /* output mode flags */
  12. unsigned short c_cflag; /* control mode flags */
  13. unsigned short c_lflag; /* local mode flags */
  14. unsigned char c_line; /* line discipline */
  15. unsigned char c_cc[NCC]; /* control characters */
  16. };
  17. #define NCCS 17
  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_line; /* line discipline */
  24. cc_t c_cc[NCCS]; /* control characters */
  25. #ifdef __KERNEL__
  26. #define SIZEOF_USER_TERMIOS sizeof (struct termios) - (2*sizeof (cc_t))
  27. cc_t _x_cc[2];                  /* We need them to hold vmin/vtime */
  28. #endif
  29. };
  30. /* c_cc characters */
  31. #define VINTR    0
  32. #define VQUIT    1
  33. #define VERASE   2
  34. #define VKILL    3
  35. #define VEOF     4
  36. #define VEOL     5
  37. #define VEOL2    6
  38. #define VSWTC    7
  39. #define VSTART   8
  40. #define VSTOP    9
  41. #define VSUSP    10
  42. #define VDSUSP   11  /* SunOS POSIX nicety I do believe... */
  43. #define VREPRINT 12
  44. #define VDISCARD 13
  45. #define VWERASE  14
  46. #define VLNEXT   15
  47. /* Kernel keeps vmin/vtime separated, user apps assume vmin/vtime is
  48.  * shared with eof/eol
  49.  */
  50. #ifdef __KERNEL__
  51. #define VMIN     16
  52. #define VTIME    17
  53. #else
  54. #define VMIN     VEOF
  55. #define VTIME    VEOL
  56. #endif
  57. /* c_iflag bits */
  58. #define IGNBRK 0x00000001
  59. #define BRKINT 0x00000002
  60. #define IGNPAR 0x00000004
  61. #define PARMRK 0x00000008
  62. #define INPCK 0x00000010
  63. #define ISTRIP 0x00000020
  64. #define INLCR 0x00000040
  65. #define IGNCR 0x00000080
  66. #define ICRNL 0x00000100
  67. #define IUCLC 0x00000200
  68. #define IXON 0x00000400
  69. #define IXANY 0x00000800
  70. #define IXOFF 0x00001000
  71. #define IMAXBEL 0x00002000
  72. /* c_oflag bits */
  73. #define OPOST 0x00000001
  74. #define OLCUC 0x00000002
  75. #define ONLCR 0x00000004
  76. #define OCRNL 0x00000008
  77. #define ONOCR 0x00000010
  78. #define ONLRET 0x00000020
  79. #define OFILL 0x00000040
  80. #define OFDEL 0x00000080
  81. #define NLDLY 0x00000100
  82. #define   NL0 0x00000000
  83. #define   NL1 0x00000100
  84. #define CRDLY 0x00000600
  85. #define   CR0 0x00000000
  86. #define   CR1 0x00000200
  87. #define   CR2 0x00000400
  88. #define   CR3 0x00000600
  89. #define TABDLY 0x00001800
  90. #define   TAB0 0x00000000
  91. #define   TAB1 0x00000800
  92. #define   TAB2 0x00001000
  93. #define   TAB3 0x00001800
  94. #define   XTABS 0x00001800
  95. #define BSDLY 0x00002000
  96. #define   BS0 0x00000000
  97. #define   BS1 0x00002000
  98. #define VTDLY 0x00004000
  99. #define   VT0 0x00000000
  100. #define   VT1 0x00004000
  101. #define FFDLY 0x00008000
  102. #define   FF0 0x00000000
  103. #define   FF1 0x00008000
  104. #define PAGEOUT 0x00010000  /* SUNOS specific */
  105. #define WRAP    0x00020000  /* SUNOS specific */
  106. /* c_cflag bit meaning */
  107. #define CBAUD   0x0000100f
  108. #define  B0   0x00000000   /* hang up */
  109. #define  B50   0x00000001
  110. #define  B75   0x00000002
  111. #define  B110   0x00000003
  112. #define  B134   0x00000004
  113. #define  B150   0x00000005
  114. #define  B200   0x00000006
  115. #define  B300   0x00000007
  116. #define  B600   0x00000008
  117. #define  B1200   0x00000009
  118. #define  B1800   0x0000000a
  119. #define  B2400   0x0000000b
  120. #define  B4800   0x0000000c
  121. #define  B9600   0x0000000d
  122. #define  B19200   0x0000000e
  123. #define  B38400   0x0000000f
  124. #define EXTA      B19200
  125. #define EXTB      B38400
  126. #define  CSIZE    0x00000030
  127. #define   CS5   0x00000000
  128. #define   CS6   0x00000010
  129. #define   CS7   0x00000020
  130. #define   CS8   0x00000030
  131. #define CSTOPB   0x00000040
  132. #define CREAD   0x00000080
  133. #define PARENB   0x00000100
  134. #define PARODD   0x00000200
  135. #define HUPCL   0x00000400
  136. #define CLOCAL   0x00000800
  137. #define CBAUDEX   0x00001000
  138. #define  B57600   0x00001001
  139. #define  B115200  0x00001002
  140. #define  B230400  0x00001003
  141. #define  B460800  0x00001004
  142. /* This is what we can do with the Zilogs. */
  143. #define  B76800   0x00001005
  144. /* This is what we can do with the SAB82532. */
  145. #define  B153600  0x00001006
  146. #define  B307200  0x00001007
  147. #define  B614400  0x00001008
  148. #define  B921600  0x00001009
  149. /* And these are the rest... */
  150. #define  B500000  0x0000100a
  151. #define  B576000  0x0000100b
  152. #define B1000000  0x0000100c
  153. #define B1152000  0x0000100d
  154. #define B1500000  0x0000100e
  155. #define B2000000  0x0000100f
  156. /* These have totally bogus values and nobody uses them
  157.    so far. Later on we'd have to use say 0x10000x and
  158.    adjust CBAUD constant and drivers accordingly.
  159. #define B2500000  0x00001010
  160. #define B3000000  0x00001011
  161. #define B3500000  0x00001012
  162. #define B4000000  0x00001013  */
  163. #define CIBAUD   0x100f0000  /* input baud rate (not used) */
  164. #define CMSPAR    0x40000000  /* mark or space (stick) parity */
  165. #define CRTSCTS   0x80000000  /* flow control */
  166. /* c_lflag bits */
  167. #define ISIG 0x00000001
  168. #define ICANON 0x00000002
  169. #define XCASE 0x00000004
  170. #define ECHO 0x00000008
  171. #define ECHOE 0x00000010
  172. #define ECHOK 0x00000020
  173. #define ECHONL 0x00000040
  174. #define NOFLSH 0x00000080
  175. #define TOSTOP 0x00000100
  176. #define ECHOCTL 0x00000200
  177. #define ECHOPRT 0x00000400
  178. #define ECHOKE 0x00000800
  179. #define DEFECHO 0x00001000  /* SUNOS thing, what is it? */
  180. #define FLUSHO 0x00002000
  181. #define PENDIN 0x00004000
  182. #define IEXTEN 0x00008000
  183. /* modem lines */
  184. #define TIOCM_LE 0x001
  185. #define TIOCM_DTR 0x002
  186. #define TIOCM_RTS 0x004
  187. #define TIOCM_ST 0x008
  188. #define TIOCM_SR 0x010
  189. #define TIOCM_CTS 0x020
  190. #define TIOCM_CAR 0x040
  191. #define TIOCM_RNG 0x080
  192. #define TIOCM_DSR 0x100
  193. #define TIOCM_CD TIOCM_CAR
  194. #define TIOCM_RI TIOCM_RNG
  195. #define TIOCM_OUT1 0x2000
  196. #define TIOCM_OUT2 0x4000
  197. #define TIOCM_LOOP 0x8000
  198. /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
  199. #define TIOCSER_TEMT    0x01 /* Transmitter physically empty */
  200. /* tcflow() and TCXONC use these */
  201. #define TCOOFF 0
  202. #define TCOON 1
  203. #define TCIOFF 2
  204. #define TCION 3
  205. /* tcflush() and TCFLSH use these */
  206. #define TCIFLUSH 0
  207. #define TCOFLUSH 1
  208. #define TCIOFLUSH 2
  209. /* tcsetattr uses these */
  210. #define TCSANOW 0
  211. #define TCSADRAIN 1
  212. #define TCSAFLUSH 2
  213. #endif /* !(_SPARC64_TERMBITS_H) */