blob: 9c69f2e761f568cb56af191690be641d7aefffd2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel AGPGART routines.
3 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/module.h>
6#include <linux/pci.h>
7#include <linux/init.h>
Ahmed S. Darwish1eaf1222007-02-06 18:08:28 +02008#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/pagemap.h>
10#include <linux/agp_backend.h>
11#include "agp.h"
12
Eric Anholt65c25aa2006-09-06 11:57:18 -040013#define PCI_DEVICE_ID_INTEL_82946GZ_HB 0x2970
14#define PCI_DEVICE_ID_INTEL_82946GZ_IG 0x2972
15#define PCI_DEVICE_ID_INTEL_82965G_1_HB 0x2980
16#define PCI_DEVICE_ID_INTEL_82965G_1_IG 0x2982
17#define PCI_DEVICE_ID_INTEL_82965Q_HB 0x2990
18#define PCI_DEVICE_ID_INTEL_82965Q_IG 0x2992
19#define PCI_DEVICE_ID_INTEL_82965G_HB 0x29A0
20#define PCI_DEVICE_ID_INTEL_82965G_IG 0x29A2
Wang Zhenyu4598af32007-04-09 08:51:36 +080021#define PCI_DEVICE_ID_INTEL_82965GM_HB 0x2A00
22#define PCI_DEVICE_ID_INTEL_82965GM_IG 0x2A02
Eric Anholt65c25aa2006-09-06 11:57:18 -040023
24#define IS_I965 (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82946GZ_HB || \
25 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82965G_1_HB || \
26 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82965Q_HB || \
Wang Zhenyu4598af32007-04-09 08:51:36 +080027 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82965G_HB || \
28 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82965GM_HB)
Eric Anholt65c25aa2006-09-06 11:57:18 -040029
30
Thomas Hellstroma030ce42007-01-23 10:33:43 +010031extern int agp_memory_reserved;
32
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/* Intel 815 register */
35#define INTEL_815_APCONT 0x51
36#define INTEL_815_ATTBASE_MASK ~0x1FFFFFFF
37
38/* Intel i820 registers */
39#define INTEL_I820_RDCR 0x51
40#define INTEL_I820_ERRSTS 0xc8
41
42/* Intel i840 registers */
43#define INTEL_I840_MCHCFG 0x50
44#define INTEL_I840_ERRSTS 0xc8
45
46/* Intel i850 registers */
47#define INTEL_I850_MCHCFG 0x50
48#define INTEL_I850_ERRSTS 0xc8
49
50/* intel 915G registers */
51#define I915_GMADDR 0x18
52#define I915_MMADDR 0x10
53#define I915_PTEADDR 0x1C
54#define I915_GMCH_GMS_STOLEN_48M (0x6 << 4)
55#define I915_GMCH_GMS_STOLEN_64M (0x7 << 4)
56
Eric Anholt65c25aa2006-09-06 11:57:18 -040057/* Intel 965G registers */
58#define I965_MSAC 0x62
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/* Intel 7505 registers */
61#define INTEL_I7505_APSIZE 0x74
62#define INTEL_I7505_NCAPID 0x60
63#define INTEL_I7505_NISTAT 0x6c
64#define INTEL_I7505_ATTBASE 0x78
65#define INTEL_I7505_ERRSTS 0x42
66#define INTEL_I7505_AGPCTRL 0x70
67#define INTEL_I7505_MCHCFG 0x50
68
Dave Jonese5524f32007-02-22 18:41:28 -050069static const struct aper_size_info_fixed intel_i810_sizes[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 {64, 16384, 4},
72 /* The 32M mode still requires a 64k gatt */
73 {32, 8192, 4}
74};
75
76#define AGP_DCACHE_MEMORY 1
77#define AGP_PHYS_MEMORY 2
Thomas Hellstroma030ce42007-01-23 10:33:43 +010078#define INTEL_AGP_CACHED_MEMORY 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80static struct gatt_mask intel_i810_masks[] =
81{
82 {.mask = I810_PTE_VALID, .type = 0},
83 {.mask = (I810_PTE_VALID | I810_PTE_LOCAL), .type = AGP_DCACHE_MEMORY},
Thomas Hellstroma030ce42007-01-23 10:33:43 +010084 {.mask = I810_PTE_VALID, .type = 0},
85 {.mask = I810_PTE_VALID | I830_PTE_SYSTEM_CACHED,
86 .type = INTEL_AGP_CACHED_MEMORY}
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
89static struct _intel_i810_private {
90 struct pci_dev *i810_dev; /* device one */
91 volatile u8 __iomem *registers;
92 int num_dcache_entries;
93} intel_i810_private;
94
95static int intel_i810_fetch_size(void)
96{
97 u32 smram_miscc;
98 struct aper_size_info_fixed *values;
99
100 pci_read_config_dword(agp_bridge->dev, I810_SMRAM_MISCC, &smram_miscc);
101 values = A_SIZE_FIX(agp_bridge->driver->aperture_sizes);
102
103 if ((smram_miscc & I810_GMS) == I810_GMS_DISABLE) {
104 printk(KERN_WARNING PFX "i810 is disabled\n");
105 return 0;
106 }
107 if ((smram_miscc & I810_GFX_MEM_WIN_SIZE) == I810_GFX_MEM_WIN_32M) {
108 agp_bridge->previous_size =
109 agp_bridge->current_size = (void *) (values + 1);
110 agp_bridge->aperture_size_idx = 1;
111 return values[1].size;
112 } else {
113 agp_bridge->previous_size =
114 agp_bridge->current_size = (void *) (values);
115 agp_bridge->aperture_size_idx = 0;
116 return values[0].size;
117 }
118
119 return 0;
120}
121
122static int intel_i810_configure(void)
123{
124 struct aper_size_info_fixed *current_size;
125 u32 temp;
126 int i;
127
128 current_size = A_SIZE_FIX(agp_bridge->current_size);
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 if (!intel_i810_private.registers) {
Dave Jonese4ac5e42007-02-04 17:37:42 -0500131 pci_read_config_dword(intel_i810_private.i810_dev, I810_MMADDR, &temp);
132 temp &= 0xfff80000;
133
134 intel_i810_private.registers = ioremap(temp, 128 * 4096);
135 if (!intel_i810_private.registers) {
136 printk(KERN_ERR PFX "Unable to remap memory.\n");
137 return -ENOMEM;
138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140
141 if ((readl(intel_i810_private.registers+I810_DRAM_CTL)
142 & I810_DRAM_ROW_0) == I810_DRAM_ROW_0_SDRAM) {
143 /* This will need to be dynamically assigned */
144 printk(KERN_INFO PFX "detected 4MB dedicated video ram.\n");
145 intel_i810_private.num_dcache_entries = 1024;
146 }
147 pci_read_config_dword(intel_i810_private.i810_dev, I810_GMADDR, &temp);
148 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
149 writel(agp_bridge->gatt_bus_addr | I810_PGETBL_ENABLED, intel_i810_private.registers+I810_PGETBL_CTL);
150 readl(intel_i810_private.registers+I810_PGETBL_CTL); /* PCI Posting. */
151
152 if (agp_bridge->driver->needs_scratch_page) {
153 for (i = 0; i < current_size->num_entries; i++) {
154 writel(agp_bridge->scratch_page, intel_i810_private.registers+I810_PTE_BASE+(i*4));
155 readl(intel_i810_private.registers+I810_PTE_BASE+(i*4)); /* PCI posting. */
156 }
157 }
158 global_cache_flush();
159 return 0;
160}
161
162static void intel_i810_cleanup(void)
163{
164 writel(0, intel_i810_private.registers+I810_PGETBL_CTL);
165 readl(intel_i810_private.registers); /* PCI Posting. */
166 iounmap(intel_i810_private.registers);
167}
168
169static void intel_i810_tlbflush(struct agp_memory *mem)
170{
171 return;
172}
173
174static void intel_i810_agp_enable(struct agp_bridge_data *bridge, u32 mode)
175{
176 return;
177}
178
179/* Exists to support ARGB cursors */
180static void *i8xx_alloc_pages(void)
181{
182 struct page * page;
183
Linus Torvalds66c669b2006-11-22 14:55:29 -0800184 page = alloc_pages(GFP_KERNEL | GFP_DMA32, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (page == NULL)
186 return NULL;
187
188 if (change_page_attr(page, 4, PAGE_KERNEL_NOCACHE) < 0) {
Jan Beulich89cf7cc2007-04-02 14:50:14 +0100189 change_page_attr(page, 4, PAGE_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 global_flush_tlb();
Jan Beulich89cf7cc2007-04-02 14:50:14 +0100191 __free_pages(page, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return NULL;
193 }
194 global_flush_tlb();
195 get_page(page);
196 SetPageLocked(page);
197 atomic_inc(&agp_bridge->current_memory_agp);
198 return page_address(page);
199}
200
201static void i8xx_destroy_pages(void *addr)
202{
203 struct page *page;
204
205 if (addr == NULL)
206 return;
207
208 page = virt_to_page(addr);
209 change_page_attr(page, 4, PAGE_KERNEL);
210 global_flush_tlb();
211 put_page(page);
212 unlock_page(page);
Jan Beulich89cf7cc2007-04-02 14:50:14 +0100213 __free_pages(page, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 atomic_dec(&agp_bridge->current_memory_agp);
215}
216
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100217static int intel_i830_type_to_mask_type(struct agp_bridge_data *bridge,
218 int type)
219{
220 if (type < AGP_USER_TYPES)
221 return type;
222 else if (type == AGP_USER_CACHED_MEMORY)
223 return INTEL_AGP_CACHED_MEMORY;
224 else
225 return 0;
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static int intel_i810_insert_entries(struct agp_memory *mem, off_t pg_start,
229 int type)
230{
231 int i, j, num_entries;
232 void *temp;
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100233 int ret = -EINVAL;
234 int mask_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100236 if (mem->page_count == 0)
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100237 goto out;
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 temp = agp_bridge->current_size;
240 num_entries = A_SIZE_FIX(temp)->num_entries;
241
Dave Jones6a92a4e2006-02-28 00:54:25 -0500242 if ((pg_start + mem->page_count) > num_entries)
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100243 goto out_err;
244
Dave Jones6a92a4e2006-02-28 00:54:25 -0500245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 for (j = pg_start; j < (pg_start + mem->page_count); j++) {
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100247 if (!PGE_EMPTY(agp_bridge, readl(agp_bridge->gatt_table+j))) {
248 ret = -EBUSY;
249 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100253 if (type != mem->type)
254 goto out_err;
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100255
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100256 mask_type = agp_bridge->driver->agp_type_to_mask_type(agp_bridge, type);
257
258 switch (mask_type) {
259 case AGP_DCACHE_MEMORY:
260 if (!mem->is_flushed)
261 global_cache_flush();
262 for (i = pg_start; i < (pg_start + mem->page_count); i++) {
263 writel((i*4096)|I810_PTE_LOCAL|I810_PTE_VALID,
264 intel_i810_private.registers+I810_PTE_BASE+(i*4));
265 }
266 readl(intel_i810_private.registers+I810_PTE_BASE+((i-1)*4));
267 break;
268 case AGP_PHYS_MEMORY:
269 case AGP_NORMAL_MEMORY:
270 if (!mem->is_flushed)
271 global_cache_flush();
272 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) {
273 writel(agp_bridge->driver->mask_memory(agp_bridge,
274 mem->memory[i],
275 mask_type),
276 intel_i810_private.registers+I810_PTE_BASE+(j*4));
277 }
278 readl(intel_i810_private.registers+I810_PTE_BASE+((j-1)*4));
279 break;
280 default:
281 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 agp_bridge->driver->tlb_flush(mem);
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100285out:
286 ret = 0;
287out_err:
288 mem->is_flushed = 1;
289 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292static int intel_i810_remove_entries(struct agp_memory *mem, off_t pg_start,
293 int type)
294{
295 int i;
296
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100297 if (mem->page_count == 0)
298 return 0;
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 for (i = pg_start; i < (mem->page_count + pg_start); i++) {
301 writel(agp_bridge->scratch_page, intel_i810_private.registers+I810_PTE_BASE+(i*4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100303 readl(intel_i810_private.registers+I810_PTE_BASE+((i-1)*4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 agp_bridge->driver->tlb_flush(mem);
306 return 0;
307}
308
309/*
310 * The i810/i830 requires a physical address to program its mouse
311 * pointer into hardware.
312 * However the Xserver still writes to it through the agp aperture.
313 */
314static struct agp_memory *alloc_agpphysmem_i8xx(size_t pg_count, int type)
315{
316 struct agp_memory *new;
317 void *addr;
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 switch (pg_count) {
320 case 1: addr = agp_bridge->driver->agp_alloc_page(agp_bridge);
Alan Hourihane88d51962005-11-06 23:35:34 -0800321 global_flush_tlb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 break;
323 case 4:
324 /* kludge to get 4 physical pages for ARGB cursor */
325 addr = i8xx_alloc_pages();
326 break;
327 default:
328 return NULL;
329 }
330
331 if (addr == NULL)
332 return NULL;
333
334 new = agp_create_memory(pg_count);
335 if (new == NULL)
336 return NULL;
337
Keir Fraser07eee782005-03-30 13:17:04 -0800338 new->memory[0] = virt_to_gart(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (pg_count == 4) {
340 /* kludge to get 4 physical pages for ARGB cursor */
341 new->memory[1] = new->memory[0] + PAGE_SIZE;
342 new->memory[2] = new->memory[1] + PAGE_SIZE;
343 new->memory[3] = new->memory[2] + PAGE_SIZE;
344 }
345 new->page_count = pg_count;
346 new->num_scratch_pages = pg_count;
347 new->type = AGP_PHYS_MEMORY;
348 new->physical = new->memory[0];
349 return new;
350}
351
352static struct agp_memory *intel_i810_alloc_by_type(size_t pg_count, int type)
353{
354 struct agp_memory *new;
355
356 if (type == AGP_DCACHE_MEMORY) {
357 if (pg_count != intel_i810_private.num_dcache_entries)
358 return NULL;
359
360 new = agp_create_memory(1);
361 if (new == NULL)
362 return NULL;
363
364 new->type = AGP_DCACHE_MEMORY;
365 new->page_count = pg_count;
366 new->num_scratch_pages = 0;
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100367 agp_free_page_array(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return new;
369 }
370 if (type == AGP_PHYS_MEMORY)
371 return alloc_agpphysmem_i8xx(pg_count, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return NULL;
373}
374
375static void intel_i810_free_by_type(struct agp_memory *curr)
376{
377 agp_free_key(curr->key);
Dave Jones6a92a4e2006-02-28 00:54:25 -0500378 if (curr->type == AGP_PHYS_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (curr->page_count == 4)
Keir Fraser07eee782005-03-30 13:17:04 -0800380 i8xx_destroy_pages(gart_to_virt(curr->memory[0]));
Alan Hourihane88d51962005-11-06 23:35:34 -0800381 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 agp_bridge->driver->agp_destroy_page(
Keir Fraser07eee782005-03-30 13:17:04 -0800383 gart_to_virt(curr->memory[0]));
Alan Hourihane88d51962005-11-06 23:35:34 -0800384 global_flush_tlb();
385 }
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100386 agp_free_page_array(curr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388 kfree(curr);
389}
390
391static unsigned long intel_i810_mask_memory(struct agp_bridge_data *bridge,
392 unsigned long addr, int type)
393{
394 /* Type checking must be done elsewhere */
395 return addr | bridge->driver->masks[type].mask;
396}
397
398static struct aper_size_info_fixed intel_i830_sizes[] =
399{
400 {128, 32768, 5},
401 /* The 64M mode still requires a 128k gatt */
402 {64, 16384, 5},
403 {256, 65536, 6},
Eric Anholt65c25aa2006-09-06 11:57:18 -0400404 {512, 131072, 7},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405};
406
407static struct _intel_i830_private {
408 struct pci_dev *i830_dev; /* device one */
409 volatile u8 __iomem *registers;
410 volatile u32 __iomem *gtt; /* I915G */
Eric Anholtc41e0de2006-12-19 12:57:24 -0800411 /* gtt_entries is the number of gtt entries that are already mapped
412 * to stolen memory. Stolen memory is larger than the memory mapped
413 * through gtt_entries, as it includes some reserved space for the BIOS
414 * popup and for the GTT.
415 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 int gtt_entries;
417} intel_i830_private;
418
419static void intel_i830_init_gtt_entries(void)
420{
421 u16 gmch_ctrl;
422 int gtt_entries;
423 u8 rdct;
424 int local = 0;
425 static const int ddt[4] = { 0, 16, 32, 64 };
Eric Anholtc41e0de2006-12-19 12:57:24 -0800426 int size; /* reserved space (in kb) at the top of stolen memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 pci_read_config_word(agp_bridge->dev,I830_GMCH_CTRL,&gmch_ctrl);
429
Eric Anholtc41e0de2006-12-19 12:57:24 -0800430 if (IS_I965) {
431 u32 pgetbl_ctl;
Wang Zhenyu52ea0712007-04-10 09:42:48 +0800432 pgetbl_ctl = readl(intel_i830_private.registers+I810_PGETBL_CTL);
Eric Anholtc41e0de2006-12-19 12:57:24 -0800433
Eric Anholtc41e0de2006-12-19 12:57:24 -0800434 /* The 965 has a field telling us the size of the GTT,
435 * which may be larger than what is necessary to map the
436 * aperture.
437 */
438 switch (pgetbl_ctl & I965_PGETBL_SIZE_MASK) {
439 case I965_PGETBL_SIZE_128KB:
440 size = 128;
441 break;
442 case I965_PGETBL_SIZE_256KB:
443 size = 256;
444 break;
445 case I965_PGETBL_SIZE_512KB:
446 size = 512;
447 break;
448 default:
449 printk(KERN_INFO PFX "Unknown page table size, "
450 "assuming 512KB\n");
451 size = 512;
452 }
453 size += 4; /* add in BIOS popup space */
454 } else {
455 /* On previous hardware, the GTT size was just what was
456 * required to map the aperture.
457 */
458 size = agp_bridge->driver->fetch_size() + 4;
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 if (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82830_HB ||
462 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82845G_HB) {
463 switch (gmch_ctrl & I830_GMCH_GMS_MASK) {
464 case I830_GMCH_GMS_STOLEN_512:
465 gtt_entries = KB(512) - KB(size);
466 break;
467 case I830_GMCH_GMS_STOLEN_1024:
468 gtt_entries = MB(1) - KB(size);
469 break;
470 case I830_GMCH_GMS_STOLEN_8192:
471 gtt_entries = MB(8) - KB(size);
472 break;
473 case I830_GMCH_GMS_LOCAL:
474 rdct = readb(intel_i830_private.registers+I830_RDRAM_CHANNEL_TYPE);
475 gtt_entries = (I830_RDRAM_ND(rdct) + 1) *
476 MB(ddt[I830_RDRAM_DDT(rdct)]);
477 local = 1;
478 break;
479 default:
480 gtt_entries = 0;
481 break;
482 }
483 } else {
484 switch (gmch_ctrl & I830_GMCH_GMS_MASK) {
485 case I855_GMCH_GMS_STOLEN_1M:
486 gtt_entries = MB(1) - KB(size);
487 break;
488 case I855_GMCH_GMS_STOLEN_4M:
489 gtt_entries = MB(4) - KB(size);
490 break;
491 case I855_GMCH_GMS_STOLEN_8M:
492 gtt_entries = MB(8) - KB(size);
493 break;
494 case I855_GMCH_GMS_STOLEN_16M:
495 gtt_entries = MB(16) - KB(size);
496 break;
497 case I855_GMCH_GMS_STOLEN_32M:
498 gtt_entries = MB(32) - KB(size);
499 break;
500 case I915_GMCH_GMS_STOLEN_48M:
501 /* Check it's really I915G */
502 if (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82915G_HB ||
Alan Hourihaned0de98f2005-05-31 19:50:49 +0100503 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82915GM_HB ||
Alan Hourihane3b0e8ea2006-01-19 14:08:40 +0000504 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82945G_HB ||
Eric Anholt65c25aa2006-09-06 11:57:18 -0400505 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82945GM_HB || IS_I965 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 gtt_entries = MB(48) - KB(size);
507 else
508 gtt_entries = 0;
509 break;
510 case I915_GMCH_GMS_STOLEN_64M:
511 /* Check it's really I915G */
512 if (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82915G_HB ||
Alan Hourihaned0de98f2005-05-31 19:50:49 +0100513 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82915GM_HB ||
Alan Hourihane3b0e8ea2006-01-19 14:08:40 +0000514 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82945G_HB ||
Eric Anholt65c25aa2006-09-06 11:57:18 -0400515 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82945GM_HB || IS_I965)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 gtt_entries = MB(64) - KB(size);
517 else
518 gtt_entries = 0;
519 default:
520 gtt_entries = 0;
521 break;
522 }
523 }
524 if (gtt_entries > 0)
525 printk(KERN_INFO PFX "Detected %dK %s memory.\n",
526 gtt_entries / KB(1), local ? "local" : "stolen");
527 else
528 printk(KERN_INFO PFX
529 "No pre-allocated video memory detected.\n");
530 gtt_entries /= KB(4);
531
532 intel_i830_private.gtt_entries = gtt_entries;
533}
534
535/* The intel i830 automatically initializes the agp aperture during POST.
536 * Use the memory already set aside for in the GTT.
537 */
538static int intel_i830_create_gatt_table(struct agp_bridge_data *bridge)
539{
540 int page_order;
541 struct aper_size_info_fixed *size;
542 int num_entries;
543 u32 temp;
544
545 size = agp_bridge->current_size;
546 page_order = size->page_order;
547 num_entries = size->num_entries;
548 agp_bridge->gatt_table_real = NULL;
549
550 pci_read_config_dword(intel_i830_private.i830_dev,I810_MMADDR,&temp);
551 temp &= 0xfff80000;
552
553 intel_i830_private.registers = ioremap(temp,128 * 4096);
554 if (!intel_i830_private.registers)
555 return -ENOMEM;
556
557 temp = readl(intel_i830_private.registers+I810_PGETBL_CTL) & 0xfffff000;
558 global_cache_flush(); /* FIXME: ?? */
559
560 /* we have to call this as early as possible after the MMIO base address is known */
561 intel_i830_init_gtt_entries();
562
563 agp_bridge->gatt_table = NULL;
564
565 agp_bridge->gatt_bus_addr = temp;
566
567 return 0;
568}
569
570/* Return the gatt table to a sane state. Use the top of stolen
571 * memory for the GTT.
572 */
573static int intel_i830_free_gatt_table(struct agp_bridge_data *bridge)
574{
575 return 0;
576}
577
578static int intel_i830_fetch_size(void)
579{
580 u16 gmch_ctrl;
581 struct aper_size_info_fixed *values;
582
583 values = A_SIZE_FIX(agp_bridge->driver->aperture_sizes);
584
585 if (agp_bridge->dev->device != PCI_DEVICE_ID_INTEL_82830_HB &&
586 agp_bridge->dev->device != PCI_DEVICE_ID_INTEL_82845G_HB) {
587 /* 855GM/852GM/865G has 128MB aperture size */
588 agp_bridge->previous_size = agp_bridge->current_size = (void *) values;
589 agp_bridge->aperture_size_idx = 0;
590 return values[0].size;
591 }
592
593 pci_read_config_word(agp_bridge->dev,I830_GMCH_CTRL,&gmch_ctrl);
594
595 if ((gmch_ctrl & I830_GMCH_MEM_MASK) == I830_GMCH_MEM_128M) {
596 agp_bridge->previous_size = agp_bridge->current_size = (void *) values;
597 agp_bridge->aperture_size_idx = 0;
598 return values[0].size;
599 } else {
600 agp_bridge->previous_size = agp_bridge->current_size = (void *) (values + 1);
601 agp_bridge->aperture_size_idx = 1;
602 return values[1].size;
603 }
604
605 return 0;
606}
607
608static int intel_i830_configure(void)
609{
610 struct aper_size_info_fixed *current_size;
611 u32 temp;
612 u16 gmch_ctrl;
613 int i;
614
615 current_size = A_SIZE_FIX(agp_bridge->current_size);
616
617 pci_read_config_dword(intel_i830_private.i830_dev,I810_GMADDR,&temp);
618 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
619
620 pci_read_config_word(agp_bridge->dev,I830_GMCH_CTRL,&gmch_ctrl);
621 gmch_ctrl |= I830_GMCH_ENABLED;
622 pci_write_config_word(agp_bridge->dev,I830_GMCH_CTRL,gmch_ctrl);
623
624 writel(agp_bridge->gatt_bus_addr|I810_PGETBL_ENABLED, intel_i830_private.registers+I810_PGETBL_CTL);
625 readl(intel_i830_private.registers+I810_PGETBL_CTL); /* PCI Posting. */
626
627 if (agp_bridge->driver->needs_scratch_page) {
628 for (i = intel_i830_private.gtt_entries; i < current_size->num_entries; i++) {
629 writel(agp_bridge->scratch_page, intel_i830_private.registers+I810_PTE_BASE+(i*4));
630 readl(intel_i830_private.registers+I810_PTE_BASE+(i*4)); /* PCI Posting. */
631 }
632 }
633
634 global_cache_flush();
635 return 0;
636}
637
638static void intel_i830_cleanup(void)
639{
640 iounmap(intel_i830_private.registers);
641}
642
643static int intel_i830_insert_entries(struct agp_memory *mem,off_t pg_start, int type)
644{
645 int i,j,num_entries;
646 void *temp;
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100647 int ret = -EINVAL;
648 int mask_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100650 if (mem->page_count == 0)
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100651 goto out;
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 temp = agp_bridge->current_size;
654 num_entries = A_SIZE_FIX(temp)->num_entries;
655
656 if (pg_start < intel_i830_private.gtt_entries) {
657 printk (KERN_DEBUG PFX "pg_start == 0x%.8lx,intel_i830_private.gtt_entries == 0x%.8x\n",
658 pg_start,intel_i830_private.gtt_entries);
659
660 printk (KERN_INFO PFX "Trying to insert into local/stolen memory\n");
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100661 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663
664 if ((pg_start + mem->page_count) > num_entries)
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100665 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 /* The i830 can't check the GTT for entries since its read only,
668 * depend on the caller to make the correct offset decisions.
669 */
670
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100671 if (type != mem->type)
672 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100674 mask_type = agp_bridge->driver->agp_type_to_mask_type(agp_bridge, type);
675
676 if (mask_type != 0 && mask_type != AGP_PHYS_MEMORY &&
677 mask_type != INTEL_AGP_CACHED_MEMORY)
678 goto out_err;
679
680 if (!mem->is_flushed)
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100681 global_cache_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) {
684 writel(agp_bridge->driver->mask_memory(agp_bridge,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100685 mem->memory[i], mask_type),
686 intel_i830_private.registers+I810_PTE_BASE+(j*4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100688 readl(intel_i830_private.registers+I810_PTE_BASE+((j-1)*4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 agp_bridge->driver->tlb_flush(mem);
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100690
691out:
692 ret = 0;
693out_err:
694 mem->is_flushed = 1;
695 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698static int intel_i830_remove_entries(struct agp_memory *mem,off_t pg_start,
699 int type)
700{
701 int i;
702
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100703 if (mem->page_count == 0)
704 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 if (pg_start < intel_i830_private.gtt_entries) {
707 printk (KERN_INFO PFX "Trying to disable local/stolen memory\n");
708 return -EINVAL;
709 }
710
711 for (i = pg_start; i < (mem->page_count + pg_start); i++) {
712 writel(agp_bridge->scratch_page, intel_i830_private.registers+I810_PTE_BASE+(i*4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100714 readl(intel_i830_private.registers+I810_PTE_BASE+((i-1)*4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 agp_bridge->driver->tlb_flush(mem);
717 return 0;
718}
719
720static struct agp_memory *intel_i830_alloc_by_type(size_t pg_count,int type)
721{
722 if (type == AGP_PHYS_MEMORY)
723 return alloc_agpphysmem_i8xx(pg_count, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 /* always return NULL for other allocation types for now */
725 return NULL;
726}
727
728static int intel_i915_configure(void)
729{
730 struct aper_size_info_fixed *current_size;
731 u32 temp;
732 u16 gmch_ctrl;
733 int i;
734
735 current_size = A_SIZE_FIX(agp_bridge->current_size);
736
737 pci_read_config_dword(intel_i830_private.i830_dev, I915_GMADDR, &temp);
738
739 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
740
741 pci_read_config_word(agp_bridge->dev,I830_GMCH_CTRL,&gmch_ctrl);
742 gmch_ctrl |= I830_GMCH_ENABLED;
743 pci_write_config_word(agp_bridge->dev,I830_GMCH_CTRL,gmch_ctrl);
744
745 writel(agp_bridge->gatt_bus_addr|I810_PGETBL_ENABLED, intel_i830_private.registers+I810_PGETBL_CTL);
746 readl(intel_i830_private.registers+I810_PGETBL_CTL); /* PCI Posting. */
747
748 if (agp_bridge->driver->needs_scratch_page) {
749 for (i = intel_i830_private.gtt_entries; i < current_size->num_entries; i++) {
750 writel(agp_bridge->scratch_page, intel_i830_private.gtt+i);
751 readl(intel_i830_private.gtt+i); /* PCI Posting. */
752 }
753 }
754
755 global_cache_flush();
756 return 0;
757}
758
759static void intel_i915_cleanup(void)
760{
761 iounmap(intel_i830_private.gtt);
762 iounmap(intel_i830_private.registers);
763}
764
765static int intel_i915_insert_entries(struct agp_memory *mem,off_t pg_start,
766 int type)
767{
768 int i,j,num_entries;
769 void *temp;
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100770 int ret = -EINVAL;
771 int mask_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100773 if (mem->page_count == 0)
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100774 goto out;
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 temp = agp_bridge->current_size;
777 num_entries = A_SIZE_FIX(temp)->num_entries;
778
779 if (pg_start < intel_i830_private.gtt_entries) {
780 printk (KERN_DEBUG PFX "pg_start == 0x%.8lx,intel_i830_private.gtt_entries == 0x%.8x\n",
781 pg_start,intel_i830_private.gtt_entries);
782
783 printk (KERN_INFO PFX "Trying to insert into local/stolen memory\n");
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100784 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786
787 if ((pg_start + mem->page_count) > num_entries)
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100788 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100790 /* The i915 can't check the GTT for entries since its read only,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 * depend on the caller to make the correct offset decisions.
792 */
793
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100794 if (type != mem->type)
795 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100797 mask_type = agp_bridge->driver->agp_type_to_mask_type(agp_bridge, type);
798
799 if (mask_type != 0 && mask_type != AGP_PHYS_MEMORY &&
800 mask_type != INTEL_AGP_CACHED_MEMORY)
801 goto out_err;
802
803 if (!mem->is_flushed)
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100804 global_cache_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) {
807 writel(agp_bridge->driver->mask_memory(agp_bridge,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100808 mem->memory[i], mask_type), intel_i830_private.gtt+j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100811 readl(intel_i830_private.gtt+j-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 agp_bridge->driver->tlb_flush(mem);
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100813
814 out:
815 ret = 0;
816 out_err:
817 mem->is_flushed = 1;
818 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
821static int intel_i915_remove_entries(struct agp_memory *mem,off_t pg_start,
822 int type)
823{
824 int i;
825
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100826 if (mem->page_count == 0)
827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 if (pg_start < intel_i830_private.gtt_entries) {
830 printk (KERN_INFO PFX "Trying to disable local/stolen memory\n");
831 return -EINVAL;
832 }
833
834 for (i = pg_start; i < (mem->page_count + pg_start); i++) {
835 writel(agp_bridge->scratch_page, intel_i830_private.gtt+i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
Thomas Hellstrom5aa80c72006-12-20 16:33:41 +0100837 readl(intel_i830_private.gtt+i-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 agp_bridge->driver->tlb_flush(mem);
840 return 0;
841}
842
Eric Anholtc41e0de2006-12-19 12:57:24 -0800843/* Return the aperture size by just checking the resource length. The effect
844 * described in the spec of the MSAC registers is just changing of the
845 * resource size.
846 */
847static int intel_i9xx_fetch_size(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Ahmed S. Darwish1eaf1222007-02-06 18:08:28 +0200849 int num_sizes = ARRAY_SIZE(intel_i830_sizes);
Eric Anholtc41e0de2006-12-19 12:57:24 -0800850 int aper_size; /* size in megabytes */
851 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Eric Anholtc41e0de2006-12-19 12:57:24 -0800853 aper_size = pci_resource_len(intel_i830_private.i830_dev, 2) / MB(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Eric Anholtc41e0de2006-12-19 12:57:24 -0800855 for (i = 0; i < num_sizes; i++) {
856 if (aper_size == intel_i830_sizes[i].size) {
857 agp_bridge->current_size = intel_i830_sizes + i;
858 agp_bridge->previous_size = agp_bridge->current_size;
859 return aper_size;
860 }
861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Eric Anholtc41e0de2006-12-19 12:57:24 -0800863 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
866/* The intel i915 automatically initializes the agp aperture during POST.
867 * Use the memory already set aside for in the GTT.
868 */
869static int intel_i915_create_gatt_table(struct agp_bridge_data *bridge)
870{
871 int page_order;
872 struct aper_size_info_fixed *size;
873 int num_entries;
874 u32 temp, temp2;
875
876 size = agp_bridge->current_size;
877 page_order = size->page_order;
878 num_entries = size->num_entries;
879 agp_bridge->gatt_table_real = NULL;
880
881 pci_read_config_dword(intel_i830_private.i830_dev, I915_MMADDR, &temp);
882 pci_read_config_dword(intel_i830_private.i830_dev, I915_PTEADDR,&temp2);
883
884 intel_i830_private.gtt = ioremap(temp2, 256 * 1024);
885 if (!intel_i830_private.gtt)
886 return -ENOMEM;
887
888 temp &= 0xfff80000;
889
890 intel_i830_private.registers = ioremap(temp,128 * 4096);
891 if (!intel_i830_private.registers)
892 return -ENOMEM;
893
894 temp = readl(intel_i830_private.registers+I810_PGETBL_CTL) & 0xfffff000;
895 global_cache_flush(); /* FIXME: ? */
896
897 /* we have to call this as early as possible after the MMIO base address is known */
898 intel_i830_init_gtt_entries();
899
900 agp_bridge->gatt_table = NULL;
901
902 agp_bridge->gatt_bus_addr = temp;
903
904 return 0;
905}
Linus Torvalds7d915a32006-11-22 09:37:54 -0800906
907/*
908 * The i965 supports 36-bit physical addresses, but to keep
909 * the format of the GTT the same, the bits that don't fit
910 * in a 32-bit word are shifted down to bits 4..7.
911 *
912 * Gcc is smart enough to notice that "(addr >> 28) & 0xf0"
913 * is always zero on 32-bit architectures, so no need to make
914 * this conditional.
915 */
916static unsigned long intel_i965_mask_memory(struct agp_bridge_data *bridge,
917 unsigned long addr, int type)
918{
919 /* Shift high bits down */
920 addr |= (addr >> 28) & 0xf0;
921
922 /* Type checking must be done elsewhere */
923 return addr | bridge->driver->masks[type].mask;
924}
925
Eric Anholt65c25aa2006-09-06 11:57:18 -0400926/* The intel i965 automatically initializes the agp aperture during POST.
Eric Anholtc41e0de2006-12-19 12:57:24 -0800927 * Use the memory already set aside for in the GTT.
928 */
Eric Anholt65c25aa2006-09-06 11:57:18 -0400929static int intel_i965_create_gatt_table(struct agp_bridge_data *bridge)
930{
931 int page_order;
932 struct aper_size_info_fixed *size;
933 int num_entries;
934 u32 temp;
935
936 size = agp_bridge->current_size;
937 page_order = size->page_order;
938 num_entries = size->num_entries;
939 agp_bridge->gatt_table_real = NULL;
940
941 pci_read_config_dword(intel_i830_private.i830_dev, I915_MMADDR, &temp);
942
943 temp &= 0xfff00000;
944 intel_i830_private.gtt = ioremap((temp + (512 * 1024)) , 512 * 1024);
945
946 if (!intel_i830_private.gtt)
947 return -ENOMEM;
948
949
950 intel_i830_private.registers = ioremap(temp,128 * 4096);
951 if (!intel_i830_private.registers)
952 return -ENOMEM;
953
954 temp = readl(intel_i830_private.registers+I810_PGETBL_CTL) & 0xfffff000;
955 global_cache_flush(); /* FIXME: ? */
956
957 /* we have to call this as early as possible after the MMIO base address is known */
958 intel_i830_init_gtt_entries();
959
960 agp_bridge->gatt_table = NULL;
961
962 agp_bridge->gatt_bus_addr = temp;
963
964 return 0;
965}
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968static int intel_fetch_size(void)
969{
970 int i;
971 u16 temp;
972 struct aper_size_info_16 *values;
973
974 pci_read_config_word(agp_bridge->dev, INTEL_APSIZE, &temp);
975 values = A_SIZE_16(agp_bridge->driver->aperture_sizes);
976
977 for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) {
978 if (temp == values[i].size_value) {
979 agp_bridge->previous_size = agp_bridge->current_size = (void *) (values + i);
980 agp_bridge->aperture_size_idx = i;
981 return values[i].size;
982 }
983 }
984
985 return 0;
986}
987
988static int __intel_8xx_fetch_size(u8 temp)
989{
990 int i;
991 struct aper_size_info_8 *values;
992
993 values = A_SIZE_8(agp_bridge->driver->aperture_sizes);
994
995 for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) {
996 if (temp == values[i].size_value) {
997 agp_bridge->previous_size =
998 agp_bridge->current_size = (void *) (values + i);
999 agp_bridge->aperture_size_idx = i;
1000 return values[i].size;
1001 }
1002 }
1003 return 0;
1004}
1005
1006static int intel_8xx_fetch_size(void)
1007{
1008 u8 temp;
1009
1010 pci_read_config_byte(agp_bridge->dev, INTEL_APSIZE, &temp);
1011 return __intel_8xx_fetch_size(temp);
1012}
1013
1014static int intel_815_fetch_size(void)
1015{
1016 u8 temp;
1017
1018 /* Intel 815 chipsets have a _weird_ APSIZE register with only
1019 * one non-reserved bit, so mask the others out ... */
1020 pci_read_config_byte(agp_bridge->dev, INTEL_APSIZE, &temp);
1021 temp &= (1 << 3);
1022
1023 return __intel_8xx_fetch_size(temp);
1024}
1025
1026static void intel_tlbflush(struct agp_memory *mem)
1027{
1028 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x2200);
1029 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x2280);
1030}
1031
1032
1033static void intel_8xx_tlbflush(struct agp_memory *mem)
1034{
1035 u32 temp;
1036 pci_read_config_dword(agp_bridge->dev, INTEL_AGPCTRL, &temp);
1037 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, temp & ~(1 << 7));
1038 pci_read_config_dword(agp_bridge->dev, INTEL_AGPCTRL, &temp);
1039 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, temp | (1 << 7));
1040}
1041
1042
1043static void intel_cleanup(void)
1044{
1045 u16 temp;
1046 struct aper_size_info_16 *previous_size;
1047
1048 previous_size = A_SIZE_16(agp_bridge->previous_size);
1049 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp);
1050 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG, temp & ~(1 << 9));
1051 pci_write_config_word(agp_bridge->dev, INTEL_APSIZE, previous_size->size_value);
1052}
1053
1054
1055static void intel_8xx_cleanup(void)
1056{
1057 u16 temp;
1058 struct aper_size_info_8 *previous_size;
1059
1060 previous_size = A_SIZE_8(agp_bridge->previous_size);
1061 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp);
1062 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG, temp & ~(1 << 9));
1063 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, previous_size->size_value);
1064}
1065
1066
1067static int intel_configure(void)
1068{
1069 u32 temp;
1070 u16 temp2;
1071 struct aper_size_info_16 *current_size;
1072
1073 current_size = A_SIZE_16(agp_bridge->current_size);
1074
1075 /* aperture size */
1076 pci_write_config_word(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1077
1078 /* address to map to */
1079 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1080 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1081
1082 /* attbase - aperture base */
1083 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1084
1085 /* agpctrl */
1086 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x2280);
1087
1088 /* paccfg/nbxcfg */
1089 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp2);
1090 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG,
1091 (temp2 & ~(1 << 10)) | (1 << 9));
1092 /* clear any possible error conditions */
1093 pci_write_config_byte(agp_bridge->dev, INTEL_ERRSTS + 1, 7);
1094 return 0;
1095}
1096
1097static int intel_815_configure(void)
1098{
1099 u32 temp, addr;
1100 u8 temp2;
1101 struct aper_size_info_8 *current_size;
1102
1103 /* attbase - aperture base */
1104 /* the Intel 815 chipset spec. says that bits 29-31 in the
1105 * ATTBASE register are reserved -> try not to write them */
1106 if (agp_bridge->gatt_bus_addr & INTEL_815_ATTBASE_MASK) {
1107 printk (KERN_EMERG PFX "gatt bus addr too high");
1108 return -EINVAL;
1109 }
1110
1111 current_size = A_SIZE_8(agp_bridge->current_size);
1112
1113 /* aperture size */
1114 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE,
1115 current_size->size_value);
1116
1117 /* address to map to */
1118 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1119 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1120
1121 pci_read_config_dword(agp_bridge->dev, INTEL_ATTBASE, &addr);
1122 addr &= INTEL_815_ATTBASE_MASK;
1123 addr |= agp_bridge->gatt_bus_addr;
1124 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, addr);
1125
1126 /* agpctrl */
1127 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1128
1129 /* apcont */
1130 pci_read_config_byte(agp_bridge->dev, INTEL_815_APCONT, &temp2);
1131 pci_write_config_byte(agp_bridge->dev, INTEL_815_APCONT, temp2 | (1 << 1));
1132
1133 /* clear any possible error conditions */
1134 /* Oddness : this chipset seems to have no ERRSTS register ! */
1135 return 0;
1136}
1137
1138static void intel_820_tlbflush(struct agp_memory *mem)
1139{
1140 return;
1141}
1142
1143static void intel_820_cleanup(void)
1144{
1145 u8 temp;
1146 struct aper_size_info_8 *previous_size;
1147
1148 previous_size = A_SIZE_8(agp_bridge->previous_size);
1149 pci_read_config_byte(agp_bridge->dev, INTEL_I820_RDCR, &temp);
1150 pci_write_config_byte(agp_bridge->dev, INTEL_I820_RDCR,
1151 temp & ~(1 << 1));
1152 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE,
1153 previous_size->size_value);
1154}
1155
1156
1157static int intel_820_configure(void)
1158{
1159 u32 temp;
1160 u8 temp2;
1161 struct aper_size_info_8 *current_size;
1162
1163 current_size = A_SIZE_8(agp_bridge->current_size);
1164
1165 /* aperture size */
1166 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1167
1168 /* address to map to */
1169 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1170 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1171
1172 /* attbase - aperture base */
1173 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1174
1175 /* agpctrl */
1176 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1177
1178 /* global enable aperture access */
1179 /* This flag is not accessed through MCHCFG register as in */
1180 /* i850 chipset. */
1181 pci_read_config_byte(agp_bridge->dev, INTEL_I820_RDCR, &temp2);
1182 pci_write_config_byte(agp_bridge->dev, INTEL_I820_RDCR, temp2 | (1 << 1));
1183 /* clear any possible AGP-related error conditions */
1184 pci_write_config_word(agp_bridge->dev, INTEL_I820_ERRSTS, 0x001c);
1185 return 0;
1186}
1187
1188static int intel_840_configure(void)
1189{
1190 u32 temp;
1191 u16 temp2;
1192 struct aper_size_info_8 *current_size;
1193
1194 current_size = A_SIZE_8(agp_bridge->current_size);
1195
1196 /* aperture size */
1197 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1198
1199 /* address to map to */
1200 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1201 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1202
1203 /* attbase - aperture base */
1204 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1205
1206 /* agpctrl */
1207 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1208
1209 /* mcgcfg */
1210 pci_read_config_word(agp_bridge->dev, INTEL_I840_MCHCFG, &temp2);
1211 pci_write_config_word(agp_bridge->dev, INTEL_I840_MCHCFG, temp2 | (1 << 9));
1212 /* clear any possible error conditions */
1213 pci_write_config_word(agp_bridge->dev, INTEL_I840_ERRSTS, 0xc000);
1214 return 0;
1215}
1216
1217static int intel_845_configure(void)
1218{
1219 u32 temp;
1220 u8 temp2;
1221 struct aper_size_info_8 *current_size;
1222
1223 current_size = A_SIZE_8(agp_bridge->current_size);
1224
1225 /* aperture size */
1226 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1227
Matthew Garrettb0825482005-07-29 14:03:39 -07001228 if (agp_bridge->apbase_config != 0) {
1229 pci_write_config_dword(agp_bridge->dev, AGP_APBASE,
1230 agp_bridge->apbase_config);
1231 } else {
1232 /* address to map to */
1233 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1234 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1235 agp_bridge->apbase_config = temp;
1236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 /* attbase - aperture base */
1239 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1240
1241 /* agpctrl */
1242 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1243
1244 /* agpm */
1245 pci_read_config_byte(agp_bridge->dev, INTEL_I845_AGPM, &temp2);
1246 pci_write_config_byte(agp_bridge->dev, INTEL_I845_AGPM, temp2 | (1 << 1));
1247 /* clear any possible error conditions */
1248 pci_write_config_word(agp_bridge->dev, INTEL_I845_ERRSTS, 0x001c);
1249 return 0;
1250}
1251
1252static int intel_850_configure(void)
1253{
1254 u32 temp;
1255 u16 temp2;
1256 struct aper_size_info_8 *current_size;
1257
1258 current_size = A_SIZE_8(agp_bridge->current_size);
1259
1260 /* aperture size */
1261 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1262
1263 /* address to map to */
1264 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1265 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1266
1267 /* attbase - aperture base */
1268 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1269
1270 /* agpctrl */
1271 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1272
1273 /* mcgcfg */
1274 pci_read_config_word(agp_bridge->dev, INTEL_I850_MCHCFG, &temp2);
1275 pci_write_config_word(agp_bridge->dev, INTEL_I850_MCHCFG, temp2 | (1 << 9));
1276 /* clear any possible AGP-related error conditions */
1277 pci_write_config_word(agp_bridge->dev, INTEL_I850_ERRSTS, 0x001c);
1278 return 0;
1279}
1280
1281static int intel_860_configure(void)
1282{
1283 u32 temp;
1284 u16 temp2;
1285 struct aper_size_info_8 *current_size;
1286
1287 current_size = A_SIZE_8(agp_bridge->current_size);
1288
1289 /* aperture size */
1290 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1291
1292 /* address to map to */
1293 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1294 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1295
1296 /* attbase - aperture base */
1297 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1298
1299 /* agpctrl */
1300 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1301
1302 /* mcgcfg */
1303 pci_read_config_word(agp_bridge->dev, INTEL_I860_MCHCFG, &temp2);
1304 pci_write_config_word(agp_bridge->dev, INTEL_I860_MCHCFG, temp2 | (1 << 9));
1305 /* clear any possible AGP-related error conditions */
1306 pci_write_config_word(agp_bridge->dev, INTEL_I860_ERRSTS, 0xf700);
1307 return 0;
1308}
1309
1310static int intel_830mp_configure(void)
1311{
1312 u32 temp;
1313 u16 temp2;
1314 struct aper_size_info_8 *current_size;
1315
1316 current_size = A_SIZE_8(agp_bridge->current_size);
1317
1318 /* aperture size */
1319 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1320
1321 /* address to map to */
1322 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1323 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1324
1325 /* attbase - aperture base */
1326 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1327
1328 /* agpctrl */
1329 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1330
1331 /* gmch */
1332 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp2);
1333 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG, temp2 | (1 << 9));
1334 /* clear any possible AGP-related error conditions */
1335 pci_write_config_word(agp_bridge->dev, INTEL_I830_ERRSTS, 0x1c);
1336 return 0;
1337}
1338
1339static int intel_7505_configure(void)
1340{
1341 u32 temp;
1342 u16 temp2;
1343 struct aper_size_info_8 *current_size;
1344
1345 current_size = A_SIZE_8(agp_bridge->current_size);
1346
1347 /* aperture size */
1348 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1349
1350 /* address to map to */
1351 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1352 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1353
1354 /* attbase - aperture base */
1355 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1356
1357 /* agpctrl */
1358 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1359
1360 /* mchcfg */
1361 pci_read_config_word(agp_bridge->dev, INTEL_I7505_MCHCFG, &temp2);
1362 pci_write_config_word(agp_bridge->dev, INTEL_I7505_MCHCFG, temp2 | (1 << 9));
1363
1364 return 0;
1365}
1366
1367/* Setup function */
Dave Jonese5524f32007-02-22 18:41:28 -05001368static const struct gatt_mask intel_generic_masks[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 {.mask = 0x00000017, .type = 0}
1371};
1372
Dave Jonese5524f32007-02-22 18:41:28 -05001373static const struct aper_size_info_8 intel_815_sizes[2] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
1375 {64, 16384, 4, 0},
1376 {32, 8192, 3, 8},
1377};
1378
Dave Jonese5524f32007-02-22 18:41:28 -05001379static const struct aper_size_info_8 intel_8xx_sizes[7] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
1381 {256, 65536, 6, 0},
1382 {128, 32768, 5, 32},
1383 {64, 16384, 4, 48},
1384 {32, 8192, 3, 56},
1385 {16, 4096, 2, 60},
1386 {8, 2048, 1, 62},
1387 {4, 1024, 0, 63}
1388};
1389
Dave Jonese5524f32007-02-22 18:41:28 -05001390static const struct aper_size_info_16 intel_generic_sizes[7] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 {256, 65536, 6, 0},
1393 {128, 32768, 5, 32},
1394 {64, 16384, 4, 48},
1395 {32, 8192, 3, 56},
1396 {16, 4096, 2, 60},
1397 {8, 2048, 1, 62},
1398 {4, 1024, 0, 63}
1399};
1400
Dave Jonese5524f32007-02-22 18:41:28 -05001401static const struct aper_size_info_8 intel_830mp_sizes[4] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
1403 {256, 65536, 6, 0},
1404 {128, 32768, 5, 32},
1405 {64, 16384, 4, 48},
1406 {32, 8192, 3, 56}
1407};
1408
Dave Jonese5524f32007-02-22 18:41:28 -05001409static const struct agp_bridge_driver intel_generic_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 .owner = THIS_MODULE,
1411 .aperture_sizes = intel_generic_sizes,
1412 .size_type = U16_APER_SIZE,
1413 .num_aperture_sizes = 7,
1414 .configure = intel_configure,
1415 .fetch_size = intel_fetch_size,
1416 .cleanup = intel_cleanup,
1417 .tlb_flush = intel_tlbflush,
1418 .mask_memory = agp_generic_mask_memory,
1419 .masks = intel_generic_masks,
1420 .agp_enable = agp_generic_enable,
1421 .cache_flush = global_cache_flush,
1422 .create_gatt_table = agp_generic_create_gatt_table,
1423 .free_gatt_table = agp_generic_free_gatt_table,
1424 .insert_memory = agp_generic_insert_memory,
1425 .remove_memory = agp_generic_remove_memory,
1426 .alloc_by_type = agp_generic_alloc_by_type,
1427 .free_by_type = agp_generic_free_by_type,
1428 .agp_alloc_page = agp_generic_alloc_page,
1429 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001430 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431};
1432
Dave Jonese5524f32007-02-22 18:41:28 -05001433static const struct agp_bridge_driver intel_810_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 .owner = THIS_MODULE,
1435 .aperture_sizes = intel_i810_sizes,
1436 .size_type = FIXED_APER_SIZE,
1437 .num_aperture_sizes = 2,
1438 .needs_scratch_page = TRUE,
1439 .configure = intel_i810_configure,
1440 .fetch_size = intel_i810_fetch_size,
1441 .cleanup = intel_i810_cleanup,
1442 .tlb_flush = intel_i810_tlbflush,
1443 .mask_memory = intel_i810_mask_memory,
1444 .masks = intel_i810_masks,
1445 .agp_enable = intel_i810_agp_enable,
1446 .cache_flush = global_cache_flush,
1447 .create_gatt_table = agp_generic_create_gatt_table,
1448 .free_gatt_table = agp_generic_free_gatt_table,
1449 .insert_memory = intel_i810_insert_entries,
1450 .remove_memory = intel_i810_remove_entries,
1451 .alloc_by_type = intel_i810_alloc_by_type,
1452 .free_by_type = intel_i810_free_by_type,
1453 .agp_alloc_page = agp_generic_alloc_page,
1454 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001455 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456};
1457
Dave Jonese5524f32007-02-22 18:41:28 -05001458static const struct agp_bridge_driver intel_815_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 .owner = THIS_MODULE,
1460 .aperture_sizes = intel_815_sizes,
1461 .size_type = U8_APER_SIZE,
1462 .num_aperture_sizes = 2,
1463 .configure = intel_815_configure,
1464 .fetch_size = intel_815_fetch_size,
1465 .cleanup = intel_8xx_cleanup,
1466 .tlb_flush = intel_8xx_tlbflush,
1467 .mask_memory = agp_generic_mask_memory,
1468 .masks = intel_generic_masks,
1469 .agp_enable = agp_generic_enable,
1470 .cache_flush = global_cache_flush,
1471 .create_gatt_table = agp_generic_create_gatt_table,
1472 .free_gatt_table = agp_generic_free_gatt_table,
1473 .insert_memory = agp_generic_insert_memory,
1474 .remove_memory = agp_generic_remove_memory,
1475 .alloc_by_type = agp_generic_alloc_by_type,
1476 .free_by_type = agp_generic_free_by_type,
1477 .agp_alloc_page = agp_generic_alloc_page,
1478 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001479 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480};
1481
Dave Jonese5524f32007-02-22 18:41:28 -05001482static const struct agp_bridge_driver intel_830_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 .owner = THIS_MODULE,
1484 .aperture_sizes = intel_i830_sizes,
1485 .size_type = FIXED_APER_SIZE,
Dave Jonesc14635e2006-09-06 11:59:35 -04001486 .num_aperture_sizes = 4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 .needs_scratch_page = TRUE,
1488 .configure = intel_i830_configure,
1489 .fetch_size = intel_i830_fetch_size,
1490 .cleanup = intel_i830_cleanup,
1491 .tlb_flush = intel_i810_tlbflush,
1492 .mask_memory = intel_i810_mask_memory,
1493 .masks = intel_i810_masks,
1494 .agp_enable = intel_i810_agp_enable,
1495 .cache_flush = global_cache_flush,
1496 .create_gatt_table = intel_i830_create_gatt_table,
1497 .free_gatt_table = intel_i830_free_gatt_table,
1498 .insert_memory = intel_i830_insert_entries,
1499 .remove_memory = intel_i830_remove_entries,
1500 .alloc_by_type = intel_i830_alloc_by_type,
1501 .free_by_type = intel_i810_free_by_type,
1502 .agp_alloc_page = agp_generic_alloc_page,
1503 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001504 .agp_type_to_mask_type = intel_i830_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505};
1506
Dave Jonese5524f32007-02-22 18:41:28 -05001507static const struct agp_bridge_driver intel_820_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 .owner = THIS_MODULE,
1509 .aperture_sizes = intel_8xx_sizes,
1510 .size_type = U8_APER_SIZE,
1511 .num_aperture_sizes = 7,
1512 .configure = intel_820_configure,
1513 .fetch_size = intel_8xx_fetch_size,
1514 .cleanup = intel_820_cleanup,
1515 .tlb_flush = intel_820_tlbflush,
1516 .mask_memory = agp_generic_mask_memory,
1517 .masks = intel_generic_masks,
1518 .agp_enable = agp_generic_enable,
1519 .cache_flush = global_cache_flush,
1520 .create_gatt_table = agp_generic_create_gatt_table,
1521 .free_gatt_table = agp_generic_free_gatt_table,
1522 .insert_memory = agp_generic_insert_memory,
1523 .remove_memory = agp_generic_remove_memory,
1524 .alloc_by_type = agp_generic_alloc_by_type,
1525 .free_by_type = agp_generic_free_by_type,
1526 .agp_alloc_page = agp_generic_alloc_page,
1527 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001528 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529};
1530
Dave Jonese5524f32007-02-22 18:41:28 -05001531static const struct agp_bridge_driver intel_830mp_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 .owner = THIS_MODULE,
1533 .aperture_sizes = intel_830mp_sizes,
1534 .size_type = U8_APER_SIZE,
1535 .num_aperture_sizes = 4,
1536 .configure = intel_830mp_configure,
1537 .fetch_size = intel_8xx_fetch_size,
1538 .cleanup = intel_8xx_cleanup,
1539 .tlb_flush = intel_8xx_tlbflush,
1540 .mask_memory = agp_generic_mask_memory,
1541 .masks = intel_generic_masks,
1542 .agp_enable = agp_generic_enable,
1543 .cache_flush = global_cache_flush,
1544 .create_gatt_table = agp_generic_create_gatt_table,
1545 .free_gatt_table = agp_generic_free_gatt_table,
1546 .insert_memory = agp_generic_insert_memory,
1547 .remove_memory = agp_generic_remove_memory,
1548 .alloc_by_type = agp_generic_alloc_by_type,
1549 .free_by_type = agp_generic_free_by_type,
1550 .agp_alloc_page = agp_generic_alloc_page,
1551 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001552 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553};
1554
Dave Jonese5524f32007-02-22 18:41:28 -05001555static const struct agp_bridge_driver intel_840_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 .owner = THIS_MODULE,
1557 .aperture_sizes = intel_8xx_sizes,
1558 .size_type = U8_APER_SIZE,
1559 .num_aperture_sizes = 7,
1560 .configure = intel_840_configure,
1561 .fetch_size = intel_8xx_fetch_size,
1562 .cleanup = intel_8xx_cleanup,
1563 .tlb_flush = intel_8xx_tlbflush,
1564 .mask_memory = agp_generic_mask_memory,
1565 .masks = intel_generic_masks,
1566 .agp_enable = agp_generic_enable,
1567 .cache_flush = global_cache_flush,
1568 .create_gatt_table = agp_generic_create_gatt_table,
1569 .free_gatt_table = agp_generic_free_gatt_table,
1570 .insert_memory = agp_generic_insert_memory,
1571 .remove_memory = agp_generic_remove_memory,
1572 .alloc_by_type = agp_generic_alloc_by_type,
1573 .free_by_type = agp_generic_free_by_type,
1574 .agp_alloc_page = agp_generic_alloc_page,
1575 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001576 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577};
1578
Dave Jonese5524f32007-02-22 18:41:28 -05001579static const struct agp_bridge_driver intel_845_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 .owner = THIS_MODULE,
1581 .aperture_sizes = intel_8xx_sizes,
1582 .size_type = U8_APER_SIZE,
1583 .num_aperture_sizes = 7,
1584 .configure = intel_845_configure,
1585 .fetch_size = intel_8xx_fetch_size,
1586 .cleanup = intel_8xx_cleanup,
1587 .tlb_flush = intel_8xx_tlbflush,
1588 .mask_memory = agp_generic_mask_memory,
1589 .masks = intel_generic_masks,
1590 .agp_enable = agp_generic_enable,
1591 .cache_flush = global_cache_flush,
1592 .create_gatt_table = agp_generic_create_gatt_table,
1593 .free_gatt_table = agp_generic_free_gatt_table,
1594 .insert_memory = agp_generic_insert_memory,
1595 .remove_memory = agp_generic_remove_memory,
1596 .alloc_by_type = agp_generic_alloc_by_type,
1597 .free_by_type = agp_generic_free_by_type,
1598 .agp_alloc_page = agp_generic_alloc_page,
1599 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001600 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601};
1602
Dave Jonese5524f32007-02-22 18:41:28 -05001603static const struct agp_bridge_driver intel_850_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 .owner = THIS_MODULE,
1605 .aperture_sizes = intel_8xx_sizes,
1606 .size_type = U8_APER_SIZE,
1607 .num_aperture_sizes = 7,
1608 .configure = intel_850_configure,
1609 .fetch_size = intel_8xx_fetch_size,
1610 .cleanup = intel_8xx_cleanup,
1611 .tlb_flush = intel_8xx_tlbflush,
1612 .mask_memory = agp_generic_mask_memory,
1613 .masks = intel_generic_masks,
1614 .agp_enable = agp_generic_enable,
1615 .cache_flush = global_cache_flush,
1616 .create_gatt_table = agp_generic_create_gatt_table,
1617 .free_gatt_table = agp_generic_free_gatt_table,
1618 .insert_memory = agp_generic_insert_memory,
1619 .remove_memory = agp_generic_remove_memory,
1620 .alloc_by_type = agp_generic_alloc_by_type,
1621 .free_by_type = agp_generic_free_by_type,
1622 .agp_alloc_page = agp_generic_alloc_page,
1623 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001624 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625};
1626
Dave Jonese5524f32007-02-22 18:41:28 -05001627static const struct agp_bridge_driver intel_860_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 .owner = THIS_MODULE,
1629 .aperture_sizes = intel_8xx_sizes,
1630 .size_type = U8_APER_SIZE,
1631 .num_aperture_sizes = 7,
1632 .configure = intel_860_configure,
1633 .fetch_size = intel_8xx_fetch_size,
1634 .cleanup = intel_8xx_cleanup,
1635 .tlb_flush = intel_8xx_tlbflush,
1636 .mask_memory = agp_generic_mask_memory,
1637 .masks = intel_generic_masks,
1638 .agp_enable = agp_generic_enable,
1639 .cache_flush = global_cache_flush,
1640 .create_gatt_table = agp_generic_create_gatt_table,
1641 .free_gatt_table = agp_generic_free_gatt_table,
1642 .insert_memory = agp_generic_insert_memory,
1643 .remove_memory = agp_generic_remove_memory,
1644 .alloc_by_type = agp_generic_alloc_by_type,
1645 .free_by_type = agp_generic_free_by_type,
1646 .agp_alloc_page = agp_generic_alloc_page,
1647 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001648 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649};
1650
Dave Jonese5524f32007-02-22 18:41:28 -05001651static const struct agp_bridge_driver intel_915_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 .owner = THIS_MODULE,
1653 .aperture_sizes = intel_i830_sizes,
1654 .size_type = FIXED_APER_SIZE,
Dave Jonesc14635e2006-09-06 11:59:35 -04001655 .num_aperture_sizes = 4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 .needs_scratch_page = TRUE,
1657 .configure = intel_i915_configure,
Eric Anholtc41e0de2006-12-19 12:57:24 -08001658 .fetch_size = intel_i9xx_fetch_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 .cleanup = intel_i915_cleanup,
1660 .tlb_flush = intel_i810_tlbflush,
1661 .mask_memory = intel_i810_mask_memory,
1662 .masks = intel_i810_masks,
1663 .agp_enable = intel_i810_agp_enable,
1664 .cache_flush = global_cache_flush,
1665 .create_gatt_table = intel_i915_create_gatt_table,
1666 .free_gatt_table = intel_i830_free_gatt_table,
1667 .insert_memory = intel_i915_insert_entries,
1668 .remove_memory = intel_i915_remove_entries,
1669 .alloc_by_type = intel_i830_alloc_by_type,
1670 .free_by_type = intel_i810_free_by_type,
1671 .agp_alloc_page = agp_generic_alloc_page,
1672 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001673 .agp_type_to_mask_type = intel_i830_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674};
1675
Dave Jonese5524f32007-02-22 18:41:28 -05001676static const struct agp_bridge_driver intel_i965_driver = {
Eric Anholt65c25aa2006-09-06 11:57:18 -04001677 .owner = THIS_MODULE,
1678 .aperture_sizes = intel_i830_sizes,
1679 .size_type = FIXED_APER_SIZE,
1680 .num_aperture_sizes = 4,
1681 .needs_scratch_page = TRUE,
1682 .configure = intel_i915_configure,
Eric Anholtc41e0de2006-12-19 12:57:24 -08001683 .fetch_size = intel_i9xx_fetch_size,
Eric Anholt65c25aa2006-09-06 11:57:18 -04001684 .cleanup = intel_i915_cleanup,
1685 .tlb_flush = intel_i810_tlbflush,
Linus Torvalds7d915a32006-11-22 09:37:54 -08001686 .mask_memory = intel_i965_mask_memory,
Eric Anholt65c25aa2006-09-06 11:57:18 -04001687 .masks = intel_i810_masks,
1688 .agp_enable = intel_i810_agp_enable,
1689 .cache_flush = global_cache_flush,
1690 .create_gatt_table = intel_i965_create_gatt_table,
1691 .free_gatt_table = intel_i830_free_gatt_table,
1692 .insert_memory = intel_i915_insert_entries,
1693 .remove_memory = intel_i915_remove_entries,
1694 .alloc_by_type = intel_i830_alloc_by_type,
1695 .free_by_type = intel_i810_free_by_type,
1696 .agp_alloc_page = agp_generic_alloc_page,
1697 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001698 .agp_type_to_mask_type = intel_i830_type_to_mask_type,
Eric Anholt65c25aa2006-09-06 11:57:18 -04001699};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Dave Jonese5524f32007-02-22 18:41:28 -05001701static const struct agp_bridge_driver intel_7505_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 .owner = THIS_MODULE,
1703 .aperture_sizes = intel_8xx_sizes,
1704 .size_type = U8_APER_SIZE,
1705 .num_aperture_sizes = 7,
1706 .configure = intel_7505_configure,
1707 .fetch_size = intel_8xx_fetch_size,
1708 .cleanup = intel_8xx_cleanup,
1709 .tlb_flush = intel_8xx_tlbflush,
1710 .mask_memory = agp_generic_mask_memory,
1711 .masks = intel_generic_masks,
1712 .agp_enable = agp_generic_enable,
1713 .cache_flush = global_cache_flush,
1714 .create_gatt_table = agp_generic_create_gatt_table,
1715 .free_gatt_table = agp_generic_free_gatt_table,
1716 .insert_memory = agp_generic_insert_memory,
1717 .remove_memory = agp_generic_remove_memory,
1718 .alloc_by_type = agp_generic_alloc_by_type,
1719 .free_by_type = agp_generic_free_by_type,
1720 .agp_alloc_page = agp_generic_alloc_page,
1721 .agp_destroy_page = agp_generic_destroy_page,
Thomas Hellstroma030ce42007-01-23 10:33:43 +01001722 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723};
1724
1725static int find_i810(u16 device)
1726{
1727 struct pci_dev *i810_dev;
1728
1729 i810_dev = pci_get_device(PCI_VENDOR_ID_INTEL, device, NULL);
1730 if (!i810_dev)
1731 return 0;
1732 intel_i810_private.i810_dev = i810_dev;
1733 return 1;
1734}
1735
1736static int find_i830(u16 device)
1737{
1738 struct pci_dev *i830_dev;
1739
1740 i830_dev = pci_get_device(PCI_VENDOR_ID_INTEL, device, NULL);
1741 if (i830_dev && PCI_FUNC(i830_dev->devfn) != 0) {
1742 i830_dev = pci_get_device(PCI_VENDOR_ID_INTEL,
1743 device, i830_dev);
1744 }
1745
1746 if (!i830_dev)
1747 return 0;
1748
1749 intel_i830_private.i830_dev = i830_dev;
1750 return 1;
1751}
1752
1753static int __devinit agp_intel_probe(struct pci_dev *pdev,
1754 const struct pci_device_id *ent)
1755{
1756 struct agp_bridge_data *bridge;
1757 char *name = "(unknown)";
1758 u8 cap_ptr = 0;
1759 struct resource *r;
1760
1761 cap_ptr = pci_find_capability(pdev, PCI_CAP_ID_AGP);
1762
1763 bridge = agp_alloc_bridge();
1764 if (!bridge)
1765 return -ENOMEM;
1766
1767 switch (pdev->device) {
1768 case PCI_DEVICE_ID_INTEL_82443LX_0:
1769 bridge->driver = &intel_generic_driver;
1770 name = "440LX";
1771 break;
1772 case PCI_DEVICE_ID_INTEL_82443BX_0:
1773 bridge->driver = &intel_generic_driver;
1774 name = "440BX";
1775 break;
1776 case PCI_DEVICE_ID_INTEL_82443GX_0:
1777 bridge->driver = &intel_generic_driver;
1778 name = "440GX";
1779 break;
1780 case PCI_DEVICE_ID_INTEL_82810_MC1:
1781 name = "i810";
1782 if (!find_i810(PCI_DEVICE_ID_INTEL_82810_IG1))
1783 goto fail;
1784 bridge->driver = &intel_810_driver;
1785 break;
1786 case PCI_DEVICE_ID_INTEL_82810_MC3:
1787 name = "i810 DC100";
1788 if (!find_i810(PCI_DEVICE_ID_INTEL_82810_IG3))
1789 goto fail;
1790 bridge->driver = &intel_810_driver;
1791 break;
1792 case PCI_DEVICE_ID_INTEL_82810E_MC:
1793 name = "i810 E";
1794 if (!find_i810(PCI_DEVICE_ID_INTEL_82810E_IG))
1795 goto fail;
1796 bridge->driver = &intel_810_driver;
1797 break;
1798 case PCI_DEVICE_ID_INTEL_82815_MC:
1799 /*
1800 * The i815 can operate either as an i810 style
1801 * integrated device, or as an AGP4X motherboard.
1802 */
1803 if (find_i810(PCI_DEVICE_ID_INTEL_82815_CGC))
1804 bridge->driver = &intel_810_driver;
1805 else
1806 bridge->driver = &intel_815_driver;
1807 name = "i815";
1808 break;
1809 case PCI_DEVICE_ID_INTEL_82820_HB:
1810 case PCI_DEVICE_ID_INTEL_82820_UP_HB:
1811 bridge->driver = &intel_820_driver;
1812 name = "i820";
1813 break;
1814 case PCI_DEVICE_ID_INTEL_82830_HB:
Dave Jones6a92a4e2006-02-28 00:54:25 -05001815 if (find_i830(PCI_DEVICE_ID_INTEL_82830_CGC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 bridge->driver = &intel_830_driver;
Dave Jones6a92a4e2006-02-28 00:54:25 -05001817 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 bridge->driver = &intel_830mp_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 name = "830M";
1820 break;
1821 case PCI_DEVICE_ID_INTEL_82840_HB:
1822 bridge->driver = &intel_840_driver;
1823 name = "i840";
1824 break;
1825 case PCI_DEVICE_ID_INTEL_82845_HB:
1826 bridge->driver = &intel_845_driver;
1827 name = "i845";
1828 break;
1829 case PCI_DEVICE_ID_INTEL_82845G_HB:
Dave Jones6a92a4e2006-02-28 00:54:25 -05001830 if (find_i830(PCI_DEVICE_ID_INTEL_82845G_IG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 bridge->driver = &intel_830_driver;
Dave Jones6a92a4e2006-02-28 00:54:25 -05001832 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 bridge->driver = &intel_845_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 name = "845G";
1835 break;
1836 case PCI_DEVICE_ID_INTEL_82850_HB:
1837 bridge->driver = &intel_850_driver;
1838 name = "i850";
1839 break;
1840 case PCI_DEVICE_ID_INTEL_82855PM_HB:
1841 bridge->driver = &intel_845_driver;
1842 name = "855PM";
1843 break;
1844 case PCI_DEVICE_ID_INTEL_82855GM_HB:
1845 if (find_i830(PCI_DEVICE_ID_INTEL_82855GM_IG)) {
1846 bridge->driver = &intel_830_driver;
1847 name = "855";
1848 } else {
1849 bridge->driver = &intel_845_driver;
1850 name = "855GM";
1851 }
1852 break;
1853 case PCI_DEVICE_ID_INTEL_82860_HB:
1854 bridge->driver = &intel_860_driver;
1855 name = "i860";
1856 break;
1857 case PCI_DEVICE_ID_INTEL_82865_HB:
Dave Jones6a92a4e2006-02-28 00:54:25 -05001858 if (find_i830(PCI_DEVICE_ID_INTEL_82865_IG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 bridge->driver = &intel_830_driver;
Dave Jones6a92a4e2006-02-28 00:54:25 -05001860 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 bridge->driver = &intel_845_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 name = "865";
1863 break;
1864 case PCI_DEVICE_ID_INTEL_82875_HB:
1865 bridge->driver = &intel_845_driver;
1866 name = "i875";
1867 break;
1868 case PCI_DEVICE_ID_INTEL_82915G_HB:
Dave Jones6a92a4e2006-02-28 00:54:25 -05001869 if (find_i830(PCI_DEVICE_ID_INTEL_82915G_IG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 bridge->driver = &intel_915_driver;
Dave Jones6a92a4e2006-02-28 00:54:25 -05001871 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 bridge->driver = &intel_845_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 name = "915G";
1874 break;
1875 case PCI_DEVICE_ID_INTEL_82915GM_HB:
Dave Jones6a92a4e2006-02-28 00:54:25 -05001876 if (find_i830(PCI_DEVICE_ID_INTEL_82915GM_IG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 bridge->driver = &intel_915_driver;
Dave Jones6a92a4e2006-02-28 00:54:25 -05001878 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 bridge->driver = &intel_845_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 name = "915GM";
1881 break;
Alan Hourihaned0de98f2005-05-31 19:50:49 +01001882 case PCI_DEVICE_ID_INTEL_82945G_HB:
Dave Jones6a92a4e2006-02-28 00:54:25 -05001883 if (find_i830(PCI_DEVICE_ID_INTEL_82945G_IG))
Alan Hourihaned0de98f2005-05-31 19:50:49 +01001884 bridge->driver = &intel_915_driver;
Dave Jones6a92a4e2006-02-28 00:54:25 -05001885 else
Alan Hourihaned0de98f2005-05-31 19:50:49 +01001886 bridge->driver = &intel_845_driver;
Alan Hourihaned0de98f2005-05-31 19:50:49 +01001887 name = "945G";
1888 break;
Alan Hourihane3b0e8ea2006-01-19 14:08:40 +00001889 case PCI_DEVICE_ID_INTEL_82945GM_HB:
Dave Jones6a92a4e2006-02-28 00:54:25 -05001890 if (find_i830(PCI_DEVICE_ID_INTEL_82945GM_IG))
Alan Hourihane3b0e8ea2006-01-19 14:08:40 +00001891 bridge->driver = &intel_915_driver;
Dave Jones6a92a4e2006-02-28 00:54:25 -05001892 else
Alan Hourihane3b0e8ea2006-01-19 14:08:40 +00001893 bridge->driver = &intel_845_driver;
Alan Hourihane3b0e8ea2006-01-19 14:08:40 +00001894 name = "945GM";
1895 break;
Eric Anholt65c25aa2006-09-06 11:57:18 -04001896 case PCI_DEVICE_ID_INTEL_82946GZ_HB:
1897 if (find_i830(PCI_DEVICE_ID_INTEL_82946GZ_IG))
1898 bridge->driver = &intel_i965_driver;
1899 else
1900 bridge->driver = &intel_845_driver;
1901 name = "946GZ";
1902 break;
1903 case PCI_DEVICE_ID_INTEL_82965G_1_HB:
1904 if (find_i830(PCI_DEVICE_ID_INTEL_82965G_1_IG))
1905 bridge->driver = &intel_i965_driver;
1906 else
1907 bridge->driver = &intel_845_driver;
1908 name = "965G";
1909 break;
1910 case PCI_DEVICE_ID_INTEL_82965Q_HB:
1911 if (find_i830(PCI_DEVICE_ID_INTEL_82965Q_IG))
1912 bridge->driver = &intel_i965_driver;
1913 else
1914 bridge->driver = &intel_845_driver;
1915 name = "965Q";
1916 break;
1917 case PCI_DEVICE_ID_INTEL_82965G_HB:
1918 if (find_i830(PCI_DEVICE_ID_INTEL_82965G_IG))
1919 bridge->driver = &intel_i965_driver;
1920 else
1921 bridge->driver = &intel_845_driver;
1922 name = "965G";
1923 break;
Wang Zhenyu4598af32007-04-09 08:51:36 +08001924 case PCI_DEVICE_ID_INTEL_82965GM_HB:
1925 if (find_i830(PCI_DEVICE_ID_INTEL_82965GM_IG))
1926 bridge->driver = &intel_i965_driver;
1927 else
1928 bridge->driver = &intel_845_driver;
1929 name = "965GM";
1930 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 case PCI_DEVICE_ID_INTEL_7505_0:
1932 bridge->driver = &intel_7505_driver;
1933 name = "E7505";
1934 break;
1935 case PCI_DEVICE_ID_INTEL_7205_0:
1936 bridge->driver = &intel_7505_driver;
1937 name = "E7205";
1938 break;
1939 default:
1940 if (cap_ptr)
1941 printk(KERN_WARNING PFX "Unsupported Intel chipset (device id: %04x)\n",
1942 pdev->device);
1943 agp_put_bridge(bridge);
1944 return -ENODEV;
1945 };
1946
1947 bridge->dev = pdev;
1948 bridge->capndx = cap_ptr;
1949
1950 if (bridge->driver == &intel_810_driver)
1951 bridge->dev_private_data = &intel_i810_private;
1952 else if (bridge->driver == &intel_830_driver)
1953 bridge->dev_private_data = &intel_i830_private;
1954
1955 printk(KERN_INFO PFX "Detected an Intel %s Chipset.\n", name);
1956
1957 /*
1958 * The following fixes the case where the BIOS has "forgotten" to
1959 * provide an address range for the GART.
1960 * 20030610 - hamish@zot.org
1961 */
1962 r = &pdev->resource[0];
1963 if (!r->start && r->end) {
Dave Jones6a92a4e2006-02-28 00:54:25 -05001964 if (pci_assign_resource(pdev, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 printk(KERN_ERR PFX "could not assign resource 0\n");
1966 agp_put_bridge(bridge);
1967 return -ENODEV;
1968 }
1969 }
1970
1971 /*
1972 * If the device has not been properly setup, the following will catch
1973 * the problem and should stop the system from crashing.
1974 * 20030610 - hamish@zot.org
1975 */
1976 if (pci_enable_device(pdev)) {
1977 printk(KERN_ERR PFX "Unable to Enable PCI device\n");
1978 agp_put_bridge(bridge);
1979 return -ENODEV;
1980 }
1981
1982 /* Fill in the mode register */
1983 if (cap_ptr) {
1984 pci_read_config_dword(pdev,
1985 bridge->capndx+PCI_AGP_STATUS,
1986 &bridge->mode);
1987 }
1988
1989 pci_set_drvdata(pdev, bridge);
1990 return agp_add_bridge(bridge);
1991
1992fail:
1993 printk(KERN_ERR PFX "Detected an Intel %s chipset, "
1994 "but could not find the secondary device.\n", name);
1995 agp_put_bridge(bridge);
1996 return -ENODEV;
1997}
1998
1999static void __devexit agp_intel_remove(struct pci_dev *pdev)
2000{
2001 struct agp_bridge_data *bridge = pci_get_drvdata(pdev);
2002
2003 agp_remove_bridge(bridge);
2004
2005 if (intel_i810_private.i810_dev)
2006 pci_dev_put(intel_i810_private.i810_dev);
2007 if (intel_i830_private.i830_dev)
2008 pci_dev_put(intel_i830_private.i830_dev);
2009
2010 agp_put_bridge(bridge);
2011}
2012
Alexey Dobriyan85be7d62006-08-12 02:02:02 +04002013#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014static int agp_intel_resume(struct pci_dev *pdev)
2015{
2016 struct agp_bridge_data *bridge = pci_get_drvdata(pdev);
2017
2018 pci_restore_state(pdev);
2019
Wang Zhenyu4b953202007-01-17 11:07:54 +08002020 /* We should restore our graphics device's config space,
2021 * as host bridge (00:00) resumes before graphics device (02:00),
2022 * then our access to its pci space can work right.
2023 */
2024 if (intel_i810_private.i810_dev)
2025 pci_restore_state(intel_i810_private.i810_dev);
2026 if (intel_i830_private.i830_dev)
2027 pci_restore_state(intel_i830_private.i830_dev);
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 if (bridge->driver == &intel_generic_driver)
2030 intel_configure();
2031 else if (bridge->driver == &intel_850_driver)
2032 intel_850_configure();
2033 else if (bridge->driver == &intel_845_driver)
2034 intel_845_configure();
2035 else if (bridge->driver == &intel_830mp_driver)
2036 intel_830mp_configure();
2037 else if (bridge->driver == &intel_915_driver)
2038 intel_i915_configure();
2039 else if (bridge->driver == &intel_830_driver)
2040 intel_i830_configure();
2041 else if (bridge->driver == &intel_810_driver)
2042 intel_i810_configure();
Dave Jones08da3f42006-09-10 21:09:26 -04002043 else if (bridge->driver == &intel_i965_driver)
2044 intel_i915_configure();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 return 0;
2047}
Alexey Dobriyan85be7d62006-08-12 02:02:02 +04002048#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050static struct pci_device_id agp_intel_pci_table[] = {
2051#define ID(x) \
2052 { \
2053 .class = (PCI_CLASS_BRIDGE_HOST << 8), \
2054 .class_mask = ~0, \
2055 .vendor = PCI_VENDOR_ID_INTEL, \
2056 .device = x, \
2057 .subvendor = PCI_ANY_ID, \
2058 .subdevice = PCI_ANY_ID, \
2059 }
2060 ID(PCI_DEVICE_ID_INTEL_82443LX_0),
2061 ID(PCI_DEVICE_ID_INTEL_82443BX_0),
2062 ID(PCI_DEVICE_ID_INTEL_82443GX_0),
2063 ID(PCI_DEVICE_ID_INTEL_82810_MC1),
2064 ID(PCI_DEVICE_ID_INTEL_82810_MC3),
2065 ID(PCI_DEVICE_ID_INTEL_82810E_MC),
2066 ID(PCI_DEVICE_ID_INTEL_82815_MC),
2067 ID(PCI_DEVICE_ID_INTEL_82820_HB),
2068 ID(PCI_DEVICE_ID_INTEL_82820_UP_HB),
2069 ID(PCI_DEVICE_ID_INTEL_82830_HB),
2070 ID(PCI_DEVICE_ID_INTEL_82840_HB),
2071 ID(PCI_DEVICE_ID_INTEL_82845_HB),
2072 ID(PCI_DEVICE_ID_INTEL_82845G_HB),
2073 ID(PCI_DEVICE_ID_INTEL_82850_HB),
2074 ID(PCI_DEVICE_ID_INTEL_82855PM_HB),
2075 ID(PCI_DEVICE_ID_INTEL_82855GM_HB),
2076 ID(PCI_DEVICE_ID_INTEL_82860_HB),
2077 ID(PCI_DEVICE_ID_INTEL_82865_HB),
2078 ID(PCI_DEVICE_ID_INTEL_82875_HB),
2079 ID(PCI_DEVICE_ID_INTEL_7505_0),
2080 ID(PCI_DEVICE_ID_INTEL_7205_0),
2081 ID(PCI_DEVICE_ID_INTEL_82915G_HB),
2082 ID(PCI_DEVICE_ID_INTEL_82915GM_HB),
Alan Hourihaned0de98f2005-05-31 19:50:49 +01002083 ID(PCI_DEVICE_ID_INTEL_82945G_HB),
Alan Hourihane3b0e8ea2006-01-19 14:08:40 +00002084 ID(PCI_DEVICE_ID_INTEL_82945GM_HB),
Eric Anholt65c25aa2006-09-06 11:57:18 -04002085 ID(PCI_DEVICE_ID_INTEL_82946GZ_HB),
2086 ID(PCI_DEVICE_ID_INTEL_82965G_1_HB),
2087 ID(PCI_DEVICE_ID_INTEL_82965Q_HB),
2088 ID(PCI_DEVICE_ID_INTEL_82965G_HB),
Wang Zhenyu4598af32007-04-09 08:51:36 +08002089 ID(PCI_DEVICE_ID_INTEL_82965GM_HB),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 { }
2091};
2092
2093MODULE_DEVICE_TABLE(pci, agp_intel_pci_table);
2094
2095static struct pci_driver agp_intel_pci_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 .name = "agpgart-intel",
2097 .id_table = agp_intel_pci_table,
2098 .probe = agp_intel_probe,
2099 .remove = __devexit_p(agp_intel_remove),
Alexey Dobriyan85be7d62006-08-12 02:02:02 +04002100#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 .resume = agp_intel_resume,
Alexey Dobriyan85be7d62006-08-12 02:02:02 +04002102#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103};
2104
2105static int __init agp_intel_init(void)
2106{
2107 if (agp_off)
2108 return -EINVAL;
2109 return pci_register_driver(&agp_intel_pci_driver);
2110}
2111
2112static void __exit agp_intel_cleanup(void)
2113{
2114 pci_unregister_driver(&agp_intel_pci_driver);
2115}
2116
2117module_init(agp_intel_init);
2118module_exit(agp_intel_cleanup);
2119
2120MODULE_AUTHOR("Dave Jones <davej@codemonkey.org.uk>");
2121MODULE_LICENSE("GPL and additional rights");