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
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
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 <asm/pci-direct.h>
16 #include <asm/proto.h>
19 static void via_bugs(void)
22 if ((end_pfn > MAX_DMA32_PFN || force_iommu) &&
23 !iommu_aperture_allowed) {
25 "Looks like a VIA chipset. Disabling IOMMU. Override with iommu=allowed\n");
26 iommu_aperture_disabled = 1;
33 static int nvidia_hpet_detected __initdata;
35 static int __init nvidia_hpet_check(unsigned long phys, unsigned long size)
37 nvidia_hpet_detected = 1;
42 static void nvidia_bugs(void)
46 * All timer overrides on Nvidia are
47 * wrong unless HPET is enabled.
49 nvidia_hpet_detected = 0;
50 acpi_table_parse(ACPI_HPET, nvidia_hpet_check);
51 if (nvidia_hpet_detected == 0) {
52 acpi_skip_timer_override = 1;
53 printk(KERN_INFO "Nvidia board "
54 "detected. Ignoring ACPI "
58 /* RED-PEN skip them on mptables too? */
62 static void ati_bugs(void)
64 #if 1 /* for testing */
65 printk("ATI board detected\n");
67 /* No bugs right now */
75 static struct chipset early_qrk[] = {
76 { PCI_VENDOR_ID_NVIDIA, nvidia_bugs },
77 { PCI_VENDOR_ID_VIA, via_bugs },
78 { PCI_VENDOR_ID_ATI, ati_bugs },
82 void __init early_quirks(void)
85 /* Poor man's PCI discovery */
86 for (num = 0; num < 32; num++) {
87 for (slot = 0; slot < 32; slot++) {
88 for (func = 0; func < 8; func++) {
93 class = read_pci_config(num,slot,func,
95 if (class == 0xffffffff)
98 if ((class >> 16) != PCI_CLASS_BRIDGE_PCI)
101 vendor = read_pci_config(num, slot, func,
105 for (i = 0; early_qrk[i].f; i++)
106 if (early_qrk[i].vendor == vendor) {
111 type = read_pci_config_byte(num, slot, func,