Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 1 | /* Various workarounds for chipset bugs. |
| 2 | This code runs very early and can't use the regular PCI subsystem |
| 3 | The entries are keyed to PCI bridges which usually identify chipsets |
| 4 | uniquely. |
| 5 | This is only for whole classes of chipsets with specific problems which |
| 6 | need early invasive action (e.g. before the timers are initialized). |
| 7 | Most PCI device specific workarounds can be done later and should be |
| 8 | in standard PCI quirks |
| 9 | Mainboard specific bugs should be handled by DMI entries. |
| 10 | CPU specific bugs in setup.c */ |
| 11 | |
| 12 | #include <linux/pci.h> |
| 13 | #include <linux/acpi.h> |
| 14 | #include <linux/pci_ids.h> |
Jesse Barnes | 814c5f1 | 2013-07-26 13:32:52 -0700 | [diff] [blame] | 15 | #include <drm/i915_drm.h> |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 16 | #include <asm/pci-direct.h> |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 17 | #include <asm/dma.h> |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 18 | #include <asm/io_apic.h> |
| 19 | #include <asm/apic.h> |
FUJITA Tomonori | 46a7fa2 | 2008-07-11 10:23:42 +0900 | [diff] [blame] | 20 | #include <asm/iommu.h> |
Joerg Roedel | 1d9b16d | 2008-11-27 18:39:15 +0100 | [diff] [blame] | 21 | #include <asm/gart.h> |
Neil Horman | 03bbcb2 | 2013-04-16 16:38:32 -0400 | [diff] [blame] | 22 | #include <asm/irq_remapping.h> |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 23 | |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 24 | static void __init fix_hypertransport_config(int num, int slot, int func) |
| 25 | { |
| 26 | u32 htcfg; |
| 27 | /* |
| 28 | * we found a hypertransport bus |
| 29 | * make sure that we are broadcasting |
| 30 | * interrupts to all cpus on the ht bus |
| 31 | * if we're using extended apic ids |
| 32 | */ |
| 33 | htcfg = read_pci_config(num, slot, func, 0x68); |
| 34 | if (htcfg & (1 << 18)) { |
Neil Horman | 7bcbc78 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 35 | printk(KERN_INFO "Detected use of extended apic ids " |
| 36 | "on hypertransport bus\n"); |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 37 | if ((htcfg & (1 << 17)) == 0) { |
Neil Horman | 7bcbc78 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 38 | printk(KERN_INFO "Enabling hypertransport extended " |
| 39 | "apic interrupt broadcast\n"); |
| 40 | printk(KERN_INFO "Note this is a bios bug, " |
| 41 | "please contact your hw vendor\n"); |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 42 | htcfg |= (1 << 17); |
| 43 | write_pci_config(num, slot, func, 0x68, htcfg); |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | |
| 48 | } |
| 49 | |
| 50 | static void __init via_bugs(int num, int slot, int func) |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 51 | { |
Joerg Roedel | 966396d | 2007-10-24 12:49:48 +0200 | [diff] [blame] | 52 | #ifdef CONFIG_GART_IOMMU |
Yinghai Lu | c987d12 | 2008-06-24 22:14:09 -0700 | [diff] [blame] | 53 | if ((max_pfn > MAX_DMA32_PFN || force_iommu) && |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 54 | !gart_iommu_aperture_allowed) { |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 55 | printk(KERN_INFO |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 56 | "Looks like a VIA chipset. Disabling IOMMU." |
| 57 | " Override with iommu=allowed\n"); |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 58 | gart_iommu_aperture_disabled = 1; |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 59 | } |
| 60 | #endif |
| 61 | } |
| 62 | |
| 63 | #ifdef CONFIG_ACPI |
Jeff Garzik | 03d0d20 | 2007-10-27 20:57:43 +0200 | [diff] [blame] | 64 | #ifdef CONFIG_X86_IO_APIC |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 65 | |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 66 | static int __init nvidia_hpet_check(struct acpi_table_header *header) |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 67 | { |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 68 | return 0; |
| 69 | } |
Jeff Garzik | 03d0d20 | 2007-10-27 20:57:43 +0200 | [diff] [blame] | 70 | #endif /* CONFIG_X86_IO_APIC */ |
| 71 | #endif /* CONFIG_ACPI */ |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 72 | |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 73 | static void __init nvidia_bugs(int num, int slot, int func) |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 74 | { |
| 75 | #ifdef CONFIG_ACPI |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 76 | #ifdef CONFIG_X86_IO_APIC |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 77 | /* |
| 78 | * All timer overrides on Nvidia are |
| 79 | * wrong unless HPET is enabled. |
Andi Kleen | fa18f47 | 2006-11-14 16:57:46 +0100 | [diff] [blame] | 80 | * Unfortunately that's not true on many Asus boards. |
| 81 | * We don't know yet how to detect this automatically, but |
| 82 | * at least allow a command line override. |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 83 | */ |
Andi Kleen | fa18f47 | 2006-11-14 16:57:46 +0100 | [diff] [blame] | 84 | if (acpi_use_timer_override) |
| 85 | return; |
| 86 | |
Len Brown | fe69933 | 2007-03-08 18:28:32 -0500 | [diff] [blame] | 87 | if (acpi_table_parse(ACPI_SIG_HPET, nvidia_hpet_check)) { |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 88 | acpi_skip_timer_override = 1; |
| 89 | printk(KERN_INFO "Nvidia board " |
| 90 | "detected. Ignoring ACPI " |
| 91 | "timer override.\n"); |
Andi Kleen | fa18f47 | 2006-11-14 16:57:46 +0100 | [diff] [blame] | 92 | printk(KERN_INFO "If you got timer trouble " |
| 93 | "try acpi_use_timer_override\n"); |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 94 | } |
| 95 | #endif |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 96 | #endif |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 97 | /* RED-PEN skip them on mptables too? */ |
| 98 | |
| 99 | } |
| 100 | |
Andreas Herrmann | 26adcfb | 2008-10-14 21:01:15 +0200 | [diff] [blame] | 101 | #if defined(CONFIG_ACPI) && defined(CONFIG_X86_IO_APIC) |
| 102 | static u32 __init ati_ixp4x0_rev(int num, int slot, int func) |
Andreas Herrmann | 33fb0e4 | 2008-10-07 00:11:22 +0200 | [diff] [blame] | 103 | { |
| 104 | u32 d; |
| 105 | u8 b; |
| 106 | |
| 107 | b = read_pci_config_byte(num, slot, func, 0xac); |
| 108 | b &= ~(1<<5); |
| 109 | write_pci_config_byte(num, slot, func, 0xac, b); |
| 110 | |
| 111 | d = read_pci_config(num, slot, func, 0x70); |
| 112 | d |= 1<<8; |
| 113 | write_pci_config(num, slot, func, 0x70, d); |
| 114 | |
| 115 | d = read_pci_config(num, slot, func, 0x8); |
| 116 | d &= 0xff; |
| 117 | return d; |
| 118 | } |
| 119 | |
| 120 | static void __init ati_bugs(int num, int slot, int func) |
| 121 | { |
Andreas Herrmann | 33fb0e4 | 2008-10-07 00:11:22 +0200 | [diff] [blame] | 122 | u32 d; |
| 123 | u8 b; |
| 124 | |
| 125 | if (acpi_use_timer_override) |
| 126 | return; |
| 127 | |
| 128 | d = ati_ixp4x0_rev(num, slot, func); |
| 129 | if (d < 0x82) |
| 130 | acpi_skip_timer_override = 1; |
| 131 | else { |
| 132 | /* check for IRQ0 interrupt swap */ |
| 133 | outb(0x72, 0xcd6); b = inb(0xcd7); |
| 134 | if (!(b & 0x2)) |
| 135 | acpi_skip_timer_override = 1; |
| 136 | } |
| 137 | |
| 138 | if (acpi_skip_timer_override) { |
| 139 | printk(KERN_INFO "SB4X0 revision 0x%x\n", d); |
| 140 | printk(KERN_INFO "Ignoring ACPI timer override.\n"); |
| 141 | printk(KERN_INFO "If you got timer trouble " |
| 142 | "try acpi_use_timer_override\n"); |
| 143 | } |
Andreas Herrmann | 33fb0e4 | 2008-10-07 00:11:22 +0200 | [diff] [blame] | 144 | } |
| 145 | |
Andreas Herrmann | 26adcfb | 2008-10-14 21:01:15 +0200 | [diff] [blame] | 146 | static u32 __init ati_sbx00_rev(int num, int slot, int func) |
| 147 | { |
Andreas Herrmann | 7f74f8f | 2011-02-24 15:53:46 +0100 | [diff] [blame] | 148 | u32 d; |
Andreas Herrmann | 26adcfb | 2008-10-14 21:01:15 +0200 | [diff] [blame] | 149 | |
Andreas Herrmann | 26adcfb | 2008-10-14 21:01:15 +0200 | [diff] [blame] | 150 | d = read_pci_config(num, slot, func, 0x8); |
| 151 | d &= 0xff; |
Andreas Herrmann | 26adcfb | 2008-10-14 21:01:15 +0200 | [diff] [blame] | 152 | |
| 153 | return d; |
| 154 | } |
| 155 | |
| 156 | static void __init ati_bugs_contd(int num, int slot, int func) |
| 157 | { |
| 158 | u32 d, rev; |
| 159 | |
Andreas Herrmann | 7f74f8f | 2011-02-24 15:53:46 +0100 | [diff] [blame] | 160 | rev = ati_sbx00_rev(num, slot, func); |
| 161 | if (rev >= 0x40) |
| 162 | acpi_fix_pin2_polarity = 1; |
| 163 | |
Andreas Herrmann | 1d3e09a | 2011-03-15 15:31:37 +0100 | [diff] [blame] | 164 | /* |
| 165 | * SB600: revisions 0x11, 0x12, 0x13, 0x14, ... |
| 166 | * SB700: revisions 0x39, 0x3a, ... |
| 167 | * SB800: revisions 0x40, 0x41, ... |
| 168 | */ |
| 169 | if (rev >= 0x39) |
Andreas Herrmann | 26adcfb | 2008-10-14 21:01:15 +0200 | [diff] [blame] | 170 | return; |
| 171 | |
Andreas Herrmann | 7f74f8f | 2011-02-24 15:53:46 +0100 | [diff] [blame] | 172 | if (acpi_use_timer_override) |
Andreas Herrmann | 26adcfb | 2008-10-14 21:01:15 +0200 | [diff] [blame] | 173 | return; |
| 174 | |
| 175 | /* check for IRQ0 interrupt swap */ |
| 176 | d = read_pci_config(num, slot, func, 0x64); |
| 177 | if (!(d & (1<<14))) |
| 178 | acpi_skip_timer_override = 1; |
| 179 | |
| 180 | if (acpi_skip_timer_override) { |
| 181 | printk(KERN_INFO "SB600 revision 0x%x\n", rev); |
| 182 | printk(KERN_INFO "Ignoring ACPI timer override.\n"); |
| 183 | printk(KERN_INFO "If you got timer trouble " |
| 184 | "try acpi_use_timer_override\n"); |
| 185 | } |
| 186 | } |
| 187 | #else |
| 188 | static void __init ati_bugs(int num, int slot, int func) |
| 189 | { |
| 190 | } |
| 191 | |
| 192 | static void __init ati_bugs_contd(int num, int slot, int func) |
| 193 | { |
| 194 | } |
| 195 | #endif |
| 196 | |
Neil Horman | 03bbcb2 | 2013-04-16 16:38:32 -0400 | [diff] [blame] | 197 | static void __init intel_remapping_check(int num, int slot, int func) |
| 198 | { |
| 199 | u8 revision; |
Neil Horman | 803075d | 2013-07-17 07:13:59 -0400 | [diff] [blame] | 200 | u16 device; |
Neil Horman | 03bbcb2 | 2013-04-16 16:38:32 -0400 | [diff] [blame] | 201 | |
Neil Horman | 803075d | 2013-07-17 07:13:59 -0400 | [diff] [blame] | 202 | device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID); |
Neil Horman | 03bbcb2 | 2013-04-16 16:38:32 -0400 | [diff] [blame] | 203 | revision = read_pci_config_byte(num, slot, func, PCI_REVISION_ID); |
| 204 | |
| 205 | /* |
Neil Horman | 6f8a1b3 | 2014-03-12 14:44:33 -0400 | [diff] [blame^] | 206 | * Revision <= 13 of all triggering devices id in this quirk |
| 207 | * have a problem draining interrupts when irq remapping is |
| 208 | * enabled, and should be flagged as broken. Additionally |
| 209 | * revision 0x22 of device id 0x3405 has this problem. |
Neil Horman | 03bbcb2 | 2013-04-16 16:38:32 -0400 | [diff] [blame] | 210 | */ |
Neil Horman | 6f8a1b3 | 2014-03-12 14:44:33 -0400 | [diff] [blame^] | 211 | if (revision <= 0x13) |
Neil Horman | 03bbcb2 | 2013-04-16 16:38:32 -0400 | [diff] [blame] | 212 | set_irq_remapping_broken(); |
Neil Horman | 6f8a1b3 | 2014-03-12 14:44:33 -0400 | [diff] [blame^] | 213 | else if (device == 0x3405 && revision == 0x22) |
Neil Horman | 803075d | 2013-07-17 07:13:59 -0400 | [diff] [blame] | 214 | set_irq_remapping_broken(); |
Neil Horman | 03bbcb2 | 2013-04-16 16:38:32 -0400 | [diff] [blame] | 215 | } |
| 216 | |
Jesse Barnes | 814c5f1 | 2013-07-26 13:32:52 -0700 | [diff] [blame] | 217 | /* |
| 218 | * Systems with Intel graphics controllers set aside memory exclusively |
| 219 | * for gfx driver use. This memory is not marked in the E820 as reserved |
| 220 | * or as RAM, and so is subject to overlap from E820 manipulation later |
| 221 | * in the boot process. On some systems, MMIO space is allocated on top, |
| 222 | * despite the efforts of the "RAM buffer" approach, which simply rounds |
| 223 | * memory boundaries up to 64M to try to catch space that may decode |
| 224 | * as RAM and so is not suitable for MMIO. |
| 225 | * |
| 226 | * And yes, so far on current devices the base addr is always under 4G. |
| 227 | */ |
| 228 | static u32 __init intel_stolen_base(int num, int slot, int func) |
| 229 | { |
| 230 | u32 base; |
| 231 | |
| 232 | /* |
| 233 | * For the PCI IDs in this quirk, the stolen base is always |
| 234 | * in 0x5c, aka the BDSM register (yes that's really what |
| 235 | * it's called). |
| 236 | */ |
| 237 | base = read_pci_config(num, slot, func, 0x5c); |
| 238 | base &= ~((1<<20) - 1); |
| 239 | |
| 240 | return base; |
| 241 | } |
| 242 | |
| 243 | #define KB(x) ((x) * 1024) |
| 244 | #define MB(x) (KB (KB (x))) |
| 245 | #define GB(x) (MB (KB (x))) |
| 246 | |
| 247 | static size_t __init gen3_stolen_size(int num, int slot, int func) |
| 248 | { |
| 249 | size_t stolen_size; |
| 250 | u16 gmch_ctrl; |
| 251 | |
| 252 | gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL); |
| 253 | |
| 254 | switch (gmch_ctrl & I855_GMCH_GMS_MASK) { |
| 255 | case I855_GMCH_GMS_STOLEN_1M: |
| 256 | stolen_size = MB(1); |
| 257 | break; |
| 258 | case I855_GMCH_GMS_STOLEN_4M: |
| 259 | stolen_size = MB(4); |
| 260 | break; |
| 261 | case I855_GMCH_GMS_STOLEN_8M: |
| 262 | stolen_size = MB(8); |
| 263 | break; |
| 264 | case I855_GMCH_GMS_STOLEN_16M: |
| 265 | stolen_size = MB(16); |
| 266 | break; |
| 267 | case I855_GMCH_GMS_STOLEN_32M: |
| 268 | stolen_size = MB(32); |
| 269 | break; |
| 270 | case I915_GMCH_GMS_STOLEN_48M: |
| 271 | stolen_size = MB(48); |
| 272 | break; |
| 273 | case I915_GMCH_GMS_STOLEN_64M: |
| 274 | stolen_size = MB(64); |
| 275 | break; |
| 276 | case G33_GMCH_GMS_STOLEN_128M: |
| 277 | stolen_size = MB(128); |
| 278 | break; |
| 279 | case G33_GMCH_GMS_STOLEN_256M: |
| 280 | stolen_size = MB(256); |
| 281 | break; |
| 282 | case INTEL_GMCH_GMS_STOLEN_96M: |
| 283 | stolen_size = MB(96); |
| 284 | break; |
| 285 | case INTEL_GMCH_GMS_STOLEN_160M: |
| 286 | stolen_size = MB(160); |
| 287 | break; |
| 288 | case INTEL_GMCH_GMS_STOLEN_224M: |
| 289 | stolen_size = MB(224); |
| 290 | break; |
| 291 | case INTEL_GMCH_GMS_STOLEN_352M: |
| 292 | stolen_size = MB(352); |
| 293 | break; |
| 294 | default: |
| 295 | stolen_size = 0; |
| 296 | break; |
| 297 | } |
| 298 | |
| 299 | return stolen_size; |
| 300 | } |
| 301 | |
| 302 | static size_t __init gen6_stolen_size(int num, int slot, int func) |
| 303 | { |
| 304 | u16 gmch_ctrl; |
| 305 | |
| 306 | gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL); |
| 307 | gmch_ctrl >>= SNB_GMCH_GMS_SHIFT; |
| 308 | gmch_ctrl &= SNB_GMCH_GMS_MASK; |
| 309 | |
| 310 | return gmch_ctrl << 25; /* 32 MB units */ |
| 311 | } |
| 312 | |
Ben Widawsky | 9459d25 | 2013-11-03 16:53:55 -0800 | [diff] [blame] | 313 | static inline size_t gen8_stolen_size(int num, int slot, int func) |
| 314 | { |
| 315 | u16 gmch_ctrl; |
| 316 | |
| 317 | gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL); |
| 318 | gmch_ctrl >>= BDW_GMCH_GMS_SHIFT; |
| 319 | gmch_ctrl &= BDW_GMCH_GMS_MASK; |
| 320 | return gmch_ctrl << 25; /* 32 MB units */ |
| 321 | } |
| 322 | |
Jesse Barnes | 814c5f1 | 2013-07-26 13:32:52 -0700 | [diff] [blame] | 323 | typedef size_t (*stolen_size_fn)(int num, int slot, int func); |
| 324 | |
| 325 | static struct pci_device_id intel_stolen_ids[] __initdata = { |
| 326 | INTEL_I915G_IDS(gen3_stolen_size), |
| 327 | INTEL_I915GM_IDS(gen3_stolen_size), |
| 328 | INTEL_I945G_IDS(gen3_stolen_size), |
| 329 | INTEL_I945GM_IDS(gen3_stolen_size), |
Jesse Barnes | 7bd40c1 | 2013-11-12 10:17:39 -0800 | [diff] [blame] | 330 | INTEL_VLV_M_IDS(gen6_stolen_size), |
| 331 | INTEL_VLV_D_IDS(gen6_stolen_size), |
Jesse Barnes | 814c5f1 | 2013-07-26 13:32:52 -0700 | [diff] [blame] | 332 | INTEL_PINEVIEW_IDS(gen3_stolen_size), |
| 333 | INTEL_I965G_IDS(gen3_stolen_size), |
| 334 | INTEL_G33_IDS(gen3_stolen_size), |
| 335 | INTEL_I965GM_IDS(gen3_stolen_size), |
| 336 | INTEL_GM45_IDS(gen3_stolen_size), |
| 337 | INTEL_G45_IDS(gen3_stolen_size), |
| 338 | INTEL_IRONLAKE_D_IDS(gen3_stolen_size), |
| 339 | INTEL_IRONLAKE_M_IDS(gen3_stolen_size), |
| 340 | INTEL_SNB_D_IDS(gen6_stolen_size), |
| 341 | INTEL_SNB_M_IDS(gen6_stolen_size), |
| 342 | INTEL_IVB_M_IDS(gen6_stolen_size), |
| 343 | INTEL_IVB_D_IDS(gen6_stolen_size), |
| 344 | INTEL_HSW_D_IDS(gen6_stolen_size), |
| 345 | INTEL_HSW_M_IDS(gen6_stolen_size), |
Ben Widawsky | 9459d25 | 2013-11-03 16:53:55 -0800 | [diff] [blame] | 346 | INTEL_BDW_M_IDS(gen8_stolen_size), |
| 347 | INTEL_BDW_D_IDS(gen8_stolen_size) |
Jesse Barnes | 814c5f1 | 2013-07-26 13:32:52 -0700 | [diff] [blame] | 348 | }; |
| 349 | |
| 350 | static void __init intel_graphics_stolen(int num, int slot, int func) |
| 351 | { |
| 352 | size_t size; |
| 353 | int i; |
| 354 | u32 start; |
| 355 | u16 device, subvendor, subdevice; |
| 356 | |
| 357 | device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID); |
| 358 | subvendor = read_pci_config_16(num, slot, func, |
| 359 | PCI_SUBSYSTEM_VENDOR_ID); |
| 360 | subdevice = read_pci_config_16(num, slot, func, PCI_SUBSYSTEM_ID); |
| 361 | |
| 362 | for (i = 0; i < ARRAY_SIZE(intel_stolen_ids); i++) { |
| 363 | if (intel_stolen_ids[i].device == device) { |
| 364 | stolen_size_fn stolen_size = |
| 365 | (stolen_size_fn)intel_stolen_ids[i].driver_data; |
| 366 | size = stolen_size(num, slot, func); |
| 367 | start = intel_stolen_base(num, slot, func); |
| 368 | if (size && start) { |
| 369 | /* Mark this space as reserved */ |
| 370 | e820_add_region(start, size, E820_RESERVED); |
| 371 | sanitize_e820_map(e820.map, |
| 372 | ARRAY_SIZE(e820.map), |
| 373 | &e820.nr_map); |
| 374 | } |
| 375 | return; |
| 376 | } |
| 377 | } |
| 378 | } |
| 379 | |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 380 | #define QFLAG_APPLY_ONCE 0x1 |
| 381 | #define QFLAG_APPLIED 0x2 |
| 382 | #define QFLAG_DONE (QFLAG_APPLY_ONCE|QFLAG_APPLIED) |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 383 | struct chipset { |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 384 | u32 vendor; |
| 385 | u32 device; |
| 386 | u32 class; |
| 387 | u32 class_mask; |
| 388 | u32 flags; |
| 389 | void (*f)(int num, int slot, int func); |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 390 | }; |
| 391 | |
Andi Kleen | 8659c40 | 2009-01-09 12:17:39 -0800 | [diff] [blame] | 392 | /* |
| 393 | * Only works for devices on the root bus. If you add any devices |
| 394 | * not on bus 0 readd another loop level in early_quirks(). But |
| 395 | * be careful because at least the Nvidia quirk here relies on |
| 396 | * only matching on bus 0. |
| 397 | */ |
Andrew Morton | c993c73 | 2007-04-08 16:04:03 -0700 | [diff] [blame] | 398 | static struct chipset early_qrk[] __initdata = { |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 399 | { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID, |
| 400 | PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, nvidia_bugs }, |
| 401 | { PCI_VENDOR_ID_VIA, PCI_ANY_ID, |
| 402 | PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, via_bugs }, |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame] | 403 | { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_K8_NB, |
| 404 | PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, fix_hypertransport_config }, |
Andreas Herrmann | 33fb0e4 | 2008-10-07 00:11:22 +0200 | [diff] [blame] | 405 | { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS, |
| 406 | PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs }, |
Andreas Herrmann | 26adcfb | 2008-10-14 21:01:15 +0200 | [diff] [blame] | 407 | { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS, |
| 408 | PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs_contd }, |
Neil Horman | 03bbcb2 | 2013-04-16 16:38:32 -0400 | [diff] [blame] | 409 | { PCI_VENDOR_ID_INTEL, 0x3403, PCI_CLASS_BRIDGE_HOST, |
| 410 | PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check }, |
Neil Horman | 803075d | 2013-07-17 07:13:59 -0400 | [diff] [blame] | 411 | { PCI_VENDOR_ID_INTEL, 0x3405, PCI_CLASS_BRIDGE_HOST, |
| 412 | PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check }, |
Neil Horman | 03bbcb2 | 2013-04-16 16:38:32 -0400 | [diff] [blame] | 413 | { PCI_VENDOR_ID_INTEL, 0x3406, PCI_CLASS_BRIDGE_HOST, |
| 414 | PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check }, |
Jesse Barnes | 814c5f1 | 2013-07-26 13:32:52 -0700 | [diff] [blame] | 415 | { PCI_VENDOR_ID_INTEL, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA, PCI_ANY_ID, |
| 416 | QFLAG_APPLY_ONCE, intel_graphics_stolen }, |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 417 | {} |
| 418 | }; |
| 419 | |
Jesse Barnes | 15650a2 | 2008-06-16 15:29:45 -0700 | [diff] [blame] | 420 | /** |
| 421 | * check_dev_quirk - apply early quirks to a given PCI device |
| 422 | * @num: bus number |
| 423 | * @slot: slot number |
| 424 | * @func: PCI function |
| 425 | * |
| 426 | * Check the vendor & device ID against the early quirks table. |
| 427 | * |
| 428 | * If the device is single function, let early_quirks() know so we don't |
| 429 | * poke at this device again. |
| 430 | */ |
| 431 | static int __init check_dev_quirk(int num, int slot, int func) |
Neil Horman | 7bcbc78 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 432 | { |
| 433 | u16 class; |
| 434 | u16 vendor; |
| 435 | u16 device; |
| 436 | u8 type; |
| 437 | int i; |
| 438 | |
| 439 | class = read_pci_config_16(num, slot, func, PCI_CLASS_DEVICE); |
| 440 | |
| 441 | if (class == 0xffff) |
Jesse Barnes | 15650a2 | 2008-06-16 15:29:45 -0700 | [diff] [blame] | 442 | return -1; /* no class, treat as single function */ |
Neil Horman | 7bcbc78 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 443 | |
| 444 | vendor = read_pci_config_16(num, slot, func, PCI_VENDOR_ID); |
| 445 | |
| 446 | device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID); |
| 447 | |
| 448 | for (i = 0; early_qrk[i].f != NULL; i++) { |
| 449 | if (((early_qrk[i].vendor == PCI_ANY_ID) || |
| 450 | (early_qrk[i].vendor == vendor)) && |
| 451 | ((early_qrk[i].device == PCI_ANY_ID) || |
| 452 | (early_qrk[i].device == device)) && |
| 453 | (!((early_qrk[i].class ^ class) & |
| 454 | early_qrk[i].class_mask))) { |
| 455 | if ((early_qrk[i].flags & |
| 456 | QFLAG_DONE) != QFLAG_DONE) |
| 457 | early_qrk[i].f(num, slot, func); |
| 458 | early_qrk[i].flags |= QFLAG_APPLIED; |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | type = read_pci_config_byte(num, slot, func, |
| 463 | PCI_HEADER_TYPE); |
| 464 | if (!(type & 0x80)) |
Jesse Barnes | 15650a2 | 2008-06-16 15:29:45 -0700 | [diff] [blame] | 465 | return -1; |
| 466 | |
| 467 | return 0; |
Neil Horman | 7bcbc78 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 468 | } |
| 469 | |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 470 | void __init early_quirks(void) |
| 471 | { |
Andi Kleen | 8659c40 | 2009-01-09 12:17:39 -0800 | [diff] [blame] | 472 | int slot, func; |
Andi Kleen | 0637a70 | 2006-09-26 10:52:41 +0200 | [diff] [blame] | 473 | |
| 474 | if (!early_pci_allowed()) |
| 475 | return; |
| 476 | |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 477 | /* Poor man's PCI discovery */ |
Andi Kleen | 8659c40 | 2009-01-09 12:17:39 -0800 | [diff] [blame] | 478 | /* Only scan the root bus */ |
| 479 | for (slot = 0; slot < 32; slot++) |
| 480 | for (func = 0; func < 8; func++) { |
| 481 | /* Only probe function 0 on single fn devices */ |
| 482 | if (check_dev_quirk(0, slot, func)) |
| 483 | break; |
| 484 | } |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 485 | } |