aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2012-06-16 16:40:22 -0400
committerBjorn Helgaas <bhelgaas@google.com>2012-06-16 16:40:22 -0400
commitfbebb9fd22581b6422d60669c4ff86ce99d6cdba (patch)
treef7063ec22814ee7782d1ccdb6f8653404d6714c8 /drivers
parentcfaf025112d3856637ff34a767ef785ef5cf2ca9 (diff)
PCI: add infrastructure for devices with broken INTx masking
pci_intx_mask_supported() assumes INTx masking is supported if the PCI_COMMAND_INTX_DISABLE bit is writable. But when that bit is set, some devices don't actually mask INTx or update PCI_STATUS_INTERRUPT as we expect. This patch adds a way for quirks to identify these broken devices. [bhelgaas: split out from Chelsio quirk addition] Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pci/pci.c3
-rw-r--r--drivers/pci/quirks.c10
2 files changed, 13 insertions, 0 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 447e83472c01..9ae517a68360 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -2876,6 +2876,9 @@ bool pci_intx_mask_supported(struct pci_dev *dev)
2876 bool mask_supported = false; 2876 bool mask_supported = false;
2877 u16 orig, new; 2877 u16 orig, new;
2878 2878
2879 if (dev->broken_intx_masking)
2880 return false;
2881
2879 pci_cfg_access_lock(dev); 2882 pci_cfg_access_lock(dev);
2880 2883
2881 pci_read_config_word(dev, PCI_COMMAND, &orig); 2884 pci_read_config_word(dev, PCI_COMMAND, &orig);
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 2a7521677541..cc13415416d7 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -2929,6 +2929,16 @@ static void __devinit disable_igfx_irq(struct pci_dev *dev)
2929DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x0102, disable_igfx_irq); 2929DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x0102, disable_igfx_irq);
2930DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x010a, disable_igfx_irq); 2930DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x010a, disable_igfx_irq);
2931 2931
2932/*
2933 * Some devices may pass our check in pci_intx_mask_supported if
2934 * PCI_COMMAND_INTX_DISABLE works though they actually do not properly
2935 * support this feature.
2936 */
2937static void __devinit quirk_broken_intx_masking(struct pci_dev *dev)
2938{
2939 dev->broken_intx_masking = 1;
2940}
2941
2932static void pci_do_fixups(struct pci_dev *dev, struct pci_fixup *f, 2942static void pci_do_fixups(struct pci_dev *dev, struct pci_fixup *f,
2933 struct pci_fixup *end) 2943 struct pci_fixup *end)
2934{ 2944{