serialio.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _SPEAKUP_SERIAL_H
  3. #define _SPEAKUP_SERIAL_H
  4. #include <linux/serial.h> /* for rs_table, serial constants */
  5. #include <linux/serial_reg.h> /* for more serial constants */
  6. #ifndef __sparc__
  7. #include <linux/serial.h>
  8. #endif
  9. #include <linux/serial_core.h>
  10. #include "spk_priv.h"
  11. /*
  12. * this is cut&paste from 8250.h. Get rid of the structure, the definitions
  13. * and this whole broken driver.
  14. */
  15. struct old_serial_port {
  16. unsigned int uart; /* unused */
  17. unsigned int baud_base;
  18. unsigned int port;
  19. unsigned int irq;
  20. upf_t flags; /* unused */
  21. };
  22. /* countdown values for serial timeouts in us */
  23. #define SPK_SERIAL_TIMEOUT SPK_SYNTH_TIMEOUT
  24. /* countdown values transmitter/dsr timeouts in us */
  25. #define SPK_XMITR_TIMEOUT 100000
  26. /* countdown values cts timeouts in us */
  27. #define SPK_CTS_TIMEOUT 100000
  28. /* check ttyS0 ... ttyS3 */
  29. #define SPK_LO_TTY 0
  30. #define SPK_HI_TTY 3
  31. /* # of timeouts permitted before disable */
  32. #define NUM_DISABLE_TIMEOUTS 3
  33. /* buffer timeout in ms */
  34. #define SPK_TIMEOUT 100
  35. #define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
  36. #define spk_serial_tx_busy() \
  37. ((inb(speakup_info.port_tts + UART_LSR) & BOTH_EMPTY) != BOTH_EMPTY)
  38. #endif