Module Name: src Committed By: jdolecek Date: Tue Jan 22 22:09:27 UTC 2019
Modified Files: src/sys/dev/pci: ahcisata_pci.c Log Message: add BADPMP quirk for Intel 82801JI SATA Controller (AHCI mode), which apparently has problem with the PMP reset part of PR kern/53307 - Christos machine To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 src/sys/dev/pci/ahcisata_pci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/pci/ahcisata_pci.c diff -u src/sys/dev/pci/ahcisata_pci.c:1.51 src/sys/dev/pci/ahcisata_pci.c:1.52 --- src/sys/dev/pci/ahcisata_pci.c:1.51 Mon Jan 14 21:29:56 2019 +++ src/sys/dev/pci/ahcisata_pci.c Tue Jan 22 22:09:27 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: ahcisata_pci.c,v 1.51 2019/01/14 21:29:56 jdolecek Exp $ */ +/* $NetBSD: ahcisata_pci.c,v 1.52 2019/01/22 22:09:27 jdolecek Exp $ */ /* * Copyright (c) 2006 Manuel Bouyer. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ahcisata_pci.c,v 1.51 2019/01/14 21:29:56 jdolecek Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ahcisata_pci.c,v 1.52 2019/01/22 22:09:27 jdolecek Exp $"); #ifdef _KERNEL_OPT #include "opt_ahcisata_pci.h" @@ -200,6 +200,8 @@ static const struct ahci_pci_quirk ahci_ AHCI_PCI_QUIRK_FORCE }, { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_HUDSON_SATA, AHCI_PCI_QUIRK_FORCE }, + { PCI_VENDOR_INTEL, 82801JI_SATA_AHCI, + AHCI_QUIRK_BADPMP }, }; struct ahci_pci_softc {