Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci Set PCI_QUIRK_HASEXTCNF flag for AMD Seattle PCI...



details:   https://anonhg.NetBSD.org/src/rev/fb751d6b105e
branches:  trunk
changeset: 836414:fb751d6b105e
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Tue Oct 16 00:10:58 2018 +0000

description:
Set PCI_QUIRK_HASEXTCNF flag for AMD Seattle PCI host bridges

diffstat:

 sys/dev/pci/pci_quirks.c |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (29 lines):

diff -r 68e76794949f -r fb751d6b105e sys/dev/pci/pci_quirks.c
--- a/sys/dev/pci/pci_quirks.c  Tue Oct 16 00:08:51 2018 +0000
+++ b/sys/dev/pci/pci_quirks.c  Tue Oct 16 00:10:58 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pci_quirks.c,v 1.10 2018/02/28 05:50:06 msaitoh Exp $  */
+/*     $NetBSD: pci_quirks.c,v 1.11 2018/10/16 00:10:58 jmcneill Exp $ */
 
 /*
  * Copyright (c) 1998 Christopher G. Demetriou.  All rights reserved.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_quirks.c,v 1.10 2018/02/28 05:50:06 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_quirks.c,v 1.11 2018/10/16 00:10:58 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -53,6 +53,10 @@
            PCI_QUIRK_HASEXTCNF },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_COREI76K_IMC_0,
            PCI_QUIRK_HASEXTCNF },
+       { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_SEATTLE_PCHB_1,
+           PCI_QUIRK_HASEXTCNF },
+       { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_SEATTLE_PCHB_2,
+           PCI_QUIRK_HASEXTCNF },
 };
 
 const struct pci_quirkdata *



Home | Main Index | Thread Index | Old Index