diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2010-04-21 01:09:14 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2010-04-21 01:09:14 +0000 |
commit | 9497af87f5b565b6e916fe63f0f1813de69367ec (patch) | |
tree | 2ce84700c06daab392d524becaa1b127db579f98 /sys/dev/pci | |
parent | 1e467a11ad968846b544b06dc3fd1d2436f9538a (diff) |
Add support for PLX I/O 9016 based 8 port serial card
ok deraadt@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/pucdata.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index ef34cc12190..9f4ec32bb58 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pucdata.c,v 1.67 2010/03/27 21:58:30 kettenis Exp $ */ +/* $OpenBSD: pucdata.c,v 1.68 2010/04/21 01:09:13 beck Exp $ */ /* $NetBSD: pucdata.c,v 1.6 1999/07/03 05:55:23 cgd Exp $ */ /* @@ -1498,6 +1498,22 @@ const struct puc_device_description puc_devices[] = { }, }, + /* PLX 9016 8 port serial card. (i.e. Syba) */ + { /* "PLX 9016 - Syba" */ + { PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9016, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, + { + { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4 }, + { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4 }, + { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4 }, + { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4 }, + { PUC_PORT_TYPE_COM, 0x10, 0x20, COM_FREQ * 4 }, + { PUC_PORT_TYPE_COM, 0x10, 0x28, COM_FREQ * 4 }, + { PUC_PORT_TYPE_COM, 0x10, 0x30, COM_FREQ * 4 }, + { PUC_PORT_TYPE_COM, 0x10, 0x38, COM_FREQ * 4 }, + }, + }, + /* Avlab Technology, Inc. Low Profile PCI 4 Serial: 4S */ { /* "Avlab Low Profile PCI 4 Serial" */ { PCI_VENDOR_AVLAB, PCI_PRODUCT_AVLAB_LPPCI4S_2, 0, 0 }, |