Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/pci.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/agp_backend.h> |
Tim Schmielau | 8c65b4a | 2005-11-07 00:59:43 -0800 | [diff] [blame] | 15 | #include <linux/mmzone.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 16 | #include <asm/page.h> /* PAGE_SIZE */ |
Jan Beulich | b92e9fa | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 17 | #include <asm/e820.h> |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 18 | #include <asm/k8.h> |
Pavel Machek | aa134f1 | 2008-04-08 10:49:03 +0200 | [diff] [blame] | 19 | #include <asm/gart.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include "agp.h" |
| 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | static struct resource *aperture_resource; |
Andi Kleen | 172efbb | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 36 | static int __initdata agp_try_unsupported = 1; |
Bjorn Helgaas | 55814b7 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 37 | static int agp_bridges_found; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | static void amd64_tlbflush(struct agp_memory *temp) |
| 40 | { |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 41 | k8_flush_garts(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | static 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 Hellstrom | a030ce4 | 2007-01-23 10:33:43 +0100 | [diff] [blame] | 48 | int mask_type; |
| 49 | struct agp_bridge_data *bridge = mem->bridge; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | u32 pte; |
| 51 | |
| 52 | num_entries = agp_num_entries(); |
| 53 | |
Thomas Hellstrom | a030ce4 | 2007-01-23 10:33:43 +0100 | [diff] [blame] | 54 | if (type != mem->type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | return -EINVAL; |
Thomas Hellstrom | a030ce4 | 2007-01-23 10:33:43 +0100 | [diff] [blame] | 56 | mask_type = bridge->driver->agp_type_to_mask_type(bridge, type); |
| 57 | if (mask_type != 0) |
| 58 | return -EINVAL; |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 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 Perches | c725801 | 2008-03-26 14:10:02 -0700 | [diff] [blame] | 75 | if (!mem->is_flushed) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | global_cache_flush(); |
Joe Perches | c725801 | 2008-03-26 14:10:02 -0700 | [diff] [blame] | 77 | mem->is_flushed = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | for (i = 0, j = pg_start; i < mem->page_count; i++, j++) { |
| 81 | tmp = agp_bridge->driver->mask_memory(agp_bridge, |
Thomas Hellstrom | a030ce4 | 2007-01-23 10:33:43 +0100 | [diff] [blame] | 82 | mem->memory[i], mask_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
| 84 | BUG_ON(tmp & 0xffffff0000000ffcULL); |
| 85 | pte = (tmp & 0x000000ff00000000ULL) >> 28; |
| 86 | pte |=(tmp & 0x00000000fffff000ULL); |
| 87 | pte |= GPTE_VALID | GPTE_COHERENT; |
| 88 | |
| 89 | writel(pte, agp_bridge->gatt_table+j); |
| 90 | readl(agp_bridge->gatt_table+j); /* PCI Posting. */ |
| 91 | } |
| 92 | amd64_tlbflush(mem); |
| 93 | return 0; |
| 94 | } |
| 95 | |
| 96 | /* |
| 97 | * This hack alters the order element according |
| 98 | * to the size of a long. It sucks. I totally disown this, even |
| 99 | * though it does appear to work for the most part. |
| 100 | */ |
| 101 | static struct aper_size_info_32 amd64_aperture_sizes[7] = |
| 102 | { |
| 103 | {32, 8192, 3+(sizeof(long)/8), 0 }, |
| 104 | {64, 16384, 4+(sizeof(long)/8), 1<<1 }, |
| 105 | {128, 32768, 5+(sizeof(long)/8), 1<<2 }, |
| 106 | {256, 65536, 6+(sizeof(long)/8), 1<<1 | 1<<2 }, |
| 107 | {512, 131072, 7+(sizeof(long)/8), 1<<3 }, |
| 108 | {1024, 262144, 8+(sizeof(long)/8), 1<<1 | 1<<3}, |
| 109 | {2048, 524288, 9+(sizeof(long)/8), 1<<2 | 1<<3} |
| 110 | }; |
| 111 | |
| 112 | |
| 113 | /* |
| 114 | * Get the current Aperture size from the x86-64. |
| 115 | * Note, that there may be multiple x86-64's, but we just return |
| 116 | * the value from the first one we find. The set_size functions |
| 117 | * keep the rest coherent anyway. Or at least should do. |
| 118 | */ |
| 119 | static int amd64_fetch_size(void) |
| 120 | { |
| 121 | struct pci_dev *dev; |
| 122 | int i; |
| 123 | u32 temp; |
| 124 | struct aper_size_info_32 *values; |
| 125 | |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 126 | dev = k8_northbridges[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | if (dev==NULL) |
| 128 | return 0; |
| 129 | |
| 130 | pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &temp); |
| 131 | temp = (temp & 0xe); |
| 132 | values = A_SIZE_32(amd64_aperture_sizes); |
| 133 | |
| 134 | for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) { |
| 135 | if (temp == values[i].size_value) { |
| 136 | agp_bridge->previous_size = |
| 137 | agp_bridge->current_size = (void *) (values + i); |
| 138 | |
| 139 | agp_bridge->aperture_size_idx = i; |
| 140 | return values[i].size; |
| 141 | } |
| 142 | } |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | /* |
| 147 | * In a multiprocessor x86-64 system, this function gets |
| 148 | * called once for each CPU. |
| 149 | */ |
Pavel Machek | aa134f1 | 2008-04-08 10:49:03 +0200 | [diff] [blame] | 150 | static u64 amd64_configure(struct pci_dev *hammer, u64 gatt_table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | { |
| 152 | u64 aperturebase; |
| 153 | u32 tmp; |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 154 | u64 aper_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | /* Address to map to */ |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 157 | pci_read_config_dword(hammer, AMD64_GARTAPERTUREBASE, &tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | aperturebase = tmp << 25; |
| 159 | aper_base = (aperturebase & PCI_BASE_ADDRESS_MEM_MASK); |
| 160 | |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 161 | enable_gart_translation(hammer, gatt_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | return aper_base; |
| 164 | } |
| 165 | |
| 166 | |
Dave Jones | e5524f3 | 2007-02-22 18:41:28 -0500 | [diff] [blame] | 167 | static const struct aper_size_info_32 amd_8151_sizes[7] = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { |
| 169 | {2048, 524288, 9, 0x00000000 }, /* 0 0 0 0 0 0 */ |
| 170 | {1024, 262144, 8, 0x00000400 }, /* 1 0 0 0 0 0 */ |
| 171 | {512, 131072, 7, 0x00000600 }, /* 1 1 0 0 0 0 */ |
| 172 | {256, 65536, 6, 0x00000700 }, /* 1 1 1 0 0 0 */ |
| 173 | {128, 32768, 5, 0x00000720 }, /* 1 1 1 1 0 0 */ |
| 174 | {64, 16384, 4, 0x00000730 }, /* 1 1 1 1 1 0 */ |
Dave Jones | 6a92a4e | 2006-02-28 00:54:25 -0500 | [diff] [blame] | 175 | {32, 8192, 3, 0x00000738 } /* 1 1 1 1 1 1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | }; |
| 177 | |
| 178 | static int amd_8151_configure(void) |
| 179 | { |
Keir Fraser | 07eee78 | 2005-03-30 13:17:04 -0800 | [diff] [blame] | 180 | unsigned long gatt_bus = virt_to_gart(agp_bridge->gatt_table_real); |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 181 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
| 183 | /* Configure AGP regs in each x86-64 host bridge. */ |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 184 | for (i = 0; i < num_k8_northbridges; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | agp_bridge->gart_bus_addr = |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 186 | amd64_configure(k8_northbridges[i], gatt_bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | } |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 188 | k8_flush_garts(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | return 0; |
| 190 | } |
| 191 | |
| 192 | |
| 193 | static void amd64_cleanup(void) |
| 194 | { |
| 195 | u32 tmp; |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 196 | int i; |
| 197 | for (i = 0; i < num_k8_northbridges; i++) { |
| 198 | struct pci_dev *dev = k8_northbridges[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | /* disable gart translation */ |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 200 | pci_read_config_dword(dev, AMD64_GARTAPERTURECTL, &tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | tmp &= ~AMD64_GARTEN; |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 202 | pci_write_config_dword(dev, AMD64_GARTAPERTURECTL, tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } |
| 204 | } |
| 205 | |
| 206 | |
Dave Jones | e5524f3 | 2007-02-22 18:41:28 -0500 | [diff] [blame] | 207 | static const struct agp_bridge_driver amd_8151_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | .owner = THIS_MODULE, |
| 209 | .aperture_sizes = amd_8151_sizes, |
| 210 | .size_type = U32_APER_SIZE, |
| 211 | .num_aperture_sizes = 7, |
| 212 | .configure = amd_8151_configure, |
| 213 | .fetch_size = amd64_fetch_size, |
| 214 | .cleanup = amd64_cleanup, |
| 215 | .tlb_flush = amd64_tlbflush, |
| 216 | .mask_memory = agp_generic_mask_memory, |
| 217 | .masks = NULL, |
| 218 | .agp_enable = agp_generic_enable, |
| 219 | .cache_flush = global_cache_flush, |
| 220 | .create_gatt_table = agp_generic_create_gatt_table, |
| 221 | .free_gatt_table = agp_generic_free_gatt_table, |
| 222 | .insert_memory = amd64_insert_memory, |
| 223 | .remove_memory = agp_generic_remove_memory, |
| 224 | .alloc_by_type = agp_generic_alloc_by_type, |
| 225 | .free_by_type = agp_generic_free_by_type, |
| 226 | .agp_alloc_page = agp_generic_alloc_page, |
Rene Herman | 5f310b6 | 2008-08-21 19:15:46 +0200 | [diff] [blame] | 227 | .agp_alloc_pages = agp_generic_alloc_pages, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | .agp_destroy_page = agp_generic_destroy_page, |
Rene Herman | 5f310b6 | 2008-08-21 19:15:46 +0200 | [diff] [blame] | 229 | .agp_destroy_pages = agp_generic_destroy_pages, |
Thomas Hellstrom | a030ce4 | 2007-01-23 10:33:43 +0100 | [diff] [blame] | 230 | .agp_type_to_mask_type = agp_generic_type_to_mask_type, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | }; |
| 232 | |
| 233 | /* Some basic sanity checks for the aperture. */ |
Pavel Machek | 0abbc78 | 2008-05-20 16:27:17 +0200 | [diff] [blame] | 234 | static int __devinit agp_aperture_valid(u64 aper, u32 size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | { |
Pavel Machek | 0abbc78 | 2008-05-20 16:27:17 +0200 | [diff] [blame] | 236 | if (!aperture_valid(aper, size, 32*1024*1024)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
| 239 | /* Request the Aperture. This catches cases when someone else |
| 240 | already put a mapping in there - happens with some very broken BIOS |
| 241 | |
| 242 | Maybe better to use pci_assign_resource/pci_enable_device instead |
| 243 | trusting the bridges? */ |
| 244 | if (!aperture_resource && |
| 245 | !(aperture_resource = request_mem_region(aper, size, "aperture"))) { |
| 246 | printk(KERN_ERR PFX "Aperture conflicts with PCI mapping.\n"); |
| 247 | return 0; |
| 248 | } |
| 249 | return 1; |
| 250 | } |
| 251 | |
| 252 | /* |
| 253 | * W*s centric BIOS sometimes only set up the aperture in the AGP |
| 254 | * bridge, not the northbridge. On AMD64 this is handled early |
Andi Kleen | a813ce4 | 2006-06-26 13:57:22 +0200 | [diff] [blame] | 255 | * in aperture.c, but when IOMMU is not enabled or we run |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | * on a 32bit kernel this needs to be redone. |
| 257 | * Unfortunately it is impossible to fix the aperture here because it's too late |
| 258 | * to allocate that much memory. But at least error out cleanly instead of |
| 259 | * crashing. |
| 260 | */ |
| 261 | static __devinit int fix_northbridge(struct pci_dev *nb, struct pci_dev *agp, |
| 262 | u16 cap) |
| 263 | { |
| 264 | u32 aper_low, aper_hi; |
| 265 | u64 aper, nb_aper; |
| 266 | int order = 0; |
| 267 | u32 nb_order, nb_base; |
| 268 | u16 apsize; |
| 269 | |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 270 | pci_read_config_dword(nb, AMD64_GARTAPERTURECTL, &nb_order); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | nb_order = (nb_order >> 1) & 7; |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 272 | pci_read_config_dword(nb, AMD64_GARTAPERTUREBASE, &nb_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | nb_aper = nb_base << 25; |
Pavel Machek | 0abbc78 | 2008-05-20 16:27:17 +0200 | [diff] [blame] | 274 | if (agp_aperture_valid(nb_aper, (32*1024*1024)<<nb_order)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | return 0; |
| 276 | } |
| 277 | |
| 278 | /* Northbridge seems to contain crap. Try the AGP bridge. */ |
| 279 | |
| 280 | pci_read_config_word(agp, cap+0x14, &apsize); |
| 281 | if (apsize == 0xffff) |
| 282 | return -1; |
| 283 | |
| 284 | apsize &= 0xfff; |
| 285 | /* Some BIOS use weird encodings not in the AGPv3 table. */ |
| 286 | if (apsize & 0xff) |
| 287 | apsize |= 0xf00; |
| 288 | order = 7 - hweight16(apsize); |
| 289 | |
| 290 | pci_read_config_dword(agp, 0x10, &aper_low); |
| 291 | pci_read_config_dword(agp, 0x14, &aper_hi); |
| 292 | aper = (aper_low & ~((1<<22)-1)) | ((u64)aper_hi << 32); |
Yinghai Lu | 1edc1ab | 2008-04-13 01:11:41 -0700 | [diff] [blame] | 293 | |
| 294 | /* |
| 295 | * On some sick chips APSIZE is 0. This means it wants 4G |
| 296 | * so let double check that order, and lets trust the AMD NB settings |
| 297 | */ |
Yinghai Lu | 8c9fd91 | 2008-04-13 18:42:31 -0700 | [diff] [blame] | 298 | if (order >=0 && aper + (32ULL<<(20 + order)) > 0x100000000ULL) { |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 299 | dev_info(&agp->dev, "aperture size %u MB is not right, using settings from NB\n", |
| 300 | 32 << order); |
Yinghai Lu | 1edc1ab | 2008-04-13 01:11:41 -0700 | [diff] [blame] | 301 | order = nb_order; |
| 302 | } |
| 303 | |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 304 | dev_info(&agp->dev, "aperture from AGP @ %Lx size %u MB\n", |
| 305 | aper, 32 << order); |
Pavel Machek | 0abbc78 | 2008-05-20 16:27:17 +0200 | [diff] [blame] | 306 | if (order < 0 || !agp_aperture_valid(aper, (32*1024*1024)<<order)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | return -1; |
| 308 | |
Pavel Machek | 3bb6fbf | 2008-04-15 12:43:57 +0200 | [diff] [blame] | 309 | pci_write_config_dword(nb, AMD64_GARTAPERTURECTL, order << 1); |
| 310 | pci_write_config_dword(nb, AMD64_GARTAPERTUREBASE, aper >> 25); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | |
| 312 | return 0; |
| 313 | } |
| 314 | |
| 315 | static __devinit int cache_nbs (struct pci_dev *pdev, u32 cap_ptr) |
| 316 | { |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 317 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 319 | if (cache_k8_northbridges() < 0) |
| 320 | return -ENODEV; |
| 321 | |
| 322 | i = 0; |
| 323 | for (i = 0; i < num_k8_northbridges; i++) { |
| 324 | struct pci_dev *dev = k8_northbridges[i]; |
| 325 | if (fix_northbridge(dev, pdev, cap_ptr) < 0) { |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 326 | dev_err(&dev->dev, "no usable aperture found\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | #ifdef __x86_64__ |
| 328 | /* should port this to i386 */ |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 329 | dev_err(&dev->dev, "consider rebooting with iommu=memaper=2 to get a good aperture\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | #endif |
| 331 | return -1; |
| 332 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | } |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 334 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | /* Handle AMD 8151 quirks */ |
| 338 | static void __devinit amd8151_init(struct pci_dev *pdev, struct agp_bridge_data *bridge) |
| 339 | { |
| 340 | char *revstring; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 342 | switch (pdev->revision) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | case 0x01: revstring="A0"; break; |
| 344 | case 0x02: revstring="A1"; break; |
| 345 | case 0x11: revstring="B0"; break; |
| 346 | case 0x12: revstring="B1"; break; |
| 347 | case 0x13: revstring="B2"; break; |
| 348 | case 0x14: revstring="B3"; break; |
| 349 | default: revstring="??"; break; |
| 350 | } |
| 351 | |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 352 | dev_info(&pdev->dev, "AMD 8151 AGP Bridge rev %s\n", revstring); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
| 354 | /* |
| 355 | * Work around errata. |
| 356 | * Chips before B2 stepping incorrectly reporting v3.5 |
| 357 | */ |
Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 358 | if (pdev->revision < 0x13) { |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 359 | dev_info(&pdev->dev, "correcting AGP revision (reports 3.5, is really 3.0)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | bridge->major_version = 3; |
| 361 | bridge->minor_version = 0; |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | |
Dave Jones | a42ab7f | 2005-11-16 16:07:02 -0800 | [diff] [blame] | 366 | static const struct aper_size_info_32 uli_sizes[7] = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | { |
| 368 | {256, 65536, 6, 10}, |
| 369 | {128, 32768, 5, 9}, |
| 370 | {64, 16384, 4, 8}, |
| 371 | {32, 8192, 3, 7}, |
| 372 | {16, 4096, 2, 6}, |
| 373 | {8, 2048, 1, 4}, |
| 374 | {4, 1024, 0, 3} |
| 375 | }; |
| 376 | static int __devinit uli_agp_init(struct pci_dev *pdev) |
| 377 | { |
| 378 | u32 httfea,baseaddr,enuscr; |
| 379 | struct pci_dev *dev1; |
| 380 | int i; |
| 381 | unsigned size = amd64_fetch_size(); |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 382 | |
| 383 | dev_info(&pdev->dev, "setting up ULi AGP\n"); |
Alan Cox | 7357db1 | 2006-09-26 17:56:55 +0100 | [diff] [blame] | 384 | dev1 = pci_get_slot (pdev->bus,PCI_DEVFN(0,0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | if (dev1 == NULL) { |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 386 | dev_info(&pdev->dev, "can't find ULi secondary device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | return -ENODEV; |
| 388 | } |
| 389 | |
| 390 | for (i = 0; i < ARRAY_SIZE(uli_sizes); i++) |
| 391 | if (uli_sizes[i].size == size) |
| 392 | break; |
| 393 | |
| 394 | if (i == ARRAY_SIZE(uli_sizes)) { |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 395 | dev_info(&pdev->dev, "no ULi size found for %d\n", size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | return -ENODEV; |
| 397 | } |
| 398 | |
| 399 | /* shadow x86-64 registers into ULi registers */ |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 400 | pci_read_config_dword (k8_northbridges[0], AMD64_GARTAPERTUREBASE, &httfea); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
| 402 | /* if x86-64 aperture base is beyond 4G, exit here */ |
| 403 | if ((httfea & 0x7fff) >> (32 - 25)) |
| 404 | return -ENODEV; |
| 405 | |
| 406 | httfea = (httfea& 0x7fff) << 25; |
| 407 | |
| 408 | pci_read_config_dword(pdev, ULI_X86_64_BASE_ADDR, &baseaddr); |
| 409 | baseaddr&= ~PCI_BASE_ADDRESS_MEM_MASK; |
| 410 | baseaddr|= httfea; |
| 411 | pci_write_config_dword(pdev, ULI_X86_64_BASE_ADDR, baseaddr); |
| 412 | |
| 413 | enuscr= httfea+ (size * 1024 * 1024) - 1; |
| 414 | pci_write_config_dword(dev1, ULI_X86_64_HTT_FEA_REG, httfea); |
| 415 | pci_write_config_dword(dev1, ULI_X86_64_ENU_SCR_REG, enuscr); |
Alan Cox | 7357db1 | 2006-09-26 17:56:55 +0100 | [diff] [blame] | 416 | |
| 417 | pci_dev_put(dev1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | return 0; |
| 419 | } |
| 420 | |
| 421 | |
Dave Jones | a42ab7f | 2005-11-16 16:07:02 -0800 | [diff] [blame] | 422 | static const struct aper_size_info_32 nforce3_sizes[5] = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | { |
| 424 | {512, 131072, 7, 0x00000000 }, |
| 425 | {256, 65536, 6, 0x00000008 }, |
| 426 | {128, 32768, 5, 0x0000000C }, |
| 427 | {64, 16384, 4, 0x0000000E }, |
| 428 | {32, 8192, 3, 0x0000000F } |
| 429 | }; |
| 430 | |
| 431 | /* Handle shadow device of the Nvidia NForce3 */ |
| 432 | /* CHECK-ME original 2.4 version set up some IORRs. Check if that is needed. */ |
Randy Dunlap | da015a6 | 2006-12-06 20:38:35 -0800 | [diff] [blame] | 433 | static int nforce3_agp_init(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | { |
| 435 | u32 tmp, apbase, apbar, aplimit; |
| 436 | struct pci_dev *dev1; |
| 437 | int i; |
| 438 | unsigned size = amd64_fetch_size(); |
| 439 | |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 440 | dev_info(&pdev->dev, "setting up Nforce3 AGP\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
Alan Cox | 7357db1 | 2006-09-26 17:56:55 +0100 | [diff] [blame] | 442 | dev1 = pci_get_slot(pdev->bus, PCI_DEVFN(11, 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | if (dev1 == NULL) { |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 444 | dev_info(&pdev->dev, "can't find Nforce3 secondary device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | return -ENODEV; |
| 446 | } |
| 447 | |
| 448 | for (i = 0; i < ARRAY_SIZE(nforce3_sizes); i++) |
| 449 | if (nforce3_sizes[i].size == size) |
| 450 | break; |
| 451 | |
| 452 | if (i == ARRAY_SIZE(nforce3_sizes)) { |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 453 | dev_info(&pdev->dev, "no NForce3 size found for %d\n", size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | return -ENODEV; |
| 455 | } |
| 456 | |
| 457 | pci_read_config_dword(dev1, NVIDIA_X86_64_1_APSIZE, &tmp); |
| 458 | tmp &= ~(0xf); |
| 459 | tmp |= nforce3_sizes[i].size_value; |
| 460 | pci_write_config_dword(dev1, NVIDIA_X86_64_1_APSIZE, tmp); |
| 461 | |
| 462 | /* shadow x86-64 registers into NVIDIA registers */ |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 463 | pci_read_config_dword (k8_northbridges[0], AMD64_GARTAPERTUREBASE, &apbase); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
| 465 | /* if x86-64 aperture base is beyond 4G, exit here */ |
Dave Jones | b41c82e | 2006-02-20 18:34:37 -0500 | [diff] [blame] | 466 | if ( (apbase & 0x7fff) >> (32 - 25) ) { |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 467 | dev_info(&pdev->dev, "aperture base > 4G\n"); |
Dave Jones | b41c82e | 2006-02-20 18:34:37 -0500 | [diff] [blame] | 468 | return -ENODEV; |
| 469 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
| 471 | apbase = (apbase & 0x7fff) << 25; |
| 472 | |
| 473 | pci_read_config_dword(pdev, NVIDIA_X86_64_0_APBASE, &apbar); |
| 474 | apbar &= ~PCI_BASE_ADDRESS_MEM_MASK; |
| 475 | apbar |= apbase; |
| 476 | pci_write_config_dword(pdev, NVIDIA_X86_64_0_APBASE, apbar); |
| 477 | |
| 478 | aplimit = apbase + (size * 1024 * 1024) - 1; |
| 479 | pci_write_config_dword(dev1, NVIDIA_X86_64_1_APBASE1, apbase); |
| 480 | pci_write_config_dword(dev1, NVIDIA_X86_64_1_APLIMIT1, aplimit); |
| 481 | pci_write_config_dword(dev1, NVIDIA_X86_64_1_APBASE2, apbase); |
| 482 | pci_write_config_dword(dev1, NVIDIA_X86_64_1_APLIMIT2, aplimit); |
| 483 | |
Alan Cox | 7357db1 | 2006-09-26 17:56:55 +0100 | [diff] [blame] | 484 | pci_dev_put(dev1); |
| 485 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | return 0; |
| 487 | } |
| 488 | |
| 489 | static int __devinit agp_amd64_probe(struct pci_dev *pdev, |
| 490 | const struct pci_device_id *ent) |
| 491 | { |
| 492 | struct agp_bridge_data *bridge; |
| 493 | u8 cap_ptr; |
Bjorn Helgaas | 55814b7 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 494 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | cap_ptr = pci_find_capability(pdev, PCI_CAP_ID_AGP); |
| 497 | if (!cap_ptr) |
| 498 | return -ENODEV; |
| 499 | |
| 500 | /* Could check for AGPv3 here */ |
| 501 | |
| 502 | bridge = agp_alloc_bridge(); |
| 503 | if (!bridge) |
| 504 | return -ENOMEM; |
| 505 | |
| 506 | if (pdev->vendor == PCI_VENDOR_ID_AMD && |
| 507 | pdev->device == PCI_DEVICE_ID_AMD_8151_0) { |
| 508 | amd8151_init(pdev, bridge); |
| 509 | } else { |
Bjorn Helgaas | e3cf695 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 510 | dev_info(&pdev->dev, "AGP bridge [%04x/%04x]\n", |
| 511 | pdev->vendor, pdev->device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | } |
| 513 | |
| 514 | bridge->driver = &amd_8151_driver; |
| 515 | bridge->dev = pdev; |
| 516 | bridge->capndx = cap_ptr; |
| 517 | |
| 518 | /* Fill in the mode register */ |
| 519 | pci_read_config_dword(pdev, bridge->capndx+PCI_AGP_STATUS, &bridge->mode); |
| 520 | |
| 521 | if (cache_nbs(pdev, cap_ptr) == -1) { |
| 522 | agp_put_bridge(bridge); |
| 523 | return -ENODEV; |
| 524 | } |
| 525 | |
| 526 | if (pdev->vendor == PCI_VENDOR_ID_NVIDIA) { |
| 527 | int ret = nforce3_agp_init(pdev); |
| 528 | if (ret) { |
| 529 | agp_put_bridge(bridge); |
| 530 | return ret; |
| 531 | } |
| 532 | } |
| 533 | |
| 534 | if (pdev->vendor == PCI_VENDOR_ID_AL) { |
| 535 | int ret = uli_agp_init(pdev); |
| 536 | if (ret) { |
| 537 | agp_put_bridge(bridge); |
| 538 | return ret; |
| 539 | } |
| 540 | } |
| 541 | |
| 542 | pci_set_drvdata(pdev, bridge); |
Bjorn Helgaas | 55814b7 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 543 | err = agp_add_bridge(bridge); |
| 544 | if (err < 0) |
| 545 | return err; |
| 546 | |
| 547 | agp_bridges_found++; |
| 548 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | static void __devexit agp_amd64_remove(struct pci_dev *pdev) |
| 552 | { |
| 553 | struct agp_bridge_data *bridge = pci_get_drvdata(pdev); |
| 554 | |
Keir Fraser | 07eee78 | 2005-03-30 13:17:04 -0800 | [diff] [blame] | 555 | release_mem_region(virt_to_gart(bridge->gatt_table_real), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | amd64_aperture_sizes[bridge->aperture_size_idx].size); |
| 557 | agp_remove_bridge(bridge); |
| 558 | agp_put_bridge(bridge); |
| 559 | } |
| 560 | |
akpm@osdl.org | 90be4b4 | 2006-01-03 23:00:10 -0800 | [diff] [blame] | 561 | #ifdef CONFIG_PM |
| 562 | |
| 563 | static int agp_amd64_suspend(struct pci_dev *pdev, pm_message_t state) |
| 564 | { |
| 565 | pci_save_state(pdev); |
| 566 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); |
| 567 | |
| 568 | return 0; |
| 569 | } |
| 570 | |
| 571 | static int agp_amd64_resume(struct pci_dev *pdev) |
| 572 | { |
| 573 | pci_set_power_state(pdev, PCI_D0); |
| 574 | pci_restore_state(pdev); |
| 575 | |
Dave Jones | ca2797f | 2006-05-21 17:11:42 -0400 | [diff] [blame] | 576 | if (pdev->vendor == PCI_VENDOR_ID_NVIDIA) |
| 577 | nforce3_agp_init(pdev); |
| 578 | |
akpm@osdl.org | 90be4b4 | 2006-01-03 23:00:10 -0800 | [diff] [blame] | 579 | return amd_8151_configure(); |
| 580 | } |
| 581 | |
| 582 | #endif /* CONFIG_PM */ |
| 583 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | static struct pci_device_id agp_amd64_pci_table[] = { |
| 585 | { |
| 586 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 587 | .class_mask = ~0, |
| 588 | .vendor = PCI_VENDOR_ID_AMD, |
| 589 | .device = PCI_DEVICE_ID_AMD_8151_0, |
| 590 | .subvendor = PCI_ANY_ID, |
| 591 | .subdevice = PCI_ANY_ID, |
| 592 | }, |
| 593 | /* ULi M1689 */ |
| 594 | { |
| 595 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 596 | .class_mask = ~0, |
| 597 | .vendor = PCI_VENDOR_ID_AL, |
| 598 | .device = PCI_DEVICE_ID_AL_M1689, |
| 599 | .subvendor = PCI_ANY_ID, |
| 600 | .subdevice = PCI_ANY_ID, |
| 601 | }, |
| 602 | /* VIA K8T800Pro */ |
| 603 | { |
| 604 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 605 | .class_mask = ~0, |
| 606 | .vendor = PCI_VENDOR_ID_VIA, |
| 607 | .device = PCI_DEVICE_ID_VIA_K8T800PRO_0, |
| 608 | .subvendor = PCI_ANY_ID, |
| 609 | .subdevice = PCI_ANY_ID, |
| 610 | }, |
| 611 | /* VIA K8T800 */ |
| 612 | { |
| 613 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 614 | .class_mask = ~0, |
| 615 | .vendor = PCI_VENDOR_ID_VIA, |
| 616 | .device = PCI_DEVICE_ID_VIA_8385_0, |
| 617 | .subvendor = PCI_ANY_ID, |
| 618 | .subdevice = PCI_ANY_ID, |
| 619 | }, |
| 620 | /* VIA K8M800 / K8N800 */ |
| 621 | { |
| 622 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 623 | .class_mask = ~0, |
| 624 | .vendor = PCI_VENDOR_ID_VIA, |
| 625 | .device = PCI_DEVICE_ID_VIA_8380_0, |
| 626 | .subvendor = PCI_ANY_ID, |
| 627 | .subdevice = PCI_ANY_ID, |
| 628 | }, |
Gabriel Mansi | d5cb8d3 | 2006-12-16 20:24:27 -0300 | [diff] [blame] | 629 | /* VIA K8M890 / K8N890 */ |
| 630 | { |
| 631 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 632 | .class_mask = ~0, |
| 633 | .vendor = PCI_VENDOR_ID_VIA, |
Dave Jones | 43ed41f | 2007-01-28 17:58:33 -0500 | [diff] [blame] | 634 | .device = PCI_DEVICE_ID_VIA_VT3336, |
Gabriel Mansi | d5cb8d3 | 2006-12-16 20:24:27 -0300 | [diff] [blame] | 635 | .subvendor = PCI_ANY_ID, |
| 636 | .subdevice = PCI_ANY_ID, |
| 637 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | /* VIA K8T890 */ |
| 639 | { |
| 640 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 641 | .class_mask = ~0, |
| 642 | .vendor = PCI_VENDOR_ID_VIA, |
| 643 | .device = PCI_DEVICE_ID_VIA_3238_0, |
| 644 | .subvendor = PCI_ANY_ID, |
| 645 | .subdevice = PCI_ANY_ID, |
| 646 | }, |
| 647 | /* VIA K8T800/K8M800/K8N800 */ |
| 648 | { |
| 649 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 650 | .class_mask = ~0, |
| 651 | .vendor = PCI_VENDOR_ID_VIA, |
| 652 | .device = PCI_DEVICE_ID_VIA_838X_1, |
| 653 | .subvendor = PCI_ANY_ID, |
| 654 | .subdevice = PCI_ANY_ID, |
| 655 | }, |
| 656 | /* NForce3 */ |
| 657 | { |
| 658 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 659 | .class_mask = ~0, |
| 660 | .vendor = PCI_VENDOR_ID_NVIDIA, |
| 661 | .device = PCI_DEVICE_ID_NVIDIA_NFORCE3, |
| 662 | .subvendor = PCI_ANY_ID, |
| 663 | .subdevice = PCI_ANY_ID, |
| 664 | }, |
| 665 | { |
| 666 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 667 | .class_mask = ~0, |
| 668 | .vendor = PCI_VENDOR_ID_NVIDIA, |
| 669 | .device = PCI_DEVICE_ID_NVIDIA_NFORCE3S, |
| 670 | .subvendor = PCI_ANY_ID, |
| 671 | .subdevice = PCI_ANY_ID, |
| 672 | }, |
| 673 | /* SIS 755 */ |
| 674 | { |
| 675 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 676 | .class_mask = ~0, |
| 677 | .vendor = PCI_VENDOR_ID_SI, |
| 678 | .device = PCI_DEVICE_ID_SI_755, |
| 679 | .subvendor = PCI_ANY_ID, |
| 680 | .subdevice = PCI_ANY_ID, |
| 681 | }, |
Dave Jones | 2fa938b | 2005-06-28 20:08:29 -0400 | [diff] [blame] | 682 | /* SIS 760 */ |
| 683 | { |
| 684 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 685 | .class_mask = ~0, |
| 686 | .vendor = PCI_VENDOR_ID_SI, |
| 687 | .device = PCI_DEVICE_ID_SI_760, |
| 688 | .subvendor = PCI_ANY_ID, |
| 689 | .subdevice = PCI_ANY_ID, |
| 690 | }, |
Andi Kleen | 870b768 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 691 | /* ALI/ULI M1695 */ |
| 692 | { |
| 693 | .class = (PCI_CLASS_BRIDGE_HOST << 8), |
| 694 | .class_mask = ~0, |
| 695 | .vendor = PCI_VENDOR_ID_AL, |
Henrik Kretzschmar | 5c48b0e | 2006-03-23 21:29:19 +0100 | [diff] [blame] | 696 | .device = 0x1695, |
Andi Kleen | 870b768 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 697 | .subvendor = PCI_ANY_ID, |
| 698 | .subdevice = PCI_ANY_ID, |
| 699 | }, |
| 700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | { } |
| 702 | }; |
| 703 | |
| 704 | MODULE_DEVICE_TABLE(pci, agp_amd64_pci_table); |
| 705 | |
| 706 | static struct pci_driver agp_amd64_pci_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | .name = "agpgart-amd64", |
| 708 | .id_table = agp_amd64_pci_table, |
| 709 | .probe = agp_amd64_probe, |
| 710 | .remove = agp_amd64_remove, |
akpm@osdl.org | 90be4b4 | 2006-01-03 23:00:10 -0800 | [diff] [blame] | 711 | #ifdef CONFIG_PM |
| 712 | .suspend = agp_amd64_suspend, |
| 713 | .resume = agp_amd64_resume, |
| 714 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | }; |
| 716 | |
| 717 | |
| 718 | /* Not static due to IOMMU code calling it early. */ |
| 719 | int __init agp_amd64_init(void) |
| 720 | { |
| 721 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | |
| 723 | if (agp_off) |
| 724 | return -EINVAL; |
Bjorn Helgaas | 55814b7 | 2008-07-30 12:26:51 -0700 | [diff] [blame] | 725 | err = pci_register_driver(&agp_amd64_pci_driver); |
| 726 | if (err < 0) |
| 727 | return err; |
| 728 | |
| 729 | if (agp_bridges_found == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | struct pci_dev *dev; |
| 731 | if (!agp_try_unsupported && !agp_try_unsupported_boot) { |
| 732 | printk(KERN_INFO PFX "No supported AGP bridge found.\n"); |
| 733 | #ifdef MODULE |
| 734 | printk(KERN_INFO PFX "You can try agp_try_unsupported=1\n"); |
| 735 | #else |
| 736 | printk(KERN_INFO PFX "You can boot with agp=try_unsupported\n"); |
| 737 | #endif |
| 738 | return -ENODEV; |
| 739 | } |
| 740 | |
| 741 | /* First check that we have at least one AMD64 NB */ |
Andi Kleen | a32073b | 2006-06-26 13:56:40 +0200 | [diff] [blame] | 742 | if (!pci_dev_present(k8_nb_ids)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | return -ENODEV; |
| 744 | |
| 745 | /* Look for any AGP bridge */ |
| 746 | dev = NULL; |
| 747 | err = -ENODEV; |
| 748 | for_each_pci_dev(dev) { |
| 749 | if (!pci_find_capability(dev, PCI_CAP_ID_AGP)) |
| 750 | continue; |
| 751 | /* Only one bridge supported right now */ |
| 752 | if (agp_amd64_probe(dev, NULL) == 0) { |
| 753 | err = 0; |
| 754 | break; |
| 755 | } |
| 756 | } |
| 757 | } |
| 758 | return err; |
| 759 | } |
| 760 | |
| 761 | static void __exit agp_amd64_cleanup(void) |
| 762 | { |
| 763 | if (aperture_resource) |
| 764 | release_resource(aperture_resource); |
| 765 | pci_unregister_driver(&agp_amd64_pci_driver); |
| 766 | } |
| 767 | |
| 768 | /* On AMD64 the PCI driver needs to initialize this driver early |
| 769 | for the IOMMU, so it has to be called via a backdoor. */ |
Joerg Roedel | 966396d | 2007-10-24 12:49:48 +0200 | [diff] [blame] | 770 | #ifndef CONFIG_GART_IOMMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | module_init(agp_amd64_init); |
| 772 | module_exit(agp_amd64_cleanup); |
| 773 | #endif |
| 774 | |
Dave Jones | f4432c5 | 2008-10-20 13:31:45 -0400 | [diff] [blame] | 775 | MODULE_AUTHOR("Dave Jones <davej@redhat.com>, Andi Kleen"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | module_param(agp_try_unsupported, bool, 0); |
| 777 | MODULE_LICENSE("GPL"); |