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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _SPARC_TERMBITS_H
  2. #define _SPARC_TERMBITS_H
  3. #include <linux/posix_types.h>
  4. typedef unsigned char   cc_t;
  5. typedef unsigned int    speed_t;
  6. typedef unsigned long   tcflag_t;
  7. #define NCC 8
  8. struct termio {
  9. unsigned short c_iflag; /* input mode flags */
  10. unsigned short c_oflag; /* output mode flags */
  11. unsigned short c_cflag; /* control mode flags */
  12. unsigned short c_lflag; /* local mode flags */
  13. unsigned char c_line; /* line discipline */
  14. unsigned char c_cc[NCC]; /* control characters */
  15. };
  16. #define NCCS 17
  17. struct termios {
  18. tcflag_t c_iflag; /* input mode flags */
  19. tcflag_t c_oflag; /* output mode flags */
  20. tcflag_t c_cflag; /* control mode flags */
  21. tcflag_t c_lflag; /* local mode flags */
  22. cc_t c_line; /* line discipline */
  23. cc_t c_cc[NCCS]; /* control characters */
  24. #ifdef __KERNEL__
  25. #define SIZEOF_USER_TERMIOS sizeof (struct termios) - (2*sizeof (cc_t))
  26. cc_t _x_cc[2];                  /* We need them to hold vmin/vtime */
  27. #endif
  28. };
  29. /* c_cc characters */
  30. #define VINTR    0
  31. #define VQUIT    1
  32. #define VERASE   2
  33. #define VKILL    3
  34. #define VEOF     4
  35. #define VEOL     5
  36. #define VEOL2    6
  37. #define VSWTC    7
  38. #define VSTART   8
  39. #define VSTOP    9
  40. #define VSUSP    10
  41. #define VDSUSP   11  /* SunOS POSIX nicety I do believe... */
  42. #define VREPRINT 12
  43. #define VDISCARD 13
  44. #define VWERASE  14
  45. #define VLNEXT   15
  46. /* Kernel keeps vmin/vtime separated, user apps assume vmin/vtime is
  47.  * shared with eof/eol
  48.  */
  49. #ifdef __KERNEL__
  50. #define VMIN     16
  51. #define VTIME    17
  52. #else
  53. #define VMIN     VEOF
  54. #define VTIME    VEOL
  55. #endif
  56. /* c_iflag bits */
  57. #define IGNBRK 0x00000001
  58. #define BRKINT 0x00000002
  59. #define IGNPAR 0x00000004
  60. #define PARMRK 0x00000008
  61. #define INPCK 0x00000010
  62. #define ISTRIP 0x00000020
  63. #define INLCR 0x00000040
  64. #define IGNCR 0x00000080
  65. #define ICRNL 0x00000100
  66. #define IUCLC 0x00000200
  67. #define IXON 0x00000400
  68. #define IXANY 0x00000800
  69. #define IXOFF 0x00001000
  70. #define IMAXBEL 0x00002000
  71. /* c_oflag bits */
  72. #define OPOST 0x00000001
  73. #define OLCUC 0x00000002
  74. #define ONLCR 0x00000004
  75. #define OCRNL 0x00000008
  76. #define ONOCR 0x00000010
  77. #define ONLRET 0x00000020
  78. #define OFILL 0x00000040
  79. #define OFDEL 0x00000080
  80. #define NLDLY 0x00000100
  81. #define   NL0 0x00000000
  82. #define   NL1 0x00000100
  83. #define CRDLY 0x00000600
  84. #define   CR0 0x00000000
  85. #define   CR1 0x00000200
  86. #define   CR2 0x00000400
  87. #define   CR3 0x00000600
  88. #define TABDLY 0x00001800
  89. #define   TAB0 0x00000000
  90. #define   TAB1 0x00000800
  91. #define   TAB2 0x00001000
  92. #define   TAB3 0x00001800
  93. #define   XTABS 0x00001800
  94. #define BSDLY 0x00002000
  95. #define   BS0 0x00000000
  96. #define   BS1 0x00002000
  97. #define VTDLY 0x00004000
  98. #define   VT0 0x00000000
  99. #define   VT1 0x00004000
  100. #define FFDLY 0x00008000
  101. #define   FF0 0x00000000
  102. #define   FF1 0x00008000
  103. #define PAGEOUT 0x00010000  /* SUNOS specific */
  104. #define WRAP    0x00020000  /* SUNOS specific */
  105. /* c_cflag bit meaning */
  106. #define CBAUD   0x0000100f
  107. #define  B0   0x00000000   /* hang up */
  108. #define  B50   0x00000001
  109. #define  B75   0x00000002
  110. #define  B110   0x00000003
  111. #define  B134   0x00000004
  112. #define  B150   0x00000005
  113. #define  B200   0x00000006
  114. #define  B300   0x00000007
  115. #define  B600   0x00000008
  116. #define  B1200   0x00000009
  117. #define  B1800   0x0000000a
  118. #define  B2400   0x0000000b
  119. #define  B4800   0x0000000c
  120. #define  B9600   0x0000000d
  121. #define  B19200   0x0000000e
  122. #define  B38400   0x0000000f
  123. #define EXTA      B19200
  124. #define EXTB      B38400
  125. #define  CSIZE    0x00000030
  126. #define   CS5   0x00000000
  127. #define   CS6   0x00000010
  128. #define   CS7   0x00000020
  129. #define   CS8   0x00000030
  130. #define CSTOPB   0x00000040
  131. #define CREAD   0x00000080
  132. #define PARENB   0x00000100
  133. #define PARODD   0x00000200
  134. #define HUPCL   0x00000400
  135. #define CLOCAL   0x00000800
  136. #define CBAUDEX   0x00001000
  137. /* We'll never see these speeds with the Zilogs, but for completeness... */
  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 /* !(_SPARC_TERMBITS_H) */