Loading...
1// SPDX-License-Identifier: GPL-2.0
2/* Various workarounds for chipset bugs.
3 This code runs very early and can't use the regular PCI subsystem
4 The entries are keyed to PCI bridges which usually identify chipsets
5 uniquely.
6 This is only for whole classes of chipsets with specific problems which
7 need early invasive action (e.g. before the timers are initialized).
8 Most PCI device specific workarounds can be done later and should be
9 in standard PCI quirks
10 Mainboard specific bugs should be handled by DMI entries.
11 CPU specific bugs in setup.c */
12
13#include <linux/pci.h>
14#include <linux/acpi.h>
15#include <linux/delay.h>
16#include <linux/pci_ids.h>
17#include <linux/bcma/bcma.h>
18#include <linux/bcma/bcma_regs.h>
19#include <linux/platform_data/x86/apple.h>
20#include <drm/i915_drm.h>
21#include <drm/i915_pciids.h>
22#include <asm/pci-direct.h>
23#include <asm/dma.h>
24#include <asm/io_apic.h>
25#include <asm/apic.h>
26#include <asm/hpet.h>
27#include <asm/iommu.h>
28#include <asm/gart.h>
29#include <asm/irq_remapping.h>
30#include <asm/early_ioremap.h>
31
32static void __init fix_hypertransport_config(int num, int slot, int func)
33{
34 u32 htcfg;
35 /*
36 * we found a hypertransport bus
37 * make sure that we are broadcasting
38 * interrupts to all cpus on the ht bus
39 * if we're using extended apic ids
40 */
41 htcfg = read_pci_config(num, slot, func, 0x68);
42 if (htcfg & (1 << 18)) {
43 printk(KERN_INFO "Detected use of extended apic ids "
44 "on hypertransport bus\n");
45 if ((htcfg & (1 << 17)) == 0) {
46 printk(KERN_INFO "Enabling hypertransport extended "
47 "apic interrupt broadcast\n");
48 printk(KERN_INFO "Note this is a bios bug, "
49 "please contact your hw vendor\n");
50 htcfg |= (1 << 17);
51 write_pci_config(num, slot, func, 0x68, htcfg);
52 }
53 }
54
55
56}
57
58static void __init via_bugs(int num, int slot, int func)
59{
60#ifdef CONFIG_GART_IOMMU
61 if ((max_pfn > MAX_DMA32_PFN || force_iommu) &&
62 !gart_iommu_aperture_allowed) {
63 printk(KERN_INFO
64 "Looks like a VIA chipset. Disabling IOMMU."
65 " Override with iommu=allowed\n");
66 gart_iommu_aperture_disabled = 1;
67 }
68#endif
69}
70
71#ifdef CONFIG_ACPI
72#ifdef CONFIG_X86_IO_APIC
73
74static int __init nvidia_hpet_check(struct acpi_table_header *header)
75{
76 return 0;
77}
78#endif /* CONFIG_X86_IO_APIC */
79#endif /* CONFIG_ACPI */
80
81static void __init nvidia_bugs(int num, int slot, int func)
82{
83#ifdef CONFIG_ACPI
84#ifdef CONFIG_X86_IO_APIC
85 /*
86 * Only applies to Nvidia root ports (bus 0) and not to
87 * Nvidia graphics cards with PCI ports on secondary buses.
88 */
89 if (num)
90 return;
91
92 /*
93 * All timer overrides on Nvidia are
94 * wrong unless HPET is enabled.
95 * Unfortunately that's not true on many Asus boards.
96 * We don't know yet how to detect this automatically, but
97 * at least allow a command line override.
98 */
99 if (acpi_use_timer_override)
100 return;
101
102 if (acpi_table_parse(ACPI_SIG_HPET, nvidia_hpet_check)) {
103 acpi_skip_timer_override = 1;
104 printk(KERN_INFO "Nvidia board "
105 "detected. Ignoring ACPI "
106 "timer override.\n");
107 printk(KERN_INFO "If you got timer trouble "
108 "try acpi_use_timer_override\n");
109 }
110#endif
111#endif
112 /* RED-PEN skip them on mptables too? */
113
114}
115
116#if defined(CONFIG_ACPI) && defined(CONFIG_X86_IO_APIC)
117static u32 __init ati_ixp4x0_rev(int num, int slot, int func)
118{
119 u32 d;
120 u8 b;
121
122 b = read_pci_config_byte(num, slot, func, 0xac);
123 b &= ~(1<<5);
124 write_pci_config_byte(num, slot, func, 0xac, b);
125
126 d = read_pci_config(num, slot, func, 0x70);
127 d |= 1<<8;
128 write_pci_config(num, slot, func, 0x70, d);
129
130 d = read_pci_config(num, slot, func, 0x8);
131 d &= 0xff;
132 return d;
133}
134
135static void __init ati_bugs(int num, int slot, int func)
136{
137 u32 d;
138 u8 b;
139
140 if (acpi_use_timer_override)
141 return;
142
143 d = ati_ixp4x0_rev(num, slot, func);
144 if (d < 0x82)
145 acpi_skip_timer_override = 1;
146 else {
147 /* check for IRQ0 interrupt swap */
148 outb(0x72, 0xcd6); b = inb(0xcd7);
149 if (!(b & 0x2))
150 acpi_skip_timer_override = 1;
151 }
152
153 if (acpi_skip_timer_override) {
154 printk(KERN_INFO "SB4X0 revision 0x%x\n", d);
155 printk(KERN_INFO "Ignoring ACPI timer override.\n");
156 printk(KERN_INFO "If you got timer trouble "
157 "try acpi_use_timer_override\n");
158 }
159}
160
161static u32 __init ati_sbx00_rev(int num, int slot, int func)
162{
163 u32 d;
164
165 d = read_pci_config(num, slot, func, 0x8);
166 d &= 0xff;
167
168 return d;
169}
170
171static void __init ati_bugs_contd(int num, int slot, int func)
172{
173 u32 d, rev;
174
175 rev = ati_sbx00_rev(num, slot, func);
176 if (rev >= 0x40)
177 acpi_fix_pin2_polarity = 1;
178
179 /*
180 * SB600: revisions 0x11, 0x12, 0x13, 0x14, ...
181 * SB700: revisions 0x39, 0x3a, ...
182 * SB800: revisions 0x40, 0x41, ...
183 */
184 if (rev >= 0x39)
185 return;
186
187 if (acpi_use_timer_override)
188 return;
189
190 /* check for IRQ0 interrupt swap */
191 d = read_pci_config(num, slot, func, 0x64);
192 if (!(d & (1<<14)))
193 acpi_skip_timer_override = 1;
194
195 if (acpi_skip_timer_override) {
196 printk(KERN_INFO "SB600 revision 0x%x\n", rev);
197 printk(KERN_INFO "Ignoring ACPI timer override.\n");
198 printk(KERN_INFO "If you got timer trouble "
199 "try acpi_use_timer_override\n");
200 }
201}
202#else
203static void __init ati_bugs(int num, int slot, int func)
204{
205}
206
207static void __init ati_bugs_contd(int num, int slot, int func)
208{
209}
210#endif
211
212static void __init intel_remapping_check(int num, int slot, int func)
213{
214 u8 revision;
215 u16 device;
216
217 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
218 revision = read_pci_config_byte(num, slot, func, PCI_REVISION_ID);
219
220 /*
221 * Revision <= 13 of all triggering devices id in this quirk
222 * have a problem draining interrupts when irq remapping is
223 * enabled, and should be flagged as broken. Additionally
224 * revision 0x22 of device id 0x3405 has this problem.
225 */
226 if (revision <= 0x13)
227 set_irq_remapping_broken();
228 else if (device == 0x3405 && revision == 0x22)
229 set_irq_remapping_broken();
230}
231
232/*
233 * Systems with Intel graphics controllers set aside memory exclusively
234 * for gfx driver use. This memory is not marked in the E820 as reserved
235 * or as RAM, and so is subject to overlap from E820 manipulation later
236 * in the boot process. On some systems, MMIO space is allocated on top,
237 * despite the efforts of the "RAM buffer" approach, which simply rounds
238 * memory boundaries up to 64M to try to catch space that may decode
239 * as RAM and so is not suitable for MMIO.
240 */
241
242#define KB(x) ((x) * 1024UL)
243#define MB(x) (KB (KB (x)))
244
245static resource_size_t __init i830_tseg_size(void)
246{
247 u8 esmramc = read_pci_config_byte(0, 0, 0, I830_ESMRAMC);
248
249 if (!(esmramc & TSEG_ENABLE))
250 return 0;
251
252 if (esmramc & I830_TSEG_SIZE_1M)
253 return MB(1);
254 else
255 return KB(512);
256}
257
258static resource_size_t __init i845_tseg_size(void)
259{
260 u8 esmramc = read_pci_config_byte(0, 0, 0, I845_ESMRAMC);
261 u8 tseg_size = esmramc & I845_TSEG_SIZE_MASK;
262
263 if (!(esmramc & TSEG_ENABLE))
264 return 0;
265
266 switch (tseg_size) {
267 case I845_TSEG_SIZE_512K: return KB(512);
268 case I845_TSEG_SIZE_1M: return MB(1);
269 default:
270 WARN(1, "Unknown ESMRAMC value: %x!\n", esmramc);
271 }
272 return 0;
273}
274
275static resource_size_t __init i85x_tseg_size(void)
276{
277 u8 esmramc = read_pci_config_byte(0, 0, 0, I85X_ESMRAMC);
278
279 if (!(esmramc & TSEG_ENABLE))
280 return 0;
281
282 return MB(1);
283}
284
285static resource_size_t __init i830_mem_size(void)
286{
287 return read_pci_config_byte(0, 0, 0, I830_DRB3) * MB(32);
288}
289
290static resource_size_t __init i85x_mem_size(void)
291{
292 return read_pci_config_byte(0, 0, 1, I85X_DRB3) * MB(32);
293}
294
295/*
296 * On 830/845/85x the stolen memory base isn't available in any
297 * register. We need to calculate it as TOM-TSEG_SIZE-stolen_size.
298 */
299static resource_size_t __init i830_stolen_base(int num, int slot, int func,
300 resource_size_t stolen_size)
301{
302 return i830_mem_size() - i830_tseg_size() - stolen_size;
303}
304
305static resource_size_t __init i845_stolen_base(int num, int slot, int func,
306 resource_size_t stolen_size)
307{
308 return i830_mem_size() - i845_tseg_size() - stolen_size;
309}
310
311static resource_size_t __init i85x_stolen_base(int num, int slot, int func,
312 resource_size_t stolen_size)
313{
314 return i85x_mem_size() - i85x_tseg_size() - stolen_size;
315}
316
317static resource_size_t __init i865_stolen_base(int num, int slot, int func,
318 resource_size_t stolen_size)
319{
320 u16 toud = 0;
321
322 toud = read_pci_config_16(0, 0, 0, I865_TOUD);
323
324 return toud * KB(64) + i845_tseg_size();
325}
326
327static resource_size_t __init gen3_stolen_base(int num, int slot, int func,
328 resource_size_t stolen_size)
329{
330 u32 bsm;
331
332 /* Almost universally we can find the Graphics Base of Stolen Memory
333 * at register BSM (0x5c) in the igfx configuration space. On a few
334 * (desktop) machines this is also mirrored in the bridge device at
335 * different locations, or in the MCHBAR.
336 */
337 bsm = read_pci_config(num, slot, func, INTEL_BSM);
338
339 return bsm & INTEL_BSM_MASK;
340}
341
342static resource_size_t __init gen11_stolen_base(int num, int slot, int func,
343 resource_size_t stolen_size)
344{
345 u64 bsm;
346
347 bsm = read_pci_config(num, slot, func, INTEL_GEN11_BSM_DW0);
348 bsm &= INTEL_BSM_MASK;
349 bsm |= (u64)read_pci_config(num, slot, func, INTEL_GEN11_BSM_DW1) << 32;
350
351 return bsm;
352}
353
354static resource_size_t __init i830_stolen_size(int num, int slot, int func)
355{
356 u16 gmch_ctrl;
357 u16 gms;
358
359 gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL);
360 gms = gmch_ctrl & I830_GMCH_GMS_MASK;
361
362 switch (gms) {
363 case I830_GMCH_GMS_STOLEN_512: return KB(512);
364 case I830_GMCH_GMS_STOLEN_1024: return MB(1);
365 case I830_GMCH_GMS_STOLEN_8192: return MB(8);
366 /* local memory isn't part of the normal address space */
367 case I830_GMCH_GMS_LOCAL: return 0;
368 default:
369 WARN(1, "Unknown GMCH_CTRL value: %x!\n", gmch_ctrl);
370 }
371
372 return 0;
373}
374
375static resource_size_t __init gen3_stolen_size(int num, int slot, int func)
376{
377 u16 gmch_ctrl;
378 u16 gms;
379
380 gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL);
381 gms = gmch_ctrl & I855_GMCH_GMS_MASK;
382
383 switch (gms) {
384 case I855_GMCH_GMS_STOLEN_1M: return MB(1);
385 case I855_GMCH_GMS_STOLEN_4M: return MB(4);
386 case I855_GMCH_GMS_STOLEN_8M: return MB(8);
387 case I855_GMCH_GMS_STOLEN_16M: return MB(16);
388 case I855_GMCH_GMS_STOLEN_32M: return MB(32);
389 case I915_GMCH_GMS_STOLEN_48M: return MB(48);
390 case I915_GMCH_GMS_STOLEN_64M: return MB(64);
391 case G33_GMCH_GMS_STOLEN_128M: return MB(128);
392 case G33_GMCH_GMS_STOLEN_256M: return MB(256);
393 case INTEL_GMCH_GMS_STOLEN_96M: return MB(96);
394 case INTEL_GMCH_GMS_STOLEN_160M:return MB(160);
395 case INTEL_GMCH_GMS_STOLEN_224M:return MB(224);
396 case INTEL_GMCH_GMS_STOLEN_352M:return MB(352);
397 default:
398 WARN(1, "Unknown GMCH_CTRL value: %x!\n", gmch_ctrl);
399 }
400
401 return 0;
402}
403
404static resource_size_t __init gen6_stolen_size(int num, int slot, int func)
405{
406 u16 gmch_ctrl;
407 u16 gms;
408
409 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
410 gms = (gmch_ctrl >> SNB_GMCH_GMS_SHIFT) & SNB_GMCH_GMS_MASK;
411
412 return gms * MB(32);
413}
414
415static resource_size_t __init gen8_stolen_size(int num, int slot, int func)
416{
417 u16 gmch_ctrl;
418 u16 gms;
419
420 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
421 gms = (gmch_ctrl >> BDW_GMCH_GMS_SHIFT) & BDW_GMCH_GMS_MASK;
422
423 return gms * MB(32);
424}
425
426static resource_size_t __init chv_stolen_size(int num, int slot, int func)
427{
428 u16 gmch_ctrl;
429 u16 gms;
430
431 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
432 gms = (gmch_ctrl >> SNB_GMCH_GMS_SHIFT) & SNB_GMCH_GMS_MASK;
433
434 /*
435 * 0x0 to 0x10: 32MB increments starting at 0MB
436 * 0x11 to 0x16: 4MB increments starting at 8MB
437 * 0x17 to 0x1d: 4MB increments start at 36MB
438 */
439 if (gms < 0x11)
440 return gms * MB(32);
441 else if (gms < 0x17)
442 return (gms - 0x11) * MB(4) + MB(8);
443 else
444 return (gms - 0x17) * MB(4) + MB(36);
445}
446
447static resource_size_t __init gen9_stolen_size(int num, int slot, int func)
448{
449 u16 gmch_ctrl;
450 u16 gms;
451
452 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
453 gms = (gmch_ctrl >> BDW_GMCH_GMS_SHIFT) & BDW_GMCH_GMS_MASK;
454
455 /* 0x0 to 0xef: 32MB increments starting at 0MB */
456 /* 0xf0 to 0xfe: 4MB increments starting at 4MB */
457 if (gms < 0xf0)
458 return gms * MB(32);
459 else
460 return (gms - 0xf0) * MB(4) + MB(4);
461}
462
463struct intel_early_ops {
464 resource_size_t (*stolen_size)(int num, int slot, int func);
465 resource_size_t (*stolen_base)(int num, int slot, int func,
466 resource_size_t size);
467};
468
469static const struct intel_early_ops i830_early_ops __initconst = {
470 .stolen_base = i830_stolen_base,
471 .stolen_size = i830_stolen_size,
472};
473
474static const struct intel_early_ops i845_early_ops __initconst = {
475 .stolen_base = i845_stolen_base,
476 .stolen_size = i830_stolen_size,
477};
478
479static const struct intel_early_ops i85x_early_ops __initconst = {
480 .stolen_base = i85x_stolen_base,
481 .stolen_size = gen3_stolen_size,
482};
483
484static const struct intel_early_ops i865_early_ops __initconst = {
485 .stolen_base = i865_stolen_base,
486 .stolen_size = gen3_stolen_size,
487};
488
489static const struct intel_early_ops gen3_early_ops __initconst = {
490 .stolen_base = gen3_stolen_base,
491 .stolen_size = gen3_stolen_size,
492};
493
494static const struct intel_early_ops gen6_early_ops __initconst = {
495 .stolen_base = gen3_stolen_base,
496 .stolen_size = gen6_stolen_size,
497};
498
499static const struct intel_early_ops gen8_early_ops __initconst = {
500 .stolen_base = gen3_stolen_base,
501 .stolen_size = gen8_stolen_size,
502};
503
504static const struct intel_early_ops gen9_early_ops __initconst = {
505 .stolen_base = gen3_stolen_base,
506 .stolen_size = gen9_stolen_size,
507};
508
509static const struct intel_early_ops chv_early_ops __initconst = {
510 .stolen_base = gen3_stolen_base,
511 .stolen_size = chv_stolen_size,
512};
513
514static const struct intel_early_ops gen11_early_ops __initconst = {
515 .stolen_base = gen11_stolen_base,
516 .stolen_size = gen9_stolen_size,
517};
518
519/* Intel integrated GPUs for which we need to reserve "stolen memory" */
520static const struct pci_device_id intel_early_ids[] __initconst = {
521 INTEL_I830_IDS(&i830_early_ops),
522 INTEL_I845G_IDS(&i845_early_ops),
523 INTEL_I85X_IDS(&i85x_early_ops),
524 INTEL_I865G_IDS(&i865_early_ops),
525 INTEL_I915G_IDS(&gen3_early_ops),
526 INTEL_I915GM_IDS(&gen3_early_ops),
527 INTEL_I945G_IDS(&gen3_early_ops),
528 INTEL_I945GM_IDS(&gen3_early_ops),
529 INTEL_VLV_IDS(&gen6_early_ops),
530 INTEL_PINEVIEW_G_IDS(&gen3_early_ops),
531 INTEL_PINEVIEW_M_IDS(&gen3_early_ops),
532 INTEL_I965G_IDS(&gen3_early_ops),
533 INTEL_G33_IDS(&gen3_early_ops),
534 INTEL_I965GM_IDS(&gen3_early_ops),
535 INTEL_GM45_IDS(&gen3_early_ops),
536 INTEL_G45_IDS(&gen3_early_ops),
537 INTEL_IRONLAKE_D_IDS(&gen3_early_ops),
538 INTEL_IRONLAKE_M_IDS(&gen3_early_ops),
539 INTEL_SNB_D_IDS(&gen6_early_ops),
540 INTEL_SNB_M_IDS(&gen6_early_ops),
541 INTEL_IVB_M_IDS(&gen6_early_ops),
542 INTEL_IVB_D_IDS(&gen6_early_ops),
543 INTEL_HSW_IDS(&gen6_early_ops),
544 INTEL_BDW_IDS(&gen8_early_ops),
545 INTEL_CHV_IDS(&chv_early_ops),
546 INTEL_SKL_IDS(&gen9_early_ops),
547 INTEL_BXT_IDS(&gen9_early_ops),
548 INTEL_KBL_IDS(&gen9_early_ops),
549 INTEL_CFL_IDS(&gen9_early_ops),
550 INTEL_GLK_IDS(&gen9_early_ops),
551 INTEL_CNL_IDS(&gen9_early_ops),
552 INTEL_ICL_11_IDS(&gen11_early_ops),
553 INTEL_EHL_IDS(&gen11_early_ops),
554 INTEL_JSL_IDS(&gen11_early_ops),
555 INTEL_TGL_12_IDS(&gen11_early_ops),
556 INTEL_RKL_IDS(&gen11_early_ops),
557 INTEL_ADLS_IDS(&gen11_early_ops),
558 INTEL_ADLP_IDS(&gen11_early_ops),
559 INTEL_ADLN_IDS(&gen11_early_ops),
560 INTEL_RPLS_IDS(&gen11_early_ops),
561 INTEL_RPLP_IDS(&gen11_early_ops),
562};
563
564struct resource intel_graphics_stolen_res __ro_after_init = DEFINE_RES_MEM(0, 0);
565EXPORT_SYMBOL(intel_graphics_stolen_res);
566
567static void __init
568intel_graphics_stolen(int num, int slot, int func,
569 const struct intel_early_ops *early_ops)
570{
571 resource_size_t base, size;
572 resource_size_t end;
573
574 size = early_ops->stolen_size(num, slot, func);
575 base = early_ops->stolen_base(num, slot, func, size);
576
577 if (!size || !base)
578 return;
579
580 end = base + size - 1;
581
582 intel_graphics_stolen_res.start = base;
583 intel_graphics_stolen_res.end = end;
584
585 printk(KERN_INFO "Reserving Intel graphics memory at %pR\n",
586 &intel_graphics_stolen_res);
587
588 /* Mark this space as reserved */
589 e820__range_add(base, size, E820_TYPE_RESERVED);
590 e820__update_table(e820_table);
591}
592
593static void __init intel_graphics_quirks(int num, int slot, int func)
594{
595 const struct intel_early_ops *early_ops;
596 u16 device;
597 int i;
598
599 /*
600 * Reserve "stolen memory" for an integrated GPU. If we've already
601 * found one, there's nothing to do for other (discrete) GPUs.
602 */
603 if (resource_size(&intel_graphics_stolen_res))
604 return;
605
606 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
607
608 for (i = 0; i < ARRAY_SIZE(intel_early_ids); i++) {
609 kernel_ulong_t driver_data = intel_early_ids[i].driver_data;
610
611 if (intel_early_ids[i].device != device)
612 continue;
613
614 early_ops = (typeof(early_ops))driver_data;
615
616 intel_graphics_stolen(num, slot, func, early_ops);
617
618 return;
619 }
620}
621
622static void __init force_disable_hpet(int num, int slot, int func)
623{
624#ifdef CONFIG_HPET_TIMER
625 boot_hpet_disable = true;
626 pr_info("x86/hpet: Will disable the HPET for this platform because it's not reliable\n");
627#endif
628}
629
630#define BCM4331_MMIO_SIZE 16384
631#define BCM4331_PM_CAP 0x40
632#define bcma_aread32(reg) ioread32(mmio + 1 * BCMA_CORE_SIZE + reg)
633#define bcma_awrite32(reg, val) iowrite32(val, mmio + 1 * BCMA_CORE_SIZE + reg)
634
635static void __init apple_airport_reset(int bus, int slot, int func)
636{
637 void __iomem *mmio;
638 u16 pmcsr;
639 u64 addr;
640 int i;
641
642 if (!x86_apple_machine)
643 return;
644
645 /* Card may have been put into PCI_D3hot by grub quirk */
646 pmcsr = read_pci_config_16(bus, slot, func, BCM4331_PM_CAP + PCI_PM_CTRL);
647
648 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) != PCI_D0) {
649 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
650 write_pci_config_16(bus, slot, func, BCM4331_PM_CAP + PCI_PM_CTRL, pmcsr);
651 mdelay(10);
652
653 pmcsr = read_pci_config_16(bus, slot, func, BCM4331_PM_CAP + PCI_PM_CTRL);
654 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) != PCI_D0) {
655 pr_err("pci 0000:%02x:%02x.%d: Cannot power up Apple AirPort card\n",
656 bus, slot, func);
657 return;
658 }
659 }
660
661 addr = read_pci_config(bus, slot, func, PCI_BASE_ADDRESS_0);
662 addr |= (u64)read_pci_config(bus, slot, func, PCI_BASE_ADDRESS_1) << 32;
663 addr &= PCI_BASE_ADDRESS_MEM_MASK;
664
665 mmio = early_ioremap(addr, BCM4331_MMIO_SIZE);
666 if (!mmio) {
667 pr_err("pci 0000:%02x:%02x.%d: Cannot iomap Apple AirPort card\n",
668 bus, slot, func);
669 return;
670 }
671
672 pr_info("Resetting Apple AirPort card (left enabled by EFI)\n");
673
674 for (i = 0; bcma_aread32(BCMA_RESET_ST) && i < 30; i++)
675 udelay(10);
676
677 bcma_awrite32(BCMA_RESET_CTL, BCMA_RESET_CTL_RESET);
678 bcma_aread32(BCMA_RESET_CTL);
679 udelay(1);
680
681 bcma_awrite32(BCMA_RESET_CTL, 0);
682 bcma_aread32(BCMA_RESET_CTL);
683 udelay(10);
684
685 early_iounmap(mmio, BCM4331_MMIO_SIZE);
686}
687
688#define QFLAG_APPLY_ONCE 0x1
689#define QFLAG_APPLIED 0x2
690#define QFLAG_DONE (QFLAG_APPLY_ONCE|QFLAG_APPLIED)
691struct chipset {
692 u32 vendor;
693 u32 device;
694 u32 class;
695 u32 class_mask;
696 u32 flags;
697 void (*f)(int num, int slot, int func);
698};
699
700static struct chipset early_qrk[] __initdata = {
701 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
702 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, nvidia_bugs },
703 { PCI_VENDOR_ID_VIA, PCI_ANY_ID,
704 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, via_bugs },
705 { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_K8_NB,
706 PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, fix_hypertransport_config },
707 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS,
708 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs },
709 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS,
710 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs_contd },
711 { PCI_VENDOR_ID_INTEL, 0x3403, PCI_CLASS_BRIDGE_HOST,
712 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
713 { PCI_VENDOR_ID_INTEL, 0x3405, PCI_CLASS_BRIDGE_HOST,
714 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
715 { PCI_VENDOR_ID_INTEL, 0x3406, PCI_CLASS_BRIDGE_HOST,
716 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
717 { PCI_VENDOR_ID_INTEL, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA, PCI_ANY_ID,
718 0, intel_graphics_quirks },
719 /*
720 * HPET on the current version of the Baytrail platform has accuracy
721 * problems: it will halt in deep idle state - so we disable it.
722 *
723 * More details can be found in section 18.10.1.3 of the datasheet:
724 *
725 * http://www.intel.com/content/dam/www/public/us/en/documents/datasheets/atom-z8000-datasheet-vol-1.pdf
726 */
727 { PCI_VENDOR_ID_INTEL, 0x0f00,
728 PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, force_disable_hpet},
729 { PCI_VENDOR_ID_BROADCOM, 0x4331,
730 PCI_CLASS_NETWORK_OTHER, PCI_ANY_ID, 0, apple_airport_reset},
731 {}
732};
733
734static void __init early_pci_scan_bus(int bus);
735
736/**
737 * check_dev_quirk - apply early quirks to a given PCI device
738 * @num: bus number
739 * @slot: slot number
740 * @func: PCI function
741 *
742 * Check the vendor & device ID against the early quirks table.
743 *
744 * If the device is single function, let early_pci_scan_bus() know so we don't
745 * poke at this device again.
746 */
747static int __init check_dev_quirk(int num, int slot, int func)
748{
749 u16 class;
750 u16 vendor;
751 u16 device;
752 u8 type;
753 u8 sec;
754 int i;
755
756 class = read_pci_config_16(num, slot, func, PCI_CLASS_DEVICE);
757
758 if (class == 0xffff)
759 return -1; /* no class, treat as single function */
760
761 vendor = read_pci_config_16(num, slot, func, PCI_VENDOR_ID);
762
763 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
764
765 for (i = 0; early_qrk[i].f != NULL; i++) {
766 if (((early_qrk[i].vendor == PCI_ANY_ID) ||
767 (early_qrk[i].vendor == vendor)) &&
768 ((early_qrk[i].device == PCI_ANY_ID) ||
769 (early_qrk[i].device == device)) &&
770 (!((early_qrk[i].class ^ class) &
771 early_qrk[i].class_mask))) {
772 if ((early_qrk[i].flags &
773 QFLAG_DONE) != QFLAG_DONE)
774 early_qrk[i].f(num, slot, func);
775 early_qrk[i].flags |= QFLAG_APPLIED;
776 }
777 }
778
779 type = read_pci_config_byte(num, slot, func,
780 PCI_HEADER_TYPE);
781
782 if ((type & 0x7f) == PCI_HEADER_TYPE_BRIDGE) {
783 sec = read_pci_config_byte(num, slot, func, PCI_SECONDARY_BUS);
784 if (sec > num)
785 early_pci_scan_bus(sec);
786 }
787
788 if (!(type & 0x80))
789 return -1;
790
791 return 0;
792}
793
794static void __init early_pci_scan_bus(int bus)
795{
796 int slot, func;
797
798 /* Poor man's PCI discovery */
799 for (slot = 0; slot < 32; slot++)
800 for (func = 0; func < 8; func++) {
801 /* Only probe function 0 on single fn devices */
802 if (check_dev_quirk(bus, slot, func))
803 break;
804 }
805}
806
807void __init early_quirks(void)
808{
809 if (!early_pci_allowed())
810 return;
811
812 early_pci_scan_bus(0);
813}
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>
15#include <drm/i915_drm.h>
16#include <asm/pci-direct.h>
17#include <asm/dma.h>
18#include <asm/io_apic.h>
19#include <asm/apic.h>
20#include <asm/hpet.h>
21#include <asm/iommu.h>
22#include <asm/gart.h>
23#include <asm/irq_remapping.h>
24
25static void __init fix_hypertransport_config(int num, int slot, int func)
26{
27 u32 htcfg;
28 /*
29 * we found a hypertransport bus
30 * make sure that we are broadcasting
31 * interrupts to all cpus on the ht bus
32 * if we're using extended apic ids
33 */
34 htcfg = read_pci_config(num, slot, func, 0x68);
35 if (htcfg & (1 << 18)) {
36 printk(KERN_INFO "Detected use of extended apic ids "
37 "on hypertransport bus\n");
38 if ((htcfg & (1 << 17)) == 0) {
39 printk(KERN_INFO "Enabling hypertransport extended "
40 "apic interrupt broadcast\n");
41 printk(KERN_INFO "Note this is a bios bug, "
42 "please contact your hw vendor\n");
43 htcfg |= (1 << 17);
44 write_pci_config(num, slot, func, 0x68, htcfg);
45 }
46 }
47
48
49}
50
51static void __init via_bugs(int num, int slot, int func)
52{
53#ifdef CONFIG_GART_IOMMU
54 if ((max_pfn > MAX_DMA32_PFN || force_iommu) &&
55 !gart_iommu_aperture_allowed) {
56 printk(KERN_INFO
57 "Looks like a VIA chipset. Disabling IOMMU."
58 " Override with iommu=allowed\n");
59 gart_iommu_aperture_disabled = 1;
60 }
61#endif
62}
63
64#ifdef CONFIG_ACPI
65#ifdef CONFIG_X86_IO_APIC
66
67static int __init nvidia_hpet_check(struct acpi_table_header *header)
68{
69 return 0;
70}
71#endif /* CONFIG_X86_IO_APIC */
72#endif /* CONFIG_ACPI */
73
74static void __init nvidia_bugs(int num, int slot, int func)
75{
76#ifdef CONFIG_ACPI
77#ifdef CONFIG_X86_IO_APIC
78 /*
79 * All timer overrides on Nvidia are
80 * wrong unless HPET is enabled.
81 * Unfortunately that's not true on many Asus boards.
82 * We don't know yet how to detect this automatically, but
83 * at least allow a command line override.
84 */
85 if (acpi_use_timer_override)
86 return;
87
88 if (acpi_table_parse(ACPI_SIG_HPET, nvidia_hpet_check)) {
89 acpi_skip_timer_override = 1;
90 printk(KERN_INFO "Nvidia board "
91 "detected. Ignoring ACPI "
92 "timer override.\n");
93 printk(KERN_INFO "If you got timer trouble "
94 "try acpi_use_timer_override\n");
95 }
96#endif
97#endif
98 /* RED-PEN skip them on mptables too? */
99
100}
101
102#if defined(CONFIG_ACPI) && defined(CONFIG_X86_IO_APIC)
103static u32 __init ati_ixp4x0_rev(int num, int slot, int func)
104{
105 u32 d;
106 u8 b;
107
108 b = read_pci_config_byte(num, slot, func, 0xac);
109 b &= ~(1<<5);
110 write_pci_config_byte(num, slot, func, 0xac, b);
111
112 d = read_pci_config(num, slot, func, 0x70);
113 d |= 1<<8;
114 write_pci_config(num, slot, func, 0x70, d);
115
116 d = read_pci_config(num, slot, func, 0x8);
117 d &= 0xff;
118 return d;
119}
120
121static void __init ati_bugs(int num, int slot, int func)
122{
123 u32 d;
124 u8 b;
125
126 if (acpi_use_timer_override)
127 return;
128
129 d = ati_ixp4x0_rev(num, slot, func);
130 if (d < 0x82)
131 acpi_skip_timer_override = 1;
132 else {
133 /* check for IRQ0 interrupt swap */
134 outb(0x72, 0xcd6); b = inb(0xcd7);
135 if (!(b & 0x2))
136 acpi_skip_timer_override = 1;
137 }
138
139 if (acpi_skip_timer_override) {
140 printk(KERN_INFO "SB4X0 revision 0x%x\n", d);
141 printk(KERN_INFO "Ignoring ACPI timer override.\n");
142 printk(KERN_INFO "If you got timer trouble "
143 "try acpi_use_timer_override\n");
144 }
145}
146
147static u32 __init ati_sbx00_rev(int num, int slot, int func)
148{
149 u32 d;
150
151 d = read_pci_config(num, slot, func, 0x8);
152 d &= 0xff;
153
154 return d;
155}
156
157static void __init ati_bugs_contd(int num, int slot, int func)
158{
159 u32 d, rev;
160
161 rev = ati_sbx00_rev(num, slot, func);
162 if (rev >= 0x40)
163 acpi_fix_pin2_polarity = 1;
164
165 /*
166 * SB600: revisions 0x11, 0x12, 0x13, 0x14, ...
167 * SB700: revisions 0x39, 0x3a, ...
168 * SB800: revisions 0x40, 0x41, ...
169 */
170 if (rev >= 0x39)
171 return;
172
173 if (acpi_use_timer_override)
174 return;
175
176 /* check for IRQ0 interrupt swap */
177 d = read_pci_config(num, slot, func, 0x64);
178 if (!(d & (1<<14)))
179 acpi_skip_timer_override = 1;
180
181 if (acpi_skip_timer_override) {
182 printk(KERN_INFO "SB600 revision 0x%x\n", rev);
183 printk(KERN_INFO "Ignoring ACPI timer override.\n");
184 printk(KERN_INFO "If you got timer trouble "
185 "try acpi_use_timer_override\n");
186 }
187}
188#else
189static void __init ati_bugs(int num, int slot, int func)
190{
191}
192
193static void __init ati_bugs_contd(int num, int slot, int func)
194{
195}
196#endif
197
198static void __init intel_remapping_check(int num, int slot, int func)
199{
200 u8 revision;
201 u16 device;
202
203 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
204 revision = read_pci_config_byte(num, slot, func, PCI_REVISION_ID);
205
206 /*
207 * Revision <= 13 of all triggering devices id in this quirk
208 * have a problem draining interrupts when irq remapping is
209 * enabled, and should be flagged as broken. Additionally
210 * revision 0x22 of device id 0x3405 has this problem.
211 */
212 if (revision <= 0x13)
213 set_irq_remapping_broken();
214 else if (device == 0x3405 && revision == 0x22)
215 set_irq_remapping_broken();
216}
217
218/*
219 * Systems with Intel graphics controllers set aside memory exclusively
220 * for gfx driver use. This memory is not marked in the E820 as reserved
221 * or as RAM, and so is subject to overlap from E820 manipulation later
222 * in the boot process. On some systems, MMIO space is allocated on top,
223 * despite the efforts of the "RAM buffer" approach, which simply rounds
224 * memory boundaries up to 64M to try to catch space that may decode
225 * as RAM and so is not suitable for MMIO.
226 *
227 * And yes, so far on current devices the base addr is always under 4G.
228 */
229static u32 __init intel_stolen_base(int num, int slot, int func, size_t stolen_size)
230{
231 u32 base;
232
233 /*
234 * For the PCI IDs in this quirk, the stolen base is always
235 * in 0x5c, aka the BDSM register (yes that's really what
236 * it's called).
237 */
238 base = read_pci_config(num, slot, func, 0x5c);
239 base &= ~((1<<20) - 1);
240
241 return base;
242}
243
244#define KB(x) ((x) * 1024UL)
245#define MB(x) (KB (KB (x)))
246#define GB(x) (MB (KB (x)))
247
248static size_t __init i830_tseg_size(void)
249{
250 u8 tmp = read_pci_config_byte(0, 0, 0, I830_ESMRAMC);
251
252 if (!(tmp & TSEG_ENABLE))
253 return 0;
254
255 if (tmp & I830_TSEG_SIZE_1M)
256 return MB(1);
257 else
258 return KB(512);
259}
260
261static size_t __init i845_tseg_size(void)
262{
263 u8 tmp = read_pci_config_byte(0, 0, 0, I845_ESMRAMC);
264
265 if (!(tmp & TSEG_ENABLE))
266 return 0;
267
268 switch (tmp & I845_TSEG_SIZE_MASK) {
269 case I845_TSEG_SIZE_512K:
270 return KB(512);
271 case I845_TSEG_SIZE_1M:
272 return MB(1);
273 default:
274 WARN_ON(1);
275 return 0;
276 }
277}
278
279static size_t __init i85x_tseg_size(void)
280{
281 u8 tmp = read_pci_config_byte(0, 0, 0, I85X_ESMRAMC);
282
283 if (!(tmp & TSEG_ENABLE))
284 return 0;
285
286 return MB(1);
287}
288
289static size_t __init i830_mem_size(void)
290{
291 return read_pci_config_byte(0, 0, 0, I830_DRB3) * MB(32);
292}
293
294static size_t __init i85x_mem_size(void)
295{
296 return read_pci_config_byte(0, 0, 1, I85X_DRB3) * MB(32);
297}
298
299/*
300 * On 830/845/85x the stolen memory base isn't available in any
301 * register. We need to calculate it as TOM-TSEG_SIZE-stolen_size.
302 */
303static u32 __init i830_stolen_base(int num, int slot, int func, size_t stolen_size)
304{
305 return i830_mem_size() - i830_tseg_size() - stolen_size;
306}
307
308static u32 __init i845_stolen_base(int num, int slot, int func, size_t stolen_size)
309{
310 return i830_mem_size() - i845_tseg_size() - stolen_size;
311}
312
313static u32 __init i85x_stolen_base(int num, int slot, int func, size_t stolen_size)
314{
315 return i85x_mem_size() - i85x_tseg_size() - stolen_size;
316}
317
318static u32 __init i865_stolen_base(int num, int slot, int func, size_t stolen_size)
319{
320 /*
321 * FIXME is the graphics stolen memory region
322 * always at TOUD? Ie. is it always the last
323 * one to be allocated by the BIOS?
324 */
325 return read_pci_config_16(0, 0, 0, I865_TOUD) << 16;
326}
327
328static size_t __init i830_stolen_size(int num, int slot, int func)
329{
330 size_t stolen_size;
331 u16 gmch_ctrl;
332
333 gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL);
334
335 switch (gmch_ctrl & I830_GMCH_GMS_MASK) {
336 case I830_GMCH_GMS_STOLEN_512:
337 stolen_size = KB(512);
338 break;
339 case I830_GMCH_GMS_STOLEN_1024:
340 stolen_size = MB(1);
341 break;
342 case I830_GMCH_GMS_STOLEN_8192:
343 stolen_size = MB(8);
344 break;
345 case I830_GMCH_GMS_LOCAL:
346 /* local memory isn't part of the normal address space */
347 stolen_size = 0;
348 break;
349 default:
350 return 0;
351 }
352
353 return stolen_size;
354}
355
356static size_t __init gen3_stolen_size(int num, int slot, int func)
357{
358 size_t stolen_size;
359 u16 gmch_ctrl;
360
361 gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL);
362
363 switch (gmch_ctrl & I855_GMCH_GMS_MASK) {
364 case I855_GMCH_GMS_STOLEN_1M:
365 stolen_size = MB(1);
366 break;
367 case I855_GMCH_GMS_STOLEN_4M:
368 stolen_size = MB(4);
369 break;
370 case I855_GMCH_GMS_STOLEN_8M:
371 stolen_size = MB(8);
372 break;
373 case I855_GMCH_GMS_STOLEN_16M:
374 stolen_size = MB(16);
375 break;
376 case I855_GMCH_GMS_STOLEN_32M:
377 stolen_size = MB(32);
378 break;
379 case I915_GMCH_GMS_STOLEN_48M:
380 stolen_size = MB(48);
381 break;
382 case I915_GMCH_GMS_STOLEN_64M:
383 stolen_size = MB(64);
384 break;
385 case G33_GMCH_GMS_STOLEN_128M:
386 stolen_size = MB(128);
387 break;
388 case G33_GMCH_GMS_STOLEN_256M:
389 stolen_size = MB(256);
390 break;
391 case INTEL_GMCH_GMS_STOLEN_96M:
392 stolen_size = MB(96);
393 break;
394 case INTEL_GMCH_GMS_STOLEN_160M:
395 stolen_size = MB(160);
396 break;
397 case INTEL_GMCH_GMS_STOLEN_224M:
398 stolen_size = MB(224);
399 break;
400 case INTEL_GMCH_GMS_STOLEN_352M:
401 stolen_size = MB(352);
402 break;
403 default:
404 stolen_size = 0;
405 break;
406 }
407
408 return stolen_size;
409}
410
411static size_t __init gen6_stolen_size(int num, int slot, int func)
412{
413 u16 gmch_ctrl;
414
415 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
416 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
417 gmch_ctrl &= SNB_GMCH_GMS_MASK;
418
419 return gmch_ctrl << 25; /* 32 MB units */
420}
421
422static size_t __init gen8_stolen_size(int num, int slot, int func)
423{
424 u16 gmch_ctrl;
425
426 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
427 gmch_ctrl >>= BDW_GMCH_GMS_SHIFT;
428 gmch_ctrl &= BDW_GMCH_GMS_MASK;
429 return gmch_ctrl << 25; /* 32 MB units */
430}
431
432static size_t __init chv_stolen_size(int num, int slot, int func)
433{
434 u16 gmch_ctrl;
435
436 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
437 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
438 gmch_ctrl &= SNB_GMCH_GMS_MASK;
439
440 /*
441 * 0x0 to 0x10: 32MB increments starting at 0MB
442 * 0x11 to 0x16: 4MB increments starting at 8MB
443 * 0x17 to 0x1d: 4MB increments start at 36MB
444 */
445 if (gmch_ctrl < 0x11)
446 return gmch_ctrl << 25;
447 else if (gmch_ctrl < 0x17)
448 return (gmch_ctrl - 0x11 + 2) << 22;
449 else
450 return (gmch_ctrl - 0x17 + 9) << 22;
451}
452
453struct intel_stolen_funcs {
454 size_t (*size)(int num, int slot, int func);
455 u32 (*base)(int num, int slot, int func, size_t size);
456};
457
458static size_t __init gen9_stolen_size(int num, int slot, int func)
459{
460 u16 gmch_ctrl;
461
462 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
463 gmch_ctrl >>= BDW_GMCH_GMS_SHIFT;
464 gmch_ctrl &= BDW_GMCH_GMS_MASK;
465
466 if (gmch_ctrl < 0xf0)
467 return gmch_ctrl << 25; /* 32 MB units */
468 else
469 /* 4MB increments starting at 0xf0 for 4MB */
470 return (gmch_ctrl - 0xf0 + 1) << 22;
471}
472
473typedef size_t (*stolen_size_fn)(int num, int slot, int func);
474
475static const struct intel_stolen_funcs i830_stolen_funcs __initconst = {
476 .base = i830_stolen_base,
477 .size = i830_stolen_size,
478};
479
480static const struct intel_stolen_funcs i845_stolen_funcs __initconst = {
481 .base = i845_stolen_base,
482 .size = i830_stolen_size,
483};
484
485static const struct intel_stolen_funcs i85x_stolen_funcs __initconst = {
486 .base = i85x_stolen_base,
487 .size = gen3_stolen_size,
488};
489
490static const struct intel_stolen_funcs i865_stolen_funcs __initconst = {
491 .base = i865_stolen_base,
492 .size = gen3_stolen_size,
493};
494
495static const struct intel_stolen_funcs gen3_stolen_funcs __initconst = {
496 .base = intel_stolen_base,
497 .size = gen3_stolen_size,
498};
499
500static const struct intel_stolen_funcs gen6_stolen_funcs __initconst = {
501 .base = intel_stolen_base,
502 .size = gen6_stolen_size,
503};
504
505static const struct intel_stolen_funcs gen8_stolen_funcs __initconst = {
506 .base = intel_stolen_base,
507 .size = gen8_stolen_size,
508};
509
510static const struct intel_stolen_funcs gen9_stolen_funcs __initconst = {
511 .base = intel_stolen_base,
512 .size = gen9_stolen_size,
513};
514
515static const struct intel_stolen_funcs chv_stolen_funcs __initconst = {
516 .base = intel_stolen_base,
517 .size = chv_stolen_size,
518};
519
520static const struct pci_device_id intel_stolen_ids[] __initconst = {
521 INTEL_I830_IDS(&i830_stolen_funcs),
522 INTEL_I845G_IDS(&i845_stolen_funcs),
523 INTEL_I85X_IDS(&i85x_stolen_funcs),
524 INTEL_I865G_IDS(&i865_stolen_funcs),
525 INTEL_I915G_IDS(&gen3_stolen_funcs),
526 INTEL_I915GM_IDS(&gen3_stolen_funcs),
527 INTEL_I945G_IDS(&gen3_stolen_funcs),
528 INTEL_I945GM_IDS(&gen3_stolen_funcs),
529 INTEL_VLV_M_IDS(&gen6_stolen_funcs),
530 INTEL_VLV_D_IDS(&gen6_stolen_funcs),
531 INTEL_PINEVIEW_IDS(&gen3_stolen_funcs),
532 INTEL_I965G_IDS(&gen3_stolen_funcs),
533 INTEL_G33_IDS(&gen3_stolen_funcs),
534 INTEL_I965GM_IDS(&gen3_stolen_funcs),
535 INTEL_GM45_IDS(&gen3_stolen_funcs),
536 INTEL_G45_IDS(&gen3_stolen_funcs),
537 INTEL_IRONLAKE_D_IDS(&gen3_stolen_funcs),
538 INTEL_IRONLAKE_M_IDS(&gen3_stolen_funcs),
539 INTEL_SNB_D_IDS(&gen6_stolen_funcs),
540 INTEL_SNB_M_IDS(&gen6_stolen_funcs),
541 INTEL_IVB_M_IDS(&gen6_stolen_funcs),
542 INTEL_IVB_D_IDS(&gen6_stolen_funcs),
543 INTEL_HSW_D_IDS(&gen6_stolen_funcs),
544 INTEL_HSW_M_IDS(&gen6_stolen_funcs),
545 INTEL_BDW_M_IDS(&gen8_stolen_funcs),
546 INTEL_BDW_D_IDS(&gen8_stolen_funcs),
547 INTEL_CHV_IDS(&chv_stolen_funcs),
548 INTEL_SKL_IDS(&gen9_stolen_funcs),
549 INTEL_BXT_IDS(&gen9_stolen_funcs),
550 INTEL_KBL_IDS(&gen9_stolen_funcs),
551};
552
553static void __init intel_graphics_stolen(int num, int slot, int func)
554{
555 size_t size;
556 int i;
557 u32 start;
558 u16 device, subvendor, subdevice;
559
560 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
561 subvendor = read_pci_config_16(num, slot, func,
562 PCI_SUBSYSTEM_VENDOR_ID);
563 subdevice = read_pci_config_16(num, slot, func, PCI_SUBSYSTEM_ID);
564
565 for (i = 0; i < ARRAY_SIZE(intel_stolen_ids); i++) {
566 if (intel_stolen_ids[i].device == device) {
567 const struct intel_stolen_funcs *stolen_funcs =
568 (const struct intel_stolen_funcs *)intel_stolen_ids[i].driver_data;
569 size = stolen_funcs->size(num, slot, func);
570 start = stolen_funcs->base(num, slot, func, size);
571 if (size && start) {
572 printk(KERN_INFO "Reserving Intel graphics stolen memory at 0x%x-0x%x\n",
573 start, start + (u32)size - 1);
574 /* Mark this space as reserved */
575 e820_add_region(start, size, E820_RESERVED);
576 sanitize_e820_map(e820.map,
577 ARRAY_SIZE(e820.map),
578 &e820.nr_map);
579 }
580 return;
581 }
582 }
583}
584
585static void __init force_disable_hpet(int num, int slot, int func)
586{
587#ifdef CONFIG_HPET_TIMER
588 boot_hpet_disable = true;
589 pr_info("x86/hpet: Will disable the HPET for this platform because it's not reliable\n");
590#endif
591}
592
593
594#define QFLAG_APPLY_ONCE 0x1
595#define QFLAG_APPLIED 0x2
596#define QFLAG_DONE (QFLAG_APPLY_ONCE|QFLAG_APPLIED)
597struct chipset {
598 u32 vendor;
599 u32 device;
600 u32 class;
601 u32 class_mask;
602 u32 flags;
603 void (*f)(int num, int slot, int func);
604};
605
606/*
607 * Only works for devices on the root bus. If you add any devices
608 * not on bus 0 readd another loop level in early_quirks(). But
609 * be careful because at least the Nvidia quirk here relies on
610 * only matching on bus 0.
611 */
612static struct chipset early_qrk[] __initdata = {
613 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
614 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, nvidia_bugs },
615 { PCI_VENDOR_ID_VIA, PCI_ANY_ID,
616 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, via_bugs },
617 { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_K8_NB,
618 PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, fix_hypertransport_config },
619 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS,
620 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs },
621 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS,
622 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs_contd },
623 { PCI_VENDOR_ID_INTEL, 0x3403, PCI_CLASS_BRIDGE_HOST,
624 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
625 { PCI_VENDOR_ID_INTEL, 0x3405, PCI_CLASS_BRIDGE_HOST,
626 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
627 { PCI_VENDOR_ID_INTEL, 0x3406, PCI_CLASS_BRIDGE_HOST,
628 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
629 { PCI_VENDOR_ID_INTEL, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA, PCI_ANY_ID,
630 QFLAG_APPLY_ONCE, intel_graphics_stolen },
631 /*
632 * HPET on the current version of the Baytrail platform has accuracy
633 * problems: it will halt in deep idle state - so we disable it.
634 *
635 * More details can be found in section 18.10.1.3 of the datasheet:
636 *
637 * http://www.intel.com/content/dam/www/public/us/en/documents/datasheets/atom-z8000-datasheet-vol-1.pdf
638 */
639 { PCI_VENDOR_ID_INTEL, 0x0f00,
640 PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, force_disable_hpet},
641 {}
642};
643
644/**
645 * check_dev_quirk - apply early quirks to a given PCI device
646 * @num: bus number
647 * @slot: slot number
648 * @func: PCI function
649 *
650 * Check the vendor & device ID against the early quirks table.
651 *
652 * If the device is single function, let early_quirks() know so we don't
653 * poke at this device again.
654 */
655static int __init check_dev_quirk(int num, int slot, int func)
656{
657 u16 class;
658 u16 vendor;
659 u16 device;
660 u8 type;
661 int i;
662
663 class = read_pci_config_16(num, slot, func, PCI_CLASS_DEVICE);
664
665 if (class == 0xffff)
666 return -1; /* no class, treat as single function */
667
668 vendor = read_pci_config_16(num, slot, func, PCI_VENDOR_ID);
669
670 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
671
672 for (i = 0; early_qrk[i].f != NULL; i++) {
673 if (((early_qrk[i].vendor == PCI_ANY_ID) ||
674 (early_qrk[i].vendor == vendor)) &&
675 ((early_qrk[i].device == PCI_ANY_ID) ||
676 (early_qrk[i].device == device)) &&
677 (!((early_qrk[i].class ^ class) &
678 early_qrk[i].class_mask))) {
679 if ((early_qrk[i].flags &
680 QFLAG_DONE) != QFLAG_DONE)
681 early_qrk[i].f(num, slot, func);
682 early_qrk[i].flags |= QFLAG_APPLIED;
683 }
684 }
685
686 type = read_pci_config_byte(num, slot, func,
687 PCI_HEADER_TYPE);
688 if (!(type & 0x80))
689 return -1;
690
691 return 0;
692}
693
694void __init early_quirks(void)
695{
696 int slot, func;
697
698 if (!early_pci_allowed())
699 return;
700
701 /* Poor man's PCI discovery */
702 /* Only scan the root bus */
703 for (slot = 0; slot < 32; slot++)
704 for (func = 0; func < 8; func++) {
705 /* Only probe function 0 on single fn devices */
706 if (check_dev_quirk(0, slot, func))
707 break;
708 }
709}