ARM: imx_v6_v7_defconfig: Remove CONFIG_DEFAULT_MMAP_MIN_ADDR
[platform/adaptation/renesas_rcar/renesas_kernel.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 <linux/delay.h>
25 #include <asm/smp.h>
26 #include "agp.h"
27 #include "intel-agp.h"
28 #include <drm/intel-gtt.h>
29
30 /*
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.
35  */
36 #ifdef CONFIG_INTEL_IOMMU
37 #define USE_PCI_DMA_API 1
38 #else
39 #define USE_PCI_DMA_API 0
40 #endif
41
42 struct intel_gtt_driver {
43         unsigned int gen : 8;
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 */
50         int (*setup)(void);
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);
60 };
61
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         u32 PGETBL_save;
70         u32 __iomem *gtt;               /* I915G */
71         bool clear_fake_agp; /* on first access via agp, fill with scratch */
72         int num_dcache_entries;
73         void __iomem *i9xx_flush_page;
74         char *i81x_gtt_table;
75         struct resource ifp_resource;
76         int resource_valid;
77         struct page *scratch_page;
78         int refcount;
79 } intel_private;
80
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
86
87 int intel_gtt_map_memory(struct page **pages, unsigned int num_entries,
88                          struct scatterlist **sg_list, int *num_sg)
89 {
90         struct sg_table st;
91         struct scatterlist *sg;
92         int i;
93
94         if (*sg_list)
95                 return 0; /* already mapped (for e.g. resume */
96
97         DBG("try mapping %lu pages\n", (unsigned long)num_entries);
98
99         if (sg_alloc_table(&st, num_entries, GFP_KERNEL))
100                 goto err;
101
102         *sg_list = sg = st.sgl;
103
104         for (i = 0 ; i < num_entries; i++, sg = sg_next(sg))
105                 sg_set_page(sg, pages[i], PAGE_SIZE, 0);
106
107         *num_sg = pci_map_sg(intel_private.pcidev, *sg_list,
108                                  num_entries, PCI_DMA_BIDIRECTIONAL);
109         if (unlikely(!*num_sg))
110                 goto err;
111
112         return 0;
113
114 err:
115         sg_free_table(&st);
116         return -ENOMEM;
117 }
118 EXPORT_SYMBOL(intel_gtt_map_memory);
119
120 void intel_gtt_unmap_memory(struct scatterlist *sg_list, int num_sg)
121 {
122         struct sg_table st;
123         DBG("try unmapping %lu pages\n", (unsigned long)mem->page_count);
124
125         pci_unmap_sg(intel_private.pcidev, sg_list,
126                      num_sg, PCI_DMA_BIDIRECTIONAL);
127
128         st.sgl = sg_list;
129         st.orig_nents = st.nents = num_sg;
130
131         sg_free_table(&st);
132 }
133 EXPORT_SYMBOL(intel_gtt_unmap_memory);
134
135 static void intel_fake_agp_enable(struct agp_bridge_data *bridge, u32 mode)
136 {
137         return;
138 }
139
140 /* Exists to support ARGB cursors */
141 static struct page *i8xx_alloc_pages(void)
142 {
143         struct page *page;
144
145         page = alloc_pages(GFP_KERNEL | GFP_DMA32, 2);
146         if (page == NULL)
147                 return NULL;
148
149         if (set_pages_uc(page, 4) < 0) {
150                 set_pages_wb(page, 4);
151                 __free_pages(page, 2);
152                 return NULL;
153         }
154         get_page(page);
155         atomic_inc(&agp_bridge->current_memory_agp);
156         return page;
157 }
158
159 static void i8xx_destroy_pages(struct page *page)
160 {
161         if (page == NULL)
162                 return;
163
164         set_pages_wb(page, 4);
165         put_page(page);
166         __free_pages(page, 2);
167         atomic_dec(&agp_bridge->current_memory_agp);
168 }
169
170 #define I810_GTT_ORDER 4
171 static int i810_setup(void)
172 {
173         u32 reg_addr;
174         char *gtt_table;
175
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)
179                 return -ENOMEM;
180         intel_private.i81x_gtt_table = gtt_table;
181
182         pci_read_config_dword(intel_private.pcidev, I810_MMADDR, &reg_addr);
183         reg_addr &= 0xfff80000;
184
185         intel_private.registers = ioremap(reg_addr, KB(64));
186         if (!intel_private.registers)
187                 return -ENOMEM;
188
189         writel(virt_to_phys(gtt_table) | I810_PGETBL_ENABLED,
190                intel_private.registers+I810_PGETBL_CTL);
191
192         intel_private.gtt_bus_addr = reg_addr + I810_PTE_BASE;
193
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;
199         }
200
201         return 0;
202 }
203
204 static void i810_cleanup(void)
205 {
206         writel(0, intel_private.registers+I810_PGETBL_CTL);
207         free_gatt_pages(intel_private.i81x_gtt_table, I810_GTT_ORDER);
208 }
209
210 static int i810_insert_dcache_entries(struct agp_memory *mem, off_t pg_start,
211                                       int type)
212 {
213         int i;
214
215         if ((pg_start + mem->page_count)
216                         > intel_private.num_dcache_entries)
217                 return -EINVAL;
218
219         if (!mem->is_flushed)
220                 global_cache_flush();
221
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,
225                                                   i, type);
226         }
227         readl(intel_private.gtt+i-1);
228
229         return 0;
230 }
231
232 /*
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.
236  */
237 static struct agp_memory *alloc_agpphysmem_i8xx(size_t pg_count, int type)
238 {
239         struct agp_memory *new;
240         struct page *page;
241
242         switch (pg_count) {
243         case 1: page = agp_bridge->driver->agp_alloc_page(agp_bridge);
244                 break;
245         case 4:
246                 /* kludge to get 4 physical pages for ARGB cursor */
247                 page = i8xx_alloc_pages();
248                 break;
249         default:
250                 return NULL;
251         }
252
253         if (page == NULL)
254                 return NULL;
255
256         new = agp_create_memory(pg_count);
257         if (new == NULL)
258                 return NULL;
259
260         new->pages[0] = page;
261         if (pg_count == 4) {
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;
266         }
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]);
271         return new;
272 }
273
274 static void intel_i810_free_by_type(struct agp_memory *curr)
275 {
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]);
280                 else {
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);
285                 }
286                 agp_free_page_array(curr);
287         }
288         kfree(curr);
289 }
290
291 static int intel_gtt_setup_scratch_page(void)
292 {
293         struct page *page;
294         dma_addr_t dma_addr;
295
296         page = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO);
297         if (page == NULL)
298                 return -ENOMEM;
299         get_page(page);
300         set_pages_uc(page, 1);
301
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))
306                         return -EINVAL;
307
308                 intel_private.base.scratch_page_dma = dma_addr;
309         } else
310                 intel_private.base.scratch_page_dma = page_to_phys(page);
311
312         intel_private.scratch_page = page;
313
314         return 0;
315 }
316
317 static void i810_write_entry(dma_addr_t addr, unsigned int entry,
318                              unsigned int flags)
319 {
320         u32 pte_flags = I810_PTE_VALID;
321
322         switch (flags) {
323         case AGP_DCACHE_MEMORY:
324                 pte_flags |= I810_PTE_LOCAL;
325                 break;
326         case AGP_USER_CACHED_MEMORY:
327                 pte_flags |= I830_PTE_SYSTEM_CACHED;
328                 break;
329         }
330
331         writel(addr | pte_flags, intel_private.gtt + entry);
332 }
333
334 static const struct aper_size_info_fixed intel_fake_agp_sizes[] = {
335         {32, 8192, 3},
336         {64, 16384, 4},
337         {128, 32768, 5},
338         {256, 65536, 6},
339         {512, 131072, 7},
340 };
341
342 static unsigned int intel_gtt_stolen_size(void)
343 {
344         u16 gmch_ctrl;
345         u8 rdct;
346         int local = 0;
347         static const int ddt[4] = { 0, 16, 32, 64 };
348         unsigned int stolen_size = 0;
349
350         if (INTEL_GTT_GEN == 1)
351                 return 0; /* no stolen mem on i81x */
352
353         pci_read_config_word(intel_private.bridge_dev,
354                              I830_GMCH_CTRL, &gmch_ctrl);
355
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);
361                         break;
362                 case I830_GMCH_GMS_STOLEN_1024:
363                         stolen_size = MB(1);
364                         break;
365                 case I830_GMCH_GMS_STOLEN_8192:
366                         stolen_size = MB(8);
367                         break;
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)]);
372                         local = 1;
373                         break;
374                 default:
375                         stolen_size = 0;
376                         break;
377                 }
378         } else if (INTEL_GTT_GEN == 6) {
379                 /*
380                  * SandyBridge has new memory control reg at 0x50.w
381                  */
382                 u16 snb_gmch_ctl;
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);
387                         break;
388                 case SNB_GMCH_GMS_STOLEN_64M:
389                         stolen_size = MB(64);
390                         break;
391                 case SNB_GMCH_GMS_STOLEN_96M:
392                         stolen_size = MB(96);
393                         break;
394                 case SNB_GMCH_GMS_STOLEN_128M:
395                         stolen_size = MB(128);
396                         break;
397                 case SNB_GMCH_GMS_STOLEN_160M:
398                         stolen_size = MB(160);
399                         break;
400                 case SNB_GMCH_GMS_STOLEN_192M:
401                         stolen_size = MB(192);
402                         break;
403                 case SNB_GMCH_GMS_STOLEN_224M:
404                         stolen_size = MB(224);
405                         break;
406                 case SNB_GMCH_GMS_STOLEN_256M:
407                         stolen_size = MB(256);
408                         break;
409                 case SNB_GMCH_GMS_STOLEN_288M:
410                         stolen_size = MB(288);
411                         break;
412                 case SNB_GMCH_GMS_STOLEN_320M:
413                         stolen_size = MB(320);
414                         break;
415                 case SNB_GMCH_GMS_STOLEN_352M:
416                         stolen_size = MB(352);
417                         break;
418                 case SNB_GMCH_GMS_STOLEN_384M:
419                         stolen_size = MB(384);
420                         break;
421                 case SNB_GMCH_GMS_STOLEN_416M:
422                         stolen_size = MB(416);
423                         break;
424                 case SNB_GMCH_GMS_STOLEN_448M:
425                         stolen_size = MB(448);
426                         break;
427                 case SNB_GMCH_GMS_STOLEN_480M:
428                         stolen_size = MB(480);
429                         break;
430                 case SNB_GMCH_GMS_STOLEN_512M:
431                         stolen_size = MB(512);
432                         break;
433                 }
434         } else {
435                 switch (gmch_ctrl & I855_GMCH_GMS_MASK) {
436                 case I855_GMCH_GMS_STOLEN_1M:
437                         stolen_size = MB(1);
438                         break;
439                 case I855_GMCH_GMS_STOLEN_4M:
440                         stolen_size = MB(4);
441                         break;
442                 case I855_GMCH_GMS_STOLEN_8M:
443                         stolen_size = MB(8);
444                         break;
445                 case I855_GMCH_GMS_STOLEN_16M:
446                         stolen_size = MB(16);
447                         break;
448                 case I855_GMCH_GMS_STOLEN_32M:
449                         stolen_size = MB(32);
450                         break;
451                 case I915_GMCH_GMS_STOLEN_48M:
452                         stolen_size = MB(48);
453                         break;
454                 case I915_GMCH_GMS_STOLEN_64M:
455                         stolen_size = MB(64);
456                         break;
457                 case G33_GMCH_GMS_STOLEN_128M:
458                         stolen_size = MB(128);
459                         break;
460                 case G33_GMCH_GMS_STOLEN_256M:
461                         stolen_size = MB(256);
462                         break;
463                 case INTEL_GMCH_GMS_STOLEN_96M:
464                         stolen_size = MB(96);
465                         break;
466                 case INTEL_GMCH_GMS_STOLEN_160M:
467                         stolen_size = MB(160);
468                         break;
469                 case INTEL_GMCH_GMS_STOLEN_224M:
470                         stolen_size = MB(224);
471                         break;
472                 case INTEL_GMCH_GMS_STOLEN_352M:
473                         stolen_size = MB(352);
474                         break;
475                 default:
476                         stolen_size = 0;
477                         break;
478                 }
479         }
480
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");
484         } else {
485                 dev_info(&intel_private.bridge_dev->dev,
486                        "no pre-allocated video memory detected\n");
487                 stolen_size = 0;
488         }
489
490         return stolen_size;
491 }
492
493 static void i965_adjust_pgetbl_size(unsigned int size_flag)
494 {
495         u32 pgetbl_ctl, pgetbl_ctl2;
496
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);
501
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);
507 }
508
509 static unsigned int i965_gtt_total_entries(void)
510 {
511         int size;
512         u32 pgetbl_ctl;
513         u16 gmch_ctl;
514
515         pci_read_config_word(intel_private.bridge_dev,
516                              I830_GMCH_CTRL, &gmch_ctl);
517
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);
523                         break;
524                 case G4x_GMCH_SIZE_VT_1_5M:
525                         i965_adjust_pgetbl_size(I965_PGETBL_SIZE_1_5MB);
526                         break;
527                 case G4x_GMCH_SIZE_2M:
528                 case G4x_GMCH_SIZE_VT_2M:
529                         i965_adjust_pgetbl_size(I965_PGETBL_SIZE_2MB);
530                         break;
531                 }
532         }
533
534         pgetbl_ctl = readl(intel_private.registers+I810_PGETBL_CTL);
535
536         switch (pgetbl_ctl & I965_PGETBL_SIZE_MASK) {
537         case I965_PGETBL_SIZE_128KB:
538                 size = KB(128);
539                 break;
540         case I965_PGETBL_SIZE_256KB:
541                 size = KB(256);
542                 break;
543         case I965_PGETBL_SIZE_512KB:
544                 size = KB(512);
545                 break;
546         /* GTT pagetable sizes bigger than 512KB are not possible on G33! */
547         case I965_PGETBL_SIZE_1MB:
548                 size = KB(1024);
549                 break;
550         case I965_PGETBL_SIZE_2MB:
551                 size = KB(2048);
552                 break;
553         case I965_PGETBL_SIZE_1_5MB:
554                 size = KB(1024 + 512);
555                 break;
556         default:
557                 dev_info(&intel_private.pcidev->dev,
558                          "unknown page table size, assuming 512KB\n");
559                 size = KB(512);
560         }
561
562         return size/4;
563 }
564
565 static unsigned int intel_gtt_total_entries(void)
566 {
567         int size;
568
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) {
572                 u16 snb_gmch_ctl;
573
574                 pci_read_config_word(intel_private.pcidev, SNB_GMCH_CTRL, &snb_gmch_ctl);
575                 switch (snb_gmch_ctl & SNB_GTT_SIZE_MASK) {
576                 default:
577                 case SNB_GTT_SIZE_0M:
578                         printk(KERN_ERR "Bad GTT size mask: 0x%04x.\n", snb_gmch_ctl);
579                         size = MB(0);
580                         break;
581                 case SNB_GTT_SIZE_1M:
582                         size = MB(1);
583                         break;
584                 case SNB_GTT_SIZE_2M:
585                         size = MB(2);
586                         break;
587                 }
588                 return size/4;
589         } else {
590                 /* On previous hardware, the GTT size was just what was
591                  * required to map the aperture.
592                  */
593                 return intel_private.base.gtt_mappable_entries;
594         }
595 }
596
597 static unsigned int intel_gtt_mappable_entries(void)
598 {
599         unsigned int aperture_size;
600
601         if (INTEL_GTT_GEN == 1) {
602                 u32 smram_miscc;
603
604                 pci_read_config_dword(intel_private.bridge_dev,
605                                       I810_SMRAM_MISCC, &smram_miscc);
606
607                 if ((smram_miscc & I810_GFX_MEM_WIN_SIZE)
608                                 == I810_GFX_MEM_WIN_32M)
609                         aperture_size = MB(32);
610                 else
611                         aperture_size = MB(64);
612         } else if (INTEL_GTT_GEN == 2) {
613                 u16 gmch_ctrl;
614
615                 pci_read_config_word(intel_private.bridge_dev,
616                                      I830_GMCH_CTRL, &gmch_ctrl);
617
618                 if ((gmch_ctrl & I830_GMCH_MEM_MASK) == I830_GMCH_MEM_64M)
619                         aperture_size = MB(64);
620                 else
621                         aperture_size = MB(128);
622         } else {
623                 /* 9xx supports large sizes, just look at the length */
624                 aperture_size = pci_resource_len(intel_private.pcidev, 2);
625         }
626
627         return aperture_size >> PAGE_SHIFT;
628 }
629
630 static void intel_gtt_teardown_scratch_page(void)
631 {
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);
637 }
638
639 static void intel_gtt_cleanup(void)
640 {
641         intel_private.driver->cleanup();
642
643         iounmap(intel_private.gtt);
644         iounmap(intel_private.registers);
645
646         intel_gtt_teardown_scratch_page();
647 }
648
649 static int intel_gtt_init(void)
650 {
651         u32 gma_addr;
652         u32 gtt_map_size;
653         int ret;
654
655         ret = intel_private.driver->setup();
656         if (ret != 0)
657                 return ret;
658
659         intel_private.base.gtt_mappable_entries = intel_gtt_mappable_entries();
660         intel_private.base.gtt_total_entries = intel_gtt_total_entries();
661
662         /* save the PGETBL reg for resume */
663         intel_private.PGETBL_save =
664                 readl(intel_private.registers+I810_PGETBL_CTL)
665                         & ~I810_PGETBL_ENABLED;
666         /* we only ever restore the register when enabling the PGTBL... */
667         if (HAS_PGTBL_EN)
668                 intel_private.PGETBL_save |= I810_PGETBL_ENABLED;
669
670         dev_info(&intel_private.bridge_dev->dev,
671                         "detected gtt size: %dK total, %dK mappable\n",
672                         intel_private.base.gtt_total_entries * 4,
673                         intel_private.base.gtt_mappable_entries * 4);
674
675         gtt_map_size = intel_private.base.gtt_total_entries * 4;
676
677         intel_private.gtt = ioremap(intel_private.gtt_bus_addr,
678                                     gtt_map_size);
679         if (!intel_private.gtt) {
680                 intel_private.driver->cleanup();
681                 iounmap(intel_private.registers);
682                 return -ENOMEM;
683         }
684         intel_private.base.gtt = intel_private.gtt;
685
686         global_cache_flush();   /* FIXME: ? */
687
688         intel_private.base.stolen_size = intel_gtt_stolen_size();
689
690         intel_private.base.needs_dmar = USE_PCI_DMA_API && INTEL_GTT_GEN > 2;
691
692         ret = intel_gtt_setup_scratch_page();
693         if (ret != 0) {
694                 intel_gtt_cleanup();
695                 return ret;
696         }
697
698         if (INTEL_GTT_GEN <= 2)
699                 pci_read_config_dword(intel_private.pcidev, I810_GMADDR,
700                                       &gma_addr);
701         else
702                 pci_read_config_dword(intel_private.pcidev, I915_GMADDR,
703                                       &gma_addr);
704
705         intel_private.base.gma_bus_addr = (gma_addr & PCI_BASE_ADDRESS_MEM_MASK);
706
707         return 0;
708 }
709
710 static int intel_fake_agp_fetch_size(void)
711 {
712         int num_sizes = ARRAY_SIZE(intel_fake_agp_sizes);
713         unsigned int aper_size;
714         int i;
715
716         aper_size = (intel_private.base.gtt_mappable_entries << PAGE_SHIFT)
717                     / MB(1);
718
719         for (i = 0; i < num_sizes; i++) {
720                 if (aper_size == intel_fake_agp_sizes[i].size) {
721                         agp_bridge->current_size =
722                                 (void *) (intel_fake_agp_sizes + i);
723                         return aper_size;
724                 }
725         }
726
727         return 0;
728 }
729
730 static void i830_cleanup(void)
731 {
732 }
733
734 /* The chipset_flush interface needs to get data that has already been
735  * flushed out of the CPU all the way out to main memory, because the GPU
736  * doesn't snoop those buffers.
737  *
738  * The 8xx series doesn't have the same lovely interface for flushing the
739  * chipset write buffers that the later chips do. According to the 865
740  * specs, it's 64 octwords, or 1KB.  So, to get those previous things in
741  * that buffer out, we just fill 1KB and clflush it out, on the assumption
742  * that it'll push whatever was in there out.  It appears to work.
743  */
744 static void i830_chipset_flush(void)
745 {
746         unsigned long timeout = jiffies + msecs_to_jiffies(1000);
747
748         /* Forcibly evict everything from the CPU write buffers.
749          * clflush appears to be insufficient.
750          */
751         wbinvd_on_all_cpus();
752
753         /* Now we've only seen documents for this magic bit on 855GM,
754          * we hope it exists for the other gen2 chipsets...
755          *
756          * Also works as advertised on my 845G.
757          */
758         writel(readl(intel_private.registers+I830_HIC) | (1<<31),
759                intel_private.registers+I830_HIC);
760
761         while (readl(intel_private.registers+I830_HIC) & (1<<31)) {
762                 if (time_after(jiffies, timeout))
763                         break;
764
765                 udelay(50);
766         }
767 }
768
769 static void i830_write_entry(dma_addr_t addr, unsigned int entry,
770                              unsigned int flags)
771 {
772         u32 pte_flags = I810_PTE_VALID;
773
774         if (flags ==  AGP_USER_CACHED_MEMORY)
775                 pte_flags |= I830_PTE_SYSTEM_CACHED;
776
777         writel(addr | pte_flags, intel_private.gtt + entry);
778 }
779
780 bool intel_enable_gtt(void)
781 {
782         u8 __iomem *reg;
783
784         if (INTEL_GTT_GEN >= 6)
785             return true;
786
787         if (INTEL_GTT_GEN == 2) {
788                 u16 gmch_ctrl;
789
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);
795
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",
801                                 gmch_ctrl);
802                         return false;
803                 }
804         }
805
806         /* On the resume path we may be adjusting the PGTBL value, so
807          * be paranoid and flush all chipset write buffers...
808          */
809         if (INTEL_GTT_GEN >= 3)
810                 writel(0, intel_private.registers+GFX_FLSH_CNTL);
811
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);
818                 return false;
819         }
820
821         if (INTEL_GTT_GEN >= 3)
822                 writel(0, intel_private.registers+GFX_FLSH_CNTL);
823
824         return true;
825 }
826 EXPORT_SYMBOL(intel_enable_gtt);
827
828 static int i830_setup(void)
829 {
830         u32 reg_addr;
831
832         pci_read_config_dword(intel_private.pcidev, I810_MMADDR, &reg_addr);
833         reg_addr &= 0xfff80000;
834
835         intel_private.registers = ioremap(reg_addr, KB(64));
836         if (!intel_private.registers)
837                 return -ENOMEM;
838
839         intel_private.gtt_bus_addr = reg_addr + I810_PTE_BASE;
840
841         return 0;
842 }
843
844 static int intel_fake_agp_create_gatt_table(struct agp_bridge_data *bridge)
845 {
846         agp_bridge->gatt_table_real = NULL;
847         agp_bridge->gatt_table = NULL;
848         agp_bridge->gatt_bus_addr = 0;
849
850         return 0;
851 }
852
853 static int intel_fake_agp_free_gatt_table(struct agp_bridge_data *bridge)
854 {
855         return 0;
856 }
857
858 static int intel_fake_agp_configure(void)
859 {
860         if (!intel_enable_gtt())
861             return -EIO;
862
863         intel_private.clear_fake_agp = true;
864         agp_bridge->gart_bus_addr = intel_private.base.gma_bus_addr;
865
866         return 0;
867 }
868
869 static bool i830_check_flags(unsigned int flags)
870 {
871         switch (flags) {
872         case 0:
873         case AGP_PHYS_MEMORY:
874         case AGP_USER_CACHED_MEMORY:
875         case AGP_USER_MEMORY:
876                 return true;
877         }
878
879         return false;
880 }
881
882 void intel_gtt_insert_sg_entries(struct scatterlist *sg_list,
883                                  unsigned int sg_len,
884                                  unsigned int pg_start,
885                                  unsigned int flags)
886 {
887         struct scatterlist *sg;
888         unsigned int len, m;
889         int i, j;
890
891         j = pg_start;
892
893         /* sg may merge pages, but we have to separate
894          * per-page addr for GTT */
895         for_each_sg(sg_list, sg, sg_len, i) {
896                 len = sg_dma_len(sg) >> PAGE_SHIFT;
897                 for (m = 0; m < len; m++) {
898                         dma_addr_t addr = sg_dma_address(sg) + (m << PAGE_SHIFT);
899                         intel_private.driver->write_entry(addr,
900                                                           j, flags);
901                         j++;
902                 }
903         }
904         readl(intel_private.gtt+j-1);
905 }
906 EXPORT_SYMBOL(intel_gtt_insert_sg_entries);
907
908 void intel_gtt_insert_pages(unsigned int first_entry, unsigned int num_entries,
909                             struct page **pages, unsigned int flags)
910 {
911         int i, j;
912
913         for (i = 0, j = first_entry; i < num_entries; i++, j++) {
914                 dma_addr_t addr = page_to_phys(pages[i]);
915                 intel_private.driver->write_entry(addr,
916                                                   j, flags);
917         }
918         readl(intel_private.gtt+j-1);
919 }
920 EXPORT_SYMBOL(intel_gtt_insert_pages);
921
922 static int intel_fake_agp_insert_entries(struct agp_memory *mem,
923                                          off_t pg_start, int type)
924 {
925         int ret = -EINVAL;
926
927         if (intel_private.base.do_idle_maps)
928                 return -ENODEV;
929
930         if (intel_private.clear_fake_agp) {
931                 int start = intel_private.base.stolen_size / PAGE_SIZE;
932                 int end = intel_private.base.gtt_mappable_entries;
933                 intel_gtt_clear_range(start, end - start);
934                 intel_private.clear_fake_agp = false;
935         }
936
937         if (INTEL_GTT_GEN == 1 && type == AGP_DCACHE_MEMORY)
938                 return i810_insert_dcache_entries(mem, pg_start, type);
939
940         if (mem->page_count == 0)
941                 goto out;
942
943         if (pg_start + mem->page_count > intel_private.base.gtt_total_entries)
944                 goto out_err;
945
946         if (type != mem->type)
947                 goto out_err;
948
949         if (!intel_private.driver->check_flags(type))
950                 goto out_err;
951
952         if (!mem->is_flushed)
953                 global_cache_flush();
954
955         if (intel_private.base.needs_dmar) {
956                 ret = intel_gtt_map_memory(mem->pages, mem->page_count,
957                                            &mem->sg_list, &mem->num_sg);
958                 if (ret != 0)
959                         return ret;
960
961                 intel_gtt_insert_sg_entries(mem->sg_list, mem->num_sg,
962                                             pg_start, type);
963         } else
964                 intel_gtt_insert_pages(pg_start, mem->page_count, mem->pages,
965                                        type);
966
967 out:
968         ret = 0;
969 out_err:
970         mem->is_flushed = true;
971         return ret;
972 }
973
974 void intel_gtt_clear_range(unsigned int first_entry, unsigned int num_entries)
975 {
976         unsigned int i;
977
978         for (i = first_entry; i < (first_entry + num_entries); i++) {
979                 intel_private.driver->write_entry(intel_private.base.scratch_page_dma,
980                                                   i, 0);
981         }
982         readl(intel_private.gtt+i-1);
983 }
984 EXPORT_SYMBOL(intel_gtt_clear_range);
985
986 static int intel_fake_agp_remove_entries(struct agp_memory *mem,
987                                          off_t pg_start, int type)
988 {
989         if (mem->page_count == 0)
990                 return 0;
991
992         if (intel_private.base.do_idle_maps)
993                 return -ENODEV;
994
995         intel_gtt_clear_range(pg_start, mem->page_count);
996
997         if (intel_private.base.needs_dmar) {
998                 intel_gtt_unmap_memory(mem->sg_list, mem->num_sg);
999                 mem->sg_list = NULL;
1000                 mem->num_sg = 0;
1001         }
1002
1003         return 0;
1004 }
1005
1006 static struct agp_memory *intel_fake_agp_alloc_by_type(size_t pg_count,
1007                                                        int type)
1008 {
1009         struct agp_memory *new;
1010
1011         if (type == AGP_DCACHE_MEMORY && INTEL_GTT_GEN == 1) {
1012                 if (pg_count != intel_private.num_dcache_entries)
1013                         return NULL;
1014
1015                 new = agp_create_memory(1);
1016                 if (new == NULL)
1017                         return NULL;
1018
1019                 new->type = AGP_DCACHE_MEMORY;
1020                 new->page_count = pg_count;
1021                 new->num_scratch_pages = 0;
1022                 agp_free_page_array(new);
1023                 return new;
1024         }
1025         if (type == AGP_PHYS_MEMORY)
1026                 return alloc_agpphysmem_i8xx(pg_count, type);
1027         /* always return NULL for other allocation types for now */
1028         return NULL;
1029 }
1030
1031 static int intel_alloc_chipset_flush_resource(void)
1032 {
1033         int ret;
1034         ret = pci_bus_alloc_resource(intel_private.bridge_dev->bus, &intel_private.ifp_resource, PAGE_SIZE,
1035                                      PAGE_SIZE, PCIBIOS_MIN_MEM, 0,
1036                                      pcibios_align_resource, intel_private.bridge_dev);
1037
1038         return ret;
1039 }
1040
1041 static void intel_i915_setup_chipset_flush(void)
1042 {
1043         int ret;
1044         u32 temp;
1045
1046         pci_read_config_dword(intel_private.bridge_dev, I915_IFPADDR, &temp);
1047         if (!(temp & 0x1)) {
1048                 intel_alloc_chipset_flush_resource();
1049                 intel_private.resource_valid = 1;
1050                 pci_write_config_dword(intel_private.bridge_dev, I915_IFPADDR, (intel_private.ifp_resource.start & 0xffffffff) | 0x1);
1051         } else {
1052                 temp &= ~1;
1053
1054                 intel_private.resource_valid = 1;
1055                 intel_private.ifp_resource.start = temp;
1056                 intel_private.ifp_resource.end = temp + PAGE_SIZE;
1057                 ret = request_resource(&iomem_resource, &intel_private.ifp_resource);
1058                 /* some BIOSes reserve this area in a pnp some don't */
1059                 if (ret)
1060                         intel_private.resource_valid = 0;
1061         }
1062 }
1063
1064 static void intel_i965_g33_setup_chipset_flush(void)
1065 {
1066         u32 temp_hi, temp_lo;
1067         int ret;
1068
1069         pci_read_config_dword(intel_private.bridge_dev, I965_IFPADDR + 4, &temp_hi);
1070         pci_read_config_dword(intel_private.bridge_dev, I965_IFPADDR, &temp_lo);
1071
1072         if (!(temp_lo & 0x1)) {
1073
1074                 intel_alloc_chipset_flush_resource();
1075
1076                 intel_private.resource_valid = 1;
1077                 pci_write_config_dword(intel_private.bridge_dev, I965_IFPADDR + 4,
1078                         upper_32_bits(intel_private.ifp_resource.start));
1079                 pci_write_config_dword(intel_private.bridge_dev, I965_IFPADDR, (intel_private.ifp_resource.start & 0xffffffff) | 0x1);
1080         } else {
1081                 u64 l64;
1082
1083                 temp_lo &= ~0x1;
1084                 l64 = ((u64)temp_hi << 32) | temp_lo;
1085
1086                 intel_private.resource_valid = 1;
1087                 intel_private.ifp_resource.start = l64;
1088                 intel_private.ifp_resource.end = l64 + PAGE_SIZE;
1089                 ret = request_resource(&iomem_resource, &intel_private.ifp_resource);
1090                 /* some BIOSes reserve this area in a pnp some don't */
1091                 if (ret)
1092                         intel_private.resource_valid = 0;
1093         }
1094 }
1095
1096 static void intel_i9xx_setup_flush(void)
1097 {
1098         /* return if already configured */
1099         if (intel_private.ifp_resource.start)
1100                 return;
1101
1102         if (INTEL_GTT_GEN == 6)
1103                 return;
1104
1105         /* setup a resource for this object */
1106         intel_private.ifp_resource.name = "Intel Flush Page";
1107         intel_private.ifp_resource.flags = IORESOURCE_MEM;
1108
1109         /* Setup chipset flush for 915 */
1110         if (IS_G33 || INTEL_GTT_GEN >= 4) {
1111                 intel_i965_g33_setup_chipset_flush();
1112         } else {
1113                 intel_i915_setup_chipset_flush();
1114         }
1115
1116         if (intel_private.ifp_resource.start)
1117                 intel_private.i9xx_flush_page = ioremap_nocache(intel_private.ifp_resource.start, PAGE_SIZE);
1118         if (!intel_private.i9xx_flush_page)
1119                 dev_err(&intel_private.pcidev->dev,
1120                         "can't ioremap flush page - no chipset flushing\n");
1121 }
1122
1123 static void i9xx_cleanup(void)
1124 {
1125         if (intel_private.i9xx_flush_page)
1126                 iounmap(intel_private.i9xx_flush_page);
1127         if (intel_private.resource_valid)
1128                 release_resource(&intel_private.ifp_resource);
1129         intel_private.ifp_resource.start = 0;
1130         intel_private.resource_valid = 0;
1131 }
1132
1133 static void i9xx_chipset_flush(void)
1134 {
1135         if (intel_private.i9xx_flush_page)
1136                 writel(1, intel_private.i9xx_flush_page);
1137 }
1138
1139 static void i965_write_entry(dma_addr_t addr,
1140                              unsigned int entry,
1141                              unsigned int flags)
1142 {
1143         u32 pte_flags;
1144
1145         pte_flags = I810_PTE_VALID;
1146         if (flags == AGP_USER_CACHED_MEMORY)
1147                 pte_flags |= I830_PTE_SYSTEM_CACHED;
1148
1149         /* Shift high bits down */
1150         addr |= (addr >> 28) & 0xf0;
1151         writel(addr | pte_flags, intel_private.gtt + entry);
1152 }
1153
1154 static bool gen6_check_flags(unsigned int flags)
1155 {
1156         return true;
1157 }
1158
1159 static void gen6_write_entry(dma_addr_t addr, unsigned int entry,
1160                              unsigned int flags)
1161 {
1162         unsigned int type_mask = flags & ~AGP_USER_CACHED_MEMORY_GFDT;
1163         unsigned int gfdt = flags & AGP_USER_CACHED_MEMORY_GFDT;
1164         u32 pte_flags;
1165
1166         if (type_mask == AGP_USER_MEMORY)
1167                 pte_flags = GEN6_PTE_UNCACHED | I810_PTE_VALID;
1168         else if (type_mask == AGP_USER_CACHED_MEMORY_LLC_MLC) {
1169                 pte_flags = GEN6_PTE_LLC_MLC | I810_PTE_VALID;
1170                 if (gfdt)
1171                         pte_flags |= GEN6_PTE_GFDT;
1172         } else { /* set 'normal'/'cached' to LLC by default */
1173                 pte_flags = GEN6_PTE_LLC | I810_PTE_VALID;
1174                 if (gfdt)
1175                         pte_flags |= GEN6_PTE_GFDT;
1176         }
1177
1178         /* gen6 has bit11-4 for physical addr bit39-32 */
1179         addr |= (addr >> 28) & 0xff0;
1180         writel(addr | pte_flags, intel_private.gtt + entry);
1181 }
1182
1183 static void valleyview_write_entry(dma_addr_t addr, unsigned int entry,
1184                                    unsigned int flags)
1185 {
1186         unsigned int type_mask = flags & ~AGP_USER_CACHED_MEMORY_GFDT;
1187         unsigned int gfdt = flags & AGP_USER_CACHED_MEMORY_GFDT;
1188         u32 pte_flags;
1189
1190         if (type_mask == AGP_USER_MEMORY)
1191                 pte_flags = GEN6_PTE_UNCACHED | I810_PTE_VALID;
1192         else {
1193                 pte_flags = GEN6_PTE_LLC | I810_PTE_VALID;
1194                 if (gfdt)
1195                         pte_flags |= GEN6_PTE_GFDT;
1196         }
1197
1198         /* gen6 has bit11-4 for physical addr bit39-32 */
1199         addr |= (addr >> 28) & 0xff0;
1200         writel(addr | pte_flags, intel_private.gtt + entry);
1201
1202         writel(1, intel_private.registers + GFX_FLSH_CNTL_VLV);
1203 }
1204
1205 static void gen6_cleanup(void)
1206 {
1207 }
1208
1209 /* Certain Gen5 chipsets require require idling the GPU before
1210  * unmapping anything from the GTT when VT-d is enabled.
1211  */
1212 static inline int needs_idle_maps(void)
1213 {
1214 #ifdef CONFIG_INTEL_IOMMU
1215         const unsigned short gpu_devid = intel_private.pcidev->device;
1216
1217         /* Query intel_iommu to see if we need the workaround. Presumably that
1218          * was loaded first.
1219          */
1220         if ((gpu_devid == PCI_DEVICE_ID_INTEL_IRONLAKE_M_HB ||
1221              gpu_devid == PCI_DEVICE_ID_INTEL_IRONLAKE_M_IG) &&
1222              intel_iommu_gfx_mapped)
1223                 return 1;
1224 #endif
1225         return 0;
1226 }
1227
1228 static int i9xx_setup(void)
1229 {
1230         u32 reg_addr;
1231         int size = KB(512);
1232
1233         pci_read_config_dword(intel_private.pcidev, I915_MMADDR, &reg_addr);
1234
1235         reg_addr &= 0xfff80000;
1236
1237         if (INTEL_GTT_GEN >= 7)
1238                 size = MB(2);
1239
1240         intel_private.registers = ioremap(reg_addr, size);
1241         if (!intel_private.registers)
1242                 return -ENOMEM;
1243
1244         if (INTEL_GTT_GEN == 3) {
1245                 u32 gtt_addr;
1246
1247                 pci_read_config_dword(intel_private.pcidev,
1248                                       I915_PTEADDR, &gtt_addr);
1249                 intel_private.gtt_bus_addr = gtt_addr;
1250         } else {
1251                 u32 gtt_offset;
1252
1253                 switch (INTEL_GTT_GEN) {
1254                 case 5:
1255                 case 6:
1256                 case 7:
1257                         gtt_offset = MB(2);
1258                         break;
1259                 case 4:
1260                 default:
1261                         gtt_offset =  KB(512);
1262                         break;
1263                 }
1264                 intel_private.gtt_bus_addr = reg_addr + gtt_offset;
1265         }
1266
1267         if (needs_idle_maps())
1268                 intel_private.base.do_idle_maps = 1;
1269
1270         intel_i9xx_setup_flush();
1271
1272         return 0;
1273 }
1274
1275 static const struct agp_bridge_driver intel_fake_agp_driver = {
1276         .owner                  = THIS_MODULE,
1277         .size_type              = FIXED_APER_SIZE,
1278         .aperture_sizes         = intel_fake_agp_sizes,
1279         .num_aperture_sizes     = ARRAY_SIZE(intel_fake_agp_sizes),
1280         .configure              = intel_fake_agp_configure,
1281         .fetch_size             = intel_fake_agp_fetch_size,
1282         .cleanup                = intel_gtt_cleanup,
1283         .agp_enable             = intel_fake_agp_enable,
1284         .cache_flush            = global_cache_flush,
1285         .create_gatt_table      = intel_fake_agp_create_gatt_table,
1286         .free_gatt_table        = intel_fake_agp_free_gatt_table,
1287         .insert_memory          = intel_fake_agp_insert_entries,
1288         .remove_memory          = intel_fake_agp_remove_entries,
1289         .alloc_by_type          = intel_fake_agp_alloc_by_type,
1290         .free_by_type           = intel_i810_free_by_type,
1291         .agp_alloc_page         = agp_generic_alloc_page,
1292         .agp_alloc_pages        = agp_generic_alloc_pages,
1293         .agp_destroy_page       = agp_generic_destroy_page,
1294         .agp_destroy_pages      = agp_generic_destroy_pages,
1295 };
1296
1297 static const struct intel_gtt_driver i81x_gtt_driver = {
1298         .gen = 1,
1299         .has_pgtbl_enable = 1,
1300         .dma_mask_size = 32,
1301         .setup = i810_setup,
1302         .cleanup = i810_cleanup,
1303         .check_flags = i830_check_flags,
1304         .write_entry = i810_write_entry,
1305 };
1306 static const struct intel_gtt_driver i8xx_gtt_driver = {
1307         .gen = 2,
1308         .has_pgtbl_enable = 1,
1309         .setup = i830_setup,
1310         .cleanup = i830_cleanup,
1311         .write_entry = i830_write_entry,
1312         .dma_mask_size = 32,
1313         .check_flags = i830_check_flags,
1314         .chipset_flush = i830_chipset_flush,
1315 };
1316 static const struct intel_gtt_driver i915_gtt_driver = {
1317         .gen = 3,
1318         .has_pgtbl_enable = 1,
1319         .setup = i9xx_setup,
1320         .cleanup = i9xx_cleanup,
1321         /* i945 is the last gpu to need phys mem (for overlay and cursors). */
1322         .write_entry = i830_write_entry,
1323         .dma_mask_size = 32,
1324         .check_flags = i830_check_flags,
1325         .chipset_flush = i9xx_chipset_flush,
1326 };
1327 static const struct intel_gtt_driver g33_gtt_driver = {
1328         .gen = 3,
1329         .is_g33 = 1,
1330         .setup = i9xx_setup,
1331         .cleanup = i9xx_cleanup,
1332         .write_entry = i965_write_entry,
1333         .dma_mask_size = 36,
1334         .check_flags = i830_check_flags,
1335         .chipset_flush = i9xx_chipset_flush,
1336 };
1337 static const struct intel_gtt_driver pineview_gtt_driver = {
1338         .gen = 3,
1339         .is_pineview = 1, .is_g33 = 1,
1340         .setup = i9xx_setup,
1341         .cleanup = i9xx_cleanup,
1342         .write_entry = i965_write_entry,
1343         .dma_mask_size = 36,
1344         .check_flags = i830_check_flags,
1345         .chipset_flush = i9xx_chipset_flush,
1346 };
1347 static const struct intel_gtt_driver i965_gtt_driver = {
1348         .gen = 4,
1349         .has_pgtbl_enable = 1,
1350         .setup = i9xx_setup,
1351         .cleanup = i9xx_cleanup,
1352         .write_entry = i965_write_entry,
1353         .dma_mask_size = 36,
1354         .check_flags = i830_check_flags,
1355         .chipset_flush = i9xx_chipset_flush,
1356 };
1357 static const struct intel_gtt_driver g4x_gtt_driver = {
1358         .gen = 5,
1359         .setup = i9xx_setup,
1360         .cleanup = i9xx_cleanup,
1361         .write_entry = i965_write_entry,
1362         .dma_mask_size = 36,
1363         .check_flags = i830_check_flags,
1364         .chipset_flush = i9xx_chipset_flush,
1365 };
1366 static const struct intel_gtt_driver ironlake_gtt_driver = {
1367         .gen = 5,
1368         .is_ironlake = 1,
1369         .setup = i9xx_setup,
1370         .cleanup = i9xx_cleanup,
1371         .write_entry = i965_write_entry,
1372         .dma_mask_size = 36,
1373         .check_flags = i830_check_flags,
1374         .chipset_flush = i9xx_chipset_flush,
1375 };
1376 static const struct intel_gtt_driver sandybridge_gtt_driver = {
1377         .gen = 6,
1378         .setup = i9xx_setup,
1379         .cleanup = gen6_cleanup,
1380         .write_entry = gen6_write_entry,
1381         .dma_mask_size = 40,
1382         .check_flags = gen6_check_flags,
1383         .chipset_flush = i9xx_chipset_flush,
1384 };
1385 static const struct intel_gtt_driver valleyview_gtt_driver = {
1386         .gen = 7,
1387         .setup = i9xx_setup,
1388         .cleanup = gen6_cleanup,
1389         .write_entry = valleyview_write_entry,
1390         .dma_mask_size = 40,
1391         .check_flags = gen6_check_flags,
1392 };
1393
1394 /* Table to describe Intel GMCH and AGP/PCIE GART drivers.  At least one of
1395  * driver and gmch_driver must be non-null, and find_gmch will determine
1396  * which one should be used if a gmch_chip_id is present.
1397  */
1398 static const struct intel_gtt_driver_description {
1399         unsigned int gmch_chip_id;
1400         char *name;
1401         const struct intel_gtt_driver *gtt_driver;
1402 } intel_gtt_chipsets[] = {
1403         { PCI_DEVICE_ID_INTEL_82810_IG1, "i810",
1404                 &i81x_gtt_driver},
1405         { PCI_DEVICE_ID_INTEL_82810_IG3, "i810",
1406                 &i81x_gtt_driver},
1407         { PCI_DEVICE_ID_INTEL_82810E_IG, "i810",
1408                 &i81x_gtt_driver},
1409         { PCI_DEVICE_ID_INTEL_82815_CGC, "i815",
1410                 &i81x_gtt_driver},
1411         { PCI_DEVICE_ID_INTEL_82830_CGC, "830M",
1412                 &i8xx_gtt_driver},
1413         { PCI_DEVICE_ID_INTEL_82845G_IG, "845G",
1414                 &i8xx_gtt_driver},
1415         { PCI_DEVICE_ID_INTEL_82854_IG, "854",
1416                 &i8xx_gtt_driver},
1417         { PCI_DEVICE_ID_INTEL_82855GM_IG, "855GM",
1418                 &i8xx_gtt_driver},
1419         { PCI_DEVICE_ID_INTEL_82865_IG, "865",
1420                 &i8xx_gtt_driver},
1421         { PCI_DEVICE_ID_INTEL_E7221_IG, "E7221 (i915)",
1422                 &i915_gtt_driver },
1423         { PCI_DEVICE_ID_INTEL_82915G_IG, "915G",
1424                 &i915_gtt_driver },
1425         { PCI_DEVICE_ID_INTEL_82915GM_IG, "915GM",
1426                 &i915_gtt_driver },
1427         { PCI_DEVICE_ID_INTEL_82945G_IG, "945G",
1428                 &i915_gtt_driver },
1429         { PCI_DEVICE_ID_INTEL_82945GM_IG, "945GM",
1430                 &i915_gtt_driver },
1431         { PCI_DEVICE_ID_INTEL_82945GME_IG, "945GME",
1432                 &i915_gtt_driver },
1433         { PCI_DEVICE_ID_INTEL_82946GZ_IG, "946GZ",
1434                 &i965_gtt_driver },
1435         { PCI_DEVICE_ID_INTEL_82G35_IG, "G35",
1436                 &i965_gtt_driver },
1437         { PCI_DEVICE_ID_INTEL_82965Q_IG, "965Q",
1438                 &i965_gtt_driver },
1439         { PCI_DEVICE_ID_INTEL_82965G_IG, "965G",
1440                 &i965_gtt_driver },
1441         { PCI_DEVICE_ID_INTEL_82965GM_IG, "965GM",
1442                 &i965_gtt_driver },
1443         { PCI_DEVICE_ID_INTEL_82965GME_IG, "965GME/GLE",
1444                 &i965_gtt_driver },
1445         { PCI_DEVICE_ID_INTEL_G33_IG, "G33",
1446                 &g33_gtt_driver },
1447         { PCI_DEVICE_ID_INTEL_Q35_IG, "Q35",
1448                 &g33_gtt_driver },
1449         { PCI_DEVICE_ID_INTEL_Q33_IG, "Q33",
1450                 &g33_gtt_driver },
1451         { PCI_DEVICE_ID_INTEL_PINEVIEW_M_IG, "GMA3150",
1452                 &pineview_gtt_driver },
1453         { PCI_DEVICE_ID_INTEL_PINEVIEW_IG, "GMA3150",
1454                 &pineview_gtt_driver },
1455         { PCI_DEVICE_ID_INTEL_GM45_IG, "GM45",
1456                 &g4x_gtt_driver },
1457         { PCI_DEVICE_ID_INTEL_EAGLELAKE_IG, "Eaglelake",
1458                 &g4x_gtt_driver },
1459         { PCI_DEVICE_ID_INTEL_Q45_IG, "Q45/Q43",
1460                 &g4x_gtt_driver },
1461         { PCI_DEVICE_ID_INTEL_G45_IG, "G45/G43",
1462                 &g4x_gtt_driver },
1463         { PCI_DEVICE_ID_INTEL_B43_IG, "B43",
1464                 &g4x_gtt_driver },
1465         { PCI_DEVICE_ID_INTEL_B43_1_IG, "B43",
1466                 &g4x_gtt_driver },
1467         { PCI_DEVICE_ID_INTEL_G41_IG, "G41",
1468                 &g4x_gtt_driver },
1469         { PCI_DEVICE_ID_INTEL_IRONLAKE_D_IG,
1470             "HD Graphics", &ironlake_gtt_driver },
1471         { PCI_DEVICE_ID_INTEL_IRONLAKE_M_IG,
1472             "HD Graphics", &ironlake_gtt_driver },
1473         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_GT1_IG,
1474             "Sandybridge", &sandybridge_gtt_driver },
1475         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_GT2_IG,
1476             "Sandybridge", &sandybridge_gtt_driver },
1477         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_GT2_PLUS_IG,
1478             "Sandybridge", &sandybridge_gtt_driver },
1479         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_M_GT1_IG,
1480             "Sandybridge", &sandybridge_gtt_driver },
1481         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_M_GT2_IG,
1482             "Sandybridge", &sandybridge_gtt_driver },
1483         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_M_GT2_PLUS_IG,
1484             "Sandybridge", &sandybridge_gtt_driver },
1485         { PCI_DEVICE_ID_INTEL_SANDYBRIDGE_S_IG,
1486             "Sandybridge", &sandybridge_gtt_driver },
1487         { PCI_DEVICE_ID_INTEL_IVYBRIDGE_GT1_IG,
1488             "Ivybridge", &sandybridge_gtt_driver },
1489         { PCI_DEVICE_ID_INTEL_IVYBRIDGE_GT2_IG,
1490             "Ivybridge", &sandybridge_gtt_driver },
1491         { PCI_DEVICE_ID_INTEL_IVYBRIDGE_M_GT1_IG,
1492             "Ivybridge", &sandybridge_gtt_driver },
1493         { PCI_DEVICE_ID_INTEL_IVYBRIDGE_M_GT2_IG,
1494             "Ivybridge", &sandybridge_gtt_driver },
1495         { PCI_DEVICE_ID_INTEL_IVYBRIDGE_S_GT1_IG,
1496             "Ivybridge", &sandybridge_gtt_driver },
1497         { PCI_DEVICE_ID_INTEL_IVYBRIDGE_S_GT2_IG,
1498             "Ivybridge", &sandybridge_gtt_driver },
1499         { PCI_DEVICE_ID_INTEL_VALLEYVIEW_IG,
1500             "ValleyView", &valleyview_gtt_driver },
1501         { PCI_DEVICE_ID_INTEL_HASWELL_D_GT1_IG,
1502             "Haswell", &sandybridge_gtt_driver },
1503         { PCI_DEVICE_ID_INTEL_HASWELL_D_GT2_IG,
1504             "Haswell", &sandybridge_gtt_driver },
1505         { PCI_DEVICE_ID_INTEL_HASWELL_M_GT1_IG,
1506             "Haswell", &sandybridge_gtt_driver },
1507         { PCI_DEVICE_ID_INTEL_HASWELL_M_GT2_IG,
1508             "Haswell", &sandybridge_gtt_driver },
1509         { PCI_DEVICE_ID_INTEL_HASWELL_S_GT1_IG,
1510             "Haswell", &sandybridge_gtt_driver },
1511         { PCI_DEVICE_ID_INTEL_HASWELL_S_GT2_IG,
1512             "Haswell", &sandybridge_gtt_driver },
1513         { PCI_DEVICE_ID_INTEL_HASWELL_SDV,
1514             "Haswell", &sandybridge_gtt_driver },
1515         { 0, NULL, NULL }
1516 };
1517
1518 static int find_gmch(u16 device)
1519 {
1520         struct pci_dev *gmch_device;
1521
1522         gmch_device = pci_get_device(PCI_VENDOR_ID_INTEL, device, NULL);
1523         if (gmch_device && PCI_FUNC(gmch_device->devfn) != 0) {
1524                 gmch_device = pci_get_device(PCI_VENDOR_ID_INTEL,
1525                                              device, gmch_device);
1526         }
1527
1528         if (!gmch_device)
1529                 return 0;
1530
1531         intel_private.pcidev = gmch_device;
1532         return 1;
1533 }
1534
1535 int intel_gmch_probe(struct pci_dev *bridge_pdev, struct pci_dev *gpu_pdev,
1536                      struct agp_bridge_data *bridge)
1537 {
1538         int i, mask;
1539
1540         /*
1541          * Can be called from the fake agp driver but also directly from
1542          * drm/i915.ko. Hence we need to check whether everything is set up
1543          * already.
1544          */
1545         if (intel_private.driver) {
1546                 intel_private.refcount++;
1547                 return 1;
1548         }
1549
1550         for (i = 0; intel_gtt_chipsets[i].name != NULL; i++) {
1551                 if (gpu_pdev) {
1552                         if (gpu_pdev->device ==
1553                             intel_gtt_chipsets[i].gmch_chip_id) {
1554                                 intel_private.pcidev = pci_dev_get(gpu_pdev);
1555                                 intel_private.driver =
1556                                         intel_gtt_chipsets[i].gtt_driver;
1557
1558                                 break;
1559                         }
1560                 } else if (find_gmch(intel_gtt_chipsets[i].gmch_chip_id)) {
1561                         intel_private.driver =
1562                                 intel_gtt_chipsets[i].gtt_driver;
1563                         break;
1564                 }
1565         }
1566
1567         if (!intel_private.driver)
1568                 return 0;
1569
1570         intel_private.refcount++;
1571
1572         if (bridge) {
1573                 bridge->driver = &intel_fake_agp_driver;
1574                 bridge->dev_private_data = &intel_private;
1575                 bridge->dev = bridge_pdev;
1576         }
1577
1578         intel_private.bridge_dev = pci_dev_get(bridge_pdev);
1579
1580         dev_info(&bridge_pdev->dev, "Intel %s Chipset\n", intel_gtt_chipsets[i].name);
1581
1582         mask = intel_private.driver->dma_mask_size;
1583         if (pci_set_dma_mask(intel_private.pcidev, DMA_BIT_MASK(mask)))
1584                 dev_err(&intel_private.pcidev->dev,
1585                         "set gfx device dma mask %d-bit failed!\n", mask);
1586         else
1587                 pci_set_consistent_dma_mask(intel_private.pcidev,
1588                                             DMA_BIT_MASK(mask));
1589
1590         if (intel_gtt_init() != 0) {
1591                 intel_gmch_remove();
1592
1593                 return 0;
1594         }
1595
1596         return 1;
1597 }
1598 EXPORT_SYMBOL(intel_gmch_probe);
1599
1600 const struct intel_gtt *intel_gtt_get(void)
1601 {
1602         return &intel_private.base;
1603 }
1604 EXPORT_SYMBOL(intel_gtt_get);
1605
1606 void intel_gtt_chipset_flush(void)
1607 {
1608         if (intel_private.driver->chipset_flush)
1609                 intel_private.driver->chipset_flush();
1610 }
1611 EXPORT_SYMBOL(intel_gtt_chipset_flush);
1612
1613 void intel_gmch_remove(void)
1614 {
1615         if (--intel_private.refcount)
1616                 return;
1617
1618         if (intel_private.pcidev)
1619                 pci_dev_put(intel_private.pcidev);
1620         if (intel_private.bridge_dev)
1621                 pci_dev_put(intel_private.bridge_dev);
1622         intel_private.driver = NULL;
1623 }
1624 EXPORT_SYMBOL(intel_gmch_remove);
1625
1626 MODULE_AUTHOR("Dave Jones <davej@redhat.com>");
1627 MODULE_LICENSE("GPL and additional rights");