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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: termios.h,v 1.32 2001/06/01 08:12:11 davem Exp $ */
  2. #ifndef _SPARC_TERMIOS_H
  3. #define _SPARC_TERMIOS_H
  4. #include <asm/ioctls.h>
  5. #include <asm/termbits.h>
  6. #if defined(__KERNEL__) || defined(__DEFINE_BSD_TERMIOS)
  7. struct sgttyb {
  8. char sg_ispeed;
  9. char sg_ospeed;
  10. char sg_erase;
  11. char sg_kill;
  12. short sg_flags;
  13. };
  14. struct tchars {
  15. char t_intrc;
  16. char t_quitc;
  17. char t_startc;
  18. char t_stopc;
  19. char t_eofc;
  20. char t_brkc;
  21. };
  22. struct ltchars {
  23. char t_suspc;
  24. char t_dsuspc;
  25. char t_rprntc;
  26. char t_flushc;
  27. char t_werasc;
  28. char t_lnextc;
  29. };
  30. #endif /* __KERNEL__ */
  31. struct sunos_ttysize {
  32. int st_lines;   /* Lines on the terminal */
  33. int st_columns; /* Columns on the terminal */
  34. };
  35. /* Used for packet mode */
  36. #define TIOCPKT_DATA  0
  37. #define TIOCPKT_FLUSHREAD  1
  38. #define TIOCPKT_FLUSHWRITE  2
  39. #define TIOCPKT_STOP  4
  40. #define TIOCPKT_START  8
  41. #define TIOCPKT_NOSTOP 16
  42. #define TIOCPKT_DOSTOP 32
  43. struct winsize {
  44. unsigned short ws_row;
  45. unsigned short ws_col;
  46. unsigned short ws_xpixel;
  47. unsigned short ws_ypixel;
  48. };
  49. /* line disciplines */
  50. #define N_TTY 0
  51. #define N_SLIP 1
  52. #define N_MOUSE 2
  53. #define N_PPP 3
  54. #define N_STRIP 4
  55. #define N_AX25 5
  56. #define N_X25 6
  57. #define N_6PACK 7
  58. #define N_MASC 8 /* Reserved for Mobitex module <kaz@cafe.net> */
  59. #define N_R3964 9 /* Reserved for Simatic R3964 module */
  60. #define N_PROFIBUS_FDL 10 /* Reserved for Profibus <Dave@mvhi.com> */
  61. #define N_IRDA 11 /* Linux IrDa - http://irda.sourceforge.net/ */
  62. #define N_SMSBLOCK 12 /* SMS block mode - for talking to GSM data cards about SMS messages */
  63. #define N_HDLC 13 /* synchronous HDLC */
  64. #define N_SYNC_PPP 14 /* synchronous PPP */
  65. #define N_HCI 15  /* Bluetooth HCI UART */
  66. #ifdef __KERNEL__
  67. /*
  68.  * c_cc characters in the termio structure.  Oh, how I love being
  69.  * backwardly compatible.  Notice that character 4 and 5 are
  70.  * interpreted differently depending on whether ICANON is set in
  71.  * c_lflag.  If it's set, they are used as _VEOF and _VEOL, otherwise
  72.  * as _VMIN and V_TIME.  This is for compatibility with OSF/1 (which
  73.  * is compatible with sysV)...
  74.  */
  75. #define _VMIN 4
  76. #define _VTIME 5
  77. /* intr=^C quit=^ erase=del kill=^U
  78. eof=^D eol= eol2= sxtc=
  79. start=^Q stop=^S susp=^Z dsusp=^Y
  80. reprint=^R discard=^U werase=^W lnext=^V
  81. vmin=1         vtime=
  82. */
  83. #define INIT_C_CC "0334177250400000021233231222527260100"
  84. /*
  85.  * Translate a "termio" structure into a "termios". Ugh.
  86.  */
  87. #define user_termio_to_kernel_termios(termios, termio) 
  88. ({ 
  89. unsigned short tmp; 
  90. get_user(tmp, &(termio)->c_iflag); 
  91. (termios)->c_iflag = (0xffff0000 & ((termios)->c_iflag)) | tmp; 
  92. get_user(tmp, &(termio)->c_oflag); 
  93. (termios)->c_oflag = (0xffff0000 & ((termios)->c_oflag)) | tmp; 
  94. get_user(tmp, &(termio)->c_cflag); 
  95. (termios)->c_cflag = (0xffff0000 & ((termios)->c_cflag)) | tmp; 
  96. get_user(tmp, &(termio)->c_lflag); 
  97. (termios)->c_lflag = (0xffff0000 & ((termios)->c_lflag)) | tmp; 
  98. copy_from_user((termios)->c_cc, (termio)->c_cc, NCC); 
  99. 0; 
  100. })
  101. /*
  102.  * Translate a "termios" structure into a "termio". Ugh.
  103.  *
  104.  * Note the "fun" _VMIN overloading.
  105.  */
  106. #define kernel_termios_to_user_termio(termio, termios) 
  107. ({ 
  108. put_user((termios)->c_iflag, &(termio)->c_iflag); 
  109. put_user((termios)->c_oflag, &(termio)->c_oflag); 
  110. put_user((termios)->c_cflag, &(termio)->c_cflag); 
  111. put_user((termios)->c_lflag, &(termio)->c_lflag); 
  112. put_user((termios)->c_line,  &(termio)->c_line); 
  113. copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); 
  114. if (!((termios)->c_lflag & ICANON)) { 
  115. put_user((termios)->c_cc[VMIN], &(termio)->c_cc[_VMIN]); 
  116. put_user((termios)->c_cc[VTIME], &(termio)->c_cc[_VTIME]); 
  117. 0; 
  118. })
  119. #define user_termios_to_kernel_termios(k, u) 
  120. ({ 
  121. get_user((k)->c_iflag, &(u)->c_iflag); 
  122. get_user((k)->c_oflag, &(u)->c_oflag); 
  123. get_user((k)->c_cflag, &(u)->c_cflag); 
  124. get_user((k)->c_lflag, &(u)->c_lflag); 
  125. get_user((k)->c_line,  &(u)->c_line); 
  126. copy_from_user((k)->c_cc, (u)->c_cc, NCCS); 
  127. if((k)->c_lflag & ICANON) { 
  128. get_user((k)->c_cc[VEOF], &(u)->c_cc[VEOF]); 
  129. get_user((k)->c_cc[VEOL], &(u)->c_cc[VEOL]); 
  130. } else { 
  131. get_user((k)->c_cc[VMIN],  &(u)->c_cc[_VMIN]); 
  132. get_user((k)->c_cc[VTIME], &(u)->c_cc[_VTIME]); 
  133. 0; 
  134. })
  135. #define kernel_termios_to_user_termios(u, k) 
  136. ({ 
  137. put_user((k)->c_iflag, &(u)->c_iflag); 
  138. put_user((k)->c_oflag, &(u)->c_oflag); 
  139. put_user((k)->c_cflag, &(u)->c_cflag); 
  140. put_user((k)->c_lflag, &(u)->c_lflag); 
  141. put_user((k)->c_line, &(u)->c_line); 
  142. copy_to_user((u)->c_cc, (k)->c_cc, NCCS); 
  143. if(!((k)->c_lflag & ICANON)) { 
  144. put_user((k)->c_cc[VMIN],  &(u)->c_cc[_VMIN]); 
  145. put_user((k)->c_cc[VTIME], &(u)->c_cc[_VTIME]); 
  146. } else { 
  147. put_user((k)->c_cc[VEOF], &(u)->c_cc[VEOF]); 
  148. put_user((k)->c_cc[VEOL], &(u)->c_cc[VEOL]); 
  149. 0; 
  150. })
  151. #endif /* __KERNEL__ */
  152. #endif /* _SPARC_TERMIOS_H */