tty_flags.h 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #ifndef _LINUX_TTY_FLAGS_H
  2. #define _LINUX_TTY_FLAGS_H
  3. /*
  4. * Definitions for async_struct (and serial_struct) flags field also
  5. * shared by the tty_port flags structures.
  6. *
  7. * Define ASYNCB_* for convenient use with {test,set,clear}_bit.
  8. *
  9. * Bits [0..ASYNCB_LAST_USER] are userspace defined/visible/changeable
  10. * [x] in the bit comments indicates the flag is defunct and no longer used.
  11. */
  12. #define ASYNCB_HUP_NOTIFY 0 /* Notify getty on hangups and closes
  13. * on the callout port */
  14. #define ASYNCB_FOURPORT 1 /* Set OU1, OUT2 per AST Fourport settings */
  15. #define ASYNCB_SAK 2 /* Secure Attention Key (Orange book) */
  16. #define ASYNCB_SPLIT_TERMIOS 3 /* [x] Separate termios for dialin/callout */
  17. #define ASYNCB_SPD_HI 4 /* Use 57600 instead of 38400 bps */
  18. #define ASYNCB_SPD_VHI 5 /* Use 115200 instead of 38400 bps */
  19. #define ASYNCB_SKIP_TEST 6 /* Skip UART test during autoconfiguration */
  20. #define ASYNCB_AUTO_IRQ 7 /* Do automatic IRQ during
  21. * autoconfiguration */
  22. #define ASYNCB_SESSION_LOCKOUT 8 /* [x] Lock out cua opens based on session */
  23. #define ASYNCB_PGRP_LOCKOUT 9 /* [x] Lock out cua opens based on pgrp */
  24. #define ASYNCB_CALLOUT_NOHUP 10 /* [x] Don't do hangups for cua device */
  25. #define ASYNCB_HARDPPS_CD 11 /* Call hardpps when CD goes high */
  26. #define ASYNCB_SPD_SHI 12 /* Use 230400 instead of 38400 bps */
  27. #define ASYNCB_LOW_LATENCY 13 /* Request low latency behaviour */
  28. #define ASYNCB_BUGGY_UART 14 /* This is a buggy UART, skip some safety
  29. * checks. Note: can be dangerous! */
  30. #define ASYNCB_AUTOPROBE 15 /* [x] Port was autoprobed by PCI/PNP code */
  31. #define ASYNCB_MAGIC_MULTIPLIER 16 /* Use special CLK or divisor */
  32. #define ASYNCB_LAST_USER 16
  33. /* Internal flags used only by kernel */
  34. #define ASYNCB_INITIALIZED 31 /* Serial port was initialized */
  35. #define ASYNCB_SUSPENDED 30 /* Serial port is suspended */
  36. #define ASYNCB_NORMAL_ACTIVE 29 /* Normal device is active */
  37. #define ASYNCB_BOOT_AUTOCONF 28 /* Autoconfigure port on bootup */
  38. #define ASYNCB_CLOSING 27 /* Serial port is closing */
  39. #define ASYNCB_CTS_FLOW 26 /* Do CTS flow control */
  40. #define ASYNCB_CHECK_CD 25 /* i.e., CLOCAL */
  41. #define ASYNCB_SHARE_IRQ 24 /* for multifunction cards, no longer used */
  42. #define ASYNCB_CONS_FLOW 23 /* flow control for console */
  43. #define ASYNCB_FIRST_KERNEL 22
  44. #define ASYNC_HUP_NOTIFY (1U << ASYNCB_HUP_NOTIFY)
  45. #define ASYNC_SUSPENDED (1U << ASYNCB_SUSPENDED)
  46. #define ASYNC_FOURPORT (1U << ASYNCB_FOURPORT)
  47. #define ASYNC_SAK (1U << ASYNCB_SAK)
  48. #define ASYNC_SPLIT_TERMIOS (1U << ASYNCB_SPLIT_TERMIOS)
  49. #define ASYNC_SPD_HI (1U << ASYNCB_SPD_HI)
  50. #define ASYNC_SPD_VHI (1U << ASYNCB_SPD_VHI)
  51. #define ASYNC_SKIP_TEST (1U << ASYNCB_SKIP_TEST)
  52. #define ASYNC_AUTO_IRQ (1U << ASYNCB_AUTO_IRQ)
  53. #define ASYNC_SESSION_LOCKOUT (1U << ASYNCB_SESSION_LOCKOUT)
  54. #define ASYNC_PGRP_LOCKOUT (1U << ASYNCB_PGRP_LOCKOUT)
  55. #define ASYNC_CALLOUT_NOHUP (1U << ASYNCB_CALLOUT_NOHUP)
  56. #define ASYNC_HARDPPS_CD (1U << ASYNCB_HARDPPS_CD)
  57. #define ASYNC_SPD_SHI (1U << ASYNCB_SPD_SHI)
  58. #define ASYNC_LOW_LATENCY (1U << ASYNCB_LOW_LATENCY)
  59. #define ASYNC_BUGGY_UART (1U << ASYNCB_BUGGY_UART)
  60. #define ASYNC_AUTOPROBE (1U << ASYNCB_AUTOPROBE)
  61. #define ASYNC_MAGIC_MULTIPLIER (1U << ASYNCB_MAGIC_MULTIPLIER)
  62. #define ASYNC_FLAGS ((1U << (ASYNCB_LAST_USER + 1)) - 1)
  63. #define ASYNC_DEPRECATED (ASYNC_SESSION_LOCKOUT | ASYNC_PGRP_LOCKOUT | \
  64. ASYNC_CALLOUT_NOHUP | ASYNC_AUTOPROBE)
  65. #define ASYNC_USR_MASK (ASYNC_SPD_MASK|ASYNC_CALLOUT_NOHUP| \
  66. ASYNC_LOW_LATENCY)
  67. #define ASYNC_SPD_CUST (ASYNC_SPD_HI|ASYNC_SPD_VHI)
  68. #define ASYNC_SPD_WARP (ASYNC_SPD_HI|ASYNC_SPD_SHI)
  69. #define ASYNC_SPD_MASK (ASYNC_SPD_HI|ASYNC_SPD_VHI|ASYNC_SPD_SHI)
  70. #define ASYNC_INITIALIZED (1U << ASYNCB_INITIALIZED)
  71. #define ASYNC_NORMAL_ACTIVE (1U << ASYNCB_NORMAL_ACTIVE)
  72. #define ASYNC_BOOT_AUTOCONF (1U << ASYNCB_BOOT_AUTOCONF)
  73. #define ASYNC_CLOSING (1U << ASYNCB_CLOSING)
  74. #define ASYNC_CTS_FLOW (1U << ASYNCB_CTS_FLOW)
  75. #define ASYNC_CHECK_CD (1U << ASYNCB_CHECK_CD)
  76. #define ASYNC_SHARE_IRQ (1U << ASYNCB_SHARE_IRQ)
  77. #define ASYNC_CONS_FLOW (1U << ASYNCB_CONS_FLOW)
  78. #define ASYNC_INTERNAL_FLAGS (~((1U << ASYNCB_FIRST_KERNEL) - 1))
  79. #endif