diff options
author | jhb <jhb@FreeBSD.org> | 2003-12-31 17:51:18 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2003-12-31 17:51:18 +0000 |
commit | 92f77e45ee44712bf7b22f85ba0627a113cbe347 (patch) | |
tree | ddbfe346614a206259078651f4bd04632cad584d /sys/dev/puc | |
parent | 390a3f79d84ed94330c5abc29572f173803f05b7 (diff) | |
download | FreeBSD-src-92f77e45ee44712bf7b22f85ba0627a113cbe347.zip FreeBSD-src-92f77e45ee44712bf7b22f85ba0627a113cbe347.tar.gz |
Add support for an non-branded SUN1889-based 2 port PCI serial card.
PR: kern/55159
Submitted by: Yeasah Pell <yeasah@apocalypse.org>
MFC after: 1 week
Diffstat (limited to 'sys/dev/puc')
-rw-r--r-- | sys/dev/puc/pucdata.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/dev/puc/pucdata.c b/sys/dev/puc/pucdata.c index a4f0e7a..cd8554e 100644 --- a/sys/dev/puc/pucdata.c +++ b/sys/dev/puc/pucdata.c @@ -1205,5 +1205,15 @@ const struct puc_device_description puc_devices[] = { PUC_ILR_TYPE_DIGI, { 0x07, 0x47 }, }, + { "Sunix SUN1889", + NULL, + { 0x0009, 0x7168, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, + { + { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 }, + { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 }, + }, + }, + { 0 } }; |