Add support for Perle systems PCI-RAS 4 modem ports
See http://www.perle.com/products/Multimodem-Cards.shtml for product details
This commit is contained in:
parent
1666843c46
commit
1bdd4dec3b
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: pcidevs,v 1.842 2006/10/25 19:22:31 bouyer Exp $
|
||||
$NetBSD: pcidevs,v 1.843 2006/10/31 23:04:49 manu Exp $
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Christopher G. Demetriou
|
||||
|
@ -2865,6 +2865,7 @@ product PLANEX FNW_3603_TX 0xab06 FNW-3603-TX 10/100 Ethernet
|
|||
product PLANEX FNW_3800_TX 0xab07 FNW-3800-TX 10/100 Ethernet
|
||||
|
||||
/* PLX Technology products */
|
||||
product PLX 9030 0x9030 9030 Modem 4 port
|
||||
product PLX 9054 0x9054 9054 I/O Accelerator
|
||||
product PLX 9060ES 0x906e 9060ES PCI bus controller
|
||||
product PLX 9656 0x9656 9656 I/O Accelerator
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pucdata.c,v 1.47 2006/10/09 20:33:04 cube Exp $ */
|
||||
/* $NetBSD: pucdata.c,v 1.48 2006/10/31 23:04:50 manu 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.47 2006/10/09 20:33:04 cube Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pucdata.c,v 1.48 2006/10/31 23:04:50 manu Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -1034,6 +1034,21 @@ const struct puc_device_description puc_devices[] = {
|
|||
},
|
||||
},
|
||||
|
||||
|
||||
/*
|
||||
* Perle PCI-RAS 4 Modem ports
|
||||
*/
|
||||
{ "Perle Systems PCI-RAS 4 modem ports",
|
||||
{ 0x10b5, 0x9030, 0x155f, 0xf001 },
|
||||
{ 0xffff, 0xffff, 0xffff, 0xffff },
|
||||
{
|
||||
{ PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
|
||||
{ PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
|
||||
{ PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
|
||||
{ PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
|
||||
},
|
||||
},
|
||||
|
||||
/*
|
||||
* Boca Research Turbo Serial 654 (4 serial port) card.
|
||||
* Appears to be the same as Chase Research PLC PCI-FAST4
|
||||
|
|
Loading…
Reference in New Issue