diff options
-rw-r--r-- | share/man/man4/puc.4 | 3 | ||||
-rw-r--r-- | sys/dev/pci/pcidevs | 3 | ||||
-rw-r--r-- | sys/dev/pci/pucdata.c | 10 |
3 files changed, 13 insertions, 3 deletions
diff --git a/share/man/man4/puc.4 b/share/man/man4/puc.4 index 41fc993c625..eb0d9149d85 100644 --- a/share/man/man4/puc.4 +++ b/share/man/man4/puc.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: puc.4,v 1.24 2004/09/30 19:59:25 mickey Exp $ +.\" $OpenBSD: puc.4,v 1.25 2005/03/07 13:28:26 deraadt Exp $ .\" $NetBSD: puc.4,v 1.7 1999/07/03 05:55:23 cgd Exp $ .\" .\" Copyright (c) 1998 Christopher G. Demetriou. All rights reserved. @@ -100,6 +100,7 @@ The driver currently supports the following cards: .It Tn "Moxa Technologies Co., Ltd. PCI I/O Card 4S (4 port serial)" .It Tn "Moxa Technologies Co., Ltd. C104H/PCI (4 port serial)" .It Tn "Moxa Technologies Co., Ltd. CP104/PCI (4 port serial)" +.It Tn "NetMos 1P (1 port parallel)" .It Tn "NetMos 2S1P (2 port serial and 1 port parallel)" .It Tn "NetMos 4S (4 port serial)" .It Tn "Boca Research Turbo Serial 654 (4 port serial)" diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs index 55643ed6503..68186777608 100644 --- a/sys/dev/pci/pcidevs +++ b/sys/dev/pci/pcidevs @@ -1,4 +1,4 @@ -$OpenBSD: pcidevs,v 1.839 2005/03/02 17:58:42 xsa Exp $ +$OpenBSD: pcidevs,v 1.840 2005/03/07 13:28:26 deraadt Exp $ /* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */ /* @@ -1817,6 +1817,7 @@ product NETGEAR GA620 0x620a GA620 product NETGEAR GA620T 0x630a GA620T /* NetMos */ +product NETMOS 1P 0x9805 1P product NETMOS 2S1P 0x9835 2S1P product NETMOS 4S 0x9845 4S diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index 3c489a4980d..09375763e8e 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pucdata.c,v 1.39 2004/11/21 03:56:44 deraadt Exp $ */ +/* $OpenBSD: pucdata.c,v 1.40 2005/03/07 13:28:26 deraadt Exp $ */ /* $NetBSD: pucdata.c,v 1.6 1999/07/03 05:55:23 cgd Exp $ */ /* @@ -1008,6 +1008,14 @@ const struct puc_device_description puc_devices[] = { }, }, + /* NetMos 1P PCI: 1P */ + { /* "NetMos NM9805 1284 Printer Port" */ + { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_1P, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, + { + { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 }, + }, + }, { /* Sunix 4018A : 2-port parallel */ { PCI_VENDOR_SUNIX, PCI_PRODUCT_SUNIX_4018A, 0, 0 }, { 0xffff, 0xffff, 0, 0 }, |