diff options
| author | rin <rin@NetBSD.org> | 2022-05-29 22:26:21 +0000 |
|---|---|---|
| committer | rin <rin@NetBSD.org> | 2022-05-29 22:26:21 +0000 |
| commit | 2a4baa21a13f5cd1234f9bbcb3945040fc2ef35b (patch) | |
| tree | 8ece12bc18beec6f6a8a62ca74d08f435090bdaf /sys/dev | |
| parent | 1e9ac6619ed4bc172bb660938065d9787e422df6 (diff) | |
Apply extra delay quirk for
- Intel 7 Series (mobile) SATA Controller (AHCI):
rev. 0x04 sometimes fails to probe Seagate ST500LT012.
Reported by RVP. Thanks!
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/pci/ahcisata_pci.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/pci/ahcisata_pci.c b/sys/dev/pci/ahcisata_pci.c index 9db07db4f4d..96e035f2223 100644 --- a/sys/dev/pci/ahcisata_pci.c +++ b/sys/dev/pci/ahcisata_pci.c @@ -1,4 +1,4 @@ -/* $NetBSD: ahcisata_pci.c,v 1.63 2022/05/29 11:18:33 rin Exp $ */ +/* $NetBSD: ahcisata_pci.c,v 1.64 2022/05/29 22:26:21 rin Exp $ */ /* * Copyright (c) 2006 Manuel Bouyer. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ahcisata_pci.c,v 1.63 2022/05/29 11:18:33 rin Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ahcisata_pci.c,v 1.64 2022/05/29 22:26:21 rin Exp $"); #ifdef _KERNEL_OPT #include "opt_ahcisata_pci.h" @@ -204,8 +204,12 @@ static const struct ahci_pci_quirk ahci_pci_quirks[] = { AHCI_QUIRK_BADPMP }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_SATA_AHCI, AHCI_QUIRK_BADPMP }, + + /* extra delay */ { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_C600_AHCI, AHCI_QUIRK_EXTRA_DELAY }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_7SER_MO_SATA_AHCI, + AHCI_QUIRK_EXTRA_DELAY }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_BSW_AHCI, AHCI_QUIRK_EXTRA_DELAY }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8SER_DT_SATA_AHCI, |
