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 | 14 |
3 files changed, 17 insertions, 3 deletions
diff --git a/share/man/man4/puc.4 b/share/man/man4/puc.4 index 51ce2304598..4dda6ed11a0 100644 --- a/share/man/man4/puc.4 +++ b/share/man/man4/puc.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: puc.4,v 1.22 2004/04/17 17:52:02 deraadt Exp $ +.\" $OpenBSD: puc.4,v 1.23 2004/08/18 17:34:54 millert Exp $ .\" $NetBSD: puc.4,v 1.7 1999/07/03 05:55:23 cgd Exp $ .\" .\" Copyright (c) 1998 Christopher G. Demetriou. All rights reserved. @@ -101,6 +101,7 @@ The driver currently supports the following cards: .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 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)" .It Tn "Boca Research Turbo Serial 658 (8 port serial)" .It Tn "SUNIX 400x (1 port parallel)" diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs index e6d81ee01b5..d65793f4bd5 100644 --- a/sys/dev/pci/pcidevs +++ b/sys/dev/pci/pcidevs @@ -1,4 +1,4 @@ -$OpenBSD: pcidevs,v 1.754 2004/08/02 23:29:07 deraadt Exp $ +$OpenBSD: pcidevs,v 1.755 2004/08/18 17:34:53 millert Exp $ /* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */ /* @@ -1661,6 +1661,7 @@ product NETGEAR GA620T 0x630a GA620T /* NetMos */ product NETMOS 2S1P 0x9835 2S1P +product NETMOS 4S 0x9845 4S /* Network Security Technologies */ product NETSEC 7751 0x7751 7751 diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index 4e3123245d1..9c5361afa10 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pucdata.c,v 1.36 2004/06/18 14:54:09 henning Exp $ */ +/* $OpenBSD: pucdata.c,v 1.37 2004/08/18 17:34:53 millert Exp $ */ /* $NetBSD: pucdata.c,v 1.6 1999/07/03 05:55:23 cgd Exp $ */ /* @@ -985,6 +985,18 @@ const struct puc_device_description puc_devices[] = { }, }, + /* NetMos 4S PCI 16C650 : 4S */ + { /* "NetMos NM9845 Quad UART" */ + { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_4S, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, + { + { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ }, + { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ }, + { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 }, + { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 4 }, + }, + }, + { /* Sunix 4018A : 2-port parallel */ { PCI_VENDOR_SUNIX, PCI_PRODUCT_SUNIX_4018A, 0, 0 }, { 0xffff, 0xffff, 0, 0 }, |