Merge tag 'gpio-v3.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / arch / x86 / kernel / early-quirks.c
blobbc4a088f902396721e08a2d7314a451b7597eb1c
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 */
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/iommu.h>
21 #include <asm/gart.h>
22 #include <asm/irq_remapping.h>
24 static void __init fix_hypertransport_config(int num, int slot, int func)
26 u32 htcfg;
28 * we found a hypertransport bus
29 * make sure that we are broadcasting
30 * interrupts to all cpus on the ht bus
31 * if we're using extended apic ids
33 htcfg = read_pci_config(num, slot, func, 0x68);
34 if (htcfg & (1 << 18)) {
35 printk(KERN_INFO "Detected use of extended apic ids "
36 "on hypertransport bus\n");
37 if ((htcfg & (1 << 17)) == 0) {
38 printk(KERN_INFO "Enabling hypertransport extended "
39 "apic interrupt broadcast\n");
40 printk(KERN_INFO "Note this is a bios bug, "
41 "please contact your hw vendor\n");
42 htcfg |= (1 << 17);
43 write_pci_config(num, slot, func, 0x68, htcfg);
50 static void __init via_bugs(int num, int slot, int func)
52 #ifdef CONFIG_GART_IOMMU
53 if ((max_pfn > MAX_DMA32_PFN || force_iommu) &&
54 !gart_iommu_aperture_allowed) {
55 printk(KERN_INFO
56 "Looks like a VIA chipset. Disabling IOMMU."
57 " Override with iommu=allowed\n");
58 gart_iommu_aperture_disabled = 1;
60 #endif
63 #ifdef CONFIG_ACPI
64 #ifdef CONFIG_X86_IO_APIC
66 static int __init nvidia_hpet_check(struct acpi_table_header *header)
68 return 0;
70 #endif /* CONFIG_X86_IO_APIC */
71 #endif /* CONFIG_ACPI */
73 static void __init nvidia_bugs(int num, int slot, int func)
75 #ifdef CONFIG_ACPI
76 #ifdef CONFIG_X86_IO_APIC
78 * All timer overrides on Nvidia are
79 * wrong unless HPET is enabled.
80 * Unfortunately that's not true on many Asus boards.
81 * We don't know yet how to detect this automatically, but
82 * at least allow a command line override.
84 if (acpi_use_timer_override)
85 return;
87 if (acpi_table_parse(ACPI_SIG_HPET, nvidia_hpet_check)) {
88 acpi_skip_timer_override = 1;
89 printk(KERN_INFO "Nvidia board "
90 "detected. Ignoring ACPI "
91 "timer override.\n");
92 printk(KERN_INFO "If you got timer trouble "
93 "try acpi_use_timer_override\n");
95 #endif
96 #endif
97 /* RED-PEN skip them on mptables too? */
101 #if defined(CONFIG_ACPI) && defined(CONFIG_X86_IO_APIC)
102 static u32 __init ati_ixp4x0_rev(int num, int slot, int func)
104 u32 d;
105 u8 b;
107 b = read_pci_config_byte(num, slot, func, 0xac);
108 b &= ~(1<<5);
109 write_pci_config_byte(num, slot, func, 0xac, b);
111 d = read_pci_config(num, slot, func, 0x70);
112 d |= 1<<8;
113 write_pci_config(num, slot, func, 0x70, d);
115 d = read_pci_config(num, slot, func, 0x8);
116 d &= 0xff;
117 return d;
120 static void __init ati_bugs(int num, int slot, int func)
122 u32 d;
123 u8 b;
125 if (acpi_use_timer_override)
126 return;
128 d = ati_ixp4x0_rev(num, slot, func);
129 if (d < 0x82)
130 acpi_skip_timer_override = 1;
131 else {
132 /* check for IRQ0 interrupt swap */
133 outb(0x72, 0xcd6); b = inb(0xcd7);
134 if (!(b & 0x2))
135 acpi_skip_timer_override = 1;
138 if (acpi_skip_timer_override) {
139 printk(KERN_INFO "SB4X0 revision 0x%x\n", d);
140 printk(KERN_INFO "Ignoring ACPI timer override.\n");
141 printk(KERN_INFO "If you got timer trouble "
142 "try acpi_use_timer_override\n");
146 static u32 __init ati_sbx00_rev(int num, int slot, int func)
148 u32 d;
150 d = read_pci_config(num, slot, func, 0x8);
151 d &= 0xff;
153 return d;
156 static void __init ati_bugs_contd(int num, int slot, int func)
158 u32 d, rev;
160 rev = ati_sbx00_rev(num, slot, func);
161 if (rev >= 0x40)
162 acpi_fix_pin2_polarity = 1;
165 * SB600: revisions 0x11, 0x12, 0x13, 0x14, ...
166 * SB700: revisions 0x39, 0x3a, ...
167 * SB800: revisions 0x40, 0x41, ...
169 if (rev >= 0x39)
170 return;
172 if (acpi_use_timer_override)
173 return;
175 /* check for IRQ0 interrupt swap */
176 d = read_pci_config(num, slot, func, 0x64);
177 if (!(d & (1<<14)))
178 acpi_skip_timer_override = 1;
180 if (acpi_skip_timer_override) {
181 printk(KERN_INFO "SB600 revision 0x%x\n", rev);
182 printk(KERN_INFO "Ignoring ACPI timer override.\n");
183 printk(KERN_INFO "If you got timer trouble "
184 "try acpi_use_timer_override\n");
187 #else
188 static void __init ati_bugs(int num, int slot, int func)
192 static void __init ati_bugs_contd(int num, int slot, int func)
195 #endif
197 static void __init intel_remapping_check(int num, int slot, int func)
199 u8 revision;
200 u16 device;
202 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
203 revision = read_pci_config_byte(num, slot, func, PCI_REVISION_ID);
206 * Revision 13 of all triggering devices id in this quirk have
207 * a problem draining interrupts when irq remapping is enabled,
208 * and should be flagged as broken. Additionally revisions 0x12
209 * and 0x22 of device id 0x3405 has this problem.
211 if (revision == 0x13)
212 set_irq_remapping_broken();
213 else if ((device == 0x3405) &&
214 ((revision == 0x12) ||
215 (revision == 0x22)))
216 set_irq_remapping_broken();
221 * Systems with Intel graphics controllers set aside memory exclusively
222 * for gfx driver use. This memory is not marked in the E820 as reserved
223 * or as RAM, and so is subject to overlap from E820 manipulation later
224 * in the boot process. On some systems, MMIO space is allocated on top,
225 * despite the efforts of the "RAM buffer" approach, which simply rounds
226 * memory boundaries up to 64M to try to catch space that may decode
227 * as RAM and so is not suitable for MMIO.
229 * And yes, so far on current devices the base addr is always under 4G.
231 static u32 __init intel_stolen_base(int num, int slot, int func)
233 u32 base;
236 * For the PCI IDs in this quirk, the stolen base is always
237 * in 0x5c, aka the BDSM register (yes that's really what
238 * it's called).
240 base = read_pci_config(num, slot, func, 0x5c);
241 base &= ~((1<<20) - 1);
243 return base;
246 #define KB(x) ((x) * 1024)
247 #define MB(x) (KB (KB (x)))
248 #define GB(x) (MB (KB (x)))
250 static size_t __init gen3_stolen_size(int num, int slot, int func)
252 size_t stolen_size;
253 u16 gmch_ctrl;
255 gmch_ctrl = read_pci_config_16(0, 0, 0, I830_GMCH_CTRL);
257 switch (gmch_ctrl & I855_GMCH_GMS_MASK) {
258 case I855_GMCH_GMS_STOLEN_1M:
259 stolen_size = MB(1);
260 break;
261 case I855_GMCH_GMS_STOLEN_4M:
262 stolen_size = MB(4);
263 break;
264 case I855_GMCH_GMS_STOLEN_8M:
265 stolen_size = MB(8);
266 break;
267 case I855_GMCH_GMS_STOLEN_16M:
268 stolen_size = MB(16);
269 break;
270 case I855_GMCH_GMS_STOLEN_32M:
271 stolen_size = MB(32);
272 break;
273 case I915_GMCH_GMS_STOLEN_48M:
274 stolen_size = MB(48);
275 break;
276 case I915_GMCH_GMS_STOLEN_64M:
277 stolen_size = MB(64);
278 break;
279 case G33_GMCH_GMS_STOLEN_128M:
280 stolen_size = MB(128);
281 break;
282 case G33_GMCH_GMS_STOLEN_256M:
283 stolen_size = MB(256);
284 break;
285 case INTEL_GMCH_GMS_STOLEN_96M:
286 stolen_size = MB(96);
287 break;
288 case INTEL_GMCH_GMS_STOLEN_160M:
289 stolen_size = MB(160);
290 break;
291 case INTEL_GMCH_GMS_STOLEN_224M:
292 stolen_size = MB(224);
293 break;
294 case INTEL_GMCH_GMS_STOLEN_352M:
295 stolen_size = MB(352);
296 break;
297 default:
298 stolen_size = 0;
299 break;
302 return stolen_size;
305 static size_t __init gen6_stolen_size(int num, int slot, int func)
307 u16 gmch_ctrl;
309 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
310 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
311 gmch_ctrl &= SNB_GMCH_GMS_MASK;
313 return gmch_ctrl << 25; /* 32 MB units */
316 static inline size_t gen8_stolen_size(int num, int slot, int func)
318 u16 gmch_ctrl;
320 gmch_ctrl = read_pci_config_16(num, slot, func, SNB_GMCH_CTRL);
321 gmch_ctrl >>= BDW_GMCH_GMS_SHIFT;
322 gmch_ctrl &= BDW_GMCH_GMS_MASK;
323 return gmch_ctrl << 25; /* 32 MB units */
326 typedef size_t (*stolen_size_fn)(int num, int slot, int func);
328 static struct pci_device_id intel_stolen_ids[] __initdata = {
329 INTEL_I915G_IDS(gen3_stolen_size),
330 INTEL_I915GM_IDS(gen3_stolen_size),
331 INTEL_I945G_IDS(gen3_stolen_size),
332 INTEL_I945GM_IDS(gen3_stolen_size),
333 INTEL_VLV_M_IDS(gen6_stolen_size),
334 INTEL_VLV_D_IDS(gen6_stolen_size),
335 INTEL_PINEVIEW_IDS(gen3_stolen_size),
336 INTEL_I965G_IDS(gen3_stolen_size),
337 INTEL_G33_IDS(gen3_stolen_size),
338 INTEL_I965GM_IDS(gen3_stolen_size),
339 INTEL_GM45_IDS(gen3_stolen_size),
340 INTEL_G45_IDS(gen3_stolen_size),
341 INTEL_IRONLAKE_D_IDS(gen3_stolen_size),
342 INTEL_IRONLAKE_M_IDS(gen3_stolen_size),
343 INTEL_SNB_D_IDS(gen6_stolen_size),
344 INTEL_SNB_M_IDS(gen6_stolen_size),
345 INTEL_IVB_M_IDS(gen6_stolen_size),
346 INTEL_IVB_D_IDS(gen6_stolen_size),
347 INTEL_HSW_D_IDS(gen6_stolen_size),
348 INTEL_HSW_M_IDS(gen6_stolen_size),
349 INTEL_BDW_M_IDS(gen8_stolen_size),
350 INTEL_BDW_D_IDS(gen8_stolen_size)
353 static void __init intel_graphics_stolen(int num, int slot, int func)
355 size_t size;
356 int i;
357 u32 start;
358 u16 device, subvendor, subdevice;
360 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
361 subvendor = read_pci_config_16(num, slot, func,
362 PCI_SUBSYSTEM_VENDOR_ID);
363 subdevice = read_pci_config_16(num, slot, func, PCI_SUBSYSTEM_ID);
365 for (i = 0; i < ARRAY_SIZE(intel_stolen_ids); i++) {
366 if (intel_stolen_ids[i].device == device) {
367 stolen_size_fn stolen_size =
368 (stolen_size_fn)intel_stolen_ids[i].driver_data;
369 size = stolen_size(num, slot, func);
370 start = intel_stolen_base(num, slot, func);
371 if (size && start) {
372 /* Mark this space as reserved */
373 e820_add_region(start, size, E820_RESERVED);
374 sanitize_e820_map(e820.map,
375 ARRAY_SIZE(e820.map),
376 &e820.nr_map);
378 return;
383 #define QFLAG_APPLY_ONCE 0x1
384 #define QFLAG_APPLIED 0x2
385 #define QFLAG_DONE (QFLAG_APPLY_ONCE|QFLAG_APPLIED)
386 struct chipset {
387 u32 vendor;
388 u32 device;
389 u32 class;
390 u32 class_mask;
391 u32 flags;
392 void (*f)(int num, int slot, int func);
396 * Only works for devices on the root bus. If you add any devices
397 * not on bus 0 readd another loop level in early_quirks(). But
398 * be careful because at least the Nvidia quirk here relies on
399 * only matching on bus 0.
401 static struct chipset early_qrk[] __initdata = {
402 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
403 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, nvidia_bugs },
404 { PCI_VENDOR_ID_VIA, PCI_ANY_ID,
405 PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, via_bugs },
406 { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_K8_NB,
407 PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, fix_hypertransport_config },
408 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS,
409 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs },
410 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS,
411 PCI_CLASS_SERIAL_SMBUS, PCI_ANY_ID, 0, ati_bugs_contd },
412 { PCI_VENDOR_ID_INTEL, 0x3403, PCI_CLASS_BRIDGE_HOST,
413 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
414 { PCI_VENDOR_ID_INTEL, 0x3405, PCI_CLASS_BRIDGE_HOST,
415 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
416 { PCI_VENDOR_ID_INTEL, 0x3406, PCI_CLASS_BRIDGE_HOST,
417 PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check },
418 { PCI_VENDOR_ID_INTEL, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA, PCI_ANY_ID,
419 QFLAG_APPLY_ONCE, intel_graphics_stolen },
424 * check_dev_quirk - apply early quirks to a given PCI device
425 * @num: bus number
426 * @slot: slot number
427 * @func: PCI function
429 * Check the vendor & device ID against the early quirks table.
431 * If the device is single function, let early_quirks() know so we don't
432 * poke at this device again.
434 static int __init check_dev_quirk(int num, int slot, int func)
436 u16 class;
437 u16 vendor;
438 u16 device;
439 u8 type;
440 int i;
442 class = read_pci_config_16(num, slot, func, PCI_CLASS_DEVICE);
444 if (class == 0xffff)
445 return -1; /* no class, treat as single function */
447 vendor = read_pci_config_16(num, slot, func, PCI_VENDOR_ID);
449 device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID);
451 for (i = 0; early_qrk[i].f != NULL; i++) {
452 if (((early_qrk[i].vendor == PCI_ANY_ID) ||
453 (early_qrk[i].vendor == vendor)) &&
454 ((early_qrk[i].device == PCI_ANY_ID) ||
455 (early_qrk[i].device == device)) &&
456 (!((early_qrk[i].class ^ class) &
457 early_qrk[i].class_mask))) {
458 if ((early_qrk[i].flags &
459 QFLAG_DONE) != QFLAG_DONE)
460 early_qrk[i].f(num, slot, func);
461 early_qrk[i].flags |= QFLAG_APPLIED;
465 type = read_pci_config_byte(num, slot, func,
466 PCI_HEADER_TYPE);
467 if (!(type & 0x80))
468 return -1;
470 return 0;
473 void __init early_quirks(void)
475 int slot, func;
477 if (!early_pci_allowed())
478 return;
480 /* Poor man's PCI discovery */
481 /* Only scan the root bus */
482 for (slot = 0; slot < 32; slot++)
483 for (func = 0; func < 8; func++) {
484 /* Only probe function 0 on single fn devices */
485 if (check_dev_quirk(0, slot, func))
486 break;