diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2008-05-05 22:25:05 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2008-05-05 22:25:05 +0000 |
commit | b5efc130fe05600775952f79e6a7674cd247da50 (patch) | |
tree | eb7f906164edc0562d6bdd94c48f84b9be6a7fc2 /sys/dev | |
parent | 8044a68f146a90a9d2cc02f851f66869219b89c0 (diff) |
dell drac 3 and 4 virtual uarts are pucs running very fast.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/pucdata.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index 8327f831322..bc55b216dcb 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pucdata.c,v 1.54 2008/04/24 21:31:28 kettenis Exp $ */ +/* $OpenBSD: pucdata.c,v 1.55 2008/05/05 22:25:04 dlg Exp $ */ /* $NetBSD: pucdata.c,v 1.6 1999/07/03 05:55:23 cgd Exp $ */ /* @@ -1477,6 +1477,21 @@ const struct puc_device_description puc_devices[] = { }, }, + { /* Dell DRAC 3 Virtual UART */ + { PCI_VENDOR_DELL, PCI_PRODUCT_DELL_DRAC_3_VUART, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, + { + { PUC_PORT_TYPE_COM, 0x14, 0x0000, COM_FREQ * 128 }, + }, + }, + { /* Dell DRAC 4 Virtual UART */ + { PCI_VENDOR_DELL, PCI_PRODUCT_DELL_DRAC_4_VUART, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, + { + { PUC_PORT_TYPE_COM, 0x14, 0x0000, COM_FREQ * 128 }, + }, + }, + { /* NULL, */ { 0, 0, 0, 0 }, |