Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci Add DIGI Neo 8-port serial(PCIe) and OXFORD OXPC...



details:   https://anonhg.NetBSD.org/src/rev/3a595494dea0
branches:  trunk
changeset: 325452:3a595494dea0
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Wed Dec 25 16:05:59 2013 +0000

description:
Add DIGI Neo 8-port serial(PCIe) and OXFORD OXPCIe952 Parallel.

diffstat:

 sys/dev/pci/pucdata.c |  30 ++++++++++++++++++++++++++++--
 1 files changed, 28 insertions(+), 2 deletions(-)

diffs (58 lines):

diff -r 03ebfb9743be -r 3a595494dea0 sys/dev/pci/pucdata.c
--- a/sys/dev/pci/pucdata.c     Wed Dec 25 16:05:18 2013 +0000
+++ b/sys/dev/pci/pucdata.c     Wed Dec 25 16:05:59 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pucdata.c,v 1.88 2013/12/25 15:17:56 msaitoh Exp $     */
+/*     $NetBSD: pucdata.c,v 1.89 2013/12/25 16:05:59 msaitoh Exp $     */
 
 /*
  * Copyright (c) 1998, 1999 Christopher G. Demetriou.  All rights reserved.
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pucdata.c,v 1.88 2013/12/25 15:17:56 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pucdata.c,v 1.89 2013/12/25 16:05:59 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -390,6 +390,22 @@
            },
        },
 
+       /* Digi International Digi Neo 8 Serial (PCIe) */
+       {   "Digi International Digi Neo 8 Serial (PCIe)",
+           {   PCI_VENDOR_DIGI, PCI_PRODUCT_DIGI_NEO8_PCIE,    0, 0  },
+           {   0xffff, 0xffff,                                 0, 0  },
+           {
+               { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
+               { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
+               { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
+               { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
+               { PUC_PORT_TYPE_COM, 0x10, 0x0800, COM_FREQ * 8 },
+               { PUC_PORT_TYPE_COM, 0x10, 0x0a00, COM_FREQ * 8 },
+               { PUC_PORT_TYPE_COM, 0x10, 0x0c00, COM_FREQ * 8 },
+               { PUC_PORT_TYPE_COM, 0x10, 0x0e00, COM_FREQ * 8 },
+           },
+       },
+
        {   "EXAR XR17D152",
            {   PCI_VENDOR_EXAR, PCI_PRODUCT_EXAR_XR17D152, 0,      0       },
            {   0xffff, 0xffff, 0,      0       },
@@ -993,6 +1009,16 @@
         * I/O Flex PCI I/O Card Model-223 with 4 serial and 1 parallel ports.
         */
 
+       /* Oxford Semiconductor OXPCIe952 PCIe 1P */
+       {   "Oxford Semiconductor OXPCIe952 LPT",
+           {   PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OXPCIE952P,
+               0, 0},
+           {   0xffff, 0xffff, 0,      0       },
+           {
+               { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
+           },
+       },
+
        /* Oxford Semiconductor OXPCIe952 PCIe UARTs */
        {   "Oxford Semiconductor OXPCIe952 UARTs",
            {   PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OXPCIE952,



Home | Main Index | Thread Index | Old Index