termios.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #ifndef _M32R_TERMIOS_H
  2. #define _M32R_TERMIOS_H
  3. #include <linux/module.h>
  4. #include <uapi/asm/termios.h>
  5. /* intr=^C quit=^\ erase=del kill=^U
  6. eof=^D vtime=\0 vmin=\1 sxtc=\0
  7. start=^Q stop=^S susp=^Z eol=\0
  8. reprint=^R discard=^U werase=^W lnext=^V
  9. eol2=\0
  10. */
  11. #define INIT_C_CC "\003\034\177\025\004\0\1\0\021\023\032\0\022\017\027\026\0"
  12. /*
  13. * Translate a "termio" structure into a "termios". Ugh.
  14. */
  15. #define SET_LOW_TERMIOS_BITS(termios, termio, x) { \
  16. unsigned short __tmp; \
  17. get_user(__tmp,&(termio)->x); \
  18. *(unsigned short *) &(termios)->x = __tmp; \
  19. }
  20. #define user_termio_to_kernel_termios(termios, termio) \
  21. ({ \
  22. SET_LOW_TERMIOS_BITS(termios, termio, c_iflag); \
  23. SET_LOW_TERMIOS_BITS(termios, termio, c_oflag); \
  24. SET_LOW_TERMIOS_BITS(termios, termio, c_cflag); \
  25. SET_LOW_TERMIOS_BITS(termios, termio, c_lflag); \
  26. copy_from_user((termios)->c_cc, (termio)->c_cc, NCC); \
  27. })
  28. /*
  29. * Translate a "termios" structure into a "termio". Ugh.
  30. */
  31. #define kernel_termios_to_user_termio(termio, termios) \
  32. ({ \
  33. put_user((termios)->c_iflag, &(termio)->c_iflag); \
  34. put_user((termios)->c_oflag, &(termio)->c_oflag); \
  35. put_user((termios)->c_cflag, &(termio)->c_cflag); \
  36. put_user((termios)->c_lflag, &(termio)->c_lflag); \
  37. put_user((termios)->c_line, &(termio)->c_line); \
  38. copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); \
  39. })
  40. #define user_termios_to_kernel_termios(k, u) copy_from_user(k, u, sizeof(struct termios2))
  41. #define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios2))
  42. #define user_termios_to_kernel_termios_1(k, u) copy_from_user(k, u, sizeof(struct termios))
  43. #define kernel_termios_to_user_termios_1(u, k) copy_to_user(u, k, sizeof(struct termios))
  44. #endif /* _M32R_TERMIOS_H */