jsm.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. /************************************************************************
  2. * Copyright 2003 Digi International (www.digi.com)
  3. *
  4. * Copyright (C) 2004 IBM Corporation. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2, or (at your option)
  9. * any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the
  13. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  14. * PURPOSE. See the GNU General Public License for more details.
  15. *
  16. * Contact Information:
  17. * Scott H Kilau <Scott_Kilau@digi.com>
  18. * Wendy Xiong <wendyx@us.ibm.com>
  19. *
  20. ***********************************************************************/
  21. #ifndef __JSM_DRIVER_H
  22. #define __JSM_DRIVER_H
  23. #include <linux/kernel.h>
  24. #include <linux/types.h> /* To pick up the varions Linux types */
  25. #include <linux/tty.h>
  26. #include <linux/serial_core.h>
  27. #include <linux/device.h>
  28. /*
  29. * Debugging levels can be set using debug insmod variable
  30. * They can also be compiled out completely.
  31. */
  32. enum {
  33. DBG_INIT = 0x01,
  34. DBG_BASIC = 0x02,
  35. DBG_CORE = 0x04,
  36. DBG_OPEN = 0x08,
  37. DBG_CLOSE = 0x10,
  38. DBG_READ = 0x20,
  39. DBG_WRITE = 0x40,
  40. DBG_IOCTL = 0x80,
  41. DBG_PROC = 0x100,
  42. DBG_PARAM = 0x200,
  43. DBG_PSCAN = 0x400,
  44. DBG_EVENT = 0x800,
  45. DBG_DRAIN = 0x1000,
  46. DBG_MSIGS = 0x2000,
  47. DBG_MGMT = 0x4000,
  48. DBG_INTR = 0x8000,
  49. DBG_CARR = 0x10000,
  50. };
  51. #define jsm_dbg(nlevel, pdev, fmt, ...) \
  52. do { \
  53. if (DBG_##nlevel & jsm_debug) \
  54. dev_dbg(pdev->dev, fmt, ##__VA_ARGS__); \
  55. } while (0)
  56. #define MAXLINES 256
  57. #define MAXPORTS 8
  58. #define MAX_STOPS_SENT 5
  59. /* Board ids */
  60. #define PCI_DEVICE_ID_CLASSIC_4 0x0028
  61. #define PCI_DEVICE_ID_CLASSIC_8 0x0029
  62. #define PCI_DEVICE_ID_CLASSIC_4_422 0x00D0
  63. #define PCI_DEVICE_ID_CLASSIC_8_422 0x00D1
  64. #define PCI_DEVICE_ID_NEO_4 0x00B0
  65. #define PCI_DEVICE_ID_NEO_1_422 0x00CC
  66. #define PCI_DEVICE_ID_NEO_1_422_485 0x00CD
  67. #define PCI_DEVICE_ID_NEO_2_422_485 0x00CE
  68. #define PCIE_DEVICE_ID_NEO_8 0x00F0
  69. #define PCIE_DEVICE_ID_NEO_4 0x00F1
  70. #define PCIE_DEVICE_ID_NEO_4RJ45 0x00F2
  71. #define PCIE_DEVICE_ID_NEO_8RJ45 0x00F3
  72. /* Board type definitions */
  73. #define T_NEO 0000
  74. #define T_CLASSIC 0001
  75. #define T_PCIBUS 0400
  76. /* Board State Definitions */
  77. #define BD_RUNNING 0x0
  78. #define BD_REASON 0x7f
  79. #define BD_NOTFOUND 0x1
  80. #define BD_NOIOPORT 0x2
  81. #define BD_NOMEM 0x3
  82. #define BD_NOBIOS 0x4
  83. #define BD_NOFEP 0x5
  84. #define BD_FAILED 0x6
  85. #define BD_ALLOCATED 0x7
  86. #define BD_TRIBOOT 0x8
  87. #define BD_BADKME 0x80
  88. /* 4 extra for alignment play space */
  89. #define WRITEBUFLEN ((4096) + 4)
  90. #define JSM_VERSION "jsm: 1.2-1-INKERNEL"
  91. #define JSM_PARTNUM "40002438_A-INKERNEL"
  92. struct jsm_board;
  93. struct jsm_channel;
  94. /************************************************************************
  95. * Per board operations structure *
  96. ************************************************************************/
  97. struct board_ops {
  98. irq_handler_t intr;
  99. void (*uart_init)(struct jsm_channel *ch);
  100. void (*uart_off)(struct jsm_channel *ch);
  101. void (*param)(struct jsm_channel *ch);
  102. void (*assert_modem_signals)(struct jsm_channel *ch);
  103. void (*flush_uart_write)(struct jsm_channel *ch);
  104. void (*flush_uart_read)(struct jsm_channel *ch);
  105. void (*disable_receiver)(struct jsm_channel *ch);
  106. void (*enable_receiver)(struct jsm_channel *ch);
  107. void (*send_break)(struct jsm_channel *ch);
  108. void (*clear_break)(struct jsm_channel *ch);
  109. void (*send_start_character)(struct jsm_channel *ch);
  110. void (*send_stop_character)(struct jsm_channel *ch);
  111. void (*copy_data_from_queue_to_uart)(struct jsm_channel *ch);
  112. u32 (*get_uart_bytes_left)(struct jsm_channel *ch);
  113. void (*send_immediate_char)(struct jsm_channel *ch, unsigned char);
  114. };
  115. /*
  116. * Per-board information
  117. */
  118. struct jsm_board
  119. {
  120. int boardnum; /* Board number: 0-32 */
  121. int type; /* Type of board */
  122. u8 rev; /* PCI revision ID */
  123. struct pci_dev *pci_dev;
  124. u32 maxports; /* MAX ports this board can handle */
  125. spinlock_t bd_intr_lock; /* Used to protect the poller tasklet and
  126. * the interrupt routine from each other.
  127. */
  128. u32 nasync; /* Number of ports on card */
  129. u32 irq; /* Interrupt request number */
  130. u64 membase; /* Start of base memory of the card */
  131. u64 membase_end; /* End of base memory of the card */
  132. u8 __iomem *re_map_membase;/* Remapped memory of the card */
  133. u64 iobase; /* Start of io base of the card */
  134. u64 iobase_end; /* End of io base of the card */
  135. u32 bd_uart_offset; /* Space between each UART */
  136. struct jsm_channel *channels[MAXPORTS]; /* array of pointers to our channels. */
  137. u32 bd_dividend; /* Board/UARTs specific dividend */
  138. struct board_ops *bd_ops;
  139. struct list_head jsm_board_entry;
  140. };
  141. /************************************************************************
  142. * Device flag definitions for ch_flags.
  143. ************************************************************************/
  144. #define CH_PRON 0x0001 /* Printer on string */
  145. #define CH_STOP 0x0002 /* Output is stopped */
  146. #define CH_STOPI 0x0004 /* Input is stopped */
  147. #define CH_CD 0x0008 /* Carrier is present */
  148. #define CH_FCAR 0x0010 /* Carrier forced on */
  149. #define CH_HANGUP 0x0020 /* Hangup received */
  150. #define CH_RECEIVER_OFF 0x0040 /* Receiver is off */
  151. #define CH_OPENING 0x0080 /* Port in fragile open state */
  152. #define CH_CLOSING 0x0100 /* Port in fragile close state */
  153. #define CH_FIFO_ENABLED 0x0200 /* Port has FIFOs enabled */
  154. #define CH_TX_FIFO_EMPTY 0x0400 /* TX Fifo is completely empty */
  155. #define CH_TX_FIFO_LWM 0x0800 /* TX Fifo is below Low Water */
  156. #define CH_BREAK_SENDING 0x1000 /* Break is being sent */
  157. #define CH_LOOPBACK 0x2000 /* Channel is in lookback mode */
  158. #define CH_BAUD0 0x08000 /* Used for checking B0 transitions */
  159. /* Our Read/Error queue sizes */
  160. #define RQUEUEMASK 0x1FFF /* 8 K - 1 */
  161. #define EQUEUEMASK 0x1FFF /* 8 K - 1 */
  162. #define RQUEUESIZE (RQUEUEMASK + 1)
  163. #define EQUEUESIZE RQUEUESIZE
  164. /************************************************************************
  165. * Channel information structure.
  166. ************************************************************************/
  167. struct jsm_channel {
  168. struct uart_port uart_port;
  169. struct jsm_board *ch_bd; /* Board structure pointer */
  170. spinlock_t ch_lock; /* provide for serialization */
  171. wait_queue_head_t ch_flags_wait;
  172. u32 ch_portnum; /* Port number, 0 offset. */
  173. u32 ch_open_count; /* open count */
  174. u32 ch_flags; /* Channel flags */
  175. u64 ch_close_delay; /* How long we should drop RTS/DTR for */
  176. tcflag_t ch_c_iflag; /* channel iflags */
  177. tcflag_t ch_c_cflag; /* channel cflags */
  178. tcflag_t ch_c_oflag; /* channel oflags */
  179. tcflag_t ch_c_lflag; /* channel lflags */
  180. u8 ch_stopc; /* Stop character */
  181. u8 ch_startc; /* Start character */
  182. u8 ch_mostat; /* FEP output modem status */
  183. u8 ch_mistat; /* FEP input modem status */
  184. /* Pointers to the "mapped" UART structs */
  185. struct neo_uart_struct __iomem *ch_neo_uart; /* NEO card */
  186. struct cls_uart_struct __iomem *ch_cls_uart; /* Classic card */
  187. u8 ch_cached_lsr; /* Cached value of the LSR register */
  188. u8 *ch_rqueue; /* Our read queue buffer - malloc'ed */
  189. u16 ch_r_head; /* Head location of the read queue */
  190. u16 ch_r_tail; /* Tail location of the read queue */
  191. u8 *ch_equeue; /* Our error queue buffer - malloc'ed */
  192. u16 ch_e_head; /* Head location of the error queue */
  193. u16 ch_e_tail; /* Tail location of the error queue */
  194. u64 ch_rxcount; /* total of data received so far */
  195. u64 ch_txcount; /* total of data transmitted so far */
  196. u8 ch_r_tlevel; /* Receive Trigger level */
  197. u8 ch_t_tlevel; /* Transmit Trigger level */
  198. u8 ch_r_watermark; /* Receive Watermark */
  199. u32 ch_stops_sent; /* How many times I have sent a stop character
  200. * to try to stop the other guy sending.
  201. */
  202. u64 ch_err_parity; /* Count of parity errors on channel */
  203. u64 ch_err_frame; /* Count of framing errors on channel */
  204. u64 ch_err_break; /* Count of breaks on channel */
  205. u64 ch_err_overrun; /* Count of overruns on channel */
  206. u64 ch_xon_sends; /* Count of xons transmitted */
  207. u64 ch_xoff_sends; /* Count of xoffs transmitted */
  208. };
  209. /************************************************************************
  210. * Per channel/port Classic UART structures *
  211. ************************************************************************
  212. * Base Structure Entries Usage Meanings to Host *
  213. * *
  214. * W = read write R = read only *
  215. * U = Unused. *
  216. ************************************************************************/
  217. struct cls_uart_struct {
  218. u8 txrx; /* WR RHR/THR - Holding Reg */
  219. u8 ier; /* WR IER - Interrupt Enable Reg */
  220. u8 isr_fcr; /* WR ISR/FCR - Interrupt Status Reg/Fifo Control Reg*/
  221. u8 lcr; /* WR LCR - Line Control Reg */
  222. u8 mcr; /* WR MCR - Modem Control Reg */
  223. u8 lsr; /* WR LSR - Line Status Reg */
  224. u8 msr; /* WR MSR - Modem Status Reg */
  225. u8 spr; /* WR SPR - Scratch Pad Reg */
  226. };
  227. /* Where to read the interrupt register (8bits) */
  228. #define UART_CLASSIC_POLL_ADDR_OFFSET 0x40
  229. #define UART_EXAR654_ENHANCED_REGISTER_SET 0xBF
  230. #define UART_16654_FCR_TXTRIGGER_8 0x0
  231. #define UART_16654_FCR_TXTRIGGER_16 0x10
  232. #define UART_16654_FCR_TXTRIGGER_32 0x20
  233. #define UART_16654_FCR_TXTRIGGER_56 0x30
  234. #define UART_16654_FCR_RXTRIGGER_8 0x0
  235. #define UART_16654_FCR_RXTRIGGER_16 0x40
  236. #define UART_16654_FCR_RXTRIGGER_56 0x80
  237. #define UART_16654_FCR_RXTRIGGER_60 0xC0
  238. #define UART_IIR_CTSRTS 0x20 /* Received CTS/RTS change of state */
  239. #define UART_IIR_RDI_TIMEOUT 0x0C /* Receiver data TIMEOUT */
  240. /*
  241. * These are the EXTENDED definitions for the Exar 654's Interrupt
  242. * Enable Register.
  243. */
  244. #define UART_EXAR654_EFR_ECB 0x10 /* Enhanced control bit */
  245. #define UART_EXAR654_EFR_IXON 0x2 /* Receiver compares Xon1/Xoff1 */
  246. #define UART_EXAR654_EFR_IXOFF 0x8 /* Transmit Xon1/Xoff1 */
  247. #define UART_EXAR654_EFR_RTSDTR 0x40 /* Auto RTS/DTR Flow Control Enable */
  248. #define UART_EXAR654_EFR_CTSDSR 0x80 /* Auto CTS/DSR Flow COntrol Enable */
  249. #define UART_EXAR654_XOFF_DETECT 0x1 /* Indicates whether chip saw an incoming XOFF char */
  250. #define UART_EXAR654_XON_DETECT 0x2 /* Indicates whether chip saw an incoming XON char */
  251. #define UART_EXAR654_IER_XOFF 0x20 /* Xoff Interrupt Enable */
  252. #define UART_EXAR654_IER_RTSDTR 0x40 /* Output Interrupt Enable */
  253. #define UART_EXAR654_IER_CTSDSR 0x80 /* Input Interrupt Enable */
  254. /************************************************************************
  255. * Per channel/port NEO UART structure *
  256. ************************************************************************
  257. * Base Structure Entries Usage Meanings to Host *
  258. * *
  259. * W = read write R = read only *
  260. * U = Unused. *
  261. ************************************************************************/
  262. struct neo_uart_struct {
  263. u8 txrx; /* WR RHR/THR - Holding Reg */
  264. u8 ier; /* WR IER - Interrupt Enable Reg */
  265. u8 isr_fcr; /* WR ISR/FCR - Interrupt Status Reg/Fifo Control Reg */
  266. u8 lcr; /* WR LCR - Line Control Reg */
  267. u8 mcr; /* WR MCR - Modem Control Reg */
  268. u8 lsr; /* WR LSR - Line Status Reg */
  269. u8 msr; /* WR MSR - Modem Status Reg */
  270. u8 spr; /* WR SPR - Scratch Pad Reg */
  271. u8 fctr; /* WR FCTR - Feature Control Reg */
  272. u8 efr; /* WR EFR - Enhanced Function Reg */
  273. u8 tfifo; /* WR TXCNT/TXTRG - Transmit FIFO Reg */
  274. u8 rfifo; /* WR RXCNT/RXTRG - Receive FIFO Reg */
  275. u8 xoffchar1; /* WR XOFF 1 - XOff Character 1 Reg */
  276. u8 xoffchar2; /* WR XOFF 2 - XOff Character 2 Reg */
  277. u8 xonchar1; /* WR XON 1 - Xon Character 1 Reg */
  278. u8 xonchar2; /* WR XON 2 - XOn Character 2 Reg */
  279. u8 reserved1[0x2ff - 0x200]; /* U Reserved by Exar */
  280. u8 txrxburst[64]; /* RW 64 bytes of RX/TX FIFO Data */
  281. u8 reserved2[0x37f - 0x340]; /* U Reserved by Exar */
  282. u8 rxburst_with_errors[64]; /* R 64 bytes of RX FIFO Data + LSR */
  283. };
  284. /* Where to read the extended interrupt register (32bits instead of 8bits) */
  285. #define UART_17158_POLL_ADDR_OFFSET 0x80
  286. /*
  287. * These are the redefinitions for the FCTR on the XR17C158, since
  288. * Exar made them different than their earlier design. (XR16C854)
  289. */
  290. /* These are only applicable when table D is selected */
  291. #define UART_17158_FCTR_RTS_NODELAY 0x00
  292. #define UART_17158_FCTR_RTS_4DELAY 0x01
  293. #define UART_17158_FCTR_RTS_6DELAY 0x02
  294. #define UART_17158_FCTR_RTS_8DELAY 0x03
  295. #define UART_17158_FCTR_RTS_12DELAY 0x12
  296. #define UART_17158_FCTR_RTS_16DELAY 0x05
  297. #define UART_17158_FCTR_RTS_20DELAY 0x13
  298. #define UART_17158_FCTR_RTS_24DELAY 0x06
  299. #define UART_17158_FCTR_RTS_28DELAY 0x14
  300. #define UART_17158_FCTR_RTS_32DELAY 0x07
  301. #define UART_17158_FCTR_RTS_36DELAY 0x16
  302. #define UART_17158_FCTR_RTS_40DELAY 0x08
  303. #define UART_17158_FCTR_RTS_44DELAY 0x09
  304. #define UART_17158_FCTR_RTS_48DELAY 0x10
  305. #define UART_17158_FCTR_RTS_52DELAY 0x11
  306. #define UART_17158_FCTR_RTS_IRDA 0x10
  307. #define UART_17158_FCTR_RS485 0x20
  308. #define UART_17158_FCTR_TRGA 0x00
  309. #define UART_17158_FCTR_TRGB 0x40
  310. #define UART_17158_FCTR_TRGC 0x80
  311. #define UART_17158_FCTR_TRGD 0xC0
  312. /* 17158 trigger table selects.. */
  313. #define UART_17158_FCTR_BIT6 0x40
  314. #define UART_17158_FCTR_BIT7 0x80
  315. /* 17158 TX/RX memmapped buffer offsets */
  316. #define UART_17158_RX_FIFOSIZE 64
  317. #define UART_17158_TX_FIFOSIZE 64
  318. /* 17158 Extended IIR's */
  319. #define UART_17158_IIR_RDI_TIMEOUT 0x0C /* Receiver data TIMEOUT */
  320. #define UART_17158_IIR_XONXOFF 0x10 /* Received an XON/XOFF char */
  321. #define UART_17158_IIR_HWFLOW_STATE_CHANGE 0x20 /* CTS/DSR or RTS/DTR state change */
  322. #define UART_17158_IIR_FIFO_ENABLED 0xC0 /* 16550 FIFOs are Enabled */
  323. /*
  324. * These are the extended interrupts that get sent
  325. * back to us from the UART's 32bit interrupt register
  326. */
  327. #define UART_17158_RX_LINE_STATUS 0x1 /* RX Ready */
  328. #define UART_17158_RXRDY_TIMEOUT 0x2 /* RX Ready Timeout */
  329. #define UART_17158_TXRDY 0x3 /* TX Ready */
  330. #define UART_17158_MSR 0x4 /* Modem State Change */
  331. #define UART_17158_TX_AND_FIFO_CLR 0x40 /* Transmitter Holding Reg Empty */
  332. #define UART_17158_RX_FIFO_DATA_ERROR 0x80 /* UART detected an RX FIFO Data error */
  333. /*
  334. * These are the EXTENDED definitions for the 17C158's Interrupt
  335. * Enable Register.
  336. */
  337. #define UART_17158_EFR_ECB 0x10 /* Enhanced control bit */
  338. #define UART_17158_EFR_IXON 0x2 /* Receiver compares Xon1/Xoff1 */
  339. #define UART_17158_EFR_IXOFF 0x8 /* Transmit Xon1/Xoff1 */
  340. #define UART_17158_EFR_RTSDTR 0x40 /* Auto RTS/DTR Flow Control Enable */
  341. #define UART_17158_EFR_CTSDSR 0x80 /* Auto CTS/DSR Flow COntrol Enable */
  342. #define UART_17158_XOFF_DETECT 0x1 /* Indicates whether chip saw an incoming XOFF char */
  343. #define UART_17158_XON_DETECT 0x2 /* Indicates whether chip saw an incoming XON char */
  344. #define UART_17158_IER_RSVD1 0x10 /* Reserved by Exar */
  345. #define UART_17158_IER_XOFF 0x20 /* Xoff Interrupt Enable */
  346. #define UART_17158_IER_RTSDTR 0x40 /* Output Interrupt Enable */
  347. #define UART_17158_IER_CTSDSR 0x80 /* Input Interrupt Enable */
  348. #define PCI_DEVICE_NEO_2DB9_PCI_NAME "Neo 2 - DB9 Universal PCI"
  349. #define PCI_DEVICE_NEO_2DB9PRI_PCI_NAME "Neo 2 - DB9 Universal PCI - Powered Ring Indicator"
  350. #define PCI_DEVICE_NEO_2RJ45_PCI_NAME "Neo 2 - RJ45 Universal PCI"
  351. #define PCI_DEVICE_NEO_2RJ45PRI_PCI_NAME "Neo 2 - RJ45 Universal PCI - Powered Ring Indicator"
  352. #define PCIE_DEVICE_NEO_IBM_PCI_NAME "Neo 4 - PCI Express - IBM"
  353. /*
  354. * Our Global Variables.
  355. */
  356. extern struct uart_driver jsm_uart_driver;
  357. extern struct board_ops jsm_neo_ops;
  358. extern struct board_ops jsm_cls_ops;
  359. extern int jsm_debug;
  360. /*************************************************************************
  361. *
  362. * Prototypes for non-static functions used in more than one module
  363. *
  364. *************************************************************************/
  365. int jsm_tty_init(struct jsm_board *);
  366. int jsm_uart_port_init(struct jsm_board *);
  367. int jsm_remove_uart_port(struct jsm_board *);
  368. void jsm_input(struct jsm_channel *ch);
  369. void jsm_check_queue_flow_control(struct jsm_channel *ch);
  370. #endif