blob: 3409abb231aca97c694a8c38d78bc2996e069363 [file] [log] [blame]
Ingo Molnarc140df92008-01-30 13:30:09 +01001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Firmware replacement code.
Ingo Molnarc140df92008-01-30 13:30:09 +01003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Work around broken BIOSes that don't set an aperture or only set the
Ingo Molnarc140df92008-01-30 13:30:09 +01005 * 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 Torvalds1da177e2005-04-16 15:20:36 -070010 * Copyright 2002 Andi Kleen, SuSE Labs.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#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 Durbin56dd6692006-09-26 10:52:40 +020020#include <linux/ioport.h>
Pavel Machek2050d452008-03-13 23:05:41 +010021#include <linux/suspend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/e820.h>
23#include <asm/io.h>
Joerg Roedel395624f2007-10-24 12:49:47 +020024#include <asm/gart.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/pci-direct.h>
Andi Kleenca8642f2006-01-11 22:44:27 +010026#include <asm/dma.h>
Andi Kleena32073b2006-06-26 13:56:40 +020027#include <asm/k8.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Joerg Roedel0440d4c2007-10-24 12:49:50 +020029int gart_iommu_aperture;
Pavel Machek7de6a4c2008-03-13 11:03:58 +010030int gart_iommu_aperture_disabled __initdata;
31int gart_iommu_aperture_allowed __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33int fallback_aper_order __initdata = 1; /* 64MB */
Pavel Machek7de6a4c2008-03-13 11:03:58 +010034int fallback_aper_force __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36int fix_aperture __initdata = 1;
37
Yinghai Lu55c0d722008-04-19 01:31:11 -070038struct bus_dev_range {
39 int bus;
40 int dev_base;
41 int dev_limit;
42};
43
44static struct bus_dev_range bus_dev_ranges[] __initdata = {
45 { 0x00, 0x18, 0x20},
46 { 0xff, 0x00, 0x20},
47 { 0xfe, 0x00, 0x20}
48};
49
Aaron Durbin56dd6692006-09-26 10:52:40 +020050static struct resource gart_resource = {
51 .name = "GART",
52 .flags = IORESOURCE_MEM,
53};
54
55static 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 Morton42442ed2005-06-08 15:49:25 -070062/* This code runs before the PCI subsystem is initialized, so just
63 access the northbridge directly. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Ingo Molnarc140df92008-01-30 13:30:09 +010065static u32 __init allocate_aperture(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 u32 aper_size;
Ingo Molnarc140df92008-01-30 13:30:09 +010068 void *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Yinghai Lu7677b2e2008-04-14 20:40:37 -070070 /* aper_size should <= 1G */
71 if (fallback_aper_order > 5)
72 fallback_aper_order = 5;
Ingo Molnarc140df92008-01-30 13:30:09 +010073 aper_size = (32 * 1024 * 1024) << fallback_aper_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Ingo Molnarc140df92008-01-30 13:30:09 +010075 /*
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 Torvalds1da177e2005-04-16 15:20:36 -070080 */
Yinghai Lu7677b2e2008-04-14 20:40:37 -070081 /*
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 Torvalds1da177e2005-04-16 15:20:36 -070095 if (!p || __pa(p)+aper_size > 0xffffffff) {
Ingo Molnar31183ba2008-01-30 13:30:10 +010096 printk(KERN_ERR
97 "Cannot allocate aperture memory hole (%p,%uK)\n",
98 p, aper_size>>10);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (p)
James Puthukattukaran82d1bb72007-05-02 19:27:13 +0200100 free_bootmem(__pa(p), aper_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return 0;
102 }
Ingo Molnar31183ba2008-01-30 13:30:10 +0100103 printk(KERN_INFO "Mapping aperture over %d KB of RAM @ %lx\n",
104 aper_size >> 10, __pa(p));
Aaron Durbin56dd6692006-09-26 10:52:40 +0200105 insert_aperture_resource((u32)__pa(p), aper_size);
Pavel Machek2050d452008-03-13 23:05:41 +0100106 register_nosave_region((u32)__pa(p) >> PAGE_SHIFT,
107 (u32)__pa(p+aper_size) >> PAGE_SHIFT);
Ingo Molnarc140df92008-01-30 13:30:09 +0100108
109 return (u32)__pa(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Andrew Morton42442ed2005-06-08 15:49:25 -0700113/* Find a PCI capability */
Pavel Machekdd564d02008-05-27 18:03:56 +0200114static u32 __init find_cap(int bus, int slot, int func, int cap)
Ingo Molnarc140df92008-01-30 13:30:09 +0100115{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int bytes;
Ingo Molnarc140df92008-01-30 13:30:09 +0100117 u8 pos;
118
Yinghai Lu55c0d722008-04-19 01:31:11 -0700119 if (!(read_pci_config_16(bus, slot, func, PCI_STATUS) &
Ingo Molnarc140df92008-01-30 13:30:09 +0100120 PCI_STATUS_CAP_LIST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return 0;
Ingo Molnarc140df92008-01-30 13:30:09 +0100122
Yinghai Lu55c0d722008-04-19 01:31:11 -0700123 pos = read_pci_config_byte(bus, slot, func, PCI_CAPABILITY_LIST);
Ingo Molnarc140df92008-01-30 13:30:09 +0100124 for (bytes = 0; bytes < 48 && pos >= 0x40; bytes++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 u8 id;
Ingo Molnarc140df92008-01-30 13:30:09 +0100126
127 pos &= ~3;
Yinghai Lu55c0d722008-04-19 01:31:11 -0700128 id = read_pci_config_byte(bus, slot, func, pos+PCI_CAP_LIST_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (id == 0xff)
130 break;
Ingo Molnarc140df92008-01-30 13:30:09 +0100131 if (id == cap)
132 return pos;
Yinghai Lu55c0d722008-04-19 01:31:11 -0700133 pos = read_pci_config_byte(bus, slot, func,
Ingo Molnarc140df92008-01-30 13:30:09 +0100134 pos+PCI_CAP_LIST_NEXT);
135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return 0;
Ingo Molnarc140df92008-01-30 13:30:09 +0100137}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139/* Read a standard AGPv3 bridge header */
Pavel Machekdd564d02008-05-27 18:03:56 +0200140static u32 __init read_agp(int bus, int slot, int func, int cap, u32 *order)
Ingo Molnarc140df92008-01-30 13:30:09 +0100141{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 u32 apsize;
143 u32 apsizereg;
144 int nbits;
145 u32 aper_low, aper_hi;
146 u64 aper;
Yinghai Lu1edc1ab2008-04-13 01:11:41 -0700147 u32 old_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Yinghai Lu55c0d722008-04-19 01:31:11 -0700149 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 Torvalds1da177e2005-04-16 15:20:36 -0700151 if (apsizereg == 0xffffffff) {
Ingo Molnar31183ba2008-01-30 13:30:10 +0100152 printk(KERN_ERR "APSIZE in AGP bridge unreadable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return 0;
154 }
155
Yinghai Lu1edc1ab2008-04-13 01:11:41 -0700156 /* old_order could be the value from NB gart setting */
157 old_order = *order;
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 apsize = apsizereg & 0xfff;
160 /* Some BIOS use weird encodings not in the AGPv3 table. */
Ingo Molnarc140df92008-01-30 13:30:09 +0100161 if (apsize & 0xff)
162 apsize |= 0xf00;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 nbits = hweight16(apsize);
164 *order = 7 - nbits;
165 if ((int)*order < 0) /* < 32MB */
166 *order = 0;
Ingo Molnarc140df92008-01-30 13:30:09 +0100167
Yinghai Lu55c0d722008-04-19 01:31:11 -0700168 aper_low = read_pci_config(bus, slot, func, 0x10);
169 aper_hi = read_pci_config(bus, slot, func, 0x14);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 aper = (aper_low & ~((1<<22)-1)) | ((u64)aper_hi << 32);
171
Yinghai Lu1edc1ab2008-04-13 01:11:41 -0700172 /*
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 Lu8c9fd912008-04-13 18:42:31 -0700176 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 Lu1edc1ab2008-04-13 01:11:41 -0700179 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 Molnar31183ba2008-01-30 13:30:10 +0100184 printk(KERN_INFO "Aperture from AGP @ %Lx size %u MB (APSIZE %x)\n",
185 aper, 32 << *order, apsizereg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Yinghai Lu8c9fd912008-04-13 18:42:31 -0700187 if (!aperture_valid(aper, (32*1024*1024) << *order, 32<<20))
Ingo Molnarc140df92008-01-30 13:30:09 +0100188 return 0;
189 return (u32)aper;
190}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Ingo Molnarc140df92008-01-30 13:30:09 +0100192/*
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 Machekdd564d02008-05-27 18:03:56 +0200205static u32 __init search_agp_bridge(u32 *order, int *valid_agp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Yinghai Lu55c0d722008-04-19 01:31:11 -0700207 int bus, slot, func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 /* Poor man's PCI discovery */
Yinghai Lu55c0d722008-04-19 01:31:11 -0700210 for (bus = 0; bus < 256; bus++) {
Ingo Molnarc140df92008-01-30 13:30:09 +0100211 for (slot = 0; slot < 32; slot++) {
212 for (func = 0; func < 8; func++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 u32 class, cap;
214 u8 type;
Yinghai Lu55c0d722008-04-19 01:31:11 -0700215 class = read_pci_config(bus, slot, func,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 PCI_CLASS_REVISION);
217 if (class == 0xffffffff)
Ingo Molnarc140df92008-01-30 13:30:09 +0100218 break;
219
220 switch (class >> 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 case PCI_CLASS_BRIDGE_HOST:
222 case PCI_CLASS_BRIDGE_OTHER: /* needed? */
223 /* AGP bridge? */
Yinghai Lu55c0d722008-04-19 01:31:11 -0700224 cap = find_cap(bus, slot, func,
Ingo Molnarc140df92008-01-30 13:30:09 +0100225 PCI_CAP_ID_AGP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (!cap)
227 break;
Ingo Molnarc140df92008-01-30 13:30:09 +0100228 *valid_agp = 1;
Yinghai Lu55c0d722008-04-19 01:31:11 -0700229 return read_agp(bus, slot, func, cap,
Ingo Molnarc140df92008-01-30 13:30:09 +0100230 order);
231 }
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /* No multi-function device? */
Yinghai Lu55c0d722008-04-19 01:31:11 -0700234 type = read_pci_config_byte(bus, slot, func,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 PCI_HEADER_TYPE);
236 if (!(type & 0x80))
237 break;
Ingo Molnarc140df92008-01-30 13:30:09 +0100238 }
239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
Ingo Molnar31183ba2008-01-30 13:30:10 +0100241 printk(KERN_INFO "No AGP bridge found\n");
Ingo Molnarc140df92008-01-30 13:30:09 +0100242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return 0;
244}
245
Yinghai Luaaf23042008-01-30 13:33:09 +0100246static int gart_fix_e820 __initdata = 1;
247
248static 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}
260early_param("gart_fix_e820", parse_gart_mem);
261
262void __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 */
Pavel Machekfa5b8a32008-05-26 20:40:47 +0200274 int i, fix, slot;
Yinghai Luaaf23042008-01-30 13:33:09 +0100275 u32 ctl;
276 u32 aper_size = 0, aper_order = 0, last_aper_order = 0;
277 u64 aper_base = 0, last_aper_base = 0;
Pavel Machekfa5b8a32008-05-26 20:40:47 +0200278 int aper_enabled = 0, last_aper_enabled = 0, last_valid = 0;
Yinghai Luaaf23042008-01-30 13:33:09 +0100279
280 if (!early_pci_allowed())
281 return;
282
Pavel Machekfa5b8a32008-05-26 20:40:47 +0200283 /* This is mostly duplicate of iommu_hole_init */
Yinghai Luaaf23042008-01-30 13:33:09 +0100284 fix = 0;
Yinghai Lu55c0d722008-04-19 01:31:11 -0700285 for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) {
286 int bus;
287 int dev_base, dev_limit;
Yinghai Luaaf23042008-01-30 13:33:09 +0100288
Yinghai Lu55c0d722008-04-19 01:31:11 -0700289 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 Luaaf23042008-01-30 13:33:09 +0100292
Yinghai Lu55c0d722008-04-19 01:31:11 -0700293 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
Pavel Machekfa5b8a32008-05-26 20:40:47 +0200304 if (last_valid) {
305 if ((aper_order != last_aper_order) ||
306 (aper_base != last_aper_base) ||
307 (aper_enabled != last_aper_enabled)) {
308 fix = 1;
309 break;
310 }
Yinghai Lu55c0d722008-04-19 01:31:11 -0700311 }
Pavel Machekfa5b8a32008-05-26 20:40:47 +0200312
Yinghai Lu55c0d722008-04-19 01:31:11 -0700313 last_aper_order = aper_order;
314 last_aper_base = aper_base;
315 last_aper_enabled = aper_enabled;
Pavel Machekfa5b8a32008-05-26 20:40:47 +0200316 last_valid = 1;
Yinghai Luaaf23042008-01-30 13:33:09 +0100317 }
Yinghai Luaaf23042008-01-30 13:33:09 +0100318 }
319
320 if (!fix && !aper_enabled)
321 return;
322
323 if (!aper_base || !aper_size || aper_base + aper_size > 0x100000000UL)
324 fix = 1;
325
326 if (gart_fix_e820 && !fix && aper_enabled) {
Yinghai Lu8c9fd912008-04-13 18:42:31 -0700327 if (!e820_all_mapped(aper_base, aper_base + aper_size,
328 E820_RESERVED)) {
Pavel Machek0abbc782008-05-20 16:27:17 +0200329 /* reserve it, so we can reuse it in second kernel */
Yinghai Luaaf23042008-01-30 13:33:09 +0100330 printk(KERN_INFO "update e820 for GART\n");
331 add_memory_region(aper_base, aper_size, E820_RESERVED);
332 update_e820();
333 }
Yinghai Luaaf23042008-01-30 13:33:09 +0100334 }
335
Pavel Machek4f384f82008-05-26 21:17:30 +0200336 if (!fix)
337 return;
338
Yinghai Luaaf23042008-01-30 13:33:09 +0100339 /* different nodes have different setting, disable them all at first*/
Yinghai Lu55c0d722008-04-19 01:31:11 -0700340 for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) {
341 int bus;
342 int dev_base, dev_limit;
Yinghai Luaaf23042008-01-30 13:33:09 +0100343
Yinghai Lu55c0d722008-04-19 01:31:11 -0700344 bus = bus_dev_ranges[i].bus;
345 dev_base = bus_dev_ranges[i].dev_base;
346 dev_limit = bus_dev_ranges[i].dev_limit;
347
348 for (slot = dev_base; slot < dev_limit; slot++) {
349 if (!early_is_k8_nb(read_pci_config(bus, slot, 3, 0x00)))
350 continue;
351
352 ctl = read_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL);
353 ctl &= ~AMD64_GARTEN;
354 write_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL, ctl);
355 }
Yinghai Luaaf23042008-01-30 13:33:09 +0100356 }
357
358}
359
Yinghai Lu8c9fd912008-04-13 18:42:31 -0700360static int __initdata printed_gart_size_msg;
361
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200362void __init gart_iommu_hole_init(void)
Ingo Molnarc140df92008-01-30 13:30:09 +0100363{
Yinghai Lu8c9fd912008-04-13 18:42:31 -0700364 u32 agp_aper_base = 0, agp_aper_order = 0;
Andi Kleen50895c52005-11-05 17:25:53 +0100365 u32 aper_size, aper_alloc = 0, aper_order = 0, last_aper_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 u64 aper_base, last_aper_base = 0;
Yinghai Lu55c0d722008-04-19 01:31:11 -0700367 int fix, slot, valid_agp = 0;
368 int i, node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Joerg Roedel0440d4c2007-10-24 12:49:50 +0200370 if (gart_iommu_aperture_disabled || !fix_aperture ||
371 !early_pci_allowed())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return;
373
Dan Aloni753811d2007-07-21 17:11:36 +0200374 printk(KERN_INFO "Checking aperture...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Yinghai Lu8c9fd912008-04-13 18:42:31 -0700376 if (!fallback_aper_force)
377 agp_aper_base = search_agp_bridge(&agp_aper_order, &valid_agp);
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 fix = 0;
Yinghai Lu47db4c32008-01-30 13:33:18 +0100380 node = 0;
Yinghai Lu55c0d722008-04-19 01:31:11 -0700381 for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) {
382 int bus;
383 int dev_base, dev_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Yinghai Lu55c0d722008-04-19 01:31:11 -0700385 bus = bus_dev_ranges[i].bus;
386 dev_base = bus_dev_ranges[i].dev_base;
387 dev_limit = bus_dev_ranges[i].dev_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Yinghai Lu55c0d722008-04-19 01:31:11 -0700389 for (slot = dev_base; slot < dev_limit; slot++) {
390 if (!early_is_k8_nb(read_pci_config(bus, slot, 3, 0x00)))
391 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Yinghai Lu55c0d722008-04-19 01:31:11 -0700393 iommu_detected = 1;
394 gart_iommu_aperture = 1;
Ingo Molnarc140df92008-01-30 13:30:09 +0100395
Yinghai Lu55c0d722008-04-19 01:31:11 -0700396 aper_order = (read_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL) >> 1) & 7;
397 aper_size = (32 * 1024 * 1024) << aper_order;
398 aper_base = read_pci_config(bus, slot, 3, AMD64_GARTAPERTUREBASE) & 0x7fff;
399 aper_base <<= 25;
400
401 printk(KERN_INFO "Node %d: aperture @ %Lx size %u MB\n",
402 node, aper_base, aper_size >> 20);
403 node++;
404
405 if (!aperture_valid(aper_base, aper_size, 64<<20)) {
406 if (valid_agp && agp_aper_base &&
407 agp_aper_base == aper_base &&
408 agp_aper_order == aper_order) {
409 /* the same between two setting from NB and agp */
410 if (!no_iommu && end_pfn > MAX_DMA32_PFN && !printed_gart_size_msg) {
411 printk(KERN_ERR "you are using iommu with agp, but GART size is less than 64M\n");
412 printk(KERN_ERR "please increase GART size in your BIOS setup\n");
413 printk(KERN_ERR "if BIOS doesn't have that option, contact your HW vendor!\n");
414 printed_gart_size_msg = 1;
415 }
416 } else {
417 fix = 1;
418 goto out;
Yinghai Lu8c9fd912008-04-13 18:42:31 -0700419 }
Yinghai Lu8c9fd912008-04-13 18:42:31 -0700420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Yinghai Lu55c0d722008-04-19 01:31:11 -0700422 if ((last_aper_order && aper_order != last_aper_order) ||
423 (last_aper_base && aper_base != last_aper_base)) {
424 fix = 1;
425 goto out;
426 }
427 last_aper_order = aper_order;
428 last_aper_base = aper_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
Ingo Molnarc140df92008-01-30 13:30:09 +0100430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Yinghai Lu55c0d722008-04-19 01:31:11 -0700432out:
Aaron Durbin56dd6692006-09-26 10:52:40 +0200433 if (!fix && !fallback_aper_force) {
434 if (last_aper_base) {
435 unsigned long n = (32 * 1024 * 1024) << last_aper_order;
Ingo Molnarc140df92008-01-30 13:30:09 +0100436
Aaron Durbin56dd6692006-09-26 10:52:40 +0200437 insert_aperture_resource((u32)last_aper_base, n);
438 }
Ingo Molnarc140df92008-01-30 13:30:09 +0100439 return;
Aaron Durbin56dd6692006-09-26 10:52:40 +0200440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Yinghai Lu8c9fd912008-04-13 18:42:31 -0700442 if (!fallback_aper_force) {
443 aper_alloc = agp_aper_base;
444 aper_order = agp_aper_order;
445 }
Ingo Molnarc140df92008-01-30 13:30:09 +0100446
447 if (aper_alloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /* Got the aperture from the AGP bridge */
Andi Kleen63f02fd2005-09-12 18:49:24 +0200449 } else if (swiotlb && !valid_agp) {
450 /* Do nothing */
Jon Mason60b08c62006-02-26 04:18:22 +0100451 } else if ((!no_iommu && end_pfn > MAX_DMA32_PFN) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 force_iommu ||
453 valid_agp ||
Ingo Molnarc140df92008-01-30 13:30:09 +0100454 fallback_aper_force) {
Ingo Molnar31183ba2008-01-30 13:30:10 +0100455 printk(KERN_ERR
456 "Your BIOS doesn't leave a aperture memory hole\n");
457 printk(KERN_ERR
458 "Please enable the IOMMU option in the BIOS setup\n");
459 printk(KERN_ERR
460 "This costs you %d MB of RAM\n",
461 32 << fallback_aper_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 aper_order = fallback_aper_order;
464 aper_alloc = allocate_aperture();
Ingo Molnarc140df92008-01-30 13:30:09 +0100465 if (!aper_alloc) {
466 /*
467 * Could disable AGP and IOMMU here, but it's
468 * probably not worth it. But the later users
469 * cannot deal with bad apertures and turning
470 * on the aperture over memory causes very
471 * strange problems, so it's better to panic
472 * early.
473 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 panic("Not enough memory for aperture");
475 }
Ingo Molnarc140df92008-01-30 13:30:09 +0100476 } else {
477 return;
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 /* Fix up the north bridges */
Yinghai Lu55c0d722008-04-19 01:31:11 -0700481 for (i = 0; i < ARRAY_SIZE(bus_dev_ranges); i++) {
482 int bus;
483 int dev_base, dev_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Yinghai Lu55c0d722008-04-19 01:31:11 -0700485 bus = bus_dev_ranges[i].bus;
486 dev_base = bus_dev_ranges[i].dev_base;
487 dev_limit = bus_dev_ranges[i].dev_limit;
488 for (slot = dev_base; slot < dev_limit; slot++) {
489 if (!early_is_k8_nb(read_pci_config(bus, slot, 3, 0x00)))
490 continue;
491
492 /* Don't enable translation yet. That is done later.
493 Assume this BIOS didn't initialise the GART so
494 just overwrite all previous bits */
495 write_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL, aper_order << 1);
496 write_pci_config(bus, slot, 3, AMD64_GARTAPERTUREBASE, aper_alloc >> 25);
497 }
Ingo Molnarc140df92008-01-30 13:30:09 +0100498 }
Rafael J. Wysocki6703f6d2008-06-10 00:10:48 +0200499
500 set_up_gart_resume(aper_order, aper_alloc);
Ingo Molnarc140df92008-01-30 13:30:09 +0100501}