1 /************************************************************************
2 * Copyright 2003 Digi International (www.digi.com)
4 * Copyright (C) 2004 IBM Corporation. All rights reserved.
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)
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.
16 * Contact Information:
17 * Scott H Kilau <Scott_Kilau@digi.com>
18 * Wendy Xiong <wendyx@us.ibm.com>
20 ***********************************************************************/
21 #include <linux/delay.h> /* For udelay */
22 #include <linux/serial_reg.h> /* For the various UART offsets */
23 #include <linux/tty.h>
24 #include <linux/pci.h>
27 #include "jsm.h" /* Driver main header file */
29 static u32 jsm_offset_table[8] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 };
32 * This function allows calls to ensure that all outstanding
33 * PCI writes have been completed, by doing a PCI read against
34 * a non-destructive, read-only location on the Neo card.
36 * In this case, we are reading the DVID (Read-only Device Identification)
37 * value of the Neo card.
39 static inline void neo_pci_posting_flush(struct jsm_board *bd)
41 readb(bd->re_map_membase + 0x8D);
44 static void neo_set_cts_flow_control(struct jsm_channel *ch)
47 ier = readb(&ch->ch_neo_uart->ier);
48 efr = readb(&ch->ch_neo_uart->efr);
50 jsm_dbg(PARAM, &ch->ch_bd->pci_dev, "Setting CTSFLOW\n");
52 /* Turn on auto CTS flow control */
53 ier |= (UART_17158_IER_CTSDSR);
54 efr |= (UART_17158_EFR_ECB | UART_17158_EFR_CTSDSR);
56 /* Turn off auto Xon flow control */
57 efr &= ~(UART_17158_EFR_IXON);
59 /* Why? Becuz Exar's spec says we have to zero it out before setting it */
60 writeb(0, &ch->ch_neo_uart->efr);
62 /* Turn on UART enhanced bits */
63 writeb(efr, &ch->ch_neo_uart->efr);
65 /* Turn on table D, with 8 char hi/low watermarks */
66 writeb((UART_17158_FCTR_TRGD | UART_17158_FCTR_RTS_4DELAY), &ch->ch_neo_uart->fctr);
68 /* Feed the UART our trigger levels */
69 writeb(8, &ch->ch_neo_uart->tfifo);
72 writeb(ier, &ch->ch_neo_uart->ier);
75 static void neo_set_rts_flow_control(struct jsm_channel *ch)
78 ier = readb(&ch->ch_neo_uart->ier);
79 efr = readb(&ch->ch_neo_uart->efr);
81 jsm_dbg(PARAM, &ch->ch_bd->pci_dev, "Setting RTSFLOW\n");
83 /* Turn on auto RTS flow control */
84 ier |= (UART_17158_IER_RTSDTR);
85 efr |= (UART_17158_EFR_ECB | UART_17158_EFR_RTSDTR);
87 /* Turn off auto Xoff flow control */
88 ier &= ~(UART_17158_IER_XOFF);
89 efr &= ~(UART_17158_EFR_IXOFF);
91 /* Why? Becuz Exar's spec says we have to zero it out before setting it */
92 writeb(0, &ch->ch_neo_uart->efr);
94 /* Turn on UART enhanced bits */
95 writeb(efr, &ch->ch_neo_uart->efr);
97 writeb((UART_17158_FCTR_TRGD | UART_17158_FCTR_RTS_4DELAY), &ch->ch_neo_uart->fctr);
98 ch->ch_r_watermark = 4;
100 writeb(56, &ch->ch_neo_uart->rfifo);
101 ch->ch_r_tlevel = 56;
103 writeb(ier, &ch->ch_neo_uart->ier);
106 * From the Neo UART spec sheet:
107 * The auto RTS/DTR function must be started by asserting
108 * RTS/DTR# output pin (MCR bit-0 or 1 to logic 1 after
111 ch->ch_mostat |= (UART_MCR_RTS);
115 static void neo_set_ixon_flow_control(struct jsm_channel *ch)
118 ier = readb(&ch->ch_neo_uart->ier);
119 efr = readb(&ch->ch_neo_uart->efr);
121 jsm_dbg(PARAM, &ch->ch_bd->pci_dev, "Setting IXON FLOW\n");
123 /* Turn off auto CTS flow control */
124 ier &= ~(UART_17158_IER_CTSDSR);
125 efr &= ~(UART_17158_EFR_CTSDSR);
127 /* Turn on auto Xon flow control */
128 efr |= (UART_17158_EFR_ECB | UART_17158_EFR_IXON);
130 /* Why? Becuz Exar's spec says we have to zero it out before setting it */
131 writeb(0, &ch->ch_neo_uart->efr);
133 /* Turn on UART enhanced bits */
134 writeb(efr, &ch->ch_neo_uart->efr);
136 writeb((UART_17158_FCTR_TRGD | UART_17158_FCTR_RTS_8DELAY), &ch->ch_neo_uart->fctr);
137 ch->ch_r_watermark = 4;
139 writeb(32, &ch->ch_neo_uart->rfifo);
140 ch->ch_r_tlevel = 32;
142 /* Tell UART what start/stop chars it should be looking for */
143 writeb(ch->ch_startc, &ch->ch_neo_uart->xonchar1);
144 writeb(0, &ch->ch_neo_uart->xonchar2);
146 writeb(ch->ch_stopc, &ch->ch_neo_uart->xoffchar1);
147 writeb(0, &ch->ch_neo_uart->xoffchar2);
149 writeb(ier, &ch->ch_neo_uart->ier);
152 static void neo_set_ixoff_flow_control(struct jsm_channel *ch)
155 ier = readb(&ch->ch_neo_uart->ier);
156 efr = readb(&ch->ch_neo_uart->efr);
158 jsm_dbg(PARAM, &ch->ch_bd->pci_dev, "Setting IXOFF FLOW\n");
160 /* Turn off auto RTS flow control */
161 ier &= ~(UART_17158_IER_RTSDTR);
162 efr &= ~(UART_17158_EFR_RTSDTR);
164 /* Turn on auto Xoff flow control */
165 ier |= (UART_17158_IER_XOFF);
166 efr |= (UART_17158_EFR_ECB | UART_17158_EFR_IXOFF);
168 /* Why? Becuz Exar's spec says we have to zero it out before setting it */
169 writeb(0, &ch->ch_neo_uart->efr);
171 /* Turn on UART enhanced bits */
172 writeb(efr, &ch->ch_neo_uart->efr);
174 /* Turn on table D, with 8 char hi/low watermarks */
175 writeb((UART_17158_FCTR_TRGD | UART_17158_FCTR_RTS_8DELAY), &ch->ch_neo_uart->fctr);
177 writeb(8, &ch->ch_neo_uart->tfifo);
180 /* Tell UART what start/stop chars it should be looking for */
181 writeb(ch->ch_startc, &ch->ch_neo_uart->xonchar1);
182 writeb(0, &ch->ch_neo_uart->xonchar2);
184 writeb(ch->ch_stopc, &ch->ch_neo_uart->xoffchar1);
185 writeb(0, &ch->ch_neo_uart->xoffchar2);
187 writeb(ier, &ch->ch_neo_uart->ier);
190 static void neo_set_no_input_flow_control(struct jsm_channel *ch)
193 ier = readb(&ch->ch_neo_uart->ier);
194 efr = readb(&ch->ch_neo_uart->efr);
196 jsm_dbg(PARAM, &ch->ch_bd->pci_dev, "Unsetting Input FLOW\n");
198 /* Turn off auto RTS flow control */
199 ier &= ~(UART_17158_IER_RTSDTR);
200 efr &= ~(UART_17158_EFR_RTSDTR);
202 /* Turn off auto Xoff flow control */
203 ier &= ~(UART_17158_IER_XOFF);
204 if (ch->ch_c_iflag & IXON)
205 efr &= ~(UART_17158_EFR_IXOFF);
207 efr &= ~(UART_17158_EFR_ECB | UART_17158_EFR_IXOFF);
209 /* Why? Becuz Exar's spec says we have to zero it out before setting it */
210 writeb(0, &ch->ch_neo_uart->efr);
212 /* Turn on UART enhanced bits */
213 writeb(efr, &ch->ch_neo_uart->efr);
215 /* Turn on table D, with 8 char hi/low watermarks */
216 writeb((UART_17158_FCTR_TRGD | UART_17158_FCTR_RTS_8DELAY), &ch->ch_neo_uart->fctr);
218 ch->ch_r_watermark = 0;
220 writeb(16, &ch->ch_neo_uart->tfifo);
221 ch->ch_t_tlevel = 16;
223 writeb(16, &ch->ch_neo_uart->rfifo);
224 ch->ch_r_tlevel = 16;
226 writeb(ier, &ch->ch_neo_uart->ier);
229 static void neo_set_no_output_flow_control(struct jsm_channel *ch)
232 ier = readb(&ch->ch_neo_uart->ier);
233 efr = readb(&ch->ch_neo_uart->efr);
235 jsm_dbg(PARAM, &ch->ch_bd->pci_dev, "Unsetting Output FLOW\n");
237 /* Turn off auto CTS flow control */
238 ier &= ~(UART_17158_IER_CTSDSR);
239 efr &= ~(UART_17158_EFR_CTSDSR);
241 /* Turn off auto Xon flow control */
242 if (ch->ch_c_iflag & IXOFF)
243 efr &= ~(UART_17158_EFR_IXON);
245 efr &= ~(UART_17158_EFR_ECB | UART_17158_EFR_IXON);
247 /* Why? Becuz Exar's spec says we have to zero it out before setting it */
248 writeb(0, &ch->ch_neo_uart->efr);
250 /* Turn on UART enhanced bits */
251 writeb(efr, &ch->ch_neo_uart->efr);
253 /* Turn on table D, with 8 char hi/low watermarks */
254 writeb((UART_17158_FCTR_TRGD | UART_17158_FCTR_RTS_8DELAY), &ch->ch_neo_uart->fctr);
256 ch->ch_r_watermark = 0;
258 writeb(16, &ch->ch_neo_uart->tfifo);
259 ch->ch_t_tlevel = 16;
261 writeb(16, &ch->ch_neo_uart->rfifo);
262 ch->ch_r_tlevel = 16;
264 writeb(ier, &ch->ch_neo_uart->ier);
267 static inline void neo_set_new_start_stop_chars(struct jsm_channel *ch)
270 /* if hardware flow control is set, then skip this whole thing */
271 if (ch->ch_c_cflag & CRTSCTS)
274 jsm_dbg(PARAM, &ch->ch_bd->pci_dev, "start\n");
276 /* Tell UART what start/stop chars it should be looking for */
277 writeb(ch->ch_startc, &ch->ch_neo_uart->xonchar1);
278 writeb(0, &ch->ch_neo_uart->xonchar2);
280 writeb(ch->ch_stopc, &ch->ch_neo_uart->xoffchar1);
281 writeb(0, &ch->ch_neo_uart->xoffchar2);
284 static void neo_copy_data_from_uart_to_queue(struct jsm_channel *ch)
297 /* cache head and tail of queue */
298 head = ch->ch_r_head & RQUEUEMASK;
299 tail = ch->ch_r_tail & RQUEUEMASK;
301 /* Get our cached LSR */
302 linestatus = ch->ch_cached_lsr;
303 ch->ch_cached_lsr = 0;
305 /* Store how much space we have left in the queue */
306 if ((qleft = tail - head - 1) < 0)
307 qleft += RQUEUEMASK + 1;
310 * If the UART is not in FIFO mode, force the FIFO copy to
311 * NOT be run, by setting total to 0.
313 * On the other hand, if the UART IS in FIFO mode, then ask
314 * the UART to give us an approximation of data it has RX'ed.
316 if (!(ch->ch_flags & CH_FIFO_ENABLED))
319 total = readb(&ch->ch_neo_uart->rfifo);
322 * EXAR chip bug - RX FIFO COUNT - Fudge factor.
324 * This resolves a problem/bug with the Exar chip that sometimes
325 * returns a bogus value in the rfifo register.
326 * The count can be any where from 0-3 bytes "off".
333 * Finally, bound the copy to make sure we don't overflow
335 * The byte by byte copy loop below this loop this will
336 * deal with the queue overflow possibility.
338 total = min(total, qleft);
342 * Grab the linestatus register, we need to check
343 * to see if there are any errors in the FIFO.
345 linestatus = readb(&ch->ch_neo_uart->lsr);
348 * Break out if there is a FIFO error somewhere.
349 * This will allow us to go byte by byte down below,
350 * finding the exact location of the error.
352 if (linestatus & UART_17158_RX_FIFO_DATA_ERROR)
355 /* Make sure we don't go over the end of our queue */
356 n = min(((u32) total), (RQUEUESIZE - (u32) head));
359 * Cut down n even further if needed, this is to fix
360 * a problem with memcpy_fromio() with the Neo on the
361 * IBM pSeries platform.
362 * 15 bytes max appears to be the magic number.
364 n = min((u32) n, (u32) 12);
367 * Since we are grabbing the linestatus register, which
368 * will reset some bits after our read, we need to ensure
369 * we don't miss our TX FIFO emptys.
371 if (linestatus & (UART_LSR_THRE | UART_17158_TX_AND_FIFO_CLR))
372 ch->ch_flags |= (CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM);
376 /* Copy data from uart to the queue */
377 memcpy_fromio(ch->ch_rqueue + head, &ch->ch_neo_uart->txrxburst, n);
379 * Since RX_FIFO_DATA_ERROR was 0, we are guaranteed
380 * that all the data currently in the FIFO is free of
381 * breaks and parity/frame/orun errors.
383 memset(ch->ch_equeue + head, 0, n);
385 /* Add to and flip head if needed */
386 head = (head + n) & RQUEUEMASK;
393 * Create a mask to determine whether we should
394 * insert the character (if any) into our queue.
396 if (ch->ch_c_iflag & IGNBRK)
397 error_mask |= UART_LSR_BI;
400 * Now cleanup any leftover bytes still in the UART.
401 * Also deal with any possible queue overflow here as well.
406 * Its possible we have a linestatus from the loop above
407 * this, so we "OR" on any extra bits.
409 linestatus |= readb(&ch->ch_neo_uart->lsr);
412 * If the chip tells us there is no more data pending to
413 * be read, we can then leave.
414 * But before we do, cache the linestatus, just in case.
416 if (!(linestatus & UART_LSR_DR)) {
417 ch->ch_cached_lsr = linestatus;
421 /* No need to store this bit */
422 linestatus &= ~UART_LSR_DR;
425 * Since we are grabbing the linestatus register, which
426 * will reset some bits after our read, we need to ensure
427 * we don't miss our TX FIFO emptys.
429 if (linestatus & (UART_LSR_THRE | UART_17158_TX_AND_FIFO_CLR)) {
430 linestatus &= ~(UART_LSR_THRE | UART_17158_TX_AND_FIFO_CLR);
431 ch->ch_flags |= (CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM);
435 * Discard character if we are ignoring the error mask.
437 if (linestatus & error_mask) {
440 memcpy_fromio(&discard, &ch->ch_neo_uart->txrxburst, 1);
445 * If our queue is full, we have no choice but to drop some data.
446 * The assumption is that HWFLOW or SWFLOW should have stopped
447 * things way way before we got to this point.
449 * I decided that I wanted to ditch the oldest data first,
450 * I hope thats okay with everyone? Yes? Good.
453 jsm_dbg(READ, &ch->ch_bd->pci_dev,
454 "Queue full, dropping DATA:%x LSR:%x\n",
455 ch->ch_rqueue[tail], ch->ch_equeue[tail]);
457 ch->ch_r_tail = tail = (tail + 1) & RQUEUEMASK;
458 ch->ch_err_overrun++;
462 memcpy_fromio(ch->ch_rqueue + head, &ch->ch_neo_uart->txrxburst, 1);
463 ch->ch_equeue[head] = (u8) linestatus;
465 jsm_dbg(READ, &ch->ch_bd->pci_dev, "DATA/LSR pair: %x %x\n",
466 ch->ch_rqueue[head], ch->ch_equeue[head]);
468 /* Ditch any remaining linestatus value. */
471 /* Add to and flip head if needed */
472 head = (head + 1) & RQUEUEMASK;
479 * Write new final heads to channel structure.
481 ch->ch_r_head = head & RQUEUEMASK;
482 ch->ch_e_head = head & EQUEUEMASK;
486 static void neo_copy_data_from_queue_to_uart(struct jsm_channel *ch)
494 struct circ_buf *circ;
499 circ = &ch->uart_port.state->xmit;
501 /* No data to write to the UART */
502 if (uart_circ_empty(circ))
505 /* If port is "stopped", don't send any data to the UART */
506 if ((ch->ch_flags & CH_STOP) || (ch->ch_flags & CH_BREAK_SENDING))
509 * If FIFOs are disabled. Send data directly to txrx register
511 if (!(ch->ch_flags & CH_FIFO_ENABLED)) {
512 u8 lsrbits = readb(&ch->ch_neo_uart->lsr);
514 ch->ch_cached_lsr |= lsrbits;
515 if (ch->ch_cached_lsr & UART_LSR_THRE) {
516 ch->ch_cached_lsr &= ~(UART_LSR_THRE);
518 writeb(circ->buf[circ->tail], &ch->ch_neo_uart->txrx);
519 jsm_dbg(WRITE, &ch->ch_bd->pci_dev,
520 "Tx data: %x\n", circ->buf[circ->tail]);
521 circ->tail = (circ->tail + 1) & (UART_XMIT_SIZE - 1);
528 * We have to do it this way, because of the EXAR TXFIFO count bug.
530 if (!(ch->ch_flags & (CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM)))
533 n = UART_17158_TX_FIFOSIZE - ch->ch_t_tlevel;
535 /* cache head and tail of queue */
536 head = circ->head & (UART_XMIT_SIZE - 1);
537 tail = circ->tail & (UART_XMIT_SIZE - 1);
538 qlen = uart_circ_chars_pending(circ);
540 /* Find minimum of the FIFO space, versus queue length */
545 s = ((head >= tail) ? head : UART_XMIT_SIZE) - tail;
551 memcpy_toio(&ch->ch_neo_uart->txrxburst, circ->buf + tail, s);
552 /* Add and flip queue if needed */
553 tail = (tail + s) & (UART_XMIT_SIZE - 1);
559 /* Update the final tail */
560 circ->tail = tail & (UART_XMIT_SIZE - 1);
562 if (len_written >= ch->ch_t_tlevel)
563 ch->ch_flags &= ~(CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM);
565 if (uart_circ_empty(circ))
566 uart_write_wakeup(&ch->uart_port);
569 static void neo_parse_modem(struct jsm_channel *ch, u8 signals)
571 u8 msignals = signals;
573 jsm_dbg(MSIGS, &ch->ch_bd->pci_dev,
574 "neo_parse_modem: port: %d msignals: %x\n",
575 ch->ch_portnum, msignals);
577 /* Scrub off lower bits. They signify delta's, which I don't care about */
578 /* Keep DDCD and DDSR though */
581 if (msignals & UART_MSR_DDCD)
582 uart_handle_dcd_change(&ch->uart_port, msignals & UART_MSR_DCD);
583 if (msignals & UART_MSR_DDSR)
584 uart_handle_cts_change(&ch->uart_port, msignals & UART_MSR_CTS);
585 if (msignals & UART_MSR_DCD)
586 ch->ch_mistat |= UART_MSR_DCD;
588 ch->ch_mistat &= ~UART_MSR_DCD;
590 if (msignals & UART_MSR_DSR)
591 ch->ch_mistat |= UART_MSR_DSR;
593 ch->ch_mistat &= ~UART_MSR_DSR;
595 if (msignals & UART_MSR_RI)
596 ch->ch_mistat |= UART_MSR_RI;
598 ch->ch_mistat &= ~UART_MSR_RI;
600 if (msignals & UART_MSR_CTS)
601 ch->ch_mistat |= UART_MSR_CTS;
603 ch->ch_mistat &= ~UART_MSR_CTS;
605 jsm_dbg(MSIGS, &ch->ch_bd->pci_dev,
606 "Port: %d DTR: %d RTS: %d CTS: %d DSR: %d " "RI: %d CD: %d\n",
608 !!((ch->ch_mistat | ch->ch_mostat) & UART_MCR_DTR),
609 !!((ch->ch_mistat | ch->ch_mostat) & UART_MCR_RTS),
610 !!((ch->ch_mistat | ch->ch_mostat) & UART_MSR_CTS),
611 !!((ch->ch_mistat | ch->ch_mostat) & UART_MSR_DSR),
612 !!((ch->ch_mistat | ch->ch_mostat) & UART_MSR_RI),
613 !!((ch->ch_mistat | ch->ch_mostat) & UART_MSR_DCD));
616 /* Make the UART raise any of the output signals we want up */
617 static void neo_assert_modem_signals(struct jsm_channel *ch)
622 writeb(ch->ch_mostat, &ch->ch_neo_uart->mcr);
624 /* flush write operation */
625 neo_pci_posting_flush(ch->ch_bd);
629 * Flush the WRITE FIFO on the Neo.
631 * NOTE: Channel lock MUST be held before calling this function!
633 static void neo_flush_uart_write(struct jsm_channel *ch)
641 writeb((UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_XMIT), &ch->ch_neo_uart->isr_fcr);
643 for (i = 0; i < 10; i++) {
645 /* Check to see if the UART feels it completely flushed the FIFO. */
646 tmp = readb(&ch->ch_neo_uart->isr_fcr);
647 if (tmp & UART_FCR_CLEAR_XMIT) {
648 jsm_dbg(IOCTL, &ch->ch_bd->pci_dev,
649 "Still flushing TX UART... i: %d\n", i);
656 ch->ch_flags |= (CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM);
661 * Flush the READ FIFO on the Neo.
663 * NOTE: Channel lock MUST be held before calling this function!
665 static void neo_flush_uart_read(struct jsm_channel *ch)
673 writeb((UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR), &ch->ch_neo_uart->isr_fcr);
675 for (i = 0; i < 10; i++) {
677 /* Check to see if the UART feels it completely flushed the FIFO. */
678 tmp = readb(&ch->ch_neo_uart->isr_fcr);
680 jsm_dbg(IOCTL, &ch->ch_bd->pci_dev,
681 "Still flushing RX UART... i: %d\n", i);
690 * No locks are assumed to be held when calling this function.
692 static void neo_clear_break(struct jsm_channel *ch)
694 unsigned long lock_flags;
696 spin_lock_irqsave(&ch->ch_lock, lock_flags);
698 /* Turn break off, and unset some variables */
699 if (ch->ch_flags & CH_BREAK_SENDING) {
700 u8 temp = readb(&ch->ch_neo_uart->lcr);
701 writeb((temp & ~UART_LCR_SBC), &ch->ch_neo_uart->lcr);
703 ch->ch_flags &= ~(CH_BREAK_SENDING);
704 jsm_dbg(IOCTL, &ch->ch_bd->pci_dev,
705 "clear break Finishing UART_LCR_SBC! finished: %lx\n",
708 /* flush write operation */
709 neo_pci_posting_flush(ch->ch_bd);
711 spin_unlock_irqrestore(&ch->ch_lock, lock_flags);
715 * Parse the ISR register.
717 static void neo_parse_isr(struct jsm_board *brd, u32 port)
719 struct jsm_channel *ch;
722 unsigned long lock_flags;
727 if (port >= brd->maxports)
730 ch = brd->channels[port];
734 /* Here we try to figure out what caused the interrupt to happen */
737 isr = readb(&ch->ch_neo_uart->isr_fcr);
739 /* Bail if no pending interrupt */
740 if (isr & UART_IIR_NO_INT)
744 * Yank off the upper 2 bits, which just show that the FIFO's are enabled.
746 isr &= ~(UART_17158_IIR_FIFO_ENABLED);
748 jsm_dbg(INTR, &ch->ch_bd->pci_dev, "%s:%d isr: %x\n",
749 __FILE__, __LINE__, isr);
751 if (isr & (UART_17158_IIR_RDI_TIMEOUT | UART_IIR_RDI)) {
752 /* Read data from uart -> queue */
753 neo_copy_data_from_uart_to_queue(ch);
755 /* Call our tty layer to enforce queue flow control if needed. */
756 spin_lock_irqsave(&ch->ch_lock, lock_flags);
757 jsm_check_queue_flow_control(ch);
758 spin_unlock_irqrestore(&ch->ch_lock, lock_flags);
761 if (isr & UART_IIR_THRI) {
762 /* Transfer data (if any) from Write Queue -> UART. */
763 spin_lock_irqsave(&ch->ch_lock, lock_flags);
764 ch->ch_flags |= (CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM);
765 spin_unlock_irqrestore(&ch->ch_lock, lock_flags);
766 neo_copy_data_from_queue_to_uart(ch);
769 if (isr & UART_17158_IIR_XONXOFF) {
770 cause = readb(&ch->ch_neo_uart->xoffchar1);
772 jsm_dbg(INTR, &ch->ch_bd->pci_dev,
773 "Port %d. Got ISR_XONXOFF: cause:%x\n",
777 * Since the UART detected either an XON or
778 * XOFF match, we need to figure out which
779 * one it was, so we can suspend or resume data flow.
781 spin_lock_irqsave(&ch->ch_lock, lock_flags);
782 if (cause == UART_17158_XON_DETECT) {
783 /* Is output stopped right now, if so, resume it */
784 if (brd->channels[port]->ch_flags & CH_STOP) {
785 ch->ch_flags &= ~(CH_STOP);
787 jsm_dbg(INTR, &ch->ch_bd->pci_dev,
788 "Port %d. XON detected in incoming data\n",
791 else if (cause == UART_17158_XOFF_DETECT) {
792 if (!(brd->channels[port]->ch_flags & CH_STOP)) {
793 ch->ch_flags |= CH_STOP;
794 jsm_dbg(INTR, &ch->ch_bd->pci_dev,
795 "Setting CH_STOP\n");
797 jsm_dbg(INTR, &ch->ch_bd->pci_dev,
798 "Port: %d. XOFF detected in incoming data\n",
801 spin_unlock_irqrestore(&ch->ch_lock, lock_flags);
804 if (isr & UART_17158_IIR_HWFLOW_STATE_CHANGE) {
806 * If we get here, this means the hardware is doing auto flow control.
807 * Check to see whether RTS/DTR or CTS/DSR caused this interrupt.
809 cause = readb(&ch->ch_neo_uart->mcr);
811 /* Which pin is doing auto flow? RTS or DTR? */
812 spin_lock_irqsave(&ch->ch_lock, lock_flags);
813 if ((cause & 0x4) == 0) {
814 if (cause & UART_MCR_RTS)
815 ch->ch_mostat |= UART_MCR_RTS;
817 ch->ch_mostat &= ~(UART_MCR_RTS);
819 if (cause & UART_MCR_DTR)
820 ch->ch_mostat |= UART_MCR_DTR;
822 ch->ch_mostat &= ~(UART_MCR_DTR);
824 spin_unlock_irqrestore(&ch->ch_lock, lock_flags);
827 /* Parse any modem signal changes */
828 jsm_dbg(INTR, &ch->ch_bd->pci_dev,
829 "MOD_STAT: sending to parse_modem_sigs\n");
830 spin_lock_irqsave(&ch->uart_port.lock, lock_flags);
831 neo_parse_modem(ch, readb(&ch->ch_neo_uart->msr));
832 spin_unlock_irqrestore(&ch->uart_port.lock, lock_flags);
836 static inline void neo_parse_lsr(struct jsm_board *brd, u32 port)
838 struct jsm_channel *ch;
840 unsigned long lock_flags;
845 if (port >= brd->maxports)
848 ch = brd->channels[port];
852 linestatus = readb(&ch->ch_neo_uart->lsr);
854 jsm_dbg(INTR, &ch->ch_bd->pci_dev, "%s:%d port: %d linestatus: %x\n",
855 __FILE__, __LINE__, port, linestatus);
857 ch->ch_cached_lsr |= linestatus;
859 if (ch->ch_cached_lsr & UART_LSR_DR) {
860 /* Read data from uart -> queue */
861 neo_copy_data_from_uart_to_queue(ch);
862 spin_lock_irqsave(&ch->ch_lock, lock_flags);
863 jsm_check_queue_flow_control(ch);
864 spin_unlock_irqrestore(&ch->ch_lock, lock_flags);
868 * This is a special flag. It indicates that at least 1
869 * RX error (parity, framing, or break) has happened.
870 * Mark this in our struct, which will tell me that I have
871 *to do the special RX+LSR read for this FIFO load.
873 if (linestatus & UART_17158_RX_FIFO_DATA_ERROR)
874 jsm_dbg(INTR, &ch->ch_bd->pci_dev,
875 "%s:%d Port: %d Got an RX error, need to parse LSR\n",
876 __FILE__, __LINE__, port);
879 * The next 3 tests should *NOT* happen, as the above test
880 * should encapsulate all 3... At least, thats what Exar says.
883 if (linestatus & UART_LSR_PE) {
885 jsm_dbg(INTR, &ch->ch_bd->pci_dev, "%s:%d Port: %d. PAR ERR!\n",
886 __FILE__, __LINE__, port);
889 if (linestatus & UART_LSR_FE) {
891 jsm_dbg(INTR, &ch->ch_bd->pci_dev, "%s:%d Port: %d. FRM ERR!\n",
892 __FILE__, __LINE__, port);
895 if (linestatus & UART_LSR_BI) {
897 jsm_dbg(INTR, &ch->ch_bd->pci_dev,
898 "%s:%d Port: %d. BRK INTR!\n",
899 __FILE__, __LINE__, port);
902 if (linestatus & UART_LSR_OE) {
904 * Rx Oruns. Exar says that an orun will NOT corrupt
905 * the FIFO. It will just replace the holding register
906 * with this new data byte. So basically just ignore this.
907 * Probably we should eventually have an orun stat in our driver...
909 ch->ch_err_overrun++;
910 jsm_dbg(INTR, &ch->ch_bd->pci_dev,
911 "%s:%d Port: %d. Rx Overrun!\n",
912 __FILE__, __LINE__, port);
915 if (linestatus & UART_LSR_THRE) {
916 spin_lock_irqsave(&ch->ch_lock, lock_flags);
917 ch->ch_flags |= (CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM);
918 spin_unlock_irqrestore(&ch->ch_lock, lock_flags);
920 /* Transfer data (if any) from Write Queue -> UART. */
921 neo_copy_data_from_queue_to_uart(ch);
923 else if (linestatus & UART_17158_TX_AND_FIFO_CLR) {
924 spin_lock_irqsave(&ch->ch_lock, lock_flags);
925 ch->ch_flags |= (CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM);
926 spin_unlock_irqrestore(&ch->ch_lock, lock_flags);
928 /* Transfer data (if any) from Write Queue -> UART. */
929 neo_copy_data_from_queue_to_uart(ch);
935 * Send any/all changes to the line to the UART.
937 static void neo_param(struct jsm_channel *ch)
943 struct jsm_board *bd;
950 * If baud rate is zero, flush queues, and set mval to drop DTR.
952 if ((ch->ch_c_cflag & (CBAUD)) == 0) {
953 ch->ch_r_head = ch->ch_r_tail = 0;
954 ch->ch_e_head = ch->ch_e_tail = 0;
956 neo_flush_uart_write(ch);
957 neo_flush_uart_read(ch);
959 ch->ch_flags |= (CH_BAUD0);
960 ch->ch_mostat &= ~(UART_MCR_RTS | UART_MCR_DTR);
961 neo_assert_modem_signals(ch);
992 cflag = C_BAUD(ch->uart_port.state->port.tty);
994 for (i = 0; i < ARRAY_SIZE(baud_rates); i++) {
995 if (baud_rates[i].cflag == cflag) {
996 baud = baud_rates[i].rate;
1001 if (ch->ch_flags & CH_BAUD0)
1002 ch->ch_flags &= ~(CH_BAUD0);
1005 if (ch->ch_c_cflag & PARENB)
1006 lcr |= UART_LCR_PARITY;
1008 if (!(ch->ch_c_cflag & PARODD))
1009 lcr |= UART_LCR_EPAR;
1012 * Not all platforms support mark/space parity,
1013 * so this will hide behind an ifdef.
1016 if (ch->ch_c_cflag & CMSPAR)
1017 lcr |= UART_LCR_SPAR;
1020 if (ch->ch_c_cflag & CSTOPB)
1021 lcr |= UART_LCR_STOP;
1023 switch (ch->ch_c_cflag & CSIZE) {
1025 lcr |= UART_LCR_WLEN5;
1028 lcr |= UART_LCR_WLEN6;
1031 lcr |= UART_LCR_WLEN7;
1035 lcr |= UART_LCR_WLEN8;
1039 ier = readb(&ch->ch_neo_uart->ier);
1040 uart_lcr = readb(&ch->ch_neo_uart->lcr);
1042 quot = ch->ch_bd->bd_dividend / baud;
1045 writeb(UART_LCR_DLAB, &ch->ch_neo_uart->lcr);
1046 writeb((quot & 0xff), &ch->ch_neo_uart->txrx);
1047 writeb((quot >> 8), &ch->ch_neo_uart->ier);
1048 writeb(lcr, &ch->ch_neo_uart->lcr);
1051 if (uart_lcr != lcr)
1052 writeb(lcr, &ch->ch_neo_uart->lcr);
1054 if (ch->ch_c_cflag & CREAD)
1055 ier |= (UART_IER_RDI | UART_IER_RLSI);
1057 ier |= (UART_IER_THRI | UART_IER_MSI);
1059 writeb(ier, &ch->ch_neo_uart->ier);
1061 /* Set new start/stop chars */
1062 neo_set_new_start_stop_chars(ch);
1064 if (ch->ch_c_cflag & CRTSCTS)
1065 neo_set_cts_flow_control(ch);
1066 else if (ch->ch_c_iflag & IXON) {
1067 /* If start/stop is set to disable, then we should disable flow control */
1068 if ((ch->ch_startc == __DISABLED_CHAR) || (ch->ch_stopc == __DISABLED_CHAR))
1069 neo_set_no_output_flow_control(ch);
1071 neo_set_ixon_flow_control(ch);
1074 neo_set_no_output_flow_control(ch);
1076 if (ch->ch_c_cflag & CRTSCTS)
1077 neo_set_rts_flow_control(ch);
1078 else if (ch->ch_c_iflag & IXOFF) {
1079 /* If start/stop is set to disable, then we should disable flow control */
1080 if ((ch->ch_startc == __DISABLED_CHAR) || (ch->ch_stopc == __DISABLED_CHAR))
1081 neo_set_no_input_flow_control(ch);
1083 neo_set_ixoff_flow_control(ch);
1086 neo_set_no_input_flow_control(ch);
1088 * Adjust the RX FIFO Trigger level if baud is less than 9600.
1089 * Not exactly elegant, but this is needed because of the Exar chip's
1090 * delay on firing off the RX FIFO interrupt on slower baud rates.
1093 writeb(1, &ch->ch_neo_uart->rfifo);
1094 ch->ch_r_tlevel = 1;
1097 neo_assert_modem_signals(ch);
1099 /* Get current status of the modem signals now */
1100 neo_parse_modem(ch, readb(&ch->ch_neo_uart->msr));
1107 * Neo specific interrupt handler.
1109 static irqreturn_t neo_intr(int irq, void *voidbrd)
1111 struct jsm_board *brd = voidbrd;
1112 struct jsm_channel *ch;
1118 unsigned long lock_flags;
1119 unsigned long lock_flags2;
1120 int outofloop_count = 0;
1122 /* Lock out the slow poller from running on this board. */
1123 spin_lock_irqsave(&brd->bd_intr_lock, lock_flags);
1126 * Read in "extended" IRQ information from the 32bit Neo register.
1127 * Bits 0-7: What port triggered the interrupt.
1128 * Bits 8-31: Each 3bits indicate what type of interrupt occurred.
1130 uart_poll = readl(brd->re_map_membase + UART_17158_POLL_ADDR_OFFSET);
1132 jsm_dbg(INTR, &brd->pci_dev, "%s:%d uart_poll: %x\n",
1133 __FILE__, __LINE__, uart_poll);
1136 jsm_dbg(INTR, &brd->pci_dev,
1137 "Kernel interrupted to me, but no pending interrupts...\n");
1138 spin_unlock_irqrestore(&brd->bd_intr_lock, lock_flags);
1142 /* At this point, we have at least SOMETHING to service, dig further... */
1146 /* Loop on each port */
1147 while (((uart_poll & 0xff) != 0) && (outofloop_count < 0xff)){
1152 /* Check current port to see if it has interrupt pending */
1153 if ((tmp & jsm_offset_table[current_port]) != 0) {
1154 port = current_port;
1155 type = tmp >> (8 + (port * 3));
1162 jsm_dbg(INTR, &brd->pci_dev, "%s:%d port: %x type: %x\n",
1163 __FILE__, __LINE__, port, type);
1165 /* Remove this port + type from uart_poll */
1166 uart_poll &= ~(jsm_offset_table[port]);
1169 /* If no type, just ignore it, and move onto next port */
1170 jsm_dbg(INTR, &brd->pci_dev,
1171 "Interrupt with no type! port: %d\n", port);
1175 /* Switch on type of interrupt we have */
1178 case UART_17158_RXRDY_TIMEOUT:
1180 * RXRDY Time-out is cleared by reading data in the
1181 * RX FIFO until it falls below the trigger level.
1184 /* Verify the port is in range. */
1185 if (port >= brd->nasync)
1188 ch = brd->channels[port];
1189 neo_copy_data_from_uart_to_queue(ch);
1191 /* Call our tty layer to enforce queue flow control if needed. */
1192 spin_lock_irqsave(&ch->ch_lock, lock_flags2);
1193 jsm_check_queue_flow_control(ch);
1194 spin_unlock_irqrestore(&ch->ch_lock, lock_flags2);
1198 case UART_17158_RX_LINE_STATUS:
1200 * RXRDY and RX LINE Status (logic OR of LSR[4:1])
1202 neo_parse_lsr(brd, port);
1205 case UART_17158_TXRDY:
1207 * TXRDY interrupt clears after reading ISR register for the UART channel.
1211 * Yes, this is odd...
1212 * Why would I check EVERY possibility of type of
1213 * interrupt, when we know its TXRDY???
1214 * Becuz for some reason, even tho we got triggered for TXRDY,
1215 * it seems to be occasionally wrong. Instead of TX, which
1216 * it should be, I was getting things like RXDY too. Weird.
1218 neo_parse_isr(brd, port);
1221 case UART_17158_MSR:
1223 * MSR or flow control was seen.
1225 neo_parse_isr(brd, port);
1230 * The UART triggered us with a bogus interrupt type.
1231 * It appears the Exar chip, when REALLY bogged down, will throw
1232 * these once and awhile.
1233 * Its harmless, just ignore it and move on.
1235 jsm_dbg(INTR, &brd->pci_dev,
1236 "%s:%d Unknown Interrupt type: %x\n",
1237 __FILE__, __LINE__, type);
1242 spin_unlock_irqrestore(&brd->bd_intr_lock, lock_flags);
1244 jsm_dbg(INTR, &brd->pci_dev, "finish\n");
1249 * Neo specific way of turning off the receiver.
1250 * Used as a way to enforce queue flow control when in
1251 * hardware flow control mode.
1253 static void neo_disable_receiver(struct jsm_channel *ch)
1255 u8 tmp = readb(&ch->ch_neo_uart->ier);
1256 tmp &= ~(UART_IER_RDI);
1257 writeb(tmp, &ch->ch_neo_uart->ier);
1259 /* flush write operation */
1260 neo_pci_posting_flush(ch->ch_bd);
1265 * Neo specific way of turning on the receiver.
1266 * Used as a way to un-enforce queue flow control when in
1267 * hardware flow control mode.
1269 static void neo_enable_receiver(struct jsm_channel *ch)
1271 u8 tmp = readb(&ch->ch_neo_uart->ier);
1272 tmp |= (UART_IER_RDI);
1273 writeb(tmp, &ch->ch_neo_uart->ier);
1275 /* flush write operation */
1276 neo_pci_posting_flush(ch->ch_bd);
1279 static void neo_send_start_character(struct jsm_channel *ch)
1284 if (ch->ch_startc != __DISABLED_CHAR) {
1286 writeb(ch->ch_startc, &ch->ch_neo_uart->txrx);
1288 /* flush write operation */
1289 neo_pci_posting_flush(ch->ch_bd);
1293 static void neo_send_stop_character(struct jsm_channel *ch)
1298 if (ch->ch_stopc != __DISABLED_CHAR) {
1299 ch->ch_xoff_sends++;
1300 writeb(ch->ch_stopc, &ch->ch_neo_uart->txrx);
1302 /* flush write operation */
1303 neo_pci_posting_flush(ch->ch_bd);
1310 static void neo_uart_init(struct jsm_channel *ch)
1312 writeb(0, &ch->ch_neo_uart->ier);
1313 writeb(0, &ch->ch_neo_uart->efr);
1314 writeb(UART_EFR_ECB, &ch->ch_neo_uart->efr);
1316 /* Clear out UART and FIFO */
1317 readb(&ch->ch_neo_uart->txrx);
1318 writeb((UART_FCR_ENABLE_FIFO|UART_FCR_CLEAR_RCVR|UART_FCR_CLEAR_XMIT), &ch->ch_neo_uart->isr_fcr);
1319 readb(&ch->ch_neo_uart->lsr);
1320 readb(&ch->ch_neo_uart->msr);
1322 ch->ch_flags |= CH_FIFO_ENABLED;
1324 /* Assert any signals we want up */
1325 writeb(ch->ch_mostat, &ch->ch_neo_uart->mcr);
1329 * Make the UART completely turn off.
1331 static void neo_uart_off(struct jsm_channel *ch)
1333 /* Turn off UART enhanced bits */
1334 writeb(0, &ch->ch_neo_uart->efr);
1336 /* Stop all interrupts from occurring. */
1337 writeb(0, &ch->ch_neo_uart->ier);
1340 static u32 neo_get_uart_bytes_left(struct jsm_channel *ch)
1343 u8 lsr = readb(&ch->ch_neo_uart->lsr);
1345 /* We must cache the LSR as some of the bits get reset once read... */
1346 ch->ch_cached_lsr |= lsr;
1348 /* Determine whether the Transmitter is empty or not */
1349 if (!(lsr & UART_LSR_TEMT))
1352 ch->ch_flags |= (CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM);
1359 /* Channel lock MUST be held by the calling function! */
1360 static void neo_send_break(struct jsm_channel *ch)
1363 * Set the time we should stop sending the break.
1364 * If we are already sending a break, toss away the existing
1365 * time to stop, and use this new value instead.
1368 /* Tell the UART to start sending the break */
1369 if (!(ch->ch_flags & CH_BREAK_SENDING)) {
1370 u8 temp = readb(&ch->ch_neo_uart->lcr);
1371 writeb((temp | UART_LCR_SBC), &ch->ch_neo_uart->lcr);
1372 ch->ch_flags |= (CH_BREAK_SENDING);
1374 /* flush write operation */
1375 neo_pci_posting_flush(ch->ch_bd);
1380 * neo_send_immediate_char.
1382 * Sends a specific character as soon as possible to the UART,
1383 * jumping over any bytes that might be in the write queue.
1385 * The channel lock MUST be held by the calling function.
1387 static void neo_send_immediate_char(struct jsm_channel *ch, unsigned char c)
1392 writeb(c, &ch->ch_neo_uart->txrx);
1394 /* flush write operation */
1395 neo_pci_posting_flush(ch->ch_bd);
1398 struct board_ops jsm_neo_ops = {
1400 .uart_init = neo_uart_init,
1401 .uart_off = neo_uart_off,
1403 .assert_modem_signals = neo_assert_modem_signals,
1404 .flush_uart_write = neo_flush_uart_write,
1405 .flush_uart_read = neo_flush_uart_read,
1406 .disable_receiver = neo_disable_receiver,
1407 .enable_receiver = neo_enable_receiver,
1408 .send_break = neo_send_break,
1409 .clear_break = neo_clear_break,
1410 .send_start_character = neo_send_start_character,
1411 .send_stop_character = neo_send_stop_character,
1412 .copy_data_from_queue_to_uart = neo_copy_data_from_queue_to_uart,
1413 .get_uart_bytes_left = neo_get_uart_bytes_left,
1414 .send_immediate_char = neo_send_immediate_char