2 * AMD K7 AGPGART routines.
5 #include <linux/module.h>
7 #include <linux/init.h>
8 #include <linux/agp_backend.h>
10 #include <linux/page-flags.h>
14 #define AMD_MMBASE 0x14
15 #define AMD_APSIZE 0xac
16 #define AMD_MODECNTL 0xb0
17 #define AMD_MODECNTL2 0xb2
18 #define AMD_GARTENABLE 0x02 /* In mmio region (16-bit register) */
19 #define AMD_ATTBASE 0x04 /* In mmio region (32-bit register) */
20 #define AMD_TLBFLUSH 0x0c /* In mmio region (32-bit register) */
21 #define AMD_CACHEENTRY 0x10 /* In mmio region (32-bit register) */
23 static struct pci_device_id agp_amdk7_pci_table[];
27 unsigned long __iomem *remapped;
30 static struct _amd_irongate_private {
31 volatile u8 __iomem *registers;
32 struct amd_page_map **gatt_pages;
34 } amd_irongate_private;
36 static int amd_create_page_map(struct amd_page_map *page_map)
40 page_map->real = (unsigned long *) __get_free_page(GFP_KERNEL);
41 if (page_map->real == NULL)
45 SetPageReserved(virt_to_page(page_map->real));
47 page_map->remapped = ioremap_nocache(virt_to_gart(page_map->real),
49 if (page_map->remapped == NULL) {
50 ClearPageReserved(virt_to_page(page_map->real));
51 free_page((unsigned long) page_map->real);
52 page_map->real = NULL;
57 set_memory_uc((unsigned long)page_map->real, 1);
58 page_map->remapped = page_map->real;
61 for (i = 0; i < PAGE_SIZE / sizeof(unsigned long); i++) {
62 writel(agp_bridge->scratch_page, page_map->remapped+i);
63 readl(page_map->remapped+i); /* PCI Posting. */
69 static void amd_free_page_map(struct amd_page_map *page_map)
72 iounmap(page_map->remapped);
73 ClearPageReserved(virt_to_page(page_map->real));
75 set_memory_wb((unsigned long)page_map->real, 1);
77 free_page((unsigned long) page_map->real);
80 static void amd_free_gatt_pages(void)
83 struct amd_page_map **tables;
84 struct amd_page_map *entry;
86 tables = amd_irongate_private.gatt_pages;
87 for (i = 0; i < amd_irongate_private.num_tables; i++) {
90 if (entry->real != NULL)
91 amd_free_page_map(entry);
96 amd_irongate_private.gatt_pages = NULL;
99 static int amd_create_gatt_pages(int nr_tables)
101 struct amd_page_map **tables;
102 struct amd_page_map *entry;
106 tables = kzalloc((nr_tables + 1) * sizeof(struct amd_page_map *),GFP_KERNEL);
110 for (i = 0; i < nr_tables; i++) {
111 entry = kzalloc(sizeof(struct amd_page_map), GFP_KERNEL);
117 retval = amd_create_page_map(entry);
121 amd_irongate_private.num_tables = i;
122 amd_irongate_private.gatt_pages = tables;
125 amd_free_gatt_pages();
130 /* Since we don't need contiguous memory we just try
131 * to get the gatt table once
134 #define GET_PAGE_DIR_OFF(addr) (addr >> 22)
135 #define GET_PAGE_DIR_IDX(addr) (GET_PAGE_DIR_OFF(addr) - \
136 GET_PAGE_DIR_OFF(agp_bridge->gart_bus_addr))
137 #define GET_GATT_OFF(addr) ((addr & 0x003ff000) >> 12)
138 #define GET_GATT(addr) (amd_irongate_private.gatt_pages[\
139 GET_PAGE_DIR_IDX(addr)]->remapped)
141 static int amd_create_gatt_table(struct agp_bridge_data *bridge)
143 struct aper_size_info_lvl2 *value;
144 struct amd_page_map page_dir;
150 value = A_SIZE_LVL2(agp_bridge->current_size);
151 retval = amd_create_page_map(&page_dir);
155 retval = amd_create_gatt_pages(value->num_entries / 1024);
157 amd_free_page_map(&page_dir);
161 agp_bridge->gatt_table_real = (u32 *)page_dir.real;
162 agp_bridge->gatt_table = (u32 __iomem *)page_dir.remapped;
163 agp_bridge->gatt_bus_addr = virt_to_gart(page_dir.real);
165 /* Get the address for the gart region.
166 * This is a bus address even on the alpha, b/c its
167 * used to program the agp master not the cpu
170 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
171 addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
172 agp_bridge->gart_bus_addr = addr;
174 /* Calculate the agp offset */
175 for (i = 0; i < value->num_entries / 1024; i++, addr += 0x00400000) {
176 writel(virt_to_gart(amd_irongate_private.gatt_pages[i]->real) | 1,
177 page_dir.remapped+GET_PAGE_DIR_OFF(addr));
178 readl(page_dir.remapped+GET_PAGE_DIR_OFF(addr)); /* PCI Posting. */
184 static int amd_free_gatt_table(struct agp_bridge_data *bridge)
186 struct amd_page_map page_dir;
188 page_dir.real = (unsigned long *)agp_bridge->gatt_table_real;
189 page_dir.remapped = (unsigned long __iomem *)agp_bridge->gatt_table;
191 amd_free_gatt_pages();
192 amd_free_page_map(&page_dir);
196 static int amd_irongate_fetch_size(void)
200 struct aper_size_info_lvl2 *values;
202 pci_read_config_dword(agp_bridge->dev, AMD_APSIZE, &temp);
203 temp = (temp & 0x0000000e);
204 values = A_SIZE_LVL2(agp_bridge->driver->aperture_sizes);
205 for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) {
206 if (temp == values[i].size_value) {
207 agp_bridge->previous_size =
208 agp_bridge->current_size = (void *) (values + i);
210 agp_bridge->aperture_size_idx = i;
211 return values[i].size;
218 static int amd_irongate_configure(void)
220 struct aper_size_info_lvl2 *current_size;
224 current_size = A_SIZE_LVL2(agp_bridge->current_size);
226 /* Get the memory mapped registers */
227 pci_read_config_dword(agp_bridge->dev, AMD_MMBASE, &temp);
228 temp = (temp & PCI_BASE_ADDRESS_MEM_MASK);
229 amd_irongate_private.registers = (volatile u8 __iomem *) ioremap(temp, 4096);
230 if (!amd_irongate_private.registers)
233 /* Write out the address of the gatt table */
234 writel(agp_bridge->gatt_bus_addr, amd_irongate_private.registers+AMD_ATTBASE);
235 readl(amd_irongate_private.registers+AMD_ATTBASE); /* PCI Posting. */
237 /* Write the Sync register */
238 pci_write_config_byte(agp_bridge->dev, AMD_MODECNTL, 0x80);
240 /* Set indexing mode */
241 pci_write_config_byte(agp_bridge->dev, AMD_MODECNTL2, 0x00);
243 /* Write the enable register */
244 enable_reg = readw(amd_irongate_private.registers+AMD_GARTENABLE);
245 enable_reg = (enable_reg | 0x0004);
246 writew(enable_reg, amd_irongate_private.registers+AMD_GARTENABLE);
247 readw(amd_irongate_private.registers+AMD_GARTENABLE); /* PCI Posting. */
249 /* Write out the size register */
250 pci_read_config_dword(agp_bridge->dev, AMD_APSIZE, &temp);
251 temp = (((temp & ~(0x0000000e)) | current_size->size_value) | 1);
252 pci_write_config_dword(agp_bridge->dev, AMD_APSIZE, temp);
255 writel(1, amd_irongate_private.registers+AMD_TLBFLUSH);
256 readl(amd_irongate_private.registers+AMD_TLBFLUSH); /* PCI Posting.*/
260 static void amd_irongate_cleanup(void)
262 struct aper_size_info_lvl2 *previous_size;
266 previous_size = A_SIZE_LVL2(agp_bridge->previous_size);
268 enable_reg = readw(amd_irongate_private.registers+AMD_GARTENABLE);
269 enable_reg = (enable_reg & ~(0x0004));
270 writew(enable_reg, amd_irongate_private.registers+AMD_GARTENABLE);
271 readw(amd_irongate_private.registers+AMD_GARTENABLE); /* PCI Posting. */
273 /* Write back the previous size and disable gart translation */
274 pci_read_config_dword(agp_bridge->dev, AMD_APSIZE, &temp);
275 temp = ((temp & ~(0x0000000f)) | previous_size->size_value);
276 pci_write_config_dword(agp_bridge->dev, AMD_APSIZE, temp);
277 iounmap((void __iomem *) amd_irongate_private.registers);
281 * This routine could be implemented by taking the addresses
282 * written to the GATT, and flushing them individually. However
283 * currently it just flushes the whole table. Which is probably
284 * more efficent, since agp_memory blocks can be a large number of
288 static void amd_irongate_tlbflush(struct agp_memory *temp)
290 writel(1, amd_irongate_private.registers+AMD_TLBFLUSH);
291 readl(amd_irongate_private.registers+AMD_TLBFLUSH); /* PCI Posting. */
294 static int amd_insert_memory(struct agp_memory *mem, off_t pg_start, int type)
296 int i, j, num_entries;
297 unsigned long __iomem *cur_gatt;
300 num_entries = A_SIZE_LVL2(agp_bridge->current_size)->num_entries;
302 if (type != 0 || mem->type != 0)
305 if ((pg_start + mem->page_count) > num_entries)
309 while (j < (pg_start + mem->page_count)) {
310 addr = (j * PAGE_SIZE) + agp_bridge->gart_bus_addr;
311 cur_gatt = GET_GATT(addr);
312 if (!PGE_EMPTY(agp_bridge, readl(cur_gatt+GET_GATT_OFF(addr))))
317 if (!mem->is_flushed) {
318 global_cache_flush();
319 mem->is_flushed = true;
322 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) {
323 addr = (j * PAGE_SIZE) + agp_bridge->gart_bus_addr;
324 cur_gatt = GET_GATT(addr);
325 writel(agp_generic_mask_memory(agp_bridge,
326 mem->memory[i], mem->type), cur_gatt+GET_GATT_OFF(addr));
327 readl(cur_gatt+GET_GATT_OFF(addr)); /* PCI Posting. */
329 amd_irongate_tlbflush(mem);
333 static int amd_remove_memory(struct agp_memory *mem, off_t pg_start, int type)
336 unsigned long __iomem *cur_gatt;
339 if (type != 0 || mem->type != 0)
342 for (i = pg_start; i < (mem->page_count + pg_start); i++) {
343 addr = (i * PAGE_SIZE) + agp_bridge->gart_bus_addr;
344 cur_gatt = GET_GATT(addr);
345 writel(agp_bridge->scratch_page, cur_gatt+GET_GATT_OFF(addr));
346 readl(cur_gatt+GET_GATT_OFF(addr)); /* PCI Posting. */
349 amd_irongate_tlbflush(mem);
353 static const struct aper_size_info_lvl2 amd_irongate_sizes[7] =
355 {2048, 524288, 0x0000000c},
356 {1024, 262144, 0x0000000a},
357 {512, 131072, 0x00000008},
358 {256, 65536, 0x00000006},
359 {128, 32768, 0x00000004},
360 {64, 16384, 0x00000002},
361 {32, 8192, 0x00000000}
364 static const struct gatt_mask amd_irongate_masks[] =
366 {.mask = 1, .type = 0}
369 static const struct agp_bridge_driver amd_irongate_driver = {
370 .owner = THIS_MODULE,
371 .aperture_sizes = amd_irongate_sizes,
372 .size_type = LVL2_APER_SIZE,
373 .num_aperture_sizes = 7,
374 .configure = amd_irongate_configure,
375 .fetch_size = amd_irongate_fetch_size,
376 .cleanup = amd_irongate_cleanup,
377 .tlb_flush = amd_irongate_tlbflush,
378 .mask_memory = agp_generic_mask_memory,
379 .masks = amd_irongate_masks,
380 .agp_enable = agp_generic_enable,
381 .cache_flush = global_cache_flush,
382 .create_gatt_table = amd_create_gatt_table,
383 .free_gatt_table = amd_free_gatt_table,
384 .insert_memory = amd_insert_memory,
385 .remove_memory = amd_remove_memory,
386 .alloc_by_type = agp_generic_alloc_by_type,
387 .free_by_type = agp_generic_free_by_type,
388 .agp_alloc_page = agp_generic_alloc_page,
389 .agp_destroy_page = agp_generic_destroy_page,
390 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
393 static struct agp_device_ids amd_agp_device_ids[] __devinitdata =
396 .device_id = PCI_DEVICE_ID_AMD_FE_GATE_7006,
397 .chipset_name = "Irongate",
400 .device_id = PCI_DEVICE_ID_AMD_FE_GATE_700E,
401 .chipset_name = "761",
404 .device_id = PCI_DEVICE_ID_AMD_FE_GATE_700C,
405 .chipset_name = "760MP",
407 { }, /* dummy final entry, always present */
410 static int __devinit agp_amdk7_probe(struct pci_dev *pdev,
411 const struct pci_device_id *ent)
413 struct agp_bridge_data *bridge;
417 cap_ptr = pci_find_capability(pdev, PCI_CAP_ID_AGP);
421 j = ent - agp_amdk7_pci_table;
422 printk(KERN_INFO PFX "Detected AMD %s chipset\n",
423 amd_agp_device_ids[j].chipset_name);
425 bridge = agp_alloc_bridge();
429 bridge->driver = &amd_irongate_driver;
430 bridge->dev_private_data = &amd_irongate_private,
432 bridge->capndx = cap_ptr;
434 /* 751 Errata (22564_B-1.PDF)
435 erratum 20: strobe glitch with Nvidia NV10 GeForce cards.
436 system controller may experience noise due to strong drive strengths
438 if (agp_bridge->dev->device == PCI_DEVICE_ID_AMD_FE_GATE_7006) {
439 struct pci_dev *gfxcard=NULL;
443 gfxcard = pci_get_class(PCI_CLASS_DISPLAY_VGA<<8, gfxcard);
445 printk (KERN_INFO PFX "Couldn't find an AGP VGA controller.\n");
448 cap_ptr = pci_find_capability(gfxcard, PCI_CAP_ID_AGP);
451 /* With so many variants of NVidia cards, it's simpler just
452 to blacklist them all, and then whitelist them as needed
453 (if necessary at all). */
454 if (gfxcard->vendor == PCI_VENDOR_ID_NVIDIA) {
455 agp_bridge->flags |= AGP_ERRATA_1X;
456 printk (KERN_INFO PFX "AMD 751 chipset with NVidia GeForce detected. Forcing to 1X due to errata.\n");
458 pci_dev_put(gfxcard);
461 /* 761 Errata (23613_F.pdf)
462 * Revisions B0/B1 were a disaster.
463 * erratum 44: SYSCLK/AGPCLK skew causes 2X failures -- Force mode to 1X
464 * erratum 45: Timing problem prevents fast writes -- Disable fast write.
465 * erratum 46: Setup violation on AGP SBA pins - Disable side band addressing.
466 * With this lot disabled, we should prevent lockups. */
467 if (agp_bridge->dev->device == PCI_DEVICE_ID_AMD_FE_GATE_700E) {
468 if (pdev->revision == 0x10 || pdev->revision == 0x11) {
469 agp_bridge->flags = AGP_ERRATA_FASTWRITES;
470 agp_bridge->flags |= AGP_ERRATA_SBA;
471 agp_bridge->flags |= AGP_ERRATA_1X;
472 printk (KERN_INFO PFX "AMD 761 chipset with errata detected - disabling AGP fast writes & SBA and forcing to 1X.\n");
476 /* Fill in the mode register */
477 pci_read_config_dword(pdev,
478 bridge->capndx+PCI_AGP_STATUS,
481 pci_set_drvdata(pdev, bridge);
482 return agp_add_bridge(bridge);
485 static void __devexit agp_amdk7_remove(struct pci_dev *pdev)
487 struct agp_bridge_data *bridge = pci_get_drvdata(pdev);
489 agp_remove_bridge(bridge);
490 agp_put_bridge(bridge);
493 /* must be the same order as name table above */
494 static struct pci_device_id agp_amdk7_pci_table[] = {
496 .class = (PCI_CLASS_BRIDGE_HOST << 8),
498 .vendor = PCI_VENDOR_ID_AMD,
499 .device = PCI_DEVICE_ID_AMD_FE_GATE_7006,
500 .subvendor = PCI_ANY_ID,
501 .subdevice = PCI_ANY_ID,
504 .class = (PCI_CLASS_BRIDGE_HOST << 8),
506 .vendor = PCI_VENDOR_ID_AMD,
507 .device = PCI_DEVICE_ID_AMD_FE_GATE_700E,
508 .subvendor = PCI_ANY_ID,
509 .subdevice = PCI_ANY_ID,
512 .class = (PCI_CLASS_BRIDGE_HOST << 8),
514 .vendor = PCI_VENDOR_ID_AMD,
515 .device = PCI_DEVICE_ID_AMD_FE_GATE_700C,
516 .subvendor = PCI_ANY_ID,
517 .subdevice = PCI_ANY_ID,
522 MODULE_DEVICE_TABLE(pci, agp_amdk7_pci_table);
524 static struct pci_driver agp_amdk7_pci_driver = {
525 .name = "agpgart-amdk7",
526 .id_table = agp_amdk7_pci_table,
527 .probe = agp_amdk7_probe,
528 .remove = agp_amdk7_remove,
531 static int __init agp_amdk7_init(void)
535 return pci_register_driver(&agp_amdk7_pci_driver);
538 static void __exit agp_amdk7_cleanup(void)
540 pci_unregister_driver(&agp_amdk7_pci_driver);
543 module_init(agp_amdk7_init);
544 module_exit(agp_amdk7_cleanup);
546 MODULE_LICENSE("GPL and additional rights");