diff options
author | Pierre Beyssac <pb@FreeBSD.org> | 2003-08-14 14:15:16 +0000 |
---|---|---|
committer | Pierre Beyssac <pb@FreeBSD.org> | 2003-08-14 14:15:16 +0000 |
commit | 4530e20aae63b6690165819fe6a8205e93620057 (patch) | |
tree | af5ec222507019d586d1db690c3d018c626153f4 /sys/dev/puc | |
parent | 7b51f664767e41a4a57cf80de9669a14af402948 (diff) | |
download | src-4530e20aae63b6690165819fe6a8205e93620057.tar.gz src-4530e20aae63b6690165819fe6a8205e93620057.zip |
Add support for the newer Moxa PCI 8-port, 16550-compatible based
CP-168U board. It initializes and attaches in the same way as the
older (but higher performance) C168H. The only difference is the
board ID, which is 0x1681.
PR: kern/53548
Submitted by: regnauld@catpipe.net
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=118902
Diffstat (limited to 'sys/dev/puc')
-rw-r--r-- | sys/dev/puc/pucdata.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sys/dev/puc/pucdata.c b/sys/dev/puc/pucdata.c index 3517958dbea6..b2333ca472b5 100644 --- a/sys/dev/puc/pucdata.c +++ b/sys/dev/puc/pucdata.c @@ -985,6 +985,23 @@ const struct puc_device_description puc_devices[] = { }, }, + /* Moxa Technologies Co., Ltd. PCI I/O Card 8S RS232 */ + { "Moxa Technologies, C168U/PCI", + NULL, + { 0x1393, 0x1681, 0, 0 }, + { 0xffff, 0xffff, 0, 0, }, + { + { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 }, + { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 }, + { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 }, + { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 }, + { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 }, + { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 }, + { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 }, + { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 }, + }, + }, + { "Avlab Technology, PCI IO 2S", NULL, { 0x14db, 0x2130, 0, 0 }, |