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 support for boards with an Oxford Semiconduc...



details:   https://anonhg.NetBSD.org/src/rev/df96a11311f3
branches:  trunk
changeset: 501574:df96a11311f3
user:      veego <veego%NetBSD.org@localhost>
date:      Thu Jan 04 08:43:21 2001 +0000

description:
Add support for boards with an Oxford Semiconductor chip.
This one was an I/O Flex PCI I/O Card Model-223 with 4 serial and
1 parallel ports.
XXX We need to move the PCI IDs to pcidevs.

diffstat:

 sys/dev/pci/pucdata.c |  33 ++++++++++++++++++++++++++++++++-
 1 files changed, 32 insertions(+), 1 deletions(-)

diffs (46 lines):

diff -r c9fa0ace916b -r df96a11311f3 sys/dev/pci/pucdata.c
--- a/sys/dev/pci/pucdata.c     Thu Jan 04 08:39:53 2001 +0000
+++ b/sys/dev/pci/pucdata.c     Thu Jan 04 08:43:21 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pucdata.c,v 1.11 2001/01/03 15:13:15 bouyer Exp $      */
+/*     $NetBSD: pucdata.c,v 1.12 2001/01/04 08:43:21 veego Exp $       */
 
 /*
  * Copyright (c) 1998, 1999 Christopher G. Demetriou.  All rights reserved.
@@ -597,5 +597,36 @@
            },
        },
 
+       /*
+        * Boards with an Oxford Semiconductor chip.
+        *
+        * Oxford Semiconductor provides documentation for their chip at:
+        * <URL:http://www.oxsemi.com/products/uarts/index.html>
+        *
+        * As sold by Kouwell <URL:http://www.kouwell.com/>.
+        * I/O Flex PCI I/O Card Model-223 with 4 serial and 1 parallel ports.
+        */
+
+       /* Oxford Semiconductor OX16PCI954 PCI UARTs */
+       {   "Qxford Semiconductor OX16PCI954 UARTs",
+           {   0x1415, 0x9501, 0,      0       },
+           {   0xffff, 0xffff, 0,      0       },
+           {
+               { PUC_PORT_TYPE_COM, 0x10, 0x00, 0x00 },
+               { PUC_PORT_TYPE_COM, 0x10, 0x08, 0x00 },
+               { PUC_PORT_TYPE_COM, 0x10, 0x10, 0x00 },
+               { PUC_PORT_TYPE_COM, 0x10, 0x18, 0x00 },
+           },
+       },
+
+       /* Oxford Semiconductor OX16PCI954 PCI Parallel port */
+       {   "Qxford Semiconductor OX16PCI954 Parallel port",
+           {   0x1415, 0x9513, 0,      0       },
+           {   0xffff, 0xffff, 0,      0       },
+           {
+               { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
+           },
+       },
+
        { 0 }
 };



Home | Main Index | Thread Index | Old Index