dgnc_neo.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * Copyright 2003 Digi International (www.digi.com)
  3. * Scott H Kilau <Scott_Kilau at digi dot com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2, or (at your option)
  8. * any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the
  12. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  13. * PURPOSE. See the GNU General Public License for more details.
  14. */
  15. #ifndef __DGNC_NEO_H
  16. #define __DGNC_NEO_H
  17. #include "dgnc_driver.h"
  18. /************************************************************************
  19. * Per channel/port NEO UART structure *
  20. ************************************************************************
  21. * Base Structure Entries Usage Meanings to Host *
  22. * *
  23. * W = read write R = read only *
  24. * U = Unused. *
  25. ************************************************************************/
  26. struct neo_uart_struct {
  27. u8 txrx; /* WR RHR/THR - Holding Reg */
  28. u8 ier; /* WR IER - Interrupt Enable Reg */
  29. u8 isr_fcr; /* WR ISR/FCR - Interrupt Status Reg/Fifo Control Reg */
  30. u8 lcr; /* WR LCR - Line Control Reg */
  31. u8 mcr; /* WR MCR - Modem Control Reg */
  32. u8 lsr; /* WR LSR - Line Status Reg */
  33. u8 msr; /* WR MSR - Modem Status Reg */
  34. u8 spr; /* WR SPR - Scratch Pad Reg */
  35. u8 fctr; /* WR FCTR - Feature Control Reg */
  36. u8 efr; /* WR EFR - Enhanced Function Reg */
  37. u8 tfifo; /* WR TXCNT/TXTRG - Transmit FIFO Reg */
  38. u8 rfifo; /* WR RXCNT/RXTRG - Receive FIFO Reg */
  39. u8 xoffchar1; /* WR XOFF 1 - XOff Character 1 Reg */
  40. u8 xoffchar2; /* WR XOFF 2 - XOff Character 2 Reg */
  41. u8 xonchar1; /* WR XON 1 - Xon Character 1 Reg */
  42. u8 xonchar2; /* WR XON 2 - XOn Character 2 Reg */
  43. u8 reserved1[0x2ff - 0x200]; /* U Reserved by Exar */
  44. u8 txrxburst[64]; /* RW 64 bytes of RX/TX FIFO Data */
  45. u8 reserved2[0x37f - 0x340]; /* U Reserved by Exar */
  46. u8 rxburst_with_errors[64]; /* R 64 bytes of RX FIFO Data + LSR */
  47. };
  48. /* Where to read the extended interrupt register (32bits instead of 8bits) */
  49. #define UART_17158_POLL_ADDR_OFFSET 0x80
  50. /* These are the current dvid's of the Neo boards */
  51. #define UART_XR17C158_DVID 0x20
  52. #define UART_XR17D158_DVID 0x20
  53. #define UART_XR17E158_DVID 0x40
  54. #define NEO_EECK 0x10 /* Clock */
  55. #define NEO_EECS 0x20 /* Chip Select */
  56. #define NEO_EEDI 0x40 /* Data In is an Output Pin */
  57. #define NEO_EEDO 0x80 /* Data Out is an Input Pin */
  58. #define NEO_EEREG 0x8E /* offset to EEPROM control reg */
  59. #define NEO_VPD_IMAGESIZE 0x40 /* size of image to read from EEPROM in words */
  60. #define NEO_VPD_IMAGEBYTES (NEO_VPD_IMAGESIZE * 2)
  61. /*
  62. * These are the redefinitions for the FCTR on the XR17C158, since
  63. * Exar made them different than their earlier design. (XR16C854)
  64. */
  65. /* These are only applicable when table D is selected */
  66. #define UART_17158_FCTR_RTS_NODELAY 0x00
  67. #define UART_17158_FCTR_RTS_4DELAY 0x01
  68. #define UART_17158_FCTR_RTS_6DELAY 0x02
  69. #define UART_17158_FCTR_RTS_8DELAY 0x03
  70. #define UART_17158_FCTR_RTS_12DELAY 0x12
  71. #define UART_17158_FCTR_RTS_16DELAY 0x05
  72. #define UART_17158_FCTR_RTS_20DELAY 0x13
  73. #define UART_17158_FCTR_RTS_24DELAY 0x06
  74. #define UART_17158_FCTR_RTS_28DELAY 0x14
  75. #define UART_17158_FCTR_RTS_32DELAY 0x07
  76. #define UART_17158_FCTR_RTS_36DELAY 0x16
  77. #define UART_17158_FCTR_RTS_40DELAY 0x08
  78. #define UART_17158_FCTR_RTS_44DELAY 0x09
  79. #define UART_17158_FCTR_RTS_48DELAY 0x10
  80. #define UART_17158_FCTR_RTS_52DELAY 0x11
  81. #define UART_17158_FCTR_RTS_IRDA 0x10
  82. #define UART_17158_FCTR_RS485 0x20
  83. #define UART_17158_FCTR_TRGA 0x00
  84. #define UART_17158_FCTR_TRGB 0x40
  85. #define UART_17158_FCTR_TRGC 0x80
  86. #define UART_17158_FCTR_TRGD 0xC0
  87. /* 17158 trigger table selects.. */
  88. #define UART_17158_FCTR_BIT6 0x40
  89. #define UART_17158_FCTR_BIT7 0x80
  90. /* 17158 TX/RX memmapped buffer offsets */
  91. #define UART_17158_RX_FIFOSIZE 64
  92. #define UART_17158_TX_FIFOSIZE 64
  93. /* 17158 Extended IIR's */
  94. #define UART_17158_IIR_RDI_TIMEOUT 0x0C /* Receiver data TIMEOUT */
  95. #define UART_17158_IIR_XONXOFF 0x10 /* Received an XON/XOFF char */
  96. #define UART_17158_IIR_HWFLOW_STATE_CHANGE 0x20 /* CTS/DSR or RTS/DTR state change */
  97. #define UART_17158_IIR_FIFO_ENABLED 0xC0 /* 16550 FIFOs are Enabled */
  98. /*
  99. * These are the extended interrupts that get sent
  100. * back to us from the UART's 32bit interrupt register
  101. */
  102. #define UART_17158_RX_LINE_STATUS 0x1 /* RX Ready */
  103. #define UART_17158_RXRDY_TIMEOUT 0x2 /* RX Ready Timeout */
  104. #define UART_17158_TXRDY 0x3 /* TX Ready */
  105. #define UART_17158_MSR 0x4 /* Modem State Change */
  106. #define UART_17158_TX_AND_FIFO_CLR 0x40 /* Transmitter Holding Reg Empty */
  107. #define UART_17158_RX_FIFO_DATA_ERROR 0x80 /* UART detected an RX FIFO Data error */
  108. /*
  109. * These are the EXTENDED definitions for the 17C158's Interrupt
  110. * Enable Register.
  111. */
  112. #define UART_17158_EFR_ECB 0x10 /* Enhanced control bit */
  113. #define UART_17158_EFR_IXON 0x2 /* Receiver compares Xon1/Xoff1 */
  114. #define UART_17158_EFR_IXOFF 0x8 /* Transmit Xon1/Xoff1 */
  115. #define UART_17158_EFR_RTSDTR 0x40 /* Auto RTS/DTR Flow Control Enable */
  116. #define UART_17158_EFR_CTSDSR 0x80 /* Auto CTS/DSR Flow COntrol Enable */
  117. #define UART_17158_XOFF_DETECT 0x1 /* Indicates whether chip saw an incoming XOFF char */
  118. #define UART_17158_XON_DETECT 0x2 /* Indicates whether chip saw an incoming XON char */
  119. #define UART_17158_IER_RSVD1 0x10 /* Reserved by Exar */
  120. #define UART_17158_IER_XOFF 0x20 /* Xoff Interrupt Enable */
  121. #define UART_17158_IER_RTSDTR 0x40 /* Output Interrupt Enable */
  122. #define UART_17158_IER_CTSDSR 0x80 /* Input Interrupt Enable */
  123. /*
  124. * Our Global Variables
  125. */
  126. extern struct board_ops dgnc_neo_ops;
  127. #endif