2 * Intel AGPGART routines.
5 #include <linux/module.h>
7 #include <linux/init.h>
8 #include <linux/kernel.h>
9 #include <linux/pagemap.h>
10 #include <linux/agp_backend.h>
13 #define PCI_DEVICE_ID_INTEL_E7221_HB 0x2588
14 #define PCI_DEVICE_ID_INTEL_E7221_IG 0x258a
15 #define PCI_DEVICE_ID_INTEL_82946GZ_HB 0x2970
16 #define PCI_DEVICE_ID_INTEL_82946GZ_IG 0x2972
17 #define PCI_DEVICE_ID_INTEL_82G35_HB 0x2980
18 #define PCI_DEVICE_ID_INTEL_82G35_IG 0x2982
19 #define PCI_DEVICE_ID_INTEL_82965Q_HB 0x2990
20 #define PCI_DEVICE_ID_INTEL_82965Q_IG 0x2992
21 #define PCI_DEVICE_ID_INTEL_82965G_HB 0x29A0
22 #define PCI_DEVICE_ID_INTEL_82965G_IG 0x29A2
23 #define PCI_DEVICE_ID_INTEL_82965GM_HB 0x2A00
24 #define PCI_DEVICE_ID_INTEL_82965GM_IG 0x2A02
25 #define PCI_DEVICE_ID_INTEL_82965GME_HB 0x2A10
26 #define PCI_DEVICE_ID_INTEL_82965GME_IG 0x2A12
27 #define PCI_DEVICE_ID_INTEL_82945GME_HB 0x27AC
28 #define PCI_DEVICE_ID_INTEL_82945GME_IG 0x27AE
29 #define PCI_DEVICE_ID_INTEL_G33_HB 0x29C0
30 #define PCI_DEVICE_ID_INTEL_G33_IG 0x29C2
31 #define PCI_DEVICE_ID_INTEL_Q35_HB 0x29B0
32 #define PCI_DEVICE_ID_INTEL_Q35_IG 0x29B2
33 #define PCI_DEVICE_ID_INTEL_Q33_HB 0x29D0
34 #define PCI_DEVICE_ID_INTEL_Q33_IG 0x29D2
35 #define PCI_DEVICE_ID_INTEL_IGD_HB 0x2A40
36 #define PCI_DEVICE_ID_INTEL_IGD_IG 0x2A42
38 /* cover 915 and 945 variants */
39 #define IS_I915 (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_E7221_HB || \
40 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82915G_HB || \
41 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82915GM_HB || \
42 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82945G_HB || \
43 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82945GM_HB || \
44 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82945GME_HB)
46 #define IS_I965 (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82946GZ_HB || \
47 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82G35_HB || \
48 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82965Q_HB || \
49 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82965G_HB || \
50 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82965GM_HB || \
51 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82965GME_HB || \
52 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IGD_HB)
54 #define IS_G33 (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_G33_HB || \
55 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_Q35_HB || \
56 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_Q33_HB)
58 extern int agp_memory_reserved;
61 /* Intel 815 register */
62 #define INTEL_815_APCONT 0x51
63 #define INTEL_815_ATTBASE_MASK ~0x1FFFFFFF
65 /* Intel i820 registers */
66 #define INTEL_I820_RDCR 0x51
67 #define INTEL_I820_ERRSTS 0xc8
69 /* Intel i840 registers */
70 #define INTEL_I840_MCHCFG 0x50
71 #define INTEL_I840_ERRSTS 0xc8
73 /* Intel i850 registers */
74 #define INTEL_I850_MCHCFG 0x50
75 #define INTEL_I850_ERRSTS 0xc8
77 /* intel 915G registers */
78 #define I915_GMADDR 0x18
79 #define I915_MMADDR 0x10
80 #define I915_PTEADDR 0x1C
81 #define I915_GMCH_GMS_STOLEN_48M (0x6 << 4)
82 #define I915_GMCH_GMS_STOLEN_64M (0x7 << 4)
83 #define G33_GMCH_GMS_STOLEN_128M (0x8 << 4)
84 #define G33_GMCH_GMS_STOLEN_256M (0x9 << 4)
85 #define I915_IFPADDR 0x60
87 /* Intel 965G registers */
88 #define I965_MSAC 0x62
89 #define I965_IFPADDR 0x70
91 /* Intel 7505 registers */
92 #define INTEL_I7505_APSIZE 0x74
93 #define INTEL_I7505_NCAPID 0x60
94 #define INTEL_I7505_NISTAT 0x6c
95 #define INTEL_I7505_ATTBASE 0x78
96 #define INTEL_I7505_ERRSTS 0x42
97 #define INTEL_I7505_AGPCTRL 0x70
98 #define INTEL_I7505_MCHCFG 0x50
100 static const struct aper_size_info_fixed intel_i810_sizes[] =
103 /* The 32M mode still requires a 64k gatt */
107 #define AGP_DCACHE_MEMORY 1
108 #define AGP_PHYS_MEMORY 2
109 #define INTEL_AGP_CACHED_MEMORY 3
111 static struct gatt_mask intel_i810_masks[] =
113 {.mask = I810_PTE_VALID, .type = 0},
114 {.mask = (I810_PTE_VALID | I810_PTE_LOCAL), .type = AGP_DCACHE_MEMORY},
115 {.mask = I810_PTE_VALID, .type = 0},
116 {.mask = I810_PTE_VALID | I830_PTE_SYSTEM_CACHED,
117 .type = INTEL_AGP_CACHED_MEMORY}
120 static struct _intel_private {
121 struct pci_dev *pcidev; /* device one */
122 u8 __iomem *registers;
123 u32 __iomem *gtt; /* I915G */
124 int num_dcache_entries;
125 /* gtt_entries is the number of gtt entries that are already mapped
126 * to stolen memory. Stolen memory is larger than the memory mapped
127 * through gtt_entries, as it includes some reserved space for the BIOS
128 * popup and for the GTT.
130 int gtt_entries; /* i830+ */
132 void __iomem *i9xx_flush_page;
133 void *i8xx_flush_page;
135 struct page *i8xx_page;
136 struct resource ifp_resource;
140 static int intel_i810_fetch_size(void)
143 struct aper_size_info_fixed *values;
145 pci_read_config_dword(agp_bridge->dev, I810_SMRAM_MISCC, &smram_miscc);
146 values = A_SIZE_FIX(agp_bridge->driver->aperture_sizes);
148 if ((smram_miscc & I810_GMS) == I810_GMS_DISABLE) {
149 printk(KERN_WARNING PFX "i810 is disabled\n");
152 if ((smram_miscc & I810_GFX_MEM_WIN_SIZE) == I810_GFX_MEM_WIN_32M) {
153 agp_bridge->previous_size =
154 agp_bridge->current_size = (void *) (values + 1);
155 agp_bridge->aperture_size_idx = 1;
156 return values[1].size;
158 agp_bridge->previous_size =
159 agp_bridge->current_size = (void *) (values);
160 agp_bridge->aperture_size_idx = 0;
161 return values[0].size;
167 static int intel_i810_configure(void)
169 struct aper_size_info_fixed *current_size;
173 current_size = A_SIZE_FIX(agp_bridge->current_size);
175 if (!intel_private.registers) {
176 pci_read_config_dword(intel_private.pcidev, I810_MMADDR, &temp);
179 intel_private.registers = ioremap(temp, 128 * 4096);
180 if (!intel_private.registers) {
181 printk(KERN_ERR PFX "Unable to remap memory.\n");
186 if ((readl(intel_private.registers+I810_DRAM_CTL)
187 & I810_DRAM_ROW_0) == I810_DRAM_ROW_0_SDRAM) {
188 /* This will need to be dynamically assigned */
189 printk(KERN_INFO PFX "detected 4MB dedicated video ram.\n");
190 intel_private.num_dcache_entries = 1024;
192 pci_read_config_dword(intel_private.pcidev, I810_GMADDR, &temp);
193 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
194 writel(agp_bridge->gatt_bus_addr | I810_PGETBL_ENABLED, intel_private.registers+I810_PGETBL_CTL);
195 readl(intel_private.registers+I810_PGETBL_CTL); /* PCI Posting. */
197 if (agp_bridge->driver->needs_scratch_page) {
198 for (i = 0; i < current_size->num_entries; i++) {
199 writel(agp_bridge->scratch_page, intel_private.registers+I810_PTE_BASE+(i*4));
200 readl(intel_private.registers+I810_PTE_BASE+(i*4)); /* PCI posting. */
203 global_cache_flush();
207 static void intel_i810_cleanup(void)
209 writel(0, intel_private.registers+I810_PGETBL_CTL);
210 readl(intel_private.registers); /* PCI Posting. */
211 iounmap(intel_private.registers);
214 static void intel_i810_tlbflush(struct agp_memory *mem)
219 static void intel_i810_agp_enable(struct agp_bridge_data *bridge, u32 mode)
224 /* Exists to support ARGB cursors */
225 static void *i8xx_alloc_pages(void)
229 page = alloc_pages(GFP_KERNEL | GFP_DMA32, 2);
233 if (set_pages_uc(page, 4) < 0) {
234 set_pages_wb(page, 4);
235 __free_pages(page, 2);
239 atomic_inc(&agp_bridge->current_memory_agp);
240 return page_address(page);
243 static void i8xx_destroy_pages(void *addr)
250 page = virt_to_page(addr);
251 set_pages_wb(page, 4);
253 __free_pages(page, 2);
254 atomic_dec(&agp_bridge->current_memory_agp);
257 static int intel_i830_type_to_mask_type(struct agp_bridge_data *bridge,
260 if (type < AGP_USER_TYPES)
262 else if (type == AGP_USER_CACHED_MEMORY)
263 return INTEL_AGP_CACHED_MEMORY;
268 static int intel_i810_insert_entries(struct agp_memory *mem, off_t pg_start,
271 int i, j, num_entries;
276 if (mem->page_count == 0)
279 temp = agp_bridge->current_size;
280 num_entries = A_SIZE_FIX(temp)->num_entries;
282 if ((pg_start + mem->page_count) > num_entries)
286 for (j = pg_start; j < (pg_start + mem->page_count); j++) {
287 if (!PGE_EMPTY(agp_bridge, readl(agp_bridge->gatt_table+j))) {
293 if (type != mem->type)
296 mask_type = agp_bridge->driver->agp_type_to_mask_type(agp_bridge, type);
299 case AGP_DCACHE_MEMORY:
300 if (!mem->is_flushed)
301 global_cache_flush();
302 for (i = pg_start; i < (pg_start + mem->page_count); i++) {
303 writel((i*4096)|I810_PTE_LOCAL|I810_PTE_VALID,
304 intel_private.registers+I810_PTE_BASE+(i*4));
306 readl(intel_private.registers+I810_PTE_BASE+((i-1)*4));
308 case AGP_PHYS_MEMORY:
309 case AGP_NORMAL_MEMORY:
310 if (!mem->is_flushed)
311 global_cache_flush();
312 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) {
313 writel(agp_bridge->driver->mask_memory(agp_bridge,
316 intel_private.registers+I810_PTE_BASE+(j*4));
318 readl(intel_private.registers+I810_PTE_BASE+((j-1)*4));
324 agp_bridge->driver->tlb_flush(mem);
332 static int intel_i810_remove_entries(struct agp_memory *mem, off_t pg_start,
337 if (mem->page_count == 0)
340 for (i = pg_start; i < (mem->page_count + pg_start); i++) {
341 writel(agp_bridge->scratch_page, intel_private.registers+I810_PTE_BASE+(i*4));
343 readl(intel_private.registers+I810_PTE_BASE+((i-1)*4));
345 agp_bridge->driver->tlb_flush(mem);
350 * The i810/i830 requires a physical address to program its mouse
351 * pointer into hardware.
352 * However the Xserver still writes to it through the agp aperture.
354 static struct agp_memory *alloc_agpphysmem_i8xx(size_t pg_count, int type)
356 struct agp_memory *new;
360 case 1: addr = agp_bridge->driver->agp_alloc_page(agp_bridge);
363 /* kludge to get 4 physical pages for ARGB cursor */
364 addr = i8xx_alloc_pages();
373 new = agp_create_memory(pg_count);
377 new->memory[0] = virt_to_gart(addr);
379 /* kludge to get 4 physical pages for ARGB cursor */
380 new->memory[1] = new->memory[0] + PAGE_SIZE;
381 new->memory[2] = new->memory[1] + PAGE_SIZE;
382 new->memory[3] = new->memory[2] + PAGE_SIZE;
384 new->page_count = pg_count;
385 new->num_scratch_pages = pg_count;
386 new->type = AGP_PHYS_MEMORY;
387 new->physical = new->memory[0];
391 static struct agp_memory *intel_i810_alloc_by_type(size_t pg_count, int type)
393 struct agp_memory *new;
395 if (type == AGP_DCACHE_MEMORY) {
396 if (pg_count != intel_private.num_dcache_entries)
399 new = agp_create_memory(1);
403 new->type = AGP_DCACHE_MEMORY;
404 new->page_count = pg_count;
405 new->num_scratch_pages = 0;
406 agp_free_page_array(new);
409 if (type == AGP_PHYS_MEMORY)
410 return alloc_agpphysmem_i8xx(pg_count, type);
414 static void intel_i810_free_by_type(struct agp_memory *curr)
416 agp_free_key(curr->key);
417 if (curr->type == AGP_PHYS_MEMORY) {
418 if (curr->page_count == 4)
419 i8xx_destroy_pages(gart_to_virt(curr->memory[0]));
421 agp_bridge->driver->agp_destroy_page(gart_to_virt(curr->memory[0]),
422 AGP_PAGE_DESTROY_UNMAP);
423 agp_bridge->driver->agp_destroy_page(gart_to_virt(curr->memory[0]),
424 AGP_PAGE_DESTROY_FREE);
426 agp_free_page_array(curr);
431 static unsigned long intel_i810_mask_memory(struct agp_bridge_data *bridge,
432 unsigned long addr, int type)
434 /* Type checking must be done elsewhere */
435 return addr | bridge->driver->masks[type].mask;
438 static struct aper_size_info_fixed intel_i830_sizes[] =
441 /* The 64M mode still requires a 128k gatt */
447 static void intel_i830_init_gtt_entries(void)
453 static const int ddt[4] = { 0, 16, 32, 64 };
454 int size; /* reserved space (in kb) at the top of stolen memory */
456 pci_read_config_word(agp_bridge->dev, I830_GMCH_CTRL, &gmch_ctrl);
460 pgetbl_ctl = readl(intel_private.registers+I810_PGETBL_CTL);
462 /* The 965 has a field telling us the size of the GTT,
463 * which may be larger than what is necessary to map the
466 switch (pgetbl_ctl & I965_PGETBL_SIZE_MASK) {
467 case I965_PGETBL_SIZE_128KB:
470 case I965_PGETBL_SIZE_256KB:
473 case I965_PGETBL_SIZE_512KB:
476 case I965_PGETBL_SIZE_1MB:
479 case I965_PGETBL_SIZE_2MB:
482 case I965_PGETBL_SIZE_1_5MB:
486 printk(KERN_INFO PFX "Unknown page table size, "
490 size += 4; /* add in BIOS popup space */
492 /* G33's GTT size defined in gmch_ctrl */
493 switch (gmch_ctrl & G33_PGETBL_SIZE_MASK) {
494 case G33_PGETBL_SIZE_1M:
497 case G33_PGETBL_SIZE_2M:
501 printk(KERN_INFO PFX "Unknown page table size 0x%x, "
503 (gmch_ctrl & G33_PGETBL_SIZE_MASK));
508 /* On previous hardware, the GTT size was just what was
509 * required to map the aperture.
511 size = agp_bridge->driver->fetch_size() + 4;
514 if (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82830_HB ||
515 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_82845G_HB) {
516 switch (gmch_ctrl & I830_GMCH_GMS_MASK) {
517 case I830_GMCH_GMS_STOLEN_512:
518 gtt_entries = KB(512) - KB(size);
520 case I830_GMCH_GMS_STOLEN_1024:
521 gtt_entries = MB(1) - KB(size);
523 case I830_GMCH_GMS_STOLEN_8192:
524 gtt_entries = MB(8) - KB(size);
526 case I830_GMCH_GMS_LOCAL:
527 rdct = readb(intel_private.registers+I830_RDRAM_CHANNEL_TYPE);
528 gtt_entries = (I830_RDRAM_ND(rdct) + 1) *
529 MB(ddt[I830_RDRAM_DDT(rdct)]);
537 switch (gmch_ctrl & I855_GMCH_GMS_MASK) {
538 case I855_GMCH_GMS_STOLEN_1M:
539 gtt_entries = MB(1) - KB(size);
541 case I855_GMCH_GMS_STOLEN_4M:
542 gtt_entries = MB(4) - KB(size);
544 case I855_GMCH_GMS_STOLEN_8M:
545 gtt_entries = MB(8) - KB(size);
547 case I855_GMCH_GMS_STOLEN_16M:
548 gtt_entries = MB(16) - KB(size);
550 case I855_GMCH_GMS_STOLEN_32M:
551 gtt_entries = MB(32) - KB(size);
553 case I915_GMCH_GMS_STOLEN_48M:
554 /* Check it's really I915G */
555 if (IS_I915 || IS_I965 || IS_G33)
556 gtt_entries = MB(48) - KB(size);
560 case I915_GMCH_GMS_STOLEN_64M:
561 /* Check it's really I915G */
562 if (IS_I915 || IS_I965 || IS_G33)
563 gtt_entries = MB(64) - KB(size);
567 case G33_GMCH_GMS_STOLEN_128M:
569 gtt_entries = MB(128) - KB(size);
573 case G33_GMCH_GMS_STOLEN_256M:
575 gtt_entries = MB(256) - KB(size);
585 printk(KERN_INFO PFX "Detected %dK %s memory.\n",
586 gtt_entries / KB(1), local ? "local" : "stolen");
589 "No pre-allocated video memory detected.\n");
590 gtt_entries /= KB(4);
592 intel_private.gtt_entries = gtt_entries;
595 static void intel_i830_fini_flush(void)
597 kunmap(intel_private.i8xx_page);
598 intel_private.i8xx_flush_page = NULL;
599 unmap_page_from_agp(intel_private.i8xx_page);
601 __free_page(intel_private.i8xx_page);
602 intel_private.i8xx_page = NULL;
605 static void intel_i830_setup_flush(void)
607 /* return if we've already set the flush mechanism up */
608 if (intel_private.i8xx_page)
611 intel_private.i8xx_page = alloc_page(GFP_KERNEL | __GFP_ZERO | GFP_DMA32);
612 if (!intel_private.i8xx_page)
615 /* make page uncached */
616 map_page_into_agp(intel_private.i8xx_page);
618 intel_private.i8xx_flush_page = kmap(intel_private.i8xx_page);
619 if (!intel_private.i8xx_flush_page)
620 intel_i830_fini_flush();
623 static void intel_i830_chipset_flush(struct agp_bridge_data *bridge)
625 unsigned int *pg = intel_private.i8xx_flush_page;
628 for (i = 0; i < 256; i += 2)
634 /* The intel i830 automatically initializes the agp aperture during POST.
635 * Use the memory already set aside for in the GTT.
637 static int intel_i830_create_gatt_table(struct agp_bridge_data *bridge)
640 struct aper_size_info_fixed *size;
644 size = agp_bridge->current_size;
645 page_order = size->page_order;
646 num_entries = size->num_entries;
647 agp_bridge->gatt_table_real = NULL;
649 pci_read_config_dword(intel_private.pcidev, I810_MMADDR, &temp);
652 intel_private.registers = ioremap(temp, 128 * 4096);
653 if (!intel_private.registers)
656 temp = readl(intel_private.registers+I810_PGETBL_CTL) & 0xfffff000;
657 global_cache_flush(); /* FIXME: ?? */
659 /* we have to call this as early as possible after the MMIO base address is known */
660 intel_i830_init_gtt_entries();
662 agp_bridge->gatt_table = NULL;
664 agp_bridge->gatt_bus_addr = temp;
669 /* Return the gatt table to a sane state. Use the top of stolen
670 * memory for the GTT.
672 static int intel_i830_free_gatt_table(struct agp_bridge_data *bridge)
677 static int intel_i830_fetch_size(void)
680 struct aper_size_info_fixed *values;
682 values = A_SIZE_FIX(agp_bridge->driver->aperture_sizes);
684 if (agp_bridge->dev->device != PCI_DEVICE_ID_INTEL_82830_HB &&
685 agp_bridge->dev->device != PCI_DEVICE_ID_INTEL_82845G_HB) {
686 /* 855GM/852GM/865G has 128MB aperture size */
687 agp_bridge->previous_size = agp_bridge->current_size = (void *) values;
688 agp_bridge->aperture_size_idx = 0;
689 return values[0].size;
692 pci_read_config_word(agp_bridge->dev, I830_GMCH_CTRL, &gmch_ctrl);
694 if ((gmch_ctrl & I830_GMCH_MEM_MASK) == I830_GMCH_MEM_128M) {
695 agp_bridge->previous_size = agp_bridge->current_size = (void *) values;
696 agp_bridge->aperture_size_idx = 0;
697 return values[0].size;
699 agp_bridge->previous_size = agp_bridge->current_size = (void *) (values + 1);
700 agp_bridge->aperture_size_idx = 1;
701 return values[1].size;
707 static int intel_i830_configure(void)
709 struct aper_size_info_fixed *current_size;
714 current_size = A_SIZE_FIX(agp_bridge->current_size);
716 pci_read_config_dword(intel_private.pcidev, I810_GMADDR, &temp);
717 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
719 pci_read_config_word(agp_bridge->dev, I830_GMCH_CTRL, &gmch_ctrl);
720 gmch_ctrl |= I830_GMCH_ENABLED;
721 pci_write_config_word(agp_bridge->dev, I830_GMCH_CTRL, gmch_ctrl);
723 writel(agp_bridge->gatt_bus_addr|I810_PGETBL_ENABLED, intel_private.registers+I810_PGETBL_CTL);
724 readl(intel_private.registers+I810_PGETBL_CTL); /* PCI Posting. */
726 if (agp_bridge->driver->needs_scratch_page) {
727 for (i = intel_private.gtt_entries; i < current_size->num_entries; i++) {
728 writel(agp_bridge->scratch_page, intel_private.registers+I810_PTE_BASE+(i*4));
729 readl(intel_private.registers+I810_PTE_BASE+(i*4)); /* PCI Posting. */
733 global_cache_flush();
735 intel_i830_setup_flush();
739 static void intel_i830_cleanup(void)
741 iounmap(intel_private.registers);
744 static int intel_i830_insert_entries(struct agp_memory *mem, off_t pg_start,
747 int i, j, num_entries;
752 if (mem->page_count == 0)
755 temp = agp_bridge->current_size;
756 num_entries = A_SIZE_FIX(temp)->num_entries;
758 if (pg_start < intel_private.gtt_entries) {
759 printk(KERN_DEBUG PFX "pg_start == 0x%.8lx,intel_private.gtt_entries == 0x%.8x\n",
760 pg_start, intel_private.gtt_entries);
762 printk(KERN_INFO PFX "Trying to insert into local/stolen memory\n");
766 if ((pg_start + mem->page_count) > num_entries)
769 /* The i830 can't check the GTT for entries since its read only,
770 * depend on the caller to make the correct offset decisions.
773 if (type != mem->type)
776 mask_type = agp_bridge->driver->agp_type_to_mask_type(agp_bridge, type);
778 if (mask_type != 0 && mask_type != AGP_PHYS_MEMORY &&
779 mask_type != INTEL_AGP_CACHED_MEMORY)
782 if (!mem->is_flushed)
783 global_cache_flush();
785 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) {
786 writel(agp_bridge->driver->mask_memory(agp_bridge,
787 mem->memory[i], mask_type),
788 intel_private.registers+I810_PTE_BASE+(j*4));
790 readl(intel_private.registers+I810_PTE_BASE+((j-1)*4));
791 agp_bridge->driver->tlb_flush(mem);
800 static int intel_i830_remove_entries(struct agp_memory *mem, off_t pg_start,
805 if (mem->page_count == 0)
808 if (pg_start < intel_private.gtt_entries) {
809 printk(KERN_INFO PFX "Trying to disable local/stolen memory\n");
813 for (i = pg_start; i < (mem->page_count + pg_start); i++) {
814 writel(agp_bridge->scratch_page, intel_private.registers+I810_PTE_BASE+(i*4));
816 readl(intel_private.registers+I810_PTE_BASE+((i-1)*4));
818 agp_bridge->driver->tlb_flush(mem);
822 static struct agp_memory *intel_i830_alloc_by_type(size_t pg_count, int type)
824 if (type == AGP_PHYS_MEMORY)
825 return alloc_agpphysmem_i8xx(pg_count, type);
826 /* always return NULL for other allocation types for now */
830 static int intel_alloc_chipset_flush_resource(void)
833 ret = pci_bus_alloc_resource(agp_bridge->dev->bus, &intel_private.ifp_resource, PAGE_SIZE,
834 PAGE_SIZE, PCIBIOS_MIN_MEM, 0,
835 pcibios_align_resource, agp_bridge->dev);
840 static void intel_i915_setup_chipset_flush(void)
845 pci_read_config_dword(agp_bridge->dev, I915_IFPADDR, &temp);
847 intel_alloc_chipset_flush_resource();
848 intel_private.resource_valid = 1;
849 pci_write_config_dword(agp_bridge->dev, I915_IFPADDR, (intel_private.ifp_resource.start & 0xffffffff) | 0x1);
853 intel_private.resource_valid = 1;
854 intel_private.ifp_resource.start = temp;
855 intel_private.ifp_resource.end = temp + PAGE_SIZE;
856 ret = request_resource(&iomem_resource, &intel_private.ifp_resource);
857 /* some BIOSes reserve this area in a pnp some don't */
859 intel_private.resource_valid = 0;
863 static void intel_i965_g33_setup_chipset_flush(void)
865 u32 temp_hi, temp_lo;
868 pci_read_config_dword(agp_bridge->dev, I965_IFPADDR + 4, &temp_hi);
869 pci_read_config_dword(agp_bridge->dev, I965_IFPADDR, &temp_lo);
871 if (!(temp_lo & 0x1)) {
873 intel_alloc_chipset_flush_resource();
875 intel_private.resource_valid = 1;
876 pci_write_config_dword(agp_bridge->dev, I965_IFPADDR + 4,
877 upper_32_bits(intel_private.ifp_resource.start));
878 pci_write_config_dword(agp_bridge->dev, I965_IFPADDR, (intel_private.ifp_resource.start & 0xffffffff) | 0x1);
883 l64 = ((u64)temp_hi << 32) | temp_lo;
885 intel_private.resource_valid = 1;
886 intel_private.ifp_resource.start = l64;
887 intel_private.ifp_resource.end = l64 + PAGE_SIZE;
888 ret = request_resource(&iomem_resource, &intel_private.ifp_resource);
889 /* some BIOSes reserve this area in a pnp some don't */
891 intel_private.resource_valid = 0;
895 static void intel_i9xx_setup_flush(void)
897 /* return if already configured */
898 if (intel_private.ifp_resource.start)
901 /* setup a resource for this object */
902 intel_private.ifp_resource.name = "Intel Flush Page";
903 intel_private.ifp_resource.flags = IORESOURCE_MEM;
905 /* Setup chipset flush for 915 */
906 if (IS_I965 || IS_G33) {
907 intel_i965_g33_setup_chipset_flush();
909 intel_i915_setup_chipset_flush();
912 if (intel_private.ifp_resource.start) {
913 intel_private.i9xx_flush_page = ioremap_nocache(intel_private.ifp_resource.start, PAGE_SIZE);
914 if (!intel_private.i9xx_flush_page)
915 printk(KERN_INFO "unable to ioremap flush page - no chipset flushing");
919 static int intel_i915_configure(void)
921 struct aper_size_info_fixed *current_size;
926 current_size = A_SIZE_FIX(agp_bridge->current_size);
928 pci_read_config_dword(intel_private.pcidev, I915_GMADDR, &temp);
930 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
932 pci_read_config_word(agp_bridge->dev, I830_GMCH_CTRL, &gmch_ctrl);
933 gmch_ctrl |= I830_GMCH_ENABLED;
934 pci_write_config_word(agp_bridge->dev, I830_GMCH_CTRL, gmch_ctrl);
936 writel(agp_bridge->gatt_bus_addr|I810_PGETBL_ENABLED, intel_private.registers+I810_PGETBL_CTL);
937 readl(intel_private.registers+I810_PGETBL_CTL); /* PCI Posting. */
939 if (agp_bridge->driver->needs_scratch_page) {
940 for (i = intel_private.gtt_entries; i < current_size->num_entries; i++) {
941 writel(agp_bridge->scratch_page, intel_private.gtt+i);
942 readl(intel_private.gtt+i); /* PCI Posting. */
946 global_cache_flush();
948 intel_i9xx_setup_flush();
953 static void intel_i915_cleanup(void)
955 if (intel_private.i9xx_flush_page)
956 iounmap(intel_private.i9xx_flush_page);
957 if (intel_private.resource_valid)
958 release_resource(&intel_private.ifp_resource);
959 intel_private.ifp_resource.start = 0;
960 intel_private.resource_valid = 0;
961 iounmap(intel_private.gtt);
962 iounmap(intel_private.registers);
965 static void intel_i915_chipset_flush(struct agp_bridge_data *bridge)
967 if (intel_private.i9xx_flush_page)
968 writel(1, intel_private.i9xx_flush_page);
971 static int intel_i915_insert_entries(struct agp_memory *mem, off_t pg_start,
974 int i, j, num_entries;
979 if (mem->page_count == 0)
982 temp = agp_bridge->current_size;
983 num_entries = A_SIZE_FIX(temp)->num_entries;
985 if (pg_start < intel_private.gtt_entries) {
986 printk(KERN_DEBUG PFX "pg_start == 0x%.8lx,intel_private.gtt_entries == 0x%.8x\n",
987 pg_start, intel_private.gtt_entries);
989 printk(KERN_INFO PFX "Trying to insert into local/stolen memory\n");
993 if ((pg_start + mem->page_count) > num_entries)
996 /* The i915 can't check the GTT for entries since its read only,
997 * depend on the caller to make the correct offset decisions.
1000 if (type != mem->type)
1003 mask_type = agp_bridge->driver->agp_type_to_mask_type(agp_bridge, type);
1005 if (mask_type != 0 && mask_type != AGP_PHYS_MEMORY &&
1006 mask_type != INTEL_AGP_CACHED_MEMORY)
1009 if (!mem->is_flushed)
1010 global_cache_flush();
1012 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) {
1013 writel(agp_bridge->driver->mask_memory(agp_bridge,
1014 mem->memory[i], mask_type), intel_private.gtt+j);
1017 readl(intel_private.gtt+j-1);
1018 agp_bridge->driver->tlb_flush(mem);
1023 mem->is_flushed = 1;
1027 static int intel_i915_remove_entries(struct agp_memory *mem, off_t pg_start,
1032 if (mem->page_count == 0)
1035 if (pg_start < intel_private.gtt_entries) {
1036 printk(KERN_INFO PFX "Trying to disable local/stolen memory\n");
1040 for (i = pg_start; i < (mem->page_count + pg_start); i++)
1041 writel(agp_bridge->scratch_page, intel_private.gtt+i);
1043 readl(intel_private.gtt+i-1);
1045 agp_bridge->driver->tlb_flush(mem);
1049 /* Return the aperture size by just checking the resource length. The effect
1050 * described in the spec of the MSAC registers is just changing of the
1053 static int intel_i9xx_fetch_size(void)
1055 int num_sizes = ARRAY_SIZE(intel_i830_sizes);
1056 int aper_size; /* size in megabytes */
1059 aper_size = pci_resource_len(intel_private.pcidev, 2) / MB(1);
1061 for (i = 0; i < num_sizes; i++) {
1062 if (aper_size == intel_i830_sizes[i].size) {
1063 agp_bridge->current_size = intel_i830_sizes + i;
1064 agp_bridge->previous_size = agp_bridge->current_size;
1072 /* The intel i915 automatically initializes the agp aperture during POST.
1073 * Use the memory already set aside for in the GTT.
1075 static int intel_i915_create_gatt_table(struct agp_bridge_data *bridge)
1078 struct aper_size_info_fixed *size;
1081 int gtt_map_size = 256 * 1024;
1083 size = agp_bridge->current_size;
1084 page_order = size->page_order;
1085 num_entries = size->num_entries;
1086 agp_bridge->gatt_table_real = NULL;
1088 pci_read_config_dword(intel_private.pcidev, I915_MMADDR, &temp);
1089 pci_read_config_dword(intel_private.pcidev, I915_PTEADDR, &temp2);
1092 gtt_map_size = 1024 * 1024; /* 1M on G33 */
1093 intel_private.gtt = ioremap(temp2, gtt_map_size);
1094 if (!intel_private.gtt)
1099 intel_private.registers = ioremap(temp, 128 * 4096);
1100 if (!intel_private.registers) {
1101 iounmap(intel_private.gtt);
1105 temp = readl(intel_private.registers+I810_PGETBL_CTL) & 0xfffff000;
1106 global_cache_flush(); /* FIXME: ? */
1108 /* we have to call this as early as possible after the MMIO base address is known */
1109 intel_i830_init_gtt_entries();
1111 agp_bridge->gatt_table = NULL;
1113 agp_bridge->gatt_bus_addr = temp;
1119 * The i965 supports 36-bit physical addresses, but to keep
1120 * the format of the GTT the same, the bits that don't fit
1121 * in a 32-bit word are shifted down to bits 4..7.
1123 * Gcc is smart enough to notice that "(addr >> 28) & 0xf0"
1124 * is always zero on 32-bit architectures, so no need to make
1127 static unsigned long intel_i965_mask_memory(struct agp_bridge_data *bridge,
1128 unsigned long addr, int type)
1130 /* Shift high bits down */
1131 addr |= (addr >> 28) & 0xf0;
1133 /* Type checking must be done elsewhere */
1134 return addr | bridge->driver->masks[type].mask;
1137 /* The intel i965 automatically initializes the agp aperture during POST.
1138 * Use the memory already set aside for in the GTT.
1140 static int intel_i965_create_gatt_table(struct agp_bridge_data *bridge)
1143 struct aper_size_info_fixed *size;
1146 int gtt_offset, gtt_size;
1148 size = agp_bridge->current_size;
1149 page_order = size->page_order;
1150 num_entries = size->num_entries;
1151 agp_bridge->gatt_table_real = NULL;
1153 pci_read_config_dword(intel_private.pcidev, I915_MMADDR, &temp);
1157 if (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IGD_HB)
1158 gtt_offset = gtt_size = MB(2);
1160 gtt_offset = gtt_size = KB(512);
1162 intel_private.gtt = ioremap((temp + gtt_offset) , gtt_size);
1164 if (!intel_private.gtt)
1167 intel_private.registers = ioremap(temp, 128 * 4096);
1168 if (!intel_private.registers) {
1169 iounmap(intel_private.gtt);
1173 temp = readl(intel_private.registers+I810_PGETBL_CTL) & 0xfffff000;
1174 global_cache_flush(); /* FIXME: ? */
1176 /* we have to call this as early as possible after the MMIO base address is known */
1177 intel_i830_init_gtt_entries();
1179 agp_bridge->gatt_table = NULL;
1181 agp_bridge->gatt_bus_addr = temp;
1187 static int intel_fetch_size(void)
1191 struct aper_size_info_16 *values;
1193 pci_read_config_word(agp_bridge->dev, INTEL_APSIZE, &temp);
1194 values = A_SIZE_16(agp_bridge->driver->aperture_sizes);
1196 for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) {
1197 if (temp == values[i].size_value) {
1198 agp_bridge->previous_size = agp_bridge->current_size = (void *) (values + i);
1199 agp_bridge->aperture_size_idx = i;
1200 return values[i].size;
1207 static int __intel_8xx_fetch_size(u8 temp)
1210 struct aper_size_info_8 *values;
1212 values = A_SIZE_8(agp_bridge->driver->aperture_sizes);
1214 for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) {
1215 if (temp == values[i].size_value) {
1216 agp_bridge->previous_size =
1217 agp_bridge->current_size = (void *) (values + i);
1218 agp_bridge->aperture_size_idx = i;
1219 return values[i].size;
1225 static int intel_8xx_fetch_size(void)
1229 pci_read_config_byte(agp_bridge->dev, INTEL_APSIZE, &temp);
1230 return __intel_8xx_fetch_size(temp);
1233 static int intel_815_fetch_size(void)
1237 /* Intel 815 chipsets have a _weird_ APSIZE register with only
1238 * one non-reserved bit, so mask the others out ... */
1239 pci_read_config_byte(agp_bridge->dev, INTEL_APSIZE, &temp);
1242 return __intel_8xx_fetch_size(temp);
1245 static void intel_tlbflush(struct agp_memory *mem)
1247 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x2200);
1248 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x2280);
1252 static void intel_8xx_tlbflush(struct agp_memory *mem)
1255 pci_read_config_dword(agp_bridge->dev, INTEL_AGPCTRL, &temp);
1256 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, temp & ~(1 << 7));
1257 pci_read_config_dword(agp_bridge->dev, INTEL_AGPCTRL, &temp);
1258 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, temp | (1 << 7));
1262 static void intel_cleanup(void)
1265 struct aper_size_info_16 *previous_size;
1267 previous_size = A_SIZE_16(agp_bridge->previous_size);
1268 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp);
1269 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG, temp & ~(1 << 9));
1270 pci_write_config_word(agp_bridge->dev, INTEL_APSIZE, previous_size->size_value);
1274 static void intel_8xx_cleanup(void)
1277 struct aper_size_info_8 *previous_size;
1279 previous_size = A_SIZE_8(agp_bridge->previous_size);
1280 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp);
1281 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG, temp & ~(1 << 9));
1282 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, previous_size->size_value);
1286 static int intel_configure(void)
1290 struct aper_size_info_16 *current_size;
1292 current_size = A_SIZE_16(agp_bridge->current_size);
1295 pci_write_config_word(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1297 /* address to map to */
1298 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1299 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1301 /* attbase - aperture base */
1302 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1305 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x2280);
1308 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp2);
1309 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG,
1310 (temp2 & ~(1 << 10)) | (1 << 9));
1311 /* clear any possible error conditions */
1312 pci_write_config_byte(agp_bridge->dev, INTEL_ERRSTS + 1, 7);
1316 static int intel_815_configure(void)
1320 struct aper_size_info_8 *current_size;
1322 /* attbase - aperture base */
1323 /* the Intel 815 chipset spec. says that bits 29-31 in the
1324 * ATTBASE register are reserved -> try not to write them */
1325 if (agp_bridge->gatt_bus_addr & INTEL_815_ATTBASE_MASK) {
1326 printk(KERN_EMERG PFX "gatt bus addr too high");
1330 current_size = A_SIZE_8(agp_bridge->current_size);
1333 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE,
1334 current_size->size_value);
1336 /* address to map to */
1337 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1338 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1340 pci_read_config_dword(agp_bridge->dev, INTEL_ATTBASE, &addr);
1341 addr &= INTEL_815_ATTBASE_MASK;
1342 addr |= agp_bridge->gatt_bus_addr;
1343 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, addr);
1346 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1349 pci_read_config_byte(agp_bridge->dev, INTEL_815_APCONT, &temp2);
1350 pci_write_config_byte(agp_bridge->dev, INTEL_815_APCONT, temp2 | (1 << 1));
1352 /* clear any possible error conditions */
1353 /* Oddness : this chipset seems to have no ERRSTS register ! */
1357 static void intel_820_tlbflush(struct agp_memory *mem)
1362 static void intel_820_cleanup(void)
1365 struct aper_size_info_8 *previous_size;
1367 previous_size = A_SIZE_8(agp_bridge->previous_size);
1368 pci_read_config_byte(agp_bridge->dev, INTEL_I820_RDCR, &temp);
1369 pci_write_config_byte(agp_bridge->dev, INTEL_I820_RDCR,
1371 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE,
1372 previous_size->size_value);
1376 static int intel_820_configure(void)
1380 struct aper_size_info_8 *current_size;
1382 current_size = A_SIZE_8(agp_bridge->current_size);
1385 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1387 /* address to map to */
1388 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1389 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1391 /* attbase - aperture base */
1392 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1395 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1397 /* global enable aperture access */
1398 /* This flag is not accessed through MCHCFG register as in */
1400 pci_read_config_byte(agp_bridge->dev, INTEL_I820_RDCR, &temp2);
1401 pci_write_config_byte(agp_bridge->dev, INTEL_I820_RDCR, temp2 | (1 << 1));
1402 /* clear any possible AGP-related error conditions */
1403 pci_write_config_word(agp_bridge->dev, INTEL_I820_ERRSTS, 0x001c);
1407 static int intel_840_configure(void)
1411 struct aper_size_info_8 *current_size;
1413 current_size = A_SIZE_8(agp_bridge->current_size);
1416 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1418 /* address to map to */
1419 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1420 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1422 /* attbase - aperture base */
1423 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1426 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1429 pci_read_config_word(agp_bridge->dev, INTEL_I840_MCHCFG, &temp2);
1430 pci_write_config_word(agp_bridge->dev, INTEL_I840_MCHCFG, temp2 | (1 << 9));
1431 /* clear any possible error conditions */
1432 pci_write_config_word(agp_bridge->dev, INTEL_I840_ERRSTS, 0xc000);
1436 static int intel_845_configure(void)
1440 struct aper_size_info_8 *current_size;
1442 current_size = A_SIZE_8(agp_bridge->current_size);
1445 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1447 if (agp_bridge->apbase_config != 0) {
1448 pci_write_config_dword(agp_bridge->dev, AGP_APBASE,
1449 agp_bridge->apbase_config);
1451 /* address to map to */
1452 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1453 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1454 agp_bridge->apbase_config = temp;
1457 /* attbase - aperture base */
1458 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1461 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1464 pci_read_config_byte(agp_bridge->dev, INTEL_I845_AGPM, &temp2);
1465 pci_write_config_byte(agp_bridge->dev, INTEL_I845_AGPM, temp2 | (1 << 1));
1466 /* clear any possible error conditions */
1467 pci_write_config_word(agp_bridge->dev, INTEL_I845_ERRSTS, 0x001c);
1469 intel_i830_setup_flush();
1473 static int intel_850_configure(void)
1477 struct aper_size_info_8 *current_size;
1479 current_size = A_SIZE_8(agp_bridge->current_size);
1482 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1484 /* address to map to */
1485 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1486 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1488 /* attbase - aperture base */
1489 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1492 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1495 pci_read_config_word(agp_bridge->dev, INTEL_I850_MCHCFG, &temp2);
1496 pci_write_config_word(agp_bridge->dev, INTEL_I850_MCHCFG, temp2 | (1 << 9));
1497 /* clear any possible AGP-related error conditions */
1498 pci_write_config_word(agp_bridge->dev, INTEL_I850_ERRSTS, 0x001c);
1502 static int intel_860_configure(void)
1506 struct aper_size_info_8 *current_size;
1508 current_size = A_SIZE_8(agp_bridge->current_size);
1511 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1513 /* address to map to */
1514 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1515 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1517 /* attbase - aperture base */
1518 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1521 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1524 pci_read_config_word(agp_bridge->dev, INTEL_I860_MCHCFG, &temp2);
1525 pci_write_config_word(agp_bridge->dev, INTEL_I860_MCHCFG, temp2 | (1 << 9));
1526 /* clear any possible AGP-related error conditions */
1527 pci_write_config_word(agp_bridge->dev, INTEL_I860_ERRSTS, 0xf700);
1531 static int intel_830mp_configure(void)
1535 struct aper_size_info_8 *current_size;
1537 current_size = A_SIZE_8(agp_bridge->current_size);
1540 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1542 /* address to map to */
1543 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1544 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1546 /* attbase - aperture base */
1547 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1550 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1553 pci_read_config_word(agp_bridge->dev, INTEL_NBXCFG, &temp2);
1554 pci_write_config_word(agp_bridge->dev, INTEL_NBXCFG, temp2 | (1 << 9));
1555 /* clear any possible AGP-related error conditions */
1556 pci_write_config_word(agp_bridge->dev, INTEL_I830_ERRSTS, 0x1c);
1560 static int intel_7505_configure(void)
1564 struct aper_size_info_8 *current_size;
1566 current_size = A_SIZE_8(agp_bridge->current_size);
1569 pci_write_config_byte(agp_bridge->dev, INTEL_APSIZE, current_size->size_value);
1571 /* address to map to */
1572 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1573 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1575 /* attbase - aperture base */
1576 pci_write_config_dword(agp_bridge->dev, INTEL_ATTBASE, agp_bridge->gatt_bus_addr);
1579 pci_write_config_dword(agp_bridge->dev, INTEL_AGPCTRL, 0x0000);
1582 pci_read_config_word(agp_bridge->dev, INTEL_I7505_MCHCFG, &temp2);
1583 pci_write_config_word(agp_bridge->dev, INTEL_I7505_MCHCFG, temp2 | (1 << 9));
1588 /* Setup function */
1589 static const struct gatt_mask intel_generic_masks[] =
1591 {.mask = 0x00000017, .type = 0}
1594 static const struct aper_size_info_8 intel_815_sizes[2] =
1600 static const struct aper_size_info_8 intel_8xx_sizes[7] =
1603 {128, 32768, 5, 32},
1611 static const struct aper_size_info_16 intel_generic_sizes[7] =
1614 {128, 32768, 5, 32},
1622 static const struct aper_size_info_8 intel_830mp_sizes[4] =
1625 {128, 32768, 5, 32},
1630 static const struct agp_bridge_driver intel_generic_driver = {
1631 .owner = THIS_MODULE,
1632 .aperture_sizes = intel_generic_sizes,
1633 .size_type = U16_APER_SIZE,
1634 .num_aperture_sizes = 7,
1635 .configure = intel_configure,
1636 .fetch_size = intel_fetch_size,
1637 .cleanup = intel_cleanup,
1638 .tlb_flush = intel_tlbflush,
1639 .mask_memory = agp_generic_mask_memory,
1640 .masks = intel_generic_masks,
1641 .agp_enable = agp_generic_enable,
1642 .cache_flush = global_cache_flush,
1643 .create_gatt_table = agp_generic_create_gatt_table,
1644 .free_gatt_table = agp_generic_free_gatt_table,
1645 .insert_memory = agp_generic_insert_memory,
1646 .remove_memory = agp_generic_remove_memory,
1647 .alloc_by_type = agp_generic_alloc_by_type,
1648 .free_by_type = agp_generic_free_by_type,
1649 .agp_alloc_page = agp_generic_alloc_page,
1650 .agp_destroy_page = agp_generic_destroy_page,
1651 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
1654 static const struct agp_bridge_driver intel_810_driver = {
1655 .owner = THIS_MODULE,
1656 .aperture_sizes = intel_i810_sizes,
1657 .size_type = FIXED_APER_SIZE,
1658 .num_aperture_sizes = 2,
1659 .needs_scratch_page = TRUE,
1660 .configure = intel_i810_configure,
1661 .fetch_size = intel_i810_fetch_size,
1662 .cleanup = intel_i810_cleanup,
1663 .tlb_flush = intel_i810_tlbflush,
1664 .mask_memory = intel_i810_mask_memory,
1665 .masks = intel_i810_masks,
1666 .agp_enable = intel_i810_agp_enable,
1667 .cache_flush = global_cache_flush,
1668 .create_gatt_table = agp_generic_create_gatt_table,
1669 .free_gatt_table = agp_generic_free_gatt_table,
1670 .insert_memory = intel_i810_insert_entries,
1671 .remove_memory = intel_i810_remove_entries,
1672 .alloc_by_type = intel_i810_alloc_by_type,
1673 .free_by_type = intel_i810_free_by_type,
1674 .agp_alloc_page = agp_generic_alloc_page,
1675 .agp_destroy_page = agp_generic_destroy_page,
1676 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
1679 static const struct agp_bridge_driver intel_815_driver = {
1680 .owner = THIS_MODULE,
1681 .aperture_sizes = intel_815_sizes,
1682 .size_type = U8_APER_SIZE,
1683 .num_aperture_sizes = 2,
1684 .configure = intel_815_configure,
1685 .fetch_size = intel_815_fetch_size,
1686 .cleanup = intel_8xx_cleanup,
1687 .tlb_flush = intel_8xx_tlbflush,
1688 .mask_memory = agp_generic_mask_memory,
1689 .masks = intel_generic_masks,
1690 .agp_enable = agp_generic_enable,
1691 .cache_flush = global_cache_flush,
1692 .create_gatt_table = agp_generic_create_gatt_table,
1693 .free_gatt_table = agp_generic_free_gatt_table,
1694 .insert_memory = agp_generic_insert_memory,
1695 .remove_memory = agp_generic_remove_memory,
1696 .alloc_by_type = agp_generic_alloc_by_type,
1697 .free_by_type = agp_generic_free_by_type,
1698 .agp_alloc_page = agp_generic_alloc_page,
1699 .agp_destroy_page = agp_generic_destroy_page,
1700 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
1703 static const struct agp_bridge_driver intel_830_driver = {
1704 .owner = THIS_MODULE,
1705 .aperture_sizes = intel_i830_sizes,
1706 .size_type = FIXED_APER_SIZE,
1707 .num_aperture_sizes = 4,
1708 .needs_scratch_page = TRUE,
1709 .configure = intel_i830_configure,
1710 .fetch_size = intel_i830_fetch_size,
1711 .cleanup = intel_i830_cleanup,
1712 .tlb_flush = intel_i810_tlbflush,
1713 .mask_memory = intel_i810_mask_memory,
1714 .masks = intel_i810_masks,
1715 .agp_enable = intel_i810_agp_enable,
1716 .cache_flush = global_cache_flush,
1717 .create_gatt_table = intel_i830_create_gatt_table,
1718 .free_gatt_table = intel_i830_free_gatt_table,
1719 .insert_memory = intel_i830_insert_entries,
1720 .remove_memory = intel_i830_remove_entries,
1721 .alloc_by_type = intel_i830_alloc_by_type,
1722 .free_by_type = intel_i810_free_by_type,
1723 .agp_alloc_page = agp_generic_alloc_page,
1724 .agp_destroy_page = agp_generic_destroy_page,
1725 .agp_type_to_mask_type = intel_i830_type_to_mask_type,
1726 .chipset_flush = intel_i830_chipset_flush,
1729 static const struct agp_bridge_driver intel_820_driver = {
1730 .owner = THIS_MODULE,
1731 .aperture_sizes = intel_8xx_sizes,
1732 .size_type = U8_APER_SIZE,
1733 .num_aperture_sizes = 7,
1734 .configure = intel_820_configure,
1735 .fetch_size = intel_8xx_fetch_size,
1736 .cleanup = intel_820_cleanup,
1737 .tlb_flush = intel_820_tlbflush,
1738 .mask_memory = agp_generic_mask_memory,
1739 .masks = intel_generic_masks,
1740 .agp_enable = agp_generic_enable,
1741 .cache_flush = global_cache_flush,
1742 .create_gatt_table = agp_generic_create_gatt_table,
1743 .free_gatt_table = agp_generic_free_gatt_table,
1744 .insert_memory = agp_generic_insert_memory,
1745 .remove_memory = agp_generic_remove_memory,
1746 .alloc_by_type = agp_generic_alloc_by_type,
1747 .free_by_type = agp_generic_free_by_type,
1748 .agp_alloc_page = agp_generic_alloc_page,
1749 .agp_destroy_page = agp_generic_destroy_page,
1750 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
1753 static const struct agp_bridge_driver intel_830mp_driver = {
1754 .owner = THIS_MODULE,
1755 .aperture_sizes = intel_830mp_sizes,
1756 .size_type = U8_APER_SIZE,
1757 .num_aperture_sizes = 4,
1758 .configure = intel_830mp_configure,
1759 .fetch_size = intel_8xx_fetch_size,
1760 .cleanup = intel_8xx_cleanup,
1761 .tlb_flush = intel_8xx_tlbflush,
1762 .mask_memory = agp_generic_mask_memory,
1763 .masks = intel_generic_masks,
1764 .agp_enable = agp_generic_enable,
1765 .cache_flush = global_cache_flush,
1766 .create_gatt_table = agp_generic_create_gatt_table,
1767 .free_gatt_table = agp_generic_free_gatt_table,
1768 .insert_memory = agp_generic_insert_memory,
1769 .remove_memory = agp_generic_remove_memory,
1770 .alloc_by_type = agp_generic_alloc_by_type,
1771 .free_by_type = agp_generic_free_by_type,
1772 .agp_alloc_page = agp_generic_alloc_page,
1773 .agp_destroy_page = agp_generic_destroy_page,
1774 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
1777 static const struct agp_bridge_driver intel_840_driver = {
1778 .owner = THIS_MODULE,
1779 .aperture_sizes = intel_8xx_sizes,
1780 .size_type = U8_APER_SIZE,
1781 .num_aperture_sizes = 7,
1782 .configure = intel_840_configure,
1783 .fetch_size = intel_8xx_fetch_size,
1784 .cleanup = intel_8xx_cleanup,
1785 .tlb_flush = intel_8xx_tlbflush,
1786 .mask_memory = agp_generic_mask_memory,
1787 .masks = intel_generic_masks,
1788 .agp_enable = agp_generic_enable,
1789 .cache_flush = global_cache_flush,
1790 .create_gatt_table = agp_generic_create_gatt_table,
1791 .free_gatt_table = agp_generic_free_gatt_table,
1792 .insert_memory = agp_generic_insert_memory,
1793 .remove_memory = agp_generic_remove_memory,
1794 .alloc_by_type = agp_generic_alloc_by_type,
1795 .free_by_type = agp_generic_free_by_type,
1796 .agp_alloc_page = agp_generic_alloc_page,
1797 .agp_destroy_page = agp_generic_destroy_page,
1798 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
1801 static const struct agp_bridge_driver intel_845_driver = {
1802 .owner = THIS_MODULE,
1803 .aperture_sizes = intel_8xx_sizes,
1804 .size_type = U8_APER_SIZE,
1805 .num_aperture_sizes = 7,
1806 .configure = intel_845_configure,
1807 .fetch_size = intel_8xx_fetch_size,
1808 .cleanup = intel_8xx_cleanup,
1809 .tlb_flush = intel_8xx_tlbflush,
1810 .mask_memory = agp_generic_mask_memory,
1811 .masks = intel_generic_masks,
1812 .agp_enable = agp_generic_enable,
1813 .cache_flush = global_cache_flush,
1814 .create_gatt_table = agp_generic_create_gatt_table,
1815 .free_gatt_table = agp_generic_free_gatt_table,
1816 .insert_memory = agp_generic_insert_memory,
1817 .remove_memory = agp_generic_remove_memory,
1818 .alloc_by_type = agp_generic_alloc_by_type,
1819 .free_by_type = agp_generic_free_by_type,
1820 .agp_alloc_page = agp_generic_alloc_page,
1821 .agp_destroy_page = agp_generic_destroy_page,
1822 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
1823 .chipset_flush = intel_i830_chipset_flush,
1826 static const struct agp_bridge_driver intel_850_driver = {
1827 .owner = THIS_MODULE,
1828 .aperture_sizes = intel_8xx_sizes,
1829 .size_type = U8_APER_SIZE,
1830 .num_aperture_sizes = 7,
1831 .configure = intel_850_configure,
1832 .fetch_size = intel_8xx_fetch_size,
1833 .cleanup = intel_8xx_cleanup,
1834 .tlb_flush = intel_8xx_tlbflush,
1835 .mask_memory = agp_generic_mask_memory,
1836 .masks = intel_generic_masks,
1837 .agp_enable = agp_generic_enable,
1838 .cache_flush = global_cache_flush,
1839 .create_gatt_table = agp_generic_create_gatt_table,
1840 .free_gatt_table = agp_generic_free_gatt_table,
1841 .insert_memory = agp_generic_insert_memory,
1842 .remove_memory = agp_generic_remove_memory,
1843 .alloc_by_type = agp_generic_alloc_by_type,
1844 .free_by_type = agp_generic_free_by_type,
1845 .agp_alloc_page = agp_generic_alloc_page,
1846 .agp_destroy_page = agp_generic_destroy_page,
1847 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
1850 static const struct agp_bridge_driver intel_860_driver = {
1851 .owner = THIS_MODULE,
1852 .aperture_sizes = intel_8xx_sizes,
1853 .size_type = U8_APER_SIZE,
1854 .num_aperture_sizes = 7,
1855 .configure = intel_860_configure,
1856 .fetch_size = intel_8xx_fetch_size,
1857 .cleanup = intel_8xx_cleanup,
1858 .tlb_flush = intel_8xx_tlbflush,
1859 .mask_memory = agp_generic_mask_memory,
1860 .masks = intel_generic_masks,
1861 .agp_enable = agp_generic_enable,
1862 .cache_flush = global_cache_flush,
1863 .create_gatt_table = agp_generic_create_gatt_table,
1864 .free_gatt_table = agp_generic_free_gatt_table,
1865 .insert_memory = agp_generic_insert_memory,
1866 .remove_memory = agp_generic_remove_memory,
1867 .alloc_by_type = agp_generic_alloc_by_type,
1868 .free_by_type = agp_generic_free_by_type,
1869 .agp_alloc_page = agp_generic_alloc_page,
1870 .agp_destroy_page = agp_generic_destroy_page,
1871 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
1874 static const struct agp_bridge_driver intel_915_driver = {
1875 .owner = THIS_MODULE,
1876 .aperture_sizes = intel_i830_sizes,
1877 .size_type = FIXED_APER_SIZE,
1878 .num_aperture_sizes = 4,
1879 .needs_scratch_page = TRUE,
1880 .configure = intel_i915_configure,
1881 .fetch_size = intel_i9xx_fetch_size,
1882 .cleanup = intel_i915_cleanup,
1883 .tlb_flush = intel_i810_tlbflush,
1884 .mask_memory = intel_i810_mask_memory,
1885 .masks = intel_i810_masks,
1886 .agp_enable = intel_i810_agp_enable,
1887 .cache_flush = global_cache_flush,
1888 .create_gatt_table = intel_i915_create_gatt_table,
1889 .free_gatt_table = intel_i830_free_gatt_table,
1890 .insert_memory = intel_i915_insert_entries,
1891 .remove_memory = intel_i915_remove_entries,
1892 .alloc_by_type = intel_i830_alloc_by_type,
1893 .free_by_type = intel_i810_free_by_type,
1894 .agp_alloc_page = agp_generic_alloc_page,
1895 .agp_destroy_page = agp_generic_destroy_page,
1896 .agp_type_to_mask_type = intel_i830_type_to_mask_type,
1897 .chipset_flush = intel_i915_chipset_flush,
1900 static const struct agp_bridge_driver intel_i965_driver = {
1901 .owner = THIS_MODULE,
1902 .aperture_sizes = intel_i830_sizes,
1903 .size_type = FIXED_APER_SIZE,
1904 .num_aperture_sizes = 4,
1905 .needs_scratch_page = TRUE,
1906 .configure = intel_i915_configure,
1907 .fetch_size = intel_i9xx_fetch_size,
1908 .cleanup = intel_i915_cleanup,
1909 .tlb_flush = intel_i810_tlbflush,
1910 .mask_memory = intel_i965_mask_memory,
1911 .masks = intel_i810_masks,
1912 .agp_enable = intel_i810_agp_enable,
1913 .cache_flush = global_cache_flush,
1914 .create_gatt_table = intel_i965_create_gatt_table,
1915 .free_gatt_table = intel_i830_free_gatt_table,
1916 .insert_memory = intel_i915_insert_entries,
1917 .remove_memory = intel_i915_remove_entries,
1918 .alloc_by_type = intel_i830_alloc_by_type,
1919 .free_by_type = intel_i810_free_by_type,
1920 .agp_alloc_page = agp_generic_alloc_page,
1921 .agp_destroy_page = agp_generic_destroy_page,
1922 .agp_type_to_mask_type = intel_i830_type_to_mask_type,
1923 .chipset_flush = intel_i915_chipset_flush,
1926 static const struct agp_bridge_driver intel_7505_driver = {
1927 .owner = THIS_MODULE,
1928 .aperture_sizes = intel_8xx_sizes,
1929 .size_type = U8_APER_SIZE,
1930 .num_aperture_sizes = 7,
1931 .configure = intel_7505_configure,
1932 .fetch_size = intel_8xx_fetch_size,
1933 .cleanup = intel_8xx_cleanup,
1934 .tlb_flush = intel_8xx_tlbflush,
1935 .mask_memory = agp_generic_mask_memory,
1936 .masks = intel_generic_masks,
1937 .agp_enable = agp_generic_enable,
1938 .cache_flush = global_cache_flush,
1939 .create_gatt_table = agp_generic_create_gatt_table,
1940 .free_gatt_table = agp_generic_free_gatt_table,
1941 .insert_memory = agp_generic_insert_memory,
1942 .remove_memory = agp_generic_remove_memory,
1943 .alloc_by_type = agp_generic_alloc_by_type,
1944 .free_by_type = agp_generic_free_by_type,
1945 .agp_alloc_page = agp_generic_alloc_page,
1946 .agp_destroy_page = agp_generic_destroy_page,
1947 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
1950 static const struct agp_bridge_driver intel_g33_driver = {
1951 .owner = THIS_MODULE,
1952 .aperture_sizes = intel_i830_sizes,
1953 .size_type = FIXED_APER_SIZE,
1954 .num_aperture_sizes = 4,
1955 .needs_scratch_page = TRUE,
1956 .configure = intel_i915_configure,
1957 .fetch_size = intel_i9xx_fetch_size,
1958 .cleanup = intel_i915_cleanup,
1959 .tlb_flush = intel_i810_tlbflush,
1960 .mask_memory = intel_i965_mask_memory,
1961 .masks = intel_i810_masks,
1962 .agp_enable = intel_i810_agp_enable,
1963 .cache_flush = global_cache_flush,
1964 .create_gatt_table = intel_i915_create_gatt_table,
1965 .free_gatt_table = intel_i830_free_gatt_table,
1966 .insert_memory = intel_i915_insert_entries,
1967 .remove_memory = intel_i915_remove_entries,
1968 .alloc_by_type = intel_i830_alloc_by_type,
1969 .free_by_type = intel_i810_free_by_type,
1970 .agp_alloc_page = agp_generic_alloc_page,
1971 .agp_destroy_page = agp_generic_destroy_page,
1972 .agp_type_to_mask_type = intel_i830_type_to_mask_type,
1973 .chipset_flush = intel_i915_chipset_flush,
1976 static int find_gmch(u16 device)
1978 struct pci_dev *gmch_device;
1980 gmch_device = pci_get_device(PCI_VENDOR_ID_INTEL, device, NULL);
1981 if (gmch_device && PCI_FUNC(gmch_device->devfn) != 0) {
1982 gmch_device = pci_get_device(PCI_VENDOR_ID_INTEL,
1983 device, gmch_device);
1989 intel_private.pcidev = gmch_device;
1993 /* Table to describe Intel GMCH and AGP/PCIE GART drivers. At least one of
1994 * driver and gmch_driver must be non-null, and find_gmch will determine
1995 * which one should be used if a gmch_chip_id is present.
1997 static const struct intel_driver_description {
1998 unsigned int chip_id;
1999 unsigned int gmch_chip_id;
2000 unsigned int multi_gmch_chip; /* if we have more gfx chip type on this HB. */
2002 const struct agp_bridge_driver *driver;
2003 const struct agp_bridge_driver *gmch_driver;
2004 } intel_agp_chipsets[] = {
2005 { PCI_DEVICE_ID_INTEL_82443LX_0, 0, 0, "440LX", &intel_generic_driver, NULL },
2006 { PCI_DEVICE_ID_INTEL_82443BX_0, 0, 0, "440BX", &intel_generic_driver, NULL },
2007 { PCI_DEVICE_ID_INTEL_82443GX_0, 0, 0, "440GX", &intel_generic_driver, NULL },
2008 { PCI_DEVICE_ID_INTEL_82810_MC1, PCI_DEVICE_ID_INTEL_82810_IG1, 0, "i810",
2009 NULL, &intel_810_driver },
2010 { PCI_DEVICE_ID_INTEL_82810_MC3, PCI_DEVICE_ID_INTEL_82810_IG3, 0, "i810",
2011 NULL, &intel_810_driver },
2012 { PCI_DEVICE_ID_INTEL_82810E_MC, PCI_DEVICE_ID_INTEL_82810E_IG, 0, "i810",
2013 NULL, &intel_810_driver },
2014 { PCI_DEVICE_ID_INTEL_82815_MC, PCI_DEVICE_ID_INTEL_82815_CGC, 0, "i815",
2015 &intel_815_driver, &intel_810_driver },
2016 { PCI_DEVICE_ID_INTEL_82820_HB, 0, 0, "i820", &intel_820_driver, NULL },
2017 { PCI_DEVICE_ID_INTEL_82820_UP_HB, 0, 0, "i820", &intel_820_driver, NULL },
2018 { PCI_DEVICE_ID_INTEL_82830_HB, PCI_DEVICE_ID_INTEL_82830_CGC, 0, "830M",
2019 &intel_830mp_driver, &intel_830_driver },
2020 { PCI_DEVICE_ID_INTEL_82840_HB, 0, 0, "i840", &intel_840_driver, NULL },
2021 { PCI_DEVICE_ID_INTEL_82845_HB, 0, 0, "845G", &intel_845_driver, NULL },
2022 { PCI_DEVICE_ID_INTEL_82845G_HB, PCI_DEVICE_ID_INTEL_82845G_IG, 0, "830M",
2023 &intel_845_driver, &intel_830_driver },
2024 { PCI_DEVICE_ID_INTEL_82850_HB, 0, 0, "i850", &intel_850_driver, NULL },
2025 { PCI_DEVICE_ID_INTEL_82855PM_HB, 0, 0, "855PM", &intel_845_driver, NULL },
2026 { PCI_DEVICE_ID_INTEL_82855GM_HB, PCI_DEVICE_ID_INTEL_82855GM_IG, 0, "855GM",
2027 &intel_845_driver, &intel_830_driver },
2028 { PCI_DEVICE_ID_INTEL_82860_HB, 0, 0, "i860", &intel_860_driver, NULL },
2029 { PCI_DEVICE_ID_INTEL_82865_HB, PCI_DEVICE_ID_INTEL_82865_IG, 0, "865",
2030 &intel_845_driver, &intel_830_driver },
2031 { PCI_DEVICE_ID_INTEL_82875_HB, 0, 0, "i875", &intel_845_driver, NULL },
2032 { PCI_DEVICE_ID_INTEL_E7221_HB, PCI_DEVICE_ID_INTEL_E7221_IG, 0, "E7221 (i915)",
2033 NULL, &intel_915_driver },
2034 { PCI_DEVICE_ID_INTEL_82915G_HB, PCI_DEVICE_ID_INTEL_82915G_IG, 0, "915G",
2035 NULL, &intel_915_driver },
2036 { PCI_DEVICE_ID_INTEL_82915GM_HB, PCI_DEVICE_ID_INTEL_82915GM_IG, 0, "915GM",
2037 NULL, &intel_915_driver },
2038 { PCI_DEVICE_ID_INTEL_82945G_HB, PCI_DEVICE_ID_INTEL_82945G_IG, 0, "945G",
2039 NULL, &intel_915_driver },
2040 { PCI_DEVICE_ID_INTEL_82945GM_HB, PCI_DEVICE_ID_INTEL_82945GM_IG, 0, "945GM",
2041 NULL, &intel_915_driver },
2042 { PCI_DEVICE_ID_INTEL_82945GME_HB, PCI_DEVICE_ID_INTEL_82945GME_IG, 0, "945GME",
2043 NULL, &intel_915_driver },
2044 { PCI_DEVICE_ID_INTEL_82946GZ_HB, PCI_DEVICE_ID_INTEL_82946GZ_IG, 0, "946GZ",
2045 NULL, &intel_i965_driver },
2046 { PCI_DEVICE_ID_INTEL_82G35_HB, PCI_DEVICE_ID_INTEL_82G35_IG, 0, "G35",
2047 NULL, &intel_i965_driver },
2048 { PCI_DEVICE_ID_INTEL_82965Q_HB, PCI_DEVICE_ID_INTEL_82965Q_IG, 0, "965Q",
2049 NULL, &intel_i965_driver },
2050 { PCI_DEVICE_ID_INTEL_82965G_HB, PCI_DEVICE_ID_INTEL_82965G_IG, 0, "965G",
2051 NULL, &intel_i965_driver },
2052 { PCI_DEVICE_ID_INTEL_82965GM_HB, PCI_DEVICE_ID_INTEL_82965GM_IG, 0, "965GM",
2053 NULL, &intel_i965_driver },
2054 { PCI_DEVICE_ID_INTEL_82965GME_HB, PCI_DEVICE_ID_INTEL_82965GME_IG, 0, "965GME/GLE",
2055 NULL, &intel_i965_driver },
2056 { PCI_DEVICE_ID_INTEL_7505_0, 0, 0, "E7505", &intel_7505_driver, NULL },
2057 { PCI_DEVICE_ID_INTEL_7205_0, 0, 0, "E7205", &intel_7505_driver, NULL },
2058 { PCI_DEVICE_ID_INTEL_G33_HB, PCI_DEVICE_ID_INTEL_G33_IG, 0, "G33",
2059 NULL, &intel_g33_driver },
2060 { PCI_DEVICE_ID_INTEL_Q35_HB, PCI_DEVICE_ID_INTEL_Q35_IG, 0, "Q35",
2061 NULL, &intel_g33_driver },
2062 { PCI_DEVICE_ID_INTEL_Q33_HB, PCI_DEVICE_ID_INTEL_Q33_IG, 0, "Q33",
2063 NULL, &intel_g33_driver },
2064 { PCI_DEVICE_ID_INTEL_IGD_HB, PCI_DEVICE_ID_INTEL_IGD_IG, 0,
2065 "Intel Integrated Graphics Device", NULL, &intel_i965_driver },
2066 { 0, 0, 0, NULL, NULL, NULL }
2069 static int __devinit agp_intel_probe(struct pci_dev *pdev,
2070 const struct pci_device_id *ent)
2072 struct agp_bridge_data *bridge;
2077 cap_ptr = pci_find_capability(pdev, PCI_CAP_ID_AGP);
2079 bridge = agp_alloc_bridge();
2083 for (i = 0; intel_agp_chipsets[i].name != NULL; i++) {
2084 /* In case that multiple models of gfx chip may
2085 stand on same host bridge type, this can be
2086 sure we detect the right IGD. */
2087 if (pdev->device == intel_agp_chipsets[i].chip_id) {
2088 if ((intel_agp_chipsets[i].gmch_chip_id != 0) &&
2089 find_gmch(intel_agp_chipsets[i].gmch_chip_id)) {
2091 intel_agp_chipsets[i].gmch_driver;
2093 } else if (intel_agp_chipsets[i].multi_gmch_chip) {
2096 bridge->driver = intel_agp_chipsets[i].driver;
2102 if (intel_agp_chipsets[i].name == NULL) {
2104 printk(KERN_WARNING PFX "Unsupported Intel chipset"
2105 "(device id: %04x)\n", pdev->device);
2106 agp_put_bridge(bridge);
2110 if (bridge->driver == NULL) {
2111 /* bridge has no AGP and no IGD detected */
2113 printk(KERN_WARNING PFX "Failed to find bridge device "
2114 "(chip_id: %04x)\n",
2115 intel_agp_chipsets[i].gmch_chip_id);
2116 agp_put_bridge(bridge);
2121 bridge->capndx = cap_ptr;
2122 bridge->dev_private_data = &intel_private;
2124 printk(KERN_INFO PFX "Detected an Intel %s Chipset.\n",
2125 intel_agp_chipsets[i].name);
2128 * The following fixes the case where the BIOS has "forgotten" to
2129 * provide an address range for the GART.
2130 * 20030610 - hamish@zot.org
2132 r = &pdev->resource[0];
2133 if (!r->start && r->end) {
2134 if (pci_assign_resource(pdev, 0)) {
2135 printk(KERN_ERR PFX "could not assign resource 0\n");
2136 agp_put_bridge(bridge);
2142 * If the device has not been properly setup, the following will catch
2143 * the problem and should stop the system from crashing.
2144 * 20030610 - hamish@zot.org
2146 if (pci_enable_device(pdev)) {
2147 printk(KERN_ERR PFX "Unable to Enable PCI device\n");
2148 agp_put_bridge(bridge);
2152 /* Fill in the mode register */
2154 pci_read_config_dword(pdev,
2155 bridge->capndx+PCI_AGP_STATUS,
2159 pci_set_drvdata(pdev, bridge);
2160 return agp_add_bridge(bridge);
2163 static void __devexit agp_intel_remove(struct pci_dev *pdev)
2165 struct agp_bridge_data *bridge = pci_get_drvdata(pdev);
2167 agp_remove_bridge(bridge);
2169 if (intel_private.pcidev)
2170 pci_dev_put(intel_private.pcidev);
2172 agp_put_bridge(bridge);
2176 static int agp_intel_resume(struct pci_dev *pdev)
2178 struct agp_bridge_data *bridge = pci_get_drvdata(pdev);
2180 pci_restore_state(pdev);
2182 /* We should restore our graphics device's config space,
2183 * as host bridge (00:00) resumes before graphics device (02:00),
2184 * then our access to its pci space can work right.
2186 if (intel_private.pcidev)
2187 pci_restore_state(intel_private.pcidev);
2189 if (bridge->driver == &intel_generic_driver)
2191 else if (bridge->driver == &intel_850_driver)
2192 intel_850_configure();
2193 else if (bridge->driver == &intel_845_driver)
2194 intel_845_configure();
2195 else if (bridge->driver == &intel_830mp_driver)
2196 intel_830mp_configure();
2197 else if (bridge->driver == &intel_915_driver)
2198 intel_i915_configure();
2199 else if (bridge->driver == &intel_830_driver)
2200 intel_i830_configure();
2201 else if (bridge->driver == &intel_810_driver)
2202 intel_i810_configure();
2203 else if (bridge->driver == &intel_i965_driver)
2204 intel_i915_configure();
2210 static struct pci_device_id agp_intel_pci_table[] = {
2213 .class = (PCI_CLASS_BRIDGE_HOST << 8), \
2215 .vendor = PCI_VENDOR_ID_INTEL, \
2217 .subvendor = PCI_ANY_ID, \
2218 .subdevice = PCI_ANY_ID, \
2220 ID(PCI_DEVICE_ID_INTEL_82443LX_0),
2221 ID(PCI_DEVICE_ID_INTEL_82443BX_0),
2222 ID(PCI_DEVICE_ID_INTEL_82443GX_0),
2223 ID(PCI_DEVICE_ID_INTEL_82810_MC1),
2224 ID(PCI_DEVICE_ID_INTEL_82810_MC3),
2225 ID(PCI_DEVICE_ID_INTEL_82810E_MC),
2226 ID(PCI_DEVICE_ID_INTEL_82815_MC),
2227 ID(PCI_DEVICE_ID_INTEL_82820_HB),
2228 ID(PCI_DEVICE_ID_INTEL_82820_UP_HB),
2229 ID(PCI_DEVICE_ID_INTEL_82830_HB),
2230 ID(PCI_DEVICE_ID_INTEL_82840_HB),
2231 ID(PCI_DEVICE_ID_INTEL_82845_HB),
2232 ID(PCI_DEVICE_ID_INTEL_82845G_HB),
2233 ID(PCI_DEVICE_ID_INTEL_82850_HB),
2234 ID(PCI_DEVICE_ID_INTEL_82855PM_HB),
2235 ID(PCI_DEVICE_ID_INTEL_82855GM_HB),
2236 ID(PCI_DEVICE_ID_INTEL_82860_HB),
2237 ID(PCI_DEVICE_ID_INTEL_82865_HB),
2238 ID(PCI_DEVICE_ID_INTEL_82875_HB),
2239 ID(PCI_DEVICE_ID_INTEL_7505_0),
2240 ID(PCI_DEVICE_ID_INTEL_7205_0),
2241 ID(PCI_DEVICE_ID_INTEL_E7221_HB),
2242 ID(PCI_DEVICE_ID_INTEL_82915G_HB),
2243 ID(PCI_DEVICE_ID_INTEL_82915GM_HB),
2244 ID(PCI_DEVICE_ID_INTEL_82945G_HB),
2245 ID(PCI_DEVICE_ID_INTEL_82945GM_HB),
2246 ID(PCI_DEVICE_ID_INTEL_82945GME_HB),
2247 ID(PCI_DEVICE_ID_INTEL_82946GZ_HB),
2248 ID(PCI_DEVICE_ID_INTEL_82G35_HB),
2249 ID(PCI_DEVICE_ID_INTEL_82965Q_HB),
2250 ID(PCI_DEVICE_ID_INTEL_82965G_HB),
2251 ID(PCI_DEVICE_ID_INTEL_82965GM_HB),
2252 ID(PCI_DEVICE_ID_INTEL_82965GME_HB),
2253 ID(PCI_DEVICE_ID_INTEL_G33_HB),
2254 ID(PCI_DEVICE_ID_INTEL_Q35_HB),
2255 ID(PCI_DEVICE_ID_INTEL_Q33_HB),
2256 ID(PCI_DEVICE_ID_INTEL_IGD_HB),
2260 MODULE_DEVICE_TABLE(pci, agp_intel_pci_table);
2262 static struct pci_driver agp_intel_pci_driver = {
2263 .name = "agpgart-intel",
2264 .id_table = agp_intel_pci_table,
2265 .probe = agp_intel_probe,
2266 .remove = __devexit_p(agp_intel_remove),
2268 .resume = agp_intel_resume,
2272 static int __init agp_intel_init(void)
2276 return pci_register_driver(&agp_intel_pci_driver);
2279 static void __exit agp_intel_cleanup(void)
2281 pci_unregister_driver(&agp_intel_pci_driver);
2284 module_init(agp_intel_init);
2285 module_exit(agp_intel_cleanup);
2287 MODULE_AUTHOR("Dave Jones <davej@codemonkey.org.uk>");
2288 MODULE_LICENSE("GPL and additional rights");