2 * Copyright 2001-2003 SuSE Labs.
3 * Distributed under the GNU public license, v2.
5 * This is a GART driver for the AMD Opteron/Athlon64 on-CPU northbridge.
6 * It also includes support for the AMD 8151 AGP bridge,
7 * although it doesn't actually do much, as all the real
8 * work is done in the northbridge(s).
11 #include <linux/module.h>
12 #include <linux/pci.h>
13 #include <linux/init.h>
14 #include <linux/agp_backend.h>
15 #include <linux/mmzone.h>
16 #include <asm/page.h> /* PAGE_SIZE */
22 /* NVIDIA K8 registers */
23 #define NVIDIA_X86_64_0_APBASE 0x10
24 #define NVIDIA_X86_64_1_APBASE1 0x50
25 #define NVIDIA_X86_64_1_APLIMIT1 0x54
26 #define NVIDIA_X86_64_1_APSIZE 0xa8
27 #define NVIDIA_X86_64_1_APBASE2 0xd8
28 #define NVIDIA_X86_64_1_APLIMIT2 0xdc
30 /* ULi K8 registers */
31 #define ULI_X86_64_BASE_ADDR 0x10
32 #define ULI_X86_64_HTT_FEA_REG 0x50
33 #define ULI_X86_64_ENU_SCR_REG 0x54
35 static struct resource
*aperture_resource
;
36 static int __initdata agp_try_unsupported
= 1;
37 static int agp_bridges_found
;
39 static void amd64_tlbflush(struct agp_memory
*temp
)
44 static int amd64_insert_memory(struct agp_memory
*mem
, off_t pg_start
, int type
)
46 int i
, j
, num_entries
;
49 struct agp_bridge_data
*bridge
= mem
->bridge
;
52 num_entries
= agp_num_entries();
54 if (type
!= mem
->type
)
56 mask_type
= bridge
->driver
->agp_type_to_mask_type(bridge
, type
);
61 /* Make sure we can fit the range in the gatt table. */
62 /* FIXME: could wrap */
63 if (((unsigned long)pg_start
+ mem
->page_count
) > num_entries
)
68 /* gatt table should be empty. */
69 while (j
< (pg_start
+ mem
->page_count
)) {
70 if (!PGE_EMPTY(agp_bridge
, readl(agp_bridge
->gatt_table
+j
)))
75 if (!mem
->is_flushed
) {
77 mem
->is_flushed
= true;
80 for (i
= 0, j
= pg_start
; i
< mem
->page_count
; i
++, j
++) {
81 tmp
= agp_bridge
->driver
->mask_memory(agp_bridge
,
82 page_to_phys(mem
->pages
[i
]),
85 BUG_ON(tmp
& 0xffffff0000000ffcULL
);
86 pte
= (tmp
& 0x000000ff00000000ULL
) >> 28;
87 pte
|=(tmp
& 0x00000000fffff000ULL
);
88 pte
|= GPTE_VALID
| GPTE_COHERENT
;
90 writel(pte
, agp_bridge
->gatt_table
+j
);
91 readl(agp_bridge
->gatt_table
+j
); /* PCI Posting. */
98 * This hack alters the order element according
99 * to the size of a long. It sucks. I totally disown this, even
100 * though it does appear to work for the most part.
102 static struct aper_size_info_32 amd64_aperture_sizes
[7] =
104 {32, 8192, 3+(sizeof(long)/8), 0 },
105 {64, 16384, 4+(sizeof(long)/8), 1<<1 },
106 {128, 32768, 5+(sizeof(long)/8), 1<<2 },
107 {256, 65536, 6+(sizeof(long)/8), 1<<1 | 1<<2 },
108 {512, 131072, 7+(sizeof(long)/8), 1<<3 },
109 {1024, 262144, 8+(sizeof(long)/8), 1<<1 | 1<<3},
110 {2048, 524288, 9+(sizeof(long)/8), 1<<2 | 1<<3}
115 * Get the current Aperture size from the x86-64.
116 * Note, that there may be multiple x86-64's, but we just return
117 * the value from the first one we find. The set_size functions
118 * keep the rest coherent anyway. Or at least should do.
120 static int amd64_fetch_size(void)
125 struct aper_size_info_32
*values
;
127 dev
= k8_northbridges
[0];
131 pci_read_config_dword(dev
, AMD64_GARTAPERTURECTL
, &temp
);
133 values
= A_SIZE_32(amd64_aperture_sizes
);
135 for (i
= 0; i
< agp_bridge
->driver
->num_aperture_sizes
; i
++) {
136 if (temp
== values
[i
].size_value
) {
137 agp_bridge
->previous_size
=
138 agp_bridge
->current_size
= (void *) (values
+ i
);
140 agp_bridge
->aperture_size_idx
= i
;
141 return values
[i
].size
;
148 * In a multiprocessor x86-64 system, this function gets
149 * called once for each CPU.
151 static u64
amd64_configure(struct pci_dev
*hammer
, u64 gatt_table
)
157 /* Address to map to */
158 pci_read_config_dword(hammer
, AMD64_GARTAPERTUREBASE
, &tmp
);
159 aperturebase
= tmp
<< 25;
160 aper_base
= (aperturebase
& PCI_BASE_ADDRESS_MEM_MASK
);
162 enable_gart_translation(hammer
, gatt_table
);
168 static const struct aper_size_info_32 amd_8151_sizes
[7] =
170 {2048, 524288, 9, 0x00000000 }, /* 0 0 0 0 0 0 */
171 {1024, 262144, 8, 0x00000400 }, /* 1 0 0 0 0 0 */
172 {512, 131072, 7, 0x00000600 }, /* 1 1 0 0 0 0 */
173 {256, 65536, 6, 0x00000700 }, /* 1 1 1 0 0 0 */
174 {128, 32768, 5, 0x00000720 }, /* 1 1 1 1 0 0 */
175 {64, 16384, 4, 0x00000730 }, /* 1 1 1 1 1 0 */
176 {32, 8192, 3, 0x00000738 } /* 1 1 1 1 1 1 */
179 static int amd_8151_configure(void)
181 unsigned long gatt_bus
= virt_to_phys(agp_bridge
->gatt_table_real
);
184 /* Configure AGP regs in each x86-64 host bridge. */
185 for (i
= 0; i
< num_k8_northbridges
; i
++) {
186 agp_bridge
->gart_bus_addr
=
187 amd64_configure(k8_northbridges
[i
], gatt_bus
);
194 static void amd64_cleanup(void)
198 for (i
= 0; i
< num_k8_northbridges
; i
++) {
199 struct pci_dev
*dev
= k8_northbridges
[i
];
200 /* disable gart translation */
201 pci_read_config_dword(dev
, AMD64_GARTAPERTURECTL
, &tmp
);
202 tmp
&= ~AMD64_GARTEN
;
203 pci_write_config_dword(dev
, AMD64_GARTAPERTURECTL
, tmp
);
208 static const struct agp_bridge_driver amd_8151_driver
= {
209 .owner
= THIS_MODULE
,
210 .aperture_sizes
= amd_8151_sizes
,
211 .size_type
= U32_APER_SIZE
,
212 .num_aperture_sizes
= 7,
213 .configure
= amd_8151_configure
,
214 .fetch_size
= amd64_fetch_size
,
215 .cleanup
= amd64_cleanup
,
216 .tlb_flush
= amd64_tlbflush
,
217 .mask_memory
= agp_generic_mask_memory
,
219 .agp_enable
= agp_generic_enable
,
220 .cache_flush
= global_cache_flush
,
221 .create_gatt_table
= agp_generic_create_gatt_table
,
222 .free_gatt_table
= agp_generic_free_gatt_table
,
223 .insert_memory
= amd64_insert_memory
,
224 .remove_memory
= agp_generic_remove_memory
,
225 .alloc_by_type
= agp_generic_alloc_by_type
,
226 .free_by_type
= agp_generic_free_by_type
,
227 .agp_alloc_page
= agp_generic_alloc_page
,
228 .agp_alloc_pages
= agp_generic_alloc_pages
,
229 .agp_destroy_page
= agp_generic_destroy_page
,
230 .agp_destroy_pages
= agp_generic_destroy_pages
,
231 .agp_type_to_mask_type
= agp_generic_type_to_mask_type
,
234 /* Some basic sanity checks for the aperture. */
235 static int __devinit
agp_aperture_valid(u64 aper
, u32 size
)
237 if (!aperture_valid(aper
, size
, 32*1024*1024))
240 /* Request the Aperture. This catches cases when someone else
241 already put a mapping in there - happens with some very broken BIOS
243 Maybe better to use pci_assign_resource/pci_enable_device instead
244 trusting the bridges? */
245 if (!aperture_resource
&&
246 !(aperture_resource
= request_mem_region(aper
, size
, "aperture"))) {
247 printk(KERN_ERR PFX
"Aperture conflicts with PCI mapping.\n");
254 * W*s centric BIOS sometimes only set up the aperture in the AGP
255 * bridge, not the northbridge. On AMD64 this is handled early
256 * in aperture.c, but when IOMMU is not enabled or we run
257 * on a 32bit kernel this needs to be redone.
258 * Unfortunately it is impossible to fix the aperture here because it's too late
259 * to allocate that much memory. But at least error out cleanly instead of
262 static __devinit
int fix_northbridge(struct pci_dev
*nb
, struct pci_dev
*agp
,
265 u32 aper_low
, aper_hi
;
268 u32 nb_order
, nb_base
;
271 pci_read_config_dword(nb
, AMD64_GARTAPERTURECTL
, &nb_order
);
272 nb_order
= (nb_order
>> 1) & 7;
273 pci_read_config_dword(nb
, AMD64_GARTAPERTUREBASE
, &nb_base
);
274 nb_aper
= nb_base
<< 25;
276 /* Northbridge seems to contain crap. Try the AGP bridge. */
278 pci_read_config_word(agp
, cap
+0x14, &apsize
);
279 if (apsize
== 0xffff) {
280 if (agp_aperture_valid(nb_aper
, (32*1024*1024)<<nb_order
))
286 /* Some BIOS use weird encodings not in the AGPv3 table. */
289 order
= 7 - hweight16(apsize
);
291 pci_read_config_dword(agp
, 0x10, &aper_low
);
292 pci_read_config_dword(agp
, 0x14, &aper_hi
);
293 aper
= (aper_low
& ~((1<<22)-1)) | ((u64
)aper_hi
<< 32);
296 * On some sick chips APSIZE is 0. This means it wants 4G
297 * so let double check that order, and lets trust the AMD NB settings
299 if (order
>=0 && aper
+ (32ULL<<(20 + order
)) > 0x100000000ULL
) {
300 dev_info(&agp
->dev
, "aperture size %u MB is not right, using settings from NB\n",
305 if (nb_order
>= order
) {
306 if (agp_aperture_valid(nb_aper
, (32*1024*1024)<<nb_order
))
310 dev_info(&agp
->dev
, "aperture from AGP @ %Lx size %u MB\n",
312 if (order
< 0 || !agp_aperture_valid(aper
, (32*1024*1024)<<order
))
315 pci_write_config_dword(nb
, AMD64_GARTAPERTURECTL
, order
<< 1);
316 pci_write_config_dword(nb
, AMD64_GARTAPERTUREBASE
, aper
>> 25);
321 static __devinit
int cache_nbs (struct pci_dev
*pdev
, u32 cap_ptr
)
325 if (cache_k8_northbridges() < 0)
329 for (i
= 0; i
< num_k8_northbridges
; i
++) {
330 struct pci_dev
*dev
= k8_northbridges
[i
];
331 if (fix_northbridge(dev
, pdev
, cap_ptr
) < 0) {
332 dev_err(&dev
->dev
, "no usable aperture found\n");
334 /* should port this to i386 */
335 dev_err(&dev
->dev
, "consider rebooting with iommu=memaper=2 to get a good aperture\n");
343 /* Handle AMD 8151 quirks */
344 static void __devinit
amd8151_init(struct pci_dev
*pdev
, struct agp_bridge_data
*bridge
)
348 switch (pdev
->revision
) {
349 case 0x01: revstring
="A0"; break;
350 case 0x02: revstring
="A1"; break;
351 case 0x11: revstring
="B0"; break;
352 case 0x12: revstring
="B1"; break;
353 case 0x13: revstring
="B2"; break;
354 case 0x14: revstring
="B3"; break;
355 default: revstring
="??"; break;
358 dev_info(&pdev
->dev
, "AMD 8151 AGP Bridge rev %s\n", revstring
);
361 * Work around errata.
362 * Chips before B2 stepping incorrectly reporting v3.5
364 if (pdev
->revision
< 0x13) {
365 dev_info(&pdev
->dev
, "correcting AGP revision (reports 3.5, is really 3.0)\n");
366 bridge
->major_version
= 3;
367 bridge
->minor_version
= 0;
372 static const struct aper_size_info_32 uli_sizes
[7] =
382 static int __devinit
uli_agp_init(struct pci_dev
*pdev
)
384 u32 httfea
,baseaddr
,enuscr
;
385 struct pci_dev
*dev1
;
387 unsigned size
= amd64_fetch_size();
389 dev_info(&pdev
->dev
, "setting up ULi AGP\n");
390 dev1
= pci_get_slot (pdev
->bus
,PCI_DEVFN(0,0));
392 dev_info(&pdev
->dev
, "can't find ULi secondary device\n");
396 for (i
= 0; i
< ARRAY_SIZE(uli_sizes
); i
++)
397 if (uli_sizes
[i
].size
== size
)
400 if (i
== ARRAY_SIZE(uli_sizes
)) {
401 dev_info(&pdev
->dev
, "no ULi size found for %d\n", size
);
405 /* shadow x86-64 registers into ULi registers */
406 pci_read_config_dword (k8_northbridges
[0], AMD64_GARTAPERTUREBASE
, &httfea
);
408 /* if x86-64 aperture base is beyond 4G, exit here */
409 if ((httfea
& 0x7fff) >> (32 - 25))
412 httfea
= (httfea
& 0x7fff) << 25;
414 pci_read_config_dword(pdev
, ULI_X86_64_BASE_ADDR
, &baseaddr
);
415 baseaddr
&= ~PCI_BASE_ADDRESS_MEM_MASK
;
417 pci_write_config_dword(pdev
, ULI_X86_64_BASE_ADDR
, baseaddr
);
419 enuscr
= httfea
+ (size
* 1024 * 1024) - 1;
420 pci_write_config_dword(dev1
, ULI_X86_64_HTT_FEA_REG
, httfea
);
421 pci_write_config_dword(dev1
, ULI_X86_64_ENU_SCR_REG
, enuscr
);
428 static const struct aper_size_info_32 nforce3_sizes
[5] =
430 {512, 131072, 7, 0x00000000 },
431 {256, 65536, 6, 0x00000008 },
432 {128, 32768, 5, 0x0000000C },
433 {64, 16384, 4, 0x0000000E },
434 {32, 8192, 3, 0x0000000F }
437 /* Handle shadow device of the Nvidia NForce3 */
438 /* CHECK-ME original 2.4 version set up some IORRs. Check if that is needed. */
439 static int nforce3_agp_init(struct pci_dev
*pdev
)
441 u32 tmp
, apbase
, apbar
, aplimit
;
442 struct pci_dev
*dev1
;
444 unsigned size
= amd64_fetch_size();
446 dev_info(&pdev
->dev
, "setting up Nforce3 AGP\n");
448 dev1
= pci_get_slot(pdev
->bus
, PCI_DEVFN(11, 0));
450 dev_info(&pdev
->dev
, "can't find Nforce3 secondary device\n");
454 for (i
= 0; i
< ARRAY_SIZE(nforce3_sizes
); i
++)
455 if (nforce3_sizes
[i
].size
== size
)
458 if (i
== ARRAY_SIZE(nforce3_sizes
)) {
459 dev_info(&pdev
->dev
, "no NForce3 size found for %d\n", size
);
463 pci_read_config_dword(dev1
, NVIDIA_X86_64_1_APSIZE
, &tmp
);
465 tmp
|= nforce3_sizes
[i
].size_value
;
466 pci_write_config_dword(dev1
, NVIDIA_X86_64_1_APSIZE
, tmp
);
468 /* shadow x86-64 registers into NVIDIA registers */
469 pci_read_config_dword (k8_northbridges
[0], AMD64_GARTAPERTUREBASE
, &apbase
);
471 /* if x86-64 aperture base is beyond 4G, exit here */
472 if ( (apbase
& 0x7fff) >> (32 - 25) ) {
473 dev_info(&pdev
->dev
, "aperture base > 4G\n");
477 apbase
= (apbase
& 0x7fff) << 25;
479 pci_read_config_dword(pdev
, NVIDIA_X86_64_0_APBASE
, &apbar
);
480 apbar
&= ~PCI_BASE_ADDRESS_MEM_MASK
;
482 pci_write_config_dword(pdev
, NVIDIA_X86_64_0_APBASE
, apbar
);
484 aplimit
= apbase
+ (size
* 1024 * 1024) - 1;
485 pci_write_config_dword(dev1
, NVIDIA_X86_64_1_APBASE1
, apbase
);
486 pci_write_config_dword(dev1
, NVIDIA_X86_64_1_APLIMIT1
, aplimit
);
487 pci_write_config_dword(dev1
, NVIDIA_X86_64_1_APBASE2
, apbase
);
488 pci_write_config_dword(dev1
, NVIDIA_X86_64_1_APLIMIT2
, aplimit
);
495 static int __devinit
agp_amd64_probe(struct pci_dev
*pdev
,
496 const struct pci_device_id
*ent
)
498 struct agp_bridge_data
*bridge
;
502 cap_ptr
= pci_find_capability(pdev
, PCI_CAP_ID_AGP
);
506 /* Could check for AGPv3 here */
508 bridge
= agp_alloc_bridge();
512 if (pdev
->vendor
== PCI_VENDOR_ID_AMD
&&
513 pdev
->device
== PCI_DEVICE_ID_AMD_8151_0
) {
514 amd8151_init(pdev
, bridge
);
516 dev_info(&pdev
->dev
, "AGP bridge [%04x/%04x]\n",
517 pdev
->vendor
, pdev
->device
);
520 bridge
->driver
= &amd_8151_driver
;
522 bridge
->capndx
= cap_ptr
;
524 /* Fill in the mode register */
525 pci_read_config_dword(pdev
, bridge
->capndx
+PCI_AGP_STATUS
, &bridge
->mode
);
527 if (cache_nbs(pdev
, cap_ptr
) == -1) {
528 agp_put_bridge(bridge
);
532 if (pdev
->vendor
== PCI_VENDOR_ID_NVIDIA
) {
533 int ret
= nforce3_agp_init(pdev
);
535 agp_put_bridge(bridge
);
540 if (pdev
->vendor
== PCI_VENDOR_ID_AL
) {
541 int ret
= uli_agp_init(pdev
);
543 agp_put_bridge(bridge
);
548 pci_set_drvdata(pdev
, bridge
);
549 err
= agp_add_bridge(bridge
);
557 static void __devexit
agp_amd64_remove(struct pci_dev
*pdev
)
559 struct agp_bridge_data
*bridge
= pci_get_drvdata(pdev
);
561 release_mem_region(virt_to_phys(bridge
->gatt_table_real
),
562 amd64_aperture_sizes
[bridge
->aperture_size_idx
].size
);
563 agp_remove_bridge(bridge
);
564 agp_put_bridge(bridge
);
569 static int agp_amd64_suspend(struct pci_dev
*pdev
, pm_message_t state
)
571 pci_save_state(pdev
);
572 pci_set_power_state(pdev
, pci_choose_state(pdev
, state
));
577 static int agp_amd64_resume(struct pci_dev
*pdev
)
579 pci_set_power_state(pdev
, PCI_D0
);
580 pci_restore_state(pdev
);
582 if (pdev
->vendor
== PCI_VENDOR_ID_NVIDIA
)
583 nforce3_agp_init(pdev
);
585 return amd_8151_configure();
588 #endif /* CONFIG_PM */
590 static struct pci_device_id agp_amd64_pci_table
[] = {
592 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
594 .vendor
= PCI_VENDOR_ID_AMD
,
595 .device
= PCI_DEVICE_ID_AMD_8151_0
,
596 .subvendor
= PCI_ANY_ID
,
597 .subdevice
= PCI_ANY_ID
,
601 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
603 .vendor
= PCI_VENDOR_ID_AL
,
604 .device
= PCI_DEVICE_ID_AL_M1689
,
605 .subvendor
= PCI_ANY_ID
,
606 .subdevice
= PCI_ANY_ID
,
610 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
612 .vendor
= PCI_VENDOR_ID_VIA
,
613 .device
= PCI_DEVICE_ID_VIA_K8T800PRO_0
,
614 .subvendor
= PCI_ANY_ID
,
615 .subdevice
= PCI_ANY_ID
,
619 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
621 .vendor
= PCI_VENDOR_ID_VIA
,
622 .device
= PCI_DEVICE_ID_VIA_8385_0
,
623 .subvendor
= PCI_ANY_ID
,
624 .subdevice
= PCI_ANY_ID
,
626 /* VIA K8M800 / K8N800 */
628 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
630 .vendor
= PCI_VENDOR_ID_VIA
,
631 .device
= PCI_DEVICE_ID_VIA_8380_0
,
632 .subvendor
= PCI_ANY_ID
,
633 .subdevice
= PCI_ANY_ID
,
635 /* VIA K8M890 / K8N890 */
637 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
639 .vendor
= PCI_VENDOR_ID_VIA
,
640 .device
= PCI_DEVICE_ID_VIA_VT3336
,
641 .subvendor
= PCI_ANY_ID
,
642 .subdevice
= PCI_ANY_ID
,
646 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
648 .vendor
= PCI_VENDOR_ID_VIA
,
649 .device
= PCI_DEVICE_ID_VIA_3238_0
,
650 .subvendor
= PCI_ANY_ID
,
651 .subdevice
= PCI_ANY_ID
,
653 /* VIA K8T800/K8M800/K8N800 */
655 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
657 .vendor
= PCI_VENDOR_ID_VIA
,
658 .device
= PCI_DEVICE_ID_VIA_838X_1
,
659 .subvendor
= PCI_ANY_ID
,
660 .subdevice
= PCI_ANY_ID
,
664 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
666 .vendor
= PCI_VENDOR_ID_NVIDIA
,
667 .device
= PCI_DEVICE_ID_NVIDIA_NFORCE3
,
668 .subvendor
= PCI_ANY_ID
,
669 .subdevice
= PCI_ANY_ID
,
672 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
674 .vendor
= PCI_VENDOR_ID_NVIDIA
,
675 .device
= PCI_DEVICE_ID_NVIDIA_NFORCE3S
,
676 .subvendor
= PCI_ANY_ID
,
677 .subdevice
= PCI_ANY_ID
,
681 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
683 .vendor
= PCI_VENDOR_ID_SI
,
684 .device
= PCI_DEVICE_ID_SI_755
,
685 .subvendor
= PCI_ANY_ID
,
686 .subdevice
= PCI_ANY_ID
,
690 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
692 .vendor
= PCI_VENDOR_ID_SI
,
693 .device
= PCI_DEVICE_ID_SI_760
,
694 .subvendor
= PCI_ANY_ID
,
695 .subdevice
= PCI_ANY_ID
,
699 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
701 .vendor
= PCI_VENDOR_ID_AL
,
703 .subvendor
= PCI_ANY_ID
,
704 .subdevice
= PCI_ANY_ID
,
710 MODULE_DEVICE_TABLE(pci
, agp_amd64_pci_table
);
712 static struct pci_driver agp_amd64_pci_driver
= {
713 .name
= "agpgart-amd64",
714 .id_table
= agp_amd64_pci_table
,
715 .probe
= agp_amd64_probe
,
716 .remove
= agp_amd64_remove
,
718 .suspend
= agp_amd64_suspend
,
719 .resume
= agp_amd64_resume
,
724 /* Not static due to IOMMU code calling it early. */
725 int __init
agp_amd64_init(void)
731 err
= pci_register_driver(&agp_amd64_pci_driver
);
735 if (agp_bridges_found
== 0) {
737 if (!agp_try_unsupported
&& !agp_try_unsupported_boot
) {
738 printk(KERN_INFO PFX
"No supported AGP bridge found.\n");
740 printk(KERN_INFO PFX
"You can try agp_try_unsupported=1\n");
742 printk(KERN_INFO PFX
"You can boot with agp=try_unsupported\n");
747 /* First check that we have at least one AMD64 NB */
748 if (!pci_dev_present(k8_nb_ids
))
751 /* Look for any AGP bridge */
754 for_each_pci_dev(dev
) {
755 if (!pci_find_capability(dev
, PCI_CAP_ID_AGP
))
757 /* Only one bridge supported right now */
758 if (agp_amd64_probe(dev
, NULL
) == 0) {
767 static void __exit
agp_amd64_cleanup(void)
769 if (aperture_resource
)
770 release_resource(aperture_resource
);
771 pci_unregister_driver(&agp_amd64_pci_driver
);
774 /* On AMD64 the PCI driver needs to initialize this driver early
775 for the IOMMU, so it has to be called via a backdoor. */
776 #ifndef CONFIG_GART_IOMMU
777 module_init(agp_amd64_init
);
778 module_exit(agp_amd64_cleanup
);
781 MODULE_AUTHOR("Dave Jones <davej@redhat.com>, Andi Kleen");
782 module_param(agp_try_unsupported
, bool, 0);
783 MODULE_LICENSE("GPL");