356f73e0d17e9b43ae513bbb7cfb8b1c56a989b9
[firefly-linux-kernel-4.4.55.git] / drivers / char / agp / intel-gtt.c
1 /*
2  * Intel GTT (Graphics Translation Table) routines
3  *
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.
10  *
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
13  * here.
14  *
15  * /fairy-tale-mode off
16  */
17
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 <asm/smp.h>
25 #include "agp.h"
26 #include "intel-agp.h"
27 #include <drm/intel-gtt.h>
28
29 /*
30  * If we have Intel graphics, we're not going to have anything other than
31  * an Intel IOMMU. So make the correct use of the PCI DMA API contingent
32  * on the Intel IOMMU support (CONFIG_DMAR).
33  * Only newer chipsets need to bother with this, of course.
34  */
35 #ifdef CONFIG_DMAR
36 #define USE_PCI_DMA_API 1
37 #else
38 #define USE_PCI_DMA_API 0
39 #endif
40
41 struct intel_gtt_driver {
42         unsigned int gen : 8;
43         unsigned int is_g33 : 1;
44         unsigned int is_pineview : 1;
45         unsigned int is_ironlake : 1;
46         unsigned int has_pgtbl_enable : 1;
47         unsigned int dma_mask_size : 8;
48         /* Chipset specific GTT setup */
49         int (*setup)(void);
50         /* This should undo anything done in ->setup() save the unmapping
51          * of the mmio register file, that's done in the generic code. */
52         void (*cleanup)(void);
53         void (*write_entry)(dma_addr_t addr, unsigned int entry, unsigned int flags);
54         /* Flags is a more or less chipset specific opaque value.
55          * For chipsets that need to support old ums (non-gem) code, this
56          * needs to be identical to the various supported agp memory types! */
57         bool (*check_flags)(unsigned int flags);
58         void (*chipset_flush)(void);
59 };
60
61 static struct _intel_private {
62         struct intel_gtt base;
63         const struct intel_gtt_driver *driver;
64         struct pci_dev *pcidev; /* device one */
65         struct pci_dev *bridge_dev;
66         u8 __iomem *registers;
67         phys_addr_t gtt_bus_addr;
68         phys_addr_t gma_bus_addr;
69         u32 PGETBL_save;
70         u32 __iomem *gtt;               /* I915G */
71         int num_dcache_entries;
72         union {
73                 void __iomem *i9xx_flush_page;
74                 void *i8xx_flush_page;
75         };
76         char *i81x_gtt_table;
77         struct page *i8xx_page;
78         struct resource ifp_resource;
79         int resource_valid;
80         struct page *scratch_page;
81         dma_addr_t scratch_page_dma;
82 } intel_private;
83
84 #define INTEL_GTT_GEN   intel_private.driver->gen
85 #define IS_G33          intel_private.driver->is_g33
86 #define IS_PINEVIEW     intel_private.driver->is_pineview
87 #define IS_IRONLAKE     intel_private.driver->is_ironlake
88 #define HAS_PGTBL_EN    intel_private.driver->has_pgtbl_enable
89
90 int intel_gtt_map_memory(struct page **pages, unsigned int num_entries,
91                          struct scatterlist **sg_list, int *num_sg)
92 {
93         struct sg_table st;
94         struct scatterlist *sg;
95         int i;
96
97         if (*sg_list)
98                 return 0; /* already mapped (for e.g. resume */
99
100         DBG("try mapping %lu pages\n", (unsigned long)num_entries);
101
102         if (sg_alloc_table(&st, num_entries, GFP_KERNEL))
103                 goto err;
104
105         *sg_list = sg = st.sgl;
106
107         for (i = 0 ; i < num_entries; i++, sg = sg_next(sg))
108                 sg_set_page(sg, pages[i], PAGE_SIZE, 0);
109
110         *num_sg = pci_map_sg(intel_private.pcidev, *sg_list,
111                                  num_entries, PCI_DMA_BIDIRECTIONAL);
112         if (unlikely(!*num_sg))
113                 goto err;
114
115         return 0;
116
117 err:
118         sg_free_table(&st);
119         return -ENOMEM;
120 }
121 EXPORT_SYMBOL(intel_gtt_map_memory);
122
123 void intel_gtt_unmap_memory(struct scatterlist *sg_list, int num_sg)
124 {
125         struct sg_table st;
126         DBG("try unmapping %lu pages\n", (unsigned long)mem->page_count);
127
128         pci_unmap_sg(intel_private.pcidev, sg_list,
129                      num_sg, PCI_DMA_BIDIRECTIONAL);
130
131         st.sgl = sg_list;
132         st.orig_nents = st.nents = num_sg;
133
134         sg_free_table(&st);
135 }
136 EXPORT_SYMBOL(intel_gtt_unmap_memory);
137
138 static void intel_fake_agp_enable(struct agp_bridge_data *bridge, u32 mode)
139 {
140         return;
141 }
142
143 /* Exists to support ARGB cursors */
144 static struct page *i8xx_alloc_pages(void)
145 {
146         struct page *page;
147
148         page = alloc_pages(GFP_KERNEL | GFP_DMA32, 2);
149         if (page == NULL)
150                 return NULL;
151
152         if (set_pages_uc(page, 4) < 0) {
153                 set_pages_wb(page, 4);
154                 __free_pages(page, 2);
155                 return NULL;
156         }
157         get_page(page);
158         atomic_inc(&agp_bridge->current_memory_agp);
159         return page;
160 }
161
162 static void i8xx_destroy_pages(struct page *page)
163 {
164         if (page == NULL)
165                 return;
166
167         set_pages_wb(page, 4);
168         put_page(page);
169         __free_pages(page, 2);
170         atomic_dec(&agp_bridge->current_memory_agp);
171 }
172
173 #define I810_GTT_ORDER 4
174 static int i810_setup(void)
175 {
176         u32 reg_addr;
177         char *gtt_table;
178
179         /* i81x does not preallocate the gtt. It's always 64kb in size. */
180         gtt_table = alloc_gatt_pages(I810_GTT_ORDER);
181         if (gtt_table == NULL)
182                 return -ENOMEM;
183         intel_private.i81x_gtt_table = gtt_table;
184
185         pci_read_config_dword(intel_private.pcidev, I810_MMADDR, &reg_addr);
186         reg_addr &= 0xfff80000;
187
188         intel_private.registers = ioremap(reg_addr, KB(64));
189         if (!intel_private.registers)
190                 return -ENOMEM;
191
192         writel(virt_to_phys(gtt_table) | I810_PGETBL_ENABLED,
193                intel_private.registers+I810_PGETBL_CTL);
194
195         intel_private.gtt_bus_addr = reg_addr + I810_PTE_BASE;
196
197         if ((readl(intel_private.registers+I810_DRAM_CTL)
198                 & I810_DRAM_ROW_0) == I810_DRAM_ROW_0_SDRAM) {
199                 dev_info(&intel_private.pcidev->dev,
200                          "detected 4MB dedicated video ram\n");
201                 intel_private.num_dcache_entries = 1024;
202         }
203
204         return 0;
205 }
206
207 static void i810_cleanup(void)
208 {
209         writel(0, intel_private.registers+I810_PGETBL_CTL);
210         free_gatt_pages(intel_private.i81x_gtt_table, I810_GTT_ORDER);
211 }
212
213 static int i810_insert_dcache_entries(struct agp_memory *mem, off_t pg_start,
214                                       int type)
215 {
216         int i;
217
218         if ((pg_start + mem->page_count)
219                         > intel_private.num_dcache_entries)
220                 return -EINVAL;
221
222         if (!mem->is_flushed)
223                 global_cache_flush();
224
225         for (i = pg_start; i < (pg_start + mem->page_count); i++) {
226                 dma_addr_t addr = i << PAGE_SHIFT;
227                 intel_private.driver->write_entry(addr,
228                                                   i, type);
229         }
230         readl(intel_private.gtt+i-1);
231
232         return 0;
233 }
234
235 /*
236  * The i810/i830 requires a physical address to program its mouse
237  * pointer into hardware.
238  * However the Xserver still writes to it through the agp aperture.
239  */
240 static struct agp_memory *alloc_agpphysmem_i8xx(size_t pg_count, int type)
241 {
242         struct agp_memory *new;
243         struct page *page;
244
245         switch (pg_count) {
246         case 1: page = agp_bridge->driver->agp_alloc_page(agp_bridge);
247                 break;
248         case 4:
249                 /* kludge to get 4 physical pages for ARGB cursor */
250                 page = i8xx_alloc_pages();
251                 break;
252         default:
253                 return NULL;
254         }
255
256         if (page == NULL)
257                 return NULL;
258
259         new = agp_create_memory(pg_count);
260         if (new == NULL)
261                 return NULL;
262
263         new->pages[0] = page;
264         if (pg_count == 4) {
265                 /* kludge to get 4 physical pages for ARGB cursor */
266                 new->pages[1] = new->pages[0] + 1;
267                 new->pages[2] = new->pages[1] + 1;
268                 new->pages[3] = new->pages[2] + 1;
269         }
270         new->page_count = pg_count;
271         new->num_scratch_pages = pg_count;
272         new->type = AGP_PHYS_MEMORY;
273         new->physical = page_to_phys(new->pages[0]);
274         return new;
275 }
276
277 static void intel_i810_free_by_type(struct agp_memory *curr)
278 {
279         agp_free_key(curr->key);
280         if (curr->type == AGP_PHYS_MEMORY) {
281                 if (curr->page_count == 4)
282                         i8xx_destroy_pages(curr->pages[0]);
283                 else {
284                         agp_bridge->driver->agp_destroy_page(curr->pages[0],
285                                                              AGP_PAGE_DESTROY_UNMAP);
286                         agp_bridge->driver->agp_destroy_page(curr->pages[0],
287                                                              AGP_PAGE_DESTROY_FREE);
288                 }
289                 agp_free_page_array(curr);
290         }
291         kfree(curr);
292 }
293
294 static int intel_gtt_setup_scratch_page(void)
295 {
296         struct page *page;
297         dma_addr_t dma_addr;
298
299         page = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO);
300         if (page == NULL)
301                 return -ENOMEM;
302         get_page(page);
303         set_pages_uc(page, 1);
304
305         if (intel_private.base.needs_dmar) {
306                 dma_addr = pci_map_page(intel_private.pcidev, page, 0,
307                                     PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
308                 if (pci_dma_mapping_error(intel_private.pcidev, dma_addr))
309                         return -EINVAL;
310
311                 intel_private.scratch_page_dma = dma_addr;
312         } else
313                 intel_private.scratch_page_dma = page_to_phys(page);
314
315         intel_private.scratch_page = page;
316
317         return 0;
318 }
319
320 static void i810_write_entry(dma_addr_t addr, unsigned int entry,
321                              unsigned int flags)
322 {
323         u32 pte_flags = I810_PTE_VALID;
324
325         switch (flags) {
326         case AGP_DCACHE_MEMORY:
327                 pte_flags |= I810_PTE_LOCAL;
328                 break;
329         case AGP_USER_CACHED_MEMORY:
330                 pte_flags |= I830_PTE_SYSTEM_CACHED;
331                 break;
332         }
333
334         writel(addr | pte_flags, intel_private.gtt + entry);
335 }
336
337 static const struct aper_size_info_fixed intel_fake_agp_sizes[] = {
338         {32, 8192, 3},
339         {64, 16384, 4},
340         {128, 32768, 5},
341         {256, 65536, 6},
342         {512, 131072, 7},
343 };
344
345 static unsigned int intel_gtt_stolen_size(void)
346 {
347         u16 gmch_ctrl;
348         u8 rdct;
349         int local = 0;
350         static const int ddt[4] = { 0, 16, 32, 64 };
351         unsigned int stolen_size = 0;
352
353         if (INTEL_GTT_GEN == 1)
354                 return 0; /* no stolen mem on i81x */
355
356         pci_read_config_word(intel_private.bridge_dev,
357                              I830_GMCH_CTRL, &gmch_ctrl);
358
359         if (intel_private.bridge_dev->device == PCI_DEVICE_ID_INTEL_82830_HB ||
360             intel_private.bridge_dev->device == PCI_DEVICE_ID_INTEL_82845G_HB) {
361                 switch (gmch_ctrl & I830_GMCH_GMS_MASK) {
362                 case I830_GMCH_GMS_STOLEN_512:
363                         stolen_size = KB(512);
364                         break;
365                 case I830_GMCH_GMS_STOLEN_1024:
366                         stolen_size = MB(1);
367                         break;
368                 case I830_GMCH_GMS_STOLEN_8192:
369                         stolen_size = MB(8);
370                         break;
371                 case I830_GMCH_GMS_LOCAL:
372                         rdct = readb(intel_private.registers+I830_RDRAM_CHANNEL_TYPE);
373                         stolen_size = (I830_RDRAM_ND(rdct) + 1) *
374                                         MB(ddt[I830_RDRAM_DDT(rdct)]);
375                         local = 1;
376                         break;
377                 default:
378                         stolen_size = 0;
379                         break;
380                 }
381         } else if (INTEL_GTT_GEN == 6) {
382                 /*
383                  * SandyBridge has new memory control reg at 0x50.w
384                  */
385                 u16 snb_gmch_ctl;
386                 pci_read_config_word(intel_private.pcidev, SNB_GMCH_CTRL, &snb_gmch_ctl);
387                 switch (snb_gmch_ctl & SNB_GMCH_GMS_STOLEN_MASK) {
388                 case SNB_GMCH_GMS_STOLEN_32M:
389                         stolen_size = MB(32);
390                         break;
391                 case SNB_GMCH_GMS_STOLEN_64M:
392                         stolen_size = MB(64);
393                         break;
394                 case SNB_GMCH_GMS_STOLEN_96M:
395                         stolen_size = MB(96);
396                         break;
397                 case SNB_GMCH_GMS_STOLEN_128M:
398                         stolen_size = MB(128);
399                         break;
400                 case SNB_GMCH_GMS_STOLEN_160M:
401                         stolen_size = MB(160);
402                         break;
403                 case SNB_GMCH_GMS_STOLEN_192M:
404                         stolen_size = MB(192);
405                         break;
406                 case SNB_GMCH_GMS_STOLEN_224M:
407                         stolen_size = MB(224);
408                         break;
409                 case SNB_GMCH_GMS_STOLEN_256M:
410                         stolen_size = MB(256);
411                         break;
412                 case SNB_GMCH_GMS_STOLEN_288M:
413                         stolen_size = MB(288);
414                         break;
415                 case SNB_GMCH_GMS_STOLEN_320M:
416                         stolen_size = MB(320);
417                         break;
418                 case SNB_GMCH_GMS_STOLEN_352M:
419                         stolen_size = MB(352);
420                         break;
421                 case SNB_GMCH_GMS_STOLEN_384M:
422                         stolen_size = MB(384);
423                         break;
424                 case SNB_GMCH_GMS_STOLEN_416M:
425                         stolen_size = MB(416);
426                         break;
427                 case SNB_GMCH_GMS_STOLEN_448M:
428                         stolen_size = MB(448);
429                         break;
430                 case SNB_GMCH_GMS_STOLEN_480M:
431                         stolen_size = MB(480);
432                         break;
433                 case SNB_GMCH_GMS_STOLEN_512M:
434                         stolen_size = MB(512);
435                         break;
436                 }
437         } else {
438                 switch (gmch_ctrl & I855_GMCH_GMS_MASK) {
439                 case I855_GMCH_GMS_STOLEN_1M:
440                         stolen_size = MB(1);
441                         break;
442                 case I855_GMCH_GMS_STOLEN_4M:
443                         stolen_size = MB(4);
444                         break;
445                 case I855_GMCH_GMS_STOLEN_8M:
446                         stolen_size = MB(8);
447                         break;
448                 case I855_GMCH_GMS_STOLEN_16M:
449                         stolen_size = MB(16);
450                         break;
451                 case I855_GMCH_GMS_STOLEN_32M:
452                         stolen_size = MB(32);
453                         break;
454                 case I915_GMCH_GMS_STOLEN_48M:
455                         stolen_size = MB(48);
456                         break;
457                 case I915_GMCH_GMS_STOLEN_64M:
458                         stolen_size = MB(64);
459                         break;
460                 case G33_GMCH_GMS_STOLEN_128M:
461                         stolen_size = MB(128);
462                         break;
463                 case G33_GMCH_GMS_STOLEN_256M:
464                         stolen_size = MB(256);
465                         break;
466                 case INTEL_GMCH_GMS_STOLEN_96M:
467                         stolen_size = MB(96);
468                         break;
469                 case INTEL_GMCH_GMS_STOLEN_160M:
470                         stolen_size = MB(160);
471                         break;
472                 case INTEL_GMCH_GMS_STOLEN_224M:
473                         stolen_size = MB(224);
474                         break;
475                 case INTEL_GMCH_GMS_STOLEN_352M:
476                         stolen_size = MB(352);
477                         break;
478                 default:
479                         stolen_size = 0;
480                         break;
481                 }
482         }
483
484         if (stolen_size > 0) {
485                 dev_info(&intel_private.bridge_dev->dev, "detected %dK %s memory\n",
486                        stolen_size / KB(1), local ? "local" : "stolen");
487         } else {
488                 dev_info(&intel_private.bridge_dev->dev,
489                        "no pre-allocated video memory detected\n");
490                 stolen_size = 0;
491         }
492
493         return stolen_size;
494 }
495
496 static void i965_adjust_pgetbl_size(unsigned int size_flag)
497 {
498         u32 pgetbl_ctl, pgetbl_ctl2;
499
500         /* ensure that ppgtt is disabled */
501         pgetbl_ctl2 = readl(intel_private.registers+I965_PGETBL_CTL2);
502         pgetbl_ctl2 &= ~I810_PGETBL_ENABLED;
503         writel(pgetbl_ctl2, intel_private.registers+I965_PGETBL_CTL2);
504
505         /* write the new ggtt size */
506         pgetbl_ctl = readl(intel_private.registers+I810_PGETBL_CTL);
507         pgetbl_ctl &= ~I965_PGETBL_SIZE_MASK;
508         pgetbl_ctl |= size_flag;
509         writel(pgetbl_ctl, intel_private.registers+I810_PGETBL_CTL);
510 }
511
512 static unsigned int i965_gtt_total_entries(void)
513 {
514         int size;
515         u32 pgetbl_ctl;
516         u16 gmch_ctl;
517
518         pci_read_config_word(intel_private.bridge_dev,
519                              I830_GMCH_CTRL, &gmch_ctl);
520
521         if (INTEL_GTT_GEN == 5) {
522                 switch (gmch_ctl & G4x_GMCH_SIZE_MASK) {
523                 case G4x_GMCH_SIZE_1M:
524                 case G4x_GMCH_SIZE_VT_1M:
525                         i965_adjust_pgetbl_size(I965_PGETBL_SIZE_1MB);
526                         break;
527                 case G4x_GMCH_SIZE_VT_1_5M:
528                         i965_adjust_pgetbl_size(I965_PGETBL_SIZE_1_5MB);
529                         break;
530                 case G4x_GMCH_SIZE_2M:
531                 case G4x_GMCH_SIZE_VT_2M:
532                         i965_adjust_pgetbl_size(I965_PGETBL_SIZE_2MB);
533                         break;
534                 }
535         }
536
537         pgetbl_ctl = readl(intel_private.registers+I810_PGETBL_CTL);
538
539         switch (pgetbl_ctl & I965_PGETBL_SIZE_MASK) {
540         case I965_PGETBL_SIZE_128KB:
541                 size = KB(128);
542                 break;
543         case I965_PGETBL_SIZE_256KB:
544                 size = KB(256);
545                 break;
546         case I965_PGETBL_SIZE_512KB:
547                 size = KB(512);
548                 break;
549         /* GTT pagetable sizes bigger than 512KB are not possible on G33! */
550         case I965_PGETBL_SIZE_1MB:
551                 size = KB(1024);
552                 break;
553         case I965_PGETBL_SIZE_2MB:
554                 size = KB(2048);
555                 break;
556         case I965_PGETBL_SIZE_1_5MB:
557                 size = KB(1024 + 512);
558                 break;
559         default:
560                 dev_info(&intel_private.pcidev->dev,
561                          "unknown page table size, assuming 512KB\n");
562                 size = KB(512);
563         }
564
565         return size/4;
566 }
567
568 static unsigned int intel_gtt_total_entries(void)
569 {
570         int size;
571
572         if (IS_G33 || INTEL_GTT_GEN == 4 || INTEL_GTT_GEN == 5)
573                 return i965_gtt_total_entries();
574         else if (INTEL_GTT_GEN == 6) {
575                 u16 snb_gmch_ctl;
576
577                 pci_read_config_word(intel_private.pcidev, SNB_GMCH_CTRL, &snb_gmch_ctl);
578                 switch (snb_gmch_ctl & SNB_GTT_SIZE_MASK) {
579                 default:
580                 case SNB_GTT_SIZE_0M:
581                         printk(KERN_ERR "Bad GTT size mask: 0x%04x.\n", snb_gmch_ctl);
582                         size = MB(0);
583                         break;
584                 case SNB_GTT_SIZE_1M:
585                         size = MB(1);
586                         break;
587                 case SNB_GTT_SIZE_2M:
588                         size = MB(2);
589                         break;
590                 }
591                 return size/4;
592         } else {
593                 /* On previous hardware, the GTT size was just what was
594                  * required to map the aperture.
595                  */
596                 return intel_private.base.gtt_mappable_entries;
597         }
598 }
599
600 static unsigned int intel_gtt_mappable_entries(void)
601 {
602         unsigned int aperture_size;
603
604         if (INTEL_GTT_GEN == 1) {
605                 u32 smram_miscc;
606
607                 pci_read_config_dword(intel_private.bridge_dev,
608                                       I810_SMRAM_MISCC, &smram_miscc);
609
610                 if ((smram_miscc & I810_GFX_MEM_WIN_SIZE)
611                                 == I810_GFX_MEM_WIN_32M)
612                         aperture_size = MB(32);
613                 else
614                         aperture_size = MB(64);
615         } else if (INTEL_GTT_GEN == 2) {
616                 u16 gmch_ctrl;
617
618                 pci_read_config_word(intel_private.bridge_dev,
619                                      I830_GMCH_CTRL, &gmch_ctrl);
620
621                 if ((gmch_ctrl & I830_GMCH_MEM_MASK) == I830_GMCH_MEM_64M)
622                         aperture_size = MB(64);
623                 else
624                         aperture_size = MB(128);
625         } else {
626                 /* 9xx supports large sizes, just look at the length */
627                 aperture_size = pci_resource_len(intel_private.pcidev, 2);
628         }
629
630         return aperture_size >> PAGE_SHIFT;
631 }
632
633 static void intel_gtt_teardown_scratch_page(void)
634 {
635         set_pages_wb(intel_private.scratch_page, 1);
636         pci_unmap_page(intel_private.pcidev, intel_private.scratch_page_dma,
637                        PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
638         put_page(intel_private.scratch_page);
639         __free_page(intel_private.scratch_page);
640 }
641
642 static void intel_gtt_cleanup(void)
643 {
644         intel_private.driver->cleanup();
645
646         iounmap(intel_private.gtt);
647         iounmap(intel_private.registers);
648
649         intel_gtt_teardown_scratch_page();
650 }
651
652 static int intel_gtt_init(void)
653 {
654         u32 gtt_map_size;
655         int ret;
656
657         ret = intel_private.driver->setup();
658         if (ret != 0)
659                 return ret;
660
661         intel_private.base.gtt_mappable_entries = intel_gtt_mappable_entries();
662         intel_private.base.gtt_total_entries = intel_gtt_total_entries();
663
664         /* save the PGETBL reg for resume */
665         intel_private.PGETBL_save =
666                 readl(intel_private.registers+I810_PGETBL_CTL)
667                         & ~I810_PGETBL_ENABLED;
668         /* we only ever restore the register when enabling the PGTBL... */
669         if (HAS_PGTBL_EN)
670                 intel_private.PGETBL_save |= I810_PGETBL_ENABLED;
671
672         dev_info(&intel_private.bridge_dev->dev,
673                         "detected gtt size: %dK total, %dK mappable\n",
674                         intel_private.base.gtt_total_entries * 4,
675                         intel_private.base.gtt_mappable_entries * 4);
676
677         gtt_map_size = intel_private.base.gtt_total_entries * 4;
678
679         intel_private.gtt = ioremap(intel_private.gtt_bus_addr,
680                                     gtt_map_size);
681         if (!intel_private.gtt) {
682                 intel_private.driver->cleanup();
683                 iounmap(intel_private.registers);
684                 return -ENOMEM;
685         }
686
687         global_cache_flush();   /* FIXME: ? */
688
689         intel_private.base.stolen_size = intel_gtt_stolen_size();
690
691         ret = intel_gtt_setup_scratch_page();
692         if (ret != 0) {
693                 intel_gtt_cleanup();
694                 return ret;
695         }
696
697         intel_private.base.needs_dmar = USE_PCI_DMA_API && INTEL_GTT_GEN > 2;
698
699         return 0;
700 }
701
702 static int intel_fake_agp_fetch_size(void)
703 {
704         int num_sizes = ARRAY_SIZE(intel_fake_agp_sizes);
705         unsigned int aper_size;
706         int i;
707
708         aper_size = (intel_private.base.gtt_mappable_entries << PAGE_SHIFT)
709                     / MB(1);
710
711         for (i = 0; i < num_sizes; i++) {
712                 if (aper_size == intel_fake_agp_sizes[i].size) {
713                         agp_bridge->current_size =
714                                 (void *) (intel_fake_agp_sizes + i);
715                         return aper_size;
716                 }
717         }
718
719         return 0;
720 }
721
722 static void i830_cleanup(void)
723 {
724         if (intel_private.i8xx_flush_page) {
725                 kunmap(intel_private.i8xx_flush_page);
726                 intel_private.i8xx_flush_page = NULL;
727         }
728
729         __free_page(intel_private.i8xx_page);
730         intel_private.i8xx_page = NULL;
731 }
732
733 static void intel_i830_setup_flush(void)
734 {
735         /* return if we've already set the flush mechanism up */
736         if (intel_private.i8xx_page)
737                 return;
738
739         intel_private.i8xx_page = alloc_page(GFP_KERNEL);
740         if (!intel_private.i8xx_page)
741                 return;
742
743         intel_private.i8xx_flush_page = kmap(intel_private.i8xx_page);
744         if (!intel_private.i8xx_flush_page)
745                 i830_cleanup();
746 }
747
748 /* The chipset_flush interface needs to get data that has already been
749  * flushed out of the CPU all the way out to main memory, because the GPU
750  * doesn't snoop those buffers.
751  *
752  * The 8xx series doesn't have the same lovely interface for flushing the
753  * chipset write buffers that the later chips do. According to the 865
754  * specs, it's 64 octwords, or 1KB.  So, to get those previous things in
755  * that buffer out, we just fill 1KB and clflush it out, on the assumption
756  * that it'll push whatever was in there out.  It appears to work.
757  */
758 static void i830_chipset_flush(void)
759 {
760         unsigned int *pg = intel_private.i8xx_flush_page;
761
762         memset(pg, 0, 1024);
763
764         if (cpu_has_clflush)
765                 clflush_cache_range(pg, 1024);
766         else if (wbinvd_on_all_cpus() != 0)
767                 printk(KERN_ERR "Timed out waiting for cache flush.\n");
768 }
769
770 static void i830_write_entry(dma_addr_t addr, unsigned int entry,
771                              unsigned int flags)
772 {
773         u32 pte_flags = I810_PTE_VALID;
774
775         if (flags ==  AGP_USER_CACHED_MEMORY)
776                 pte_flags |= I830_PTE_SYSTEM_CACHED;
777
778         writel(addr | pte_flags, intel_private.gtt + entry);
779 }
780
781 static bool intel_enable_gtt(void)
782 {
783         u32 gma_addr;
784         u8 __iomem *reg;
785
786         if (INTEL_GTT_GEN <= 2)
787                 pci_read_config_dword(intel_private.pcidev, I810_GMADDR,
788                                       &gma_addr);
789         else
790                 pci_read_config_dword(intel_private.pcidev, I915_GMADDR,
791                                       &gma_addr);
792
793         intel_private.gma_bus_addr = (gma_addr & PCI_BASE_ADDRESS_MEM_MASK);
794
795         if (INTEL_GTT_GEN >= 6)
796             return true;
797
798         if (INTEL_GTT_GEN == 2) {
799                 u16 gmch_ctrl;
800
801                 pci_read_config_word(intel_private.bridge_dev,
802                                      I830_GMCH_CTRL, &gmch_ctrl);
803                 gmch_ctrl |= I830_GMCH_ENABLED;
804                 pci_write_config_word(intel_private.bridge_dev,
805                                       I830_GMCH_CTRL, gmch_ctrl);
806
807                 pci_read_config_word(intel_private.bridge_dev,
808                                      I830_GMCH_CTRL, &gmch_ctrl);
809                 if ((gmch_ctrl & I830_GMCH_ENABLED) == 0) {
810                         dev_err(&intel_private.pcidev->dev,
811                                 "failed to enable the GTT: GMCH_CTRL=%x\n",
812                                 gmch_ctrl);
813                         return false;
814                 }
815         }
816
817         reg = intel_private.registers+I810_PGETBL_CTL;
818         writel(intel_private.PGETBL_save, reg);
819         if (HAS_PGTBL_EN && (readl(reg) & I810_PGETBL_ENABLED) == 0) {
820                 dev_err(&intel_private.pcidev->dev,
821                         "failed to enable the GTT: PGETBL=%x [expected %x]\n",
822                         readl(reg), intel_private.PGETBL_save);
823                 return false;
824         }
825
826         return true;
827 }
828
829 static int i830_setup(void)
830 {
831         u32 reg_addr;
832
833         pci_read_config_dword(intel_private.pcidev, I810_MMADDR, &reg_addr);
834         reg_addr &= 0xfff80000;
835
836         intel_private.registers = ioremap(reg_addr, KB(64));
837         if (!intel_private.registers)
838                 return -ENOMEM;
839
840         intel_private.gtt_bus_addr = reg_addr + I810_PTE_BASE;
841
842         intel_i830_setup_flush();
843
844         return 0;
845 }
846
847 static int intel_fake_agp_create_gatt_table(struct agp_bridge_data *bridge)
848 {
849         agp_bridge->gatt_table_real = NULL;
850         agp_bridge->gatt_table = NULL;
851         agp_bridge->gatt_bus_addr = 0;
852
853         return 0;
854 }
855
856 static int intel_fake_agp_free_gatt_table(struct agp_bridge_data *bridge)
857 {
858         return 0;
859 }
860
861 static int intel_fake_agp_configure(void)
862 {
863         int i;
864
865         if (!intel_enable_gtt())
866             return -EIO;
867
868         agp_bridge->gart_bus_addr = intel_private.gma_bus_addr;
869
870         for (i = 0; i < intel_private.base.gtt_total_entries; i++) {
871                 intel_private.driver->write_entry(intel_private.scratch_page_dma,
872                                                   i, 0);
873         }
874         readl(intel_private.gtt+i-1);   /* PCI Posting. */
875
876         global_cache_flush();
877
878         return 0;
879 }
880
881 static bool i830_check_flags(unsigned int flags)
882 {
883         switch (flags) {
884         case 0:
885         case AGP_PHYS_MEMORY:
886         case AGP_USER_CACHED_MEMORY:
887         case AGP_USER_MEMORY:
888                 return true;
889         }
890
891         return false;
892 }
893
894 void intel_gtt_insert_sg_entries(struct scatterlist *sg_list,
895                                  unsigned int sg_len,
896                                  unsigned int pg_start,
897                                  unsigned int flags)
898 {
899         struct scatterlist *sg;
900         unsigned int len, m;
901         int i, j;
902
903         j = pg_start;
904
905         /* sg may merge pages, but we have to separate
906          * per-page addr for GTT */
907         for_each_sg(sg_list, sg, sg_len, i) {
908                 len = sg_dma_len(sg) >> PAGE_SHIFT;
909                 for (m = 0; m < len; m++) {
910                         dma_addr_t addr = sg_dma_address(sg) + (m << PAGE_SHIFT);
911                         intel_private.driver->write_entry(addr,
912                                                           j, flags);
913                         j++;
914                 }
915         }
916         readl(intel_private.gtt+j-1);
917 }
918 EXPORT_SYMBOL(intel_gtt_insert_sg_entries);
919
920 void intel_gtt_insert_pages(unsigned int first_entry, unsigned int num_entries,
921                             struct page **pages, unsigned int flags)
922 {
923         int i, j;
924
925         for (i = 0, j = first_entry; i < num_entries; i++, j++) {
926                 dma_addr_t addr = page_to_phys(pages[i]);
927                 intel_private.driver->write_entry(addr,
928                                                   j, flags);
929         }
930         readl(intel_private.gtt+j-1);
931 }
932 EXPORT_SYMBOL(intel_gtt_insert_pages);
933
934 static int intel_fake_agp_insert_entries(struct agp_memory *mem,
935                                          off_t pg_start, int type)
936 {
937         int ret = -EINVAL;
938
939         if (INTEL_GTT_GEN == 1 && type == AGP_DCACHE_MEMORY)
940                 return i810_insert_dcache_entries(mem, pg_start, type);
941
942         if (mem->page_count == 0)
943                 goto out;
944
945         if (pg_start + mem->page_count > intel_private.base.gtt_total_entries)
946                 goto out_err;
947
948         if (type != mem->type)
949                 goto out_err;
950
951         if (!intel_private.driver->check_flags(type))
952                 goto out_err;
953
954         if (!mem->is_flushed)
955                 global_cache_flush();
956
957         if (intel_private.base.needs_dmar) {
958                 ret = intel_gtt_map_memory(mem->pages, mem->page_count,
959                                            &mem->sg_list, &mem->num_sg);
960                 if (ret != 0)
961                         return ret;
962
963                 intel_gtt_insert_sg_entries(mem->sg_list, mem->num_sg,
964                                             pg_start, type);
965         } else
966                 intel_gtt_insert_pages(pg_start, mem->page_count, mem->pages,
967                                        type);
968
969 out:
970         ret = 0;
971 out_err:
972         mem->is_flushed = true;
973         return ret;
974 }
975
976 void intel_gtt_clear_range(unsigned int first_entry, unsigned int num_entries)
977 {
978         unsigned int i;
979
980         for (i = first_entry; i < (first_entry + num_entries); i++) {
981                 intel_private.driver->write_entry(intel_private.scratch_page_dma,
982                                                   i, 0);
983         }
984         readl(intel_private.gtt+i-1);
985 }
986 EXPORT_SYMBOL(intel_gtt_clear_range);
987
988 static int intel_fake_agp_remove_entries(struct agp_memory *mem,
989                                          off_t pg_start, int type)
990 {
991         if (mem->page_count == 0)
992                 return 0;
993
994         if (intel_private.base.needs_dmar) {
995                 intel_gtt_unmap_memory(mem->sg_list, mem->num_sg);
996                 mem->sg_list = NULL;
997                 mem->num_sg = 0;
998         }
999
1000         intel_gtt_clear_range(pg_start, mem->page_count);
1001
1002         return 0;
1003 }
1004
1005 static struct agp_memory *intel_fake_agp_alloc_by_type(size_t pg_count,
1006                                                        int type)
1007 {
1008         struct agp_memory *new;
1009
1010         if (type == AGP_DCACHE_MEMORY && INTEL_GTT_GEN == 1) {
1011                 if (pg_count != intel_private.num_dcache_entries)
1012                         return NULL;
1013
1014                 new = agp_create_memory(1);
1015                 if (new == NULL)
1016                         return NULL;
1017
1018                 new->type = AGP_DCACHE_MEMORY;
1019                 new->page_count = pg_count;
1020                 new->num_scratch_pages = 0;
1021                 agp_free_page_array(new);
1022                 return new;
1023         }
1024         if (type == AGP_PHYS_MEMORY)
1025                 return alloc_agpphysmem_i8xx(pg_count, type);
1026         /* always return NULL for other allocation types for now */
1027         return NULL;
1028 }
1029
1030 static int intel_alloc_chipset_flush_resource(void)
1031 {
1032         int ret;
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);
1036
1037         return ret;
1038 }
1039
1040 static void intel_i915_setup_chipset_flush(void)
1041 {
1042         int ret;
1043         u32 temp;
1044
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);
1050         } else {
1051                 temp &= ~1;
1052
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 */
1058                 if (ret)
1059                         intel_private.resource_valid = 0;
1060         }
1061 }
1062
1063 static void intel_i965_g33_setup_chipset_flush(void)
1064 {
1065         u32 temp_hi, temp_lo;
1066         int ret;
1067
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);
1070
1071         if (!(temp_lo & 0x1)) {
1072
1073                 intel_alloc_chipset_flush_resource();
1074
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);
1079         } else {
1080                 u64 l64;
1081
1082                 temp_lo &= ~0x1;
1083                 l64 = ((u64)temp_hi << 32) | temp_lo;
1084
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 */
1090                 if (ret)
1091                         intel_private.resource_valid = 0;
1092         }
1093 }
1094
1095 static void intel_i9xx_setup_flush(void)
1096 {
1097         /* return if already configured */
1098         if (intel_private.ifp_resource.start)
1099                 return;
1100
1101         if (INTEL_GTT_GEN == 6)
1102                 return;
1103
1104         /* setup a resource for this object */
1105         intel_private.ifp_resource.name = "Intel Flush Page";
1106         intel_private.ifp_resource.flags = IORESOURCE_MEM;
1107
1108         /* Setup chipset flush for 915 */
1109         if (IS_G33 || INTEL_GTT_GEN >= 4) {
1110                 intel_i965_g33_setup_chipset_flush();
1111         } else {
1112                 intel_i915_setup_chipset_flush();
1113         }
1114
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");
1120 }
1121
1122 static void i9xx_cleanup(void)
1123 {
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;
1130 }
1131
1132 static void i9xx_chipset_flush(void)
1133 {
1134         if (intel_private.i9xx_flush_page)
1135                 writel(1, intel_private.i9xx_flush_page);
1136 }
1137
1138 static void i965_write_entry(dma_addr_t addr,
1139                              unsigned int entry,
1140                              unsigned int flags)
1141 {
1142         u32 pte_flags;
1143
1144         pte_flags = I810_PTE_VALID;
1145         if (flags == AGP_USER_CACHED_MEMORY)
1146                 pte_flags |= I830_PTE_SYSTEM_CACHED;
1147
1148         /* Shift high bits down */
1149         addr |= (addr >> 28) & 0xf0;
1150         writel(addr | pte_flags, intel_private.gtt + entry);
1151 }
1152
1153 static bool gen6_check_flags(unsigned int flags)
1154 {
1155         return true;
1156 }
1157
1158 static void gen6_write_entry(dma_addr_t addr, unsigned int entry,
1159                              unsigned int flags)
1160 {
1161         unsigned int type_mask = flags & ~AGP_USER_CACHED_MEMORY_GFDT;
1162         unsigned int gfdt = flags & AGP_USER_CACHED_MEMORY_GFDT;
1163         u32 pte_flags;
1164
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;
1169                 if (gfdt)
1170                         pte_flags |= GEN6_PTE_GFDT;
1171         } else { /* set 'normal'/'cached' to LLC by default */
1172                 pte_flags = GEN6_PTE_LLC | I810_PTE_VALID;
1173                 if (gfdt)
1174                         pte_flags |= GEN6_PTE_GFDT;
1175         }
1176
1177         /* gen6 has bit11-4 for physical addr bit39-32 */
1178         addr |= (addr >> 28) & 0xff0;
1179         writel(addr | pte_flags, intel_private.gtt + entry);
1180 }
1181
1182 static void gen6_cleanup(void)
1183 {
1184 }
1185
1186 static int i9xx_setup(void)
1187 {
1188         u32 reg_addr;
1189
1190         pci_read_config_dword(intel_private.pcidev, I915_MMADDR, &reg_addr);
1191
1192         reg_addr &= 0xfff80000;
1193
1194         intel_private.registers = ioremap(reg_addr, 128 * 4096);
1195         if (!intel_private.registers)
1196                 return -ENOMEM;
1197
1198         if (INTEL_GTT_GEN == 3) {
1199                 u32 gtt_addr;
1200
1201                 pci_read_config_dword(intel_private.pcidev,
1202                                       I915_PTEADDR, &gtt_addr);
1203                 intel_private.gtt_bus_addr = gtt_addr;
1204         } else {
1205                 u32 gtt_offset;
1206
1207                 switch (INTEL_GTT_GEN) {
1208                 case 5:
1209                 case 6:
1210                         gtt_offset = MB(2);
1211                         break;
1212                 case 4:
1213                 default:
1214                         gtt_offset =  KB(512);
1215                         break;
1216                 }
1217                 intel_private.gtt_bus_addr = reg_addr + gtt_offset;
1218         }
1219
1220         intel_i9xx_setup_flush();
1221
1222         return 0;
1223 }
1224
1225 static const struct agp_bridge_driver intel_fake_agp_driver = {
1226         .owner                  = THIS_MODULE,
1227         .size_type              = FIXED_APER_SIZE,
1228         .aperture_sizes         = intel_fake_agp_sizes,
1229         .num_aperture_sizes     = ARRAY_SIZE(intel_fake_agp_sizes),
1230         .configure              = intel_fake_agp_configure,
1231         .fetch_size             = intel_fake_agp_fetch_size,
1232         .cleanup                = intel_gtt_cleanup,
1233         .agp_enable             = intel_fake_agp_enable,
1234         .cache_flush            = global_cache_flush,
1235         .create_gatt_table      = intel_fake_agp_create_gatt_table,
1236         .free_gatt_table        = intel_fake_agp_free_gatt_table,
1237         .insert_memory          = intel_fake_agp_insert_entries,
1238         .remove_memory          = intel_fake_agp_remove_entries,
1239         .alloc_by_type          = intel_fake_agp_alloc_by_type,
1240         .free_by_type           = intel_i810_free_by_type,
1241         .agp_alloc_page         = agp_generic_alloc_page,
1242         .agp_alloc_pages        = agp_generic_alloc_pages,
1243         .agp_destroy_page       = agp_generic_destroy_page,
1244         .agp_destroy_pages      = agp_generic_destroy_pages,
1245 };
1246
1247 static const struct intel_gtt_driver i81x_gtt_driver = {
1248         .gen = 1,
1249         .has_pgtbl_enable = 1,
1250         .dma_mask_size = 32,
1251         .setup = i810_setup,
1252         .cleanup = i810_cleanup,
1253         .check_flags = i830_check_flags,
1254         .write_entry = i810_write_entry,
1255 };
1256 static const struct intel_gtt_driver i8xx_gtt_driver = {
1257         .gen = 2,
1258         .has_pgtbl_enable = 1,
1259         .setup = i830_setup,
1260         .cleanup = i830_cleanup,
1261         .write_entry = i830_write_entry,
1262         .dma_mask_size = 32,
1263         .check_flags = i830_check_flags,
1264         .chipset_flush = i830_chipset_flush,
1265 };
1266 static const struct intel_gtt_driver i915_gtt_driver = {
1267         .gen = 3,
1268         .has_pgtbl_enable = 1,
1269         .setup = i9xx_setup,
1270         .cleanup = i9xx_cleanup,
1271         /* i945 is the last gpu to need phys mem (for overlay and cursors). */
1272         .write_entry = i830_write_entry,
1273         .dma_mask_size = 32,
1274         .check_flags = i830_check_flags,
1275         .chipset_flush = i9xx_chipset_flush,
1276 };
1277 static const struct intel_gtt_driver g33_gtt_driver = {
1278         .gen = 3,
1279         .is_g33 = 1,
1280         .setup = i9xx_setup,
1281         .cleanup = i9xx_cleanup,
1282         .write_entry = i965_write_entry,
1283         .dma_mask_size = 36,
1284         .check_flags = i830_check_flags,
1285         .chipset_flush = i9xx_chipset_flush,
1286 };
1287 static const struct intel_gtt_driver pineview_gtt_driver = {
1288         .gen = 3,
1289         .is_pineview = 1, .is_g33 = 1,
1290         .setup = i9xx_setup,
1291         .cleanup = i9xx_cleanup,
1292         .write_entry = i965_write_entry,
1293         .dma_mask_size = 36,
1294         .check_flags = i830_check_flags,
1295         .chipset_flush = i9xx_chipset_flush,
1296 };
1297 static const struct intel_gtt_driver i965_gtt_driver = {
1298         .gen = 4,
1299         .has_pgtbl_enable = 1,
1300         .setup = i9xx_setup,
1301         .cleanup = i9xx_cleanup,
1302         .write_entry = i965_write_entry,
1303         .dma_mask_size = 36,
1304         .check_flags = i830_check_flags,
1305         .chipset_flush = i9xx_chipset_flush,
1306 };
1307 static const struct intel_gtt_driver g4x_gtt_driver = {
1308         .gen = 5,
1309         .setup = i9xx_setup,
1310         .cleanup = i9xx_cleanup,
1311         .write_entry = i965_write_entry,
1312         .dma_mask_size = 36,
1313         .check_flags = i830_check_flags,
1314         .chipset_flush = i9xx_chipset_flush,
1315 };
1316 static const struct intel_gtt_driver ironlake_gtt_driver = {
1317         .gen = 5,
1318         .is_ironlake = 1,
1319         .setup = i9xx_setup,
1320         .cleanup = i9xx_cleanup,
1321         .write_entry = i965_write_entry,
1322         .dma_mask_size = 36,
1323         .check_flags = i830_check_flags,
1324         .chipset_flush = i9xx_chipset_flush,
1325 };
1326 static const struct intel_gtt_driver sandybridge_gtt_driver = {
1327         .gen = 6,
1328         .setup = i9xx_setup,
1329         .cleanup = gen6_cleanup,
1330         .write_entry = gen6_write_entry,
1331         .dma_mask_size = 40,
1332         .check_flags = gen6_check_flags,
1333         .chipset_flush = i9xx_chipset_flush,
1334 };
1335
1336 /* Table to describe Intel GMCH and AGP/PCIE GART drivers.  At least one of
1337  * driver and gmch_driver must be non-null, and find_gmch will determine
1338  * which one should be used if a gmch_chip_id is present.
1339  */
1340 static const struct intel_gtt_driver_description {
1341         unsigned int gmch_chip_id;
1342         char *name;
1343         const struct intel_gtt_driver *gtt_driver;
1344 } intel_gtt_chipsets[] = {
1345         { PCI_DEVICE_ID_INTEL_82810_IG1, "i810",
1346                 &i81x_gtt_driver},
1347         { PCI_DEVICE_ID_INTEL_82810_IG3, "i810",
1348                 &i81x_gtt_driver},
1349         { PCI_DEVICE_ID_INTEL_82810E_IG, "i810",
1350                 &i81x_gtt_driver},
1351         { PCI_DEVICE_ID_INTEL_82815_CGC, "i815",
1352                 &i81x_gtt_driver},
1353         { PCI_DEVICE_ID_INTEL_82830_CGC, "830M",
1354                 &i8xx_gtt_driver},
1355         { PCI_DEVICE_ID_INTEL_82845G_IG, "830M",
1356                 &i8xx_gtt_driver},
1357         { PCI_DEVICE_ID_INTEL_82854_IG, "854",
1358                 &i8xx_gtt_driver},
1359         { PCI_DEVICE_ID_INTEL_82855GM_IG, "855GM",
1360                 &i8xx_gtt_driver},
1361         { PCI_DEVICE_ID_INTEL_82865_IG, "865",
1362                 &i8xx_gtt_driver},
1363         { PCI_DEVICE_ID_INTEL_E7221_IG, "E7221 (i915)",
1364                 &i915_gtt_driver },
1365         { PCI_DEVICE_ID_INTEL_82915G_IG, "915G",
1366                 &i915_gtt_driver },
1367         { PCI_DEVICE_ID_INTEL_82915GM_IG, "915GM",
1368                 &i915_gtt_driver },
1369         { PCI_DEVICE_ID_INTEL_82945G_IG, "945G",
1370                 &i915_gtt_driver },
1371         { PCI_DEVICE_ID_INTEL_82945GM_IG, "945GM",
1372                 &i915_gtt_driver },
1373         { PCI_DEVICE_ID_INTEL_82945GME_IG, "945GME",
1374                 &i915_gtt_driver },
1375         { PCI_DEVICE_ID_INTEL_82946GZ_IG, "946GZ",
1376                 &i965_gtt_driver },
1377         { PCI_DEVICE_ID_INTEL_82G35_IG, "G35",
1378                 &i965_gtt_driver },
1379         { PCI_DEVICE_ID_INTEL_82965Q_IG, "965Q",
1380                 &i965_gtt_driver },
1381         { PCI_DEVICE_ID_INTEL_82965G_IG, "965G",
1382                 &i965_gtt_driver },
1383         { PCI_DEVICE_ID_INTEL_82965GM_IG, "965GM",
1384                 &i965_gtt_driver },
1385         { PCI_DEVICE_ID_INTEL_82965GME_IG, "965GME/GLE",
1386                 &i965_gtt_driver },
1387         { PCI_DEVICE_ID_INTEL_G33_IG, "G33",
1388                 &g33_gtt_driver },
1389         { PCI_DEVICE_ID_INTEL_Q35_IG, "Q35",
1390                 &g33_gtt_driver },
1391         { PCI_DEVICE_ID_INTEL_Q33_IG, "Q33",
1392                 &g33_gtt_driver },
1393         { PCI_DEVICE_ID_INTEL_PINEVIEW_M_IG, "GMA3150",
1394                 &pineview_gtt_driver },
1395         { PCI_DEVICE_ID_INTEL_PINEVIEW_IG, "GMA3150",
1396                 &pineview_gtt_driver },
1397         { PCI_DEVICE_ID_INTEL_GM45_IG, "GM45",
1398                 &g4x_gtt_driver },
1399         { PCI_DEVICE_ID_INTEL_EAGLELAKE_IG, "Eaglelake",
1400                 &g4x_gtt_driver },
1401         { PCI_DEVICE_ID_INTEL_Q45_IG, "Q45/Q43",
1402                 &g4x_gtt_driver },
1403         { PCI_DEVICE_ID_INTEL_G45_IG, "G45/G43",
1404                 &g4x_gtt_driver },
1405         { PCI_DEVICE_ID_INTEL_B43_IG, "B43",
1406                 &g4x_gtt_driver },
1407         { PCI_DEVICE_ID_INTEL_B43_1_IG, "B43",
1408                 &g4x_gtt_driver },
1409         { PCI_DEVICE_ID_INTEL_G41_IG, "G41",
1410                 &g4x_gtt_driver },
1411         { PCI_DEVICE_ID_INTEL_IRONLAKE_D_IG,
1412             "HD Graphics", &ironlake_gtt_driver },
1413         { PCI_DEVICE_ID_INTEL_IRONLAKE_M_IG,
1414             "HD Graphics", &ironlake_gtt_driver },
1415         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_GT1_IG,
1416             "Sandybridge", &sandybridge_gtt_driver },
1417         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_GT2_IG,
1418             "Sandybridge", &sandybridge_gtt_driver },
1419         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_GT2_PLUS_IG,
1420             "Sandybridge", &sandybridge_gtt_driver },
1421         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_M_GT1_IG,
1422             "Sandybridge", &sandybridge_gtt_driver },
1423         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_M_GT2_IG,
1424             "Sandybridge", &sandybridge_gtt_driver },
1425         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_M_GT2_PLUS_IG,
1426             "Sandybridge", &sandybridge_gtt_driver },
1427         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_S_IG,
1428             "Sandybridge", &sandybridge_gtt_driver },
1429         { 0, NULL, NULL }
1430 };
1431
1432 static int find_gmch(u16 device)
1433 {
1434         struct pci_dev *gmch_device;
1435
1436         gmch_device = pci_get_device(PCI_VENDOR_ID_INTEL, device, NULL);
1437         if (gmch_device && PCI_FUNC(gmch_device->devfn) != 0) {
1438                 gmch_device = pci_get_device(PCI_VENDOR_ID_INTEL,
1439                                              device, gmch_device);
1440         }
1441
1442         if (!gmch_device)
1443                 return 0;
1444
1445         intel_private.pcidev = gmch_device;
1446         return 1;
1447 }
1448
1449 int intel_gmch_probe(struct pci_dev *pdev,
1450                                       struct agp_bridge_data *bridge)
1451 {
1452         int i, mask;
1453         intel_private.driver = NULL;
1454
1455         for (i = 0; intel_gtt_chipsets[i].name != NULL; i++) {
1456                 if (find_gmch(intel_gtt_chipsets[i].gmch_chip_id)) {
1457                         intel_private.driver =
1458                                 intel_gtt_chipsets[i].gtt_driver;
1459                         break;
1460                 }
1461         }
1462
1463         if (!intel_private.driver)
1464                 return 0;
1465
1466         bridge->driver = &intel_fake_agp_driver;
1467         bridge->dev_private_data = &intel_private;
1468         bridge->dev = pdev;
1469
1470         intel_private.bridge_dev = pci_dev_get(pdev);
1471
1472         dev_info(&pdev->dev, "Intel %s Chipset\n", intel_gtt_chipsets[i].name);
1473
1474         mask = intel_private.driver->dma_mask_size;
1475         if (pci_set_dma_mask(intel_private.pcidev, DMA_BIT_MASK(mask)))
1476                 dev_err(&intel_private.pcidev->dev,
1477                         "set gfx device dma mask %d-bit failed!\n", mask);
1478         else
1479                 pci_set_consistent_dma_mask(intel_private.pcidev,
1480                                             DMA_BIT_MASK(mask));
1481
1482         /*if (bridge->driver == &intel_810_driver)
1483                 return 1;*/
1484
1485         if (intel_gtt_init() != 0)
1486                 return 0;
1487
1488         return 1;
1489 }
1490 EXPORT_SYMBOL(intel_gmch_probe);
1491
1492 const struct intel_gtt *intel_gtt_get(void)
1493 {
1494         return &intel_private.base;
1495 }
1496 EXPORT_SYMBOL(intel_gtt_get);
1497
1498 void intel_gtt_chipset_flush(void)
1499 {
1500         if (intel_private.driver->chipset_flush)
1501                 intel_private.driver->chipset_flush();
1502 }
1503 EXPORT_SYMBOL(intel_gtt_chipset_flush);
1504
1505 void intel_gmch_remove(struct pci_dev *pdev)
1506 {
1507         if (intel_private.pcidev)
1508                 pci_dev_put(intel_private.pcidev);
1509         if (intel_private.bridge_dev)
1510                 pci_dev_put(intel_private.bridge_dev);
1511 }
1512 EXPORT_SYMBOL(intel_gmch_remove);
1513
1514 MODULE_AUTHOR("Dave Jones <davej@redhat.com>");
1515 MODULE_LICENSE("GPL and additional rights");