diff options
-rw-r--r-- | sys/dev/pci/pucdata.c | 48 |
1 files changed, 47 insertions, 1 deletions
diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index afac1755cbb..9539bbaee7c 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pucdata.c,v 1.2 1999/11/14 01:27:57 downsj Exp $ */ +/* $OpenBSD: pucdata.c,v 1.3 2000/07/27 19:26:01 deraadt Exp $ */ /* $NetBSD: pucdata.c,v 1.6 1999/07/03 05:55:23 cgd Exp $ */ /* @@ -525,6 +525,52 @@ const struct puc_device_description puc_devices[] = { }, }, + /*NEC PK-UG-X008 */ + { /* "NEC PK-UG-X008", */ + { 0x1033, 0x007d, 0x1033, 0x8012 }, + { 0xffff, 0xffff, 0xffff, 0xffff }, + { + { PUC_PORT_TYPE_COM, 0x10, 0x00 }, + }, + }, + + /* Lava Computers 2SP-PCI */ + { /* "Lava Computers 2SP-PCI parallel port", */ + { 0x1407, 0x8000, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, + { + { PUC_PORT_TYPE_LPT, 0x10, 0x00 }, + }, + }, + + /* Lava Computers 2SP-PCI and Quattro-PCI serial ports */ + { /* "Lava Computers dual serial port", */ + { 0x1407, 0x0100, 0, 0 }, + { 0xffff, 0xfffc, 0, 0 }, + { + { PUC_PORT_TYPE_COM, 0x10, 0x00 }, + { PUC_PORT_TYPE_COM, 0x14, 0x00 }, + }, + }, + + /* US Robotics (3Com) PCI Modems */ + { /* "US Robotics (3Com) 3CP5609 PCI 16550 Modem", */ + { 0x12b9, 0x1008, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, + { + { PUC_PORT_TYPE_COM, 0x10, 0x00 }, + }, + }, + + /* IBM 33L4618: AT&T/Lucent Venus Modem */ + { /* "IBM 33L4618: AT&T/Lucent Venus Modem", */ + { 0x11c1, 0x0480, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, + { + { PUC_PORT_TYPE_COM, 0x18, 0x08 }, + }, + }, + { /* NULL, */ { 0, 0, 0, 0 }, { 0, 0, 0, 0 }, |