summaryrefslogtreecommitdiffstats
path: root/sys/dev/puc
diff options
context:
space:
mode:
authorwilko <wilko@FreeBSD.org>2005-01-05 20:06:04 +0000
committerwilko <wilko@FreeBSD.org>2005-01-05 20:06:04 +0000
commit867473d902ec5f059258a20587a23f494f390577 (patch)
tree1b87325dfcd8d4cb8e2d90d0a4030ffc0ac0b81f /sys/dev/puc
parent412e99bb57ba0c4d8bdd60725fdf0e64c4d15624 (diff)
downloadFreeBSD-src-867473d902ec5f059258a20587a23f494f390577.zip
FreeBSD-src-867473d902ec5f059258a20587a23f494f390577.tar.gz
Add support for Chase/Perle PCI FAST-4 4 port serial cards which appear
to be the same as Boca Research Turbo Serial 654 (4 serial port). While add the 8 port variants as well. Submitted by: sten@blinkenlights.nl PR: kern/75793 MFC after: 1 week
Diffstat (limited to 'sys/dev/puc')
-rw-r--r--sys/dev/puc/pucdata.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/sys/dev/puc/pucdata.c b/sys/dev/puc/pucdata.c
index ad82771..24cfcc1 100644
--- a/sys/dev/puc/pucdata.c
+++ b/sys/dev/puc/pucdata.c
@@ -1203,5 +1203,41 @@ const struct puc_device_description puc_devices[] = {
},
},
+ /*
+ * Boca Research Turbo Serial 654 (4 serial port) card.
+ * Appears to be the same as Chase Research PLC PCI-FAST4
+ * and Perle PCI-FAST4 Multi-Port serial cards.
+ */
+ { "Boca Research Turbo Serial 654",
+ { 0x10b5, 0x9050, 0x12e0, 0x0031 },
+ { 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 658 (8 serial port) card.
+ * Appears to be the same as Chase Research PLC PCI-FAST8
+ * and Perle PCI-FAST8 Multi-Port serial cards.
+ */
+ { "Boca Research Turbo Serial 658",
+ { 0x10b5, 0x9050, 0x12e0, 0x0021 },
+ { 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 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 4 },
+ },
+ },
+
{ 0 }
};
OpenPOWER on IntegriCloud