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