2  * rocket_int.h --- internal header file for rocket.c
 
   4  * Written by Theodore Ts'o, Copyright 1997.
 
   5  * Copyright 1997 Comtrol Corporation.  
 
  10  * Definition of the types in rcktpt_type
 
  12 #define ROCKET_TYPE_NORMAL      0
 
  13 #define ROCKET_TYPE_MODEM       1
 
  14 #define ROCKET_TYPE_MODEMII     2
 
  15 #define ROCKET_TYPE_MODEMIII    3
 
  16 #define ROCKET_TYPE_PC104       4
 
  18 #include <linux/mutex.h>
 
  21 #include <asm/byteorder.h>
 
  23 typedef unsigned char Byte_t;
 
  24 typedef unsigned int ByteIO_t;
 
  26 typedef unsigned int Word_t;
 
  27 typedef unsigned int WordIO_t;
 
  29 typedef unsigned int DWordIO_t;
 
  32  * Note!  Normally the Linux I/O macros already take care of
 
  33  * byte-swapping the I/O instructions.  However, all accesses using
 
  34  * sOutDW aren't really 32-bit accesses, but should be handled in byte
 
  35  * order.  Hence the use of the cpu_to_le32() macro to byte-swap
 
  36  * things to no-op the byte swapping done by the big-endian outl()
 
  40 static inline void sOutB(unsigned short port, unsigned char value)
 
  42 #ifdef ROCKET_DEBUG_IO
 
  43         printk(KERN_DEBUG "sOutB(%x, %x)...\n", port, value);
 
  48 static inline void sOutW(unsigned short port, unsigned short value)
 
  50 #ifdef ROCKET_DEBUG_IO
 
  51         printk(KERN_DEBUG "sOutW(%x, %x)...\n", port, value);
 
  56 static inline void out32(unsigned short port, Byte_t *p)
 
  58         u32 value = get_unaligned_le32(p);
 
  59 #ifdef ROCKET_DEBUG_IO
 
  60         printk(KERN_DEBUG "out32(%x, %lx)...\n", port, value);
 
  65 static inline unsigned char sInB(unsigned short port)
 
  70 static inline unsigned short sInW(unsigned short port)
 
  75 /* This is used to move arrays of bytes so byte swapping isn't appropriate. */
 
  76 #define sOutStrW(port, addr, count) if (count) outsw(port, addr, count)
 
  77 #define sInStrW(port, addr, count) if (count) insw(port, addr, count)
 
  80 #define AIOP_CTL_SIZE 4
 
  81 #define CHAN_AIOP_SIZE 8
 
  82 #define MAX_PORTS_PER_AIOP 8
 
  83 #define MAX_AIOPS_PER_BOARD 4
 
  84 #define MAX_PORTS_PER_BOARD 32
 
  91 /* Controller ID numbers */
 
  92 #define CTLID_NULL  -1          /* no controller exists */
 
  93 #define CTLID_0001  0x0001      /* controller release 1 */
 
  95 /* AIOP ID numbers, identifies AIOP type implementing channel */
 
  96 #define AIOPID_NULL -1          /* no AIOP or channel exists */
 
  97 #define AIOPID_0001 0x0001      /* AIOP release 1 */
 
  99 /************************************************************************
 
 100  Global Register Offsets - Direct Access - Fixed values
 
 101 ************************************************************************/
 
 103 #define _CMD_REG   0x38         /* Command Register            8    Write */
 
 104 #define _INT_CHAN  0x39         /* Interrupt Channel Register  8    Read */
 
 105 #define _INT_MASK  0x3A         /* Interrupt Mask Register     8    Read / Write */
 
 106 #define _UNUSED    0x3B         /* Unused                      8 */
 
 107 #define _INDX_ADDR 0x3C         /* Index Register Address      16   Write */
 
 108 #define _INDX_DATA 0x3E         /* Index Register Data         8/16 Read / Write */
 
 110 /************************************************************************
 
 111  Channel Register Offsets for 1st channel in AIOP - Direct Access
 
 112 ************************************************************************/
 
 113 #define _TD0       0x00         /* Transmit Data               16   Write */
 
 114 #define _RD0       0x00         /* Receive Data                16   Read */
 
 115 #define _CHN_STAT0 0x20         /* Channel Status              8/16 Read / Write */
 
 116 #define _FIFO_CNT0 0x10         /* Transmit/Receive FIFO Count 16   Read */
 
 117 #define _INT_ID0   0x30         /* Interrupt Identification    8    Read */
 
 119 /************************************************************************
 
 120  Tx Control Register Offsets - Indexed - External - Fixed
 
 121 ************************************************************************/
 
 122 #define _TX_ENBLS  0x980        /* Tx Processor Enables Register 8 Read / Write */
 
 123 #define _TXCMP1    0x988        /* Transmit Compare Value #1     8 Read / Write */
 
 124 #define _TXCMP2    0x989        /* Transmit Compare Value #2     8 Read / Write */
 
 125 #define _TXREP1B1  0x98A        /* Tx Replace Value #1 - Byte 1  8 Read / Write */
 
 126 #define _TXREP1B2  0x98B        /* Tx Replace Value #1 - Byte 2  8 Read / Write */
 
 127 #define _TXREP2    0x98C        /* Transmit Replace Value #2     8 Read / Write */
 
 129 /************************************************************************
 
 130 Memory Controller Register Offsets - Indexed - External - Fixed
 
 131 ************************************************************************/
 
 132 #define _RX_FIFO    0x000       /* Rx FIFO */
 
 133 #define _TX_FIFO    0x800       /* Tx FIFO */
 
 134 #define _RXF_OUTP   0x990       /* Rx FIFO OUT pointer        16 Read / Write */
 
 135 #define _RXF_INP    0x992       /* Rx FIFO IN pointer         16 Read / Write */
 
 136 #define _TXF_OUTP   0x994       /* Tx FIFO OUT pointer        8  Read / Write */
 
 137 #define _TXF_INP    0x995       /* Tx FIFO IN pointer         8  Read / Write */
 
 138 #define _TXP_CNT    0x996       /* Tx Priority Count          8  Read / Write */
 
 139 #define _TXP_PNTR   0x997       /* Tx Priority Pointer        8  Read / Write */
 
 141 #define PRI_PEND    0x80        /* Priority data pending (bit7, Tx pri cnt) */
 
 142 #define TXFIFO_SIZE 255         /* size of Tx FIFO */
 
 143 #define RXFIFO_SIZE 1023        /* size of Rx FIFO */
 
 145 /************************************************************************
 
 146 Tx Priority Buffer - Indexed - External - Fixed
 
 147 ************************************************************************/
 
 148 #define _TXP_BUF    0x9C0       /* Tx Priority Buffer  32  Bytes   Read / Write */
 
 149 #define TXP_SIZE    0x20        /* 32 bytes */
 
 151 /************************************************************************
 
 152 Channel Register Offsets - Indexed - Internal - Fixed
 
 153 ************************************************************************/
 
 155 #define _TX_CTRL    0xFF0       /* Transmit Control               16  Write */
 
 156 #define _RX_CTRL    0xFF2       /* Receive Control                 8  Write */
 
 157 #define _BAUD       0xFF4       /* Baud Rate                      16  Write */
 
 158 #define _CLK_PRE    0xFF6       /* Clock Prescaler                 8  Write */
 
 160 #define STMBREAK   0x08         /* BREAK */
 
 161 #define STMFRAME   0x04         /* framing error */
 
 162 #define STMRCVROVR 0x02         /* receiver over run error */
 
 163 #define STMPARITY  0x01         /* parity error */
 
 164 #define STMERROR   (STMBREAK | STMFRAME | STMPARITY)
 
 165 #define STMBREAKH   0x800       /* BREAK */
 
 166 #define STMFRAMEH   0x400       /* framing error */
 
 167 #define STMRCVROVRH 0x200       /* receiver over run error */
 
 168 #define STMPARITYH  0x100       /* parity error */
 
 169 #define STMERRORH   (STMBREAKH | STMFRAMEH | STMPARITYH)
 
 171 #define CTS_ACT   0x20          /* CTS input asserted */
 
 172 #define DSR_ACT   0x10          /* DSR input asserted */
 
 173 #define CD_ACT    0x08          /* CD input asserted */
 
 174 #define TXFIFOMT  0x04          /* Tx FIFO is empty */
 
 175 #define TXSHRMT   0x02          /* Tx shift register is empty */
 
 176 #define RDA       0x01          /* Rx data available */
 
 177 #define DRAINED (TXFIFOMT | TXSHRMT)    /* indicates Tx is drained */
 
 179 #define STATMODE  0x8000        /* status mode enable bit */
 
 180 #define RXFOVERFL 0x2000        /* receive FIFO overflow */
 
 181 #define RX2MATCH  0x1000        /* receive compare byte 2 match */
 
 182 #define RX1MATCH  0x0800        /* receive compare byte 1 match */
 
 183 #define RXBREAK   0x0400        /* received BREAK */
 
 184 #define RXFRAME   0x0200        /* received framing error */
 
 185 #define RXPARITY  0x0100        /* received parity error */
 
 186 #define STATERROR (RXBREAK | RXFRAME | RXPARITY)
 
 188 #define CTSFC_EN  0x80          /* CTS flow control enable bit */
 
 189 #define RTSTOG_EN 0x40          /* RTS toggle enable bit */
 
 190 #define TXINT_EN  0x10          /* transmit interrupt enable */
 
 191 #define STOP2     0x08          /* enable 2 stop bits (0 = 1 stop) */
 
 192 #define PARITY_EN 0x04          /* enable parity (0 = no parity) */
 
 193 #define EVEN_PAR  0x02          /* even parity (0 = odd parity) */
 
 194 #define DATA8BIT  0x01          /* 8 bit data (0 = 7 bit data) */
 
 196 #define SETBREAK  0x10          /* send break condition (must clear) */
 
 197 #define LOCALLOOP 0x08          /* local loopback set for test */
 
 198 #define SET_DTR   0x04          /* assert DTR */
 
 199 #define SET_RTS   0x02          /* assert RTS */
 
 200 #define TX_ENABLE 0x01          /* enable transmitter */
 
 202 #define RTSFC_EN  0x40          /* RTS flow control enable */
 
 203 #define RXPROC_EN 0x20          /* receive processor enable */
 
 204 #define TRIG_NO   0x00          /* Rx FIFO trigger level 0 (no trigger) */
 
 205 #define TRIG_1    0x08          /* trigger level 1 char */
 
 206 #define TRIG_1_2  0x10          /* trigger level 1/2 */
 
 207 #define TRIG_7_8  0x18          /* trigger level 7/8 */
 
 208 #define TRIG_MASK 0x18          /* trigger level mask */
 
 209 #define SRCINT_EN 0x04          /* special Rx condition interrupt enable */
 
 210 #define RXINT_EN  0x02          /* Rx interrupt enable */
 
 211 #define MCINT_EN  0x01          /* modem change interrupt enable */
 
 213 #define RXF_TRIG  0x20          /* Rx FIFO trigger level interrupt */
 
 214 #define TXFIFO_MT 0x10          /* Tx FIFO empty interrupt */
 
 215 #define SRC_INT   0x08          /* special receive condition interrupt */
 
 216 #define DELTA_CD  0x04          /* CD change interrupt */
 
 217 #define DELTA_CTS 0x02          /* CTS change interrupt */
 
 218 #define DELTA_DSR 0x01          /* DSR change interrupt */
 
 220 #define REP1W2_EN 0x10          /* replace byte 1 with 2 bytes enable */
 
 221 #define IGN2_EN   0x08          /* ignore byte 2 enable */
 
 222 #define IGN1_EN   0x04          /* ignore byte 1 enable */
 
 223 #define COMP2_EN  0x02          /* compare byte 2 enable */
 
 224 #define COMP1_EN  0x01          /* compare byte 1 enable */
 
 226 #define RESET_ALL 0x80          /* reset AIOP (all channels) */
 
 227 #define TXOVERIDE 0x40          /* Transmit software off override */
 
 228 #define RESETUART 0x20          /* reset channel's UART */
 
 229 #define RESTXFCNT 0x10          /* reset channel's Tx FIFO count register */
 
 230 #define RESRXFCNT 0x08          /* reset channel's Rx FIFO count register */
 
 232 #define INTSTAT0  0x01          /* AIOP 0 interrupt status */
 
 233 #define INTSTAT1  0x02          /* AIOP 1 interrupt status */
 
 234 #define INTSTAT2  0x04          /* AIOP 2 interrupt status */
 
 235 #define INTSTAT3  0x08          /* AIOP 3 interrupt status */
 
 237 #define INTR_EN   0x08          /* allow interrupts to host */
 
 238 #define INT_STROB 0x04          /* strobe and clear interrupt line (EOI) */
 
 240 /**************************************************************************
 
 241  MUDBAC remapped for PCI
 
 242 **************************************************************************/
 
 244 #define _CFG_INT_PCI  0x40
 
 245 #define _PCI_INT_FUNC 0x3A
 
 247 #define PCI_STROB 0x2000        /* bit 13 of int aiop register */
 
 248 #define INTR_EN_PCI   0x0010    /* allow interrupts to host */
 
 251  * Definitions for Universal PCI board registers
 
 253 #define _PCI_9030_INT_CTRL      0x4c          /* Offsets from BAR1 */
 
 254 #define _PCI_9030_GPIO_CTRL     0x54
 
 255 #define PCI_INT_CTRL_AIOP       0x0001
 
 256 #define PCI_GPIO_CTRL_8PORT     0x4000
 
 257 #define _PCI_9030_RING_IND      0xc0          /* Offsets from BAR1 */
 
 259 #define CHAN3_EN  0x08          /* enable AIOP 3 */
 
 260 #define CHAN2_EN  0x04          /* enable AIOP 2 */
 
 261 #define CHAN1_EN  0x02          /* enable AIOP 1 */
 
 262 #define CHAN0_EN  0x01          /* enable AIOP 0 */
 
 263 #define FREQ_DIS  0x00
 
 264 #define FREQ_274HZ 0x60
 
 265 #define FREQ_137HZ 0x50
 
 266 #define FREQ_69HZ  0x40
 
 267 #define FREQ_34HZ  0x30
 
 268 #define FREQ_17HZ  0x20
 
 269 #define FREQ_9HZ   0x10
 
 270 #define PERIODIC_ONLY 0x80      /* only PERIODIC interrupt */
 
 272 #define CHANINT_EN 0x0100       /* flags to enable/disable channel ints */
 
 275 #define RREGDATASIZE 52
 
 278  * AIOP interrupt bits for ISA/PCI boards and UPCI boards.
 
 280 #define AIOP_INTR_BIT_0         0x0001
 
 281 #define AIOP_INTR_BIT_1         0x0002
 
 282 #define AIOP_INTR_BIT_2         0x0004
 
 283 #define AIOP_INTR_BIT_3         0x0008
 
 285 #define AIOP_INTR_BITS ( \
 
 291 #define UPCI_AIOP_INTR_BIT_0    0x0004
 
 292 #define UPCI_AIOP_INTR_BIT_1    0x0020
 
 293 #define UPCI_AIOP_INTR_BIT_2    0x0100
 
 294 #define UPCI_AIOP_INTR_BIT_3    0x0800
 
 296 #define UPCI_AIOP_INTR_BITS ( \
 
 297         UPCI_AIOP_INTR_BIT_0 \
 
 298         | UPCI_AIOP_INTR_BIT_1 \
 
 299         | UPCI_AIOP_INTR_BIT_2 \
 
 300         | UPCI_AIOP_INTR_BIT_3)
 
 302 /* Controller level information structure */
 
 318         int AltChanRingIndicator;
 
 319         ByteIO_t UPCIRingInd;
 
 320         WordIO_t AiopIO[AIOP_CTL_SIZE];
 
 321         ByteIO_t AiopIntChanIO[AIOP_CTL_SIZE];
 
 322         int AiopID[AIOP_CTL_SIZE];
 
 323         int AiopNumChan[AIOP_CTL_SIZE];
 
 324         Word_t *AiopIntrBits;
 
 327 typedef CONTROLLER_T CONTROLLER_t;
 
 329 /* Channel level information structure */
 
 356         Byte_t R[RREGDATASIZE];
 
 363         Byte_t TxReplace1[4];
 
 364         Byte_t TxReplace2[4];
 
 367 typedef CHANNEL_T CHANNEL_t;
 
 368 typedef CHANNEL_T *CHANPTR_T;
 
 370 #define InterfaceModeRS232  0x00
 
 371 #define InterfaceModeRS422  0x08
 
 372 #define InterfaceModeRS485  0x10
 
 373 #define InterfaceModeRS232T 0x18
 
 375 /***************************************************************************
 
 377 Purpose:  Stop sending a transmit BREAK signal
 
 379           CHANNEL_T *ChP; Ptr to channel structure
 
 381 #define sClrBreak(ChP) \
 
 383    (ChP)->TxControl[3] &= ~SETBREAK; \
 
 384    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 387 /***************************************************************************
 
 389 Purpose:  Clr the DTR output
 
 391           CHANNEL_T *ChP; Ptr to channel structure
 
 393 #define sClrDTR(ChP) \
 
 395    (ChP)->TxControl[3] &= ~SET_DTR; \
 
 396    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 399 /***************************************************************************
 
 401 Purpose:  Clr the RTS output
 
 403           CHANNEL_T *ChP; Ptr to channel structure
 
 405 #define sClrRTS(ChP) \
 
 407    if ((ChP)->rtsToggle) break; \
 
 408    (ChP)->TxControl[3] &= ~SET_RTS; \
 
 409    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 412 /***************************************************************************
 
 414 Purpose:  Clear any existing transmit software flow control off condition
 
 415 Call:     sClrTxXOFF(ChP)
 
 416           CHANNEL_T *ChP; Ptr to channel structure
 
 418 #define sClrTxXOFF(ChP) \
 
 420    sOutB((ChP)->Cmd,TXOVERIDE | (Byte_t)(ChP)->ChanNum); \
 
 421    sOutB((ChP)->Cmd,(Byte_t)(ChP)->ChanNum); \
 
 424 /***************************************************************************
 
 425 Function: sCtlNumToCtlPtr
 
 426 Purpose:  Convert a controller number to controller structure pointer
 
 427 Call:     sCtlNumToCtlPtr(CtlNum)
 
 428           int CtlNum; Controller number
 
 429 Return:   CONTROLLER_T *: Ptr to controller structure
 
 431 #define sCtlNumToCtlPtr(CTLNUM) &sController[CTLNUM]
 
 433 /***************************************************************************
 
 434 Function: sControllerEOI
 
 435 Purpose:  Strobe the MUDBAC's End Of Interrupt bit.
 
 436 Call:     sControllerEOI(CtlP)
 
 437           CONTROLLER_T *CtlP; Ptr to controller structure
 
 439 #define sControllerEOI(CTLP) sOutB((CTLP)->MReg2IO,(CTLP)->MReg2 | INT_STROB)
 
 441 /***************************************************************************
 
 442 Function: sPCIControllerEOI
 
 443 Purpose:  Strobe the PCI End Of Interrupt bit.
 
 444           For the UPCI boards, toggle the AIOP interrupt enable bit
 
 445           (this was taken from the Windows driver).
 
 446 Call:     sPCIControllerEOI(CtlP)
 
 447           CONTROLLER_T *CtlP; Ptr to controller structure
 
 449 #define sPCIControllerEOI(CTLP) \
 
 451     if ((CTLP)->isUPCI) { \
 
 452         Word_t w = sInW((CTLP)->PCIIO); \
 
 453         sOutW((CTLP)->PCIIO, (w ^ PCI_INT_CTRL_AIOP)); \
 
 454         sOutW((CTLP)->PCIIO, w); \
 
 457         sOutW((CTLP)->PCIIO, PCI_STROB); \
 
 461 /***************************************************************************
 
 463 Purpose:  Disable I/O access to an AIOP
 
 465           CONTROLLER_T *CtlP; Ptr to controller structure
 
 466           int AiopNum; Number of AIOP on controller
 
 468 #define sDisAiop(CTLP,AIOPNUM) \
 
 470    (CTLP)->MReg3 &= sBitMapClrTbl[AIOPNUM]; \
 
 471    sOutB((CTLP)->MReg3IO,(CTLP)->MReg3); \
 
 474 /***************************************************************************
 
 475 Function: sDisCTSFlowCtl
 
 476 Purpose:  Disable output flow control using CTS
 
 477 Call:     sDisCTSFlowCtl(ChP)
 
 478           CHANNEL_T *ChP; Ptr to channel structure
 
 480 #define sDisCTSFlowCtl(ChP) \
 
 482    (ChP)->TxControl[2] &= ~CTSFC_EN; \
 
 483    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 486 /***************************************************************************
 
 488 Purpose:  Disable IXANY Software Flow Control
 
 490           CHANNEL_T *ChP; Ptr to channel structure
 
 492 #define sDisIXANY(ChP) \
 
 494    (ChP)->R[0x0e] = 0x86; \
 
 495    out32((ChP)->IndexAddr,&(ChP)->R[0x0c]); \
 
 498 /***************************************************************************
 
 500 Purpose:  Disable parity
 
 501 Call:     sDisParity(ChP)
 
 502           CHANNEL_T *ChP; Ptr to channel structure
 
 503 Comments: Function sSetParity() can be used in place of functions sEnParity(),
 
 504           sDisParity(), sSetOddParity(), and sSetEvenParity().
 
 506 #define sDisParity(ChP) \
 
 508    (ChP)->TxControl[2] &= ~PARITY_EN; \
 
 509    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 512 /***************************************************************************
 
 513 Function: sDisRTSToggle
 
 514 Purpose:  Disable RTS toggle
 
 515 Call:     sDisRTSToggle(ChP)
 
 516           CHANNEL_T *ChP; Ptr to channel structure
 
 518 #define sDisRTSToggle(ChP) \
 
 520    (ChP)->TxControl[2] &= ~RTSTOG_EN; \
 
 521    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 522    (ChP)->rtsToggle = 0; \
 
 525 /***************************************************************************
 
 527 Purpose:  Disable Rx FIFO
 
 528 Call:     sDisRxFIFO(ChP)
 
 529           CHANNEL_T *ChP; Ptr to channel structure
 
 531 #define sDisRxFIFO(ChP) \
 
 533    (ChP)->R[0x32] = 0x0a; \
 
 534    out32((ChP)->IndexAddr,&(ChP)->R[0x30]); \
 
 537 /***************************************************************************
 
 538 Function: sDisRxStatusMode
 
 539 Purpose:  Disable the Rx status mode
 
 540 Call:     sDisRxStatusMode(ChP)
 
 541           CHANNEL_T *ChP; Ptr to channel structure
 
 542 Comments: This takes the channel out of the receive status mode.  All
 
 543           subsequent reads of receive data using sReadRxWord() will return
 
 546 #define sDisRxStatusMode(ChP) sOutW((ChP)->ChanStat,0)
 
 548 /***************************************************************************
 
 549 Function: sDisTransmit
 
 550 Purpose:  Disable transmit
 
 551 Call:     sDisTransmit(ChP)
 
 552           CHANNEL_T *ChP; Ptr to channel structure
 
 553           This disables movement of Tx data from the Tx FIFO into the 1 byte
 
 554           Tx buffer.  Therefore there could be up to a 2 byte latency
 
 555           between the time sDisTransmit() is called and the transmit buffer
 
 556           and transmit shift register going completely empty.
 
 558 #define sDisTransmit(ChP) \
 
 560    (ChP)->TxControl[3] &= ~TX_ENABLE; \
 
 561    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 564 /***************************************************************************
 
 565 Function: sDisTxSoftFlowCtl
 
 566 Purpose:  Disable Tx Software Flow Control
 
 567 Call:     sDisTxSoftFlowCtl(ChP)
 
 568           CHANNEL_T *ChP; Ptr to channel structure
 
 570 #define sDisTxSoftFlowCtl(ChP) \
 
 572    (ChP)->R[0x06] = 0x8a; \
 
 573    out32((ChP)->IndexAddr,&(ChP)->R[0x04]); \
 
 576 /***************************************************************************
 
 578 Purpose:  Enable I/O access to an AIOP
 
 580           CONTROLLER_T *CtlP; Ptr to controller structure
 
 581           int AiopNum; Number of AIOP on controller
 
 583 #define sEnAiop(CTLP,AIOPNUM) \
 
 585    (CTLP)->MReg3 |= sBitMapSetTbl[AIOPNUM]; \
 
 586    sOutB((CTLP)->MReg3IO,(CTLP)->MReg3); \
 
 589 /***************************************************************************
 
 590 Function: sEnCTSFlowCtl
 
 591 Purpose:  Enable output flow control using CTS
 
 592 Call:     sEnCTSFlowCtl(ChP)
 
 593           CHANNEL_T *ChP; Ptr to channel structure
 
 595 #define sEnCTSFlowCtl(ChP) \
 
 597    (ChP)->TxControl[2] |= CTSFC_EN; \
 
 598    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 601 /***************************************************************************
 
 603 Purpose:  Enable IXANY Software Flow Control
 
 605           CHANNEL_T *ChP; Ptr to channel structure
 
 607 #define sEnIXANY(ChP) \
 
 609    (ChP)->R[0x0e] = 0x21; \
 
 610    out32((ChP)->IndexAddr,&(ChP)->R[0x0c]); \
 
 613 /***************************************************************************
 
 615 Purpose:  Enable parity
 
 617           CHANNEL_T *ChP; Ptr to channel structure
 
 618 Comments: Function sSetParity() can be used in place of functions sEnParity(),
 
 619           sDisParity(), sSetOddParity(), and sSetEvenParity().
 
 621 Warnings: Before enabling parity odd or even parity should be chosen using
 
 622           functions sSetOddParity() or sSetEvenParity().
 
 624 #define sEnParity(ChP) \
 
 626    (ChP)->TxControl[2] |= PARITY_EN; \
 
 627    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 630 /***************************************************************************
 
 631 Function: sEnRTSToggle
 
 632 Purpose:  Enable RTS toggle
 
 633 Call:     sEnRTSToggle(ChP)
 
 634           CHANNEL_T *ChP; Ptr to channel structure
 
 635 Comments: This function will disable RTS flow control and clear the RTS
 
 636           line to allow operation of RTS toggle.
 
 638 #define sEnRTSToggle(ChP) \
 
 640    (ChP)->RxControl[2] &= ~RTSFC_EN; \
 
 641    out32((ChP)->IndexAddr,(ChP)->RxControl); \
 
 642    (ChP)->TxControl[2] |= RTSTOG_EN; \
 
 643    (ChP)->TxControl[3] &= ~SET_RTS; \
 
 644    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 645    (ChP)->rtsToggle = 1; \
 
 648 /***************************************************************************
 
 650 Purpose:  Enable Rx FIFO
 
 652           CHANNEL_T *ChP; Ptr to channel structure
 
 654 #define sEnRxFIFO(ChP) \
 
 656    (ChP)->R[0x32] = 0x08; \
 
 657    out32((ChP)->IndexAddr,&(ChP)->R[0x30]); \
 
 660 /***************************************************************************
 
 661 Function: sEnRxProcessor
 
 662 Purpose:  Enable the receive processor
 
 663 Call:     sEnRxProcessor(ChP)
 
 664           CHANNEL_T *ChP; Ptr to channel structure
 
 665 Comments: This function is used to start the receive processor.  When
 
 666           the channel is in the reset state the receive processor is not
 
 667           running.  This is done to prevent the receive processor from
 
 668           executing invalid microcode instructions prior to the
 
 669           downloading of the microcode.
 
 671 Warnings: This function must be called after valid microcode has been
 
 672           downloaded to the AIOP, and it must not be called before the
 
 673           microcode has been downloaded.
 
 675 #define sEnRxProcessor(ChP) \
 
 677    (ChP)->RxControl[2] |= RXPROC_EN; \
 
 678    out32((ChP)->IndexAddr,(ChP)->RxControl); \
 
 681 /***************************************************************************
 
 682 Function: sEnRxStatusMode
 
 683 Purpose:  Enable the Rx status mode
 
 684 Call:     sEnRxStatusMode(ChP)
 
 685           CHANNEL_T *ChP; Ptr to channel structure
 
 686 Comments: This places the channel in the receive status mode.  All subsequent
 
 687           reads of receive data using sReadRxWord() will return a data byte
 
 688           in the low word and a status byte in the high word.
 
 691 #define sEnRxStatusMode(ChP) sOutW((ChP)->ChanStat,STATMODE)
 
 693 /***************************************************************************
 
 694 Function: sEnTransmit
 
 695 Purpose:  Enable transmit
 
 696 Call:     sEnTransmit(ChP)
 
 697           CHANNEL_T *ChP; Ptr to channel structure
 
 699 #define sEnTransmit(ChP) \
 
 701    (ChP)->TxControl[3] |= TX_ENABLE; \
 
 702    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 705 /***************************************************************************
 
 706 Function: sEnTxSoftFlowCtl
 
 707 Purpose:  Enable Tx Software Flow Control
 
 708 Call:     sEnTxSoftFlowCtl(ChP)
 
 709           CHANNEL_T *ChP; Ptr to channel structure
 
 711 #define sEnTxSoftFlowCtl(ChP) \
 
 713    (ChP)->R[0x06] = 0xc5; \
 
 714    out32((ChP)->IndexAddr,&(ChP)->R[0x04]); \
 
 717 /***************************************************************************
 
 718 Function: sGetAiopIntStatus
 
 719 Purpose:  Get the AIOP interrupt status
 
 720 Call:     sGetAiopIntStatus(CtlP,AiopNum)
 
 721           CONTROLLER_T *CtlP; Ptr to controller structure
 
 722           int AiopNum; AIOP number
 
 723 Return:   Byte_t: The AIOP interrupt status.  Bits 0 through 7
 
 724                          represent channels 0 through 7 respectively.  If a
 
 725                          bit is set that channel is interrupting.
 
 727 #define sGetAiopIntStatus(CTLP,AIOPNUM) sInB((CTLP)->AiopIntChanIO[AIOPNUM])
 
 729 /***************************************************************************
 
 730 Function: sGetAiopNumChan
 
 731 Purpose:  Get the number of channels supported by an AIOP
 
 732 Call:     sGetAiopNumChan(CtlP,AiopNum)
 
 733           CONTROLLER_T *CtlP; Ptr to controller structure
 
 734           int AiopNum; AIOP number
 
 735 Return:   int: The number of channels supported by the AIOP
 
 737 #define sGetAiopNumChan(CTLP,AIOPNUM) (CTLP)->AiopNumChan[AIOPNUM]
 
 739 /***************************************************************************
 
 740 Function: sGetChanIntID
 
 741 Purpose:  Get a channel's interrupt identification byte
 
 742 Call:     sGetChanIntID(ChP)
 
 743           CHANNEL_T *ChP; Ptr to channel structure
 
 744 Return:   Byte_t: The channel interrupt ID.  Can be any
 
 745              combination of the following flags:
 
 746                 RXF_TRIG:     Rx FIFO trigger level interrupt
 
 747                 TXFIFO_MT:    Tx FIFO empty interrupt
 
 748                 SRC_INT:      Special receive condition interrupt
 
 749                 DELTA_CD:     CD change interrupt
 
 750                 DELTA_CTS:    CTS change interrupt
 
 751                 DELTA_DSR:    DSR change interrupt
 
 753 #define sGetChanIntID(ChP) (sInB((ChP)->IntID) & (RXF_TRIG | TXFIFO_MT | SRC_INT | DELTA_CD | DELTA_CTS | DELTA_DSR))
 
 755 /***************************************************************************
 
 756 Function: sGetChanNum
 
 757 Purpose:  Get the number of a channel within an AIOP
 
 758 Call:     sGetChanNum(ChP)
 
 759           CHANNEL_T *ChP; Ptr to channel structure
 
 760 Return:   int: Channel number within AIOP, or NULLCHAN if channel does
 
 763 #define sGetChanNum(ChP) (ChP)->ChanNum
 
 765 /***************************************************************************
 
 766 Function: sGetChanStatus
 
 767 Purpose:  Get the channel status
 
 768 Call:     sGetChanStatus(ChP)
 
 769           CHANNEL_T *ChP; Ptr to channel structure
 
 770 Return:   Word_t: The channel status.  Can be any combination of
 
 773                 CTS_ACT:      CTS input asserted
 
 774                 DSR_ACT:      DSR input asserted
 
 775                 CD_ACT:       CD input asserted
 
 776                 TXFIFOMT:     Tx FIFO is empty
 
 777                 TXSHRMT:      Tx shift register is empty
 
 778                 RDA:          Rx data available
 
 781                 STATMODE:     status mode enable bit
 
 782                 RXFOVERFL:    receive FIFO overflow
 
 783                 RX2MATCH:     receive compare byte 2 match
 
 784                 RX1MATCH:     receive compare byte 1 match
 
 785                 RXBREAK:      received BREAK
 
 786                 RXFRAME:      received framing error
 
 787                 RXPARITY:     received parity error
 
 788 Warnings: This function will clear the high byte flags in the Channel
 
 791 #define sGetChanStatus(ChP) sInW((ChP)->ChanStat)
 
 793 /***************************************************************************
 
 794 Function: sGetChanStatusLo
 
 795 Purpose:  Get the low byte only of the channel status
 
 796 Call:     sGetChanStatusLo(ChP)
 
 797           CHANNEL_T *ChP; Ptr to channel structure
 
 798 Return:   Byte_t: The channel status low byte.  Can be any combination
 
 799              of the following flags:
 
 800                 CTS_ACT:      CTS input asserted
 
 801                 DSR_ACT:      DSR input asserted
 
 802                 CD_ACT:       CD input asserted
 
 803                 TXFIFOMT:     Tx FIFO is empty
 
 804                 TXSHRMT:      Tx shift register is empty
 
 805                 RDA:          Rx data available
 
 807 #define sGetChanStatusLo(ChP) sInB((ByteIO_t)(ChP)->ChanStat)
 
 809 /**********************************************************************
 
 810  * Get RI status of channel
 
 811  * Defined as a function in rocket.c   -aes
 
 814 #define sGetChanRI(ChP) ((ChP)->CtlP->AltChanRingIndicator ? \
 
 815                           (sInB((ByteIO_t)((ChP)->ChanStat+8)) & DSR_ACT) : \
 
 816                             (((ChP)->CtlP->boardType == ROCKET_TYPE_PC104) ? \
 
 817                                (!(sInB((ChP)->CtlP->AiopIO[3]) & sBitMapSetTbl[(ChP)->ChanNum])) : \
 
 821 /***************************************************************************
 
 822 Function: sGetControllerIntStatus
 
 823 Purpose:  Get the controller interrupt status
 
 824 Call:     sGetControllerIntStatus(CtlP)
 
 825           CONTROLLER_T *CtlP; Ptr to controller structure
 
 826 Return:   Byte_t: The controller interrupt status in the lower 4
 
 827                          bits.  Bits 0 through 3 represent AIOP's 0
 
 828                          through 3 respectively.  If a bit is set that
 
 829                          AIOP is interrupting.  Bits 4 through 7 will
 
 832 #define sGetControllerIntStatus(CTLP) (sInB((CTLP)->MReg1IO) & 0x0f)
 
 834 /***************************************************************************
 
 835 Function: sPCIGetControllerIntStatus
 
 836 Purpose:  Get the controller interrupt status
 
 837 Call:     sPCIGetControllerIntStatus(CtlP)
 
 838           CONTROLLER_T *CtlP; Ptr to controller structure
 
 839 Return:   unsigned char: The controller interrupt status in the lower 4
 
 840                          bits and bit 4.  Bits 0 through 3 represent AIOP's 0
 
 841                          through 3 respectively. Bit 4 is set if the int 
 
 842                          was generated from periodic. If a bit is set the
 
 843                          AIOP is interrupting.
 
 845 #define sPCIGetControllerIntStatus(CTLP) \
 
 847           (sInW((CTLP)->PCIIO2) & UPCI_AIOP_INTR_BITS) : \
 
 848           ((sInW((CTLP)->PCIIO) >> 8) & AIOP_INTR_BITS))
 
 850 /***************************************************************************
 
 853 Purpose:  Get the number of data bytes in the Rx FIFO
 
 855           CHANNEL_T *ChP; Ptr to channel structure
 
 856 Return:   int: The number of data bytes in the Rx FIFO.
 
 857 Comments: Byte read of count register is required to obtain Rx count.
 
 860 #define sGetRxCnt(ChP) sInW((ChP)->TxRxCount)
 
 862 /***************************************************************************
 
 864 Purpose:  Get the number of data bytes in the Tx FIFO
 
 866           CHANNEL_T *ChP; Ptr to channel structure
 
 867 Return:   Byte_t: The number of data bytes in the Tx FIFO.
 
 868 Comments: Byte read of count register is required to obtain Tx count.
 
 871 #define sGetTxCnt(ChP) sInB((ByteIO_t)(ChP)->TxRxCount)
 
 873 /*****************************************************************************
 
 874 Function: sGetTxRxDataIO
 
 875 Purpose:  Get the I/O address of a channel's TxRx Data register
 
 876 Call:     sGetTxRxDataIO(ChP)
 
 877           CHANNEL_T *ChP; Ptr to channel structure
 
 878 Return:   WordIO_t: I/O address of a channel's TxRx Data register
 
 880 #define sGetTxRxDataIO(ChP) (ChP)->TxRxData
 
 882 /***************************************************************************
 
 883 Function: sInitChanDefaults
 
 884 Purpose:  Initialize a channel structure to it's default state.
 
 885 Call:     sInitChanDefaults(ChP)
 
 886           CHANNEL_T *ChP; Ptr to the channel structure
 
 887 Comments: This function must be called once for every channel structure
 
 888           that exists before any other SSCI calls can be made.
 
 891 #define sInitChanDefaults(ChP) \
 
 893    (ChP)->CtlP = NULLCTLPTR; \
 
 894    (ChP)->AiopNum = NULLAIOP; \
 
 895    (ChP)->ChanID = AIOPID_NULL; \
 
 896    (ChP)->ChanNum = NULLCHAN; \
 
 899 /***************************************************************************
 
 900 Function: sResetAiopByNum
 
 901 Purpose:  Reset the AIOP by number
 
 902 Call:     sResetAiopByNum(CTLP,AIOPNUM)
 
 903         CONTROLLER_T CTLP; Ptr to controller structure
 
 906 #define sResetAiopByNum(CTLP,AIOPNUM) \
 
 908    sOutB((CTLP)->AiopIO[(AIOPNUM)]+_CMD_REG,RESET_ALL); \
 
 909    sOutB((CTLP)->AiopIO[(AIOPNUM)]+_CMD_REG,0x0); \
 
 912 /***************************************************************************
 
 914 Purpose:  Send a transmit BREAK signal
 
 915 Call:     sSendBreak(ChP)
 
 916           CHANNEL_T *ChP; Ptr to channel structure
 
 918 #define sSendBreak(ChP) \
 
 920    (ChP)->TxControl[3] |= SETBREAK; \
 
 921    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 924 /***************************************************************************
 
 926 Purpose:  Set baud rate
 
 927 Call:     sSetBaud(ChP,Divisor)
 
 928           CHANNEL_T *ChP; Ptr to channel structure
 
 929           Word_t Divisor; 16 bit baud rate divisor for channel
 
 931 #define sSetBaud(ChP,DIVISOR) \
 
 933    (ChP)->BaudDiv[2] = (Byte_t)(DIVISOR); \
 
 934    (ChP)->BaudDiv[3] = (Byte_t)((DIVISOR) >> 8); \
 
 935    out32((ChP)->IndexAddr,(ChP)->BaudDiv); \
 
 938 /***************************************************************************
 
 940 Purpose:  Set data bits to 7
 
 942           CHANNEL_T *ChP; Ptr to channel structure
 
 944 #define sSetData7(ChP) \
 
 946    (ChP)->TxControl[2] &= ~DATA8BIT; \
 
 947    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 950 /***************************************************************************
 
 952 Purpose:  Set data bits to 8
 
 954           CHANNEL_T *ChP; Ptr to channel structure
 
 956 #define sSetData8(ChP) \
 
 958    (ChP)->TxControl[2] |= DATA8BIT; \
 
 959    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 962 /***************************************************************************
 
 964 Purpose:  Set the DTR output
 
 966           CHANNEL_T *ChP; Ptr to channel structure
 
 968 #define sSetDTR(ChP) \
 
 970    (ChP)->TxControl[3] |= SET_DTR; \
 
 971    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 974 /***************************************************************************
 
 975 Function: sSetEvenParity
 
 976 Purpose:  Set even parity
 
 977 Call:     sSetEvenParity(ChP)
 
 978           CHANNEL_T *ChP; Ptr to channel structure
 
 979 Comments: Function sSetParity() can be used in place of functions sEnParity(),
 
 980           sDisParity(), sSetOddParity(), and sSetEvenParity().
 
 982 Warnings: This function has no effect unless parity is enabled with function
 
 985 #define sSetEvenParity(ChP) \
 
 987    (ChP)->TxControl[2] |= EVEN_PAR; \
 
 988    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
 991 /***************************************************************************
 
 992 Function: sSetOddParity
 
 993 Purpose:  Set odd parity
 
 994 Call:     sSetOddParity(ChP)
 
 995           CHANNEL_T *ChP; Ptr to channel structure
 
 996 Comments: Function sSetParity() can be used in place of functions sEnParity(),
 
 997           sDisParity(), sSetOddParity(), and sSetEvenParity().
 
 999 Warnings: This function has no effect unless parity is enabled with function
 
1002 #define sSetOddParity(ChP) \
 
1004    (ChP)->TxControl[2] &= ~EVEN_PAR; \
 
1005    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
1008 /***************************************************************************
 
1010 Purpose:  Set the RTS output
 
1012           CHANNEL_T *ChP; Ptr to channel structure
 
1014 #define sSetRTS(ChP) \
 
1016    if ((ChP)->rtsToggle) break; \
 
1017    (ChP)->TxControl[3] |= SET_RTS; \
 
1018    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
1021 /***************************************************************************
 
1022 Function: sSetRxTrigger
 
1023 Purpose:  Set the Rx FIFO trigger level
 
1024 Call:     sSetRxProcessor(ChP,Level)
 
1025           CHANNEL_T *ChP; Ptr to channel structure
 
1026           Byte_t Level; Number of characters in Rx FIFO at which the
 
1027              interrupt will be generated.  Can be any of the following flags:
 
1030              TRIG_1:    1 character in FIFO
 
1031              TRIG_1_2:  FIFO 1/2 full
 
1032              TRIG_7_8:  FIFO 7/8 full
 
1033 Comments: An interrupt will be generated when the trigger level is reached
 
1034           only if function sEnInterrupt() has been called with flag
 
1035           RXINT_EN set.  The RXF_TRIG flag in the Interrupt Idenfification
 
1036           register will be set whenever the trigger level is reached
 
1037           regardless of the setting of RXINT_EN.
 
1040 #define sSetRxTrigger(ChP,LEVEL) \
 
1042    (ChP)->RxControl[2] &= ~TRIG_MASK; \
 
1043    (ChP)->RxControl[2] |= LEVEL; \
 
1044    out32((ChP)->IndexAddr,(ChP)->RxControl); \
 
1047 /***************************************************************************
 
1049 Purpose:  Set stop bits to 1
 
1050 Call:     sSetStop1(ChP)
 
1051           CHANNEL_T *ChP; Ptr to channel structure
 
1053 #define sSetStop1(ChP) \
 
1055    (ChP)->TxControl[2] &= ~STOP2; \
 
1056    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
1059 /***************************************************************************
 
1061 Purpose:  Set stop bits to 2
 
1062 Call:     sSetStop2(ChP)
 
1063           CHANNEL_T *ChP; Ptr to channel structure
 
1065 #define sSetStop2(ChP) \
 
1067    (ChP)->TxControl[2] |= STOP2; \
 
1068    out32((ChP)->IndexAddr,(ChP)->TxControl); \
 
1071 /***************************************************************************
 
1072 Function: sSetTxXOFFChar
 
1073 Purpose:  Set the Tx XOFF flow control character
 
1074 Call:     sSetTxXOFFChar(ChP,Ch)
 
1075           CHANNEL_T *ChP; Ptr to channel structure
 
1076           Byte_t Ch; The value to set the Tx XOFF character to
 
1078 #define sSetTxXOFFChar(ChP,CH) \
 
1080    (ChP)->R[0x07] = (CH); \
 
1081    out32((ChP)->IndexAddr,&(ChP)->R[0x04]); \
 
1084 /***************************************************************************
 
1085 Function: sSetTxXONChar
 
1086 Purpose:  Set the Tx XON flow control character
 
1087 Call:     sSetTxXONChar(ChP,Ch)
 
1088           CHANNEL_T *ChP; Ptr to channel structure
 
1089           Byte_t Ch; The value to set the Tx XON character to
 
1091 #define sSetTxXONChar(ChP,CH) \
 
1093    (ChP)->R[0x0b] = (CH); \
 
1094    out32((ChP)->IndexAddr,&(ChP)->R[0x08]); \
 
1097 /***************************************************************************
 
1098 Function: sStartRxProcessor
 
1099 Purpose:  Start a channel's receive processor
 
1100 Call:     sStartRxProcessor(ChP)
 
1101           CHANNEL_T *ChP; Ptr to channel structure
 
1102 Comments: This function is used to start a Rx processor after it was
 
1103           stopped with sStopRxProcessor() or sStopSWInFlowCtl().  It
 
1104           will restart both the Rx processor and software input flow control.
 
1107 #define sStartRxProcessor(ChP) out32((ChP)->IndexAddr,&(ChP)->R[0])
 
1109 /***************************************************************************
 
1110 Function: sWriteTxByte
 
1111 Purpose:  Write a transmit data byte to a channel.
 
1112           ByteIO_t io: Channel transmit register I/O address.  This can
 
1113                            be obtained with sGetTxRxDataIO().
 
1114           Byte_t Data; The transmit data byte.
 
1115 Warnings: This function writes the data byte without checking to see if
 
1116           sMaxTxSize is exceeded in the Tx FIFO.
 
1118 #define sWriteTxByte(IO,DATA) sOutB(IO,DATA)
 
1121  * Begin Linux specific definitions for the Rocketport driver
 
1123  * This code is Copyright Theodore Ts'o, 1995-1997
 
1128         struct tty_port port;
 
1130         int flags;              /* Don't yet match the ASY_ flags!! */
 
1131         unsigned int board:3;
 
1132         unsigned int aiop:2;
 
1133         unsigned int chan:3;
 
1137         int xmit_fifo_room;     /* room in xmit fifo */
 
1138         unsigned char *xmit_buf;
 
1143         int ignore_status_mask;
 
1144         int read_status_mask;
 
1147         struct completion close_wait;   /* Not yet matching the core */
 
1149         struct mutex write_mtx;
 
1152 #define RPORT_MAGIC 0x525001
 
1154 #define NUM_BOARDS 8
 
1155 #define MAX_RP_PORTS (32*NUM_BOARDS)
 
1158  * The size of the xmit buffer is 1 page, or 4096 bytes
 
1160 #define XMIT_BUF_SIZE 4096
 
1162 /* number of characters left in xmit buffer before we ask for more */
 
1163 #define WAKEUP_CHARS 256
 
1165 /* Internal flags used only by the rocketport driver */
 
1166 #define ROCKET_INITIALIZED      0x80000000      /* Port is active */
 
1167 #define ROCKET_CLOSING          0x40000000      /* Serial port is closing */
 
1168 #define ROCKET_NORMAL_ACTIVE    0x20000000      /* Normal port is active */
 
1171  * Assigned major numbers for the Comtrol Rocketport
 
1173 #define TTY_ROCKET_MAJOR        46
 
1174 #define CUA_ROCKET_MAJOR        47
 
1176 #ifdef PCI_VENDOR_ID_RP
 
1177 #undef PCI_VENDOR_ID_RP
 
1178 #undef PCI_DEVICE_ID_RP8OCTA
 
1179 #undef PCI_DEVICE_ID_RP8INTF
 
1180 #undef PCI_DEVICE_ID_RP16INTF
 
1181 #undef PCI_DEVICE_ID_RP32INTF
 
1182 #undef PCI_DEVICE_ID_URP8OCTA
 
1183 #undef PCI_DEVICE_ID_URP8INTF
 
1184 #undef PCI_DEVICE_ID_URP16INTF
 
1185 #undef PCI_DEVICE_ID_CRP16INTF
 
1186 #undef PCI_DEVICE_ID_URP32INTF
 
1189 /*  Comtrol PCI Vendor ID */
 
1190 #define PCI_VENDOR_ID_RP                0x11fe
 
1192 /*  Comtrol Device ID's */
 
1193 #define PCI_DEVICE_ID_RP32INTF          0x0001  /* Rocketport 32 port w/external I/F     */
 
1194 #define PCI_DEVICE_ID_RP8INTF           0x0002  /* Rocketport 8 port w/external I/F      */
 
1195 #define PCI_DEVICE_ID_RP16INTF          0x0003  /* Rocketport 16 port w/external I/F     */
 
1196 #define PCI_DEVICE_ID_RP4QUAD           0x0004  /* Rocketport 4 port w/quad cable        */
 
1197 #define PCI_DEVICE_ID_RP8OCTA           0x0005  /* Rocketport 8 port w/octa cable        */
 
1198 #define PCI_DEVICE_ID_RP8J              0x0006  /* Rocketport 8 port w/RJ11 connectors   */
 
1199 #define PCI_DEVICE_ID_RP4J              0x0007  /* Rocketport 4 port w/RJ11 connectors   */
 
1200 #define PCI_DEVICE_ID_RP8SNI            0x0008  /* Rocketport 8 port w/ DB78 SNI (Siemens) connector */
 
1201 #define PCI_DEVICE_ID_RP16SNI           0x0009  /* Rocketport 16 port w/ DB78 SNI (Siemens) connector   */
 
1202 #define PCI_DEVICE_ID_RPP4              0x000A  /* Rocketport Plus 4 port                */
 
1203 #define PCI_DEVICE_ID_RPP8              0x000B  /* Rocketport Plus 8 port                */
 
1204 #define PCI_DEVICE_ID_RP6M              0x000C  /* RocketModem 6 port                    */
 
1205 #define PCI_DEVICE_ID_RP4M              0x000D  /* RocketModem 4 port                    */
 
1206 #define PCI_DEVICE_ID_RP2_232           0x000E  /* Rocketport Plus 2 port RS232          */
 
1207 #define PCI_DEVICE_ID_RP2_422           0x000F  /* Rocketport Plus 2 port RS422          */ 
 
1209 /* Universal PCI boards  */
 
1210 #define PCI_DEVICE_ID_URP32INTF         0x0801  /* Rocketport UPCI 32 port w/external I/F */ 
 
1211 #define PCI_DEVICE_ID_URP8INTF          0x0802  /* Rocketport UPCI 8 port w/external I/F  */
 
1212 #define PCI_DEVICE_ID_URP16INTF         0x0803  /* Rocketport UPCI 16 port w/external I/F */
 
1213 #define PCI_DEVICE_ID_URP8OCTA          0x0805  /* Rocketport UPCI 8 port w/octa cable    */
 
1214 #define PCI_DEVICE_ID_UPCI_RM3_8PORT    0x080C  /* Rocketmodem III 8 port                 */
 
1215 #define PCI_DEVICE_ID_UPCI_RM3_4PORT    0x080D  /* Rocketmodem III 4 port                 */
 
1217 /* Compact PCI device */ 
 
1218 #define PCI_DEVICE_ID_CRP16INTF         0x0903  /* Rocketport Compact PCI 16 port w/external I/F */