blob: 5218dd209ede285564f7b473066db989942c1a51 [file] [log] [blame]
Andi Kleendfa46982006-09-26 10:52:30 +02001/* 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 Barnes814c5f12013-07-26 13:32:52 -070015#include <drm/i915_drm.h>
Andi Kleendfa46982006-09-26 10:52:30 +020016#include <asm/pci-direct.h>
Andi Kleendfa46982006-09-26 10:52:30 +020017#include <asm/dma.h>
Andi Kleen54ef3402007-10-19 20:35:03 +020018#include <asm/io_apic.h>
19#include <asm/apic.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090020#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010021#include <asm/gart.h>
Neil Horman03bbcb22013-04-16 16:38:32 -040022#include <asm/irq_remapping.h>
Andi Kleendfa46982006-09-26 10:52:30 +020023
Neil Hormanc6b48322008-01-30 13:31:25 +010024static 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 Horman7bcbc782008-01-30 13:31:26 +010035 printk(KERN_INFO "Detected use of extended apic ids "
36 "on hypertransport bus\n");
Neil Hormanc6b48322008-01-30 13:31:25 +010037 if ((htcfg & (1 << 17)) == 0) {
Neil Horman7bcbc782008-01-30 13:31:26 +010038 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 Hormanc6b48322008-01-30 13:31:25 +010042 htcfg |= (1 << 17);
43 write_pci_config(num, slot, func, 0x68, htcfg);
44 }
45 }
46
47
48}
49
50static void __init via_bugs(int num, int slot, int func)
Andi Kleendfa46982006-09-26 10:52:30 +020051{
Joerg Roedel966396d2007-10-24 12:49:48 +020052#ifdef CONFIG_GART_IOMMU
Yinghai Luc987d122008-06-24 22:14:09 -070053 if ((max_pfn > MAX_DMA32_PFN || force_iommu) &&
Joerg Roedel0440d4c2007-10-24 12:49:50 +020054 !gart_iommu_aperture_allowed) {
Andi Kleendfa46982006-09-26 10:52:30 +020055 printk(KERN_INFO
Andi Kleen54ef3402007-10-19 20:35:03 +020056 "Looks like a VIA chipset. Disabling IOMMU."
57 " Override with iommu=allowed\n");
Joerg Roedel0440d4c2007-10-24 12:49:50 +020058 gart_iommu_aperture_disabled = 1;
Andi Kleendfa46982006-09-26 10:52:30 +020059 }
60#endif
61}
62
63#ifdef CONFIG_ACPI
Jeff Garzik03d0d202007-10-27 20:57:43 +020064#ifdef CONFIG_X86_IO_APIC
Andi Kleendfa46982006-09-26 10:52:30 +020065
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030066static int __init nvidia_hpet_check(struct acpi_table_header *header)
Andi Kleendfa46982006-09-26 10:52:30 +020067{
Andi Kleendfa46982006-09-26 10:52:30 +020068 return 0;
69}
Jeff Garzik03d0d202007-10-27 20:57:43 +020070#endif /* CONFIG_X86_IO_APIC */
71#endif /* CONFIG_ACPI */
Andi Kleendfa46982006-09-26 10:52:30 +020072
Neil Hormanc6b48322008-01-30 13:31:25 +010073static void __init nvidia_bugs(int num, int slot, int func)
Andi Kleendfa46982006-09-26 10:52:30 +020074{
75#ifdef CONFIG_ACPI
Andi Kleen54ef3402007-10-19 20:35:03 +020076#ifdef CONFIG_X86_IO_APIC
Andi Kleendfa46982006-09-26 10:52:30 +020077 /*
78 * All timer overrides on Nvidia are
79 * wrong unless HPET is enabled.
Andi Kleenfa18f472006-11-14 16:57:46 +010080 * 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 Kleendfa46982006-09-26 10:52:30 +020083 */
Andi Kleenfa18f472006-11-14 16:57:46 +010084 if (acpi_use_timer_override)
85 return;
86
Len Brownfe699332007-03-08 18:28:32 -050087 if (acpi_table_parse(ACPI_SIG_HPET, nvidia_hpet_check)) {
Andi Kleendfa46982006-09-26 10:52:30 +020088 acpi_skip_timer_override = 1;
89 printk(KERN_INFO "Nvidia board "
90 "detected. Ignoring ACPI "
91 "timer override.\n");
Andi Kleenfa18f472006-11-14 16:57:46 +010092 printk(KERN_INFO "If you got timer trouble "
93 "try acpi_use_timer_override\n");
Andi Kleendfa46982006-09-26 10:52:30 +020094 }
95#endif
Andi Kleen54ef3402007-10-19 20:35:03 +020096#endif
Andi Kleendfa46982006-09-26 10:52:30 +020097 /* RED-PEN skip them on mptables too? */
98
99}
100
Andreas Herrmann26adcfb2008-10-14 21:01:15 +0200101#if defined(CONFIG_ACPI) && defined(CONFIG_X86_IO_APIC)
102static u32 __init ati_ixp4x0_rev(int num, int slot, int func)
Andreas Herrmann33fb0e42008-10-07 00:11:22 +0200103{
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
120static void __init ati_bugs(int num, int slot, int func)
121{
Andreas Herrmann33fb0e42008-10-07 00:11:22 +0200122 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 Herrmann33fb0e42008-10-07 00:11:22 +0200144}
145
Andreas Herrmann26adcfb2008-10-14 21:01:15 +0200146static u32 __init ati_sbx00_rev(int num, int slot, int func)
147{
Andreas Herrmann7f74f8f2011-02-24 15:53:46 +0100148 u32 d;
Andreas Herrmann26adcfb2008-10-14 21:01:15 +0200149
Andreas Herrmann26adcfb2008-10-14 21:01:15 +0200150 d = read_pci_config(num, slot, func, 0x8);
151 d &= 0xff;
Andreas Herrmann26adcfb2008-10-14 21:01:15 +0200152
153 return d;
154}
155
156static void __init ati_bugs_contd(int num, int slot, int func)
157{
158 u32 d, rev;
159
Andreas Herrmann7f74f8f2011-02-24 15:53:46 +0100160 rev = ati_sbx00_rev(num, slot, func);
161 if (rev >= 0x40)
162 acpi_fix_pin2_polarity = 1;
163
Andreas Herrmann1d3e09a2011-03-15 15:31:37 +0100164 /*
165 * SB600: revisions 0x11, 0x12, 0x13, 0x14, ...
166 * SB700: revisions 0x39, 0x3a, ...
167 * SB800: revisions 0x40, 0x41, ...
168 */
169 if (rev >= 0x39)
Andreas Herrmann26adcfb2008-10-14 21:01:15 +0200170 return;
171
Andreas Herrmann7f74f8f2011-02-24 15:53:46 +0100172 if (acpi_use_timer_override)
Andreas Herrmann26adcfb2008-10-14 21:01:15 +0200173 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
188static void __init ati_bugs(int num, int slot, int func)
189{
190}
191
192static void __init ati_bugs_contd(int num, int slot, int func)
193{
194}
195#endif
196
Neil Horman03bbcb22013-04-16 16:38:32 -0400197static void __init intel_remapping_check(int num, int slot, int func)
198{
199 u8 revision;
Neil Horman803075d2013-07-17 07:13:59 -0400200 u16 device;
Neil Horman03bbcb22013-04-16 16:38:32 -0400201
Neil Horman803075d2013-07-17 07:13:59 -0400202 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
Neil Horman03bbcb22013-04-16 16:38:32 -0400203 revision = read_pci_config_byte(num, slot, func, PCI_REVISION_ID);
204
205 /*
Neil Horman803075d2013-07-17 07:13:59 -0400206 * Revision 13 of all triggering devices id in this quirk have
207 * a problem draining interrupts when irq remapping is enabled,
208 * and should be flagged as broken. Additionally revisions 0x12
209 * and 0x22 of device id 0x3405 has this problem.
Neil Horman03bbcb22013-04-16 16:38:32 -0400210 */
211 if (revision == 0x13)
212 set_irq_remapping_broken();
Neil Horman803075d2013-07-17 07:13:59 -0400213 else if ((device == 0x3405) &&
214 ((revision == 0x12) ||
215 (revision == 0x22)))
216 set_irq_remapping_broken();
Neil Horman03bbcb22013-04-16 16:38:32 -0400217
218}
219
Jesse Barnes814c5f12013-07-26 13:32:52 -0700220/*
221 * Systems with Intel graphics controllers set aside memory exclusively
222 * for gfx driver use. This memory is not marked in the E820 as reserved
223 * or as RAM, and so is subject to overlap from E820 manipulation later
224 * in the boot process. On some systems, MMIO space is allocated on top,
225 * despite the efforts of the "RAM buffer" approach, which simply rounds
226 * memory boundaries up to 64M to try to catch space that may decode
227 * as RAM and so is not suitable for MMIO.
228 *
229 * And yes, so far on current devices the base addr is always under 4G.
230 */
Ville Syrjälä52ca7042014-02-05 21:28:58 +0200231static u32 __init intel_stolen_base(int num, int slot, int func, size_t stolen_size)
Jesse Barnes814c5f12013-07-26 13:32:52 -0700232{
233 u32 base;
234
235 /*
236 * For the PCI IDs in this quirk, the stolen base is always
237 * in 0x5c, aka the BDSM register (yes that's really what
238 * it's called).
239 */
240 base = read_pci_config(num, slot, func, 0x5c);
241 base &= ~((1<<20) - 1);
242
243 return base;
244}
245
246#define KB(x) ((x) * 1024)
247#define MB(x) (KB (KB (x)))
248#define GB(x) (MB (KB (x)))
249
Ville Syrjäläa4dff762014-02-05 21:28:59 +0200250static size_t __init i830_tseg_size(void)
251{
252 u8 tmp = read_pci_config_byte(0, 0, 0, I830_ESMRAMC);
253
254 if (!(tmp & TSEG_ENABLE))
255 return 0;
256
257 if (tmp & I830_TSEG_SIZE_1M)
258 return MB(1);
259 else
260 return KB(512);
261}
262
263static size_t __init i845_tseg_size(void)
264{
265 u8 tmp = read_pci_config_byte(0, 0, 0, I845_ESMRAMC);
266
267 if (!(tmp & TSEG_ENABLE))
268 return 0;
269
270 switch (tmp & I845_TSEG_SIZE_MASK) {
271 case I845_TSEG_SIZE_512K:
272 return KB(512);
273 case I845_TSEG_SIZE_1M:
274 return MB(1);
275 default:
276 WARN_ON(1);
277 return 0;
278 }
279}
280
281static size_t __init i85x_tseg_size(void)
282{
283 u8 tmp = read_pci_config_byte(0, 0, 0, I85X_ESMRAMC);
284
285 if (!(tmp & TSEG_ENABLE))
286 return 0;
287
288 return MB(1);
289}
290
291static size_t __init i830_mem_size(void)
292{
293 return read_pci_config_byte(0, 0, 0, I830_DRB3) * MB(32);
294}
295
296static size_t __init i85x_mem_size(void)
297{
298 return read_pci_config_byte(0, 0, 1, I85X_DRB3) * MB(32);
299}
300
301/*
302 * On 830/845/85x the stolen memory base isn't available in any
303 * register. We need to calculate it as TOM-TSEG_SIZE-stolen_size.
304 */
305static u32 __init i830_stolen_base(int num, int slot, int func, size_t stolen_size)
306{
307 return i830_mem_size() - i830_tseg_size() - stolen_size;
308}
309
310static u32 __init i845_stolen_base(int num, int slot, int func, size_t stolen_size)
311{
312 return i830_mem_size() - i845_tseg_size() - stolen_size;
313}
314
315static u32 __init i85x_stolen_base(int num, int slot, int func, size_t stolen_size)
316{
317 return i85x_mem_size() - i85x_tseg_size() - stolen_size;
318}
319
320static u32 __init i865_stolen_base(int num, int slot, int func, size_t stolen_size)
321{
322 /*
323 * FIXME is the graphics stolen memory region
324 * always at TOUD? Ie. is it always the last
325 * one to be allocated by the BIOS?
326 */
327 return read_pci_config_16(0, 0, 0, I865_TOUD) << 16;
328}
329
330static size_t __init i830_stolen_size(int num, int slot, int func)
331{
332 size_t stolen_size;
333 u16 gmch_ctrl;
334
335 gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL);
336
337 switch (gmch_ctrl & I830_GMCH_GMS_MASK) {
338 case I830_GMCH_GMS_STOLEN_512:
339 stolen_size = KB(512);
340 break;
341 case I830_GMCH_GMS_STOLEN_1024:
342 stolen_size = MB(1);
343 break;
344 case I830_GMCH_GMS_STOLEN_8192:
345 stolen_size = MB(8);
346 break;
347 case I830_GMCH_GMS_LOCAL:
348 /* local memory isn't part of the normal address space */
349 stolen_size = 0;
350 break;
351 default:
352 return 0;
353 }
354
355 return stolen_size;
356}
357
Jesse Barnes814c5f12013-07-26 13:32:52 -0700358static size_t __init gen3_stolen_size(int num, int slot, int func)
359{
360 size_t stolen_size;
361 u16 gmch_ctrl;
362
363 gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL);
364
365 switch (gmch_ctrl & I855_GMCH_GMS_MASK) {
366 case I855_GMCH_GMS_STOLEN_1M:
367 stolen_size = MB(1);
368 break;
369 case I855_GMCH_GMS_STOLEN_4M:
370 stolen_size = MB(4);
371 break;
372 case I855_GMCH_GMS_STOLEN_8M:
373 stolen_size = MB(8);
374 break;
375 case I855_GMCH_GMS_STOLEN_16M:
376 stolen_size = MB(16);
377 break;
378 case I855_GMCH_GMS_STOLEN_32M:
379 stolen_size = MB(32);
380 break;
381 case I915_GMCH_GMS_STOLEN_48M:
382 stolen_size = MB(48);
383 break;
384 case I915_GMCH_GMS_STOLEN_64M:
385 stolen_size = MB(64);
386 break;
387 case G33_GMCH_GMS_STOLEN_128M:
388 stolen_size = MB(128);
389 break;
390 case G33_GMCH_GMS_STOLEN_256M:
391 stolen_size = MB(256);
392 break;
393 case INTEL_GMCH_GMS_STOLEN_96M:
394 stolen_size = MB(96);
395 break;
396 case INTEL_GMCH_GMS_STOLEN_160M:
397 stolen_size = MB(160);
398 break;
399 case INTEL_GMCH_GMS_STOLEN_224M:
400 stolen_size = MB(224);
401 break;
402 case INTEL_GMCH_GMS_STOLEN_352M:
403 stolen_size = MB(352);
404 break;
405 default:
406 stolen_size = 0;
407 break;
408 }
409
410 return stolen_size;
411}
412
413static size_t __init gen6_stolen_size(int num, int slot, int func)
414{
415 u16 gmch_ctrl;
416
417 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
418 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
419 gmch_ctrl &= SNB_GMCH_GMS_MASK;
420
421 return gmch_ctrl << 25; /* 32 MB units */
422}
423
Ville Syrjälä52ca7042014-02-05 21:28:58 +0200424static size_t gen8_stolen_size(int num, int slot, int func)
Ben Widawsky9459d252013-11-03 16:53:55 -0800425{
426 u16 gmch_ctrl;
427
428 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
429 gmch_ctrl >>= BDW_GMCH_GMS_SHIFT;
430 gmch_ctrl &= BDW_GMCH_GMS_MASK;
431 return gmch_ctrl << 25; /* 32 MB units */
432}
433
Ville Syrjälä52ca7042014-02-05 21:28:58 +0200434
435struct intel_stolen_funcs {
436 size_t (*size)(int num, int slot, int func);
437 u32 (*base)(int num, int slot, int func, size_t size);
438};
439
Ville Syrjäläa4dff762014-02-05 21:28:59 +0200440static const struct intel_stolen_funcs i830_stolen_funcs = {
441 .base = i830_stolen_base,
442 .size = i830_stolen_size,
443};
444
445static const struct intel_stolen_funcs i845_stolen_funcs = {
446 .base = i845_stolen_base,
447 .size = i830_stolen_size,
448};
449
450static const struct intel_stolen_funcs i85x_stolen_funcs = {
451 .base = i85x_stolen_base,
452 .size = gen3_stolen_size,
453};
454
455static const struct intel_stolen_funcs i865_stolen_funcs = {
456 .base = i865_stolen_base,
457 .size = gen3_stolen_size,
458};
459
Ville Syrjälä52ca7042014-02-05 21:28:58 +0200460static const struct intel_stolen_funcs gen3_stolen_funcs = {
461 .base = intel_stolen_base,
462 .size = gen3_stolen_size,
463};
464
465static const struct intel_stolen_funcs gen6_stolen_funcs = {
466 .base = intel_stolen_base,
467 .size = gen6_stolen_size,
468};
469
470static const struct intel_stolen_funcs gen8_stolen_funcs = {
471 .base = intel_stolen_base,
472 .size = gen8_stolen_size,
473};
Jesse Barnes814c5f12013-07-26 13:32:52 -0700474
475static struct pci_device_id intel_stolen_ids[] __initdata = {
Ville Syrjäläa4dff762014-02-05 21:28:59 +0200476 INTEL_I830_IDS(&i830_stolen_funcs),
477 INTEL_I845G_IDS(&i845_stolen_funcs),
478 INTEL_I85X_IDS(&i85x_stolen_funcs),
479 INTEL_I865G_IDS(&i865_stolen_funcs),
Ville Syrjälä52ca7042014-02-05 21:28:58 +0200480 INTEL_I915G_IDS(&gen3_stolen_funcs),
481 INTEL_I915GM_IDS(&gen3_stolen_funcs),
482 INTEL_I945G_IDS(&gen3_stolen_funcs),
483 INTEL_I945GM_IDS(&gen3_stolen_funcs),
484 INTEL_VLV_M_IDS(&gen6_stolen_funcs),
485 INTEL_VLV_D_IDS(&gen6_stolen_funcs),
486 INTEL_PINEVIEW_IDS(&gen3_stolen_funcs),
487 INTEL_I965G_IDS(&gen3_stolen_funcs),
488 INTEL_G33_IDS(&gen3_stolen_funcs),
489 INTEL_I965GM_IDS(&gen3_stolen_funcs),
490 INTEL_GM45_IDS(&gen3_stolen_funcs),
491 INTEL_G45_IDS(&gen3_stolen_funcs),
492 INTEL_IRONLAKE_D_IDS(&gen3_stolen_funcs),
493 INTEL_IRONLAKE_M_IDS(&gen3_stolen_funcs),
494 INTEL_SNB_D_IDS(&gen6_stolen_funcs),
495 INTEL_SNB_M_IDS(&gen6_stolen_funcs),
496 INTEL_IVB_M_IDS(&gen6_stolen_funcs),
497 INTEL_IVB_D_IDS(&gen6_stolen_funcs),
498 INTEL_HSW_D_IDS(&gen6_stolen_funcs),
499 INTEL_HSW_M_IDS(&gen6_stolen_funcs),
500 INTEL_BDW_M_IDS(&gen8_stolen_funcs),
501 INTEL_BDW_D_IDS(&gen8_stolen_funcs)
Jesse Barnes814c5f12013-07-26 13:32:52 -0700502};
503
504static void __init intel_graphics_stolen(int num, int slot, int func)
505{
506 size_t size;
507 int i;
508 u32 start;
509 u16 device, subvendor, subdevice;
510
511 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
512 subvendor = read_pci_config_16(num, slot, func,
513 PCI_SUBSYSTEM_VENDOR_ID);
514 subdevice = read_pci_config_16(num, slot, func, PCI_SUBSYSTEM_ID);
515
516 for (i = 0; i < ARRAY_SIZE(intel_stolen_ids); i++) {
517 if (intel_stolen_ids[i].device == device) {
Ville Syrjälä52ca7042014-02-05 21:28:58 +0200518 const struct intel_stolen_funcs *stolen_funcs =
519 (const struct intel_stolen_funcs *)intel_stolen_ids[i].driver_data;
520 size = stolen_funcs->size(num, slot, func);
521 start = stolen_funcs->base(num, slot, func, size);
Jesse Barnes814c5f12013-07-26 13:32:52 -0700522 if (size && start) {
523 /* Mark this space as reserved */
524 e820_add_region(start, size, E820_RESERVED);
525 sanitize_e820_map(e820.map,
526 ARRAY_SIZE(e820.map),
527 &e820.nr_map);
528 }
529 return;
530 }
531 }
532}
533
Neil Hormanc6b48322008-01-30 13:31:25 +0100534#define QFLAG_APPLY_ONCE 0x1
535#define QFLAG_APPLIED 0x2
536#define QFLAG_DONE (QFLAG_APPLY_ONCE|QFLAG_APPLIED)
Andi Kleendfa46982006-09-26 10:52:30 +0200537struct chipset {
Neil Hormanc6b48322008-01-30 13:31:25 +0100538 u32 vendor;
539 u32 device;
540 u32 class;
541 u32 class_mask;
542 u32 flags;
543 void (*f)(int num, int slot, int func);
Andi Kleendfa46982006-09-26 10:52:30 +0200544};
545
Andi Kleen8659c402009-01-09 12:17:39 -0800546/*
547 * Only works for devices on the root bus. If you add any devices
548 * not on bus 0 readd another loop level in early_quirks(). But
549 * be careful because at least the Nvidia quirk here relies on
550 * only matching on bus 0.
551 */
Andrew Mortonc993c732007-04-08 16:04:03 -0700552static struct chipset early_qrk[] __initdata = {
Neil Hormanc6b48322008-01-30 13:31:25 +0100553 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
554 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, nvidia_bugs },
555 { PCI_VENDOR_ID_VIA, PCI_ANY_ID,
556 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, via_bugs },
Neil Hormanc6b48322008-01-30 13:31:25 +0100557 { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_K8_NB,
558 PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, fix_hypertransport_config },
Andreas Herrmann33fb0e42008-10-07 00:11:22 +0200559 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS,
560 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs },
Andreas Herrmann26adcfb2008-10-14 21:01:15 +0200561 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS,
562 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs_contd },
Neil Horman03bbcb22013-04-16 16:38:32 -0400563 { PCI_VENDOR_ID_INTEL, 0x3403, PCI_CLASS_BRIDGE_HOST,
564 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
Neil Horman803075d2013-07-17 07:13:59 -0400565 { PCI_VENDOR_ID_INTEL, 0x3405, PCI_CLASS_BRIDGE_HOST,
566 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
Neil Horman03bbcb22013-04-16 16:38:32 -0400567 { PCI_VENDOR_ID_INTEL, 0x3406, PCI_CLASS_BRIDGE_HOST,
568 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
Jesse Barnes814c5f12013-07-26 13:32:52 -0700569 { PCI_VENDOR_ID_INTEL, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA, PCI_ANY_ID,
570 QFLAG_APPLY_ONCE, intel_graphics_stolen },
Andi Kleendfa46982006-09-26 10:52:30 +0200571 {}
572};
573
Jesse Barnes15650a22008-06-16 15:29:45 -0700574/**
575 * check_dev_quirk - apply early quirks to a given PCI device
576 * @num: bus number
577 * @slot: slot number
578 * @func: PCI function
579 *
580 * Check the vendor & device ID against the early quirks table.
581 *
582 * If the device is single function, let early_quirks() know so we don't
583 * poke at this device again.
584 */
585static int __init check_dev_quirk(int num, int slot, int func)
Neil Horman7bcbc782008-01-30 13:31:26 +0100586{
587 u16 class;
588 u16 vendor;
589 u16 device;
590 u8 type;
591 int i;
592
593 class = read_pci_config_16(num, slot, func, PCI_CLASS_DEVICE);
594
595 if (class == 0xffff)
Jesse Barnes15650a22008-06-16 15:29:45 -0700596 return -1; /* no class, treat as single function */
Neil Horman7bcbc782008-01-30 13:31:26 +0100597
598 vendor = read_pci_config_16(num, slot, func, PCI_VENDOR_ID);
599
600 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
601
602 for (i = 0; early_qrk[i].f != NULL; i++) {
603 if (((early_qrk[i].vendor == PCI_ANY_ID) ||
604 (early_qrk[i].vendor == vendor)) &&
605 ((early_qrk[i].device == PCI_ANY_ID) ||
606 (early_qrk[i].device == device)) &&
607 (!((early_qrk[i].class ^ class) &
608 early_qrk[i].class_mask))) {
609 if ((early_qrk[i].flags &
610 QFLAG_DONE) != QFLAG_DONE)
611 early_qrk[i].f(num, slot, func);
612 early_qrk[i].flags |= QFLAG_APPLIED;
613 }
614 }
615
616 type = read_pci_config_byte(num, slot, func,
617 PCI_HEADER_TYPE);
618 if (!(type & 0x80))
Jesse Barnes15650a22008-06-16 15:29:45 -0700619 return -1;
620
621 return 0;
Neil Horman7bcbc782008-01-30 13:31:26 +0100622}
623
Andi Kleendfa46982006-09-26 10:52:30 +0200624void __init early_quirks(void)
625{
Andi Kleen8659c402009-01-09 12:17:39 -0800626 int slot, func;
Andi Kleen0637a702006-09-26 10:52:41 +0200627
628 if (!early_pci_allowed())
629 return;
630
Andi Kleendfa46982006-09-26 10:52:30 +0200631 /* Poor man's PCI discovery */
Andi Kleen8659c402009-01-09 12:17:39 -0800632 /* Only scan the root bus */
633 for (slot = 0; slot < 32; slot++)
634 for (func = 0; func < 8; func++) {
635 /* Only probe function 0 on single fn devices */
636 if (check_dev_quirk(0, slot, func))
637 break;
638 }
Andi Kleendfa46982006-09-26 10:52:30 +0200639}