Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 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 <asm/pci-direct.h> |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 16 | #include <asm/dma.h> |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 17 | #include <asm/io_apic.h> |
| 18 | #include <asm/apic.h> |
| 19 | |
Joerg Roedel | 966396d | 2007-10-24 12:49:48 +0200 | [diff] [blame] | 20 | #ifdef CONFIG_GART_IOMMU |
Joerg Roedel | 395624f | 2007-10-24 12:49:47 +0200 | [diff] [blame] | 21 | #include <asm/gart.h> |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 22 | #endif |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 23 | |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 24 | static void __init fix_hypertransport_config(int num, int slot, int func) |
| 25 | { |
| 26 | u32 htcfg; |
| 27 | /* |
| 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 |
| 32 | */ |
| 33 | htcfg = read_pci_config(num, slot, func, 0x68); |
| 34 | if (htcfg & (1 << 18)) { |
| 35 | printk(KERN_INFO "Detected use of extended apic ids on hypertransport bus\n"); |
| 36 | if ((htcfg & (1 << 17)) == 0) { |
| 37 | printk(KERN_INFO "Enabling hypertransport extended apic interrupt broadcast\n"); |
| 38 | printk(KERN_INFO "Note this is a bios bug, please contact your hw vendor\n"); |
| 39 | htcfg |= (1 << 17); |
| 40 | write_pci_config(num, slot, func, 0x68, htcfg); |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | |
| 45 | } |
| 46 | |
| 47 | static void __init via_bugs(int num, int slot, int func) |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 48 | { |
Joerg Roedel | 966396d | 2007-10-24 12:49:48 +0200 | [diff] [blame] | 49 | #ifdef CONFIG_GART_IOMMU |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 50 | if ((end_pfn > MAX_DMA32_PFN || force_iommu) && |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 51 | !gart_iommu_aperture_allowed) { |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 52 | printk(KERN_INFO |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 53 | "Looks like a VIA chipset. Disabling IOMMU." |
| 54 | " Override with iommu=allowed\n"); |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 55 | gart_iommu_aperture_disabled = 1; |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 56 | } |
| 57 | #endif |
| 58 | } |
| 59 | |
| 60 | #ifdef CONFIG_ACPI |
Jeff Garzik | 03d0d20 | 2007-10-27 20:57:43 +0200 | [diff] [blame] | 61 | #ifdef CONFIG_X86_IO_APIC |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 62 | |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 63 | static int __init nvidia_hpet_check(struct acpi_table_header *header) |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 64 | { |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 65 | return 0; |
| 66 | } |
Jeff Garzik | 03d0d20 | 2007-10-27 20:57:43 +0200 | [diff] [blame] | 67 | #endif /* CONFIG_X86_IO_APIC */ |
| 68 | #endif /* CONFIG_ACPI */ |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 69 | |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 70 | static void __init nvidia_bugs(int num, int slot, int func) |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 71 | { |
| 72 | #ifdef CONFIG_ACPI |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 73 | #ifdef CONFIG_X86_IO_APIC |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 74 | /* |
| 75 | * All timer overrides on Nvidia are |
| 76 | * wrong unless HPET is enabled. |
Andi Kleen | fa18f47 | 2006-11-14 16:57:46 +0100 | [diff] [blame] | 77 | * Unfortunately that's not true on many Asus boards. |
| 78 | * We don't know yet how to detect this automatically, but |
| 79 | * at least allow a command line override. |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 80 | */ |
Andi Kleen | fa18f47 | 2006-11-14 16:57:46 +0100 | [diff] [blame] | 81 | if (acpi_use_timer_override) |
| 82 | return; |
| 83 | |
Len Brown | fe69933 | 2007-03-08 18:28:32 -0500 | [diff] [blame] | 84 | if (acpi_table_parse(ACPI_SIG_HPET, nvidia_hpet_check)) { |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 85 | acpi_skip_timer_override = 1; |
| 86 | printk(KERN_INFO "Nvidia board " |
| 87 | "detected. Ignoring ACPI " |
| 88 | "timer override.\n"); |
Andi Kleen | fa18f47 | 2006-11-14 16:57:46 +0100 | [diff] [blame] | 89 | printk(KERN_INFO "If you got timer trouble " |
| 90 | "try acpi_use_timer_override\n"); |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 91 | } |
| 92 | #endif |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 93 | #endif |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 94 | /* RED-PEN skip them on mptables too? */ |
| 95 | |
| 96 | } |
| 97 | |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 98 | static void __init ati_bugs(int num, int slot, int func) |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 99 | { |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 100 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | fea5f1e | 2007-01-08 15:04:46 -0800 | [diff] [blame] | 101 | if (timer_over_8254 == 1) { |
| 102 | timer_over_8254 = 0; |
| 103 | printk(KERN_INFO |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 104 | "ATI board detected. Disabling timer routing over 8254.\n"); |
Linus Torvalds | fea5f1e | 2007-01-08 15:04:46 -0800 | [diff] [blame] | 105 | } |
Andi Kleen | 54ef340 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 106 | #endif |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 107 | } |
| 108 | |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 109 | #define QFLAG_APPLY_ONCE 0x1 |
| 110 | #define QFLAG_APPLIED 0x2 |
| 111 | #define QFLAG_DONE (QFLAG_APPLY_ONCE|QFLAG_APPLIED) |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 112 | struct chipset { |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 113 | u32 vendor; |
| 114 | u32 device; |
| 115 | u32 class; |
| 116 | u32 class_mask; |
| 117 | u32 flags; |
| 118 | void (*f)(int num, int slot, int func); |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 119 | }; |
| 120 | |
Andrew Morton | c993c73 | 2007-04-08 16:04:03 -0700 | [diff] [blame] | 121 | static struct chipset early_qrk[] __initdata = { |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 122 | { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID, |
| 123 | PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, nvidia_bugs }, |
| 124 | { PCI_VENDOR_ID_VIA, PCI_ANY_ID, |
| 125 | PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, via_bugs }, |
| 126 | { PCI_VENDOR_ID_ATI, PCI_ANY_ID, |
| 127 | PCI_CLASS_BRIDGE_PCI, PCI_ANY_ID, QFLAG_APPLY_ONCE, ati_bugs }, |
| 128 | { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_K8_NB, |
| 129 | PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, fix_hypertransport_config }, |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 130 | {} |
| 131 | }; |
| 132 | |
| 133 | void __init early_quirks(void) |
| 134 | { |
| 135 | int num, slot, func; |
Andi Kleen | 0637a70 | 2006-09-26 10:52:41 +0200 | [diff] [blame] | 136 | |
| 137 | if (!early_pci_allowed()) |
| 138 | return; |
| 139 | |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 140 | /* Poor man's PCI discovery */ |
| 141 | for (num = 0; num < 32; num++) { |
| 142 | for (slot = 0; slot < 32; slot++) { |
| 143 | for (func = 0; func < 8; func++) { |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 144 | u16 class; |
| 145 | u16 vendor; |
| 146 | u16 device; |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 147 | u8 type; |
| 148 | int i; |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 149 | |
| 150 | class = read_pci_config_16(num,slot,func, |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 151 | PCI_CLASS_REVISION); |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 152 | if (class == 0xffff) |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 153 | break; |
| 154 | |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 155 | vendor = read_pci_config_16(num, slot, func, |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 156 | PCI_VENDOR_ID); |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 157 | |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 158 | device = read_pci_config_16(num, slot, func, |
| 159 | PCI_DEVICE_ID); |
| 160 | |
| 161 | for(i=0;early_qrk[i].f != NULL;i++) { |
| 162 | if (((early_qrk[i].vendor == PCI_ANY_ID) || |
| 163 | (early_qrk[i].vendor == vendor)) && |
| 164 | ((early_qrk[i].device == PCI_ANY_ID) || |
| 165 | (early_qrk[i].device == device)) && |
| 166 | (!((early_qrk[i].class ^ class) & |
| 167 | early_qrk[i].class_mask))) { |
| 168 | if ((early_qrk[i].flags & QFLAG_DONE) != QFLAG_DONE) |
| 169 | early_qrk[i].f(num, slot, func); |
| 170 | early_qrk[i].flags |= QFLAG_APPLIED; |
| 171 | |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 172 | } |
Neil Horman | c6b4832 | 2008-01-30 13:31:25 +0100 | [diff] [blame^] | 173 | } |
Andi Kleen | dfa4698 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 174 | |
| 175 | type = read_pci_config_byte(num, slot, func, |
| 176 | PCI_HEADER_TYPE); |
| 177 | if (!(type & 0x80)) |
| 178 | break; |
| 179 | } |
| 180 | } |
| 181 | } |
| 182 | } |