dz.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * dz.h: Serial port driver for DECstations equipped
  4. * with the DZ chipset.
  5. *
  6. * Copyright (C) 1998 Olivier A. D. Lebaillif
  7. *
  8. * Email: olivier.lebaillif@ifrsys.com
  9. *
  10. * Copyright (C) 2004, 2006 Maciej W. Rozycki
  11. */
  12. #ifndef DZ_SERIAL_H
  13. #define DZ_SERIAL_H
  14. /*
  15. * Definitions for the Control and Status Register.
  16. */
  17. #define DZ_TRDY 0x8000 /* Transmitter empty */
  18. #define DZ_TIE 0x4000 /* Transmitter Interrupt Enbl */
  19. #define DZ_TLINE 0x0300 /* Transmitter Line Number */
  20. #define DZ_RDONE 0x0080 /* Receiver data ready */
  21. #define DZ_RIE 0x0040 /* Receive Interrupt Enable */
  22. #define DZ_MSE 0x0020 /* Master Scan Enable */
  23. #define DZ_CLR 0x0010 /* Master reset */
  24. #define DZ_MAINT 0x0008 /* Loop Back Mode */
  25. /*
  26. * Definitions for the Receiver Buffer Register.
  27. */
  28. #define DZ_RBUF_MASK 0x00FF /* Data Mask */
  29. #define DZ_LINE_MASK 0x0300 /* Line Mask */
  30. #define DZ_DVAL 0x8000 /* Valid Data indicator */
  31. #define DZ_OERR 0x4000 /* Overrun error indicator */
  32. #define DZ_FERR 0x2000 /* Frame error indicator */
  33. #define DZ_PERR 0x1000 /* Parity error indicator */
  34. #define DZ_BREAK 0x0800 /* BREAK event software flag */
  35. #define LINE(x) ((x & DZ_LINE_MASK) >> 8) /* Get the line number
  36. from the input buffer */
  37. #define UCHAR(x) ((unsigned char)(x & DZ_RBUF_MASK))
  38. /*
  39. * Definitions for the Transmit Control Register.
  40. */
  41. #define DZ_LINE_KEYBOARD 0x0001
  42. #define DZ_LINE_MOUSE 0x0002
  43. #define DZ_LINE_MODEM 0x0004
  44. #define DZ_LINE_PRINTER 0x0008
  45. #define DZ_MODEM_RTS 0x0800 /* RTS for the modem line (2) */
  46. #define DZ_MODEM_DTR 0x0400 /* DTR for the modem line (2) */
  47. #define DZ_PRINT_RTS 0x0200 /* RTS for the prntr line (3) */
  48. #define DZ_PRINT_DTR 0x0100 /* DTR for the prntr line (3) */
  49. #define DZ_LNENB 0x000f /* Transmitter Line Enable */
  50. /*
  51. * Definitions for the Modem Status Register.
  52. */
  53. #define DZ_MODEM_RI 0x0800 /* RI for the modem line (2) */
  54. #define DZ_MODEM_CD 0x0400 /* CD for the modem line (2) */
  55. #define DZ_MODEM_DSR 0x0200 /* DSR for the modem line (2) */
  56. #define DZ_MODEM_CTS 0x0100 /* CTS for the modem line (2) */
  57. #define DZ_PRINT_RI 0x0008 /* RI for the printer line (3) */
  58. #define DZ_PRINT_CD 0x0004 /* CD for the printer line (3) */
  59. #define DZ_PRINT_DSR 0x0002 /* DSR for the prntr line (3) */
  60. #define DZ_PRINT_CTS 0x0001 /* CTS for the prntr line (3) */
  61. /*
  62. * Definitions for the Transmit Data Register.
  63. */
  64. #define DZ_BRK0 0x0100 /* Break assertion for line 0 */
  65. #define DZ_BRK1 0x0200 /* Break assertion for line 1 */
  66. #define DZ_BRK2 0x0400 /* Break assertion for line 2 */
  67. #define DZ_BRK3 0x0800 /* Break assertion for line 3 */
  68. /*
  69. * Definitions for the Line Parameter Register.
  70. */
  71. #define DZ_KEYBOARD 0x0000 /* line 0 = keyboard */
  72. #define DZ_MOUSE 0x0001 /* line 1 = mouse */
  73. #define DZ_MODEM 0x0002 /* line 2 = modem */
  74. #define DZ_PRINTER 0x0003 /* line 3 = printer */
  75. #define DZ_CSIZE 0x0018 /* Number of bits per byte (mask) */
  76. #define DZ_CS5 0x0000 /* 5 bits per byte */
  77. #define DZ_CS6 0x0008 /* 6 bits per byte */
  78. #define DZ_CS7 0x0010 /* 7 bits per byte */
  79. #define DZ_CS8 0x0018 /* 8 bits per byte */
  80. #define DZ_CSTOPB 0x0020 /* 2 stop bits instead of one */
  81. #define DZ_PARENB 0x0040 /* Parity enable */
  82. #define DZ_PARODD 0x0080 /* Odd parity instead of even */
  83. #define DZ_CBAUD 0x0E00 /* Baud Rate (mask) */
  84. #define DZ_B50 0x0000
  85. #define DZ_B75 0x0100
  86. #define DZ_B110 0x0200
  87. #define DZ_B134 0x0300
  88. #define DZ_B150 0x0400
  89. #define DZ_B300 0x0500
  90. #define DZ_B600 0x0600
  91. #define DZ_B1200 0x0700
  92. #define DZ_B1800 0x0800
  93. #define DZ_B2000 0x0900
  94. #define DZ_B2400 0x0A00
  95. #define DZ_B3600 0x0B00
  96. #define DZ_B4800 0x0C00
  97. #define DZ_B7200 0x0D00
  98. #define DZ_B9600 0x0E00
  99. #define DZ_RXENAB 0x1000 /* Receiver Enable */
  100. /*
  101. * Addresses for the DZ registers
  102. */
  103. #define DZ_CSR 0x00 /* Control and Status Register */
  104. #define DZ_RBUF 0x08 /* Receive Buffer */
  105. #define DZ_LPR 0x08 /* Line Parameters Register */
  106. #define DZ_TCR 0x10 /* Transmitter Control Register */
  107. #define DZ_MSR 0x18 /* Modem Status Register */
  108. #define DZ_TDR 0x18 /* Transmit Data Register */
  109. #define DZ_NB_PORT 4
  110. #define DZ_XMIT_SIZE 4096 /* buffer size */
  111. #define DZ_WAKEUP_CHARS DZ_XMIT_SIZE/4
  112. #endif /* DZ_SERIAL_H */