summaryrefslogtreecommitdiff
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorChris Cappuccio <chris@cvs.openbsd.org>2000-08-05 00:53:02 +0000
committerChris Cappuccio <chris@cvs.openbsd.org>2000-08-05 00:53:02 +0000
commit48be11d992a101469c7f9e0845ee21a0a967633e (patch)
treef2bda731f599d69ece565e334d7c33b56ebb8f10 /sys/dev/pci
parent77cff754d418f04f9ab49027f644b6916bfcbfb9 (diff)
Support Promise Ultra/100 as found on some Microstar motherboards
(From NetBSD PR 10756)
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/pcidevs3
-rw-r--r--sys/dev/pci/pciide.c6
2 files changed, 7 insertions, 2 deletions
diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs
index f35f3b9ae48..1a9833606b0 100644
--- a/sys/dev/pci/pcidevs
+++ b/sys/dev/pci/pcidevs
@@ -1,4 +1,4 @@
- $OpenBSD: pcidevs,v 1.297 2000/08/04 17:45:41 deraadt Exp $
+ $OpenBSD: pcidevs,v 1.298 2000/08/05 00:53:01 chris Exp $
/* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */
@@ -1350,6 +1350,7 @@ product PROMISE DC5030 0x5300 DC5030
product PROMISE ULTRA33 0x4d33 Ultra33/ATA IDE
product PROMISE ULTRA66 0x4d38 Ultra66/ATA IDE
product PROMISE ULTRA100 0x4d30 Ultra100/ATA IDE
+product PROMISE ULTRA100_2 0x0d30 Ultra100/ATA IDE(2)
/* QLogic products */
product QLOGIC ISP1020 0x1020 ISP1020
diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c
index 9500559bafd..d9b0ae4af5b 100644
--- a/sys/dev/pci/pciide.c
+++ b/sys/dev/pci/pciide.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pciide.c,v 1.29 2000/07/31 23:39:43 chris Exp $ */
+/* $OpenBSD: pciide.c,v 1.30 2000/08/05 00:53:01 chris Exp $ */
/* $NetBSD: pciide.c,v 1.48 1999/11/28 20:05:18 bouyer Exp $ */
/*
@@ -380,6 +380,10 @@ const struct pciide_product_desc pciide_promise_products[] = {
{ PCI_PRODUCT_PROMISE_ULTRA100,
IDE_PCI_CLASS_OVERRIDE,
pdc202xx_chip_map,
+ },
+ { PCI_PRODUCT_PROMISE_ULTRA100_2,
+ IDE_PCI_CLASS_OVERRIDE,
+ pdc202xx_chip_map,
}
};