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.
This commit is contained in:
veego 2001-01-04 08:43:21 +00:00
parent 26b1bcce00
commit 17718db1b9
1 changed files with 32 additions and 1 deletions

View File

@ -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 @@ const struct puc_device_description puc_devices[] = {
},
},
/*
* 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 }
};