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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1995, 1996, 2001 by Ralf Baechle
  7.  */
  8. #ifndef _ASM_TERMIOS_H
  9. #define _ASM_TERMIOS_H
  10. #include <asm/termbits.h>
  11. #include <asm/ioctls.h>
  12. struct sgttyb {
  13. char sg_ispeed;
  14. char sg_ospeed;
  15. char sg_erase;
  16. char sg_kill;
  17. int sg_flags; /* SGI special - int, not short */
  18. };
  19. struct tchars {
  20. char t_intrc;
  21. char t_quitc;
  22. char t_startc;
  23. char t_stopc;
  24. char t_eofc;
  25. char t_brkc;
  26. };
  27. struct ltchars {
  28.         char    t_suspc;        /* stop process signal */
  29.         char    t_dsuspc;       /* delayed stop process signal */
  30.         char    t_rprntc;       /* reprint line */
  31.         char    t_flushc;       /* flush output (toggles) */
  32.         char    t_werasc;       /* word erase */
  33.         char    t_lnextc;       /* literal next character */
  34. };
  35. /* TIOCGSIZE, TIOCSSIZE not defined yet.  Only needed for SunOS source
  36.    compatibility anyway ... */
  37. struct winsize {
  38. unsigned short ws_row;
  39. unsigned short ws_col;
  40. unsigned short ws_xpixel;
  41. unsigned short ws_ypixel;
  42. };
  43. #define NCC 8
  44. struct termio {
  45. unsigned short c_iflag; /* input mode flags */
  46. unsigned short c_oflag; /* output mode flags */
  47. unsigned short c_cflag; /* control mode flags */
  48. unsigned short c_lflag; /* local mode flags */
  49. char c_line; /* line discipline */
  50. unsigned char c_cc[NCCS]; /* control characters */
  51. };
  52. #ifdef __KERNEL__
  53. /*
  54.  * intr=^C quit=^ erase=del kill=^U
  55.  * vmin=1 vtime= eol2= swtc=
  56.  * start=^Q stop=^S susp=^Z vdsusp=
  57.  * reprint=^R discard=^U werase=^W lnext=^V
  58.  * eof=^D eol=
  59.  */
  60. #define INIT_C_CC "03341772512123322217272604"
  61. #endif
  62. /* modem lines */
  63. #define TIOCM_LE 0x001 /* line enable */
  64. #define TIOCM_DTR 0x002 /* data terminal ready */
  65. #define TIOCM_RTS 0x004 /* request to send */
  66. #define TIOCM_ST 0x010 /* secondary transmit */
  67. #define TIOCM_SR 0x020 /* secondary receive */
  68. #define TIOCM_CTS 0x040 /* clear to send */
  69. #define TIOCM_CAR 0x100 /* carrier detect */
  70. #define TIOCM_CD TIOCM_CAR
  71. #define TIOCM_RNG 0x200 /* ring */
  72. #define TIOCM_RI TIOCM_RNG
  73. #define TIOCM_DSR 0x400 /* data set ready */
  74. #define TIOCM_OUT1 0x2000
  75. #define TIOCM_OUT2 0x4000
  76. #define TIOCM_LOOP 0x8000
  77. /* line disciplines */
  78. #define N_TTY 0
  79. #define N_SLIP 1
  80. #define N_MOUSE 2
  81. #define N_PPP 3
  82. #define N_STRIP 4
  83. #define N_AX25 5
  84. #define N_X25 6 /* X.25 async */
  85. #define N_6PACK 7
  86. #define N_MASC 8 /* Reserved fo Mobitex module <kaz@cafe.net> */
  87. #define N_R3964 9 /* Reserved for Simatic R3964 module */
  88. #define N_PROFIBUS_FDL 10 /* Reserved for Profibus <Dave@mvhi.com> */
  89. #define N_IRDA 11 /* Linux IrDa - http://irda.sourceforge.net/ */
  90. #define N_SMSBLOCK 12 /* SMS block mode - for talking to GSM data cards about SMS messages */
  91. #define N_HDLC 13 /* synchronous HDLC */
  92. #define N_SYNC_PPP 14 /* synchronous PPP */
  93. #define N_HCI 15 /* Bluetooth HCI UART */
  94. #ifdef __KERNEL__
  95. #include <linux/string.h>
  96. /*
  97.  * Translate a "termio" structure into a "termios". Ugh.
  98.  */
  99. #define user_termio_to_kernel_termios(termios, termio) 
  100. ({ 
  101. unsigned short tmp; 
  102. get_user(tmp, &(termio)->c_iflag); 
  103. (termios)->c_iflag = (0xffff0000 & ((termios)->c_iflag)) | tmp; 
  104. get_user(tmp, &(termio)->c_oflag); 
  105. (termios)->c_oflag = (0xffff0000 & ((termios)->c_oflag)) | tmp; 
  106. get_user(tmp, &(termio)->c_cflag); 
  107. (termios)->c_cflag = (0xffff0000 & ((termios)->c_cflag)) | tmp; 
  108. get_user(tmp, &(termio)->c_lflag); 
  109. (termios)->c_lflag = (0xffff0000 & ((termios)->c_lflag)) | tmp; 
  110. get_user((termios)->c_line, &(termio)->c_line); 
  111. copy_from_user((termios)->c_cc, (termio)->c_cc, NCC); 
  112. })
  113. /*
  114.  * Translate a "termios" structure into a "termio". Ugh.
  115.  */
  116. #define kernel_termios_to_user_termio(termio, termios) 
  117. ({ 
  118. put_user((termios)->c_iflag, &(termio)->c_iflag); 
  119. put_user((termios)->c_oflag, &(termio)->c_oflag); 
  120. put_user((termios)->c_cflag, &(termio)->c_cflag); 
  121. put_user((termios)->c_lflag, &(termio)->c_lflag); 
  122. put_user((termios)->c_line, &(termio)->c_line); 
  123. copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); 
  124. })
  125. #define user_termios_to_kernel_termios(k, u) copy_from_user(k, u, sizeof(struct termios))
  126. #define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios))
  127. #endif /* defined(__KERNEL__) */
  128. #endif /* _ASM_TERMIOS_H */