diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-12-03 10:33:47 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-12-03 10:33:47 +0000 |
commit | 4a0f91482dd78e0c6a04dd8405c33d7510e1ef97 (patch) | |
tree | 6093e654763db7ea2659b4a948ada51ede7b4f91 /target/linux/generic/patches-3.6/810-pci_disable_common_quirks.patch | |
parent | 70d19c877a152d985107dd81b6799832671f36cc (diff) | |
download | upstream-4a0f91482dd78e0c6a04dd8405c33d7510e1ef97.tar.gz upstream-4a0f91482dd78e0c6a04dd8405c33d7510e1ef97.tar.bz2 upstream-4a0f91482dd78e0c6a04dd8405c33d7510e1ef97.zip |
kernel: disable more pci quirks to save space on platforms that don't need them
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34467 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/patches-3.6/810-pci_disable_common_quirks.patch')
-rw-r--r-- | target/linux/generic/patches-3.6/810-pci_disable_common_quirks.patch | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/target/linux/generic/patches-3.6/810-pci_disable_common_quirks.patch b/target/linux/generic/patches-3.6/810-pci_disable_common_quirks.patch index 85e3c97b8d..917fea706a 100644 --- a/target/linux/generic/patches-3.6/810-pci_disable_common_quirks.patch +++ b/target/linux/generic/patches-3.6/810-pci_disable_common_quirks.patch @@ -23,21 +23,29 @@ /* The Mellanox Tavor device gives false positive parity errors * Mark this device with a broken_parity_status, to allow * PCI scanning code to "skip" this now blacklisted device. -@@ -1933,7 +1934,9 @@ static void __devinit fixup_rev1_53c810( +@@ -2844,6 +2845,7 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_I + DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x65f9, quirk_intel_mc_errata); + DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x65fa, quirk_intel_mc_errata); + ++#endif /* !CONFIG_PCI_DISABLE_COMMON_QUIRKS */ + + static ktime_t fixup_debug_start(struct pci_dev *dev, + void (*fn)(struct pci_dev *dev)) +@@ -2875,6 +2877,8 @@ static void fixup_debug_report(struct pc } } - DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NCR, PCI_DEVICE_ID_NCR_53C810, fixup_rev1_53c810); -+#endif /* !CONFIG_PCI_DISABLE_COMMON_QUIRKS */ +#ifndef CONFIG_PCI_DISABLE_COMMON_QUIRKS - /* Enable 1k I/O space granularity on the Intel P64H2 */ - static void __devinit quirk_p64h2_1k_io(struct pci_dev *dev) - { -@@ -2605,6 +2608,7 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AT - DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATTANSIC, 0x1083, - quirk_msi_intx_disable_bug); - #endif /* CONFIG_PCI_MSI */ -+#endif /* !CONFIG_PCI_DISABLE_COMMON_QUIRKS */ ++ + /* + * Some BIOS implementations leave the Intel GPU interrupts enabled, + * even though no one is handling them (f.e. i915 driver is never loaded). +@@ -2909,6 +2913,8 @@ static void __devinit disable_igfx_irq(s + DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x0102, disable_igfx_irq); + DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x010a, disable_igfx_irq); - /* Allow manual resource allocation for PCI hotplug bridges - * via pci=hpmemsize=nnM and pci=hpiosize=nnM parameters. For ++#endif /* !CONFIG_PCI_DISABLE_COMMON_QUIRKS */ ++ + /* + * Some devices may pass our check in pci_intx_mask_supported if + * PCI_COMMAND_INTX_DISABLE works though they actually do not properly |