2  * This file is subject to the terms and conditions of the GNU General Public
 
   3  * License.  See the file "COPYING" in the main directory of this archive
 
   6  * Copyright (C) 2005 Silicon Graphics, Inc.  All Rights Reserved.
 
  10  * This file contains a module version of the ioc3 serial driver. This
 
  11  * includes all the support functions needed (support functions, etc.)
 
  12  * and the serial driver itself.
 
  14 #include <linux/errno.h>
 
  15 #include <linux/tty.h>
 
  16 #include <linux/serial.h>
 
  17 #include <linux/circ_buf.h>
 
  18 #include <linux/serial_reg.h>
 
  19 #include <linux/module.h>
 
  20 #include <linux/pci.h>
 
  21 #include <linux/serial_core.h>
 
  22 #include <linux/ioc3.h>
 
  25  * Interesting things about the ioc3
 
  28 #define LOGICAL_PORTS           2       /* rs232(0) and rs422(1) */
 
  29 #define PORTS_PER_CARD          2
 
  30 #define LOGICAL_PORTS_PER_CARD (PORTS_PER_CARD * LOGICAL_PORTS)
 
  32 #define MAX_LOGICAL_PORTS       (LOGICAL_PORTS_PER_CARD * MAX_CARDS)
 
  34 /* determine given the sio_ir what port it applies to */
 
  35 #define GET_PORT_FROM_SIO_IR(_x)        (_x & SIO_IR_SA) ? 0 : 1
 
  39  * we have 2 logical ports (rs232, rs422) for each physical port
 
  40  * evens are rs232, odds are rs422
 
  42 #define GET_PHYSICAL_PORT(_x)   ((_x) >> 1)
 
  43 #define GET_LOGICAL_PORT(_x)    ((_x) & 1)
 
  44 #define IS_PHYSICAL_PORT(_x)    !((_x) & 1)
 
  45 #define IS_RS232(_x)            !((_x) & 1)
 
  47 static unsigned int Num_of_ioc3_cards;
 
  48 static unsigned int Submodule_slot;
 
  50 /* defining this will get you LOTS of great debug info */
 
  51 //#define DEBUG_INTERRUPTS
 
  52 #define DPRINT_CONFIG(_x...)    ;
 
  53 //#define DPRINT_CONFIG(_x...)  printk _x
 
  54 #define NOT_PROGRESS()  ;
 
  55 //#define NOT_PROGRESS()        printk("%s : fails %d\n", __func__, __LINE__)
 
  57 /* number of characters we want to transmit to the lower level at a time */
 
  59 #define FIFO_SIZE               (MAX_CHARS-1)   /* it's a uchar */
 
  61 /* Device name we're using */
 
  62 #define DEVICE_NAME             "ttySIOC"
 
  63 #define DEVICE_MAJOR            204
 
  64 #define DEVICE_MINOR            116
 
  66 /* flags for next_char_state */
 
  68 #define NCS_PARITY              0x2
 
  69 #define NCS_FRAMING             0x4
 
  70 #define NCS_OVERRUN             0x8
 
  72 /* cause we need SOME parameters ... */
 
  73 #define MIN_BAUD_SUPPORTED      1200
 
  74 #define MAX_BAUD_SUPPORTED      115200
 
  76 /* protocol types supported */
 
  80 /* Notification types */
 
  81 #define N_DATA_READY            0x01
 
  82 #define N_OUTPUT_LOWAT          0x02
 
  84 #define N_PARITY_ERROR          0x08
 
  85 #define N_FRAMING_ERROR         0x10
 
  86 #define N_OVERRUN_ERROR         0x20
 
  90 #define N_ALL_INPUT             (N_DATA_READY | N_BREAK                    \
 
  91                                         | N_PARITY_ERROR | N_FRAMING_ERROR \
 
  92                                         | N_OVERRUN_ERROR | N_DDCD | N_DCTS)
 
  94 #define N_ALL_OUTPUT            N_OUTPUT_LOWAT
 
  96 #define N_ALL_ERRORS            (N_PARITY_ERROR | N_FRAMING_ERROR \
 
  99 #define N_ALL                   (N_DATA_READY | N_OUTPUT_LOWAT | N_BREAK    \
 
 100                                         | N_PARITY_ERROR | N_FRAMING_ERROR  \
 
 101                                         | N_OVERRUN_ERROR | N_DDCD | N_DCTS)
 
 103 #define SER_CLK_SPEED(prediv)   ((22000000 << 1) / prediv)
 
 104 #define SER_DIVISOR(x, clk)     (((clk) + (x) * 8) / ((x) * 16))
 
 105 #define DIVISOR_TO_BAUD(div, clk) ((clk) / 16 / (div))
 
 108 #define LCR_MASK_BITS_CHAR      (UART_LCR_WLEN5 | UART_LCR_WLEN6 \
 
 109                                         | UART_LCR_WLEN7 | UART_LCR_WLEN8)
 
 110 #define LCR_MASK_STOP_BITS      (UART_LCR_STOP)
 
 112 #define PENDING(_a, _p)         (readl(&(_p)->vma->sio_ir) & (_a)->ic_enable)
 
 114 #define RING_BUF_SIZE           4096
 
 115 #define BUF_SIZE_BIT            SBBR_L_SIZE
 
 116 #define PROD_CONS_MASK          PROD_CONS_PTR_4K
 
 118 #define TOTAL_RING_BUF_SIZE     (RING_BUF_SIZE * 4)
 
 120 /* driver specific - one per card */
 
 123                 /* uart ports are allocated here */
 
 124                 struct uart_port icp_uart_port[LOGICAL_PORTS];
 
 125                 /* the ioc3_port used for this port */
 
 126                 struct ioc3_port *icp_port;
 
 127         } ic_port[PORTS_PER_CARD];
 
 128         /* currently enabled interrupts */
 
 132 /* Local port info for each IOC3 serial port */
 
 134         /* handy reference material */
 
 135         struct uart_port *ip_port;
 
 136         struct ioc3_card *ip_card;
 
 137         struct ioc3_driver_data *ip_idd;
 
 138         struct ioc3_submodule *ip_is;
 
 140         /* pci mem addresses for this port */
 
 141         struct ioc3_serialregs __iomem *ip_serial_regs;
 
 142         struct ioc3_uartregs __iomem *ip_uart_regs;
 
 144         /* Ring buffer page for this port */
 
 145         dma_addr_t ip_dma_ringbuf;
 
 146         /* vaddr of ring buffer */
 
 147         struct ring_buffer *ip_cpu_ringbuf;
 
 149         /* Rings for this port */
 
 150         struct ring *ip_inring;
 
 151         struct ring *ip_outring;
 
 153         /* Hook to port specific values */
 
 154         struct port_hooks *ip_hooks;
 
 158         /* Various rx/tx parameters */
 
 163         /* Copy of notification bits */
 
 166         /* Shadow copies of various registers so we don't need to PIO
 
 167          * read them constantly
 
 172         unsigned char ip_flags;
 
 175 /* tx low water mark.  We need to notify the driver whenever tx is getting
 
 176  * close to empty so it can refill the tx buffer and keep things going.
 
 177  * Let's assume that if we interrupt 1 ms before the tx goes idle, we'll
 
 178  * have no trouble getting in more chars in time (I certainly hope so).
 
 180 #define TX_LOWAT_LATENCY      1000
 
 181 #define TX_LOWAT_HZ          (1000000 / TX_LOWAT_LATENCY)
 
 182 #define TX_LOWAT_CHARS(baud) (baud / 10 / TX_LOWAT_HZ)
 
 185 #define INPUT_HIGH              0x01
 
 186         /* used to signify that we have turned off the rx_high
 
 187          * temporarily - we need to drain the fifo and don't
 
 188          * want to get blasted with interrupts.
 
 191         /* DCD state is on */
 
 192 #define LOWAT_WRITTEN           0x04
 
 193 #define READ_ABORTED            0x08
 
 194         /* the read was aborted - used to avaoid infinate looping
 
 195          * in the interrupt handler
 
 197 #define INPUT_ENABLE            0x10
 
 199 /* Since each port has different register offsets and bitmasks
 
 200  * for everything, we'll store those that we need in tables so we
 
 201  * don't have to be constantly checking the port we are dealing with.
 
 204         uint32_t intr_delta_dcd;
 
 205         uint32_t intr_delta_cts;
 
 207         uint32_t intr_rx_timer;
 
 208         uint32_t intr_rx_high;
 
 209         uint32_t intr_tx_explicit;
 
 212         char rs422_select_pin;
 
 215 static struct port_hooks hooks_array[PORTS_PER_CARD] = {
 
 216         /* values for port A */
 
 218         .intr_delta_dcd = SIO_IR_SA_DELTA_DCD,
 
 219         .intr_delta_cts = SIO_IR_SA_DELTA_CTS,
 
 220         .intr_tx_mt = SIO_IR_SA_TX_MT,
 
 221         .intr_rx_timer = SIO_IR_SA_RX_TIMER,
 
 222         .intr_rx_high = SIO_IR_SA_RX_HIGH,
 
 223         .intr_tx_explicit = SIO_IR_SA_TX_EXPLICIT,
 
 224         .intr_clear = (SIO_IR_SA_TX_MT | SIO_IR_SA_RX_FULL
 
 227                                 | SIO_IR_SA_DELTA_DCD
 
 228                                 | SIO_IR_SA_DELTA_CTS
 
 230                                 | SIO_IR_SA_TX_EXPLICIT
 
 232         .intr_all =  SIO_IR_SA,
 
 233         .rs422_select_pin = GPPR_UARTA_MODESEL_PIN,
 
 236         /* values for port B */
 
 238         .intr_delta_dcd = SIO_IR_SB_DELTA_DCD,
 
 239         .intr_delta_cts = SIO_IR_SB_DELTA_CTS,
 
 240         .intr_tx_mt = SIO_IR_SB_TX_MT,
 
 241         .intr_rx_timer = SIO_IR_SB_RX_TIMER,
 
 242         .intr_rx_high = SIO_IR_SB_RX_HIGH,
 
 243         .intr_tx_explicit = SIO_IR_SB_TX_EXPLICIT,
 
 244         .intr_clear = (SIO_IR_SB_TX_MT | SIO_IR_SB_RX_FULL
 
 247                                 | SIO_IR_SB_DELTA_DCD
 
 248                                 | SIO_IR_SB_DELTA_CTS
 
 250                                 | SIO_IR_SB_TX_EXPLICIT
 
 252         .intr_all = SIO_IR_SB,
 
 253         .rs422_select_pin = GPPR_UARTB_MODESEL_PIN,
 
 264                         char data[4];   /* data bytes */
 
 265                         char sc[4];     /* status/control */
 
 270 /* Test the valid bits in any of the 4 sc chars using "allsc" member */
 
 271 #define RING_ANY_VALID \
 
 272         ((uint32_t)(RXSB_MODEM_VALID | RXSB_DATA_VALID) * 0x01010101)
 
 274 #define ring_sc         u.s.sc
 
 275 #define ring_data       u.s.data
 
 276 #define ring_allsc      u.all.allsc
 
 278 /* Number of entries per ring buffer. */
 
 279 #define ENTRIES_PER_RING (RING_BUF_SIZE / (int) sizeof(struct ring_entry))
 
 281 /* An individual ring */
 
 283         struct ring_entry entries[ENTRIES_PER_RING];
 
 286 /* The whole enchilada */
 
 294 /* Get a ring from a port struct */
 
 295 #define RING(_p, _wh)   &(((struct ring_buffer *)((_p)->ip_cpu_ringbuf))->_wh)
 
 297 /* for Infinite loop detection  */
 
 298 #define MAXITER         10000000
 
 302  * set_baud - Baud rate setting code
 
 304  * @baud: baud rate to use
 
 306 static int set_baud(struct ioc3_port *port, int baud)
 
 312         struct ioc3_uartregs __iomem *uart;
 
 314         for (prediv = 6; prediv < 64; prediv++) {
 
 315                 divisor = SER_DIVISOR(baud, SER_CLK_SPEED(prediv));
 
 317                         continue;       /* invalid divisor */
 
 318                 actual_baud = DIVISOR_TO_BAUD(divisor, SER_CLK_SPEED(prediv));
 
 320                 diff = actual_baud - baud;
 
 324                 /* if we're within 1% we've found a match */
 
 325                 if (diff * 100 <= actual_baud)
 
 329         /* if the above loop completed, we didn't match
 
 330          * the baud rate.  give up.
 
 337         uart = port->ip_uart_regs;
 
 338         lcr = readb(&uart->iu_lcr);
 
 340         writeb(lcr | UART_LCR_DLAB, &uart->iu_lcr);
 
 341         writeb((unsigned char)divisor, &uart->iu_dll);
 
 342         writeb((unsigned char)(divisor >> 8), &uart->iu_dlm);
 
 343         writeb((unsigned char)prediv, &uart->iu_scr);
 
 344         writeb((unsigned char)lcr, &uart->iu_lcr);
 
 350  * get_ioc3_port - given a uart port, return the control structure
 
 351  * @the_port: uart port to find
 
 353 static struct ioc3_port *get_ioc3_port(struct uart_port *the_port)
 
 355         struct ioc3_driver_data *idd = dev_get_drvdata(the_port->dev);
 
 356         struct ioc3_card *card_ptr = idd->data[Submodule_slot];
 
 363         for (ii = 0; ii < PORTS_PER_CARD; ii++) {
 
 364                 for (jj = 0; jj < LOGICAL_PORTS; jj++) {
 
 365                         if (the_port == &card_ptr->ic_port[ii].icp_uart_port[jj])
 
 366                                 return card_ptr->ic_port[ii].icp_port;
 
 374  * port_init - Initialize the sio and ioc3 hardware for a given port
 
 375  *                      called per port from attach...
 
 376  * @port: port to initialize
 
 378 static int inline port_init(struct ioc3_port *port)
 
 381         struct port_hooks *hooks = port->ip_hooks;
 
 382         struct ioc3_uartregs __iomem *uart;
 
 383         int reset_loop_counter = 0xfffff;
 
 384         struct ioc3_driver_data *idd = port->ip_idd;
 
 386         /* Idle the IOC3 serial interface */
 
 387         writel(SSCR_RESET, &port->ip_serial_regs->sscr);
 
 389         /* Wait until any pending bus activity for this port has ceased */
 
 391                 sio_cr = readl(&idd->vma->sio_cr);
 
 392                 if (reset_loop_counter-- <= 0) {
 
 394                                "IOC3 unable to come out of reset"
 
 395                                 " scr 0x%x\n", sio_cr);
 
 398         } while (!(sio_cr & SIO_CR_ARB_DIAG_IDLE) &&
 
 399                (((sio_cr &= SIO_CR_ARB_DIAG) == SIO_CR_ARB_DIAG_TXA)
 
 400                 || sio_cr == SIO_CR_ARB_DIAG_TXB
 
 401                 || sio_cr == SIO_CR_ARB_DIAG_RXA
 
 402                 || sio_cr == SIO_CR_ARB_DIAG_RXB));
 
 404         /* Finish reset sequence */
 
 405         writel(0, &port->ip_serial_regs->sscr);
 
 407         /* Once RESET is done, reload cached tx_prod and rx_cons values
 
 408          * and set rings to empty by making prod == cons
 
 410         port->ip_tx_prod = readl(&port->ip_serial_regs->stcir) & PROD_CONS_MASK;
 
 411         writel(port->ip_tx_prod, &port->ip_serial_regs->stpir);
 
 412         port->ip_rx_cons = readl(&port->ip_serial_regs->srpir) & PROD_CONS_MASK;
 
 413         writel(port->ip_rx_cons | SRCIR_ARM, &port->ip_serial_regs->srcir);
 
 415         /* Disable interrupts for this 16550 */
 
 416         uart = port->ip_uart_regs;
 
 417         writeb(0, &uart->iu_lcr);
 
 418         writeb(0, &uart->iu_ier);
 
 420         /* Set the default baud */
 
 421         set_baud(port, port->ip_baud);
 
 423         /* Set line control to 8 bits no parity */
 
 424         writeb(UART_LCR_WLEN8 | 0, &uart->iu_lcr);
 
 425         /* UART_LCR_STOP == 1 stop */
 
 427         /* Enable the FIFOs */
 
 428         writeb(UART_FCR_ENABLE_FIFO, &uart->iu_fcr);
 
 429         /* then reset 16550 FIFOs */
 
 430         writeb(UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT,
 
 433         /* Clear modem control register */
 
 434         writeb(0, &uart->iu_mcr);
 
 436         /* Clear deltas in modem status register */
 
 437         writel(0, &port->ip_serial_regs->shadow);
 
 439         /* Only do this once per port pair */
 
 440         if (port->ip_hooks == &hooks_array[0]) {
 
 441                 unsigned long ring_pci_addr;
 
 442                 uint32_t __iomem *sbbr_l, *sbbr_h;
 
 444                 sbbr_l = &idd->vma->sbbr_l;
 
 445                 sbbr_h = &idd->vma->sbbr_h;
 
 446                 ring_pci_addr = (unsigned long __iomem)port->ip_dma_ringbuf;
 
 447                 DPRINT_CONFIG(("%s: ring_pci_addr 0x%p\n",
 
 448                                __func__, (void *)ring_pci_addr));
 
 450                 writel((unsigned int)((uint64_t) ring_pci_addr >> 32), sbbr_h);
 
 451                 writel((unsigned int)ring_pci_addr | BUF_SIZE_BIT, sbbr_l);
 
 454         /* Set the receive timeout value to 10 msec */
 
 455         writel(SRTR_HZ / 100, &port->ip_serial_regs->srtr);
 
 457         /* Set rx threshold, enable DMA */
 
 458         /* Set high water mark at 3/4 of full ring */
 
 459         port->ip_sscr = (ENTRIES_PER_RING * 3 / 4);
 
 461         /* uart experiences pauses at high baud rate reducing actual
 
 462          * throughput by 10% or so unless we enable high speed polling
 
 463          * XXX when this hardware bug is resolved we should revert to
 
 464          * normal polling speed
 
 466         port->ip_sscr |= SSCR_HIGH_SPD;
 
 468         writel(port->ip_sscr, &port->ip_serial_regs->sscr);
 
 470         /* Disable and clear all serial related interrupt bits */
 
 471         port->ip_card->ic_enable &= ~hooks->intr_clear;
 
 472         ioc3_disable(port->ip_is, idd, hooks->intr_clear);
 
 473         ioc3_ack(port->ip_is, idd, hooks->intr_clear);
 
 478  * enable_intrs - enable interrupts
 
 479  * @port: port to enable
 
 482 static void enable_intrs(struct ioc3_port *port, uint32_t mask)
 
 484         if ((port->ip_card->ic_enable & mask) != mask) {
 
 485                 port->ip_card->ic_enable |= mask;
 
 486                 ioc3_enable(port->ip_is, port->ip_idd, mask);
 
 491  * local_open - local open a port
 
 492  * @port: port to open
 
 494 static inline int local_open(struct ioc3_port *port)
 
 498         port->ip_flags = INPUT_ENABLE;
 
 500         /* Pause the DMA interface if necessary */
 
 501         if (port->ip_sscr & SSCR_DMA_EN) {
 
 502                 writel(port->ip_sscr | SSCR_DMA_PAUSE,
 
 503                        &port->ip_serial_regs->sscr);
 
 504                 while ((readl(&port->ip_serial_regs->sscr)
 
 505                         & SSCR_PAUSE_STATE) == 0) {
 
 507                         if (spiniter > MAXITER) {
 
 514         /* Reset the input fifo.  If the uart received chars while the port
 
 515          * was closed and DMA is not enabled, the uart may have a bunch of
 
 516          * chars hanging around in its rx fifo which will not be discarded
 
 517          * by rclr in the upper layer. We must get rid of them here.
 
 519         writeb(UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR,
 
 520                &port->ip_uart_regs->iu_fcr);
 
 522         writeb(UART_LCR_WLEN8, &port->ip_uart_regs->iu_lcr);
 
 523         /* UART_LCR_STOP == 1 stop */
 
 525         /* Re-enable DMA, set default threshold to intr whenever there is
 
 528         port->ip_sscr &= ~SSCR_RX_THRESHOLD;
 
 529         port->ip_sscr |= 1;     /* default threshold */
 
 531         /* Plug in the new sscr.  This implicitly clears the DMA_PAUSE
 
 532          * flag if it was set above
 
 534         writel(port->ip_sscr, &port->ip_serial_regs->sscr);
 
 535         port->ip_tx_lowat = 1;
 
 540  * set_rx_timeout - Set rx timeout and threshold values.
 
 542  * @timeout: timeout value in ticks
 
 544 static inline int set_rx_timeout(struct ioc3_port *port, int timeout)
 
 548         port->ip_rx_timeout = timeout;
 
 550         /* Timeout is in ticks.  Let's figure out how many chars we
 
 551          * can receive at the current baud rate in that interval
 
 552          * and set the rx threshold to that amount.  There are 4 chars
 
 553          * per ring entry, so we'll divide the number of chars that will
 
 554          * arrive in timeout by 4.
 
 555          * So .... timeout * baud / 10 / HZ / 4, with HZ = 100.
 
 557         threshold = timeout * port->ip_baud / 4000;
 
 559                 threshold = 1;  /* otherwise we'll intr all the time! */
 
 561         if ((unsigned)threshold > (unsigned)SSCR_RX_THRESHOLD)
 
 564         port->ip_sscr &= ~SSCR_RX_THRESHOLD;
 
 565         port->ip_sscr |= threshold;
 
 566         writel(port->ip_sscr, &port->ip_serial_regs->sscr);
 
 568         /* Now set the rx timeout to the given value
 
 569          * again timeout * SRTR_HZ / HZ
 
 571         timeout = timeout * SRTR_HZ / 100;
 
 572         if (timeout > SRTR_CNT)
 
 574         writel(timeout, &port->ip_serial_regs->srtr);
 
 579  * config_port - config the hardware
 
 580  * @port: port to config
 
 581  * @baud: baud rate for the port
 
 582  * @byte_size: data size
 
 583  * @stop_bits: number of stop bits
 
 584  * @parenb: parity enable ?
 
 585  * @parodd: odd parity ?
 
 588 config_port(struct ioc3_port *port,
 
 589             int baud, int byte_size, int stop_bits, int parenb, int parodd)
 
 594         DPRINT_CONFIG(("%s: line %d baud %d byte_size %d stop %d parenb %d "
 
 596                        __func__, ((struct uart_port *)port->ip_port)->line,
 
 597                         baud, byte_size, stop_bits, parenb, parodd));
 
 599         if (set_baud(port, baud))
 
 604                 sizebits = UART_LCR_WLEN5;
 
 607                 sizebits = UART_LCR_WLEN6;
 
 610                 sizebits = UART_LCR_WLEN7;
 
 613                 sizebits = UART_LCR_WLEN8;
 
 619         /* Pause the DMA interface if necessary */
 
 620         if (port->ip_sscr & SSCR_DMA_EN) {
 
 621                 writel(port->ip_sscr | SSCR_DMA_PAUSE,
 
 622                        &port->ip_serial_regs->sscr);
 
 623                 while ((readl(&port->ip_serial_regs->sscr)
 
 624                         & SSCR_PAUSE_STATE) == 0) {
 
 626                         if (spiniter > MAXITER)
 
 631         /* Clear relevant fields in lcr */
 
 632         lcr = readb(&port->ip_uart_regs->iu_lcr);
 
 633         lcr &= ~(LCR_MASK_BITS_CHAR | UART_LCR_EPAR |
 
 634                  UART_LCR_PARITY | LCR_MASK_STOP_BITS);
 
 636         /* Set byte size in lcr */
 
 641                 lcr |= UART_LCR_PARITY;
 
 643                         lcr |= UART_LCR_EPAR;
 
 648                 lcr |= UART_LCR_STOP /* 2 stop bits */ ;
 
 650         writeb(lcr, &port->ip_uart_regs->iu_lcr);
 
 652         /* Re-enable the DMA interface if necessary */
 
 653         if (port->ip_sscr & SSCR_DMA_EN) {
 
 654                 writel(port->ip_sscr, &port->ip_serial_regs->sscr);
 
 656         port->ip_baud = baud;
 
 658         /* When we get within this number of ring entries of filling the
 
 659          * entire ring on tx, place an EXPLICIT intr to generate a lowat
 
 660          * notification when output has drained.
 
 662         port->ip_tx_lowat = (TX_LOWAT_CHARS(baud) + 3) / 4;
 
 663         if (port->ip_tx_lowat == 0)
 
 664                 port->ip_tx_lowat = 1;
 
 666         set_rx_timeout(port, 2);
 
 671  * do_write - Write bytes to the port.  Returns the number of bytes
 
 672  *                      actually written. Called from transmit_chars
 
 674  * @buf: the stuff to write
 
 675  * @len: how many bytes in 'buf'
 
 677 static inline int do_write(struct ioc3_port *port, char *buf, int len)
 
 679         int prod_ptr, cons_ptr, total = 0;
 
 680         struct ring *outring;
 
 681         struct ring_entry *entry;
 
 682         struct port_hooks *hooks = port->ip_hooks;
 
 686         prod_ptr = port->ip_tx_prod;
 
 687         cons_ptr = readl(&port->ip_serial_regs->stcir) & PROD_CONS_MASK;
 
 688         outring = port->ip_outring;
 
 690         /* Maintain a 1-entry red-zone.  The ring buffer is full when
 
 691          * (cons - prod) % ring_size is 1.  Rather than do this subtraction
 
 692          * in the body of the loop, I'll do it now.
 
 694         cons_ptr = (cons_ptr - (int)sizeof(struct ring_entry)) & PROD_CONS_MASK;
 
 696         /* Stuff the bytes into the output */
 
 697         while ((prod_ptr != cons_ptr) && (len > 0)) {
 
 700                 /* Get 4 bytes (one ring entry) at a time */
 
 701                 entry = (struct ring_entry *)((caddr_t) outring + prod_ptr);
 
 703                 /* Invalidate all entries */
 
 704                 entry->ring_allsc = 0;
 
 706                 /* Copy in some bytes */
 
 707                 for (xx = 0; (xx < 4) && (len > 0); xx++) {
 
 708                         entry->ring_data[xx] = *buf++;
 
 709                         entry->ring_sc[xx] = TXCB_VALID;
 
 714                 /* If we are within some small threshold of filling up the
 
 715                  * entire ring buffer, we must place an EXPLICIT intr here
 
 716                  * to generate a lowat interrupt in case we subsequently
 
 717                  * really do fill up the ring and the caller goes to sleep.
 
 718                  * No need to place more than one though.
 
 720                 if (!(port->ip_flags & LOWAT_WRITTEN) &&
 
 721                     ((cons_ptr - prod_ptr) & PROD_CONS_MASK)
 
 722                     <= port->ip_tx_lowat * (int)sizeof(struct ring_entry)) {
 
 723                         port->ip_flags |= LOWAT_WRITTEN;
 
 724                         entry->ring_sc[0] |= TXCB_INT_WHEN_DONE;
 
 727                 /* Go on to next entry */
 
 728                 prod_ptr += sizeof(struct ring_entry);
 
 729                 prod_ptr &= PROD_CONS_MASK;
 
 732         /* If we sent something, start DMA if necessary */
 
 733         if (total > 0 && !(port->ip_sscr & SSCR_DMA_EN)) {
 
 734                 port->ip_sscr |= SSCR_DMA_EN;
 
 735                 writel(port->ip_sscr, &port->ip_serial_regs->sscr);
 
 738         /* Store the new producer pointer.  If tx is disabled, we stuff the
 
 739          * data into the ring buffer, but we don't actually start tx.
 
 741         if (!uart_tx_stopped(port->ip_port)) {
 
 742                 writel(prod_ptr, &port->ip_serial_regs->stpir);
 
 744                 /* If we are now transmitting, enable tx_mt interrupt so we
 
 745                  * can disable DMA if necessary when the tx finishes.
 
 748                         enable_intrs(port, hooks->intr_tx_mt);
 
 750         port->ip_tx_prod = prod_ptr;
 
 756  * disable_intrs - disable interrupts
 
 757  * @port: port to enable
 
 760 static inline void disable_intrs(struct ioc3_port *port, uint32_t mask)
 
 762         if (port->ip_card->ic_enable & mask) {
 
 763                 ioc3_disable(port->ip_is, port->ip_idd, mask);
 
 764                 port->ip_card->ic_enable &= ~mask;
 
 769  * set_notification - Modify event notification
 
 774 static int set_notification(struct ioc3_port *port, int mask, int set_on)
 
 776         struct port_hooks *hooks = port->ip_hooks;
 
 777         uint32_t intrbits, sscrbits;
 
 781         intrbits = sscrbits = 0;
 
 783         if (mask & N_DATA_READY)
 
 784                 intrbits |= (hooks->intr_rx_timer | hooks->intr_rx_high);
 
 785         if (mask & N_OUTPUT_LOWAT)
 
 786                 intrbits |= hooks->intr_tx_explicit;
 
 788                 intrbits |= hooks->intr_delta_dcd;
 
 789                 sscrbits |= SSCR_RX_RING_DCD;
 
 792                 intrbits |= hooks->intr_delta_cts;
 
 795                 enable_intrs(port, intrbits);
 
 796                 port->ip_notify |= mask;
 
 797                 port->ip_sscr |= sscrbits;
 
 799                 disable_intrs(port, intrbits);
 
 800                 port->ip_notify &= ~mask;
 
 801                 port->ip_sscr &= ~sscrbits;
 
 804         /* We require DMA if either DATA_READY or DDCD notification is
 
 805          * currently requested. If neither of these is requested and
 
 806          * there is currently no tx in progress, DMA may be disabled.
 
 808         if (port->ip_notify & (N_DATA_READY | N_DDCD))
 
 809                 port->ip_sscr |= SSCR_DMA_EN;
 
 810         else if (!(port->ip_card->ic_enable & hooks->intr_tx_mt))
 
 811                 port->ip_sscr &= ~SSCR_DMA_EN;
 
 813         writel(port->ip_sscr, &port->ip_serial_regs->sscr);
 
 818  * set_mcr - set the master control reg
 
 819  * @the_port: port to use
 
 821  * @mask2: shadow mask
 
 823 static inline int set_mcr(struct uart_port *the_port,
 
 824                           int mask1, int mask2)
 
 826         struct ioc3_port *port = get_ioc3_port(the_port);
 
 834         /* Pause the DMA interface if necessary */
 
 835         if (port->ip_sscr & SSCR_DMA_EN) {
 
 836                 writel(port->ip_sscr | SSCR_DMA_PAUSE,
 
 837                        &port->ip_serial_regs->sscr);
 
 838                 while ((readl(&port->ip_serial_regs->sscr)
 
 839                         & SSCR_PAUSE_STATE) == 0) {
 
 841                         if (spiniter > MAXITER)
 
 845         shadow = readl(&port->ip_serial_regs->shadow);
 
 846         mcr = (shadow & 0xff000000) >> 24;
 
 851         writeb(mcr, &port->ip_uart_regs->iu_mcr);
 
 852         writel(shadow, &port->ip_serial_regs->shadow);
 
 854         /* Re-enable the DMA interface if necessary */
 
 855         if (port->ip_sscr & SSCR_DMA_EN) {
 
 856                 writel(port->ip_sscr, &port->ip_serial_regs->sscr);
 
 862  * ioc3_set_proto - set the protocol for the port
 
 864  * @proto: protocol to use
 
 866 static int ioc3_set_proto(struct ioc3_port *port, int proto)
 
 868         struct port_hooks *hooks = port->ip_hooks;
 
 873                 /* Clear the appropriate GIO pin */
 
 874                 DPRINT_CONFIG(("%s: rs232\n", __func__));
 
 875                 writel(0, (&port->ip_idd->vma->gppr[0]
 
 876                                         + hooks->rs422_select_pin));
 
 880                 /* Set the appropriate GIO pin */
 
 881                 DPRINT_CONFIG(("%s: rs422\n", __func__));
 
 882                 writel(1, (&port->ip_idd->vma->gppr[0]
 
 883                                         + hooks->rs422_select_pin));
 
 890  * transmit_chars - upper level write, called with the_port->lock
 
 891  * @the_port: port to write
 
 893 static void transmit_chars(struct uart_port *the_port)
 
 895         int xmit_count, tail, head;
 
 898         struct tty_struct *tty;
 
 899         struct ioc3_port *port = get_ioc3_port(the_port);
 
 900         struct uart_info *info;
 
 907         info = the_port->info;
 
 908         tty = info->port.tty;
 
 910         if (uart_circ_empty(&info->xmit) || uart_tx_stopped(the_port)) {
 
 911                 /* Nothing to do or hw stopped */
 
 912                 set_notification(port, N_ALL_OUTPUT, 0);
 
 916         head = info->xmit.head;
 
 917         tail = info->xmit.tail;
 
 918         start = (char *)&info->xmit.buf[tail];
 
 920         /* write out all the data or until the end of the buffer */
 
 921         xmit_count = (head < tail) ? (UART_XMIT_SIZE - tail) : (head - tail);
 
 922         if (xmit_count > 0) {
 
 923                 result = do_write(port, start, xmit_count);
 
 926                         xmit_count -= result;
 
 927                         the_port->icount.tx += result;
 
 928                         /* advance the pointers */
 
 930                         tail &= UART_XMIT_SIZE - 1;
 
 931                         info->xmit.tail = tail;
 
 932                         start = (char *)&info->xmit.buf[tail];
 
 935         if (uart_circ_chars_pending(&info->xmit) < WAKEUP_CHARS)
 
 936                 uart_write_wakeup(the_port);
 
 938         if (uart_circ_empty(&info->xmit)) {
 
 939                 set_notification(port, N_OUTPUT_LOWAT, 0);
 
 941                 set_notification(port, N_OUTPUT_LOWAT, 1);
 
 946  * ioc3_change_speed - change the speed of the port
 
 947  * @the_port: port to change
 
 948  * @new_termios: new termios settings
 
 949  * @old_termios: old termios settings
 
 952 ioc3_change_speed(struct uart_port *the_port,
 
 953                   struct ktermios *new_termios, struct ktermios *old_termios)
 
 955         struct ioc3_port *port = get_ioc3_port(the_port);
 
 958         int new_parity = 0, new_parity_enable = 0, new_stop = 0, new_data = 8;
 
 959         struct uart_info *info = the_port->info;
 
 961         cflag = new_termios->c_cflag;
 
 963         switch (cflag & CSIZE) {
 
 977                 /* cuz we always need a default ... */
 
 981         if (cflag & CSTOPB) {
 
 984         if (cflag & PARENB) {
 
 985                 new_parity_enable = 1;
 
 989         baud = uart_get_baud_rate(the_port, new_termios, old_termios,
 
 990                                   MIN_BAUD_SUPPORTED, MAX_BAUD_SUPPORTED);
 
 991         DPRINT_CONFIG(("%s: returned baud %d for line %d\n", __func__, baud,
 
 994         if (!the_port->fifosize)
 
 995                 the_port->fifosize = FIFO_SIZE;
 
 996         uart_update_timeout(the_port, cflag, baud);
 
 998         the_port->ignore_status_mask = N_ALL_INPUT;
 
1000         info->port.tty->low_latency = 1;
 
1002         if (I_IGNPAR(info->port.tty))
 
1003                 the_port->ignore_status_mask &= ~(N_PARITY_ERROR
 
1005         if (I_IGNBRK(info->port.tty)) {
 
1006                 the_port->ignore_status_mask &= ~N_BREAK;
 
1007                 if (I_IGNPAR(info->port.tty))
 
1008                         the_port->ignore_status_mask &= ~N_OVERRUN_ERROR;
 
1010         if (!(cflag & CREAD)) {
 
1011                 /* ignore everything */
 
1012                 the_port->ignore_status_mask &= ~N_DATA_READY;
 
1015         if (cflag & CRTSCTS) {
 
1016                 /* enable hardware flow control */
 
1017                 port->ip_sscr |= SSCR_HFC_EN;
 
1020                 /* disable hardware flow control */
 
1021                 port->ip_sscr &= ~SSCR_HFC_EN;
 
1023         writel(port->ip_sscr, &port->ip_serial_regs->sscr);
 
1025         /* Set the configuration and proper notification call */
 
1026         DPRINT_CONFIG(("%s : port 0x%p line %d cflag 0%o "
 
1027                        "config_port(baud %d data %d stop %d penable %d "
 
1028                         " parity %d), notification 0x%x\n",
 
1029                        __func__, (void *)port, the_port->line, cflag, baud,
 
1030                        new_data, new_stop, new_parity_enable, new_parity,
 
1031                        the_port->ignore_status_mask));
 
1033         if ((config_port(port, baud,    /* baud */
 
1034                          new_data,      /* byte size */
 
1035                          new_stop,      /* stop bits */
 
1036                          new_parity_enable,     /* set parity */
 
1037                          new_parity)) >= 0) {   /* parity 1==odd */
 
1038                 set_notification(port, the_port->ignore_status_mask, 1);
 
1043  * ic3_startup_local - Start up the serial port - returns >= 0 if no errors
 
1044  * @the_port: Port to operate on
 
1046 static inline int ic3_startup_local(struct uart_port *the_port)
 
1048         struct ioc3_port *port;
 
1055         port = get_ioc3_port(the_port);
 
1063         /* set the protocol */
 
1064         ioc3_set_proto(port, IS_RS232(the_port->line) ? PROTO_RS232 :
 
1070  * ioc3_cb_output_lowat - called when the output low water mark is hit
 
1071  * @port: port to output
 
1073 static void ioc3_cb_output_lowat(struct ioc3_port *port)
 
1075         unsigned long pflags;
 
1077         /* the_port->lock is set on the call here */
 
1078         if (port->ip_port) {
 
1079                 spin_lock_irqsave(&port->ip_port->lock, pflags);
 
1080                 transmit_chars(port->ip_port);
 
1081                 spin_unlock_irqrestore(&port->ip_port->lock, pflags);
 
1086  * ioc3_cb_post_ncs - called for some basic errors
 
1087  * @port: port to use
 
1090 static void ioc3_cb_post_ncs(struct uart_port *the_port, int ncs)
 
1092         struct uart_icount *icount;
 
1094         icount = &the_port->icount;
 
1096         if (ncs & NCS_BREAK)
 
1098         if (ncs & NCS_FRAMING)
 
1100         if (ncs & NCS_OVERRUN)
 
1102         if (ncs & NCS_PARITY)
 
1107  * do_read - Read in bytes from the port.  Return the number of bytes
 
1109  * @the_port: port to use
 
1110  * @buf: place to put the stuff we read
 
1111  * @len: how big 'buf' is
 
1114 static inline int do_read(struct uart_port *the_port, char *buf, int len)
 
1116         int prod_ptr, cons_ptr, total;
 
1117         struct ioc3_port *port = get_ioc3_port(the_port);
 
1118         struct ring *inring;
 
1119         struct ring_entry *entry;
 
1120         struct port_hooks *hooks = port->ip_hooks;
 
1125         BUG_ON(!(len >= 0));
 
1128         /* There is a nasty timing issue in the IOC3. When the rx_timer
 
1129          * expires or the rx_high condition arises, we take an interrupt.
 
1130          * At some point while servicing the interrupt, we read bytes from
 
1131          * the ring buffer and re-arm the rx_timer.  However the rx_timer is
 
1132          * not started until the first byte is received *after* it is armed,
 
1133          * and any bytes pending in the rx construction buffers are not drained
 
1134          * to memory until either there are 4 bytes available or the rx_timer
 
1135          * expires.  This leads to a potential situation where data is left
 
1136          * in the construction buffers forever - 1 to 3 bytes were received
 
1137          * after the interrupt was generated but before the rx_timer was
 
1138          * re-armed. At that point as long as no subsequent bytes are received
 
1139          * the timer will never be started and the bytes will remain in the
 
1140          * construction buffer forever.  The solution is to execute a DRAIN
 
1141          * command after rearming the timer.  This way any bytes received before
 
1142          * the DRAIN will be drained to memory, and any bytes received after
 
1143          * the DRAIN will start the TIMER and be drained when it expires.
 
1144          * Luckily, this only needs to be done when the DMA buffer is empty
 
1145          * since there is no requirement that this function return all
 
1146          * available data as long as it returns some.
 
1148         /* Re-arm the timer */
 
1150         writel(port->ip_rx_cons | SRCIR_ARM, &port->ip_serial_regs->srcir);
 
1152         prod_ptr = readl(&port->ip_serial_regs->srpir) & PROD_CONS_MASK;
 
1153         cons_ptr = port->ip_rx_cons;
 
1155         if (prod_ptr == cons_ptr) {
 
1158                 /* Input buffer appears empty, do a flush. */
 
1160                 /* DMA must be enabled for this to work. */
 
1161                 if (!(port->ip_sscr & SSCR_DMA_EN)) {
 
1162                         port->ip_sscr |= SSCR_DMA_EN;
 
1166                 /* Potential race condition: we must reload the srpir after
 
1167                  * issuing the drain command, otherwise we could think the rx
 
1168                  * buffer is empty, then take a very long interrupt, and when
 
1169                  * we come back it's full and we wait forever for the drain to
 
1172                 writel(port->ip_sscr | SSCR_RX_DRAIN,
 
1173                        &port->ip_serial_regs->sscr);
 
1174                 prod_ptr = readl(&port->ip_serial_regs->srpir) & PROD_CONS_MASK;
 
1176                 /* We must not wait for the DRAIN to complete unless there are
 
1177                  * at least 8 bytes (2 ring entries) available to receive the
 
1178                  * data otherwise the DRAIN will never complete and we'll
 
1180                  * In fact, to make things easier, I'll just ignore the flush if
 
1181                  * there is any data at all now available.
 
1183                 if (prod_ptr == cons_ptr) {
 
1185                         while (readl(&port->ip_serial_regs->sscr) &
 
1188                                 if (loop_counter > MAXITER)
 
1192                         /* SIGH. We have to reload the prod_ptr *again* since
 
1193                          * the drain may have caused it to change
 
1195                         prod_ptr = readl(&port->ip_serial_regs->srpir)
 
1199                         port->ip_sscr &= ~SSCR_DMA_EN;
 
1200                         writel(port->ip_sscr, &port->ip_serial_regs->sscr);
 
1203         inring = port->ip_inring;
 
1204         port->ip_flags &= ~READ_ABORTED;
 
1207         loop_counter = 0xfffff; /* to avoid hangs */
 
1209         /* Grab bytes from the hardware */
 
1210         while ((prod_ptr != cons_ptr) && (len > 0)) {
 
1211                 entry = (struct ring_entry *)((caddr_t) inring + cons_ptr);
 
1213                 if (loop_counter-- <= 0) {
 
1214                         printk(KERN_WARNING "IOC3 serial: "
 
1215                                "possible hang condition/"
 
1216                                "port stuck on read (line %d).\n",
 
1221                 /* According to the producer pointer, this ring entry
 
1222                  * must contain some data.  But if the PIO happened faster
 
1223                  * than the DMA, the data may not be available yet, so let's
 
1224                  * wait until it arrives.
 
1226                 if ((entry->ring_allsc & RING_ANY_VALID) == 0) {
 
1227                         /* Indicate the read is aborted so we don't disable
 
1228                          * the interrupt thinking that the consumer is
 
1231                         port->ip_flags |= READ_ABORTED;
 
1236                 /* Load the bytes/status out of the ring entry */
 
1237                 for (byte_num = 0; byte_num < 4 && len > 0; byte_num++) {
 
1238                         sc = &(entry->ring_sc[byte_num]);
 
1240                         /* Check for change in modem state or overrun */
 
1241                         if ((*sc & RXSB_MODEM_VALID)
 
1242                             && (port->ip_notify & N_DDCD)) {
 
1243                                 /* Notify upper layer if DCD dropped */
 
1244                                 if ((port->ip_flags & DCD_ON)
 
1245                                     && !(*sc & RXSB_DCD)) {
 
1246                                         /* If we have already copied some data,
 
1247                                          * return it.  We'll pick up the carrier
 
1248                                          * drop on the next pass.  That way we
 
1249                                          * don't throw away the data that has
 
1250                                          * already been copied back to
 
1251                                          * the caller's buffer.
 
1257                                         port->ip_flags &= ~DCD_ON;
 
1259                                         /* Turn off this notification so the
 
1260                                          * carrier drop protocol won't see it
 
1261                                          * again when it does a read.
 
1263                                         *sc &= ~RXSB_MODEM_VALID;
 
1265                                         /* To keep things consistent, we need
 
1266                                          * to update the consumer pointer so
 
1267                                          * the next reader won't come in and
 
1268                                          * try to read the same ring entries
 
1269                                          * again. This must be done here before
 
1273                                         if ((entry->ring_allsc & RING_ANY_VALID)
 
1275                                                 cons_ptr += (int)sizeof
 
1276                                                     (struct ring_entry);
 
1277                                                 cons_ptr &= PROD_CONS_MASK;
 
1280                                                &port->ip_serial_regs->srcir);
 
1281                                         port->ip_rx_cons = cons_ptr;
 
1283                                         /* Notify upper layer of carrier drop */
 
1284                                         if ((port->ip_notify & N_DDCD)
 
1286                                                 uart_handle_dcd_change
 
1288                                                 wake_up_interruptible
 
1293                                         /* If we had any data to return, we
 
1294                                          * would have returned it above.
 
1299                         if (*sc & RXSB_MODEM_VALID) {
 
1300                                 /* Notify that an input overrun occurred */
 
1301                                 if ((*sc & RXSB_OVERRUN)
 
1302                                     && (port->ip_notify & N_OVERRUN_ERROR)) {
 
1303                                         ioc3_cb_post_ncs(the_port, NCS_OVERRUN);
 
1305                                 /* Don't look at this byte again */
 
1306                                 *sc &= ~RXSB_MODEM_VALID;
 
1309                         /* Check for valid data or RX errors */
 
1310                         if ((*sc & RXSB_DATA_VALID) &&
 
1311                             ((*sc & (RXSB_PAR_ERR
 
1312                                      | RXSB_FRAME_ERR | RXSB_BREAK))
 
1313                              && (port->ip_notify & (N_PARITY_ERROR
 
1316                                 /* There is an error condition on the next byte.
 
1317                                  * If we have already transferred some bytes,
 
1318                                  * we'll stop here. Otherwise if this is the
 
1319                                  * first byte to be read, we'll just transfer
 
1320                                  * it alone after notifying the
 
1321                                  * upper layer of its status.
 
1327                                         if ((*sc & RXSB_PAR_ERR) &&
 
1329                                              ip_notify & N_PARITY_ERROR)) {
 
1330                                                 ioc3_cb_post_ncs(the_port,
 
1333                                         if ((*sc & RXSB_FRAME_ERR) &&
 
1335                                              ip_notify & N_FRAMING_ERROR)) {
 
1336                                                 ioc3_cb_post_ncs(the_port,
 
1339                                         if ((*sc & RXSB_BREAK)
 
1340                                             && (port->ip_notify & N_BREAK)) {
 
1342                                                     (the_port, NCS_BREAK);
 
1347                         if (*sc & RXSB_DATA_VALID) {
 
1348                                 *sc &= ~RXSB_DATA_VALID;
 
1349                                 *buf = entry->ring_data[byte_num];
 
1356                 /* If we used up this entry entirely, go on to the next one,
 
1357                  * otherwise we must have run out of buffer space, so
 
1358                  * leave the consumer pointer here for the next read in case
 
1359                  * there are still unread bytes in this entry.
 
1361                 if ((entry->ring_allsc & RING_ANY_VALID) == 0) {
 
1362                         cons_ptr += (int)sizeof(struct ring_entry);
 
1363                         cons_ptr &= PROD_CONS_MASK;
 
1367         /* Update consumer pointer and re-arm rx timer interrupt */
 
1368         writel(cons_ptr, &port->ip_serial_regs->srcir);
 
1369         port->ip_rx_cons = cons_ptr;
 
1371         /* If we have now dipped below the rx high water mark and we have
 
1372          * rx_high interrupt turned off, we can now turn it back on again.
 
1374         if ((port->ip_flags & INPUT_HIGH) && (((prod_ptr - cons_ptr)
 
1379                                                << PROD_CONS_PTR_OFF))) {
 
1380                 port->ip_flags &= ~INPUT_HIGH;
 
1381                 enable_intrs(port, hooks->intr_rx_high);
 
1387  * receive_chars - upper level read.
 
1388  * @the_port: port to read from
 
1390 static int receive_chars(struct uart_port *the_port)
 
1392         struct tty_struct *tty;
 
1393         unsigned char ch[MAX_CHARS];
 
1394         int read_count = 0, read_room, flip = 0;
 
1395         struct uart_info *info = the_port->info;
 
1396         struct ioc3_port *port = get_ioc3_port(the_port);
 
1397         unsigned long pflags;
 
1399         /* Make sure all the pointers are "good" ones */
 
1402         if (!info->port.tty)
 
1405         if (!(port->ip_flags & INPUT_ENABLE))
 
1408         spin_lock_irqsave(&the_port->lock, pflags);
 
1409         tty = info->port.tty;
 
1411         read_count = do_read(the_port, ch, MAX_CHARS);
 
1412         if (read_count > 0) {
 
1414                 read_room = tty_buffer_request_room(tty, read_count);
 
1415                 tty_insert_flip_string(tty, ch, read_room);
 
1416                 the_port->icount.rx += read_count;
 
1418         spin_unlock_irqrestore(&the_port->lock, pflags);
 
1421                 tty_flip_buffer_push(tty);
 
1427  * ioc3uart_intr_one - lowest level (per port) interrupt handler.
 
1430  * @pending: interrupts to handle
 
1434 ioc3uart_intr_one(struct ioc3_submodule *is,
 
1435                         struct ioc3_driver_data *idd,
 
1436                         unsigned int pending)
 
1438         int port_num = GET_PORT_FROM_SIO_IR(pending);
 
1439         struct port_hooks *hooks;
 
1440         unsigned int rx_high_rd_aborted = 0;
 
1441         unsigned long flags;
 
1442         struct uart_port *the_port;
 
1443         struct ioc3_port *port;
 
1445         struct ioc3_card *card_ptr;
 
1446         unsigned int sio_ir;
 
1448         card_ptr = idd->data[is->id];
 
1449         port = card_ptr->ic_port[port_num].icp_port;
 
1450         hooks = port->ip_hooks;
 
1452         /* Possible race condition here: The tx_mt interrupt bit may be
 
1453          * cleared without the intervention of the interrupt handler,
 
1454          * e.g. by a write.  If the top level interrupt handler reads a
 
1455          * tx_mt, then some other processor does a write, starting up
 
1456          * output, then we come in here, see the tx_mt and stop DMA, the
 
1457          * output started by the other processor will hang.  Thus we can
 
1458          * only rely on tx_mt being legitimate if it is read while the
 
1459          * port lock is held.  Therefore this bit must be ignored in the
 
1460          * passed in interrupt mask which was read by the top level
 
1461          * interrupt handler since the port lock was not held at the time
 
1462          * it was read.  We can only rely on this bit being accurate if it
 
1463          * is read while the port lock is held.  So we'll clear it for now,
 
1464          * and reload it later once we have the port lock.
 
1467         sio_ir = pending & ~(hooks->intr_tx_mt);
 
1468         spin_lock_irqsave(&port->ip_lock, flags);
 
1470         loop_counter = MAXITER; /* to avoid hangs */
 
1475                 if (loop_counter-- <= 0) {
 
1476                         printk(KERN_WARNING "IOC3 serial: "
 
1477                                "possible hang condition/"
 
1478                                "port stuck on interrupt (line %d).\n",
 
1479                                 ((struct uart_port *)port->ip_port)->line);
 
1482                 /* Handle a DCD change */
 
1483                 if (sio_ir & hooks->intr_delta_dcd) {
 
1484                         ioc3_ack(is, idd, hooks->intr_delta_dcd);
 
1485                         shadow = readl(&port->ip_serial_regs->shadow);
 
1487                         if ((port->ip_notify & N_DDCD)
 
1488                             && (shadow & SHADOW_DCD)
 
1489                             && (port->ip_port)) {
 
1490                                 the_port = port->ip_port;
 
1491                                 uart_handle_dcd_change(the_port,
 
1492                                                 shadow & SHADOW_DCD);
 
1493                                 wake_up_interruptible
 
1494                                     (&the_port->info->delta_msr_wait);
 
1495                         } else if ((port->ip_notify & N_DDCD)
 
1496                                    && !(shadow & SHADOW_DCD)) {
 
1497                                 /* Flag delta DCD/no DCD */
 
1498                                 uart_handle_dcd_change(port->ip_port,
 
1499                                                 shadow & SHADOW_DCD);
 
1500                                 port->ip_flags |= DCD_ON;
 
1504                 /* Handle a CTS change */
 
1505                 if (sio_ir & hooks->intr_delta_cts) {
 
1506                         ioc3_ack(is, idd, hooks->intr_delta_cts);
 
1507                         shadow = readl(&port->ip_serial_regs->shadow);
 
1509                         if ((port->ip_notify & N_DCTS) && (port->ip_port)) {
 
1510                                 the_port = port->ip_port;
 
1511                                 uart_handle_cts_change(the_port, shadow
 
1513                                 wake_up_interruptible
 
1514                                     (&the_port->info->delta_msr_wait);
 
1518                 /* rx timeout interrupt.  Must be some data available.  Put this
 
1519                  * before the check for rx_high since servicing this condition
 
1520                  * may cause that condition to clear.
 
1522                 if (sio_ir & hooks->intr_rx_timer) {
 
1523                         ioc3_ack(is, idd, hooks->intr_rx_timer);
 
1524                         if ((port->ip_notify & N_DATA_READY)
 
1525                                                 && (port->ip_port)) {
 
1526                                 receive_chars(port->ip_port);
 
1530                 /* rx high interrupt. Must be after rx_timer.  */
 
1531                 else if (sio_ir & hooks->intr_rx_high) {
 
1532                         /* Data available, notify upper layer */
 
1533                         if ((port->ip_notify & N_DATA_READY) && port->ip_port) {
 
1534                                 receive_chars(port->ip_port);
 
1537                         /* We can't ACK this interrupt.  If receive_chars didn't
 
1538                          * cause the condition to clear, we'll have to disable
 
1539                          * the interrupt until the data is drained.
 
1540                          * If the read was aborted, don't disable the interrupt
 
1541                          * as this may cause us to hang indefinitely.  An
 
1542                          * aborted read generally means that this interrupt
 
1543                          * hasn't been delivered to the cpu yet anyway, even
 
1544                          * though we see it as asserted when we read the sio_ir.
 
1546                         if ((sio_ir = PENDING(card_ptr, idd))
 
1547                                         & hooks->intr_rx_high) {
 
1548                                 if (port->ip_flags & READ_ABORTED) {
 
1549                                         rx_high_rd_aborted++;
 
1552                                         card_ptr->ic_enable &= ~hooks->intr_rx_high;
 
1553                                         port->ip_flags |= INPUT_HIGH;
 
1558                 /* We got a low water interrupt: notify upper layer to
 
1559                  * send more data.  Must come before tx_mt since servicing
 
1560                  * this condition may cause that condition to clear.
 
1562                 if (sio_ir & hooks->intr_tx_explicit) {
 
1563                         port->ip_flags &= ~LOWAT_WRITTEN;
 
1564                         ioc3_ack(is, idd, hooks->intr_tx_explicit);
 
1565                         if (port->ip_notify & N_OUTPUT_LOWAT)
 
1566                                 ioc3_cb_output_lowat(port);
 
1569                 /* Handle tx_mt.  Must come after tx_explicit.  */
 
1570                 else if (sio_ir & hooks->intr_tx_mt) {
 
1571                         /* If we are expecting a lowat notification
 
1572                          * and we get to this point it probably means that for
 
1573                          * some reason the tx_explicit didn't work as expected
 
1574                          * (that can legitimately happen if the output buffer is
 
1575                          * filled up in just the right way).
 
1576                          * So send the notification now.
 
1578                         if (port->ip_notify & N_OUTPUT_LOWAT) {
 
1579                                 ioc3_cb_output_lowat(port);
 
1581                                 /* We need to reload the sio_ir since the lowat
 
1582                                  * call may have caused another write to occur,
 
1583                                  * clearing the tx_mt condition.
 
1585                                 sio_ir = PENDING(card_ptr, idd);
 
1588                         /* If the tx_mt condition still persists even after the
 
1589                          * lowat call, we've got some work to do.
 
1591                         if (sio_ir & hooks->intr_tx_mt) {
 
1592                                 /* If we are not currently expecting DMA input,
 
1593                                  * and the transmitter has just gone idle,
 
1594                                  * there is no longer any reason for DMA, so
 
1597                                 if (!(port->ip_notify
 
1598                                       & (N_DATA_READY | N_DDCD))) {
 
1599                                         BUG_ON(!(port->ip_sscr
 
1601                                         port->ip_sscr &= ~SSCR_DMA_EN;
 
1602                                         writel(port->ip_sscr,
 
1603                                                &port->ip_serial_regs->sscr);
 
1605                                 /* Prevent infinite tx_mt interrupt */
 
1606                                 card_ptr->ic_enable &= ~hooks->intr_tx_mt;
 
1609                 sio_ir = PENDING(card_ptr, idd);
 
1611                 /* if the read was aborted and only hooks->intr_rx_high,
 
1612                  * clear hooks->intr_rx_high, so we do not loop forever.
 
1615                 if (rx_high_rd_aborted && (sio_ir == hooks->intr_rx_high)) {
 
1616                         sio_ir &= ~hooks->intr_rx_high;
 
1618         } while (sio_ir & hooks->intr_all);
 
1620         spin_unlock_irqrestore(&port->ip_lock, flags);
 
1621         ioc3_enable(is, idd, card_ptr->ic_enable);
 
1626  * ioc3uart_intr - field all serial interrupts
 
1629  * @pending: interrupts to handle
 
1633 static int ioc3uart_intr(struct ioc3_submodule *is,
 
1634                         struct ioc3_driver_data *idd,
 
1635                         unsigned int pending)
 
1640          * The upper level interrupt handler sends interrupts for both ports
 
1641          * here. So we need to call for each port with its interrupts.
 
1644         if (pending & SIO_IR_SA)
 
1645                 ret |= ioc3uart_intr_one(is, idd, pending & SIO_IR_SA);
 
1646         if (pending & SIO_IR_SB)
 
1647                 ret |= ioc3uart_intr_one(is, idd, pending & SIO_IR_SB);
 
1654  * @port: Port to operate with (we ignore since we only have one port)
 
1657 static const char *ic3_type(struct uart_port *the_port)
 
1659         if (IS_RS232(the_port->line))
 
1660                 return "SGI IOC3 Serial [rs232]";
 
1662                 return "SGI IOC3 Serial [rs422]";
 
1666  * ic3_tx_empty - Is the transmitter empty?
 
1667  * @port: Port to operate on
 
1670 static unsigned int ic3_tx_empty(struct uart_port *the_port)
 
1672         unsigned int ret = 0;
 
1673         struct ioc3_port *port = get_ioc3_port(the_port);
 
1675         if (readl(&port->ip_serial_regs->shadow) & SHADOW_TEMT)
 
1681  * ic3_stop_tx - stop the transmitter
 
1682  * @port: Port to operate on
 
1685 static void ic3_stop_tx(struct uart_port *the_port)
 
1687         struct ioc3_port *port = get_ioc3_port(the_port);
 
1690                 set_notification(port, N_OUTPUT_LOWAT, 0);
 
1694  * ic3_stop_rx - stop the receiver
 
1695  * @port: Port to operate on
 
1698 static void ic3_stop_rx(struct uart_port *the_port)
 
1700         struct ioc3_port *port = get_ioc3_port(the_port);
 
1703                 port->ip_flags &= ~INPUT_ENABLE;
 
1707  * null_void_function
 
1708  * @port: Port to operate on
 
1711 static void null_void_function(struct uart_port *the_port)
 
1716  * ic3_shutdown - shut down the port - free irq and disable
 
1717  * @port: port to shut down
 
1720 static void ic3_shutdown(struct uart_port *the_port)
 
1722         unsigned long port_flags;
 
1723         struct ioc3_port *port;
 
1724         struct uart_info *info;
 
1726         port = get_ioc3_port(the_port);
 
1730         info = the_port->info;
 
1731         wake_up_interruptible(&info->delta_msr_wait);
 
1733         spin_lock_irqsave(&the_port->lock, port_flags);
 
1734         set_notification(port, N_ALL, 0);
 
1735         spin_unlock_irqrestore(&the_port->lock, port_flags);
 
1739  * ic3_set_mctrl - set control lines (dtr, rts, etc)
 
1740  * @port: Port to operate on
 
1741  * @mctrl: Lines to set/unset
 
1744 static void ic3_set_mctrl(struct uart_port *the_port, unsigned int mctrl)
 
1746         unsigned char mcr = 0;
 
1748         if (mctrl & TIOCM_RTS)
 
1749                 mcr |= UART_MCR_RTS;
 
1750         if (mctrl & TIOCM_DTR)
 
1751                 mcr |= UART_MCR_DTR;
 
1752         if (mctrl & TIOCM_OUT1)
 
1753                 mcr |= UART_MCR_OUT1;
 
1754         if (mctrl & TIOCM_OUT2)
 
1755                 mcr |= UART_MCR_OUT2;
 
1756         if (mctrl & TIOCM_LOOP)
 
1757                 mcr |= UART_MCR_LOOP;
 
1759         set_mcr(the_port, mcr, SHADOW_DTR);
 
1763  * ic3_get_mctrl - get control line info
 
1764  * @port: port to operate on
 
1767 static unsigned int ic3_get_mctrl(struct uart_port *the_port)
 
1769         struct ioc3_port *port = get_ioc3_port(the_port);
 
1771         unsigned int ret = 0;
 
1776         shadow = readl(&port->ip_serial_regs->shadow);
 
1777         if (shadow & SHADOW_DCD)
 
1779         if (shadow & SHADOW_DR)
 
1781         if (shadow & SHADOW_CTS)
 
1787  * ic3_start_tx - Start transmitter. Called with the_port->lock
 
1788  * @port: Port to operate on
 
1791 static void ic3_start_tx(struct uart_port *the_port)
 
1793         struct ioc3_port *port = get_ioc3_port(the_port);
 
1796                 set_notification(port, N_OUTPUT_LOWAT, 1);
 
1797                 enable_intrs(port, port->ip_hooks->intr_tx_mt);
 
1802  * ic3_break_ctl - handle breaks
 
1803  * @port: Port to operate on
 
1804  * @break_state: Break state
 
1807 static void ic3_break_ctl(struct uart_port *the_port, int break_state)
 
1812  * ic3_startup - Start up the serial port - always return 0 (We're always on)
 
1813  * @port: Port to operate on
 
1816 static int ic3_startup(struct uart_port *the_port)
 
1819         struct ioc3_port *port;
 
1820         struct ioc3_card *card_ptr;
 
1821         unsigned long port_flags;
 
1827         port = get_ioc3_port(the_port);
 
1832         card_ptr = port->ip_card;
 
1833         port->ip_port = the_port;
 
1840         /* Start up the serial port */
 
1841         spin_lock_irqsave(&the_port->lock, port_flags);
 
1842         retval = ic3_startup_local(the_port);
 
1843         spin_unlock_irqrestore(&the_port->lock, port_flags);
 
1848  * ic3_set_termios - set termios stuff
 
1849  * @port: port to operate on
 
1850  * @termios: New settings
 
1855 ic3_set_termios(struct uart_port *the_port,
 
1856                 struct ktermios *termios, struct ktermios *old_termios)
 
1858         unsigned long port_flags;
 
1860         spin_lock_irqsave(&the_port->lock, port_flags);
 
1861         ioc3_change_speed(the_port, termios, old_termios);
 
1862         spin_unlock_irqrestore(&the_port->lock, port_flags);
 
1866  * ic3_request_port - allocate resources for port - no op....
 
1867  * @port: port to operate on
 
1870 static int ic3_request_port(struct uart_port *port)
 
1875 /* Associate the uart functions above - given to serial core */
 
1876 static struct uart_ops ioc3_ops = {
 
1877         .tx_empty = ic3_tx_empty,
 
1878         .set_mctrl = ic3_set_mctrl,
 
1879         .get_mctrl = ic3_get_mctrl,
 
1880         .stop_tx = ic3_stop_tx,
 
1881         .start_tx = ic3_start_tx,
 
1882         .stop_rx = ic3_stop_rx,
 
1883         .enable_ms = null_void_function,
 
1884         .break_ctl = ic3_break_ctl,
 
1885         .startup = ic3_startup,
 
1886         .shutdown = ic3_shutdown,
 
1887         .set_termios = ic3_set_termios,
 
1889         .release_port = null_void_function,
 
1890         .request_port = ic3_request_port,
 
1894  * Boot-time initialization code
 
1897 static struct uart_driver ioc3_uart = {
 
1898         .owner = THIS_MODULE,
 
1899         .driver_name = "ioc3_serial",
 
1900         .dev_name = DEVICE_NAME,
 
1901         .major = DEVICE_MAJOR,
 
1902         .minor = DEVICE_MINOR,
 
1903         .nr = MAX_LOGICAL_PORTS
 
1907  * ioc3_serial_core_attach - register with serial core
 
1908  *              This is done during pci probing
 
1909  * @is: submodule struct for this
 
1910  * @idd: handle for this card
 
1912 static inline int ioc3_serial_core_attach( struct ioc3_submodule *is,
 
1913                                 struct ioc3_driver_data *idd)
 
1915         struct ioc3_port *port;
 
1916         struct uart_port *the_port;
 
1917         struct ioc3_card *card_ptr = idd->data[is->id];
 
1919         struct pci_dev *pdev = idd->pdev;
 
1921         DPRINT_CONFIG(("%s: attach pdev 0x%p - card_ptr 0x%p\n",
 
1922                        __func__, pdev, (void *)card_ptr));
 
1927         /* once around for each logical port on this card */
 
1928         for (ii = 0; ii < LOGICAL_PORTS_PER_CARD; ii++) {
 
1929                 phys_port = GET_PHYSICAL_PORT(ii);
 
1930                 the_port = &card_ptr->ic_port[phys_port].
 
1931                                 icp_uart_port[GET_LOGICAL_PORT(ii)];
 
1932                 port = card_ptr->ic_port[phys_port].icp_port;
 
1933                 port->ip_port = the_port;
 
1935                 DPRINT_CONFIG(("%s: attach the_port 0x%p / port 0x%p [%d/%d]\n",
 
1936                         __func__, (void *)the_port, (void *)port,
 
1939                 /* membase, iobase and mapbase just need to be non-0 */
 
1940                 the_port->membase = (unsigned char __iomem *)1;
 
1941                 the_port->iobase = (pdev->bus->number << 16) |  ii;
 
1942                 the_port->line = (Num_of_ioc3_cards << 2) | ii;
 
1943                 the_port->mapbase = 1;
 
1944                 the_port->type = PORT_16550A;
 
1945                 the_port->fifosize = FIFO_SIZE;
 
1946                 the_port->ops = &ioc3_ops;
 
1947                 the_port->irq = idd->irq_io;
 
1948                 the_port->dev = &pdev->dev;
 
1950                 if (uart_add_one_port(&ioc3_uart, the_port) < 0) {
 
1952                           "%s: unable to add port %d bus %d\n",
 
1953                                __func__, the_port->line, pdev->bus->number);
 
1955                         DPRINT_CONFIG(("IOC3 serial port %d irq %d bus %d\n",
 
1956                           the_port->line, the_port->irq, pdev->bus->number));
 
1959                 /* all ports are rs232 for now */
 
1960                 if (IS_PHYSICAL_PORT(ii))
 
1961                         ioc3_set_proto(port, PROTO_RS232);
 
1967  * ioc3uart_remove - register detach function
 
1968  * @is: submodule struct for this submodule
 
1969  * @idd: ioc3 driver data for this submodule
 
1972 static int ioc3uart_remove(struct ioc3_submodule *is,
 
1973                         struct ioc3_driver_data *idd)
 
1975         struct ioc3_card *card_ptr = idd->data[is->id];
 
1976         struct uart_port *the_port;
 
1977         struct ioc3_port *port;
 
1981                 for (ii = 0; ii < LOGICAL_PORTS_PER_CARD; ii++) {
 
1982                         the_port = &card_ptr->ic_port[GET_PHYSICAL_PORT(ii)].
 
1983                                         icp_uart_port[GET_LOGICAL_PORT(ii)];
 
1985                                 uart_remove_one_port(&ioc3_uart, the_port);
 
1986                         port = card_ptr->ic_port[GET_PHYSICAL_PORT(ii)].icp_port;
 
1987                         if (port && IS_PHYSICAL_PORT(ii)
 
1988                                         && (GET_PHYSICAL_PORT(ii) == 0)) {
 
1989                                 pci_free_consistent(port->ip_idd->pdev,
 
1990                                         TOTAL_RING_BUF_SIZE,
 
1991                                         (void *)port->ip_cpu_ringbuf,
 
1992                                         port->ip_dma_ringbuf);
 
1994                                 card_ptr->ic_port[GET_PHYSICAL_PORT(ii)].
 
1999                 idd->data[is->id] = NULL;
 
2005  * ioc3uart_probe - card probe function called from shim driver
 
2006  * @is: submodule struct for this submodule
 
2007  * @idd: ioc3 driver data for this card
 
2010 static int __devinit
 
2011 ioc3uart_probe(struct ioc3_submodule *is, struct ioc3_driver_data *idd)
 
2013         struct pci_dev *pdev = idd->pdev;
 
2014         struct ioc3_card *card_ptr;
 
2016         struct ioc3_port *port;
 
2017         struct ioc3_port *ports[PORTS_PER_CARD];
 
2020         DPRINT_CONFIG(("%s (0x%p, 0x%p)\n", __func__, is, idd));
 
2022         card_ptr = kzalloc(sizeof(struct ioc3_card), GFP_KERNEL);
 
2024                 printk(KERN_WARNING "ioc3_attach_one"
 
2025                        ": unable to get memory for the IOC3\n");
 
2028         idd->data[is->id] = card_ptr;
 
2029         Submodule_slot = is->id;
 
2031         writel(((UARTA_BASE >> 3) << SIO_CR_SER_A_BASE_SHIFT) |
 
2032                 ((UARTB_BASE >> 3) << SIO_CR_SER_B_BASE_SHIFT) |
 
2033                 (0xf << SIO_CR_CMD_PULSE_SHIFT), &idd->vma->sio_cr);
 
2035         pci_write_config_dword(pdev, PCI_LAT, 0xff00);
 
2037         /* Enable serial port mode select generic PIO pins as outputs */
 
2038         ioc3_gpcr_set(idd, GPCR_UARTA_MODESEL | GPCR_UARTB_MODESEL);
 
2040         /* Create port structures for each port */
 
2041         for (phys_port = 0; phys_port < PORTS_PER_CARD; phys_port++) {
 
2042                 port = kzalloc(sizeof(struct ioc3_port), GFP_KERNEL);
 
2045                                "IOC3 serial memory not available for port\n");
 
2048                 spin_lock_init(&port->ip_lock);
 
2050                 /* we need to remember the previous ones, to point back to
 
2051                  * them farther down - setting up the ring buffers.
 
2053                 ports[phys_port] = port;
 
2055                 /* init to something useful */
 
2056                 card_ptr->ic_port[phys_port].icp_port = port;
 
2059                 port->ip_baud = 9600;
 
2060                 port->ip_card = card_ptr;
 
2061                 port->ip_hooks = &hooks_array[phys_port];
 
2063                 /* Setup each port */
 
2064                 if (phys_port == 0) {
 
2065                         port->ip_serial_regs = &idd->vma->port_a;
 
2066                         port->ip_uart_regs = &idd->vma->sregs.uarta;
 
2068                         DPRINT_CONFIG(("%s : Port A ip_serial_regs 0x%p "
 
2069                                        "ip_uart_regs 0x%p\n",
 
2071                                        (void *)port->ip_serial_regs,
 
2072                                        (void *)port->ip_uart_regs));
 
2074                         /* setup ring buffers */
 
2075                         port->ip_cpu_ringbuf = pci_alloc_consistent(pdev,
 
2076                                 TOTAL_RING_BUF_SIZE, &port->ip_dma_ringbuf);
 
2078                         BUG_ON(!((((int64_t) port->ip_dma_ringbuf) &
 
2079                                   (TOTAL_RING_BUF_SIZE - 1)) == 0));
 
2080                         port->ip_inring = RING(port, RX_A);
 
2081                         port->ip_outring = RING(port, TX_A);
 
2082                         DPRINT_CONFIG(("%s : Port A ip_cpu_ringbuf 0x%p "
 
2083                                        "ip_dma_ringbuf 0x%p, ip_inring 0x%p "
 
2084                                         "ip_outring 0x%p\n",
 
2086                                        (void *)port->ip_cpu_ringbuf,
 
2087                                        (void *)port->ip_dma_ringbuf,
 
2088                                        (void *)port->ip_inring,
 
2089                                        (void *)port->ip_outring));
 
2092                         port->ip_serial_regs = &idd->vma->port_b;
 
2093                         port->ip_uart_regs = &idd->vma->sregs.uartb;
 
2095                         DPRINT_CONFIG(("%s : Port B ip_serial_regs 0x%p "
 
2096                                        "ip_uart_regs 0x%p\n",
 
2098                                        (void *)port->ip_serial_regs,
 
2099                                        (void *)port->ip_uart_regs));
 
2101                         /* share the ring buffers */
 
2102                         port->ip_dma_ringbuf =
 
2103                             ports[phys_port - 1]->ip_dma_ringbuf;
 
2104                         port->ip_cpu_ringbuf =
 
2105                             ports[phys_port - 1]->ip_cpu_ringbuf;
 
2106                         port->ip_inring = RING(port, RX_B);
 
2107                         port->ip_outring = RING(port, TX_B);
 
2108                         DPRINT_CONFIG(("%s : Port B ip_cpu_ringbuf 0x%p "
 
2109                                        "ip_dma_ringbuf 0x%p, ip_inring 0x%p "
 
2110                                         "ip_outring 0x%p\n",
 
2112                                        (void *)port->ip_cpu_ringbuf,
 
2113                                        (void *)port->ip_dma_ringbuf,
 
2114                                        (void *)port->ip_inring,
 
2115                                        (void *)port->ip_outring));
 
2118                 DPRINT_CONFIG(("%s : port %d [addr 0x%p] card_ptr 0x%p",
 
2120                                phys_port, (void *)port, (void *)card_ptr));
 
2121                 DPRINT_CONFIG((" ip_serial_regs 0x%p ip_uart_regs 0x%p\n",
 
2122                                (void *)port->ip_serial_regs,
 
2123                                (void *)port->ip_uart_regs));
 
2125                 /* Initialize the hardware for IOC3 */
 
2128                 DPRINT_CONFIG(("%s: phys_port %d port 0x%p inring 0x%p "
 
2131                                phys_port, (void *)port,
 
2132                                (void *)port->ip_inring,
 
2133                                (void *)port->ip_outring));
 
2137         /* register port with the serial core */
 
2139         if ((ret = ioc3_serial_core_attach(is, idd)))
 
2142         Num_of_ioc3_cards++;
 
2146         /* error exits that give back resources */
 
2152 static struct ioc3_submodule ioc3uart_submodule = {
 
2154         .probe = ioc3uart_probe,
 
2155         .remove = ioc3uart_remove,
 
2156         /* call .intr for both ports initially */
 
2157         .irq_mask = SIO_IR_SA | SIO_IR_SB,
 
2158         .intr = ioc3uart_intr,
 
2159         .owner = THIS_MODULE,
 
2163  * ioc3_detect - module init called,
 
2165 static int __devinit ioc3uart_init(void)
 
2169         /* register with serial core */
 
2170         if ((ret = uart_register_driver(&ioc3_uart)) < 0) {
 
2172                        "%s: Couldn't register IOC3 uart serial driver\n",
 
2176         ret = ioc3_register_submodule(&ioc3uart_submodule);
 
2178                 uart_unregister_driver(&ioc3_uart);
 
2182 static void __devexit ioc3uart_exit(void)
 
2184         ioc3_unregister_submodule(&ioc3uart_submodule);
 
2185         uart_unregister_driver(&ioc3_uart);
 
2188 module_init(ioc3uart_init);
 
2189 module_exit(ioc3uart_exit);
 
2191 MODULE_AUTHOR("Pat Gefre - Silicon Graphics Inc. (SGI) <pfg@sgi.com>");
 
2192 MODULE_DESCRIPTION("Serial PCI driver module for SGI IOC3 card");
 
2193 MODULE_LICENSE("GPL");