x86/paravirt: Move the Xen-only pv_cpu_ops under the PARAVIRT_XXL umbrella
[linux-2.6-block.git] / arch / x86 / kernel / aperture_64.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
c140df97 2/*
1da177e4 3 * Firmware replacement code.
c140df97 4 *
8caac563
PM
5 * Work around broken BIOSes that don't set an aperture, only set the
6 * aperture in the AGP bridge, or set too small aperture.
7 *
c140df97
IM
8 * If all fails map the aperture over some low memory. This is cheaper than
9 * doing bounce buffering. The memory is lost. This is done at early boot
10 * because only the bootmem allocator can allocate 32+MB.
11 *
1da177e4 12 * Copyright 2002 Andi Kleen, SuSE Labs.
1da177e4 13 */
a5d3244a
BH
14#define pr_fmt(fmt) "AGP: " fmt
15
1da177e4
LT
16#include <linux/kernel.h>
17#include <linux/types.h>
18#include <linux/init.h>
32e3f2b0 19#include <linux/memblock.h>
1da177e4
LT
20#include <linux/mmzone.h>
21#include <linux/pci_ids.h>
22#include <linux/pci.h>
23#include <linux/bitops.h>
2050d45d 24#include <linux/suspend.h>
66441bd3 25#include <asm/e820/api.h>
1da177e4 26#include <asm/io.h>
46a7fa27 27#include <asm/iommu.h>
395624fc 28#include <asm/gart.h>
1da177e4 29#include <asm/pci-direct.h>
ca8642f6 30#include <asm/dma.h>
23ac4ae8 31#include <asm/amd_nb.h>
de957628 32#include <asm/x86_init.h>
2a3e83c6 33#include <linux/crash_dump.h>
1da177e4 34
c387aa3a
JR
35/*
36 * Using 512M as goal, in case kexec will load kernel_big
37 * that will do the on-position decompress, and could overlap with
38 * with the gart aperture that is used.
39 * Sequence:
40 * kernel_small
41 * ==> kexec (with kdump trigger path or gart still enabled)
42 * ==> kernel_small (gart area become e820_reserved)
43 * ==> kexec (with kdump trigger path or gart still enabled)
44 * ==> kerne_big (uncompressed size will be big than 64M or 128M)
45 * So don't use 512M below as gart iommu, leave the space for kernel
46 * code for safe.
47 */
48#define GART_MIN_ADDR (512ULL << 20)
49#define GART_MAX_ADDR (1ULL << 32)
50
0440d4c0 51int gart_iommu_aperture;
7de6a4cd
PM
52int gart_iommu_aperture_disabled __initdata;
53int gart_iommu_aperture_allowed __initdata;
1da177e4
LT
54
55int fallback_aper_order __initdata = 1; /* 64MB */
7de6a4cd 56int fallback_aper_force __initdata;
1da177e4
LT
57
58int fix_aperture __initdata = 1;
59
2a3e83c6
JB
60#ifdef CONFIG_PROC_VMCORE
61/*
62 * If the first kernel maps the aperture over e820 RAM, the kdump kernel will
63 * use the same range because it will remain configured in the northbridge.
64 * Trying to dump this area via /proc/vmcore may crash the machine, so exclude
65 * it from vmcore.
66 */
67static unsigned long aperture_pfn_start, aperture_page_count;
68
69static int gart_oldmem_pfn_is_ram(unsigned long pfn)
70{
71 return likely((pfn < aperture_pfn_start) ||
72 (pfn >= aperture_pfn_start + aperture_page_count));
73}
74
75static void exclude_from_vmcore(u64 aper_base, u32 aper_order)
76{
77 aperture_pfn_start = aper_base >> PAGE_SHIFT;
78 aperture_page_count = (32 * 1024 * 1024) << aper_order >> PAGE_SHIFT;
79 WARN_ON(register_oldmem_pfn_is_ram(&gart_oldmem_pfn_is_ram));
80}
81#else
82static void exclude_from_vmcore(u64 aper_base, u32 aper_order)
83{
84}
85#endif
86
42442ed5
AM
87/* This code runs before the PCI subsystem is initialized, so just
88 access the northbridge directly. */
1da177e4 89
c140df97 90static u32 __init allocate_aperture(void)
1da177e4 91{
1da177e4 92 u32 aper_size;
32e3f2b0 93 unsigned long addr;
1da177e4 94
7677b2ef
YL
95 /* aper_size should <= 1G */
96 if (fallback_aper_order > 5)
97 fallback_aper_order = 5;
c140df97 98 aper_size = (32 * 1024 * 1024) << fallback_aper_order;
1da177e4 99
c140df97
IM
100 /*
101 * Aperture has to be naturally aligned. This means a 2GB aperture
102 * won't have much chance of finding a place in the lower 4GB of
103 * memory. Unfortunately we cannot move it up because that would
104 * make the IOMMU useless.
1da177e4 105 */
c387aa3a
JR
106 addr = memblock_find_in_range(GART_MIN_ADDR, GART_MAX_ADDR,
107 aper_size, aper_size);
26bfc540 108 if (!addr) {
c96ec953
BH
109 pr_err("Cannot allocate aperture memory hole [mem %#010lx-%#010lx] (%uKB)\n",
110 addr, addr + aper_size - 1, aper_size >> 10);
32e3f2b0
YL
111 return 0;
112 }
24aa0788 113 memblock_reserve(addr, aper_size);
c96ec953
BH
114 pr_info("Mapping aperture over RAM [mem %#010lx-%#010lx] (%uKB)\n",
115 addr, addr + aper_size - 1, aper_size >> 10);
32e3f2b0
YL
116 register_nosave_region(addr >> PAGE_SHIFT,
117 (addr+aper_size) >> PAGE_SHIFT);
c140df97 118
32e3f2b0 119 return (u32)addr;
1da177e4
LT
120}
121
1da177e4 122
42442ed5 123/* Find a PCI capability */
dd564d0c 124static u32 __init find_cap(int bus, int slot, int func, int cap)
c140df97 125{
1da177e4 126 int bytes;
c140df97
IM
127 u8 pos;
128
55c0d721 129 if (!(read_pci_config_16(bus, slot, func, PCI_STATUS) &
c140df97 130 PCI_STATUS_CAP_LIST))
1da177e4 131 return 0;
c140df97 132
55c0d721 133 pos = read_pci_config_byte(bus, slot, func, PCI_CAPABILITY_LIST);
c140df97 134 for (bytes = 0; bytes < 48 && pos >= 0x40; bytes++) {
1da177e4 135 u8 id;
c140df97
IM
136
137 pos &= ~3;
55c0d721 138 id = read_pci_config_byte(bus, slot, func, pos+PCI_CAP_LIST_ID);
1da177e4
LT
139 if (id == 0xff)
140 break;
c140df97
IM
141 if (id == cap)
142 return pos;
55c0d721 143 pos = read_pci_config_byte(bus, slot, func,
c140df97
IM
144 pos+PCI_CAP_LIST_NEXT);
145 }
1da177e4 146 return 0;
c140df97 147}
1da177e4
LT
148
149/* Read a standard AGPv3 bridge header */
dd564d0c 150static u32 __init read_agp(int bus, int slot, int func, int cap, u32 *order)
c140df97 151{
1da177e4
LT
152 u32 apsize;
153 u32 apsizereg;
154 int nbits;
155 u32 aper_low, aper_hi;
156 u64 aper;
1edc1ab3 157 u32 old_order;
1da177e4 158
c96ec953 159 pr_info("pci 0000:%02x:%02x:%02x: AGP bridge\n", bus, slot, func);
55c0d721 160 apsizereg = read_pci_config_16(bus, slot, func, cap + 0x14);
1da177e4 161 if (apsizereg == 0xffffffff) {
c96ec953
BH
162 pr_err("pci 0000:%02x:%02x.%d: APSIZE unreadable\n",
163 bus, slot, func);
1da177e4
LT
164 return 0;
165 }
166
1edc1ab3
YL
167 /* old_order could be the value from NB gart setting */
168 old_order = *order;
169
1da177e4
LT
170 apsize = apsizereg & 0xfff;
171 /* Some BIOS use weird encodings not in the AGPv3 table. */
c140df97
IM
172 if (apsize & 0xff)
173 apsize |= 0xf00;
1da177e4
LT
174 nbits = hweight16(apsize);
175 *order = 7 - nbits;
176 if ((int)*order < 0) /* < 32MB */
177 *order = 0;
c140df97 178
55c0d721
YL
179 aper_low = read_pci_config(bus, slot, func, 0x10);
180 aper_hi = read_pci_config(bus, slot, func, 0x14);
1da177e4
LT
181 aper = (aper_low & ~((1<<22)-1)) | ((u64)aper_hi << 32);
182
1edc1ab3
YL
183 /*
184 * On some sick chips, APSIZE is 0. It means it wants 4G
185 * so let double check that order, and lets trust AMD NB settings:
186 */
c96ec953
BH
187 pr_info("pci 0000:%02x:%02x.%d: AGP aperture [bus addr %#010Lx-%#010Lx] (old size %uMB)\n",
188 bus, slot, func, aper, aper + (32ULL << (old_order + 20)) - 1,
189 32 << old_order);
8c9fd91a 190 if (aper + (32ULL<<(20 + *order)) > 0x100000000ULL) {
c96ec953
BH
191 pr_info("pci 0000:%02x:%02x.%d: AGP aperture size %uMB (APSIZE %#x) is not right, using settings from NB\n",
192 bus, slot, func, 32 << *order, apsizereg);
1edc1ab3
YL
193 *order = old_order;
194 }
195
c96ec953
BH
196 pr_info("pci 0000:%02x:%02x.%d: AGP aperture [bus addr %#010Lx-%#010Lx] (%uMB, APSIZE %#x)\n",
197 bus, slot, func, aper, aper + (32ULL << (*order + 20)) - 1,
a5d3244a 198 32 << *order, apsizereg);
1da177e4 199
8c9fd91a 200 if (!aperture_valid(aper, (32*1024*1024) << *order, 32<<20))
c140df97
IM
201 return 0;
202 return (u32)aper;
203}
1da177e4 204
c140df97
IM
205/*
206 * Look for an AGP bridge. Windows only expects the aperture in the
207 * AGP bridge and some BIOS forget to initialize the Northbridge too.
208 * Work around this here.
209 *
210 * Do an PCI bus scan by hand because we're running before the PCI
211 * subsystem.
212 *
eec1d4fa 213 * All AMD AGP bridges are AGPv3 compliant, so we can do this scan
c140df97
IM
214 * generically. It's probably overkill to always scan all slots because
215 * the AGP bridges should be always an own bus on the HT hierarchy,
216 * but do it here for future safety.
217 */
dd564d0c 218static u32 __init search_agp_bridge(u32 *order, int *valid_agp)
1da177e4 219{
55c0d721 220 int bus, slot, func;
1da177e4
LT
221
222 /* Poor man's PCI discovery */
55c0d721 223 for (bus = 0; bus < 256; bus++) {
c140df97
IM
224 for (slot = 0; slot < 32; slot++) {
225 for (func = 0; func < 8; func++) {
1da177e4
LT
226 u32 class, cap;
227 u8 type;
55c0d721 228 class = read_pci_config(bus, slot, func,
1da177e4
LT
229 PCI_CLASS_REVISION);
230 if (class == 0xffffffff)
c140df97
IM
231 break;
232
233 switch (class >> 16) {
1da177e4
LT
234 case PCI_CLASS_BRIDGE_HOST:
235 case PCI_CLASS_BRIDGE_OTHER: /* needed? */
236 /* AGP bridge? */
55c0d721 237 cap = find_cap(bus, slot, func,
c140df97 238 PCI_CAP_ID_AGP);
1da177e4
LT
239 if (!cap)
240 break;
c140df97 241 *valid_agp = 1;
55c0d721 242 return read_agp(bus, slot, func, cap,
c140df97
IM
243 order);
244 }
245
1da177e4 246 /* No multi-function device? */
55c0d721 247 type = read_pci_config_byte(bus, slot, func,
1da177e4
LT
248 PCI_HEADER_TYPE);
249 if (!(type & 0x80))
250 break;
c140df97
IM
251 }
252 }
1da177e4 253 }
a5d3244a 254 pr_info("No AGP bridge found\n");
c140df97 255
1da177e4
LT
256 return 0;
257}
258
4cc7ecb7 259static bool gart_fix_e820 __initdata = true;
aaf23042
YL
260
261static int __init parse_gart_mem(char *p)
262{
4cc7ecb7 263 return kstrtobool(p, &gart_fix_e820);
aaf23042
YL
264}
265early_param("gart_fix_e820", parse_gart_mem);
266
267void __init early_gart_iommu_check(void)
268{
269 /*
270 * in case it is enabled before, esp for kexec/kdump,
271 * previous kernel already enable that. memset called
272 * by allocate_aperture/__alloc_bootmem_nopanic cause restart.
273 * or second kernel have different position for GART hole. and new
274 * kernel could use hole as RAM that is still used by GART set by
275 * first kernel
276 * or BIOS forget to put that in reserved.
277 * try to update e820 to make that region as reserved.
278 */
fa10ba64 279 u32 agp_aper_order = 0;
f3eee542 280 int i, fix, slot, valid_agp = 0;
aaf23042
YL
281 u32 ctl;
282 u32 aper_size = 0, aper_order = 0, last_aper_order = 0;
283 u64 aper_base = 0, last_aper_base = 0;
fa5b8a30 284 int aper_enabled = 0, last_aper_enabled = 0, last_valid = 0;
aaf23042 285
1b457429
AG
286 if (!amd_gart_present())
287 return;
288
aaf23042
YL
289 if (!early_pci_allowed())
290 return;
291
fa5b8a30 292 /* This is mostly duplicate of iommu_hole_init */
fa10ba64 293 search_agp_bridge(&agp_aper_order, &valid_agp);
f3eee542 294
aaf23042 295 fix = 0;
24d9b70b 296 for (i = 0; amd_nb_bus_dev_ranges[i].dev_limit; i++) {
55c0d721
YL
297 int bus;
298 int dev_base, dev_limit;
299
24d9b70b
JB
300 bus = amd_nb_bus_dev_ranges[i].bus;
301 dev_base = amd_nb_bus_dev_ranges[i].dev_base;
302 dev_limit = amd_nb_bus_dev_ranges[i].dev_limit;
55c0d721
YL
303
304 for (slot = dev_base; slot < dev_limit; slot++) {
eec1d4fa 305 if (!early_is_amd_nb(read_pci_config(bus, slot, 3, 0x00)))
55c0d721
YL
306 continue;
307
308 ctl = read_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL);
57ab43e3 309 aper_enabled = ctl & GARTEN;
55c0d721
YL
310 aper_order = (ctl >> 1) & 7;
311 aper_size = (32 * 1024 * 1024) << aper_order;
312 aper_base = read_pci_config(bus, slot, 3, AMD64_GARTAPERTUREBASE) & 0x7fff;
313 aper_base <<= 25;
314
fa5b8a30
PM
315 if (last_valid) {
316 if ((aper_order != last_aper_order) ||
317 (aper_base != last_aper_base) ||
318 (aper_enabled != last_aper_enabled)) {
319 fix = 1;
320 break;
321 }
55c0d721 322 }
fa5b8a30 323
55c0d721
YL
324 last_aper_order = aper_order;
325 last_aper_base = aper_base;
326 last_aper_enabled = aper_enabled;
fa5b8a30 327 last_valid = 1;
aaf23042 328 }
aaf23042
YL
329 }
330
331 if (!fix && !aper_enabled)
332 return;
333
334 if (!aper_base || !aper_size || aper_base + aper_size > 0x100000000UL)
335 fix = 1;
336
337 if (gart_fix_e820 && !fix && aper_enabled) {
3bce64f0 338 if (e820__mapped_any(aper_base, aper_base + aper_size,
09821ff1 339 E820_TYPE_RAM)) {
0abbc78a 340 /* reserve it, so we can reuse it in second kernel */
c96ec953
BH
341 pr_info("e820: reserve [mem %#010Lx-%#010Lx] for GART\n",
342 aper_base, aper_base + aper_size - 1);
09821ff1 343 e820__range_add(aper_base, aper_size, E820_TYPE_RESERVED);
6464d294 344 e820__update_table_print();
aaf23042 345 }
aaf23042
YL
346 }
347
f3eee542 348 if (valid_agp)
4f384f8b
PM
349 return;
350
f3eee542 351 /* disable them all at first */
24d9b70b 352 for (i = 0; i < amd_nb_bus_dev_ranges[i].dev_limit; i++) {
55c0d721
YL
353 int bus;
354 int dev_base, dev_limit;
355
24d9b70b
JB
356 bus = amd_nb_bus_dev_ranges[i].bus;
357 dev_base = amd_nb_bus_dev_ranges[i].dev_base;
358 dev_limit = amd_nb_bus_dev_ranges[i].dev_limit;
aaf23042 359
55c0d721 360 for (slot = dev_base; slot < dev_limit; slot++) {
eec1d4fa 361 if (!early_is_amd_nb(read_pci_config(bus, slot, 3, 0x00)))
55c0d721
YL
362 continue;
363
364 ctl = read_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL);
57ab43e3 365 ctl &= ~GARTEN;
55c0d721
YL
366 write_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL, ctl);
367 }
aaf23042
YL
368 }
369
370}
371
8c9fd91a
YL
372static int __initdata printed_gart_size_msg;
373
480125ba 374int __init gart_iommu_hole_init(void)
c140df97 375{
8c9fd91a 376 u32 agp_aper_base = 0, agp_aper_order = 0;
50895c5d 377 u32 aper_size, aper_alloc = 0, aper_order = 0, last_aper_order = 0;
1da177e4 378 u64 aper_base, last_aper_base = 0;
55c0d721
YL
379 int fix, slot, valid_agp = 0;
380 int i, node;
1da177e4 381
1b457429
AG
382 if (!amd_gart_present())
383 return -ENODEV;
384
0440d4c0
JR
385 if (gart_iommu_aperture_disabled || !fix_aperture ||
386 !early_pci_allowed())
480125ba 387 return -ENODEV;
1da177e4 388
a5d3244a 389 pr_info("Checking aperture...\n");
1da177e4 390
8c9fd91a
YL
391 if (!fallback_aper_force)
392 agp_aper_base = search_agp_bridge(&agp_aper_order, &valid_agp);
393
1da177e4 394 fix = 0;
47db4c3e 395 node = 0;
24d9b70b 396 for (i = 0; i < amd_nb_bus_dev_ranges[i].dev_limit; i++) {
55c0d721
YL
397 int bus;
398 int dev_base, dev_limit;
4b83873d 399 u32 ctl;
55c0d721 400
24d9b70b
JB
401 bus = amd_nb_bus_dev_ranges[i].bus;
402 dev_base = amd_nb_bus_dev_ranges[i].dev_base;
403 dev_limit = amd_nb_bus_dev_ranges[i].dev_limit;
55c0d721
YL
404
405 for (slot = dev_base; slot < dev_limit; slot++) {
eec1d4fa 406 if (!early_is_amd_nb(read_pci_config(bus, slot, 3, 0x00)))
55c0d721
YL
407 continue;
408
409 iommu_detected = 1;
410 gart_iommu_aperture = 1;
de957628 411 x86_init.iommu.iommu_init = gart_iommu_init;
55c0d721 412
4b83873d
JR
413 ctl = read_pci_config(bus, slot, 3,
414 AMD64_GARTAPERTURECTL);
415
416 /*
417 * Before we do anything else disable the GART. It may
418 * still be enabled if we boot into a crash-kernel here.
419 * Reconfiguring the GART while it is enabled could have
420 * unknown side-effects.
421 */
422 ctl &= ~GARTEN;
423 write_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL, ctl);
424
425 aper_order = (ctl >> 1) & 7;
55c0d721
YL
426 aper_size = (32 * 1024 * 1024) << aper_order;
427 aper_base = read_pci_config(bus, slot, 3, AMD64_GARTAPERTUREBASE) & 0x7fff;
428 aper_base <<= 25;
429
c96ec953
BH
430 pr_info("Node %d: aperture [bus addr %#010Lx-%#010Lx] (%uMB)\n",
431 node, aper_base, aper_base + aper_size - 1,
432 aper_size >> 20);
55c0d721
YL
433 node++;
434
435 if (!aperture_valid(aper_base, aper_size, 64<<20)) {
436 if (valid_agp && agp_aper_base &&
437 agp_aper_base == aper_base &&
438 agp_aper_order == aper_order) {
439 /* the same between two setting from NB and agp */
c987d12f
YL
440 if (!no_iommu &&
441 max_pfn > MAX_DMA32_PFN &&
442 !printed_gart_size_msg) {
c96ec953 443 pr_err("you are using iommu with agp, but GART size is less than 64MB\n");
a5d3244a
BH
444 pr_err("please increase GART size in your BIOS setup\n");
445 pr_err("if BIOS doesn't have that option, contact your HW vendor!\n");
55c0d721
YL
446 printed_gart_size_msg = 1;
447 }
448 } else {
449 fix = 1;
450 goto out;
8c9fd91a 451 }
8c9fd91a 452 }
1da177e4 453
55c0d721
YL
454 if ((last_aper_order && aper_order != last_aper_order) ||
455 (last_aper_base && aper_base != last_aper_base)) {
456 fix = 1;
457 goto out;
458 }
459 last_aper_order = aper_order;
460 last_aper_base = aper_base;
1da177e4 461 }
c140df97 462 }
1da177e4 463
55c0d721 464out:
56dd669a 465 if (!fix && !fallback_aper_force) {
2a3e83c6
JB
466 if (last_aper_base) {
467 /*
468 * If this is the kdump kernel, the first kernel
469 * may have allocated the range over its e820 RAM
470 * and fixed up the northbridge
471 */
472 exclude_from_vmcore(last_aper_base, last_aper_order);
473
480125ba 474 return 1;
2a3e83c6 475 }
480125ba 476 return 0;
56dd669a 477 }
1da177e4 478
8c9fd91a
YL
479 if (!fallback_aper_force) {
480 aper_alloc = agp_aper_base;
481 aper_order = agp_aper_order;
482 }
c140df97
IM
483
484 if (aper_alloc) {
1da177e4 485 /* Got the aperture from the AGP bridge */
c987d12f 486 } else if ((!no_iommu && max_pfn > MAX_DMA32_PFN) ||
1da177e4
LT
487 force_iommu ||
488 valid_agp ||
c140df97 489 fallback_aper_force) {
1b457429 490 pr_info("Your BIOS doesn't leave an aperture memory hole\n");
a5d3244a 491 pr_info("Please enable the IOMMU option in the BIOS setup\n");
c96ec953 492 pr_info("This costs you %dMB of RAM\n",
a5d3244a 493 32 << fallback_aper_order);
1da177e4
LT
494
495 aper_order = fallback_aper_order;
496 aper_alloc = allocate_aperture();
c140df97
IM
497 if (!aper_alloc) {
498 /*
499 * Could disable AGP and IOMMU here, but it's
500 * probably not worth it. But the later users
501 * cannot deal with bad apertures and turning
502 * on the aperture over memory causes very
503 * strange problems, so it's better to panic
504 * early.
505 */
1da177e4
LT
506 panic("Not enough memory for aperture");
507 }
c140df97 508 } else {
480125ba 509 return 0;
c140df97 510 }
1da177e4 511
2a3e83c6
JB
512 /*
513 * If this is the kdump kernel _and_ the first kernel did not
514 * configure the aperture in the northbridge, this range may
515 * overlap with the first kernel's memory. We can't access the
516 * range through vmcore even though it should be part of the dump.
517 */
518 exclude_from_vmcore(aper_alloc, aper_order);
519
1da177e4 520 /* Fix up the north bridges */
24d9b70b 521 for (i = 0; i < amd_nb_bus_dev_ranges[i].dev_limit; i++) {
260133ab
BP
522 int bus, dev_base, dev_limit;
523
524 /*
525 * Don't enable translation yet but enable GART IO and CPU
526 * accesses and set DISTLBWALKPRB since GART table memory is UC.
527 */
c34151a7 528 u32 ctl = aper_order << 1;
55c0d721 529
24d9b70b
JB
530 bus = amd_nb_bus_dev_ranges[i].bus;
531 dev_base = amd_nb_bus_dev_ranges[i].dev_base;
532 dev_limit = amd_nb_bus_dev_ranges[i].dev_limit;
55c0d721 533 for (slot = dev_base; slot < dev_limit; slot++) {
eec1d4fa 534 if (!early_is_amd_nb(read_pci_config(bus, slot, 3, 0x00)))
55c0d721
YL
535 continue;
536
260133ab 537 write_pci_config(bus, slot, 3, AMD64_GARTAPERTURECTL, ctl);
55c0d721
YL
538 write_pci_config(bus, slot, 3, AMD64_GARTAPERTUREBASE, aper_alloc >> 25);
539 }
c140df97 540 }
6703f6d1
RW
541
542 set_up_gart_resume(aper_order, aper_alloc);
480125ba
KRW
543
544 return 1;
c140df97 545}