Merge remote-tracking branch 'spi/for-next'
[deliverable/linux.git] / arch / x86 / kernel / early-quirks.c
CommitLineData
dfa4698c
AK
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>
abb2bafd
LW
14#include <linux/delay.h>
15#include <linux/dmi.h>
dfa4698c 16#include <linux/pci_ids.h>
abb2bafd
LW
17#include <linux/bcma/bcma.h>
18#include <linux/bcma/bcma_regs.h>
814c5f1f 19#include <drm/i915_drm.h>
dfa4698c 20#include <asm/pci-direct.h>
dfa4698c 21#include <asm/dma.h>
54ef3400
AK
22#include <asm/io_apic.h>
23#include <asm/apic.h>
62187910 24#include <asm/hpet.h>
46a7fa27 25#include <asm/iommu.h>
1d9b16d1 26#include <asm/gart.h>
03bbcb2e 27#include <asm/irq_remapping.h>
abb2bafd
LW
28#include <asm/early_ioremap.h>
29
30#define dev_err(msg) pr_err("pci 0000:%02x:%02x.%d: %s", bus, slot, func, msg)
dfa4698c 31
c6b48324
NH
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)) {
7bcbc78d
NH
43 printk(KERN_INFO "Detected use of extended apic ids "
44 "on hypertransport bus\n");
c6b48324 45 if ((htcfg & (1 << 17)) == 0) {
7bcbc78d
NH
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");
c6b48324
NH
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)
dfa4698c 59{
966396d3 60#ifdef CONFIG_GART_IOMMU
c987d12f 61 if ((max_pfn > MAX_DMA32_PFN || force_iommu) &&
0440d4c0 62 !gart_iommu_aperture_allowed) {
dfa4698c 63 printk(KERN_INFO
54ef3400
AK
64 "Looks like a VIA chipset. Disabling IOMMU."
65 " Override with iommu=allowed\n");
0440d4c0 66 gart_iommu_aperture_disabled = 1;
dfa4698c
AK
67 }
68#endif
69}
70
71#ifdef CONFIG_ACPI
03d0d20e 72#ifdef CONFIG_X86_IO_APIC
dfa4698c 73
15a58ed1 74static int __init nvidia_hpet_check(struct acpi_table_header *header)
dfa4698c 75{
dfa4698c
AK
76 return 0;
77}
03d0d20e
JG
78#endif /* CONFIG_X86_IO_APIC */
79#endif /* CONFIG_ACPI */
dfa4698c 80
c6b48324 81static void __init nvidia_bugs(int num, int slot, int func)
dfa4698c
AK
82{
83#ifdef CONFIG_ACPI
54ef3400 84#ifdef CONFIG_X86_IO_APIC
447d29d1
LW
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
dfa4698c
AK
92 /*
93 * All timer overrides on Nvidia are
94 * wrong unless HPET is enabled.
fa18f477
AK
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.
dfa4698c 98 */
fa18f477
AK
99 if (acpi_use_timer_override)
100 return;
101
fe699336 102 if (acpi_table_parse(ACPI_SIG_HPET, nvidia_hpet_check)) {
dfa4698c
AK
103 acpi_skip_timer_override = 1;
104 printk(KERN_INFO "Nvidia board "
105 "detected. Ignoring ACPI "
106 "timer override.\n");
fa18f477
AK
107 printk(KERN_INFO "If you got timer trouble "
108 "try acpi_use_timer_override\n");
dfa4698c 109 }
54ef3400 110#endif
dfa4698c
AK
111#endif
112 /* RED-PEN skip them on mptables too? */
113
114}
115
26adcfbf
AH
116#if defined(CONFIG_ACPI) && defined(CONFIG_X86_IO_APIC)
117static u32 __init ati_ixp4x0_rev(int num, int slot, int func)
33fb0e4e
AH
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{
33fb0e4e
AH
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 }
33fb0e4e
AH
159}
160
26adcfbf
AH
161static u32 __init ati_sbx00_rev(int num, int slot, int func)
162{
7f74f8f2 163 u32 d;
26adcfbf 164
26adcfbf
AH
165 d = read_pci_config(num, slot, func, 0x8);
166 d &= 0xff;
26adcfbf
AH
167
168 return d;
169}
170
171static void __init ati_bugs_contd(int num, int slot, int func)
172{
173 u32 d, rev;
174
26adcfbf 175 rev = ati_sbx00_rev(num, slot, func);
7f74f8f2
AH
176 if (rev >= 0x40)
177 acpi_fix_pin2_polarity = 1;
178
1d3e09a3
AH
179 /*
180 * SB600: revisions 0x11, 0x12, 0x13, 0x14, ...
181 * SB700: revisions 0x39, 0x3a, ...
182 * SB800: revisions 0x40, 0x41, ...
183 */
184 if (rev >= 0x39)
26adcfbf
AH
185 return;
186
7f74f8f2
AH
187 if (acpi_use_timer_override)
188 return;
189
26adcfbf
AH
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
03bbcb2e
NH
212static void __init intel_remapping_check(int num, int slot, int func)
213{
214 u8 revision;
803075db 215 u16 device;
03bbcb2e 216
803075db 217 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
03bbcb2e
NH
218 revision = read_pci_config_byte(num, slot, func, PCI_REVISION_ID);
219
220 /*
6f8a1b33
NH
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.
03bbcb2e 225 */
6f8a1b33 226 if (revision <= 0x13)
03bbcb2e 227 set_irq_remapping_broken();
6f8a1b33 228 else if (device == 0x3405 && revision == 0x22)
803075db 229 set_irq_remapping_broken();
03bbcb2e
NH
230}
231
814c5f1f
JB
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.
814c5f1f 240 */
814c5f1f 241
86e58762 242#define KB(x) ((x) * 1024UL)
814c5f1f 243#define MB(x) (KB (KB (x)))
814c5f1f 244
a4dff769
VS
245static size_t __init i830_tseg_size(void)
246{
c0dd3460 247 u8 esmramc = read_pci_config_byte(0, 0, 0, I830_ESMRAMC);
a4dff769 248
c0dd3460 249 if (!(esmramc & TSEG_ENABLE))
a4dff769
VS
250 return 0;
251
c0dd3460 252 if (esmramc & I830_TSEG_SIZE_1M)
a4dff769
VS
253 return MB(1);
254 else
255 return KB(512);
256}
257
258static size_t __init i845_tseg_size(void)
259{
c0dd3460
JL
260 u8 esmramc = read_pci_config_byte(0, 0, 0, I845_ESMRAMC);
261 u8 tseg_size = esmramc & I845_TSEG_SIZE_MASK;
a4dff769 262
c0dd3460 263 if (!(esmramc & TSEG_ENABLE))
a4dff769
VS
264 return 0;
265
c0dd3460
JL
266 switch (tseg_size) {
267 case I845_TSEG_SIZE_512K: return KB(512);
268 case I845_TSEG_SIZE_1M: return MB(1);
a4dff769 269 default:
c0dd3460 270 WARN(1, "Unknown ESMRAMC value: %x!\n", esmramc);
a4dff769 271 }
c0dd3460 272 return 0;
a4dff769
VS
273}
274
275static size_t __init i85x_tseg_size(void)
276{
c0dd3460 277 u8 esmramc = read_pci_config_byte(0, 0, 0, I85X_ESMRAMC);
a4dff769 278
c0dd3460 279 if (!(esmramc & TSEG_ENABLE))
a4dff769
VS
280 return 0;
281
282 return MB(1);
283}
284
285static size_t __init i830_mem_size(void)
286{
287 return read_pci_config_byte(0, 0, 0, I830_DRB3) * MB(32);
288}
289
290static 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 */
c0dd3460
JL
299static phys_addr_t __init i830_stolen_base(int num, int slot, int func,
300 size_t stolen_size)
a4dff769 301{
c0dd3460 302 return (phys_addr_t)i830_mem_size() - i830_tseg_size() - stolen_size;
a4dff769
VS
303}
304
c0dd3460
JL
305static phys_addr_t __init i845_stolen_base(int num, int slot, int func,
306 size_t stolen_size)
a4dff769 307{
c0dd3460 308 return (phys_addr_t)i830_mem_size() - i845_tseg_size() - stolen_size;
a4dff769
VS
309}
310
c0dd3460
JL
311static phys_addr_t __init i85x_stolen_base(int num, int slot, int func,
312 size_t stolen_size)
a4dff769 313{
c0dd3460 314 return (phys_addr_t)i85x_mem_size() - i85x_tseg_size() - stolen_size;
a4dff769
VS
315}
316
c0dd3460
JL
317static phys_addr_t __init i865_stolen_base(int num, int slot, int func,
318 size_t stolen_size)
a4dff769 319{
d721b02f 320 u16 toud = 0;
c0dd3460 321
c0dd3460
JL
322 toud = read_pci_config_16(0, 0, 0, I865_TOUD);
323
d721b02f 324 return (phys_addr_t)(toud << 16) + i845_tseg_size();
c0dd3460
JL
325}
326
327static phys_addr_t __init gen3_stolen_base(int num, int slot, int func,
328 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 (phys_addr_t)bsm & INTEL_BSM_MASK;
a4dff769
VS
340}
341
342static size_t __init i830_stolen_size(int num, int slot, int func)
343{
a4dff769 344 u16 gmch_ctrl;
c0dd3460 345 u16 gms;
a4dff769
VS
346
347 gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL);
c0dd3460
JL
348 gms = gmch_ctrl & I830_GMCH_GMS_MASK;
349
350 switch (gms) {
351 case I830_GMCH_GMS_STOLEN_512: return KB(512);
352 case I830_GMCH_GMS_STOLEN_1024: return MB(1);
353 case I830_GMCH_GMS_STOLEN_8192: return MB(8);
354 /* local memory isn't part of the normal address space */
355 case I830_GMCH_GMS_LOCAL: return 0;
a4dff769 356 default:
c0dd3460 357 WARN(1, "Unknown GMCH_CTRL value: %x!\n", gmch_ctrl);
a4dff769
VS
358 }
359
c0dd3460 360 return 0;
a4dff769
VS
361}
362
814c5f1f
JB
363static size_t __init gen3_stolen_size(int num, int slot, int func)
364{
814c5f1f 365 u16 gmch_ctrl;
c0dd3460 366 u16 gms;
814c5f1f
JB
367
368 gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL);
c0dd3460
JL
369 gms = gmch_ctrl & I855_GMCH_GMS_MASK;
370
371 switch (gms) {
372 case I855_GMCH_GMS_STOLEN_1M: return MB(1);
373 case I855_GMCH_GMS_STOLEN_4M: return MB(4);
374 case I855_GMCH_GMS_STOLEN_8M: return MB(8);
375 case I855_GMCH_GMS_STOLEN_16M: return MB(16);
376 case I855_GMCH_GMS_STOLEN_32M: return MB(32);
377 case I915_GMCH_GMS_STOLEN_48M: return MB(48);
378 case I915_GMCH_GMS_STOLEN_64M: return MB(64);
379 case G33_GMCH_GMS_STOLEN_128M: return MB(128);
380 case G33_GMCH_GMS_STOLEN_256M: return MB(256);
381 case INTEL_GMCH_GMS_STOLEN_96M: return MB(96);
382 case INTEL_GMCH_GMS_STOLEN_160M:return MB(160);
383 case INTEL_GMCH_GMS_STOLEN_224M:return MB(224);
384 case INTEL_GMCH_GMS_STOLEN_352M:return MB(352);
814c5f1f 385 default:
c0dd3460 386 WARN(1, "Unknown GMCH_CTRL value: %x!\n", gmch_ctrl);
814c5f1f
JB
387 }
388
c0dd3460 389 return 0;
814c5f1f
JB
390}
391
392static size_t __init gen6_stolen_size(int num, int slot, int func)
393{
394 u16 gmch_ctrl;
c0dd3460 395 u16 gms;
814c5f1f
JB
396
397 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
c0dd3460 398 gms = (gmch_ctrl >> SNB_GMCH_GMS_SHIFT) & SNB_GMCH_GMS_MASK;
814c5f1f 399
c0dd3460 400 return (size_t)gms * MB(32);
814c5f1f
JB
401}
402
36dfcea4 403static size_t __init gen8_stolen_size(int num, int slot, int func)
9459d252
BW
404{
405 u16 gmch_ctrl;
c0dd3460 406 u16 gms;
9459d252
BW
407
408 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
c0dd3460
JL
409 gms = (gmch_ctrl >> BDW_GMCH_GMS_SHIFT) & BDW_GMCH_GMS_MASK;
410
411 return (size_t)gms * MB(32);
9459d252
BW
412}
413
3e3b2c39
DL
414static size_t __init chv_stolen_size(int num, int slot, int func)
415{
416 u16 gmch_ctrl;
c0dd3460 417 u16 gms;
3e3b2c39
DL
418
419 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
c0dd3460 420 gms = (gmch_ctrl >> SNB_GMCH_GMS_SHIFT) & SNB_GMCH_GMS_MASK;
3e3b2c39
DL
421
422 /*
423 * 0x0 to 0x10: 32MB increments starting at 0MB
424 * 0x11 to 0x16: 4MB increments starting at 8MB
425 * 0x17 to 0x1d: 4MB increments start at 36MB
426 */
c0dd3460
JL
427 if (gms < 0x11)
428 return (size_t)gms * MB(32);
429 else if (gms < 0x17)
430 return (size_t)(gms - 0x11 + 2) * MB(4);
3e3b2c39 431 else
c0dd3460 432 return (size_t)(gms - 0x17 + 9) * MB(4);
3e3b2c39 433}
52ca7045 434
66375014
DL
435static size_t __init gen9_stolen_size(int num, int slot, int func)
436{
437 u16 gmch_ctrl;
c0dd3460 438 u16 gms;
66375014
DL
439
440 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
c0dd3460 441 gms = (gmch_ctrl >> BDW_GMCH_GMS_SHIFT) & BDW_GMCH_GMS_MASK;
66375014 442
c0dd3460
JL
443 /* 0x0 to 0xef: 32MB increments starting at 0MB */
444 /* 0xf0 to 0xfe: 4MB increments starting at 4MB */
445 if (gms < 0xf0)
446 return (size_t)gms * MB(32);
66375014 447 else
c0dd3460 448 return (size_t)(gms - 0xf0 + 1) * MB(4);
66375014
DL
449}
450
ee0629cf
JL
451struct intel_early_ops {
452 size_t (*stolen_size)(int num, int slot, int func);
453 phys_addr_t (*stolen_base)(int num, int slot, int func, size_t size);
454};
66375014 455
ee0629cf
JL
456static const struct intel_early_ops i830_early_ops __initconst = {
457 .stolen_base = i830_stolen_base,
458 .stolen_size = i830_stolen_size,
a4dff769
VS
459};
460
ee0629cf
JL
461static const struct intel_early_ops i845_early_ops __initconst = {
462 .stolen_base = i845_stolen_base,
463 .stolen_size = i830_stolen_size,
a4dff769
VS
464};
465
ee0629cf
JL
466static const struct intel_early_ops i85x_early_ops __initconst = {
467 .stolen_base = i85x_stolen_base,
468 .stolen_size = gen3_stolen_size,
a4dff769
VS
469};
470
ee0629cf
JL
471static const struct intel_early_ops i865_early_ops __initconst = {
472 .stolen_base = i865_stolen_base,
473 .stolen_size = gen3_stolen_size,
a4dff769
VS
474};
475
ee0629cf
JL
476static const struct intel_early_ops gen3_early_ops __initconst = {
477 .stolen_base = gen3_stolen_base,
478 .stolen_size = gen3_stolen_size,
52ca7045
VS
479};
480
ee0629cf
JL
481static const struct intel_early_ops gen6_early_ops __initconst = {
482 .stolen_base = gen3_stolen_base,
483 .stolen_size = gen6_stolen_size,
52ca7045
VS
484};
485
ee0629cf
JL
486static const struct intel_early_ops gen8_early_ops __initconst = {
487 .stolen_base = gen3_stolen_base,
488 .stolen_size = gen8_stolen_size,
52ca7045 489};
814c5f1f 490
ee0629cf
JL
491static const struct intel_early_ops gen9_early_ops __initconst = {
492 .stolen_base = gen3_stolen_base,
493 .stolen_size = gen9_stolen_size,
66375014
DL
494};
495
ee0629cf
JL
496static const struct intel_early_ops chv_early_ops __initconst = {
497 .stolen_base = gen3_stolen_base,
498 .stolen_size = chv_stolen_size,
3e3b2c39
DL
499};
500
ee0629cf
JL
501static const struct pci_device_id intel_early_ids[] __initconst = {
502 INTEL_I830_IDS(&i830_early_ops),
503 INTEL_I845G_IDS(&i845_early_ops),
504 INTEL_I85X_IDS(&i85x_early_ops),
505 INTEL_I865G_IDS(&i865_early_ops),
506 INTEL_I915G_IDS(&gen3_early_ops),
507 INTEL_I915GM_IDS(&gen3_early_ops),
508 INTEL_I945G_IDS(&gen3_early_ops),
509 INTEL_I945GM_IDS(&gen3_early_ops),
8d9c20e1 510 INTEL_VLV_IDS(&gen6_early_ops),
ee0629cf
JL
511 INTEL_PINEVIEW_IDS(&gen3_early_ops),
512 INTEL_I965G_IDS(&gen3_early_ops),
513 INTEL_G33_IDS(&gen3_early_ops),
514 INTEL_I965GM_IDS(&gen3_early_ops),
515 INTEL_GM45_IDS(&gen3_early_ops),
516 INTEL_G45_IDS(&gen3_early_ops),
517 INTEL_IRONLAKE_D_IDS(&gen3_early_ops),
518 INTEL_IRONLAKE_M_IDS(&gen3_early_ops),
519 INTEL_SNB_D_IDS(&gen6_early_ops),
520 INTEL_SNB_M_IDS(&gen6_early_ops),
521 INTEL_IVB_M_IDS(&gen6_early_ops),
522 INTEL_IVB_D_IDS(&gen6_early_ops),
8d9c20e1
CS
523 INTEL_HSW_IDS(&gen6_early_ops),
524 INTEL_BDW_IDS(&gen8_early_ops),
ee0629cf
JL
525 INTEL_CHV_IDS(&chv_early_ops),
526 INTEL_SKL_IDS(&gen9_early_ops),
527 INTEL_BXT_IDS(&gen9_early_ops),
528 INTEL_KBL_IDS(&gen9_early_ops),
814c5f1f
JB
529};
530
ee0629cf
JL
531static void __init
532intel_graphics_stolen(int num, int slot, int func,
533 const struct intel_early_ops *early_ops)
814c5f1f 534{
01e5d3b4 535 phys_addr_t base, end;
814c5f1f 536 size_t size;
ee0629cf
JL
537
538 size = early_ops->stolen_size(num, slot, func);
539 base = early_ops->stolen_base(num, slot, func, size);
540
541 if (!size || !base)
542 return;
543
01e5d3b4
CW
544 end = base + size - 1;
545 printk(KERN_INFO "Reserving Intel graphics memory at %pa-%pa\n",
546 &base, &end);
ee0629cf
JL
547
548 /* Mark this space as reserved */
549 e820_add_region(base, size, E820_RESERVED);
550 sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
551}
552
553static void __init intel_graphics_quirks(int num, int slot, int func)
554{
555 const struct intel_early_ops *early_ops;
556 u16 device;
814c5f1f 557 int i;
814c5f1f
JB
558
559 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
ee0629cf
JL
560
561 for (i = 0; i < ARRAY_SIZE(intel_early_ids); i++) {
562 kernel_ulong_t driver_data = intel_early_ids[i].driver_data;
563
564 if (intel_early_ids[i].device != device)
565 continue;
566
567 early_ops = (typeof(early_ops))driver_data;
568
569 intel_graphics_stolen(num, slot, func, early_ops);
570
571 return;
814c5f1f
JB
572 }
573}
574
62187910
FT
575static void __init force_disable_hpet(int num, int slot, int func)
576{
577#ifdef CONFIG_HPET_TIMER
3d45ac4b 578 boot_hpet_disable = true;
62187910
FT
579 pr_info("x86/hpet: Will disable the HPET for this platform because it's not reliable\n");
580#endif
581}
582
abb2bafd
LW
583#define BCM4331_MMIO_SIZE 16384
584#define BCM4331_PM_CAP 0x40
585#define bcma_aread32(reg) ioread32(mmio + 1 * BCMA_CORE_SIZE + reg)
586#define bcma_awrite32(reg, val) iowrite32(val, mmio + 1 * BCMA_CORE_SIZE + reg)
587
588static void __init apple_airport_reset(int bus, int slot, int func)
589{
590 void __iomem *mmio;
591 u16 pmcsr;
592 u64 addr;
593 int i;
594
595 if (!dmi_match(DMI_SYS_VENDOR, "Apple Inc."))
596 return;
597
598 /* Card may have been put into PCI_D3hot by grub quirk */
599 pmcsr = read_pci_config_16(bus, slot, func, BCM4331_PM_CAP + PCI_PM_CTRL);
600
601 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) != PCI_D0) {
602 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
603 write_pci_config_16(bus, slot, func, BCM4331_PM_CAP + PCI_PM_CTRL, pmcsr);
604 mdelay(10);
605
606 pmcsr = read_pci_config_16(bus, slot, func, BCM4331_PM_CAP + PCI_PM_CTRL);
607 if ((pmcsr & PCI_PM_CTRL_STATE_MASK) != PCI_D0) {
608 dev_err("Cannot power up Apple AirPort card\n");
609 return;
610 }
611 }
612
613 addr = read_pci_config(bus, slot, func, PCI_BASE_ADDRESS_0);
614 addr |= (u64)read_pci_config(bus, slot, func, PCI_BASE_ADDRESS_1) << 32;
615 addr &= PCI_BASE_ADDRESS_MEM_MASK;
616
617 mmio = early_ioremap(addr, BCM4331_MMIO_SIZE);
618 if (!mmio) {
619 dev_err("Cannot iomap Apple AirPort card\n");
620 return;
621 }
622
623 pr_info("Resetting Apple AirPort card (left enabled by EFI)\n");
624
625 for (i = 0; bcma_aread32(BCMA_RESET_ST) && i < 30; i++)
626 udelay(10);
627
628 bcma_awrite32(BCMA_RESET_CTL, BCMA_RESET_CTL_RESET);
629 bcma_aread32(BCMA_RESET_CTL);
630 udelay(1);
631
632 bcma_awrite32(BCMA_RESET_CTL, 0);
633 bcma_aread32(BCMA_RESET_CTL);
634 udelay(10);
635
636 early_iounmap(mmio, BCM4331_MMIO_SIZE);
637}
62187910 638
c6b48324
NH
639#define QFLAG_APPLY_ONCE 0x1
640#define QFLAG_APPLIED 0x2
641#define QFLAG_DONE (QFLAG_APPLY_ONCE|QFLAG_APPLIED)
dfa4698c 642struct chipset {
c6b48324
NH
643 u32 vendor;
644 u32 device;
645 u32 class;
646 u32 class_mask;
647 u32 flags;
648 void (*f)(int num, int slot, int func);
dfa4698c
AK
649};
650
c993c735 651static struct chipset early_qrk[] __initdata = {
c6b48324
NH
652 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
653 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, nvidia_bugs },
654 { PCI_VENDOR_ID_VIA, PCI_ANY_ID,
655 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, via_bugs },
c6b48324
NH
656 { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_K8_NB,
657 PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, fix_hypertransport_config },
33fb0e4e
AH
658 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS,
659 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs },
26adcfbf
AH
660 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS,
661 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs_contd },
03bbcb2e
NH
662 { PCI_VENDOR_ID_INTEL, 0x3403, PCI_CLASS_BRIDGE_HOST,
663 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
803075db
NH
664 { PCI_VENDOR_ID_INTEL, 0x3405, PCI_CLASS_BRIDGE_HOST,
665 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
03bbcb2e
NH
666 { PCI_VENDOR_ID_INTEL, 0x3406, PCI_CLASS_BRIDGE_HOST,
667 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
814c5f1f 668 { PCI_VENDOR_ID_INTEL, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA, PCI_ANY_ID,
ee0629cf 669 QFLAG_APPLY_ONCE, intel_graphics_quirks },
62187910 670 /*
b58d9307
FT
671 * HPET on the current version of the Baytrail platform has accuracy
672 * problems: it will halt in deep idle state - so we disable it.
673 *
674 * More details can be found in section 18.10.1.3 of the datasheet:
675 *
676 * http://www.intel.com/content/dam/www/public/us/en/documents/datasheets/atom-z8000-datasheet-vol-1.pdf
62187910
FT
677 */
678 { PCI_VENDOR_ID_INTEL, 0x0f00,
679 PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, force_disable_hpet},
abb2bafd
LW
680 { PCI_VENDOR_ID_BROADCOM, 0x4331,
681 PCI_CLASS_NETWORK_OTHER, PCI_ANY_ID, 0, apple_airport_reset},
dfa4698c
AK
682 {}
683};
684
850c3210
LW
685static void __init early_pci_scan_bus(int bus);
686
15650a2f
JB
687/**
688 * check_dev_quirk - apply early quirks to a given PCI device
689 * @num: bus number
690 * @slot: slot number
691 * @func: PCI function
692 *
693 * Check the vendor & device ID against the early quirks table.
694 *
850c3210 695 * If the device is single function, let early_pci_scan_bus() know so we don't
15650a2f
JB
696 * poke at this device again.
697 */
698static int __init check_dev_quirk(int num, int slot, int func)
7bcbc78d
NH
699{
700 u16 class;
701 u16 vendor;
702 u16 device;
703 u8 type;
850c3210 704 u8 sec;
7bcbc78d
NH
705 int i;
706
707 class = read_pci_config_16(num, slot, func, PCI_CLASS_DEVICE);
708
709 if (class == 0xffff)
15650a2f 710 return -1; /* no class, treat as single function */
7bcbc78d
NH
711
712 vendor = read_pci_config_16(num, slot, func, PCI_VENDOR_ID);
713
714 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
715
716 for (i = 0; early_qrk[i].f != NULL; i++) {
717 if (((early_qrk[i].vendor == PCI_ANY_ID) ||
718 (early_qrk[i].vendor == vendor)) &&
719 ((early_qrk[i].device == PCI_ANY_ID) ||
720 (early_qrk[i].device == device)) &&
721 (!((early_qrk[i].class ^ class) &
722 early_qrk[i].class_mask))) {
723 if ((early_qrk[i].flags &
724 QFLAG_DONE) != QFLAG_DONE)
725 early_qrk[i].f(num, slot, func);
726 early_qrk[i].flags |= QFLAG_APPLIED;
727 }
728 }
729
730 type = read_pci_config_byte(num, slot, func,
731 PCI_HEADER_TYPE);
850c3210
LW
732
733 if ((type & 0x7f) == PCI_HEADER_TYPE_BRIDGE) {
734 sec = read_pci_config_byte(num, slot, func, PCI_SECONDARY_BUS);
735 if (sec > num)
736 early_pci_scan_bus(sec);
737 }
738
7bcbc78d 739 if (!(type & 0x80))
15650a2f
JB
740 return -1;
741
742 return 0;
7bcbc78d
NH
743}
744
850c3210 745static void __init early_pci_scan_bus(int bus)
dfa4698c 746{
8659c406 747 int slot, func;
0637a70a 748
dfa4698c 749 /* Poor man's PCI discovery */
8659c406
AK
750 for (slot = 0; slot < 32; slot++)
751 for (func = 0; func < 8; func++) {
752 /* Only probe function 0 on single fn devices */
850c3210 753 if (check_dev_quirk(bus, slot, func))
8659c406
AK
754 break;
755 }
dfa4698c 756}
850c3210
LW
757
758void __init early_quirks(void)
759{
760 if (!early_pci_allowed())
761 return;
762
763 early_pci_scan_bus(0);
764}
This page took 1.542762 seconds and 5 git commands to generate.