2 * Intel GTT (Graphics Translation Table) routines
4 * Caveat: This driver implements the linux agp interface, but this is far from
5 * a agp driver! GTT support ended up here for purely historical reasons: The
6 * old userspace intel graphics drivers needed an interface to map memory into
7 * the GTT. And the drm provides a default interface for graphic devices sitting
8 * on an agp port. So it made sense to fake the GTT support as an agp port to
9 * avoid having to create a new api.
11 * With gem this does not make much sense anymore, just needlessly complicates
12 * the code. But as long as the old graphics stack is still support, it's stuck
15 * /fairy-tale-mode off
18 #include <linux/module.h>
19 #include <linux/pci.h>
20 #include <linux/init.h>
21 #include <linux/kernel.h>
22 #include <linux/pagemap.h>
23 #include <linux/agp_backend.h>
24 #include <linux/delay.h>
27 #include "intel-agp.h"
28 #include <drm/intel-gtt.h>
31 * If we have Intel graphics, we're not going to have anything other than
32 * an Intel IOMMU. So make the correct use of the PCI DMA API contingent
33 * on the Intel IOMMU support (CONFIG_INTEL_IOMMU).
34 * Only newer chipsets need to bother with this, of course.
36 #ifdef CONFIG_INTEL_IOMMU
37 #define USE_PCI_DMA_API 1
39 #define USE_PCI_DMA_API 0
42 struct intel_gtt_driver
{
44 unsigned int is_g33
: 1;
45 unsigned int is_pineview
: 1;
46 unsigned int is_ironlake
: 1;
47 unsigned int has_pgtbl_enable
: 1;
48 unsigned int dma_mask_size
: 8;
49 /* Chipset specific GTT setup */
51 /* This should undo anything done in ->setup() save the unmapping
52 * of the mmio register file, that's done in the generic code. */
53 void (*cleanup
)(void);
54 void (*write_entry
)(dma_addr_t addr
, unsigned int entry
, unsigned int flags
);
55 /* Flags is a more or less chipset specific opaque value.
56 * For chipsets that need to support old ums (non-gem) code, this
57 * needs to be identical to the various supported agp memory types! */
58 bool (*check_flags
)(unsigned int flags
);
59 void (*chipset_flush
)(void);
62 static struct _intel_private
{
63 struct intel_gtt base
;
64 const struct intel_gtt_driver
*driver
;
65 struct pci_dev
*pcidev
; /* device one */
66 struct pci_dev
*bridge_dev
;
67 u8 __iomem
*registers
;
68 phys_addr_t gtt_bus_addr
;
69 phys_addr_t gma_bus_addr
;
71 u32 __iomem
*gtt
; /* I915G */
72 bool clear_fake_agp
; /* on first access via agp, fill with scratch */
73 int num_dcache_entries
;
74 void __iomem
*i9xx_flush_page
;
76 struct resource ifp_resource
;
78 struct page
*scratch_page
;
81 #define INTEL_GTT_GEN intel_private.driver->gen
82 #define IS_G33 intel_private.driver->is_g33
83 #define IS_PINEVIEW intel_private.driver->is_pineview
84 #define IS_IRONLAKE intel_private.driver->is_ironlake
85 #define HAS_PGTBL_EN intel_private.driver->has_pgtbl_enable
87 int intel_gtt_map_memory(struct page
**pages
, unsigned int num_entries
,
88 struct scatterlist
**sg_list
, int *num_sg
)
91 struct scatterlist
*sg
;
95 return 0; /* already mapped (for e.g. resume */
97 DBG("try mapping %lu pages\n", (unsigned long)num_entries
);
99 if (sg_alloc_table(&st
, num_entries
, GFP_KERNEL
))
102 *sg_list
= sg
= st
.sgl
;
104 for (i
= 0 ; i
< num_entries
; i
++, sg
= sg_next(sg
))
105 sg_set_page(sg
, pages
[i
], PAGE_SIZE
, 0);
107 *num_sg
= pci_map_sg(intel_private
.pcidev
, *sg_list
,
108 num_entries
, PCI_DMA_BIDIRECTIONAL
);
109 if (unlikely(!*num_sg
))
118 EXPORT_SYMBOL(intel_gtt_map_memory
);
120 void intel_gtt_unmap_memory(struct scatterlist
*sg_list
, int num_sg
)
123 DBG("try unmapping %lu pages\n", (unsigned long)mem
->page_count
);
125 pci_unmap_sg(intel_private
.pcidev
, sg_list
,
126 num_sg
, PCI_DMA_BIDIRECTIONAL
);
129 st
.orig_nents
= st
.nents
= num_sg
;
133 EXPORT_SYMBOL(intel_gtt_unmap_memory
);
135 static void intel_fake_agp_enable(struct agp_bridge_data
*bridge
, u32 mode
)
140 /* Exists to support ARGB cursors */
141 static struct page
*i8xx_alloc_pages(void)
145 page
= alloc_pages(GFP_KERNEL
| GFP_DMA32
, 2);
149 if (set_pages_uc(page
, 4) < 0) {
150 set_pages_wb(page
, 4);
151 __free_pages(page
, 2);
155 atomic_inc(&agp_bridge
->current_memory_agp
);
159 static void i8xx_destroy_pages(struct page
*page
)
164 set_pages_wb(page
, 4);
166 __free_pages(page
, 2);
167 atomic_dec(&agp_bridge
->current_memory_agp
);
170 #define I810_GTT_ORDER 4
171 static int i810_setup(void)
176 /* i81x does not preallocate the gtt. It's always 64kb in size. */
177 gtt_table
= alloc_gatt_pages(I810_GTT_ORDER
);
178 if (gtt_table
== NULL
)
180 intel_private
.i81x_gtt_table
= gtt_table
;
182 pci_read_config_dword(intel_private
.pcidev
, I810_MMADDR
, ®_addr
);
183 reg_addr
&= 0xfff80000;
185 intel_private
.registers
= ioremap(reg_addr
, KB(64));
186 if (!intel_private
.registers
)
189 writel(virt_to_phys(gtt_table
) | I810_PGETBL_ENABLED
,
190 intel_private
.registers
+I810_PGETBL_CTL
);
192 intel_private
.gtt_bus_addr
= reg_addr
+ I810_PTE_BASE
;
194 if ((readl(intel_private
.registers
+I810_DRAM_CTL
)
195 & I810_DRAM_ROW_0
) == I810_DRAM_ROW_0_SDRAM
) {
196 dev_info(&intel_private
.pcidev
->dev
,
197 "detected 4MB dedicated video ram\n");
198 intel_private
.num_dcache_entries
= 1024;
204 static void i810_cleanup(void)
206 writel(0, intel_private
.registers
+I810_PGETBL_CTL
);
207 free_gatt_pages(intel_private
.i81x_gtt_table
, I810_GTT_ORDER
);
210 static int i810_insert_dcache_entries(struct agp_memory
*mem
, off_t pg_start
,
215 if ((pg_start
+ mem
->page_count
)
216 > intel_private
.num_dcache_entries
)
219 if (!mem
->is_flushed
)
220 global_cache_flush();
222 for (i
= pg_start
; i
< (pg_start
+ mem
->page_count
); i
++) {
223 dma_addr_t addr
= i
<< PAGE_SHIFT
;
224 intel_private
.driver
->write_entry(addr
,
227 readl(intel_private
.gtt
+i
-1);
233 * The i810/i830 requires a physical address to program its mouse
234 * pointer into hardware.
235 * However the Xserver still writes to it through the agp aperture.
237 static struct agp_memory
*alloc_agpphysmem_i8xx(size_t pg_count
, int type
)
239 struct agp_memory
*new;
243 case 1: page
= agp_bridge
->driver
->agp_alloc_page(agp_bridge
);
246 /* kludge to get 4 physical pages for ARGB cursor */
247 page
= i8xx_alloc_pages();
256 new = agp_create_memory(pg_count
);
260 new->pages
[0] = page
;
262 /* kludge to get 4 physical pages for ARGB cursor */
263 new->pages
[1] = new->pages
[0] + 1;
264 new->pages
[2] = new->pages
[1] + 1;
265 new->pages
[3] = new->pages
[2] + 1;
267 new->page_count
= pg_count
;
268 new->num_scratch_pages
= pg_count
;
269 new->type
= AGP_PHYS_MEMORY
;
270 new->physical
= page_to_phys(new->pages
[0]);
274 static void intel_i810_free_by_type(struct agp_memory
*curr
)
276 agp_free_key(curr
->key
);
277 if (curr
->type
== AGP_PHYS_MEMORY
) {
278 if (curr
->page_count
== 4)
279 i8xx_destroy_pages(curr
->pages
[0]);
281 agp_bridge
->driver
->agp_destroy_page(curr
->pages
[0],
282 AGP_PAGE_DESTROY_UNMAP
);
283 agp_bridge
->driver
->agp_destroy_page(curr
->pages
[0],
284 AGP_PAGE_DESTROY_FREE
);
286 agp_free_page_array(curr
);
291 static int intel_gtt_setup_scratch_page(void)
296 page
= alloc_page(GFP_KERNEL
| GFP_DMA32
| __GFP_ZERO
);
300 set_pages_uc(page
, 1);
302 if (intel_private
.base
.needs_dmar
) {
303 dma_addr
= pci_map_page(intel_private
.pcidev
, page
, 0,
304 PAGE_SIZE
, PCI_DMA_BIDIRECTIONAL
);
305 if (pci_dma_mapping_error(intel_private
.pcidev
, dma_addr
))
308 intel_private
.base
.scratch_page_dma
= dma_addr
;
310 intel_private
.base
.scratch_page_dma
= page_to_phys(page
);
312 intel_private
.scratch_page
= page
;
317 static void i810_write_entry(dma_addr_t addr
, unsigned int entry
,
320 u32 pte_flags
= I810_PTE_VALID
;
323 case AGP_DCACHE_MEMORY
:
324 pte_flags
|= I810_PTE_LOCAL
;
326 case AGP_USER_CACHED_MEMORY
:
327 pte_flags
|= I830_PTE_SYSTEM_CACHED
;
331 writel(addr
| pte_flags
, intel_private
.gtt
+ entry
);
334 static const struct aper_size_info_fixed intel_fake_agp_sizes
[] = {
342 static unsigned int intel_gtt_stolen_size(void)
347 static const int ddt
[4] = { 0, 16, 32, 64 };
348 unsigned int stolen_size
= 0;
350 if (INTEL_GTT_GEN
== 1)
351 return 0; /* no stolen mem on i81x */
353 pci_read_config_word(intel_private
.bridge_dev
,
354 I830_GMCH_CTRL
, &gmch_ctrl
);
356 if (intel_private
.bridge_dev
->device
== PCI_DEVICE_ID_INTEL_82830_HB
||
357 intel_private
.bridge_dev
->device
== PCI_DEVICE_ID_INTEL_82845G_HB
) {
358 switch (gmch_ctrl
& I830_GMCH_GMS_MASK
) {
359 case I830_GMCH_GMS_STOLEN_512
:
360 stolen_size
= KB(512);
362 case I830_GMCH_GMS_STOLEN_1024
:
365 case I830_GMCH_GMS_STOLEN_8192
:
368 case I830_GMCH_GMS_LOCAL
:
369 rdct
= readb(intel_private
.registers
+I830_RDRAM_CHANNEL_TYPE
);
370 stolen_size
= (I830_RDRAM_ND(rdct
) + 1) *
371 MB(ddt
[I830_RDRAM_DDT(rdct
)]);
378 } else if (INTEL_GTT_GEN
== 6) {
380 * SandyBridge has new memory control reg at 0x50.w
383 pci_read_config_word(intel_private
.pcidev
, SNB_GMCH_CTRL
, &snb_gmch_ctl
);
384 switch (snb_gmch_ctl
& SNB_GMCH_GMS_STOLEN_MASK
) {
385 case SNB_GMCH_GMS_STOLEN_32M
:
386 stolen_size
= MB(32);
388 case SNB_GMCH_GMS_STOLEN_64M
:
389 stolen_size
= MB(64);
391 case SNB_GMCH_GMS_STOLEN_96M
:
392 stolen_size
= MB(96);
394 case SNB_GMCH_GMS_STOLEN_128M
:
395 stolen_size
= MB(128);
397 case SNB_GMCH_GMS_STOLEN_160M
:
398 stolen_size
= MB(160);
400 case SNB_GMCH_GMS_STOLEN_192M
:
401 stolen_size
= MB(192);
403 case SNB_GMCH_GMS_STOLEN_224M
:
404 stolen_size
= MB(224);
406 case SNB_GMCH_GMS_STOLEN_256M
:
407 stolen_size
= MB(256);
409 case SNB_GMCH_GMS_STOLEN_288M
:
410 stolen_size
= MB(288);
412 case SNB_GMCH_GMS_STOLEN_320M
:
413 stolen_size
= MB(320);
415 case SNB_GMCH_GMS_STOLEN_352M
:
416 stolen_size
= MB(352);
418 case SNB_GMCH_GMS_STOLEN_384M
:
419 stolen_size
= MB(384);
421 case SNB_GMCH_GMS_STOLEN_416M
:
422 stolen_size
= MB(416);
424 case SNB_GMCH_GMS_STOLEN_448M
:
425 stolen_size
= MB(448);
427 case SNB_GMCH_GMS_STOLEN_480M
:
428 stolen_size
= MB(480);
430 case SNB_GMCH_GMS_STOLEN_512M
:
431 stolen_size
= MB(512);
435 switch (gmch_ctrl
& I855_GMCH_GMS_MASK
) {
436 case I855_GMCH_GMS_STOLEN_1M
:
439 case I855_GMCH_GMS_STOLEN_4M
:
442 case I855_GMCH_GMS_STOLEN_8M
:
445 case I855_GMCH_GMS_STOLEN_16M
:
446 stolen_size
= MB(16);
448 case I855_GMCH_GMS_STOLEN_32M
:
449 stolen_size
= MB(32);
451 case I915_GMCH_GMS_STOLEN_48M
:
452 stolen_size
= MB(48);
454 case I915_GMCH_GMS_STOLEN_64M
:
455 stolen_size
= MB(64);
457 case G33_GMCH_GMS_STOLEN_128M
:
458 stolen_size
= MB(128);
460 case G33_GMCH_GMS_STOLEN_256M
:
461 stolen_size
= MB(256);
463 case INTEL_GMCH_GMS_STOLEN_96M
:
464 stolen_size
= MB(96);
466 case INTEL_GMCH_GMS_STOLEN_160M
:
467 stolen_size
= MB(160);
469 case INTEL_GMCH_GMS_STOLEN_224M
:
470 stolen_size
= MB(224);
472 case INTEL_GMCH_GMS_STOLEN_352M
:
473 stolen_size
= MB(352);
481 if (stolen_size
> 0) {
482 dev_info(&intel_private
.bridge_dev
->dev
, "detected %dK %s memory\n",
483 stolen_size
/ KB(1), local
? "local" : "stolen");
485 dev_info(&intel_private
.bridge_dev
->dev
,
486 "no pre-allocated video memory detected\n");
493 static void i965_adjust_pgetbl_size(unsigned int size_flag
)
495 u32 pgetbl_ctl
, pgetbl_ctl2
;
497 /* ensure that ppgtt is disabled */
498 pgetbl_ctl2
= readl(intel_private
.registers
+I965_PGETBL_CTL2
);
499 pgetbl_ctl2
&= ~I810_PGETBL_ENABLED
;
500 writel(pgetbl_ctl2
, intel_private
.registers
+I965_PGETBL_CTL2
);
502 /* write the new ggtt size */
503 pgetbl_ctl
= readl(intel_private
.registers
+I810_PGETBL_CTL
);
504 pgetbl_ctl
&= ~I965_PGETBL_SIZE_MASK
;
505 pgetbl_ctl
|= size_flag
;
506 writel(pgetbl_ctl
, intel_private
.registers
+I810_PGETBL_CTL
);
509 static unsigned int i965_gtt_total_entries(void)
515 pci_read_config_word(intel_private
.bridge_dev
,
516 I830_GMCH_CTRL
, &gmch_ctl
);
518 if (INTEL_GTT_GEN
== 5) {
519 switch (gmch_ctl
& G4x_GMCH_SIZE_MASK
) {
520 case G4x_GMCH_SIZE_1M
:
521 case G4x_GMCH_SIZE_VT_1M
:
522 i965_adjust_pgetbl_size(I965_PGETBL_SIZE_1MB
);
524 case G4x_GMCH_SIZE_VT_1_5M
:
525 i965_adjust_pgetbl_size(I965_PGETBL_SIZE_1_5MB
);
527 case G4x_GMCH_SIZE_2M
:
528 case G4x_GMCH_SIZE_VT_2M
:
529 i965_adjust_pgetbl_size(I965_PGETBL_SIZE_2MB
);
534 pgetbl_ctl
= readl(intel_private
.registers
+I810_PGETBL_CTL
);
536 switch (pgetbl_ctl
& I965_PGETBL_SIZE_MASK
) {
537 case I965_PGETBL_SIZE_128KB
:
540 case I965_PGETBL_SIZE_256KB
:
543 case I965_PGETBL_SIZE_512KB
:
546 /* GTT pagetable sizes bigger than 512KB are not possible on G33! */
547 case I965_PGETBL_SIZE_1MB
:
550 case I965_PGETBL_SIZE_2MB
:
553 case I965_PGETBL_SIZE_1_5MB
:
554 size
= KB(1024 + 512);
557 dev_info(&intel_private
.pcidev
->dev
,
558 "unknown page table size, assuming 512KB\n");
565 static unsigned int intel_gtt_total_entries(void)
569 if (IS_G33
|| INTEL_GTT_GEN
== 4 || INTEL_GTT_GEN
== 5)
570 return i965_gtt_total_entries();
571 else if (INTEL_GTT_GEN
== 6) {
574 pci_read_config_word(intel_private
.pcidev
, SNB_GMCH_CTRL
, &snb_gmch_ctl
);
575 switch (snb_gmch_ctl
& SNB_GTT_SIZE_MASK
) {
577 case SNB_GTT_SIZE_0M
:
578 printk(KERN_ERR
"Bad GTT size mask: 0x%04x.\n", snb_gmch_ctl
);
581 case SNB_GTT_SIZE_1M
:
584 case SNB_GTT_SIZE_2M
:
590 /* On previous hardware, the GTT size was just what was
591 * required to map the aperture.
593 return intel_private
.base
.gtt_mappable_entries
;
597 static unsigned int intel_gtt_mappable_entries(void)
599 unsigned int aperture_size
;
601 if (INTEL_GTT_GEN
== 1) {
604 pci_read_config_dword(intel_private
.bridge_dev
,
605 I810_SMRAM_MISCC
, &smram_miscc
);
607 if ((smram_miscc
& I810_GFX_MEM_WIN_SIZE
)
608 == I810_GFX_MEM_WIN_32M
)
609 aperture_size
= MB(32);
611 aperture_size
= MB(64);
612 } else if (INTEL_GTT_GEN
== 2) {
615 pci_read_config_word(intel_private
.bridge_dev
,
616 I830_GMCH_CTRL
, &gmch_ctrl
);
618 if ((gmch_ctrl
& I830_GMCH_MEM_MASK
) == I830_GMCH_MEM_64M
)
619 aperture_size
= MB(64);
621 aperture_size
= MB(128);
623 /* 9xx supports large sizes, just look at the length */
624 aperture_size
= pci_resource_len(intel_private
.pcidev
, 2);
627 return aperture_size
>> PAGE_SHIFT
;
630 static void intel_gtt_teardown_scratch_page(void)
632 set_pages_wb(intel_private
.scratch_page
, 1);
633 pci_unmap_page(intel_private
.pcidev
, intel_private
.base
.scratch_page_dma
,
634 PAGE_SIZE
, PCI_DMA_BIDIRECTIONAL
);
635 put_page(intel_private
.scratch_page
);
636 __free_page(intel_private
.scratch_page
);
639 static void intel_gtt_cleanup(void)
641 intel_private
.driver
->cleanup();
643 iounmap(intel_private
.gtt
);
644 iounmap(intel_private
.registers
);
646 intel_gtt_teardown_scratch_page();
649 static int intel_gtt_init(void)
654 ret
= intel_private
.driver
->setup();
658 intel_private
.base
.gtt_mappable_entries
= intel_gtt_mappable_entries();
659 intel_private
.base
.gtt_total_entries
= intel_gtt_total_entries();
661 /* save the PGETBL reg for resume */
662 intel_private
.PGETBL_save
=
663 readl(intel_private
.registers
+I810_PGETBL_CTL
)
664 & ~I810_PGETBL_ENABLED
;
665 /* we only ever restore the register when enabling the PGTBL... */
667 intel_private
.PGETBL_save
|= I810_PGETBL_ENABLED
;
669 dev_info(&intel_private
.bridge_dev
->dev
,
670 "detected gtt size: %dK total, %dK mappable\n",
671 intel_private
.base
.gtt_total_entries
* 4,
672 intel_private
.base
.gtt_mappable_entries
* 4);
674 gtt_map_size
= intel_private
.base
.gtt_total_entries
* 4;
676 intel_private
.gtt
= ioremap(intel_private
.gtt_bus_addr
,
678 if (!intel_private
.gtt
) {
679 intel_private
.driver
->cleanup();
680 iounmap(intel_private
.registers
);
683 intel_private
.base
.gtt
= intel_private
.gtt
;
685 global_cache_flush(); /* FIXME: ? */
687 intel_private
.base
.stolen_size
= intel_gtt_stolen_size();
689 intel_private
.base
.needs_dmar
= USE_PCI_DMA_API
&& INTEL_GTT_GEN
> 2;
691 ret
= intel_gtt_setup_scratch_page();
700 static int intel_fake_agp_fetch_size(void)
702 int num_sizes
= ARRAY_SIZE(intel_fake_agp_sizes
);
703 unsigned int aper_size
;
706 aper_size
= (intel_private
.base
.gtt_mappable_entries
<< PAGE_SHIFT
)
709 for (i
= 0; i
< num_sizes
; i
++) {
710 if (aper_size
== intel_fake_agp_sizes
[i
].size
) {
711 agp_bridge
->current_size
=
712 (void *) (intel_fake_agp_sizes
+ i
);
720 static void i830_cleanup(void)
724 /* The chipset_flush interface needs to get data that has already been
725 * flushed out of the CPU all the way out to main memory, because the GPU
726 * doesn't snoop those buffers.
728 * The 8xx series doesn't have the same lovely interface for flushing the
729 * chipset write buffers that the later chips do. According to the 865
730 * specs, it's 64 octwords, or 1KB. So, to get those previous things in
731 * that buffer out, we just fill 1KB and clflush it out, on the assumption
732 * that it'll push whatever was in there out. It appears to work.
734 static void i830_chipset_flush(void)
736 unsigned long timeout
= jiffies
+ msecs_to_jiffies(1000);
738 /* Forcibly evict everything from the CPU write buffers.
739 * clflush appears to be insufficient.
741 wbinvd_on_all_cpus();
743 /* Now we've only seen documents for this magic bit on 855GM,
744 * we hope it exists for the other gen2 chipsets...
746 * Also works as advertised on my 845G.
748 writel(readl(intel_private
.registers
+I830_HIC
) | (1<<31),
749 intel_private
.registers
+I830_HIC
);
751 while (readl(intel_private
.registers
+I830_HIC
) & (1<<31)) {
752 if (time_after(jiffies
, timeout
))
759 static void i830_write_entry(dma_addr_t addr
, unsigned int entry
,
762 u32 pte_flags
= I810_PTE_VALID
;
764 if (flags
== AGP_USER_CACHED_MEMORY
)
765 pte_flags
|= I830_PTE_SYSTEM_CACHED
;
767 writel(addr
| pte_flags
, intel_private
.gtt
+ entry
);
770 static bool intel_enable_gtt(void)
775 if (INTEL_GTT_GEN
<= 2)
776 pci_read_config_dword(intel_private
.pcidev
, I810_GMADDR
,
779 pci_read_config_dword(intel_private
.pcidev
, I915_GMADDR
,
782 intel_private
.gma_bus_addr
= (gma_addr
& PCI_BASE_ADDRESS_MEM_MASK
);
784 if (INTEL_GTT_GEN
>= 6)
787 if (INTEL_GTT_GEN
== 2) {
790 pci_read_config_word(intel_private
.bridge_dev
,
791 I830_GMCH_CTRL
, &gmch_ctrl
);
792 gmch_ctrl
|= I830_GMCH_ENABLED
;
793 pci_write_config_word(intel_private
.bridge_dev
,
794 I830_GMCH_CTRL
, gmch_ctrl
);
796 pci_read_config_word(intel_private
.bridge_dev
,
797 I830_GMCH_CTRL
, &gmch_ctrl
);
798 if ((gmch_ctrl
& I830_GMCH_ENABLED
) == 0) {
799 dev_err(&intel_private
.pcidev
->dev
,
800 "failed to enable the GTT: GMCH_CTRL=%x\n",
806 /* On the resume path we may be adjusting the PGTBL value, so
807 * be paranoid and flush all chipset write buffers...
809 if (INTEL_GTT_GEN
>= 3)
810 writel(0, intel_private
.registers
+GFX_FLSH_CNTL
);
812 reg
= intel_private
.registers
+I810_PGETBL_CTL
;
813 writel(intel_private
.PGETBL_save
, reg
);
814 if (HAS_PGTBL_EN
&& (readl(reg
) & I810_PGETBL_ENABLED
) == 0) {
815 dev_err(&intel_private
.pcidev
->dev
,
816 "failed to enable the GTT: PGETBL=%x [expected %x]\n",
817 readl(reg
), intel_private
.PGETBL_save
);
821 if (INTEL_GTT_GEN
>= 3)
822 writel(0, intel_private
.registers
+GFX_FLSH_CNTL
);
827 static int i830_setup(void)
831 pci_read_config_dword(intel_private
.pcidev
, I810_MMADDR
, ®_addr
);
832 reg_addr
&= 0xfff80000;
834 intel_private
.registers
= ioremap(reg_addr
, KB(64));
835 if (!intel_private
.registers
)
838 intel_private
.gtt_bus_addr
= reg_addr
+ I810_PTE_BASE
;
843 static int intel_fake_agp_create_gatt_table(struct agp_bridge_data
*bridge
)
845 agp_bridge
->gatt_table_real
= NULL
;
846 agp_bridge
->gatt_table
= NULL
;
847 agp_bridge
->gatt_bus_addr
= 0;
852 static int intel_fake_agp_free_gatt_table(struct agp_bridge_data
*bridge
)
857 static int intel_fake_agp_configure(void)
859 if (!intel_enable_gtt())
862 intel_private
.clear_fake_agp
= true;
863 agp_bridge
->gart_bus_addr
= intel_private
.gma_bus_addr
;
868 static bool i830_check_flags(unsigned int flags
)
872 case AGP_PHYS_MEMORY
:
873 case AGP_USER_CACHED_MEMORY
:
874 case AGP_USER_MEMORY
:
881 void intel_gtt_insert_sg_entries(struct scatterlist
*sg_list
,
883 unsigned int pg_start
,
886 struct scatterlist
*sg
;
892 /* sg may merge pages, but we have to separate
893 * per-page addr for GTT */
894 for_each_sg(sg_list
, sg
, sg_len
, i
) {
895 len
= sg_dma_len(sg
) >> PAGE_SHIFT
;
896 for (m
= 0; m
< len
; m
++) {
897 dma_addr_t addr
= sg_dma_address(sg
) + (m
<< PAGE_SHIFT
);
898 intel_private
.driver
->write_entry(addr
,
903 readl(intel_private
.gtt
+j
-1);
905 EXPORT_SYMBOL(intel_gtt_insert_sg_entries
);
907 void intel_gtt_insert_pages(unsigned int first_entry
, unsigned int num_entries
,
908 struct page
**pages
, unsigned int flags
)
912 for (i
= 0, j
= first_entry
; i
< num_entries
; i
++, j
++) {
913 dma_addr_t addr
= page_to_phys(pages
[i
]);
914 intel_private
.driver
->write_entry(addr
,
917 readl(intel_private
.gtt
+j
-1);
919 EXPORT_SYMBOL(intel_gtt_insert_pages
);
921 static int intel_fake_agp_insert_entries(struct agp_memory
*mem
,
922 off_t pg_start
, int type
)
926 if (intel_private
.base
.do_idle_maps
)
929 if (intel_private
.clear_fake_agp
) {
930 int start
= intel_private
.base
.stolen_size
/ PAGE_SIZE
;
931 int end
= intel_private
.base
.gtt_mappable_entries
;
932 intel_gtt_clear_range(start
, end
- start
);
933 intel_private
.clear_fake_agp
= false;
936 if (INTEL_GTT_GEN
== 1 && type
== AGP_DCACHE_MEMORY
)
937 return i810_insert_dcache_entries(mem
, pg_start
, type
);
939 if (mem
->page_count
== 0)
942 if (pg_start
+ mem
->page_count
> intel_private
.base
.gtt_total_entries
)
945 if (type
!= mem
->type
)
948 if (!intel_private
.driver
->check_flags(type
))
951 if (!mem
->is_flushed
)
952 global_cache_flush();
954 if (intel_private
.base
.needs_dmar
) {
955 ret
= intel_gtt_map_memory(mem
->pages
, mem
->page_count
,
956 &mem
->sg_list
, &mem
->num_sg
);
960 intel_gtt_insert_sg_entries(mem
->sg_list
, mem
->num_sg
,
963 intel_gtt_insert_pages(pg_start
, mem
->page_count
, mem
->pages
,
969 mem
->is_flushed
= true;
973 void intel_gtt_clear_range(unsigned int first_entry
, unsigned int num_entries
)
977 for (i
= first_entry
; i
< (first_entry
+ num_entries
); i
++) {
978 intel_private
.driver
->write_entry(intel_private
.base
.scratch_page_dma
,
981 readl(intel_private
.gtt
+i
-1);
983 EXPORT_SYMBOL(intel_gtt_clear_range
);
985 static int intel_fake_agp_remove_entries(struct agp_memory
*mem
,
986 off_t pg_start
, int type
)
988 if (mem
->page_count
== 0)
991 if (intel_private
.base
.do_idle_maps
)
994 intel_gtt_clear_range(pg_start
, mem
->page_count
);
996 if (intel_private
.base
.needs_dmar
) {
997 intel_gtt_unmap_memory(mem
->sg_list
, mem
->num_sg
);
1005 static struct agp_memory
*intel_fake_agp_alloc_by_type(size_t pg_count
,
1008 struct agp_memory
*new;
1010 if (type
== AGP_DCACHE_MEMORY
&& INTEL_GTT_GEN
== 1) {
1011 if (pg_count
!= intel_private
.num_dcache_entries
)
1014 new = agp_create_memory(1);
1018 new->type
= AGP_DCACHE_MEMORY
;
1019 new->page_count
= pg_count
;
1020 new->num_scratch_pages
= 0;
1021 agp_free_page_array(new);
1024 if (type
== AGP_PHYS_MEMORY
)
1025 return alloc_agpphysmem_i8xx(pg_count
, type
);
1026 /* always return NULL for other allocation types for now */
1030 static int intel_alloc_chipset_flush_resource(void)
1033 ret
= pci_bus_alloc_resource(intel_private
.bridge_dev
->bus
, &intel_private
.ifp_resource
, PAGE_SIZE
,
1034 PAGE_SIZE
, PCIBIOS_MIN_MEM
, 0,
1035 pcibios_align_resource
, intel_private
.bridge_dev
);
1040 static void intel_i915_setup_chipset_flush(void)
1045 pci_read_config_dword(intel_private
.bridge_dev
, I915_IFPADDR
, &temp
);
1046 if (!(temp
& 0x1)) {
1047 intel_alloc_chipset_flush_resource();
1048 intel_private
.resource_valid
= 1;
1049 pci_write_config_dword(intel_private
.bridge_dev
, I915_IFPADDR
, (intel_private
.ifp_resource
.start
& 0xffffffff) | 0x1);
1053 intel_private
.resource_valid
= 1;
1054 intel_private
.ifp_resource
.start
= temp
;
1055 intel_private
.ifp_resource
.end
= temp
+ PAGE_SIZE
;
1056 ret
= request_resource(&iomem_resource
, &intel_private
.ifp_resource
);
1057 /* some BIOSes reserve this area in a pnp some don't */
1059 intel_private
.resource_valid
= 0;
1063 static void intel_i965_g33_setup_chipset_flush(void)
1065 u32 temp_hi
, temp_lo
;
1068 pci_read_config_dword(intel_private
.bridge_dev
, I965_IFPADDR
+ 4, &temp_hi
);
1069 pci_read_config_dword(intel_private
.bridge_dev
, I965_IFPADDR
, &temp_lo
);
1071 if (!(temp_lo
& 0x1)) {
1073 intel_alloc_chipset_flush_resource();
1075 intel_private
.resource_valid
= 1;
1076 pci_write_config_dword(intel_private
.bridge_dev
, I965_IFPADDR
+ 4,
1077 upper_32_bits(intel_private
.ifp_resource
.start
));
1078 pci_write_config_dword(intel_private
.bridge_dev
, I965_IFPADDR
, (intel_private
.ifp_resource
.start
& 0xffffffff) | 0x1);
1083 l64
= ((u64
)temp_hi
<< 32) | temp_lo
;
1085 intel_private
.resource_valid
= 1;
1086 intel_private
.ifp_resource
.start
= l64
;
1087 intel_private
.ifp_resource
.end
= l64
+ PAGE_SIZE
;
1088 ret
= request_resource(&iomem_resource
, &intel_private
.ifp_resource
);
1089 /* some BIOSes reserve this area in a pnp some don't */
1091 intel_private
.resource_valid
= 0;
1095 static void intel_i9xx_setup_flush(void)
1097 /* return if already configured */
1098 if (intel_private
.ifp_resource
.start
)
1101 if (INTEL_GTT_GEN
== 6)
1104 /* setup a resource for this object */
1105 intel_private
.ifp_resource
.name
= "Intel Flush Page";
1106 intel_private
.ifp_resource
.flags
= IORESOURCE_MEM
;
1108 /* Setup chipset flush for 915 */
1109 if (IS_G33
|| INTEL_GTT_GEN
>= 4) {
1110 intel_i965_g33_setup_chipset_flush();
1112 intel_i915_setup_chipset_flush();
1115 if (intel_private
.ifp_resource
.start
)
1116 intel_private
.i9xx_flush_page
= ioremap_nocache(intel_private
.ifp_resource
.start
, PAGE_SIZE
);
1117 if (!intel_private
.i9xx_flush_page
)
1118 dev_err(&intel_private
.pcidev
->dev
,
1119 "can't ioremap flush page - no chipset flushing\n");
1122 static void i9xx_cleanup(void)
1124 if (intel_private
.i9xx_flush_page
)
1125 iounmap(intel_private
.i9xx_flush_page
);
1126 if (intel_private
.resource_valid
)
1127 release_resource(&intel_private
.ifp_resource
);
1128 intel_private
.ifp_resource
.start
= 0;
1129 intel_private
.resource_valid
= 0;
1132 static void i9xx_chipset_flush(void)
1134 if (intel_private
.i9xx_flush_page
)
1135 writel(1, intel_private
.i9xx_flush_page
);
1138 static void i965_write_entry(dma_addr_t addr
,
1144 pte_flags
= I810_PTE_VALID
;
1145 if (flags
== AGP_USER_CACHED_MEMORY
)
1146 pte_flags
|= I830_PTE_SYSTEM_CACHED
;
1148 /* Shift high bits down */
1149 addr
|= (addr
>> 28) & 0xf0;
1150 writel(addr
| pte_flags
, intel_private
.gtt
+ entry
);
1153 static bool gen6_check_flags(unsigned int flags
)
1158 static void gen6_write_entry(dma_addr_t addr
, unsigned int entry
,
1161 unsigned int type_mask
= flags
& ~AGP_USER_CACHED_MEMORY_GFDT
;
1162 unsigned int gfdt
= flags
& AGP_USER_CACHED_MEMORY_GFDT
;
1165 if (type_mask
== AGP_USER_MEMORY
)
1166 pte_flags
= GEN6_PTE_UNCACHED
| I810_PTE_VALID
;
1167 else if (type_mask
== AGP_USER_CACHED_MEMORY_LLC_MLC
) {
1168 pte_flags
= GEN6_PTE_LLC_MLC
| I810_PTE_VALID
;
1170 pte_flags
|= GEN6_PTE_GFDT
;
1171 } else { /* set 'normal'/'cached' to LLC by default */
1172 pte_flags
= GEN6_PTE_LLC
| I810_PTE_VALID
;
1174 pte_flags
|= GEN6_PTE_GFDT
;
1177 /* gen6 has bit11-4 for physical addr bit39-32 */
1178 addr
|= (addr
>> 28) & 0xff0;
1179 writel(addr
| pte_flags
, intel_private
.gtt
+ entry
);
1182 static void gen6_cleanup(void)
1186 /* Certain Gen5 chipsets require require idling the GPU before
1187 * unmapping anything from the GTT when VT-d is enabled.
1189 static inline int needs_idle_maps(void)
1191 #ifdef CONFIG_INTEL_IOMMU
1192 const unsigned short gpu_devid
= intel_private
.pcidev
->device
;
1194 /* Query intel_iommu to see if we need the workaround. Presumably that
1197 if ((gpu_devid
== PCI_DEVICE_ID_INTEL_IRONLAKE_M_HB
||
1198 gpu_devid
== PCI_DEVICE_ID_INTEL_IRONLAKE_M_IG
) &&
1199 intel_iommu_gfx_mapped
)
1205 static int i9xx_setup(void)
1209 pci_read_config_dword(intel_private
.pcidev
, I915_MMADDR
, ®_addr
);
1211 reg_addr
&= 0xfff80000;
1213 intel_private
.registers
= ioremap(reg_addr
, 128 * 4096);
1214 if (!intel_private
.registers
)
1217 if (INTEL_GTT_GEN
== 3) {
1220 pci_read_config_dword(intel_private
.pcidev
,
1221 I915_PTEADDR
, >t_addr
);
1222 intel_private
.gtt_bus_addr
= gtt_addr
;
1226 switch (INTEL_GTT_GEN
) {
1233 gtt_offset
= KB(512);
1236 intel_private
.gtt_bus_addr
= reg_addr
+ gtt_offset
;
1239 if (needs_idle_maps())
1240 intel_private
.base
.do_idle_maps
= 1;
1242 intel_i9xx_setup_flush();
1247 static const struct agp_bridge_driver intel_fake_agp_driver
= {
1248 .owner
= THIS_MODULE
,
1249 .size_type
= FIXED_APER_SIZE
,
1250 .aperture_sizes
= intel_fake_agp_sizes
,
1251 .num_aperture_sizes
= ARRAY_SIZE(intel_fake_agp_sizes
),
1252 .configure
= intel_fake_agp_configure
,
1253 .fetch_size
= intel_fake_agp_fetch_size
,
1254 .cleanup
= intel_gtt_cleanup
,
1255 .agp_enable
= intel_fake_agp_enable
,
1256 .cache_flush
= global_cache_flush
,
1257 .create_gatt_table
= intel_fake_agp_create_gatt_table
,
1258 .free_gatt_table
= intel_fake_agp_free_gatt_table
,
1259 .insert_memory
= intel_fake_agp_insert_entries
,
1260 .remove_memory
= intel_fake_agp_remove_entries
,
1261 .alloc_by_type
= intel_fake_agp_alloc_by_type
,
1262 .free_by_type
= intel_i810_free_by_type
,
1263 .agp_alloc_page
= agp_generic_alloc_page
,
1264 .agp_alloc_pages
= agp_generic_alloc_pages
,
1265 .agp_destroy_page
= agp_generic_destroy_page
,
1266 .agp_destroy_pages
= agp_generic_destroy_pages
,
1269 static const struct intel_gtt_driver i81x_gtt_driver
= {
1271 .has_pgtbl_enable
= 1,
1272 .dma_mask_size
= 32,
1273 .setup
= i810_setup
,
1274 .cleanup
= i810_cleanup
,
1275 .check_flags
= i830_check_flags
,
1276 .write_entry
= i810_write_entry
,
1278 static const struct intel_gtt_driver i8xx_gtt_driver
= {
1280 .has_pgtbl_enable
= 1,
1281 .setup
= i830_setup
,
1282 .cleanup
= i830_cleanup
,
1283 .write_entry
= i830_write_entry
,
1284 .dma_mask_size
= 32,
1285 .check_flags
= i830_check_flags
,
1286 .chipset_flush
= i830_chipset_flush
,
1288 static const struct intel_gtt_driver i915_gtt_driver
= {
1290 .has_pgtbl_enable
= 1,
1291 .setup
= i9xx_setup
,
1292 .cleanup
= i9xx_cleanup
,
1293 /* i945 is the last gpu to need phys mem (for overlay and cursors). */
1294 .write_entry
= i830_write_entry
,
1295 .dma_mask_size
= 32,
1296 .check_flags
= i830_check_flags
,
1297 .chipset_flush
= i9xx_chipset_flush
,
1299 static const struct intel_gtt_driver g33_gtt_driver
= {
1302 .setup
= i9xx_setup
,
1303 .cleanup
= i9xx_cleanup
,
1304 .write_entry
= i965_write_entry
,
1305 .dma_mask_size
= 36,
1306 .check_flags
= i830_check_flags
,
1307 .chipset_flush
= i9xx_chipset_flush
,
1309 static const struct intel_gtt_driver pineview_gtt_driver
= {
1311 .is_pineview
= 1, .is_g33
= 1,
1312 .setup
= i9xx_setup
,
1313 .cleanup
= i9xx_cleanup
,
1314 .write_entry
= i965_write_entry
,
1315 .dma_mask_size
= 36,
1316 .check_flags
= i830_check_flags
,
1317 .chipset_flush
= i9xx_chipset_flush
,
1319 static const struct intel_gtt_driver i965_gtt_driver
= {
1321 .has_pgtbl_enable
= 1,
1322 .setup
= i9xx_setup
,
1323 .cleanup
= i9xx_cleanup
,
1324 .write_entry
= i965_write_entry
,
1325 .dma_mask_size
= 36,
1326 .check_flags
= i830_check_flags
,
1327 .chipset_flush
= i9xx_chipset_flush
,
1329 static const struct intel_gtt_driver g4x_gtt_driver
= {
1331 .setup
= i9xx_setup
,
1332 .cleanup
= i9xx_cleanup
,
1333 .write_entry
= i965_write_entry
,
1334 .dma_mask_size
= 36,
1335 .check_flags
= i830_check_flags
,
1336 .chipset_flush
= i9xx_chipset_flush
,
1338 static const struct intel_gtt_driver ironlake_gtt_driver
= {
1341 .setup
= i9xx_setup
,
1342 .cleanup
= i9xx_cleanup
,
1343 .write_entry
= i965_write_entry
,
1344 .dma_mask_size
= 36,
1345 .check_flags
= i830_check_flags
,
1346 .chipset_flush
= i9xx_chipset_flush
,
1348 static const struct intel_gtt_driver sandybridge_gtt_driver
= {
1350 .setup
= i9xx_setup
,
1351 .cleanup
= gen6_cleanup
,
1352 .write_entry
= gen6_write_entry
,
1353 .dma_mask_size
= 40,
1354 .check_flags
= gen6_check_flags
,
1355 .chipset_flush
= i9xx_chipset_flush
,
1358 /* Table to describe Intel GMCH and AGP/PCIE GART drivers. At least one of
1359 * driver and gmch_driver must be non-null, and find_gmch will determine
1360 * which one should be used if a gmch_chip_id is present.
1362 static const struct intel_gtt_driver_description
{
1363 unsigned int gmch_chip_id
;
1365 const struct intel_gtt_driver
*gtt_driver
;
1366 } intel_gtt_chipsets
[] = {
1367 { PCI_DEVICE_ID_INTEL_82810_IG1
, "i810",
1369 { PCI_DEVICE_ID_INTEL_82810_IG3
, "i810",
1371 { PCI_DEVICE_ID_INTEL_82810E_IG
, "i810",
1373 { PCI_DEVICE_ID_INTEL_82815_CGC
, "i815",
1375 { PCI_DEVICE_ID_INTEL_82830_CGC
, "830M",
1377 { PCI_DEVICE_ID_INTEL_82845G_IG
, "845G",
1379 { PCI_DEVICE_ID_INTEL_82854_IG
, "854",
1381 { PCI_DEVICE_ID_INTEL_82855GM_IG
, "855GM",
1383 { PCI_DEVICE_ID_INTEL_82865_IG
, "865",
1385 { PCI_DEVICE_ID_INTEL_E7221_IG
, "E7221 (i915)",
1387 { PCI_DEVICE_ID_INTEL_82915G_IG
, "915G",
1389 { PCI_DEVICE_ID_INTEL_82915GM_IG
, "915GM",
1391 { PCI_DEVICE_ID_INTEL_82945G_IG
, "945G",
1393 { PCI_DEVICE_ID_INTEL_82945GM_IG
, "945GM",
1395 { PCI_DEVICE_ID_INTEL_82945GME_IG
, "945GME",
1397 { PCI_DEVICE_ID_INTEL_82946GZ_IG
, "946GZ",
1399 { PCI_DEVICE_ID_INTEL_82G35_IG
, "G35",
1401 { PCI_DEVICE_ID_INTEL_82965Q_IG
, "965Q",
1403 { PCI_DEVICE_ID_INTEL_82965G_IG
, "965G",
1405 { PCI_DEVICE_ID_INTEL_82965GM_IG
, "965GM",
1407 { PCI_DEVICE_ID_INTEL_82965GME_IG
, "965GME/GLE",
1409 { PCI_DEVICE_ID_INTEL_G33_IG
, "G33",
1411 { PCI_DEVICE_ID_INTEL_Q35_IG
, "Q35",
1413 { PCI_DEVICE_ID_INTEL_Q33_IG
, "Q33",
1415 { PCI_DEVICE_ID_INTEL_PINEVIEW_M_IG
, "GMA3150",
1416 &pineview_gtt_driver
},
1417 { PCI_DEVICE_ID_INTEL_PINEVIEW_IG
, "GMA3150",
1418 &pineview_gtt_driver
},
1419 { PCI_DEVICE_ID_INTEL_GM45_IG
, "GM45",
1421 { PCI_DEVICE_ID_INTEL_EAGLELAKE_IG
, "Eaglelake",
1423 { PCI_DEVICE_ID_INTEL_Q45_IG
, "Q45/Q43",
1425 { PCI_DEVICE_ID_INTEL_G45_IG
, "G45/G43",
1427 { PCI_DEVICE_ID_INTEL_B43_IG
, "B43",
1429 { PCI_DEVICE_ID_INTEL_B43_1_IG
, "B43",
1431 { PCI_DEVICE_ID_INTEL_G41_IG
, "G41",
1433 { PCI_DEVICE_ID_INTEL_IRONLAKE_D_IG
,
1434 "HD Graphics", &ironlake_gtt_driver
},
1435 { PCI_DEVICE_ID_INTEL_IRONLAKE_M_IG
,
1436 "HD Graphics", &ironlake_gtt_driver
},
1437 { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_GT1_IG
,
1438 "Sandybridge", &sandybridge_gtt_driver
},
1439 { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_GT2_IG
,
1440 "Sandybridge", &sandybridge_gtt_driver
},
1441 { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_GT2_PLUS_IG
,
1442 "Sandybridge", &sandybridge_gtt_driver
},
1443 { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_M_GT1_IG
,
1444 "Sandybridge", &sandybridge_gtt_driver
},
1445 { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_M_GT2_IG
,
1446 "Sandybridge", &sandybridge_gtt_driver
},
1447 { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_M_GT2_PLUS_IG
,
1448 "Sandybridge", &sandybridge_gtt_driver
},
1449 { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_S_IG
,
1450 "Sandybridge", &sandybridge_gtt_driver
},
1451 { PCI_DEVICE_ID_INTEL_IVYBRIDGE_GT1_IG
,
1452 "Ivybridge", &sandybridge_gtt_driver
},
1453 { PCI_DEVICE_ID_INTEL_IVYBRIDGE_GT2_IG
,
1454 "Ivybridge", &sandybridge_gtt_driver
},
1455 { PCI_DEVICE_ID_INTEL_IVYBRIDGE_M_GT1_IG
,
1456 "Ivybridge", &sandybridge_gtt_driver
},
1457 { PCI_DEVICE_ID_INTEL_IVYBRIDGE_M_GT2_IG
,
1458 "Ivybridge", &sandybridge_gtt_driver
},
1459 { PCI_DEVICE_ID_INTEL_IVYBRIDGE_S_GT1_IG
,
1460 "Ivybridge", &sandybridge_gtt_driver
},
1461 { PCI_DEVICE_ID_INTEL_IVYBRIDGE_S_GT2_IG
,
1462 "Ivybridge", &sandybridge_gtt_driver
},
1466 static int find_gmch(u16 device
)
1468 struct pci_dev
*gmch_device
;
1470 gmch_device
= pci_get_device(PCI_VENDOR_ID_INTEL
, device
, NULL
);
1471 if (gmch_device
&& PCI_FUNC(gmch_device
->devfn
) != 0) {
1472 gmch_device
= pci_get_device(PCI_VENDOR_ID_INTEL
,
1473 device
, gmch_device
);
1479 intel_private
.pcidev
= gmch_device
;
1483 int intel_gmch_probe(struct pci_dev
*pdev
,
1484 struct agp_bridge_data
*bridge
)
1487 intel_private
.driver
= NULL
;
1489 for (i
= 0; intel_gtt_chipsets
[i
].name
!= NULL
; i
++) {
1490 if (find_gmch(intel_gtt_chipsets
[i
].gmch_chip_id
)) {
1491 intel_private
.driver
=
1492 intel_gtt_chipsets
[i
].gtt_driver
;
1497 if (!intel_private
.driver
)
1500 bridge
->driver
= &intel_fake_agp_driver
;
1501 bridge
->dev_private_data
= &intel_private
;
1504 intel_private
.bridge_dev
= pci_dev_get(pdev
);
1506 dev_info(&pdev
->dev
, "Intel %s Chipset\n", intel_gtt_chipsets
[i
].name
);
1508 mask
= intel_private
.driver
->dma_mask_size
;
1509 if (pci_set_dma_mask(intel_private
.pcidev
, DMA_BIT_MASK(mask
)))
1510 dev_err(&intel_private
.pcidev
->dev
,
1511 "set gfx device dma mask %d-bit failed!\n", mask
);
1513 pci_set_consistent_dma_mask(intel_private
.pcidev
,
1514 DMA_BIT_MASK(mask
));
1516 /*if (bridge->driver == &intel_810_driver)
1519 if (intel_gtt_init() != 0)
1524 EXPORT_SYMBOL(intel_gmch_probe
);
1526 const struct intel_gtt
*intel_gtt_get(void)
1528 return &intel_private
.base
;
1530 EXPORT_SYMBOL(intel_gtt_get
);
1532 void intel_gtt_chipset_flush(void)
1534 if (intel_private
.driver
->chipset_flush
)
1535 intel_private
.driver
->chipset_flush();
1537 EXPORT_SYMBOL(intel_gtt_chipset_flush
);
1539 void intel_gmch_remove(struct pci_dev
*pdev
)
1541 if (intel_private
.pcidev
)
1542 pci_dev_put(intel_private
.pcidev
);
1543 if (intel_private
.bridge_dev
)
1544 pci_dev_put(intel_private
.bridge_dev
);
1546 EXPORT_SYMBOL(intel_gmch_remove
);
1548 MODULE_AUTHOR("Dave Jones <davej@redhat.com>");
1549 MODULE_LICENSE("GPL and additional rights");