2 * linux/drivers/char/8250_pci.c
4 * Probe module for 8250/16550-type PCI serial ports.
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
8 * Copyright (C) 2001 Russell King, All Rights Reserved.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License.
14 * $Id: 8250_pci.c,v 1.28 2002/11/02 11:14:18 rmk Exp $
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/pci.h>
19 #include <linux/sched.h>
20 #include <linux/string.h>
21 #include <linux/kernel.h>
22 #include <linux/slab.h>
23 #include <linux/delay.h>
24 #include <linux/tty.h>
25 #include <linux/serial_core.h>
26 #include <linux/8250_pci.h>
27 #include <linux/bitops.h>
29 #include <asm/byteorder.h>
34 #undef SERIAL_DEBUG_PCI
37 * init function returns:
38 * > 0 - number of ports
39 * = 0 - use board->num_ports
42 struct pci_serial_quirk {
47 int (*init)(struct pci_dev *dev);
48 int (*setup)(struct serial_private *, struct pciserial_board *,
49 struct uart_port *, int);
50 void (*exit)(struct pci_dev *dev);
53 #define PCI_NUM_BAR_RESOURCES 6
55 struct serial_private {
58 void __iomem *remapped_bar[PCI_NUM_BAR_RESOURCES];
59 struct pci_serial_quirk *quirk;
63 static void moan_device(const char *str, struct pci_dev *dev)
65 printk(KERN_WARNING "%s: %s\n"
66 KERN_WARNING "Please send the output of lspci -vv, this\n"
67 KERN_WARNING "message (0x%04x,0x%04x,0x%04x,0x%04x), the\n"
68 KERN_WARNING "manufacturer and name of serial board or\n"
69 KERN_WARNING "modem board to rmk+serial@arm.linux.org.uk.\n",
70 pci_name(dev), str, dev->vendor, dev->device,
71 dev->subsystem_vendor, dev->subsystem_device);
75 setup_port(struct serial_private *priv, struct uart_port *port,
76 int bar, int offset, int regshift)
78 struct pci_dev *dev = priv->dev;
79 unsigned long base, len;
81 if (bar >= PCI_NUM_BAR_RESOURCES)
84 base = pci_resource_start(dev, bar);
86 if (pci_resource_flags(dev, bar) & IORESOURCE_MEM) {
87 len = pci_resource_len(dev, bar);
89 if (!priv->remapped_bar[bar])
90 priv->remapped_bar[bar] = ioremap(base, len);
91 if (!priv->remapped_bar[bar])
94 port->iotype = UPIO_MEM;
96 port->mapbase = base + offset;
97 port->membase = priv->remapped_bar[bar] + offset;
98 port->regshift = regshift;
100 port->iotype = UPIO_PORT;
101 port->iobase = base + offset;
103 port->membase = NULL;
110 * AFAVLAB uses a different mixture of BARs and offsets
111 * Not that ugly ;) -- HW
114 afavlab_setup(struct serial_private *priv, struct pciserial_board *board,
115 struct uart_port *port, int idx)
117 unsigned int bar, offset = board->first_offset;
119 bar = FL_GET_BASE(board->flags);
124 offset += (idx - 4) * board->uart_offset;
127 return setup_port(priv, port, bar, offset, board->reg_shift);
131 * HP's Remote Management Console. The Diva chip came in several
132 * different versions. N-class, L2000 and A500 have two Diva chips, each
133 * with 3 UARTs (the third UART on the second chip is unused). Superdome
134 * and Keystone have one Diva chip with 3 UARTs. Some later machines have
135 * one Diva chip, but it has been expanded to 5 UARTs.
137 static int __devinit pci_hp_diva_init(struct pci_dev *dev)
141 switch (dev->subsystem_device) {
142 case PCI_DEVICE_ID_HP_DIVA_TOSCA1:
143 case PCI_DEVICE_ID_HP_DIVA_HALFDOME:
144 case PCI_DEVICE_ID_HP_DIVA_KEYSTONE:
145 case PCI_DEVICE_ID_HP_DIVA_EVEREST:
148 case PCI_DEVICE_ID_HP_DIVA_TOSCA2:
151 case PCI_DEVICE_ID_HP_DIVA_MAESTRO:
154 case PCI_DEVICE_ID_HP_DIVA_POWERBAR:
163 * HP's Diva chip puts the 4th/5th serial port further out, and
164 * some serial ports are supposed to be hidden on certain models.
167 pci_hp_diva_setup(struct serial_private *priv, struct pciserial_board *board,
168 struct uart_port *port, int idx)
170 unsigned int offset = board->first_offset;
171 unsigned int bar = FL_GET_BASE(board->flags);
173 switch (priv->dev->subsystem_device) {
174 case PCI_DEVICE_ID_HP_DIVA_MAESTRO:
178 case PCI_DEVICE_ID_HP_DIVA_EVEREST:
188 offset += idx * board->uart_offset;
190 return setup_port(priv, port, bar, offset, board->reg_shift);
194 * Added for EKF Intel i960 serial boards
196 static int __devinit pci_inteli960ni_init(struct pci_dev *dev)
198 unsigned long oldval;
200 if (!(dev->subsystem_device & 0x1000))
203 /* is firmware started? */
204 pci_read_config_dword(dev, 0x44, (void*) &oldval);
205 if (oldval == 0x00001000L) { /* RESET value */
206 printk(KERN_DEBUG "Local i960 firmware missing");
213 * Some PCI serial cards using the PLX 9050 PCI interface chip require
214 * that the card interrupt be explicitly enabled or disabled. This
215 * seems to be mainly needed on card using the PLX which also use I/O
218 static int __devinit pci_plx9050_init(struct pci_dev *dev)
223 if ((pci_resource_flags(dev, 0) & IORESOURCE_MEM) == 0) {
224 moan_device("no memory in bar 0", dev);
229 if (dev->vendor == PCI_VENDOR_ID_PANACOM)
231 if ((dev->vendor == PCI_VENDOR_ID_PLX) &&
232 (dev->device == PCI_DEVICE_ID_PLX_ROMULUS)) {
234 * As the megawolf cards have the int pins active
235 * high, and have 2 UART chips, both ints must be
236 * enabled on the 9050. Also, the UARTS are set in
237 * 16450 mode by default, so we have to enable the
238 * 16C950 'enhanced' mode so that we can use the
245 * enable/disable interrupts
247 p = ioremap(pci_resource_start(dev, 0), 0x80);
250 writel(irq_config, p + 0x4c);
253 * Read the register back to ensure that it took effect.
261 static void __devexit pci_plx9050_exit(struct pci_dev *dev)
265 if ((pci_resource_flags(dev, 0) & IORESOURCE_MEM) == 0)
271 p = ioremap(pci_resource_start(dev, 0), 0x80);
276 * Read the register back to ensure that it took effect.
283 /* SBS Technologies Inc. PMC-OCTPRO and P-OCTAL cards */
285 sbs_setup(struct serial_private *priv, struct pciserial_board *board,
286 struct uart_port *port, int idx)
288 unsigned int bar, offset = board->first_offset;
293 /* first four channels map to 0, 0x100, 0x200, 0x300 */
294 offset += idx * board->uart_offset;
295 } else if (idx < 8) {
296 /* last four channels map to 0x1000, 0x1100, 0x1200, 0x1300 */
297 offset += idx * board->uart_offset + 0xC00;
298 } else /* we have only 8 ports on PMC-OCTALPRO */
301 return setup_port(priv, port, bar, offset, board->reg_shift);
305 * This does initialization for PMC OCTALPRO cards:
306 * maps the device memory, resets the UARTs (needed, bc
307 * if the module is removed and inserted again, the card
308 * is in the sleep mode) and enables global interrupt.
311 /* global control register offset for SBS PMC-OctalPro */
312 #define OCT_REG_CR_OFF 0x500
314 static int __devinit sbs_init(struct pci_dev *dev)
318 p = ioremap(pci_resource_start(dev, 0),pci_resource_len(dev,0));
322 /* Set bit-4 Control Register (UART RESET) in to reset the uarts */
323 writeb(0x10,p + OCT_REG_CR_OFF);
325 writeb(0x0,p + OCT_REG_CR_OFF);
327 /* Set bit-2 (INTENABLE) of Control Register */
328 writeb(0x4, p + OCT_REG_CR_OFF);
335 * Disables the global interrupt of PMC-OctalPro
338 static void __devexit sbs_exit(struct pci_dev *dev)
342 p = ioremap(pci_resource_start(dev, 0),pci_resource_len(dev,0));
344 writeb(0, p + OCT_REG_CR_OFF);
350 * SIIG serial cards have an PCI interface chip which also controls
351 * the UART clocking frequency. Each UART can be clocked independently
352 * (except cards equiped with 4 UARTs) and initial clocking settings
353 * are stored in the EEPROM chip. It can cause problems because this
354 * version of serial driver doesn't support differently clocked UART's
355 * on single PCI card. To prevent this, initialization functions set
356 * high frequency clocking for all UART's on given card. It is safe (I
357 * hope) because it doesn't touch EEPROM settings to prevent conflicts
358 * with other OSes (like M$ DOS).
360 * SIIG support added by Andrey Panin <pazke@donpac.ru>, 10/1999
362 * There is two family of SIIG serial cards with different PCI
363 * interface chip and different configuration methods:
364 * - 10x cards have control registers in IO and/or memory space;
365 * - 20x cards have control registers in standard PCI configuration space.
367 * Note: all 10x cards have PCI device ids 0x10..
368 * all 20x cards have PCI device ids 0x20..
370 * There are also Quartet Serial cards which use Oxford Semiconductor
371 * 16954 quad UART PCI chip clocked by 18.432 MHz quartz.
373 * Note: some SIIG cards are probed by the parport_serial object.
376 #define PCI_DEVICE_ID_SIIG_1S_10x (PCI_DEVICE_ID_SIIG_1S_10x_550 & 0xfffc)
377 #define PCI_DEVICE_ID_SIIG_2S_10x (PCI_DEVICE_ID_SIIG_2S_10x_550 & 0xfff8)
379 static int pci_siig10x_init(struct pci_dev *dev)
384 switch (dev->device & 0xfff8) {
385 case PCI_DEVICE_ID_SIIG_1S_10x: /* 1S */
388 case PCI_DEVICE_ID_SIIG_2S_10x: /* 2S, 2S1P */
391 default: /* 1S1P, 4S */
396 p = ioremap(pci_resource_start(dev, 0), 0x80);
400 writew(readw(p + 0x28) & data, p + 0x28);
406 #define PCI_DEVICE_ID_SIIG_2S_20x (PCI_DEVICE_ID_SIIG_2S_20x_550 & 0xfffc)
407 #define PCI_DEVICE_ID_SIIG_2S1P_20x (PCI_DEVICE_ID_SIIG_2S1P_20x_550 & 0xfffc)
409 static int pci_siig20x_init(struct pci_dev *dev)
413 /* Change clock frequency for the first UART. */
414 pci_read_config_byte(dev, 0x6f, &data);
415 pci_write_config_byte(dev, 0x6f, data & 0xef);
417 /* If this card has 2 UART, we have to do the same with second UART. */
418 if (((dev->device & 0xfffc) == PCI_DEVICE_ID_SIIG_2S_20x) ||
419 ((dev->device & 0xfffc) == PCI_DEVICE_ID_SIIG_2S1P_20x)) {
420 pci_read_config_byte(dev, 0x73, &data);
421 pci_write_config_byte(dev, 0x73, data & 0xef);
426 static int pci_siig_init(struct pci_dev *dev)
428 unsigned int type = dev->device & 0xff00;
431 return pci_siig10x_init(dev);
432 else if (type == 0x2000)
433 return pci_siig20x_init(dev);
435 moan_device("Unknown SIIG card", dev);
440 * Timedia has an explosion of boards, and to avoid the PCI table from
441 * growing *huge*, we use this function to collapse some 70 entries
442 * in the PCI table into one, for sanity's and compactness's sake.
444 static unsigned short timedia_single_port[] = {
445 0x4025, 0x4027, 0x4028, 0x5025, 0x5027, 0
448 static unsigned short timedia_dual_port[] = {
449 0x0002, 0x4036, 0x4037, 0x4038, 0x4078, 0x4079, 0x4085,
450 0x4088, 0x4089, 0x5037, 0x5078, 0x5079, 0x5085, 0x6079,
451 0x7079, 0x8079, 0x8137, 0x8138, 0x8237, 0x8238, 0x9079,
452 0x9137, 0x9138, 0x9237, 0x9238, 0xA079, 0xB079, 0xC079,
456 static unsigned short timedia_quad_port[] = {
457 0x4055, 0x4056, 0x4095, 0x4096, 0x5056, 0x8156, 0x8157,
458 0x8256, 0x8257, 0x9056, 0x9156, 0x9157, 0x9158, 0x9159,
459 0x9256, 0x9257, 0xA056, 0xA157, 0xA158, 0xA159, 0xB056,
463 static unsigned short timedia_eight_port[] = {
464 0x4065, 0x4066, 0x5065, 0x5066, 0x8166, 0x9066, 0x9166,
465 0x9167, 0x9168, 0xA066, 0xA167, 0xA168, 0
468 static struct timedia_struct {
472 { 1, timedia_single_port },
473 { 2, timedia_dual_port },
474 { 4, timedia_quad_port },
475 { 8, timedia_eight_port },
479 static int __devinit pci_timedia_init(struct pci_dev *dev)
484 for (i = 0; timedia_data[i].num; i++) {
485 ids = timedia_data[i].ids;
486 for (j = 0; ids[j]; j++)
487 if (dev->subsystem_device == ids[j])
488 return timedia_data[i].num;
494 * Timedia/SUNIX uses a mixture of BARs and offsets
495 * Ugh, this is ugly as all hell --- TYT
498 pci_timedia_setup(struct serial_private *priv, struct pciserial_board *board,
499 struct uart_port *port, int idx)
501 unsigned int bar = 0, offset = board->first_offset;
508 offset = board->uart_offset;
515 offset = board->uart_offset;
524 return setup_port(priv, port, bar, offset, board->reg_shift);
528 * Some Titan cards are also a little weird
531 titan_400l_800l_setup(struct serial_private *priv,
532 struct pciserial_board *board,
533 struct uart_port *port, int idx)
535 unsigned int bar, offset = board->first_offset;
546 offset = (idx - 2) * board->uart_offset;
549 return setup_port(priv, port, bar, offset, board->reg_shift);
552 static int __devinit pci_xircom_init(struct pci_dev *dev)
558 static int __devinit pci_netmos_init(struct pci_dev *dev)
560 /* subdevice 0x00PS means <P> parallel, <S> serial */
561 unsigned int num_serial = dev->subsystem_device & 0xf;
569 pci_default_setup(struct serial_private *priv, struct pciserial_board *board,
570 struct uart_port *port, int idx)
572 unsigned int bar, offset = board->first_offset, maxnr;
574 bar = FL_GET_BASE(board->flags);
575 if (board->flags & FL_BASE_BARS)
578 offset += idx * board->uart_offset;
580 maxnr = (pci_resource_len(priv->dev, bar) - board->first_offset) /
581 (8 << board->reg_shift);
583 if (board->flags & FL_REGION_SZ_CAP && idx >= maxnr)
586 return setup_port(priv, port, bar, offset, board->reg_shift);
589 /* This should be in linux/pci_ids.h */
590 #define PCI_VENDOR_ID_SBSMODULARIO 0x124B
591 #define PCI_SUBVENDOR_ID_SBSMODULARIO 0x124B
592 #define PCI_DEVICE_ID_OCTPRO 0x0001
593 #define PCI_SUBDEVICE_ID_OCTPRO232 0x0108
594 #define PCI_SUBDEVICE_ID_OCTPRO422 0x0208
595 #define PCI_SUBDEVICE_ID_POCTAL232 0x0308
596 #define PCI_SUBDEVICE_ID_POCTAL422 0x0408
599 * Master list of serial port init/setup/exit quirks.
600 * This does not describe the general nature of the port.
601 * (ie, baud base, number and location of ports, etc)
603 * This list is ordered alphabetically by vendor then device.
604 * Specific entries must come before more generic entries.
606 static struct pci_serial_quirk pci_serial_quirks[] = {
609 * It is not clear whether this applies to all products.
612 .vendor = PCI_VENDOR_ID_AFAVLAB,
613 .device = PCI_ANY_ID,
614 .subvendor = PCI_ANY_ID,
615 .subdevice = PCI_ANY_ID,
616 .setup = afavlab_setup,
622 .vendor = PCI_VENDOR_ID_HP,
623 .device = PCI_DEVICE_ID_HP_DIVA,
624 .subvendor = PCI_ANY_ID,
625 .subdevice = PCI_ANY_ID,
626 .init = pci_hp_diva_init,
627 .setup = pci_hp_diva_setup,
633 .vendor = PCI_VENDOR_ID_INTEL,
634 .device = PCI_DEVICE_ID_INTEL_80960_RP,
636 .subdevice = PCI_ANY_ID,
637 .init = pci_inteli960ni_init,
638 .setup = pci_default_setup,
644 .vendor = PCI_VENDOR_ID_PANACOM,
645 .device = PCI_DEVICE_ID_PANACOM_QUADMODEM,
646 .subvendor = PCI_ANY_ID,
647 .subdevice = PCI_ANY_ID,
648 .init = pci_plx9050_init,
649 .setup = pci_default_setup,
650 .exit = __devexit_p(pci_plx9050_exit),
653 .vendor = PCI_VENDOR_ID_PANACOM,
654 .device = PCI_DEVICE_ID_PANACOM_DUALMODEM,
655 .subvendor = PCI_ANY_ID,
656 .subdevice = PCI_ANY_ID,
657 .init = pci_plx9050_init,
658 .setup = pci_default_setup,
659 .exit = __devexit_p(pci_plx9050_exit),
665 .vendor = PCI_VENDOR_ID_PLX,
666 .device = PCI_DEVICE_ID_PLX_9050,
667 .subvendor = PCI_SUBVENDOR_ID_KEYSPAN,
668 .subdevice = PCI_SUBDEVICE_ID_KEYSPAN_SX2,
669 .init = pci_plx9050_init,
670 .setup = pci_default_setup,
671 .exit = __devexit_p(pci_plx9050_exit),
674 .vendor = PCI_VENDOR_ID_PLX,
675 .device = PCI_DEVICE_ID_PLX_ROMULUS,
676 .subvendor = PCI_VENDOR_ID_PLX,
677 .subdevice = PCI_DEVICE_ID_PLX_ROMULUS,
678 .init = pci_plx9050_init,
679 .setup = pci_default_setup,
680 .exit = __devexit_p(pci_plx9050_exit),
683 * SBS Technologies, Inc., PMC-OCTALPRO 232
686 .vendor = PCI_VENDOR_ID_SBSMODULARIO,
687 .device = PCI_DEVICE_ID_OCTPRO,
688 .subvendor = PCI_SUBVENDOR_ID_SBSMODULARIO,
689 .subdevice = PCI_SUBDEVICE_ID_OCTPRO232,
692 .exit = __devexit_p(sbs_exit),
695 * SBS Technologies, Inc., PMC-OCTALPRO 422
698 .vendor = PCI_VENDOR_ID_SBSMODULARIO,
699 .device = PCI_DEVICE_ID_OCTPRO,
700 .subvendor = PCI_SUBVENDOR_ID_SBSMODULARIO,
701 .subdevice = PCI_SUBDEVICE_ID_OCTPRO422,
704 .exit = __devexit_p(sbs_exit),
707 * SBS Technologies, Inc., P-Octal 232
710 .vendor = PCI_VENDOR_ID_SBSMODULARIO,
711 .device = PCI_DEVICE_ID_OCTPRO,
712 .subvendor = PCI_SUBVENDOR_ID_SBSMODULARIO,
713 .subdevice = PCI_SUBDEVICE_ID_POCTAL232,
716 .exit = __devexit_p(sbs_exit),
719 * SBS Technologies, Inc., P-Octal 422
722 .vendor = PCI_VENDOR_ID_SBSMODULARIO,
723 .device = PCI_DEVICE_ID_OCTPRO,
724 .subvendor = PCI_SUBVENDOR_ID_SBSMODULARIO,
725 .subdevice = PCI_SUBDEVICE_ID_POCTAL422,
728 .exit = __devexit_p(sbs_exit),
734 .vendor = PCI_VENDOR_ID_SIIG,
735 .device = PCI_ANY_ID,
736 .subvendor = PCI_ANY_ID,
737 .subdevice = PCI_ANY_ID,
738 .init = pci_siig_init,
739 .setup = pci_default_setup,
745 .vendor = PCI_VENDOR_ID_TITAN,
746 .device = PCI_DEVICE_ID_TITAN_400L,
747 .subvendor = PCI_ANY_ID,
748 .subdevice = PCI_ANY_ID,
749 .setup = titan_400l_800l_setup,
752 .vendor = PCI_VENDOR_ID_TITAN,
753 .device = PCI_DEVICE_ID_TITAN_800L,
754 .subvendor = PCI_ANY_ID,
755 .subdevice = PCI_ANY_ID,
756 .setup = titan_400l_800l_setup,
762 .vendor = PCI_VENDOR_ID_TIMEDIA,
763 .device = PCI_DEVICE_ID_TIMEDIA_1889,
764 .subvendor = PCI_VENDOR_ID_TIMEDIA,
765 .subdevice = PCI_ANY_ID,
766 .init = pci_timedia_init,
767 .setup = pci_timedia_setup,
770 .vendor = PCI_VENDOR_ID_TIMEDIA,
771 .device = PCI_ANY_ID,
772 .subvendor = PCI_ANY_ID,
773 .subdevice = PCI_ANY_ID,
774 .setup = pci_timedia_setup,
780 .vendor = PCI_VENDOR_ID_XIRCOM,
781 .device = PCI_DEVICE_ID_XIRCOM_X3201_MDM,
782 .subvendor = PCI_ANY_ID,
783 .subdevice = PCI_ANY_ID,
784 .init = pci_xircom_init,
785 .setup = pci_default_setup,
791 .vendor = PCI_VENDOR_ID_NETMOS,
792 .device = PCI_ANY_ID,
793 .subvendor = PCI_ANY_ID,
794 .subdevice = PCI_ANY_ID,
795 .init = pci_netmos_init,
796 .setup = pci_default_setup,
799 * Default "match everything" terminator entry
802 .vendor = PCI_ANY_ID,
803 .device = PCI_ANY_ID,
804 .subvendor = PCI_ANY_ID,
805 .subdevice = PCI_ANY_ID,
806 .setup = pci_default_setup,
810 static inline int quirk_id_matches(u32 quirk_id, u32 dev_id)
812 return quirk_id == PCI_ANY_ID || quirk_id == dev_id;
815 static struct pci_serial_quirk *find_quirk(struct pci_dev *dev)
817 struct pci_serial_quirk *quirk;
819 for (quirk = pci_serial_quirks; ; quirk++)
820 if (quirk_id_matches(quirk->vendor, dev->vendor) &&
821 quirk_id_matches(quirk->device, dev->device) &&
822 quirk_id_matches(quirk->subvendor, dev->subsystem_vendor) &&
823 quirk_id_matches(quirk->subdevice, dev->subsystem_device))
829 get_pci_irq(struct pci_dev *dev, struct pciserial_board *board)
831 if (board->flags & FL_NOIRQ)
838 * This is the configuration table for all of the PCI serial boards
839 * which we support. It is directly indexed by the pci_board_num_t enum
840 * value, which is encoded in the pci_device_id PCI probe table's
841 * driver_data member.
843 * The makeup of these names are:
846 * bn = PCI BAR number
847 * bt = Index using PCI BARs
848 * n = number of serial ports
851 * This table is sorted by (in order): baud, bt, bn, n.
853 * Please note: in theory if n = 1, _bt infix should make no difference.
854 * ie, pbn_b0_1_115200 is the same as pbn_b0_bt_1_115200
856 enum pci_board_num_t {
925 * Board-specific versions.
945 * uart_offset - the space between channels
946 * reg_shift - describes how the UART registers are mapped
947 * to PCI memory by the card.
948 * For example IER register on SBS, Inc. PMC-OctPro is located at
949 * offset 0x10 from the UART base, while UART_IER is defined as 1
950 * in include/linux/serial_reg.h,
951 * see first lines of serial_in() and serial_out() in 8250.c
954 static struct pciserial_board pci_boards[] __devinitdata = {
961 [pbn_b0_1_115200] = {
967 [pbn_b0_2_115200] = {
973 [pbn_b0_4_115200] = {
979 [pbn_b0_5_115200] = {
986 [pbn_b0_1_921600] = {
992 [pbn_b0_2_921600] = {
998 [pbn_b0_4_921600] = {
1001 .base_baud = 921600,
1005 [pbn_b0_2_1130000] = {
1008 .base_baud = 1130000,
1012 [pbn_b0_4_1152000] = {
1015 .base_baud = 1152000,
1019 [pbn_b0_bt_1_115200] = {
1020 .flags = FL_BASE0|FL_BASE_BARS,
1022 .base_baud = 115200,
1025 [pbn_b0_bt_2_115200] = {
1026 .flags = FL_BASE0|FL_BASE_BARS,
1028 .base_baud = 115200,
1031 [pbn_b0_bt_8_115200] = {
1032 .flags = FL_BASE0|FL_BASE_BARS,
1034 .base_baud = 115200,
1038 [pbn_b0_bt_1_460800] = {
1039 .flags = FL_BASE0|FL_BASE_BARS,
1041 .base_baud = 460800,
1044 [pbn_b0_bt_2_460800] = {
1045 .flags = FL_BASE0|FL_BASE_BARS,
1047 .base_baud = 460800,
1050 [pbn_b0_bt_4_460800] = {
1051 .flags = FL_BASE0|FL_BASE_BARS,
1053 .base_baud = 460800,
1057 [pbn_b0_bt_1_921600] = {
1058 .flags = FL_BASE0|FL_BASE_BARS,
1060 .base_baud = 921600,
1063 [pbn_b0_bt_2_921600] = {
1064 .flags = FL_BASE0|FL_BASE_BARS,
1066 .base_baud = 921600,
1069 [pbn_b0_bt_4_921600] = {
1070 .flags = FL_BASE0|FL_BASE_BARS,
1072 .base_baud = 921600,
1075 [pbn_b0_bt_8_921600] = {
1076 .flags = FL_BASE0|FL_BASE_BARS,
1078 .base_baud = 921600,
1082 [pbn_b1_1_115200] = {
1085 .base_baud = 115200,
1088 [pbn_b1_2_115200] = {
1091 .base_baud = 115200,
1094 [pbn_b1_4_115200] = {
1097 .base_baud = 115200,
1100 [pbn_b1_8_115200] = {
1103 .base_baud = 115200,
1107 [pbn_b1_1_921600] = {
1110 .base_baud = 921600,
1113 [pbn_b1_2_921600] = {
1116 .base_baud = 921600,
1119 [pbn_b1_4_921600] = {
1122 .base_baud = 921600,
1125 [pbn_b1_8_921600] = {
1128 .base_baud = 921600,
1132 [pbn_b1_bt_2_921600] = {
1133 .flags = FL_BASE1|FL_BASE_BARS,
1135 .base_baud = 921600,
1139 [pbn_b1_1_1382400] = {
1142 .base_baud = 1382400,
1145 [pbn_b1_2_1382400] = {
1148 .base_baud = 1382400,
1151 [pbn_b1_4_1382400] = {
1154 .base_baud = 1382400,
1157 [pbn_b1_8_1382400] = {
1160 .base_baud = 1382400,
1164 [pbn_b2_1_115200] = {
1167 .base_baud = 115200,
1170 [pbn_b2_8_115200] = {
1173 .base_baud = 115200,
1177 [pbn_b2_1_460800] = {
1180 .base_baud = 460800,
1183 [pbn_b2_4_460800] = {
1186 .base_baud = 460800,
1189 [pbn_b2_8_460800] = {
1192 .base_baud = 460800,
1195 [pbn_b2_16_460800] = {
1198 .base_baud = 460800,
1202 [pbn_b2_1_921600] = {
1205 .base_baud = 921600,
1208 [pbn_b2_4_921600] = {
1211 .base_baud = 921600,
1214 [pbn_b2_8_921600] = {
1217 .base_baud = 921600,
1221 [pbn_b2_bt_1_115200] = {
1222 .flags = FL_BASE2|FL_BASE_BARS,
1224 .base_baud = 115200,
1227 [pbn_b2_bt_2_115200] = {
1228 .flags = FL_BASE2|FL_BASE_BARS,
1230 .base_baud = 115200,
1233 [pbn_b2_bt_4_115200] = {
1234 .flags = FL_BASE2|FL_BASE_BARS,
1236 .base_baud = 115200,
1240 [pbn_b2_bt_2_921600] = {
1241 .flags = FL_BASE2|FL_BASE_BARS,
1243 .base_baud = 921600,
1246 [pbn_b2_bt_4_921600] = {
1247 .flags = FL_BASE2|FL_BASE_BARS,
1249 .base_baud = 921600,
1253 [pbn_b3_4_115200] = {
1256 .base_baud = 115200,
1259 [pbn_b3_8_115200] = {
1262 .base_baud = 115200,
1267 * Entries following this are board-specific.
1276 .base_baud = 921600,
1277 .uart_offset = 0x400,
1281 .flags = FL_BASE2|FL_BASE_BARS,
1283 .base_baud = 921600,
1284 .uart_offset = 0x400,
1288 .flags = FL_BASE2|FL_BASE_BARS,
1290 .base_baud = 921600,
1291 .uart_offset = 0x400,
1295 /* I think this entry is broken - the first_offset looks wrong --rmk */
1296 [pbn_plx_romulus] = {
1299 .base_baud = 921600,
1300 .uart_offset = 8 << 2,
1302 .first_offset = 0x03,
1306 * This board uses the size of PCI Base region 0 to
1307 * signal now many ports are available
1310 .flags = FL_BASE0|FL_REGION_SZ_CAP,
1312 .base_baud = 115200,
1317 * EKF addition for i960 Boards form EKF with serial port.
1320 [pbn_intel_i960] = {
1323 .base_baud = 921600,
1324 .uart_offset = 8 << 2,
1326 .first_offset = 0x10000,
1329 .flags = FL_BASE0|FL_NOIRQ,
1331 .base_baud = 458333,
1334 .first_offset = 0x20178,
1338 * NEC Vrc-5074 (Nile 4) builtin UART.
1343 .base_baud = 520833,
1344 .uart_offset = 8 << 3,
1346 .first_offset = 0x300,
1350 * Computone - uses IOMEM.
1352 [pbn_computone_4] = {
1355 .base_baud = 921600,
1356 .uart_offset = 0x40,
1358 .first_offset = 0x200,
1360 [pbn_computone_6] = {
1363 .base_baud = 921600,
1364 .uart_offset = 0x40,
1366 .first_offset = 0x200,
1368 [pbn_computone_8] = {
1371 .base_baud = 921600,
1372 .uart_offset = 0x40,
1374 .first_offset = 0x200,
1379 .base_baud = 460800,
1384 * Exar Corp. XR17C15[248] Dual/Quad/Octal UART
1385 * Only basic 16550A support.
1386 * XR17C15[24] are not tested, but they should work.
1388 [pbn_exar_XR17C152] = {
1391 .base_baud = 921600,
1392 .uart_offset = 0x200,
1394 [pbn_exar_XR17C154] = {
1397 .base_baud = 921600,
1398 .uart_offset = 0x200,
1400 [pbn_exar_XR17C158] = {
1403 .base_baud = 921600,
1404 .uart_offset = 0x200,
1409 * Given a complete unknown PCI device, try to use some heuristics to
1410 * guess what the configuration might be, based on the pitiful PCI
1411 * serial specs. Returns 0 on success, 1 on failure.
1413 static int __devinit
1414 serial_pci_guess_board(struct pci_dev *dev, struct pciserial_board *board)
1416 int num_iomem, num_port, first_port = -1, i;
1419 * If it is not a communications device or the programming
1420 * interface is greater than 6, give up.
1422 * (Should we try to make guesses for multiport serial devices
1425 if ((((dev->class >> 8) != PCI_CLASS_COMMUNICATION_SERIAL) &&
1426 ((dev->class >> 8) != PCI_CLASS_COMMUNICATION_MODEM)) ||
1427 (dev->class & 0xff) > 6)
1430 num_iomem = num_port = 0;
1431 for (i = 0; i < PCI_NUM_BAR_RESOURCES; i++) {
1432 if (pci_resource_flags(dev, i) & IORESOURCE_IO) {
1434 if (first_port == -1)
1437 if (pci_resource_flags(dev, i) & IORESOURCE_MEM)
1442 * If there is 1 or 0 iomem regions, and exactly one port,
1443 * use it. We guess the number of ports based on the IO
1446 if (num_iomem <= 1 && num_port == 1) {
1447 board->flags = first_port;
1448 board->num_ports = pci_resource_len(dev, first_port) / 8;
1453 * Now guess if we've got a board which indexes by BARs.
1454 * Each IO BAR should be 8 bytes, and they should follow
1459 for (i = 0; i < PCI_NUM_BAR_RESOURCES; i++) {
1460 if (pci_resource_flags(dev, i) & IORESOURCE_IO &&
1461 pci_resource_len(dev, i) == 8 &&
1462 (first_port == -1 || (first_port + num_port) == i)) {
1464 if (first_port == -1)
1470 board->flags = first_port | FL_BASE_BARS;
1471 board->num_ports = num_port;
1479 serial_pci_matches(struct pciserial_board *board,
1480 struct pciserial_board *guessed)
1483 board->num_ports == guessed->num_ports &&
1484 board->base_baud == guessed->base_baud &&
1485 board->uart_offset == guessed->uart_offset &&
1486 board->reg_shift == guessed->reg_shift &&
1487 board->first_offset == guessed->first_offset;
1490 struct serial_private *
1491 pciserial_init_ports(struct pci_dev *dev, struct pciserial_board *board)
1493 struct uart_port serial_port;
1494 struct serial_private *priv;
1495 struct pci_serial_quirk *quirk;
1496 int rc, nr_ports, i;
1498 nr_ports = board->num_ports;
1501 * Find an init and setup quirks.
1503 quirk = find_quirk(dev);
1506 * Run the new-style initialization function.
1507 * The initialization function returns:
1509 * 0 - use board->num_ports
1510 * >0 - number of ports
1513 rc = quirk->init(dev);
1522 priv = kmalloc(sizeof(struct serial_private) +
1523 sizeof(unsigned int) * nr_ports,
1526 priv = ERR_PTR(-ENOMEM);
1530 memset(priv, 0, sizeof(struct serial_private) +
1531 sizeof(unsigned int) * nr_ports);
1534 priv->quirk = quirk;
1536 memset(&serial_port, 0, sizeof(struct uart_port));
1537 serial_port.flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF | UPF_SHARE_IRQ;
1538 serial_port.uartclk = board->base_baud * 16;
1539 serial_port.irq = get_pci_irq(dev, board);
1540 serial_port.dev = &dev->dev;
1542 for (i = 0; i < nr_ports; i++) {
1543 if (quirk->setup(priv, board, &serial_port, i))
1546 #ifdef SERIAL_DEBUG_PCI
1547 printk("Setup PCI port: port %x, irq %d, type %d\n",
1548 serial_port.iobase, serial_port.irq, serial_port.iotype);
1551 priv->line[i] = serial8250_register_port(&serial_port);
1552 if (priv->line[i] < 0) {
1553 printk(KERN_WARNING "Couldn't register serial port %s: %d\n", pci_name(dev), priv->line[i]);
1568 EXPORT_SYMBOL_GPL(pciserial_init_ports);
1570 void pciserial_remove_ports(struct serial_private *priv)
1572 struct pci_serial_quirk *quirk;
1575 for (i = 0; i < priv->nr; i++)
1576 serial8250_unregister_port(priv->line[i]);
1578 for (i = 0; i < PCI_NUM_BAR_RESOURCES; i++) {
1579 if (priv->remapped_bar[i])
1580 iounmap(priv->remapped_bar[i]);
1581 priv->remapped_bar[i] = NULL;
1585 * Find the exit quirks.
1587 quirk = find_quirk(priv->dev);
1589 quirk->exit(priv->dev);
1593 EXPORT_SYMBOL_GPL(pciserial_remove_ports);
1595 void pciserial_suspend_ports(struct serial_private *priv)
1599 for (i = 0; i < priv->nr; i++)
1600 if (priv->line[i] >= 0)
1601 serial8250_suspend_port(priv->line[i]);
1603 EXPORT_SYMBOL_GPL(pciserial_suspend_ports);
1605 void pciserial_resume_ports(struct serial_private *priv)
1610 * Ensure that the board is correctly configured.
1612 if (priv->quirk->init)
1613 priv->quirk->init(priv->dev);
1615 for (i = 0; i < priv->nr; i++)
1616 if (priv->line[i] >= 0)
1617 serial8250_resume_port(priv->line[i]);
1619 EXPORT_SYMBOL_GPL(pciserial_resume_ports);
1622 * Probe one serial board. Unfortunately, there is no rhyme nor reason
1623 * to the arrangement of serial ports on a PCI card.
1625 static int __devinit
1626 pciserial_init_one(struct pci_dev *dev, const struct pci_device_id *ent)
1628 struct serial_private *priv;
1629 struct pciserial_board *board, tmp;
1632 if (ent->driver_data >= ARRAY_SIZE(pci_boards)) {
1633 printk(KERN_ERR "pci_init_one: invalid driver_data: %ld\n",
1638 board = &pci_boards[ent->driver_data];
1640 rc = pci_enable_device(dev);
1644 if (ent->driver_data == pbn_default) {
1646 * Use a copy of the pci_board entry for this;
1647 * avoid changing entries in the table.
1649 memcpy(&tmp, board, sizeof(struct pciserial_board));
1653 * We matched one of our class entries. Try to
1654 * determine the parameters of this board.
1656 rc = serial_pci_guess_board(dev, board);
1661 * We matched an explicit entry. If we are able to
1662 * detect this boards settings with our heuristic,
1663 * then we no longer need this entry.
1665 memcpy(&tmp, &pci_boards[pbn_default],
1666 sizeof(struct pciserial_board));
1667 rc = serial_pci_guess_board(dev, &tmp);
1668 if (rc == 0 && serial_pci_matches(board, &tmp))
1669 moan_device("Redundant entry in serial pci_table.",
1673 priv = pciserial_init_ports(dev, board);
1674 if (!IS_ERR(priv)) {
1675 pci_set_drvdata(dev, priv);
1682 pci_disable_device(dev);
1686 static void __devexit pciserial_remove_one(struct pci_dev *dev)
1688 struct serial_private *priv = pci_get_drvdata(dev);
1690 pci_set_drvdata(dev, NULL);
1692 pciserial_remove_ports(priv);
1694 pci_disable_device(dev);
1697 static int pciserial_suspend_one(struct pci_dev *dev, pm_message_t state)
1699 struct serial_private *priv = pci_get_drvdata(dev);
1702 pciserial_suspend_ports(priv);
1704 pci_save_state(dev);
1705 pci_set_power_state(dev, pci_choose_state(dev, state));
1709 static int pciserial_resume_one(struct pci_dev *dev)
1711 struct serial_private *priv = pci_get_drvdata(dev);
1713 pci_set_power_state(dev, PCI_D0);
1714 pci_restore_state(dev);
1718 * The device may have been disabled. Re-enable it.
1720 pci_enable_device(dev);
1722 pciserial_resume_ports(priv);
1727 static struct pci_device_id serial_pci_tbl[] = {
1728 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V960,
1729 PCI_SUBVENDOR_ID_CONNECT_TECH,
1730 PCI_SUBDEVICE_ID_CONNECT_TECH_BH8_232, 0, 0,
1732 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V960,
1733 PCI_SUBVENDOR_ID_CONNECT_TECH,
1734 PCI_SUBDEVICE_ID_CONNECT_TECH_BH4_232, 0, 0,
1736 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V960,
1737 PCI_SUBVENDOR_ID_CONNECT_TECH,
1738 PCI_SUBDEVICE_ID_CONNECT_TECH_BH2_232, 0, 0,
1740 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V351,
1741 PCI_SUBVENDOR_ID_CONNECT_TECH,
1742 PCI_SUBDEVICE_ID_CONNECT_TECH_BH8_232, 0, 0,
1744 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V351,
1745 PCI_SUBVENDOR_ID_CONNECT_TECH,
1746 PCI_SUBDEVICE_ID_CONNECT_TECH_BH4_232, 0, 0,
1748 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V351,
1749 PCI_SUBVENDOR_ID_CONNECT_TECH,
1750 PCI_SUBDEVICE_ID_CONNECT_TECH_BH2_232, 0, 0,
1752 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V351,
1753 PCI_SUBVENDOR_ID_CONNECT_TECH,
1754 PCI_SUBDEVICE_ID_CONNECT_TECH_BH8_485, 0, 0,
1756 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V351,
1757 PCI_SUBVENDOR_ID_CONNECT_TECH,
1758 PCI_SUBDEVICE_ID_CONNECT_TECH_BH8_485_4_4, 0, 0,
1760 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V351,
1761 PCI_SUBVENDOR_ID_CONNECT_TECH,
1762 PCI_SUBDEVICE_ID_CONNECT_TECH_BH4_485, 0, 0,
1764 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V351,
1765 PCI_SUBVENDOR_ID_CONNECT_TECH,
1766 PCI_SUBDEVICE_ID_CONNECT_TECH_BH4_485_2_2, 0, 0,
1768 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V351,
1769 PCI_SUBVENDOR_ID_CONNECT_TECH,
1770 PCI_SUBDEVICE_ID_CONNECT_TECH_BH2_485, 0, 0,
1772 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V351,
1773 PCI_SUBVENDOR_ID_CONNECT_TECH,
1774 PCI_SUBDEVICE_ID_CONNECT_TECH_BH8_485_2_6, 0, 0,
1776 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V351,
1777 PCI_SUBVENDOR_ID_CONNECT_TECH,
1778 PCI_SUBDEVICE_ID_CONNECT_TECH_BH081101V1, 0, 0,
1780 { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V351,
1781 PCI_SUBVENDOR_ID_CONNECT_TECH,
1782 PCI_SUBDEVICE_ID_CONNECT_TECH_BH041101V1, 0, 0,
1785 { PCI_VENDOR_ID_SEALEVEL, PCI_DEVICE_ID_SEALEVEL_U530,
1786 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1787 pbn_b2_bt_1_115200 },
1788 { PCI_VENDOR_ID_SEALEVEL, PCI_DEVICE_ID_SEALEVEL_UCOMM2,
1789 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1790 pbn_b2_bt_2_115200 },
1791 { PCI_VENDOR_ID_SEALEVEL, PCI_DEVICE_ID_SEALEVEL_UCOMM422,
1792 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1793 pbn_b2_bt_4_115200 },
1794 { PCI_VENDOR_ID_SEALEVEL, PCI_DEVICE_ID_SEALEVEL_UCOMM232,
1795 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1796 pbn_b2_bt_2_115200 },
1797 { PCI_VENDOR_ID_SEALEVEL, PCI_DEVICE_ID_SEALEVEL_COMM4,
1798 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1799 pbn_b2_bt_4_115200 },
1800 { PCI_VENDOR_ID_SEALEVEL, PCI_DEVICE_ID_SEALEVEL_COMM8,
1801 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1803 { PCI_VENDOR_ID_SEALEVEL, PCI_DEVICE_ID_SEALEVEL_UCOMM8,
1804 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1807 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_GTEK_SERIAL2,
1808 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1809 pbn_b2_bt_2_115200 },
1810 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_SPCOM200,
1811 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1812 pbn_b2_bt_2_921600 },
1814 * VScom SPCOM800, from sl@s.pl
1816 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_SPCOM800,
1817 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1819 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_1077,
1820 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1822 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
1823 PCI_SUBVENDOR_ID_KEYSPAN,
1824 PCI_SUBDEVICE_ID_KEYSPAN_SX2, 0, 0,
1826 { PCI_VENDOR_ID_PANACOM, PCI_DEVICE_ID_PANACOM_QUADMODEM,
1827 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1829 { PCI_VENDOR_ID_PANACOM, PCI_DEVICE_ID_PANACOM_DUALMODEM,
1830 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1832 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
1833 PCI_SUBVENDOR_ID_CHASE_PCIFAST,
1834 PCI_SUBDEVICE_ID_CHASE_PCIFAST4, 0, 0,
1836 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
1837 PCI_SUBVENDOR_ID_CHASE_PCIFAST,
1838 PCI_SUBDEVICE_ID_CHASE_PCIFAST8, 0, 0,
1840 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
1841 PCI_SUBVENDOR_ID_CHASE_PCIFAST,
1842 PCI_SUBDEVICE_ID_CHASE_PCIFAST16, 0, 0,
1844 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
1845 PCI_SUBVENDOR_ID_CHASE_PCIFAST,
1846 PCI_SUBDEVICE_ID_CHASE_PCIFAST16FMC, 0, 0,
1848 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
1849 PCI_SUBVENDOR_ID_CHASE_PCIRAS,
1850 PCI_SUBDEVICE_ID_CHASE_PCIRAS4, 0, 0,
1852 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
1853 PCI_SUBVENDOR_ID_CHASE_PCIRAS,
1854 PCI_SUBDEVICE_ID_CHASE_PCIRAS8, 0, 0,
1857 * Megawolf Romulus PCI Serial Card, from Mike Hudson
1860 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_ROMULUS,
1861 0x10b5, 0x106a, 0, 0,
1863 { PCI_VENDOR_ID_QUATECH, PCI_DEVICE_ID_QUATECH_QSC100,
1864 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1866 { PCI_VENDOR_ID_QUATECH, PCI_DEVICE_ID_QUATECH_DSC100,
1867 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1869 { PCI_VENDOR_ID_QUATECH, PCI_DEVICE_ID_QUATECH_ESC100D,
1870 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1872 { PCI_VENDOR_ID_QUATECH, PCI_DEVICE_ID_QUATECH_ESC100M,
1873 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1875 { PCI_VENDOR_ID_SPECIALIX, PCI_DEVICE_ID_OXSEMI_16PCI954,
1876 PCI_VENDOR_ID_SPECIALIX, PCI_SUBDEVICE_ID_SPECIALIX_SPEED4, 0, 0,
1878 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI954,
1879 PCI_SUBVENDOR_ID_SIIG, PCI_SUBDEVICE_ID_SIIG_QUARTET_SERIAL, 0, 0,
1883 * The below card is a little controversial since it is the
1884 * subject of a PCI vendor/device ID clash. (See
1885 * www.ussg.iu.edu/hypermail/linux/kernel/0303.1/0516.html).
1886 * For now just used the hex ID 0x950a.
1888 { PCI_VENDOR_ID_OXSEMI, 0x950a,
1889 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1891 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI954,
1892 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1894 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI952,
1895 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1896 pbn_b0_bt_2_921600 },
1899 * SBS Technologies, Inc. P-Octal and PMC-OCTPRO cards,
1900 * from skokodyn@yahoo.com
1902 { PCI_VENDOR_ID_SBSMODULARIO, PCI_DEVICE_ID_OCTPRO,
1903 PCI_SUBVENDOR_ID_SBSMODULARIO, PCI_SUBDEVICE_ID_OCTPRO232, 0, 0,
1905 { PCI_VENDOR_ID_SBSMODULARIO, PCI_DEVICE_ID_OCTPRO,
1906 PCI_SUBVENDOR_ID_SBSMODULARIO, PCI_SUBDEVICE_ID_OCTPRO422, 0, 0,
1908 { PCI_VENDOR_ID_SBSMODULARIO, PCI_DEVICE_ID_OCTPRO,
1909 PCI_SUBVENDOR_ID_SBSMODULARIO, PCI_SUBDEVICE_ID_POCTAL232, 0, 0,
1911 { PCI_VENDOR_ID_SBSMODULARIO, PCI_DEVICE_ID_OCTPRO,
1912 PCI_SUBVENDOR_ID_SBSMODULARIO, PCI_SUBDEVICE_ID_POCTAL422, 0, 0,
1916 * Digitan DS560-558, from jimd@esoft.com
1918 { PCI_VENDOR_ID_ATT, PCI_DEVICE_ID_ATT_VENUS_MODEM,
1919 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1923 * Titan Electronic cards
1924 * The 400L and 800L have a custom setup quirk.
1926 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_100,
1927 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1929 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_200,
1930 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1932 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_400,
1933 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1935 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_800B,
1936 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1938 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_100L,
1939 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1941 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_200L,
1942 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1943 pbn_b1_bt_2_921600 },
1944 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_400L,
1945 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1946 pbn_b0_bt_4_921600 },
1947 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_800L,
1948 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1949 pbn_b0_bt_8_921600 },
1951 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S_10x_550,
1952 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1954 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S_10x_650,
1955 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1957 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S_10x_850,
1958 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1960 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S_10x_550,
1961 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1962 pbn_b2_bt_2_921600 },
1963 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S_10x_650,
1964 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1965 pbn_b2_bt_2_921600 },
1966 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S_10x_850,
1967 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1968 pbn_b2_bt_2_921600 },
1969 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_4S_10x_550,
1970 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1971 pbn_b2_bt_4_921600 },
1972 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_4S_10x_650,
1973 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1974 pbn_b2_bt_4_921600 },
1975 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_4S_10x_850,
1976 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1977 pbn_b2_bt_4_921600 },
1978 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S_20x_550,
1979 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1981 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S_20x_650,
1982 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1984 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S_20x_850,
1985 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1987 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S_20x_550,
1988 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1989 pbn_b0_bt_2_921600 },
1990 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S_20x_650,
1991 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1992 pbn_b0_bt_2_921600 },
1993 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S_20x_850,
1994 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1995 pbn_b0_bt_2_921600 },
1996 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_4S_20x_550,
1997 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1998 pbn_b0_bt_4_921600 },
1999 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_4S_20x_650,
2000 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2001 pbn_b0_bt_4_921600 },
2002 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_4S_20x_850,
2003 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2004 pbn_b0_bt_4_921600 },
2007 * Computone devices submitted by Doug McNash dmcnash@computone.com
2009 { PCI_VENDOR_ID_COMPUTONE, PCI_DEVICE_ID_COMPUTONE_PG,
2010 PCI_SUBVENDOR_ID_COMPUTONE, PCI_SUBDEVICE_ID_COMPUTONE_PG4,
2011 0, 0, pbn_computone_4 },
2012 { PCI_VENDOR_ID_COMPUTONE, PCI_DEVICE_ID_COMPUTONE_PG,
2013 PCI_SUBVENDOR_ID_COMPUTONE, PCI_SUBDEVICE_ID_COMPUTONE_PG8,
2014 0, 0, pbn_computone_8 },
2015 { PCI_VENDOR_ID_COMPUTONE, PCI_DEVICE_ID_COMPUTONE_PG,
2016 PCI_SUBVENDOR_ID_COMPUTONE, PCI_SUBDEVICE_ID_COMPUTONE_PG6,
2017 0, 0, pbn_computone_6 },
2019 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI95N,
2020 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2022 { PCI_VENDOR_ID_TIMEDIA, PCI_DEVICE_ID_TIMEDIA_1889,
2023 PCI_VENDOR_ID_TIMEDIA, PCI_ANY_ID, 0, 0,
2024 pbn_b0_bt_1_921600 },
2027 * AFAVLAB serial card, from Harald Welte <laforge@gnumonks.org>
2029 { PCI_VENDOR_ID_AFAVLAB, PCI_DEVICE_ID_AFAVLAB_P028,
2030 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2031 pbn_b0_bt_8_115200 },
2032 { PCI_VENDOR_ID_AFAVLAB, PCI_DEVICE_ID_AFAVLAB_P030,
2033 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2034 pbn_b0_bt_8_115200 },
2036 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DSERIAL,
2037 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2038 pbn_b0_bt_2_115200 },
2039 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_QUATRO_A,
2040 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2041 pbn_b0_bt_2_115200 },
2042 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_QUATRO_B,
2043 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2044 pbn_b0_bt_2_115200 },
2045 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_OCTO_A,
2046 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2047 pbn_b0_bt_4_460800 },
2048 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_OCTO_B,
2049 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2050 pbn_b0_bt_4_460800 },
2051 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_PORT_PLUS,
2052 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2053 pbn_b0_bt_2_460800 },
2054 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_QUAD_A,
2055 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2056 pbn_b0_bt_2_460800 },
2057 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_QUAD_B,
2058 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2059 pbn_b0_bt_2_460800 },
2060 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_SSERIAL,
2061 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2062 pbn_b0_bt_1_115200 },
2063 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_PORT_650,
2064 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2065 pbn_b0_bt_1_460800 },
2068 * Dell Remote Access Card 4 - Tim_T_Murphy@Dell.com
2070 { PCI_VENDOR_ID_DELL, PCI_DEVICE_ID_DELL_RAC4,
2071 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2075 * Dell Remote Access Card III - Tim_T_Murphy@Dell.com
2077 { PCI_VENDOR_ID_DELL, PCI_DEVICE_ID_DELL_RACIII,
2078 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2082 * RAStel 2 port modem, gerg@moreton.com.au
2084 { PCI_VENDOR_ID_MORETON, PCI_DEVICE_ID_RASTEL_2PORT,
2085 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2086 pbn_b2_bt_2_115200 },
2089 * EKF addition for i960 Boards form EKF with serial port
2091 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_80960_RP,
2092 0xE4BF, PCI_ANY_ID, 0, 0,
2096 * Xircom Cardbus/Ethernet combos
2098 { PCI_VENDOR_ID_XIRCOM, PCI_DEVICE_ID_XIRCOM_X3201_MDM,
2099 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2102 * Xircom RBM56G cardbus modem - Dirk Arnold (temp entry)
2104 { PCI_VENDOR_ID_XIRCOM, PCI_DEVICE_ID_XIRCOM_RBM56G,
2105 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2109 * Untested PCI modems, sent in from various folks...
2113 * Elsa Model 56K PCI Modem, from Andreas Rath <arh@01019freenet.de>
2115 { PCI_VENDOR_ID_ROCKWELL, 0x1004,
2116 0x1048, 0x1500, 0, 0,
2119 { PCI_VENDOR_ID_SGI, PCI_DEVICE_ID_SGI_IOC3,
2126 { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_DIVA,
2127 PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_DIVA_RMP3, 0, 0,
2129 { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_DIVA,
2130 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2132 { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_DIVA_AUX,
2133 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2137 * NEC Vrc-5074 (Nile 4) builtin UART.
2139 { PCI_VENDOR_ID_NEC, PCI_DEVICE_ID_NEC_NILE4,
2140 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2143 { PCI_VENDOR_ID_DCI, PCI_DEVICE_ID_DCI_PCCOM4,
2144 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2146 { PCI_VENDOR_ID_DCI, PCI_DEVICE_ID_DCI_PCCOM8,
2147 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2151 * Exar Corp. XR17C15[248] Dual/Quad/Octal UART
2153 { PCI_VENDOR_ID_EXAR, PCI_DEVICE_ID_EXAR_XR17C152,
2154 PCI_ANY_ID, PCI_ANY_ID,
2156 0, pbn_exar_XR17C152 },
2157 { PCI_VENDOR_ID_EXAR, PCI_DEVICE_ID_EXAR_XR17C154,
2158 PCI_ANY_ID, PCI_ANY_ID,
2160 0, pbn_exar_XR17C154 },
2161 { PCI_VENDOR_ID_EXAR, PCI_DEVICE_ID_EXAR_XR17C158,
2162 PCI_ANY_ID, PCI_ANY_ID,
2164 0, pbn_exar_XR17C158 },
2167 * Topic TP560 Data/Fax/Voice 56k modem (reported by Evan Clarke)
2169 { PCI_VENDOR_ID_TOPIC, PCI_DEVICE_ID_TOPIC_TP560,
2170 PCI_ANY_ID, PCI_ANY_ID, 0, 0,
2174 * These entries match devices with class COMMUNICATION_SERIAL,
2175 * COMMUNICATION_MODEM or COMMUNICATION_MULTISERIAL
2177 { PCI_ANY_ID, PCI_ANY_ID,
2178 PCI_ANY_ID, PCI_ANY_ID,
2179 PCI_CLASS_COMMUNICATION_SERIAL << 8,
2180 0xffff00, pbn_default },
2181 { PCI_ANY_ID, PCI_ANY_ID,
2182 PCI_ANY_ID, PCI_ANY_ID,
2183 PCI_CLASS_COMMUNICATION_MODEM << 8,
2184 0xffff00, pbn_default },
2185 { PCI_ANY_ID, PCI_ANY_ID,
2186 PCI_ANY_ID, PCI_ANY_ID,
2187 PCI_CLASS_COMMUNICATION_MULTISERIAL << 8,
2188 0xffff00, pbn_default },
2192 static struct pci_driver serial_pci_driver = {
2194 .probe = pciserial_init_one,
2195 .remove = __devexit_p(pciserial_remove_one),
2196 .suspend = pciserial_suspend_one,
2197 .resume = pciserial_resume_one,
2198 .id_table = serial_pci_tbl,
2201 static int __init serial8250_pci_init(void)
2203 return pci_register_driver(&serial_pci_driver);
2206 static void __exit serial8250_pci_exit(void)
2208 pci_unregister_driver(&serial_pci_driver);
2211 module_init(serial8250_pci_init);
2212 module_exit(serial8250_pci_exit);
2214 MODULE_LICENSE("GPL");
2215 MODULE_DESCRIPTION("Generic 8250/16x50 PCI serial probe module");
2216 MODULE_DEVICE_TABLE(pci, serial_pci_tbl);