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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.termios.h 1.8 05/17/01 18:14:26 cort
  3.  */
  4. #ifndef _PPC_TERMIOS_H
  5. #define _PPC_TERMIOS_H
  6. /*
  7.  * Liberally adapted from alpha/termios.h.  In particular, the c_cc[]
  8.  * fields have been reordered so that termio & termios share the
  9.  * common subset in the same order (for brain dead programs that don't
  10.  * know or care about the differences).
  11.  */
  12. #include <asm/ioctls.h>
  13. #include <asm/termbits.h>
  14. struct sgttyb {
  15. char sg_ispeed;
  16. char sg_ospeed;
  17. char sg_erase;
  18. char sg_kill;
  19. short sg_flags;
  20. };
  21. struct tchars {
  22. char t_intrc;
  23. char t_quitc;
  24. char t_startc;
  25. char t_stopc;
  26. char t_eofc;
  27. char t_brkc;
  28. };
  29. struct ltchars {
  30. char t_suspc;
  31. char t_dsuspc;
  32. char t_rprntc;
  33. char t_flushc;
  34. char t_werasc;
  35. char t_lnextc;
  36. };
  37. #define FIOCLEX _IO('f', 1)
  38. #define FIONCLEX _IO('f', 2)
  39. #define FIOASYNC _IOW('f', 125, int)
  40. #define FIONBIO _IOW('f', 126, int)
  41. #define FIONREAD _IOR('f', 127, int)
  42. #define TIOCINQ FIONREAD
  43. #define FIOQSIZE _IOR('f', 128, loff_t)
  44. #define TIOCGETP _IOR('t', 8, struct sgttyb)
  45. #define TIOCSETP _IOW('t', 9, struct sgttyb)
  46. #define TIOCSETN _IOW('t', 10, struct sgttyb) /* TIOCSETP wo flush */
  47. #define TIOCSETC _IOW('t', 17, struct tchars)
  48. #define TIOCGETC _IOR('t', 18, struct tchars)
  49. #define TCGETS _IOR('t', 19, struct termios)
  50. #define TCSETS _IOW('t', 20, struct termios)
  51. #define TCSETSW _IOW('t', 21, struct termios)
  52. #define TCSETSF _IOW('t', 22, struct termios)
  53. #define TCGETA _IOR('t', 23, struct termio)
  54. #define TCSETA _IOW('t', 24, struct termio)
  55. #define TCSETAW _IOW('t', 25, struct termio)
  56. #define TCSETAF _IOW('t', 28, struct termio)
  57. #define TCSBRK _IO('t', 29)
  58. #define TCXONC _IO('t', 30)
  59. #define TCFLSH _IO('t', 31)
  60. #define TIOCSWINSZ _IOW('t', 103, struct winsize)
  61. #define TIOCGWINSZ _IOR('t', 104, struct winsize)
  62. #define TIOCSTART _IO('t', 110) /* start output, like ^Q */
  63. #define TIOCSTOP _IO('t', 111) /* stop output, like ^S */
  64. #define TIOCOUTQ        _IOR('t', 115, int)     /* output queue size */
  65. #define TIOCGLTC _IOR('t', 116, struct ltchars)
  66. #define TIOCSLTC _IOW('t', 117, struct ltchars)
  67. #define TIOCSPGRP _IOW('t', 118, int)
  68. #define TIOCGPGRP _IOR('t', 119, int)
  69. #define TIOCEXCL 0x540C
  70. #define TIOCNXCL 0x540D
  71. #define TIOCSCTTY 0x540E
  72. #define TIOCSTI 0x5412
  73. #define TIOCMGET 0x5415
  74. #define TIOCMBIS 0x5416
  75. #define TIOCMBIC 0x5417
  76. #define TIOCMSET 0x5418
  77. #define TIOCGSOFTCAR 0x5419
  78. #define TIOCSSOFTCAR 0x541A
  79. #define TIOCLINUX 0x541C
  80. #define TIOCCONS 0x541D
  81. #define TIOCGSERIAL 0x541E
  82. #define TIOCSSERIAL 0x541F
  83. #define TIOCPKT 0x5420
  84. #define TIOCNOTTY 0x5422
  85. #define TIOCSETD 0x5423
  86. #define TIOCGETD 0x5424
  87. #define TCSBRKP 0x5425 /* Needed for POSIX tcsendbreak() */
  88. #define TIOCTTYGSTRUCT 0x5426  /* For debugging only */
  89. #define TIOCSERCONFIG 0x5453
  90. #define TIOCSERGWILD 0x5454
  91. #define TIOCSERSWILD 0x5455
  92. #define TIOCGLCKTRMIOS 0x5456
  93. #define TIOCSLCKTRMIOS 0x5457
  94. #define TIOCSERGSTRUCT 0x5458 /* For debugging only */
  95. #define TIOCSERGETLSR   0x5459 /* Get line status register */
  96. #define TIOCSERGETMULTI 0x545A /* Get multiport config  */
  97. #define TIOCSERSETMULTI 0x545B /* Set multiport config */
  98. #define TIOCMIWAIT 0x545C /* wait for a change on serial input line(s) */
  99. #define TIOCGICOUNT 0x545D /* read serial port inline interrupt counts */
  100. /* Used for packet mode */
  101. #define TIOCPKT_DATA  0
  102. #define TIOCPKT_FLUSHREAD  1
  103. #define TIOCPKT_FLUSHWRITE  2
  104. #define TIOCPKT_STOP  4
  105. #define TIOCPKT_START  8
  106. #define TIOCPKT_NOSTOP 16
  107. #define TIOCPKT_DOSTOP 32
  108. struct winsize {
  109. unsigned short ws_row;
  110. unsigned short ws_col;
  111. unsigned short ws_xpixel;
  112. unsigned short ws_ypixel;
  113. };
  114. #define NCC 10
  115. struct termio {
  116. unsigned short c_iflag; /* input mode flags */
  117. unsigned short c_oflag; /* output mode flags */
  118. unsigned short c_cflag; /* control mode flags */
  119. unsigned short c_lflag; /* local mode flags */
  120. unsigned char c_line; /* line discipline */
  121. unsigned char c_cc[NCC]; /* control characters */
  122. };
  123. /* c_cc characters */
  124. #define _VINTR 0
  125. #define _VQUIT 1
  126. #define _VERASE 2
  127. #define _VKILL 3
  128. #define _VEOF 4
  129. #define _VMIN 5
  130. #define _VEOL 6
  131. #define _VTIME 7
  132. #define _VEOL2 8
  133. #define _VSWTC 9
  134. #ifdef __KERNEL__
  135. /*                   ^C  ^ del  ^U  ^D   1   0   0   0   0  ^W  ^R  ^Z  ^Q  ^S  ^V  ^U  */
  136. #define INIT_C_CC "03341772504010000000027223221232625" 
  137. #endif
  138. /* modem lines */
  139. #define TIOCM_LE 0x001
  140. #define TIOCM_DTR 0x002
  141. #define TIOCM_RTS 0x004
  142. #define TIOCM_ST 0x008
  143. #define TIOCM_SR 0x010
  144. #define TIOCM_CTS 0x020
  145. #define TIOCM_CAR 0x040
  146. #define TIOCM_RNG 0x080
  147. #define TIOCM_DSR 0x100
  148. #define TIOCM_CD TIOCM_CAR
  149. #define TIOCM_RI TIOCM_RNG
  150. #define TIOCM_OUT1 0x2000
  151. #define TIOCM_OUT2 0x4000
  152. #define TIOCM_LOOP 0x8000
  153. /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
  154. #define TIOCSER_TEMT    0x01 /* Transmitter physically empty */
  155. /* line disciplines */
  156. #define N_TTY 0
  157. #define N_SLIP 1
  158. #define N_MOUSE 2
  159. #define N_PPP 3
  160. #define N_STRIP 4
  161. #define N_AX25 5
  162. #define N_X25 6 /* X.25 async */
  163. #define N_6PACK 7
  164. #define N_MASC 8 /* Reserved for Mobitex module <kaz@cafe.net> */
  165. #define N_R3964 9 /* Reserved for Simatic R3964 module */
  166. #define N_PROFIBUS_FDL 10 /* Reserved for Profibus <Dave@mvhi.com> */
  167. #define N_IRDA 11 /* Linux IrDa - http://irda.sourceforge.net/ */
  168. #define N_SMSBLOCK 12 /* SMS block mode - for talking to GSM data cards about SMS messages */
  169. #define N_HDLC 13 /* synchronous HDLC */
  170. #define N_SYNC_PPP 14
  171. #define N_HCI 15  /* Bluetooth HCI UART */
  172. #ifdef __KERNEL__
  173. /*
  174.  * Translate a "termio" structure into a "termios". Ugh.
  175.  */
  176. #define SET_LOW_TERMIOS_BITS(termios, termio, x) { 
  177. unsigned short __tmp; 
  178. get_user(__tmp,&(termio)->x); 
  179. (termios)->x = (0xffff0000 & (termios)->x) | __tmp; 
  180. }
  181. #define user_termio_to_kernel_termios(termios, termio) 
  182. ({ 
  183. SET_LOW_TERMIOS_BITS(termios, termio, c_iflag); 
  184. SET_LOW_TERMIOS_BITS(termios, termio, c_oflag); 
  185. SET_LOW_TERMIOS_BITS(termios, termio, c_cflag); 
  186. SET_LOW_TERMIOS_BITS(termios, termio, c_lflag); 
  187. copy_from_user((termios)->c_cc, (termio)->c_cc, NCC); 
  188. })
  189. /*
  190.  * Translate a "termios" structure into a "termio". Ugh.
  191.  */
  192. #define kernel_termios_to_user_termio(termio, termios) 
  193. ({ 
  194. put_user((termios)->c_iflag, &(termio)->c_iflag); 
  195. put_user((termios)->c_oflag, &(termio)->c_oflag); 
  196. put_user((termios)->c_cflag, &(termio)->c_cflag); 
  197. put_user((termios)->c_lflag, &(termio)->c_lflag); 
  198. put_user((termios)->c_line,  &(termio)->c_line); 
  199. copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); 
  200. })
  201. #define user_termios_to_kernel_termios(k, u) copy_from_user(k, u, sizeof(struct termios))
  202. #define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios))
  203. #endif /* __KERNEL__ */
  204. #endif /* _PPC_TERMIOS_H */