diff options
author | 2002-04-29 22:30:34 +0000 | |
---|---|---|
committer | 2002-04-29 22:30:34 +0000 | |
commit | c9bcdbb9b6e01945a11f0774a8a74a53653cd911 (patch) | |
tree | 5593d788f42c22c91df6712e348c6a8d864f7b2a | |
parent | I want option DEBUG to rock my world. (diff) | |
download | wireguard-openbsd-c9bcdbb9b6e01945a11f0774a8a74a53653cd911.tar.xz wireguard-openbsd-c9bcdbb9b6e01945a11f0774a8a74a53653cd911.zip |
a couple more suzies from lava; from Richard Browne <richb@timestone.com.au>
-rw-r--r-- | sys/dev/pci/pcidevs | 6 | ||||
-rw-r--r-- | sys/dev/pci/pucdata.c | 15 |
2 files changed, 19 insertions, 2 deletions
diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs index f197a0f365c..b1edf76c26b 100644 --- a/sys/dev/pci/pcidevs +++ b/sys/dev/pci/pcidevs @@ -1,4 +1,4 @@ - $OpenBSD: pcidevs,v 1.504 2002/04/28 20:54:56 nate Exp $ + $OpenBSD: pcidevs,v 1.505 2002/04/29 22:30:34 mickey Exp $ /* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */ /* @@ -1421,8 +1421,12 @@ product LMC DS1 0x0006 DS1 /* Lava */ product LAVA TWOSP_2S 0x0100 Dual Serial +product LAVA QUATTRO_AB 0x0101 Dual Serial +product LAVA QUATTRO_CD 0x0102 Dual Serial product LAVA IOFLEX_2S_0 0x0110 Serial product LAVA IOFLEX_2S_1 0x0111 Serial +product LAVA QUATTRO_AB2 0x0120 Dual Serial +product LAVA QUATTRO_CD2 0x0121 Dual Serial product LAVA OCTOPUS550_0 0x0180 Quad Serial product LAVA OCTOPUS550_1 0x0181 Quad Serial product LAVA LAVAPORT_0 0x0201 Serial diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index bdecfe7f64a..0201c1fa37d 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pucdata.c,v 1.19 2002/03/22 23:29:50 deraadt Exp $ */ +/* $OpenBSD: pucdata.c,v 1.20 2002/04/29 22:30:34 mickey Exp $ */ /* $NetBSD: pucdata.c,v 1.6 1999/07/03 05:55:23 cgd Exp $ */ /* @@ -778,6 +778,19 @@ const struct puc_device_description puc_devices[] = { }, }, + /* + * Lava Computers Quattro-PCI serial ports. + * A second version of the Quattro-PCI with different PCI ids. + */ + { /* "Lava Computers Quattro-PCI 4-port serial", */ + { PCI_VENDOR_LAVA, PCI_PRODUCT_LAVA_QUATTRO_AB2, 0, 0 }, + { 0xffff, 0xfffe, 0, 0 }, + { + { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ }, + { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ }, + }, + }, + /* Lava Computers LavaPort-Dual and LavaPort-Quad 4*clock PCI serial ports */ { /* "Lava Computers high-speed port", */ { PCI_VENDOR_LAVA, PCI_PRODUCT_LAVA_LAVAPORT_0, 0, 0 }, |