summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2005-08-18 13:40:01 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2005-08-18 13:40:01 +0000
commit53d5454c58a6d3e00c7ebeb1396275ae2f7c041f (patch)
tree9c36ad15171ec3db6445855751a01f04773b0a19 /sys/dev
parent5f322ca45a1d1f2f5b2dc0dfa42359d333715260 (diff)
Match nforce 2/3/4 SATA using generic sata_chip_map().
Tested by dlg@ on nforce 3, and several people on nforce 4. ok deraadt@
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/pciide.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c
index 435737b6bf5..9425c3184e1 100644
--- a/sys/dev/pci/pciide.c
+++ b/sys/dev/pci/pciide.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pciide.c,v 1.200 2005/08/18 13:05:59 jsg Exp $ */
+/* $OpenBSD: pciide.c,v 1.201 2005/08/18 13:40:00 jsg Exp $ */
/* $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $ */
/*
@@ -699,6 +699,10 @@ const struct pciide_product_desc pciide_nvidia_products[] = {
0,
nforce_chip_map
},
+ { PCI_PRODUCT_NVIDIA_NFORCE2_400_SATA,
+ 0,
+ sata_chip_map
+ },
{ PCI_PRODUCT_NVIDIA_NFORCE3_IDE,
0,
nforce_chip_map
@@ -707,9 +711,21 @@ const struct pciide_product_desc pciide_nvidia_products[] = {
0,
nforce_chip_map
},
+ { PCI_PRODUCT_NVIDIA_NFORCE3_250_SATA,
+ 0,
+ sata_chip_map
+ },
{ PCI_PRODUCT_NVIDIA_NFORCE4_ATA133,
0,
nforce_chip_map
+ },
+ { PCI_PRODUCT_NVIDIA_NFORCE4_SATA1,
+ 0,
+ sata_chip_map
+ },
+ { PCI_PRODUCT_NVIDIA_NFORCE4_SATA2,
+ 0,
+ sata_chip_map
}
};