blob: 0ef350010766355c933ebe7e48ce41a78656b0ac [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright 2001-2003 SuSE Labs.
3 * Distributed under the GNU public license, v2.
4 *
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).
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/pci.h>
13#include <linux/init.h>
14#include <linux/agp_backend.h>
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080015#include <linux/mmzone.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080016#include <asm/page.h> /* PAGE_SIZE */
Jan Beulichb92e9fa2007-05-02 19:27:11 +020017#include <asm/e820.h>
Andreas Herrmann23ac4ae2010-09-17 18:03:43 +020018#include <asm/amd_nb.h>
Pavel Machekaa134f12008-04-08 10:49:03 +020019#include <asm/gart.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "agp.h"
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/* 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
29
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
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static struct resource *aperture_resource;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103036static bool __initdata agp_try_unsupported = 1;
Bjorn Helgaas55814b72008-07-30 12:26:51 -070037static int agp_bridges_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039static void amd64_tlbflush(struct agp_memory *temp)
40{
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +020041 amd_flush_garts();
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
43
44static int amd64_insert_memory(struct agp_memory *mem, off_t pg_start, int type)
45{
46 int i, j, num_entries;
47 long long tmp;
Thomas Hellstroma030ce42007-01-23 10:33:43 +010048 int mask_type;
49 struct agp_bridge_data *bridge = mem->bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 u32 pte;
51
52 num_entries = agp_num_entries();
53
Thomas Hellstroma030ce42007-01-23 10:33:43 +010054 if (type != mem->type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 return -EINVAL;
Thomas Hellstroma030ce42007-01-23 10:33:43 +010056 mask_type = bridge->driver->agp_type_to_mask_type(bridge, type);
57 if (mask_type != 0)
58 return -EINVAL;
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
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)
64 return -EINVAL;
65
66 j = pg_start;
67
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)))
71 return -EBUSY;
72 j++;
73 }
74
Joe Perchesc7258012008-03-26 14:10:02 -070075 if (!mem->is_flushed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 global_cache_flush();
Joe Perchesc7258012008-03-26 14:10:02 -070077 mem->is_flushed = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79
80 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) {
81 tmp = agp_bridge->driver->mask_memory(agp_bridge,
David Woodhouse6a122352009-07-29 10:25:58 +010082 page_to_phys(mem->pages[i]),
David Woodhouse2a4ceb62009-07-27 10:27:29 +010083 mask_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 BUG_ON(tmp & 0xffffff0000000ffcULL);
86 pte = (tmp & 0x000000ff00000000ULL) >> 28;
87 pte |=(tmp & 0x00000000fffff000ULL);
88 pte |= GPTE_VALID | GPTE_COHERENT;
89
90 writel(pte, agp_bridge->gatt_table+j);
91 readl(agp_bridge->gatt_table+j); /* PCI Posting. */
92 }
93 amd64_tlbflush(mem);
94 return 0;
95}
96
97/*
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.
101 */
102static struct aper_size_info_32 amd64_aperture_sizes[7] =
103{
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}
111};
112
113
114/*
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.
119 */
120static int amd64_fetch_size(void)
121{
122 struct pci_dev *dev;
123 int i;
124 u32 temp;
125 struct aper_size_info_32 *values;
126
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +0200127 dev = node_to_amd_nb(0)->misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (dev==NULL)
129 return 0;
130
131 pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &temp);
132 temp = (temp & 0xe);
133 values = A_SIZE_32(amd64_aperture_sizes);
134
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);
139
140 agp_bridge->aperture_size_idx = i;
141 return values[i].size;
142 }
143 }
144 return 0;
145}
146
147/*
148 * In a multiprocessor x86-64 system, this function gets
149 * called once for each CPU.
150 */
Pavel Machekaa134f12008-04-08 10:49:03 +0200151static u64 amd64_configure(struct pci_dev *hammer, u64 gatt_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 u64 aperturebase;
154 u32 tmp;
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200155 u64 aper_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 /* Address to map to */
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200158 pci_read_config_dword(hammer, AMD64_GARTAPERTUREBASE, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 aperturebase = tmp << 25;
160 aper_base = (aperturebase & PCI_BASE_ADDRESS_MEM_MASK);
161
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200162 enable_gart_translation(hammer, gatt_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return aper_base;
165}
166
167
Dave Jonese5524f32007-02-22 18:41:28 -0500168static const struct aper_size_info_32 amd_8151_sizes[7] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
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 */
Dave Jones6a92a4e2006-02-28 00:54:25 -0500176 {32, 8192, 3, 0x00000738 } /* 1 1 1 1 1 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177};
178
179static int amd_8151_configure(void)
180{
David Woodhouse6a122352009-07-29 10:25:58 +0100181 unsigned long gatt_bus = virt_to_phys(agp_bridge->gatt_table_real);
Andi Kleena32073b2006-06-26 13:56:40 +0200182 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +0200184 if (!amd_nb_has_feature(AMD_NB_GART))
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200185 return 0;
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /* Configure AGP regs in each x86-64 host bridge. */
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +0200188 for (i = 0; i < amd_nb_num(); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 agp_bridge->gart_bus_addr =
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +0200190 amd64_configure(node_to_amd_nb(i)->misc, gatt_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +0200192 amd_flush_garts();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return 0;
194}
195
196
197static void amd64_cleanup(void)
198{
199 u32 tmp;
Andi Kleena32073b2006-06-26 13:56:40 +0200200 int i;
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200201
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +0200202 if (!amd_nb_has_feature(AMD_NB_GART))
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200203 return;
204
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +0200205 for (i = 0; i < amd_nb_num(); i++) {
206 struct pci_dev *dev = node_to_amd_nb(i)->misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /* disable gart translation */
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200208 pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &tmp);
Borislav Petkov57ab43e2010-09-03 18:39:39 +0200209 tmp &= ~GARTEN;
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200210 pci_write_config_dword(dev, AMD64_GARTAPERTURECTL, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212}
213
214
Dave Jonese5524f32007-02-22 18:41:28 -0500215static const struct agp_bridge_driver amd_8151_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 .owner = THIS_MODULE,
217 .aperture_sizes = amd_8151_sizes,
218 .size_type = U32_APER_SIZE,
219 .num_aperture_sizes = 7,
Jerome Glisse61cf0592010-04-20 17:43:34 +0200220 .needs_scratch_page = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 .configure = amd_8151_configure,
222 .fetch_size = amd64_fetch_size,
223 .cleanup = amd64_cleanup,
224 .tlb_flush = amd64_tlbflush,
225 .mask_memory = agp_generic_mask_memory,
226 .masks = NULL,
227 .agp_enable = agp_generic_enable,
228 .cache_flush = global_cache_flush,
229 .create_gatt_table = agp_generic_create_gatt_table,
230 .free_gatt_table = agp_generic_free_gatt_table,
231 .insert_memory = amd64_insert_memory,
232 .remove_memory = agp_generic_remove_memory,
233 .alloc_by_type = agp_generic_alloc_by_type,
234 .free_by_type = agp_generic_free_by_type,
235 .agp_alloc_page = agp_generic_alloc_page,
Rene Herman5f310b62008-08-21 19:15:46 +0200236 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 .agp_destroy_page = agp_generic_destroy_page,
Rene Herman5f310b62008-08-21 19:15:46 +0200238 .agp_destroy_pages = agp_generic_destroy_pages,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100239 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
242/* Some basic sanity checks for the aperture. */
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -0800243static int agp_aperture_valid(u64 aper, u32 size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Pavel Machek0abbc782008-05-20 16:27:17 +0200245 if (!aperture_valid(aper, size, 32*1024*1024))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 /* Request the Aperture. This catches cases when someone else
249 already put a mapping in there - happens with some very broken BIOS
250
251 Maybe better to use pci_assign_resource/pci_enable_device instead
252 trusting the bridges? */
253 if (!aperture_resource &&
254 !(aperture_resource = request_mem_region(aper, size, "aperture"))) {
255 printk(KERN_ERR PFX "Aperture conflicts with PCI mapping.\n");
256 return 0;
257 }
258 return 1;
259}
260
261/*
262 * W*s centric BIOS sometimes only set up the aperture in the AGP
263 * bridge, not the northbridge. On AMD64 this is handled early
Andi Kleena813ce42006-06-26 13:57:22 +0200264 * in aperture.c, but when IOMMU is not enabled or we run
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 * on a 32bit kernel this needs to be redone.
266 * Unfortunately it is impossible to fix the aperture here because it's too late
267 * to allocate that much memory. But at least error out cleanly instead of
268 * crashing.
269 */
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -0800270static int fix_northbridge(struct pci_dev *nb, struct pci_dev *agp, u16 cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 u64 aper, nb_aper;
273 int order = 0;
274 u32 nb_order, nb_base;
275 u16 apsize;
276
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200277 pci_read_config_dword(nb, AMD64_GARTAPERTURECTL, &nb_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 nb_order = (nb_order >> 1) & 7;
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200279 pci_read_config_dword(nb, AMD64_GARTAPERTUREBASE, &nb_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 nb_aper = nb_base << 25;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 /* Northbridge seems to contain crap. Try the AGP bridge. */
283
284 pci_read_config_word(agp, cap+0x14, &apsize);
Yinghai Lu2f688912009-03-10 12:55:50 -0700285 if (apsize == 0xffff) {
286 if (agp_aperture_valid(nb_aper, (32*1024*1024)<<nb_order))
287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return -1;
Yinghai Lu2f688912009-03-10 12:55:50 -0700289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 apsize &= 0xfff;
292 /* Some BIOS use weird encodings not in the AGPv3 table. */
293 if (apsize & 0xff)
294 apsize |= 0xf00;
295 order = 7 - hweight16(apsize);
296
Bjorn Helgaase501b3d2014-01-03 18:26:58 -0700297 aper = pci_bus_address(agp, AGP_APERTURE_BAR);
Yinghai Lu1edc1ab2008-04-13 01:11:41 -0700298
299 /*
300 * On some sick chips APSIZE is 0. This means it wants 4G
301 * so let double check that order, and lets trust the AMD NB settings
302 */
Yinghai Lu8c9fd912008-04-13 18:42:31 -0700303 if (order >=0 && aper + (32ULL<<(20 + order)) > 0x100000000ULL) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700304 dev_info(&agp->dev, "aperture size %u MB is not right, using settings from NB\n",
305 32 << order);
Yinghai Lu1edc1ab2008-04-13 01:11:41 -0700306 order = nb_order;
307 }
308
Yinghai Lu2f688912009-03-10 12:55:50 -0700309 if (nb_order >= order) {
310 if (agp_aperture_valid(nb_aper, (32*1024*1024)<<nb_order))
311 return 0;
312 }
313
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700314 dev_info(&agp->dev, "aperture from AGP @ %Lx size %u MB\n",
315 aper, 32 << order);
Pavel Machek0abbc782008-05-20 16:27:17 +0200316 if (order < 0 || !agp_aperture_valid(aper, (32*1024*1024)<<order))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return -1;
318
Borislav Petkov260133a2010-09-03 18:39:40 +0200319 gart_set_size_and_enable(nb, order);
Pavel Machek3bb6fbf2008-04-15 12:43:57 +0200320 pci_write_config_dword(nb, AMD64_GARTAPERTUREBASE, aper >> 25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 return 0;
323}
324
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -0800325static int cache_nbs(struct pci_dev *pdev, u32 cap_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Andi Kleena32073b2006-06-26 13:56:40 +0200327 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +0200329 if (amd_cache_northbridges() < 0)
Andi Kleena32073b2006-06-26 13:56:40 +0200330 return -ENODEV;
331
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +0200332 if (!amd_nb_has_feature(AMD_NB_GART))
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200333 return -ENODEV;
334
Andi Kleena32073b2006-06-26 13:56:40 +0200335 i = 0;
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +0200336 for (i = 0; i < amd_nb_num(); i++) {
337 struct pci_dev *dev = node_to_amd_nb(i)->misc;
Andi Kleena32073b2006-06-26 13:56:40 +0200338 if (fix_northbridge(dev, pdev, cap_ptr) < 0) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700339 dev_err(&dev->dev, "no usable aperture found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340#ifdef __x86_64__
341 /* should port this to i386 */
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700342 dev_err(&dev->dev, "consider rebooting with iommu=memaper=2 to get a good aperture\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343#endif
344 return -1;
345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
Andi Kleena32073b2006-06-26 13:56:40 +0200347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350/* Handle AMD 8151 quirks */
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -0800351static void amd8151_init(struct pci_dev *pdev, struct agp_bridge_data *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 char *revstring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Auke Kok44c10132007-06-08 15:46:36 -0700355 switch (pdev->revision) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 case 0x01: revstring="A0"; break;
357 case 0x02: revstring="A1"; break;
358 case 0x11: revstring="B0"; break;
359 case 0x12: revstring="B1"; break;
360 case 0x13: revstring="B2"; break;
361 case 0x14: revstring="B3"; break;
362 default: revstring="??"; break;
363 }
364
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700365 dev_info(&pdev->dev, "AMD 8151 AGP Bridge rev %s\n", revstring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 /*
368 * Work around errata.
369 * Chips before B2 stepping incorrectly reporting v3.5
370 */
Auke Kok44c10132007-06-08 15:46:36 -0700371 if (pdev->revision < 0x13) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700372 dev_info(&pdev->dev, "correcting AGP revision (reports 3.5, is really 3.0)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 bridge->major_version = 3;
374 bridge->minor_version = 0;
375 }
376}
377
378
Dave Jonesa42ab7f2005-11-16 16:07:02 -0800379static const struct aper_size_info_32 uli_sizes[7] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 {256, 65536, 6, 10},
382 {128, 32768, 5, 9},
383 {64, 16384, 4, 8},
384 {32, 8192, 3, 7},
385 {16, 4096, 2, 6},
386 {8, 2048, 1, 4},
387 {4, 1024, 0, 3}
388};
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -0800389static int uli_agp_init(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
391 u32 httfea,baseaddr,enuscr;
392 struct pci_dev *dev1;
Jiri Slaby2101d6f2010-05-24 12:14:15 -0700393 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 unsigned size = amd64_fetch_size();
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700395
396 dev_info(&pdev->dev, "setting up ULi AGP\n");
Alan Cox7357db12006-09-26 17:56:55 +0100397 dev1 = pci_get_slot (pdev->bus,PCI_DEVFN(0,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (dev1 == NULL) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700399 dev_info(&pdev->dev, "can't find ULi secondary device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return -ENODEV;
401 }
402
403 for (i = 0; i < ARRAY_SIZE(uli_sizes); i++)
404 if (uli_sizes[i].size == size)
405 break;
406
407 if (i == ARRAY_SIZE(uli_sizes)) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700408 dev_info(&pdev->dev, "no ULi size found for %d\n", size);
Jiri Slaby2101d6f2010-05-24 12:14:15 -0700409 ret = -ENODEV;
410 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412
413 /* shadow x86-64 registers into ULi registers */
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +0200414 pci_read_config_dword (node_to_amd_nb(0)->misc, AMD64_GARTAPERTUREBASE,
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200415 &httfea);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 /* if x86-64 aperture base is beyond 4G, exit here */
Jiri Slaby2101d6f2010-05-24 12:14:15 -0700418 if ((httfea & 0x7fff) >> (32 - 25)) {
419 ret = -ENODEV;
420 goto put;
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 httfea = (httfea& 0x7fff) << 25;
424
425 pci_read_config_dword(pdev, ULI_X86_64_BASE_ADDR, &baseaddr);
426 baseaddr&= ~PCI_BASE_ADDRESS_MEM_MASK;
427 baseaddr|= httfea;
428 pci_write_config_dword(pdev, ULI_X86_64_BASE_ADDR, baseaddr);
429
430 enuscr= httfea+ (size * 1024 * 1024) - 1;
431 pci_write_config_dword(dev1, ULI_X86_64_HTT_FEA_REG, httfea);
432 pci_write_config_dword(dev1, ULI_X86_64_ENU_SCR_REG, enuscr);
Jiri Slaby2101d6f2010-05-24 12:14:15 -0700433 ret = 0;
434put:
Alan Cox7357db12006-09-26 17:56:55 +0100435 pci_dev_put(dev1);
Jiri Slaby2101d6f2010-05-24 12:14:15 -0700436 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439
Dave Jonesa42ab7f2005-11-16 16:07:02 -0800440static const struct aper_size_info_32 nforce3_sizes[5] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 {512, 131072, 7, 0x00000000 },
443 {256, 65536, 6, 0x00000008 },
444 {128, 32768, 5, 0x0000000C },
445 {64, 16384, 4, 0x0000000E },
446 {32, 8192, 3, 0x0000000F }
447};
448
449/* Handle shadow device of the Nvidia NForce3 */
450/* CHECK-ME original 2.4 version set up some IORRs. Check if that is needed. */
Randy Dunlapda015a62006-12-06 20:38:35 -0800451static int nforce3_agp_init(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 u32 tmp, apbase, apbar, aplimit;
454 struct pci_dev *dev1;
Jiri Slaby2101d6f2010-05-24 12:14:15 -0700455 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 unsigned size = amd64_fetch_size();
457
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700458 dev_info(&pdev->dev, "setting up Nforce3 AGP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Alan Cox7357db12006-09-26 17:56:55 +0100460 dev1 = pci_get_slot(pdev->bus, PCI_DEVFN(11, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (dev1 == NULL) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700462 dev_info(&pdev->dev, "can't find Nforce3 secondary device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return -ENODEV;
464 }
465
466 for (i = 0; i < ARRAY_SIZE(nforce3_sizes); i++)
467 if (nforce3_sizes[i].size == size)
468 break;
469
470 if (i == ARRAY_SIZE(nforce3_sizes)) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700471 dev_info(&pdev->dev, "no NForce3 size found for %d\n", size);
Jiri Slaby2101d6f2010-05-24 12:14:15 -0700472 ret = -ENODEV;
473 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
475
476 pci_read_config_dword(dev1, NVIDIA_X86_64_1_APSIZE, &tmp);
477 tmp &= ~(0xf);
478 tmp |= nforce3_sizes[i].size_value;
479 pci_write_config_dword(dev1, NVIDIA_X86_64_1_APSIZE, tmp);
480
481 /* shadow x86-64 registers into NVIDIA registers */
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +0200482 pci_read_config_dword (node_to_amd_nb(0)->misc, AMD64_GARTAPERTUREBASE,
Andreas Herrmann900f9ac2010-09-17 18:02:54 +0200483 &apbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 /* if x86-64 aperture base is beyond 4G, exit here */
Dave Jonesb41c82e2006-02-20 18:34:37 -0500486 if ( (apbase & 0x7fff) >> (32 - 25) ) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700487 dev_info(&pdev->dev, "aperture base > 4G\n");
Jiri Slaby2101d6f2010-05-24 12:14:15 -0700488 ret = -ENODEV;
489 goto put;
Dave Jonesb41c82e2006-02-20 18:34:37 -0500490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 apbase = (apbase & 0x7fff) << 25;
493
494 pci_read_config_dword(pdev, NVIDIA_X86_64_0_APBASE, &apbar);
495 apbar &= ~PCI_BASE_ADDRESS_MEM_MASK;
496 apbar |= apbase;
497 pci_write_config_dword(pdev, NVIDIA_X86_64_0_APBASE, apbar);
498
499 aplimit = apbase + (size * 1024 * 1024) - 1;
500 pci_write_config_dword(dev1, NVIDIA_X86_64_1_APBASE1, apbase);
501 pci_write_config_dword(dev1, NVIDIA_X86_64_1_APLIMIT1, aplimit);
502 pci_write_config_dword(dev1, NVIDIA_X86_64_1_APBASE2, apbase);
503 pci_write_config_dword(dev1, NVIDIA_X86_64_1_APLIMIT2, aplimit);
504
Jiri Slaby2101d6f2010-05-24 12:14:15 -0700505 ret = 0;
506put:
Alan Cox7357db12006-09-26 17:56:55 +0100507 pci_dev_put(dev1);
508
Jiri Slaby2101d6f2010-05-24 12:14:15 -0700509 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Greg Kroah-Hartmanbcd29822012-12-21 15:12:08 -0800512static int agp_amd64_probe(struct pci_dev *pdev,
513 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 struct agp_bridge_data *bridge;
516 u8 cap_ptr;
Bjorn Helgaas55814b72008-07-30 12:26:51 -0700517 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Ben Hutchings6fd02482010-03-24 03:36:31 +0000519 /* The Highlander principle */
520 if (agp_bridges_found)
521 return -ENODEV;
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 cap_ptr = pci_find_capability(pdev, PCI_CAP_ID_AGP);
524 if (!cap_ptr)
525 return -ENODEV;
526
527 /* Could check for AGPv3 here */
528
529 bridge = agp_alloc_bridge();
530 if (!bridge)
531 return -ENOMEM;
532
533 if (pdev->vendor == PCI_VENDOR_ID_AMD &&
534 pdev->device == PCI_DEVICE_ID_AMD_8151_0) {
535 amd8151_init(pdev, bridge);
536 } else {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700537 dev_info(&pdev->dev, "AGP bridge [%04x/%04x]\n",
538 pdev->vendor, pdev->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
541 bridge->driver = &amd_8151_driver;
542 bridge->dev = pdev;
543 bridge->capndx = cap_ptr;
544
545 /* Fill in the mode register */
546 pci_read_config_dword(pdev, bridge->capndx+PCI_AGP_STATUS, &bridge->mode);
547
548 if (cache_nbs(pdev, cap_ptr) == -1) {
549 agp_put_bridge(bridge);
550 return -ENODEV;
551 }
552
553 if (pdev->vendor == PCI_VENDOR_ID_NVIDIA) {
554 int ret = nforce3_agp_init(pdev);
555 if (ret) {
556 agp_put_bridge(bridge);
557 return ret;
558 }
559 }
560
561 if (pdev->vendor == PCI_VENDOR_ID_AL) {
562 int ret = uli_agp_init(pdev);
563 if (ret) {
564 agp_put_bridge(bridge);
565 return ret;
566 }
567 }
568
569 pci_set_drvdata(pdev, bridge);
Bjorn Helgaas55814b72008-07-30 12:26:51 -0700570 err = agp_add_bridge(bridge);
571 if (err < 0)
572 return err;
573
574 agp_bridges_found++;
575 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Bill Pemberton39af33f2012-11-19 13:26:26 -0500578static void agp_amd64_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 struct agp_bridge_data *bridge = pci_get_drvdata(pdev);
581
David Woodhouse6a122352009-07-29 10:25:58 +0100582 release_mem_region(virt_to_phys(bridge->gatt_table_real),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 amd64_aperture_sizes[bridge->aperture_size_idx].size);
584 agp_remove_bridge(bridge);
585 agp_put_bridge(bridge);
Ben Hutchings6fd02482010-03-24 03:36:31 +0000586
587 agp_bridges_found--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
akpm@osdl.org90be4b42006-01-03 23:00:10 -0800590#ifdef CONFIG_PM
591
592static int agp_amd64_suspend(struct pci_dev *pdev, pm_message_t state)
593{
594 pci_save_state(pdev);
595 pci_set_power_state(pdev, pci_choose_state(pdev, state));
596
597 return 0;
598}
599
600static int agp_amd64_resume(struct pci_dev *pdev)
601{
602 pci_set_power_state(pdev, PCI_D0);
603 pci_restore_state(pdev);
604
Dave Jonesca2797f2006-05-21 17:11:42 -0400605 if (pdev->vendor == PCI_VENDOR_ID_NVIDIA)
606 nforce3_agp_init(pdev);
607
akpm@osdl.org90be4b42006-01-03 23:00:10 -0800608 return amd_8151_configure();
609}
610
611#endif /* CONFIG_PM */
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613static struct pci_device_id agp_amd64_pci_table[] = {
614 {
615 .class = (PCI_CLASS_BRIDGE_HOST << 8),
616 .class_mask = ~0,
617 .vendor = PCI_VENDOR_ID_AMD,
618 .device = PCI_DEVICE_ID_AMD_8151_0,
619 .subvendor = PCI_ANY_ID,
620 .subdevice = PCI_ANY_ID,
621 },
622 /* ULi M1689 */
623 {
624 .class = (PCI_CLASS_BRIDGE_HOST << 8),
625 .class_mask = ~0,
626 .vendor = PCI_VENDOR_ID_AL,
627 .device = PCI_DEVICE_ID_AL_M1689,
628 .subvendor = PCI_ANY_ID,
629 .subdevice = PCI_ANY_ID,
630 },
631 /* VIA K8T800Pro */
632 {
633 .class = (PCI_CLASS_BRIDGE_HOST << 8),
634 .class_mask = ~0,
635 .vendor = PCI_VENDOR_ID_VIA,
636 .device = PCI_DEVICE_ID_VIA_K8T800PRO_0,
637 .subvendor = PCI_ANY_ID,
638 .subdevice = PCI_ANY_ID,
639 },
640 /* VIA K8T800 */
641 {
642 .class = (PCI_CLASS_BRIDGE_HOST << 8),
643 .class_mask = ~0,
644 .vendor = PCI_VENDOR_ID_VIA,
645 .device = PCI_DEVICE_ID_VIA_8385_0,
646 .subvendor = PCI_ANY_ID,
647 .subdevice = PCI_ANY_ID,
648 },
649 /* VIA K8M800 / K8N800 */
650 {
651 .class = (PCI_CLASS_BRIDGE_HOST << 8),
652 .class_mask = ~0,
653 .vendor = PCI_VENDOR_ID_VIA,
654 .device = PCI_DEVICE_ID_VIA_8380_0,
655 .subvendor = PCI_ANY_ID,
656 .subdevice = PCI_ANY_ID,
657 },
Gabriel Mansid5cb8d32006-12-16 20:24:27 -0300658 /* VIA K8M890 / K8N890 */
659 {
660 .class = (PCI_CLASS_BRIDGE_HOST << 8),
661 .class_mask = ~0,
662 .vendor = PCI_VENDOR_ID_VIA,
Dave Jones43ed41f62007-01-28 17:58:33 -0500663 .device = PCI_DEVICE_ID_VIA_VT3336,
Gabriel Mansid5cb8d32006-12-16 20:24:27 -0300664 .subvendor = PCI_ANY_ID,
665 .subdevice = PCI_ANY_ID,
666 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 /* VIA K8T890 */
668 {
669 .class = (PCI_CLASS_BRIDGE_HOST << 8),
670 .class_mask = ~0,
671 .vendor = PCI_VENDOR_ID_VIA,
672 .device = PCI_DEVICE_ID_VIA_3238_0,
673 .subvendor = PCI_ANY_ID,
674 .subdevice = PCI_ANY_ID,
675 },
676 /* VIA K8T800/K8M800/K8N800 */
677 {
678 .class = (PCI_CLASS_BRIDGE_HOST << 8),
679 .class_mask = ~0,
680 .vendor = PCI_VENDOR_ID_VIA,
681 .device = PCI_DEVICE_ID_VIA_838X_1,
682 .subvendor = PCI_ANY_ID,
683 .subdevice = PCI_ANY_ID,
684 },
685 /* NForce3 */
686 {
687 .class = (PCI_CLASS_BRIDGE_HOST << 8),
688 .class_mask = ~0,
689 .vendor = PCI_VENDOR_ID_NVIDIA,
690 .device = PCI_DEVICE_ID_NVIDIA_NFORCE3,
691 .subvendor = PCI_ANY_ID,
692 .subdevice = PCI_ANY_ID,
693 },
694 {
695 .class = (PCI_CLASS_BRIDGE_HOST << 8),
696 .class_mask = ~0,
697 .vendor = PCI_VENDOR_ID_NVIDIA,
698 .device = PCI_DEVICE_ID_NVIDIA_NFORCE3S,
699 .subvendor = PCI_ANY_ID,
700 .subdevice = PCI_ANY_ID,
701 },
702 /* SIS 755 */
703 {
704 .class = (PCI_CLASS_BRIDGE_HOST << 8),
705 .class_mask = ~0,
706 .vendor = PCI_VENDOR_ID_SI,
707 .device = PCI_DEVICE_ID_SI_755,
708 .subvendor = PCI_ANY_ID,
709 .subdevice = PCI_ANY_ID,
710 },
Dave Jones2fa938b2005-06-28 20:08:29 -0400711 /* SIS 760 */
712 {
713 .class = (PCI_CLASS_BRIDGE_HOST << 8),
714 .class_mask = ~0,
715 .vendor = PCI_VENDOR_ID_SI,
716 .device = PCI_DEVICE_ID_SI_760,
717 .subvendor = PCI_ANY_ID,
718 .subdevice = PCI_ANY_ID,
719 },
Andi Kleen870b7682005-11-05 17:25:54 +0100720 /* ALI/ULI M1695 */
721 {
722 .class = (PCI_CLASS_BRIDGE_HOST << 8),
723 .class_mask = ~0,
724 .vendor = PCI_VENDOR_ID_AL,
Henrik Kretzschmar5c48b0e2006-03-23 21:29:19 +0100725 .device = 0x1695,
Andi Kleen870b7682005-11-05 17:25:54 +0100726 .subvendor = PCI_ANY_ID,
727 .subdevice = PCI_ANY_ID,
728 },
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 { }
731};
732
733MODULE_DEVICE_TABLE(pci, agp_amd64_pci_table);
734
Jingoo Han36fe66c2013-12-03 08:03:23 +0900735static const struct pci_device_id agp_amd64_pci_promisc_table[] = {
Ben Hutchings6fd02482010-03-24 03:36:31 +0000736 { PCI_DEVICE_CLASS(0, 0) },
737 { }
738};
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740static struct pci_driver agp_amd64_pci_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 .name = "agpgart-amd64",
742 .id_table = agp_amd64_pci_table,
743 .probe = agp_amd64_probe,
744 .remove = agp_amd64_remove,
akpm@osdl.org90be4b42006-01-03 23:00:10 -0800745#ifdef CONFIG_PM
746 .suspend = agp_amd64_suspend,
747 .resume = agp_amd64_resume,
748#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749};
750
751
752/* Not static due to IOMMU code calling it early. */
753int __init agp_amd64_init(void)
754{
755 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 if (agp_off)
758 return -EINVAL;
FUJITA Tomonorif405d2c2009-12-28 18:11:56 +0900759
Bjorn Helgaas55814b72008-07-30 12:26:51 -0700760 err = pci_register_driver(&agp_amd64_pci_driver);
761 if (err < 0)
762 return err;
763
764 if (agp_bridges_found == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (!agp_try_unsupported && !agp_try_unsupported_boot) {
766 printk(KERN_INFO PFX "No supported AGP bridge found.\n");
767#ifdef MODULE
768 printk(KERN_INFO PFX "You can try agp_try_unsupported=1\n");
769#else
770 printk(KERN_INFO PFX "You can boot with agp=try_unsupported\n");
771#endif
Florian Mickler49495d42011-02-07 23:29:31 +0100772 pci_unregister_driver(&agp_amd64_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return -ENODEV;
774 }
775
776 /* First check that we have at least one AMD64 NB */
Florian Mickler49495d42011-02-07 23:29:31 +0100777 if (!pci_dev_present(amd_nb_misc_ids)) {
778 pci_unregister_driver(&agp_amd64_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return -ENODEV;
Florian Mickler49495d42011-02-07 23:29:31 +0100780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 /* Look for any AGP bridge */
Ben Hutchings6fd02482010-03-24 03:36:31 +0000783 agp_amd64_pci_driver.id_table = agp_amd64_pci_promisc_table;
784 err = driver_attach(&agp_amd64_pci_driver.driver);
Florian Mickler49495d42011-02-07 23:29:31 +0100785 if (err == 0 && agp_bridges_found == 0) {
786 pci_unregister_driver(&agp_amd64_pci_driver);
Ben Hutchings6fd02482010-03-24 03:36:31 +0000787 err = -ENODEV;
Florian Mickler49495d42011-02-07 23:29:31 +0100788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790 return err;
791}
792
FUJITA Tomonori61684ce2010-01-25 14:10:47 +0900793static int __init agp_amd64_mod_init(void)
794{
FUJITA Tomonori06df6da2010-02-04 14:43:38 +0900795#ifndef MODULE
FUJITA Tomonori61684ce2010-01-25 14:10:47 +0900796 if (gart_iommu_aperture)
797 return agp_bridges_found ? 0 : -ENODEV;
FUJITA Tomonori06df6da2010-02-04 14:43:38 +0900798#endif
FUJITA Tomonori61684ce2010-01-25 14:10:47 +0900799 return agp_amd64_init();
800}
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802static void __exit agp_amd64_cleanup(void)
803{
FUJITA Tomonori06df6da2010-02-04 14:43:38 +0900804#ifndef MODULE
FUJITA Tomonori42590a72010-01-04 16:16:23 +0900805 if (gart_iommu_aperture)
806 return;
FUJITA Tomonori06df6da2010-02-04 14:43:38 +0900807#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (aperture_resource)
809 release_resource(aperture_resource);
810 pci_unregister_driver(&agp_amd64_pci_driver);
811}
812
FUJITA Tomonori61684ce2010-01-25 14:10:47 +0900813module_init(agp_amd64_mod_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814module_exit(agp_amd64_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Dave Jonesbd8136d2014-12-19 11:23:50 -0500816MODULE_AUTHOR("Dave Jones, Andi Kleen");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817module_param(agp_try_unsupported, bool, 0);
818MODULE_LICENSE("GPL");