diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-07-27 19:26:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-07-27 19:26:02 +0000 |
commit | 28e867ba29aeeec457edd12944528e685bb76a9c (patch) | |
tree | 6de862af1e8fdc9b262121d904109cdc200b3116 /sys/dev/pci | |
parent | a733161009947fba6521dd5ea2fb3a93e6855f40 (diff) |
more puc devices, including IBM 33L4618: AT&T/Lucent Venus Modem offset from kaspar.toomik@personalchemistry.com
Diffstat (limited to 'sys/dev/pci')
-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 }, |