Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Firmware replacement code. |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Work around broken BIOSes that don't set an aperture or only set the |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 5 | * aperture in the AGP bridge. |
| 6 | * If all fails map the aperture over some low memory. This is cheaper than |
| 7 | * doing bounce buffering. The memory is lost. This is done at early boot |
| 8 | * because only the bootmem allocator can allocate 32+MB. |
| 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * Copyright 2002 Andi Kleen, SuSE Labs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/kernel.h> |
| 13 | #include <linux/types.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/bootmem.h> |
| 16 | #include <linux/mmzone.h> |
| 17 | #include <linux/pci_ids.h> |
| 18 | #include <linux/pci.h> |
| 19 | #include <linux/bitops.h> |
Aaron Durbin | 56dd669 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 20 | #include <linux/ioport.h> |
Pavel Machek | 2050d45 | 2008-03-13 23:05:41 +0100 | [diff] [blame] | 21 | #include <linux/suspend.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <asm/e820.h> |
| 23 | #include <asm/io.h> |
Joerg Roedel | 395624f | 2007-10-24 12:49:47 +0200 | [diff] [blame] | 24 | #include <asm/gart.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <asm/pci-direct.h> |
Andi Kleen | ca8642f | 2006-01-11 22:44:27 +0100 | [diff] [blame] | 26 | #include <asm/dma.h> |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 27 | #include <asm/k8.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 29 | int gart_iommu_aperture; |
Pavel Machek | 7de6a4c | 2008-03-13 11:03:58 +0100 | [diff] [blame] | 30 | int gart_iommu_aperture_disabled __initdata; |
| 31 | int gart_iommu_aperture_allowed __initdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | int fallback_aper_order __initdata = 1; /* 64MB */ |
Pavel Machek | 7de6a4c | 2008-03-13 11:03:58 +0100 | [diff] [blame] | 34 | int fallback_aper_force __initdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | int fix_aperture __initdata = 1; |
| 37 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 38 | struct bus_dev_range { |
| 39 | int bus; |
| 40 | int dev_base; |
| 41 | int dev_limit; |
| 42 | }; |
| 43 | |
| 44 | static struct bus_dev_range bus_dev_ranges[] __initdata = { |
| 45 | { 0x00, 0x18, 0x20}, |
| 46 | { 0xff, 0x00, 0x20}, |
| 47 | { 0xfe, 0x00, 0x20} |
| 48 | }; |
| 49 | |
Aaron Durbin | 56dd669 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 50 | static struct resource gart_resource = { |
| 51 | .name = "GART", |
| 52 | .flags = IORESOURCE_MEM, |
| 53 | }; |
| 54 | |
| 55 | static void __init insert_aperture_resource(u32 aper_base, u32 aper_size) |
| 56 | { |
| 57 | gart_resource.start = aper_base; |
| 58 | gart_resource.end = aper_base + aper_size - 1; |
| 59 | insert_resource(&iomem_resource, &gart_resource); |
| 60 | } |
| 61 | |
Andrew Morton | 42442ed | 2005-06-08 15:49:25 -0700 | [diff] [blame] | 62 | /* This code runs before the PCI subsystem is initialized, so just |
| 63 | access the northbridge directly. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 65 | static u32 __init allocate_aperture(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | u32 aper_size; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 68 | void *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Yinghai Lu | 7677b2e | 2008-04-14 20:40:37 -0700 | [diff] [blame] | 70 | /* aper_size should <= 1G */ |
| 71 | if (fallback_aper_order > 5) |
| 72 | fallback_aper_order = 5; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 73 | aper_size = (32 * 1024 * 1024) << fallback_aper_order; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 75 | /* |
| 76 | * Aperture has to be naturally aligned. This means a 2GB aperture |
| 77 | * won't have much chance of finding a place in the lower 4GB of |
| 78 | * memory. Unfortunately we cannot move it up because that would |
| 79 | * make the IOMMU useless. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | */ |
Yinghai Lu | 7677b2e | 2008-04-14 20:40:37 -0700 | [diff] [blame] | 81 | /* |
| 82 | * using 512M as goal, in case kexec will load kernel_big |
| 83 | * that will do the on position decompress, and could overlap with |
| 84 | * that positon with gart that is used. |
| 85 | * sequende: |
| 86 | * kernel_small |
| 87 | * ==> kexec (with kdump trigger path or previous doesn't shutdown gart) |
| 88 | * ==> kernel_small(gart area become e820_reserved) |
| 89 | * ==> kexec (with kdump trigger path or previous doesn't shutdown gart) |
| 90 | * ==> kerne_big (uncompressed size will be big than 64M or 128M) |
| 91 | * so don't use 512M below as gart iommu, leave the space for kernel |
| 92 | * code for safe |
| 93 | */ |
| 94 | p = __alloc_bootmem_nopanic(aper_size, aper_size, 512ULL<<20); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | if (!p || __pa(p)+aper_size > 0xffffffff) { |
Ingo Molnar | 31183ba | 2008-01-30 13:30:10 +0100 | [diff] [blame] | 96 | printk(KERN_ERR |
| 97 | "Cannot allocate aperture memory hole (%p,%uK)\n", |
| 98 | p, aper_size>>10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | if (p) |
James Puthukattukaran | 82d1bb7 | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 100 | free_bootmem(__pa(p), aper_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | return 0; |
| 102 | } |
Ingo Molnar | 31183ba | 2008-01-30 13:30:10 +0100 | [diff] [blame] | 103 | printk(KERN_INFO "Mapping aperture over %d KB of RAM @ %lx\n", |
| 104 | aper_size >> 10, __pa(p)); |
Aaron Durbin | 56dd669 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 105 | insert_aperture_resource((u32)__pa(p), aper_size); |
Pavel Machek | 2050d45 | 2008-03-13 23:05:41 +0100 | [diff] [blame] | 106 | register_nosave_region((u32)__pa(p) >> PAGE_SHIFT, |
| 107 | (u32)__pa(p+aper_size) >> PAGE_SHIFT); |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 108 | |
| 109 | return (u32)__pa(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Andrew Morton | 42442ed | 2005-06-08 15:49:25 -0700 | [diff] [blame] | 113 | /* Find a PCI capability */ |
Pavel Machek | dd564d0 | 2008-05-27 18:03:56 +0200 | [diff] [blame^] | 114 | static u32 __init find_cap(int bus, int slot, int func, int cap) |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 115 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | int bytes; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 117 | u8 pos; |
| 118 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 119 | if (!(read_pci_config_16(bus, slot, func, PCI_STATUS) & |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 120 | PCI_STATUS_CAP_LIST)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | return 0; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 122 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 123 | pos = read_pci_config_byte(bus, slot, func, PCI_CAPABILITY_LIST); |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 124 | for (bytes = 0; bytes < 48 && pos >= 0x40; bytes++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | u8 id; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 126 | |
| 127 | pos &= ~3; |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 128 | id = read_pci_config_byte(bus, slot, func, pos+PCI_CAP_LIST_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | if (id == 0xff) |
| 130 | break; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 131 | if (id == cap) |
| 132 | return pos; |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 133 | pos = read_pci_config_byte(bus, slot, func, |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 134 | pos+PCI_CAP_LIST_NEXT); |
| 135 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | return 0; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 137 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
| 139 | /* Read a standard AGPv3 bridge header */ |
Pavel Machek | dd564d0 | 2008-05-27 18:03:56 +0200 | [diff] [blame^] | 140 | static u32 __init read_agp(int bus, int slot, int func, int cap, u32 *order) |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 141 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | u32 apsize; |
| 143 | u32 apsizereg; |
| 144 | int nbits; |
| 145 | u32 aper_low, aper_hi; |
| 146 | u64 aper; |
Yinghai Lu | 1edc1ab | 2008-04-13 01:11:41 -0700 | [diff] [blame] | 147 | u32 old_order; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 149 | printk(KERN_INFO "AGP bridge at %02x:%02x:%02x\n", bus, slot, func); |
| 150 | apsizereg = read_pci_config_16(bus, slot, func, cap + 0x14); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | if (apsizereg == 0xffffffff) { |
Ingo Molnar | 31183ba | 2008-01-30 13:30:10 +0100 | [diff] [blame] | 152 | printk(KERN_ERR "APSIZE in AGP bridge unreadable\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | return 0; |
| 154 | } |
| 155 | |
Yinghai Lu | 1edc1ab | 2008-04-13 01:11:41 -0700 | [diff] [blame] | 156 | /* old_order could be the value from NB gart setting */ |
| 157 | old_order = *order; |
| 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | apsize = apsizereg & 0xfff; |
| 160 | /* Some BIOS use weird encodings not in the AGPv3 table. */ |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 161 | if (apsize & 0xff) |
| 162 | apsize |= 0xf00; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | nbits = hweight16(apsize); |
| 164 | *order = 7 - nbits; |
| 165 | if ((int)*order < 0) /* < 32MB */ |
| 166 | *order = 0; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 167 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 168 | aper_low = read_pci_config(bus, slot, func, 0x10); |
| 169 | aper_hi = read_pci_config(bus, slot, func, 0x14); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | aper = (aper_low & ~((1<<22)-1)) | ((u64)aper_hi << 32); |
| 171 | |
Yinghai Lu | 1edc1ab | 2008-04-13 01:11:41 -0700 | [diff] [blame] | 172 | /* |
| 173 | * On some sick chips, APSIZE is 0. It means it wants 4G |
| 174 | * so let double check that order, and lets trust AMD NB settings: |
| 175 | */ |
Yinghai Lu | 8c9fd91 | 2008-04-13 18:42:31 -0700 | [diff] [blame] | 176 | printk(KERN_INFO "Aperture from AGP @ %Lx old size %u MB\n", |
| 177 | aper, 32 << old_order); |
| 178 | if (aper + (32ULL<<(20 + *order)) > 0x100000000ULL) { |
Yinghai Lu | 1edc1ab | 2008-04-13 01:11:41 -0700 | [diff] [blame] | 179 | printk(KERN_INFO "Aperture size %u MB (APSIZE %x) is not right, using settings from NB\n", |
| 180 | 32 << *order, apsizereg); |
| 181 | *order = old_order; |
| 182 | } |
| 183 | |
Ingo Molnar | 31183ba | 2008-01-30 13:30:10 +0100 | [diff] [blame] | 184 | printk(KERN_INFO "Aperture from AGP @ %Lx size %u MB (APSIZE %x)\n", |
| 185 | aper, 32 << *order, apsizereg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
Yinghai Lu | 8c9fd91 | 2008-04-13 18:42:31 -0700 | [diff] [blame] | 187 | if (!aperture_valid(aper, (32*1024*1024) << *order, 32<<20)) |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 188 | return 0; |
| 189 | return (u32)aper; |
| 190 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 192 | /* |
| 193 | * Look for an AGP bridge. Windows only expects the aperture in the |
| 194 | * AGP bridge and some BIOS forget to initialize the Northbridge too. |
| 195 | * Work around this here. |
| 196 | * |
| 197 | * Do an PCI bus scan by hand because we're running before the PCI |
| 198 | * subsystem. |
| 199 | * |
| 200 | * All K8 AGP bridges are AGPv3 compliant, so we can do this scan |
| 201 | * generically. It's probably overkill to always scan all slots because |
| 202 | * the AGP bridges should be always an own bus on the HT hierarchy, |
| 203 | * but do it here for future safety. |
| 204 | */ |
Pavel Machek | dd564d0 | 2008-05-27 18:03:56 +0200 | [diff] [blame^] | 205 | static u32 __init search_agp_bridge(u32 *order, int *valid_agp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 207 | int bus, slot, func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
| 209 | /* Poor man's PCI discovery */ |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 210 | for (bus = 0; bus < 256; bus++) { |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 211 | for (slot = 0; slot < 32; slot++) { |
| 212 | for (func = 0; func < 8; func++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | u32 class, cap; |
| 214 | u8 type; |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 215 | class = read_pci_config(bus, slot, func, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | PCI_CLASS_REVISION); |
| 217 | if (class == 0xffffffff) |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 218 | break; |
| 219 | |
| 220 | switch (class >> 16) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | case PCI_CLASS_BRIDGE_HOST: |
| 222 | case PCI_CLASS_BRIDGE_OTHER: /* needed? */ |
| 223 | /* AGP bridge? */ |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 224 | cap = find_cap(bus, slot, func, |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 225 | PCI_CAP_ID_AGP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | if (!cap) |
| 227 | break; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 228 | *valid_agp = 1; |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 229 | return read_agp(bus, slot, func, cap, |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 230 | order); |
| 231 | } |
| 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | /* No multi-function device? */ |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 234 | type = read_pci_config_byte(bus, slot, func, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | PCI_HEADER_TYPE); |
| 236 | if (!(type & 0x80)) |
| 237 | break; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 238 | } |
| 239 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | } |
Ingo Molnar | 31183ba | 2008-01-30 13:30:10 +0100 | [diff] [blame] | 241 | printk(KERN_INFO "No AGP bridge found\n"); |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | return 0; |
| 244 | } |
| 245 | |
Yinghai Lu | aaf2304 | 2008-01-30 13:33:09 +0100 | [diff] [blame] | 246 | static int gart_fix_e820 __initdata = 1; |
| 247 | |
| 248 | static int __init parse_gart_mem(char *p) |
| 249 | { |
| 250 | if (!p) |
| 251 | return -EINVAL; |
| 252 | |
| 253 | if (!strncmp(p, "off", 3)) |
| 254 | gart_fix_e820 = 0; |
| 255 | else if (!strncmp(p, "on", 2)) |
| 256 | gart_fix_e820 = 1; |
| 257 | |
| 258 | return 0; |
| 259 | } |
| 260 | early_param("gart_fix_e820", parse_gart_mem); |
| 261 | |
| 262 | void __init early_gart_iommu_check(void) |
| 263 | { |
| 264 | /* |
| 265 | * in case it is enabled before, esp for kexec/kdump, |
| 266 | * previous kernel already enable that. memset called |
| 267 | * by allocate_aperture/__alloc_bootmem_nopanic cause restart. |
| 268 | * or second kernel have different position for GART hole. and new |
| 269 | * kernel could use hole as RAM that is still used by GART set by |
| 270 | * first kernel |
| 271 | * or BIOS forget to put that in reserved. |
| 272 | * try to update e820 to make that region as reserved. |
| 273 | */ |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 274 | int fix, slot; |
Yinghai Lu | aaf2304 | 2008-01-30 13:33:09 +0100 | [diff] [blame] | 275 | u32 ctl; |
| 276 | u32 aper_size = 0, aper_order = 0, last_aper_order = 0; |
| 277 | u64 aper_base = 0, last_aper_base = 0; |
| 278 | int aper_enabled = 0, last_aper_enabled = 0; |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 279 | int i; |
Yinghai Lu | aaf2304 | 2008-01-30 13:33:09 +0100 | [diff] [blame] | 280 | |
| 281 | if (!early_pci_allowed()) |
| 282 | return; |
| 283 | |
| 284 | fix = 0; |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 285 | for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) { |
| 286 | int bus; |
| 287 | int dev_base, dev_limit; |
Yinghai Lu | aaf2304 | 2008-01-30 13:33:09 +0100 | [diff] [blame] | 288 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 289 | bus = bus_dev_ranges[i].bus; |
| 290 | dev_base = bus_dev_ranges[i].dev_base; |
| 291 | dev_limit = bus_dev_ranges[i].dev_limit; |
Yinghai Lu | aaf2304 | 2008-01-30 13:33:09 +0100 | [diff] [blame] | 292 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 293 | for (slot = dev_base; slot < dev_limit; slot++) { |
| 294 | if (!early_is_k8_nb(read_pci_config(bus, slot, 3, 0x00))) |
| 295 | continue; |
| 296 | |
| 297 | ctl = read_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL); |
| 298 | aper_enabled = ctl & AMD64_GARTEN; |
| 299 | aper_order = (ctl >> 1) & 7; |
| 300 | aper_size = (32 * 1024 * 1024) << aper_order; |
| 301 | aper_base = read_pci_config(bus, slot, 3, AMD64_GARTAPERTUREBASE) & 0x7fff; |
| 302 | aper_base <<= 25; |
| 303 | |
| 304 | if ((last_aper_order && aper_order != last_aper_order) || |
| 305 | (last_aper_base && aper_base != last_aper_base) || |
| 306 | (last_aper_enabled && aper_enabled != last_aper_enabled)) { |
| 307 | fix = 1; |
| 308 | goto out; |
| 309 | } |
| 310 | last_aper_order = aper_order; |
| 311 | last_aper_base = aper_base; |
| 312 | last_aper_enabled = aper_enabled; |
Yinghai Lu | aaf2304 | 2008-01-30 13:33:09 +0100 | [diff] [blame] | 313 | } |
Yinghai Lu | aaf2304 | 2008-01-30 13:33:09 +0100 | [diff] [blame] | 314 | } |
| 315 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 316 | out: |
Yinghai Lu | aaf2304 | 2008-01-30 13:33:09 +0100 | [diff] [blame] | 317 | if (!fix && !aper_enabled) |
| 318 | return; |
| 319 | |
| 320 | if (!aper_base || !aper_size || aper_base + aper_size > 0x100000000UL) |
| 321 | fix = 1; |
| 322 | |
| 323 | if (gart_fix_e820 && !fix && aper_enabled) { |
Yinghai Lu | 8c9fd91 | 2008-04-13 18:42:31 -0700 | [diff] [blame] | 324 | if (!e820_all_mapped(aper_base, aper_base + aper_size, |
| 325 | E820_RESERVED)) { |
Pavel Machek | 0abbc78 | 2008-05-20 16:27:17 +0200 | [diff] [blame] | 326 | /* reserve it, so we can reuse it in second kernel */ |
Yinghai Lu | aaf2304 | 2008-01-30 13:33:09 +0100 | [diff] [blame] | 327 | printk(KERN_INFO "update e820 for GART\n"); |
| 328 | add_memory_region(aper_base, aper_size, E820_RESERVED); |
| 329 | update_e820(); |
| 330 | } |
| 331 | return; |
| 332 | } |
| 333 | |
| 334 | /* different nodes have different setting, disable them all at first*/ |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 335 | for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) { |
| 336 | int bus; |
| 337 | int dev_base, dev_limit; |
Yinghai Lu | aaf2304 | 2008-01-30 13:33:09 +0100 | [diff] [blame] | 338 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 339 | bus = bus_dev_ranges[i].bus; |
| 340 | dev_base = bus_dev_ranges[i].dev_base; |
| 341 | dev_limit = bus_dev_ranges[i].dev_limit; |
| 342 | |
| 343 | for (slot = dev_base; slot < dev_limit; slot++) { |
| 344 | if (!early_is_k8_nb(read_pci_config(bus, slot, 3, 0x00))) |
| 345 | continue; |
| 346 | |
| 347 | ctl = read_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL); |
| 348 | ctl &= ~AMD64_GARTEN; |
| 349 | write_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL, ctl); |
| 350 | } |
Yinghai Lu | aaf2304 | 2008-01-30 13:33:09 +0100 | [diff] [blame] | 351 | } |
| 352 | |
| 353 | } |
| 354 | |
Yinghai Lu | 8c9fd91 | 2008-04-13 18:42:31 -0700 | [diff] [blame] | 355 | static int __initdata printed_gart_size_msg; |
| 356 | |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 357 | void __init gart_iommu_hole_init(void) |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 358 | { |
Yinghai Lu | 8c9fd91 | 2008-04-13 18:42:31 -0700 | [diff] [blame] | 359 | u32 agp_aper_base = 0, agp_aper_order = 0; |
Andi Kleen | 50895c5 | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 360 | u32 aper_size, aper_alloc = 0, aper_order = 0, last_aper_order = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | u64 aper_base, last_aper_base = 0; |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 362 | int fix, slot, valid_agp = 0; |
| 363 | int i, node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
Joerg Roedel | 0440d4c | 2007-10-24 12:49:50 +0200 | [diff] [blame] | 365 | if (gart_iommu_aperture_disabled || !fix_aperture || |
| 366 | !early_pci_allowed()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | return; |
| 368 | |
Dan Aloni | 753811d | 2007-07-21 17:11:36 +0200 | [diff] [blame] | 369 | printk(KERN_INFO "Checking aperture...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
Yinghai Lu | 8c9fd91 | 2008-04-13 18:42:31 -0700 | [diff] [blame] | 371 | if (!fallback_aper_force) |
| 372 | agp_aper_base = search_agp_bridge(&agp_aper_order, &valid_agp); |
| 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | fix = 0; |
Yinghai Lu | 47db4c3 | 2008-01-30 13:33:18 +0100 | [diff] [blame] | 375 | node = 0; |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 376 | for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) { |
| 377 | int bus; |
| 378 | int dev_base, dev_limit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 380 | bus = bus_dev_ranges[i].bus; |
| 381 | dev_base = bus_dev_ranges[i].dev_base; |
| 382 | dev_limit = bus_dev_ranges[i].dev_limit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 384 | for (slot = dev_base; slot < dev_limit; slot++) { |
| 385 | if (!early_is_k8_nb(read_pci_config(bus, slot, 3, 0x00))) |
| 386 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 388 | iommu_detected = 1; |
| 389 | gart_iommu_aperture = 1; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 390 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 391 | aper_order = (read_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL) >> 1) & 7; |
| 392 | aper_size = (32 * 1024 * 1024) << aper_order; |
| 393 | aper_base = read_pci_config(bus, slot, 3, AMD64_GARTAPERTUREBASE) & 0x7fff; |
| 394 | aper_base <<= 25; |
| 395 | |
| 396 | printk(KERN_INFO "Node %d: aperture @ %Lx size %u MB\n", |
| 397 | node, aper_base, aper_size >> 20); |
| 398 | node++; |
| 399 | |
| 400 | if (!aperture_valid(aper_base, aper_size, 64<<20)) { |
| 401 | if (valid_agp && agp_aper_base && |
| 402 | agp_aper_base == aper_base && |
| 403 | agp_aper_order == aper_order) { |
| 404 | /* the same between two setting from NB and agp */ |
| 405 | if (!no_iommu && end_pfn > MAX_DMA32_PFN && !printed_gart_size_msg) { |
| 406 | printk(KERN_ERR "you are using iommu with agp, but GART size is less than 64M\n"); |
| 407 | printk(KERN_ERR "please increase GART size in your BIOS setup\n"); |
| 408 | printk(KERN_ERR "if BIOS doesn't have that option, contact your HW vendor!\n"); |
| 409 | printed_gart_size_msg = 1; |
| 410 | } |
| 411 | } else { |
| 412 | fix = 1; |
| 413 | goto out; |
Yinghai Lu | 8c9fd91 | 2008-04-13 18:42:31 -0700 | [diff] [blame] | 414 | } |
Yinghai Lu | 8c9fd91 | 2008-04-13 18:42:31 -0700 | [diff] [blame] | 415 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 417 | if ((last_aper_order && aper_order != last_aper_order) || |
| 418 | (last_aper_base && aper_base != last_aper_base)) { |
| 419 | fix = 1; |
| 420 | goto out; |
| 421 | } |
| 422 | last_aper_order = aper_order; |
| 423 | last_aper_base = aper_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | } |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 425 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 427 | out: |
Aaron Durbin | 56dd669 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 428 | if (!fix && !fallback_aper_force) { |
| 429 | if (last_aper_base) { |
| 430 | unsigned long n = (32 * 1024 * 1024) << last_aper_order; |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 431 | |
Aaron Durbin | 56dd669 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 432 | insert_aperture_resource((u32)last_aper_base, n); |
| 433 | } |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 434 | return; |
Aaron Durbin | 56dd669 | 2006-09-26 10:52:40 +0200 | [diff] [blame] | 435 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
Yinghai Lu | 8c9fd91 | 2008-04-13 18:42:31 -0700 | [diff] [blame] | 437 | if (!fallback_aper_force) { |
| 438 | aper_alloc = agp_aper_base; |
| 439 | aper_order = agp_aper_order; |
| 440 | } |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 441 | |
| 442 | if (aper_alloc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | /* Got the aperture from the AGP bridge */ |
Andi Kleen | 63f02fd | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 444 | } else if (swiotlb && !valid_agp) { |
| 445 | /* Do nothing */ |
Jon Mason | 60b08c6 | 2006-02-26 04:18:22 +0100 | [diff] [blame] | 446 | } else if ((!no_iommu && end_pfn > MAX_DMA32_PFN) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | force_iommu || |
| 448 | valid_agp || |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 449 | fallback_aper_force) { |
Ingo Molnar | 31183ba | 2008-01-30 13:30:10 +0100 | [diff] [blame] | 450 | printk(KERN_ERR |
| 451 | "Your BIOS doesn't leave a aperture memory hole\n"); |
| 452 | printk(KERN_ERR |
| 453 | "Please enable the IOMMU option in the BIOS setup\n"); |
| 454 | printk(KERN_ERR |
| 455 | "This costs you %d MB of RAM\n", |
| 456 | 32 << fallback_aper_order); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
| 458 | aper_order = fallback_aper_order; |
| 459 | aper_alloc = allocate_aperture(); |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 460 | if (!aper_alloc) { |
| 461 | /* |
| 462 | * Could disable AGP and IOMMU here, but it's |
| 463 | * probably not worth it. But the later users |
| 464 | * cannot deal with bad apertures and turning |
| 465 | * on the aperture over memory causes very |
| 466 | * strange problems, so it's better to panic |
| 467 | * early. |
| 468 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | panic("Not enough memory for aperture"); |
| 470 | } |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 471 | } else { |
| 472 | return; |
| 473 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
| 475 | /* Fix up the north bridges */ |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 476 | for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) { |
| 477 | int bus; |
| 478 | int dev_base, dev_limit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
Yinghai Lu | 55c0d72 | 2008-04-19 01:31:11 -0700 | [diff] [blame] | 480 | bus = bus_dev_ranges[i].bus; |
| 481 | dev_base = bus_dev_ranges[i].dev_base; |
| 482 | dev_limit = bus_dev_ranges[i].dev_limit; |
| 483 | for (slot = dev_base; slot < dev_limit; slot++) { |
| 484 | if (!early_is_k8_nb(read_pci_config(bus, slot, 3, 0x00))) |
| 485 | continue; |
| 486 | |
| 487 | /* Don't enable translation yet. That is done later. |
| 488 | Assume this BIOS didn't initialise the GART so |
| 489 | just overwrite all previous bits */ |
| 490 | write_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL, aper_order << 1); |
| 491 | write_pci_config(bus, slot, 3, AMD64_GARTAPERTUREBASE, aper_alloc >> 25); |
| 492 | } |
Ingo Molnar | c140df9 | 2008-01-30 13:30:09 +0100 | [diff] [blame] | 493 | } |
| 494 | } |