diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2011-04-27 07:55:06 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2011-04-27 07:55:06 +0000 |
commit | c56f0b62918e122b38d2d03633b62e1ccd40e35e (patch) | |
tree | 2bd1641ca034339cb196223e2c3795657486c038 /sys | |
parent | 503dcc176e5420fea75248e2538fa511f147f21a (diff) |
support Intel 6 series SATA in non raid/non ahci mode.
tested by Daniel Dickman
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/pciide.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c index 3f75e73a852..b42310bd9a9 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.327 2011/04/18 04:16:12 deraadt Exp $ */ +/* $OpenBSD: pciide.c,v 1.328 2011/04/27 07:55:05 jsg Exp $ */ /* $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $ */ /* @@ -553,6 +553,22 @@ const struct pciide_product_desc pciide_intel_products[] = { 0, piixsata_chip_map }, + { PCI_PRODUCT_INTEL_6SERIES_SATA_1, /* Intel 6 Series SATA */ + 0, + piixsata_chip_map + }, + { PCI_PRODUCT_INTEL_6SERIES_SATA_2, /* Intel 6 Series SATA */ + 0, + piixsata_chip_map + }, + { PCI_PRODUCT_INTEL_6SERIES_SATA_3, /* Intel 6 Series SATA */ + 0, + piixsata_chip_map + }, + { PCI_PRODUCT_INTEL_6SERIES_SATA_4, /* Intel 6 Series SATA */ + 0, + piixsata_chip_map + }, { PCI_PRODUCT_INTEL_EP80579_SATA, /* Intel EP80579 SATA */ 0, piixsata_chip_map |