]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/i915/i915_gem_gtt.c
drm/i915: Extract common cleanup into i915_ppgtt_release
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / i915 / i915_gem_gtt.c
CommitLineData
76aaf220
DV
1/*
2 * Copyright © 2010 Daniel Vetter
c4ac524c 3 * Copyright © 2011-2014 Intel Corporation
76aaf220
DV
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 * IN THE SOFTWARE.
23 *
24 */
25
0e46ce2e 26#include <linux/seq_file.h>
760285e7
DH
27#include <drm/drmP.h>
28#include <drm/i915_drm.h>
76aaf220
DV
29#include "i915_drv.h"
30#include "i915_trace.h"
31#include "intel_drv.h"
32
ee0ce478
VS
33static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv);
34static void chv_setup_private_ppat(struct drm_i915_private *dev_priv);
a2319c08 35
cfa7c862
DV
36static int sanitize_enable_ppgtt(struct drm_device *dev, int enable_ppgtt)
37{
38 if (enable_ppgtt == 0 || !HAS_ALIASING_PPGTT(dev))
39 return 0;
40
41 if (enable_ppgtt == 1)
42 return 1;
43
44 if (enable_ppgtt == 2 && HAS_PPGTT(dev))
45 return 2;
46
93a25a9e
DV
47#ifdef CONFIG_INTEL_IOMMU
48 /* Disable ppgtt on SNB if VT-d is on. */
49 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped) {
50 DRM_INFO("Disabling PPGTT because VT-d is on\n");
cfa7c862 51 return 0;
93a25a9e
DV
52 }
53#endif
54
62942ed7 55 /* Early VLV doesn't have this */
ca2aed6c
VS
56 if (IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
57 dev->pdev->revision < 0xb) {
62942ed7
JB
58 DRM_DEBUG_DRIVER("disabling PPGTT on pre-B3 step VLV\n");
59 return 0;
60 }
61
cfa7c862 62 return HAS_ALIASING_PPGTT(dev) ? 1 : 0;
93a25a9e
DV
63}
64
fbe5d36e 65
6f65e29a
BW
66static void ppgtt_bind_vma(struct i915_vma *vma,
67 enum i915_cache_level cache_level,
68 u32 flags);
69static void ppgtt_unbind_vma(struct i915_vma *vma);
70
94ec8f61
BW
71static inline gen8_gtt_pte_t gen8_pte_encode(dma_addr_t addr,
72 enum i915_cache_level level,
73 bool valid)
74{
75 gen8_gtt_pte_t pte = valid ? _PAGE_PRESENT | _PAGE_RW : 0;
76 pte |= addr;
63c42e56
BW
77
78 switch (level) {
79 case I915_CACHE_NONE:
fbe5d36e 80 pte |= PPAT_UNCACHED_INDEX;
63c42e56
BW
81 break;
82 case I915_CACHE_WT:
83 pte |= PPAT_DISPLAY_ELLC_INDEX;
84 break;
85 default:
86 pte |= PPAT_CACHED_INDEX;
87 break;
88 }
89
94ec8f61
BW
90 return pte;
91}
92
b1fe6673
BW
93static inline gen8_ppgtt_pde_t gen8_pde_encode(struct drm_device *dev,
94 dma_addr_t addr,
95 enum i915_cache_level level)
96{
97 gen8_ppgtt_pde_t pde = _PAGE_PRESENT | _PAGE_RW;
98 pde |= addr;
99 if (level != I915_CACHE_NONE)
100 pde |= PPAT_CACHED_PDE_INDEX;
101 else
102 pde |= PPAT_UNCACHED_INDEX;
103 return pde;
104}
105
350ec881 106static gen6_gtt_pte_t snb_pte_encode(dma_addr_t addr,
b35b380e 107 enum i915_cache_level level,
24f3a8cf 108 bool valid, u32 unused)
54d12527 109{
b35b380e 110 gen6_gtt_pte_t pte = valid ? GEN6_PTE_VALID : 0;
54d12527 111 pte |= GEN6_PTE_ADDR_ENCODE(addr);
e7210c3c
BW
112
113 switch (level) {
350ec881
CW
114 case I915_CACHE_L3_LLC:
115 case I915_CACHE_LLC:
116 pte |= GEN6_PTE_CACHE_LLC;
117 break;
118 case I915_CACHE_NONE:
119 pte |= GEN6_PTE_UNCACHED;
120 break;
121 default:
122 WARN_ON(1);
123 }
124
125 return pte;
126}
127
128static gen6_gtt_pte_t ivb_pte_encode(dma_addr_t addr,
b35b380e 129 enum i915_cache_level level,
24f3a8cf 130 bool valid, u32 unused)
350ec881 131{
b35b380e 132 gen6_gtt_pte_t pte = valid ? GEN6_PTE_VALID : 0;
350ec881
CW
133 pte |= GEN6_PTE_ADDR_ENCODE(addr);
134
135 switch (level) {
136 case I915_CACHE_L3_LLC:
137 pte |= GEN7_PTE_CACHE_L3_LLC;
e7210c3c
BW
138 break;
139 case I915_CACHE_LLC:
140 pte |= GEN6_PTE_CACHE_LLC;
141 break;
142 case I915_CACHE_NONE:
9119708c 143 pte |= GEN6_PTE_UNCACHED;
e7210c3c
BW
144 break;
145 default:
350ec881 146 WARN_ON(1);
e7210c3c
BW
147 }
148
54d12527
BW
149 return pte;
150}
151
80a74f7f 152static gen6_gtt_pte_t byt_pte_encode(dma_addr_t addr,
b35b380e 153 enum i915_cache_level level,
24f3a8cf 154 bool valid, u32 flags)
93c34e70 155{
b35b380e 156 gen6_gtt_pte_t pte = valid ? GEN6_PTE_VALID : 0;
93c34e70
KG
157 pte |= GEN6_PTE_ADDR_ENCODE(addr);
158
159 /* Mark the page as writeable. Other platforms don't have a
160 * setting for read-only/writable, so this matches that behavior.
161 */
24f3a8cf
AG
162 if (!(flags & PTE_READ_ONLY))
163 pte |= BYT_PTE_WRITEABLE;
93c34e70
KG
164
165 if (level != I915_CACHE_NONE)
166 pte |= BYT_PTE_SNOOPED_BY_CPU_CACHES;
167
168 return pte;
169}
170
80a74f7f 171static gen6_gtt_pte_t hsw_pte_encode(dma_addr_t addr,
b35b380e 172 enum i915_cache_level level,
24f3a8cf 173 bool valid, u32 unused)
9119708c 174{
b35b380e 175 gen6_gtt_pte_t pte = valid ? GEN6_PTE_VALID : 0;
0d8ff15e 176 pte |= HSW_PTE_ADDR_ENCODE(addr);
9119708c
KG
177
178 if (level != I915_CACHE_NONE)
87a6b688 179 pte |= HSW_WB_LLC_AGE3;
9119708c
KG
180
181 return pte;
182}
183
4d15c145 184static gen6_gtt_pte_t iris_pte_encode(dma_addr_t addr,
b35b380e 185 enum i915_cache_level level,
24f3a8cf 186 bool valid, u32 unused)
4d15c145 187{
b35b380e 188 gen6_gtt_pte_t pte = valid ? GEN6_PTE_VALID : 0;
4d15c145
BW
189 pte |= HSW_PTE_ADDR_ENCODE(addr);
190
651d794f
CW
191 switch (level) {
192 case I915_CACHE_NONE:
193 break;
194 case I915_CACHE_WT:
c51e9701 195 pte |= HSW_WT_ELLC_LLC_AGE3;
651d794f
CW
196 break;
197 default:
c51e9701 198 pte |= HSW_WB_ELLC_LLC_AGE3;
651d794f
CW
199 break;
200 }
4d15c145
BW
201
202 return pte;
203}
204
94e409c1 205/* Broadwell Page Directory Pointer Descriptors */
a4872ba6 206static int gen8_write_pdp(struct intel_engine_cs *ring, unsigned entry,
e178f705 207 uint64_t val, bool synchronous)
94e409c1 208{
e178f705 209 struct drm_i915_private *dev_priv = ring->dev->dev_private;
94e409c1
BW
210 int ret;
211
212 BUG_ON(entry >= 4);
213
e178f705
BW
214 if (synchronous) {
215 I915_WRITE(GEN8_RING_PDP_UDW(ring, entry), val >> 32);
216 I915_WRITE(GEN8_RING_PDP_LDW(ring, entry), (u32)val);
217 return 0;
218 }
219
94e409c1
BW
220 ret = intel_ring_begin(ring, 6);
221 if (ret)
222 return ret;
223
224 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
225 intel_ring_emit(ring, GEN8_RING_PDP_UDW(ring, entry));
226 intel_ring_emit(ring, (u32)(val >> 32));
227 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
228 intel_ring_emit(ring, GEN8_RING_PDP_LDW(ring, entry));
229 intel_ring_emit(ring, (u32)(val));
230 intel_ring_advance(ring);
231
232 return 0;
233}
234
eeb9488e 235static int gen8_mm_switch(struct i915_hw_ppgtt *ppgtt,
a4872ba6 236 struct intel_engine_cs *ring,
eeb9488e 237 bool synchronous)
94e409c1 238{
eeb9488e 239 int i, ret;
94e409c1
BW
240
241 /* bit of a hack to find the actual last used pd */
242 int used_pd = ppgtt->num_pd_entries / GEN8_PDES_PER_PAGE;
243
94e409c1
BW
244 for (i = used_pd - 1; i >= 0; i--) {
245 dma_addr_t addr = ppgtt->pd_dma_addr[i];
eeb9488e
BW
246 ret = gen8_write_pdp(ring, i, addr, synchronous);
247 if (ret)
248 return ret;
94e409c1 249 }
d595bd4b 250
eeb9488e 251 return 0;
94e409c1
BW
252}
253
459108b8 254static void gen8_ppgtt_clear_range(struct i915_address_space *vm,
782f1495
BW
255 uint64_t start,
256 uint64_t length,
459108b8
BW
257 bool use_scratch)
258{
259 struct i915_hw_ppgtt *ppgtt =
260 container_of(vm, struct i915_hw_ppgtt, base);
261 gen8_gtt_pte_t *pt_vaddr, scratch_pte;
7ad47cf2
BW
262 unsigned pdpe = start >> GEN8_PDPE_SHIFT & GEN8_PDPE_MASK;
263 unsigned pde = start >> GEN8_PDE_SHIFT & GEN8_PDE_MASK;
264 unsigned pte = start >> GEN8_PTE_SHIFT & GEN8_PTE_MASK;
782f1495 265 unsigned num_entries = length >> PAGE_SHIFT;
459108b8
BW
266 unsigned last_pte, i;
267
268 scratch_pte = gen8_pte_encode(ppgtt->base.scratch.addr,
269 I915_CACHE_LLC, use_scratch);
270
271 while (num_entries) {
7ad47cf2 272 struct page *page_table = ppgtt->gen8_pt_pages[pdpe][pde];
459108b8 273
7ad47cf2 274 last_pte = pte + num_entries;
459108b8
BW
275 if (last_pte > GEN8_PTES_PER_PAGE)
276 last_pte = GEN8_PTES_PER_PAGE;
277
278 pt_vaddr = kmap_atomic(page_table);
279
7ad47cf2 280 for (i = pte; i < last_pte; i++) {
459108b8 281 pt_vaddr[i] = scratch_pte;
7ad47cf2
BW
282 num_entries--;
283 }
459108b8 284
fd1ab8f4
RB
285 if (!HAS_LLC(ppgtt->base.dev))
286 drm_clflush_virt_range(pt_vaddr, PAGE_SIZE);
459108b8
BW
287 kunmap_atomic(pt_vaddr);
288
7ad47cf2
BW
289 pte = 0;
290 if (++pde == GEN8_PDES_PER_PAGE) {
291 pdpe++;
292 pde = 0;
293 }
459108b8
BW
294 }
295}
296
9df15b49
BW
297static void gen8_ppgtt_insert_entries(struct i915_address_space *vm,
298 struct sg_table *pages,
782f1495 299 uint64_t start,
24f3a8cf 300 enum i915_cache_level cache_level, u32 unused)
9df15b49
BW
301{
302 struct i915_hw_ppgtt *ppgtt =
303 container_of(vm, struct i915_hw_ppgtt, base);
304 gen8_gtt_pte_t *pt_vaddr;
7ad47cf2
BW
305 unsigned pdpe = start >> GEN8_PDPE_SHIFT & GEN8_PDPE_MASK;
306 unsigned pde = start >> GEN8_PDE_SHIFT & GEN8_PDE_MASK;
307 unsigned pte = start >> GEN8_PTE_SHIFT & GEN8_PTE_MASK;
9df15b49
BW
308 struct sg_page_iter sg_iter;
309
6f1cc993 310 pt_vaddr = NULL;
7ad47cf2 311
9df15b49 312 for_each_sg_page(pages->sgl, &sg_iter, pages->nents, 0) {
7ad47cf2
BW
313 if (WARN_ON(pdpe >= GEN8_LEGACY_PDPS))
314 break;
315
6f1cc993 316 if (pt_vaddr == NULL)
7ad47cf2 317 pt_vaddr = kmap_atomic(ppgtt->gen8_pt_pages[pdpe][pde]);
9df15b49 318
7ad47cf2 319 pt_vaddr[pte] =
6f1cc993
CW
320 gen8_pte_encode(sg_page_iter_dma_address(&sg_iter),
321 cache_level, true);
7ad47cf2 322 if (++pte == GEN8_PTES_PER_PAGE) {
fd1ab8f4
RB
323 if (!HAS_LLC(ppgtt->base.dev))
324 drm_clflush_virt_range(pt_vaddr, PAGE_SIZE);
9df15b49 325 kunmap_atomic(pt_vaddr);
6f1cc993 326 pt_vaddr = NULL;
7ad47cf2
BW
327 if (++pde == GEN8_PDES_PER_PAGE) {
328 pdpe++;
329 pde = 0;
330 }
331 pte = 0;
9df15b49
BW
332 }
333 }
fd1ab8f4
RB
334 if (pt_vaddr) {
335 if (!HAS_LLC(ppgtt->base.dev))
336 drm_clflush_virt_range(pt_vaddr, PAGE_SIZE);
6f1cc993 337 kunmap_atomic(pt_vaddr);
fd1ab8f4 338 }
9df15b49
BW
339}
340
7ad47cf2
BW
341static void gen8_free_page_tables(struct page **pt_pages)
342{
343 int i;
344
345 if (pt_pages == NULL)
346 return;
347
348 for (i = 0; i < GEN8_PDES_PER_PAGE; i++)
349 if (pt_pages[i])
350 __free_pages(pt_pages[i], 0);
351}
352
353static void gen8_ppgtt_free(const struct i915_hw_ppgtt *ppgtt)
b45a6715
BW
354{
355 int i;
356
7ad47cf2
BW
357 for (i = 0; i < ppgtt->num_pd_pages; i++) {
358 gen8_free_page_tables(ppgtt->gen8_pt_pages[i]);
359 kfree(ppgtt->gen8_pt_pages[i]);
b45a6715 360 kfree(ppgtt->gen8_pt_dma_addr[i]);
7ad47cf2 361 }
b45a6715 362
b45a6715
BW
363 __free_pages(ppgtt->pd_pages, get_order(ppgtt->num_pd_pages << PAGE_SHIFT));
364}
365
366static void gen8_ppgtt_unmap_pages(struct i915_hw_ppgtt *ppgtt)
367{
f3a964b9 368 struct pci_dev *hwdev = ppgtt->base.dev->pdev;
b45a6715
BW
369 int i, j;
370
371 for (i = 0; i < ppgtt->num_pd_pages; i++) {
372 /* TODO: In the future we'll support sparse mappings, so this
373 * will have to change. */
374 if (!ppgtt->pd_dma_addr[i])
375 continue;
376
f3a964b9
BW
377 pci_unmap_page(hwdev, ppgtt->pd_dma_addr[i], PAGE_SIZE,
378 PCI_DMA_BIDIRECTIONAL);
b45a6715
BW
379
380 for (j = 0; j < GEN8_PDES_PER_PAGE; j++) {
381 dma_addr_t addr = ppgtt->gen8_pt_dma_addr[i][j];
382 if (addr)
f3a964b9
BW
383 pci_unmap_page(hwdev, addr, PAGE_SIZE,
384 PCI_DMA_BIDIRECTIONAL);
b45a6715
BW
385 }
386 }
387}
388
37aca44a
BW
389static void gen8_ppgtt_cleanup(struct i915_address_space *vm)
390{
391 struct i915_hw_ppgtt *ppgtt =
392 container_of(vm, struct i915_hw_ppgtt, base);
37aca44a 393
b45a6715
BW
394 gen8_ppgtt_unmap_pages(ppgtt);
395 gen8_ppgtt_free(ppgtt);
37aca44a
BW
396}
397
7ad47cf2
BW
398static struct page **__gen8_alloc_page_tables(void)
399{
400 struct page **pt_pages;
401 int i;
402
403 pt_pages = kcalloc(GEN8_PDES_PER_PAGE, sizeof(struct page *), GFP_KERNEL);
404 if (!pt_pages)
405 return ERR_PTR(-ENOMEM);
406
407 for (i = 0; i < GEN8_PDES_PER_PAGE; i++) {
408 pt_pages[i] = alloc_page(GFP_KERNEL);
409 if (!pt_pages[i])
410 goto bail;
411 }
412
413 return pt_pages;
414
415bail:
416 gen8_free_page_tables(pt_pages);
417 kfree(pt_pages);
418 return ERR_PTR(-ENOMEM);
419}
420
bf2b4ed2
BW
421static int gen8_ppgtt_allocate_page_tables(struct i915_hw_ppgtt *ppgtt,
422 const int max_pdp)
423{
7ad47cf2 424 struct page **pt_pages[GEN8_LEGACY_PDPS];
7ad47cf2 425 int i, ret;
bf2b4ed2 426
7ad47cf2
BW
427 for (i = 0; i < max_pdp; i++) {
428 pt_pages[i] = __gen8_alloc_page_tables();
429 if (IS_ERR(pt_pages[i])) {
430 ret = PTR_ERR(pt_pages[i]);
431 goto unwind_out;
432 }
433 }
434
435 /* NB: Avoid touching gen8_pt_pages until last to keep the allocation,
436 * "atomic" - for cleanup purposes.
437 */
438 for (i = 0; i < max_pdp; i++)
439 ppgtt->gen8_pt_pages[i] = pt_pages[i];
bf2b4ed2 440
bf2b4ed2 441 return 0;
7ad47cf2
BW
442
443unwind_out:
444 while (i--) {
445 gen8_free_page_tables(pt_pages[i]);
446 kfree(pt_pages[i]);
447 }
448
449 return ret;
bf2b4ed2
BW
450}
451
452static int gen8_ppgtt_allocate_dma(struct i915_hw_ppgtt *ppgtt)
453{
454 int i;
455
456 for (i = 0; i < ppgtt->num_pd_pages; i++) {
457 ppgtt->gen8_pt_dma_addr[i] = kcalloc(GEN8_PDES_PER_PAGE,
458 sizeof(dma_addr_t),
459 GFP_KERNEL);
460 if (!ppgtt->gen8_pt_dma_addr[i])
461 return -ENOMEM;
462 }
463
464 return 0;
465}
466
467static int gen8_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt,
468 const int max_pdp)
469{
470 ppgtt->pd_pages = alloc_pages(GFP_KERNEL, get_order(max_pdp << PAGE_SHIFT));
471 if (!ppgtt->pd_pages)
472 return -ENOMEM;
473
474 ppgtt->num_pd_pages = 1 << get_order(max_pdp << PAGE_SHIFT);
475 BUG_ON(ppgtt->num_pd_pages > GEN8_LEGACY_PDPS);
476
477 return 0;
478}
479
480static int gen8_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt,
481 const int max_pdp)
482{
483 int ret;
484
485 ret = gen8_ppgtt_allocate_page_directories(ppgtt, max_pdp);
486 if (ret)
487 return ret;
488
489 ret = gen8_ppgtt_allocate_page_tables(ppgtt, max_pdp);
490 if (ret) {
491 __free_pages(ppgtt->pd_pages, get_order(max_pdp << PAGE_SHIFT));
492 return ret;
493 }
494
495 ppgtt->num_pd_entries = max_pdp * GEN8_PDES_PER_PAGE;
496
497 ret = gen8_ppgtt_allocate_dma(ppgtt);
498 if (ret)
499 gen8_ppgtt_free(ppgtt);
500
501 return ret;
502}
503
504static int gen8_ppgtt_setup_page_directories(struct i915_hw_ppgtt *ppgtt,
505 const int pd)
506{
507 dma_addr_t pd_addr;
508 int ret;
509
510 pd_addr = pci_map_page(ppgtt->base.dev->pdev,
511 &ppgtt->pd_pages[pd], 0,
512 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
513
514 ret = pci_dma_mapping_error(ppgtt->base.dev->pdev, pd_addr);
515 if (ret)
516 return ret;
517
518 ppgtt->pd_dma_addr[pd] = pd_addr;
519
520 return 0;
521}
522
523static int gen8_ppgtt_setup_page_tables(struct i915_hw_ppgtt *ppgtt,
524 const int pd,
525 const int pt)
526{
527 dma_addr_t pt_addr;
528 struct page *p;
529 int ret;
530
7ad47cf2 531 p = ppgtt->gen8_pt_pages[pd][pt];
bf2b4ed2
BW
532 pt_addr = pci_map_page(ppgtt->base.dev->pdev,
533 p, 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
534 ret = pci_dma_mapping_error(ppgtt->base.dev->pdev, pt_addr);
535 if (ret)
536 return ret;
537
538 ppgtt->gen8_pt_dma_addr[pd][pt] = pt_addr;
539
540 return 0;
541}
542
37aca44a 543/**
f3a964b9
BW
544 * GEN8 legacy ppgtt programming is accomplished through a max 4 PDP registers
545 * with a net effect resembling a 2-level page table in normal x86 terms. Each
546 * PDP represents 1GB of memory 4 * 512 * 512 * 4096 = 4GB legacy 32b address
547 * space.
37aca44a 548 *
f3a964b9
BW
549 * FIXME: split allocation into smaller pieces. For now we only ever do this
550 * once, but with full PPGTT, the multiple contiguous allocations will be bad.
37aca44a 551 * TODO: Do something with the size parameter
f3a964b9 552 */
37aca44a
BW
553static int gen8_ppgtt_init(struct i915_hw_ppgtt *ppgtt, uint64_t size)
554{
37aca44a 555 const int max_pdp = DIV_ROUND_UP(size, 1 << 30);
bf2b4ed2 556 const int min_pt_pages = GEN8_PDES_PER_PAGE * max_pdp;
f3a964b9 557 int i, j, ret;
37aca44a
BW
558
559 if (size % (1<<30))
560 DRM_INFO("Pages will be wasted unless GTT size (%llu) is divisible by 1GB\n", size);
561
bf2b4ed2
BW
562 /* 1. Do all our allocations for page directories and page tables. */
563 ret = gen8_ppgtt_alloc(ppgtt, max_pdp);
564 if (ret)
565 return ret;
f3a964b9 566
37aca44a 567 /*
bf2b4ed2 568 * 2. Create DMA mappings for the page directories and page tables.
37aca44a
BW
569 */
570 for (i = 0; i < max_pdp; i++) {
bf2b4ed2 571 ret = gen8_ppgtt_setup_page_directories(ppgtt, i);
f3a964b9
BW
572 if (ret)
573 goto bail;
37aca44a 574
37aca44a 575 for (j = 0; j < GEN8_PDES_PER_PAGE; j++) {
bf2b4ed2 576 ret = gen8_ppgtt_setup_page_tables(ppgtt, i, j);
f3a964b9
BW
577 if (ret)
578 goto bail;
37aca44a
BW
579 }
580 }
581
f3a964b9
BW
582 /*
583 * 3. Map all the page directory entires to point to the page tables
584 * we've allocated.
585 *
586 * For now, the PPGTT helper functions all require that the PDEs are
b1fe6673 587 * plugged in correctly. So we do that now/here. For aliasing PPGTT, we
f3a964b9
BW
588 * will never need to touch the PDEs again.
589 */
b1fe6673
BW
590 for (i = 0; i < max_pdp; i++) {
591 gen8_ppgtt_pde_t *pd_vaddr;
592 pd_vaddr = kmap_atomic(&ppgtt->pd_pages[i]);
593 for (j = 0; j < GEN8_PDES_PER_PAGE; j++) {
594 dma_addr_t addr = ppgtt->gen8_pt_dma_addr[i][j];
595 pd_vaddr[j] = gen8_pde_encode(ppgtt->base.dev, addr,
596 I915_CACHE_LLC);
597 }
fd1ab8f4
RB
598 if (!HAS_LLC(ppgtt->base.dev))
599 drm_clflush_virt_range(pd_vaddr, PAGE_SIZE);
b1fe6673
BW
600 kunmap_atomic(pd_vaddr);
601 }
602
f3a964b9
BW
603 ppgtt->switch_mm = gen8_mm_switch;
604 ppgtt->base.clear_range = gen8_ppgtt_clear_range;
605 ppgtt->base.insert_entries = gen8_ppgtt_insert_entries;
606 ppgtt->base.cleanup = gen8_ppgtt_cleanup;
607 ppgtt->base.start = 0;
5abbcca3 608 ppgtt->base.total = ppgtt->num_pd_entries * GEN8_PTES_PER_PAGE * PAGE_SIZE;
f3a964b9 609
5abbcca3 610 ppgtt->base.clear_range(&ppgtt->base, 0, ppgtt->base.total, true);
459108b8 611
37aca44a
BW
612 DRM_DEBUG_DRIVER("Allocated %d pages for page directories (%d wasted)\n",
613 ppgtt->num_pd_pages, ppgtt->num_pd_pages - max_pdp);
614 DRM_DEBUG_DRIVER("Allocated %d pages for page tables (%lld wasted)\n",
5abbcca3
BW
615 ppgtt->num_pd_entries,
616 (ppgtt->num_pd_entries - min_pt_pages) + size % (1<<30));
28cf5415 617 return 0;
37aca44a 618
f3a964b9
BW
619bail:
620 gen8_ppgtt_unmap_pages(ppgtt);
621 gen8_ppgtt_free(ppgtt);
37aca44a
BW
622 return ret;
623}
624
87d60b63
BW
625static void gen6_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
626{
627 struct drm_i915_private *dev_priv = ppgtt->base.dev->dev_private;
628 struct i915_address_space *vm = &ppgtt->base;
629 gen6_gtt_pte_t __iomem *pd_addr;
630 gen6_gtt_pte_t scratch_pte;
631 uint32_t pd_entry;
632 int pte, pde;
633
24f3a8cf 634 scratch_pte = vm->pte_encode(vm->scratch.addr, I915_CACHE_LLC, true, 0);
87d60b63
BW
635
636 pd_addr = (gen6_gtt_pte_t __iomem *)dev_priv->gtt.gsm +
637 ppgtt->pd_offset / sizeof(gen6_gtt_pte_t);
638
639 seq_printf(m, " VM %p (pd_offset %x-%x):\n", vm,
640 ppgtt->pd_offset, ppgtt->pd_offset + ppgtt->num_pd_entries);
641 for (pde = 0; pde < ppgtt->num_pd_entries; pde++) {
642 u32 expected;
643 gen6_gtt_pte_t *pt_vaddr;
644 dma_addr_t pt_addr = ppgtt->pt_dma_addr[pde];
645 pd_entry = readl(pd_addr + pde);
646 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID);
647
648 if (pd_entry != expected)
649 seq_printf(m, "\tPDE #%d mismatch: Actual PDE: %x Expected PDE: %x\n",
650 pde,
651 pd_entry,
652 expected);
653 seq_printf(m, "\tPDE: %x\n", pd_entry);
654
655 pt_vaddr = kmap_atomic(ppgtt->pt_pages[pde]);
656 for (pte = 0; pte < I915_PPGTT_PT_ENTRIES; pte+=4) {
657 unsigned long va =
658 (pde * PAGE_SIZE * I915_PPGTT_PT_ENTRIES) +
659 (pte * PAGE_SIZE);
660 int i;
661 bool found = false;
662 for (i = 0; i < 4; i++)
663 if (pt_vaddr[pte + i] != scratch_pte)
664 found = true;
665 if (!found)
666 continue;
667
668 seq_printf(m, "\t\t0x%lx [%03d,%04d]: =", va, pde, pte);
669 for (i = 0; i < 4; i++) {
670 if (pt_vaddr[pte + i] != scratch_pte)
671 seq_printf(m, " %08x", pt_vaddr[pte + i]);
672 else
673 seq_puts(m, " SCRATCH ");
674 }
675 seq_puts(m, "\n");
676 }
677 kunmap_atomic(pt_vaddr);
678 }
679}
680
3e302542 681static void gen6_write_pdes(struct i915_hw_ppgtt *ppgtt)
6197349b 682{
853ba5d2 683 struct drm_i915_private *dev_priv = ppgtt->base.dev->dev_private;
6197349b
BW
684 gen6_gtt_pte_t __iomem *pd_addr;
685 uint32_t pd_entry;
686 int i;
687
0a732870 688 WARN_ON(ppgtt->pd_offset & 0x3f);
6197349b
BW
689 pd_addr = (gen6_gtt_pte_t __iomem*)dev_priv->gtt.gsm +
690 ppgtt->pd_offset / sizeof(gen6_gtt_pte_t);
691 for (i = 0; i < ppgtt->num_pd_entries; i++) {
692 dma_addr_t pt_addr;
693
694 pt_addr = ppgtt->pt_dma_addr[i];
695 pd_entry = GEN6_PDE_ADDR_ENCODE(pt_addr);
696 pd_entry |= GEN6_PDE_VALID;
697
698 writel(pd_entry, pd_addr + i);
699 }
700 readl(pd_addr);
3e302542
BW
701}
702
b4a74e3a 703static uint32_t get_pd_offset(struct i915_hw_ppgtt *ppgtt)
3e302542 704{
b4a74e3a
BW
705 BUG_ON(ppgtt->pd_offset & 0x3f);
706
707 return (ppgtt->pd_offset / 64) << 16;
708}
709
90252e5c 710static int hsw_mm_switch(struct i915_hw_ppgtt *ppgtt,
a4872ba6 711 struct intel_engine_cs *ring,
90252e5c
BW
712 bool synchronous)
713{
714 struct drm_device *dev = ppgtt->base.dev;
715 struct drm_i915_private *dev_priv = dev->dev_private;
716 int ret;
717
718 /* If we're in reset, we can assume the GPU is sufficiently idle to
719 * manually frob these bits. Ideally we could use the ring functions,
720 * except our error handling makes it quite difficult (can't use
721 * intel_ring_begin, ring->flush, or intel_ring_advance)
722 *
723 * FIXME: We should try not to special case reset
724 */
725 if (synchronous ||
726 i915_reset_in_progress(&dev_priv->gpu_error)) {
727 WARN_ON(ppgtt != dev_priv->mm.aliasing_ppgtt);
728 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
729 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
730 POSTING_READ(RING_PP_DIR_BASE(ring));
731 return 0;
732 }
733
734 /* NB: TLBs must be flushed and invalidated before a switch */
735 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
736 if (ret)
737 return ret;
738
739 ret = intel_ring_begin(ring, 6);
740 if (ret)
741 return ret;
742
743 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
744 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
745 intel_ring_emit(ring, PP_DIR_DCLV_2G);
746 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
747 intel_ring_emit(ring, get_pd_offset(ppgtt));
748 intel_ring_emit(ring, MI_NOOP);
749 intel_ring_advance(ring);
750
751 return 0;
752}
753
48a10389 754static int gen7_mm_switch(struct i915_hw_ppgtt *ppgtt,
a4872ba6 755 struct intel_engine_cs *ring,
48a10389
BW
756 bool synchronous)
757{
758 struct drm_device *dev = ppgtt->base.dev;
759 struct drm_i915_private *dev_priv = dev->dev_private;
760 int ret;
761
762 /* If we're in reset, we can assume the GPU is sufficiently idle to
763 * manually frob these bits. Ideally we could use the ring functions,
764 * except our error handling makes it quite difficult (can't use
765 * intel_ring_begin, ring->flush, or intel_ring_advance)
766 *
767 * FIXME: We should try not to special case reset
768 */
769 if (synchronous ||
770 i915_reset_in_progress(&dev_priv->gpu_error)) {
771 WARN_ON(ppgtt != dev_priv->mm.aliasing_ppgtt);
772 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
773 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
774 POSTING_READ(RING_PP_DIR_BASE(ring));
775 return 0;
776 }
777
778 /* NB: TLBs must be flushed and invalidated before a switch */
779 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
780 if (ret)
781 return ret;
782
783 ret = intel_ring_begin(ring, 6);
784 if (ret)
785 return ret;
786
787 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
788 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
789 intel_ring_emit(ring, PP_DIR_DCLV_2G);
790 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
791 intel_ring_emit(ring, get_pd_offset(ppgtt));
792 intel_ring_emit(ring, MI_NOOP);
793 intel_ring_advance(ring);
794
90252e5c
BW
795 /* XXX: RCS is the only one to auto invalidate the TLBs? */
796 if (ring->id != RCS) {
797 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
798 if (ret)
799 return ret;
800 }
801
48a10389
BW
802 return 0;
803}
804
eeb9488e 805static int gen6_mm_switch(struct i915_hw_ppgtt *ppgtt,
a4872ba6 806 struct intel_engine_cs *ring,
eeb9488e
BW
807 bool synchronous)
808{
809 struct drm_device *dev = ppgtt->base.dev;
810 struct drm_i915_private *dev_priv = dev->dev_private;
811
48a10389
BW
812 if (!synchronous)
813 return 0;
814
eeb9488e
BW
815 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
816 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
817
818 POSTING_READ(RING_PP_DIR_DCLV(ring));
819
820 return 0;
821}
822
82460d97 823static void gen8_ppgtt_enable(struct drm_device *dev)
eeb9488e 824{
eeb9488e 825 struct drm_i915_private *dev_priv = dev->dev_private;
a4872ba6 826 struct intel_engine_cs *ring;
82460d97 827 int j;
3e302542 828
eeb9488e
BW
829 for_each_ring(ring, dev_priv, j) {
830 I915_WRITE(RING_MODE_GEN7(ring),
831 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
eeb9488e 832 }
eeb9488e 833}
6197349b 834
82460d97 835static void gen7_ppgtt_enable(struct drm_device *dev)
3e302542 836{
50227e1c 837 struct drm_i915_private *dev_priv = dev->dev_private;
a4872ba6 838 struct intel_engine_cs *ring;
b4a74e3a 839 uint32_t ecochk, ecobits;
3e302542 840 int i;
6197349b 841
b4a74e3a
BW
842 ecobits = I915_READ(GAC_ECO_BITS);
843 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
a65c2fcd 844
b4a74e3a
BW
845 ecochk = I915_READ(GAM_ECOCHK);
846 if (IS_HASWELL(dev)) {
847 ecochk |= ECOCHK_PPGTT_WB_HSW;
848 } else {
849 ecochk |= ECOCHK_PPGTT_LLC_IVB;
850 ecochk &= ~ECOCHK_PPGTT_GFDT_IVB;
851 }
852 I915_WRITE(GAM_ECOCHK, ecochk);
a65c2fcd 853
b4a74e3a 854 for_each_ring(ring, dev_priv, i) {
6197349b 855 /* GFX_MODE is per-ring on gen7+ */
b4a74e3a
BW
856 I915_WRITE(RING_MODE_GEN7(ring),
857 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
6197349b 858 }
b4a74e3a 859}
6197349b 860
82460d97 861static void gen6_ppgtt_enable(struct drm_device *dev)
b4a74e3a 862{
50227e1c 863 struct drm_i915_private *dev_priv = dev->dev_private;
b4a74e3a 864 uint32_t ecochk, gab_ctl, ecobits;
a65c2fcd 865
b4a74e3a
BW
866 ecobits = I915_READ(GAC_ECO_BITS);
867 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_SNB_BIT |
868 ECOBITS_PPGTT_CACHE64B);
6197349b 869
b4a74e3a
BW
870 gab_ctl = I915_READ(GAB_CTL);
871 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
872
873 ecochk = I915_READ(GAM_ECOCHK);
874 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT | ECOCHK_PPGTT_CACHE64B);
875
876 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
6197349b
BW
877}
878
1d2a314c 879/* PPGTT support for Sandybdrige/Gen6 and later */
853ba5d2 880static void gen6_ppgtt_clear_range(struct i915_address_space *vm,
782f1495
BW
881 uint64_t start,
882 uint64_t length,
828c7908 883 bool use_scratch)
1d2a314c 884{
853ba5d2
BW
885 struct i915_hw_ppgtt *ppgtt =
886 container_of(vm, struct i915_hw_ppgtt, base);
e7c2b58b 887 gen6_gtt_pte_t *pt_vaddr, scratch_pte;
782f1495
BW
888 unsigned first_entry = start >> PAGE_SHIFT;
889 unsigned num_entries = length >> PAGE_SHIFT;
a15326a5 890 unsigned act_pt = first_entry / I915_PPGTT_PT_ENTRIES;
7bddb01f
DV
891 unsigned first_pte = first_entry % I915_PPGTT_PT_ENTRIES;
892 unsigned last_pte, i;
1d2a314c 893
24f3a8cf 894 scratch_pte = vm->pte_encode(vm->scratch.addr, I915_CACHE_LLC, true, 0);
1d2a314c 895
7bddb01f
DV
896 while (num_entries) {
897 last_pte = first_pte + num_entries;
898 if (last_pte > I915_PPGTT_PT_ENTRIES)
899 last_pte = I915_PPGTT_PT_ENTRIES;
900
a15326a5 901 pt_vaddr = kmap_atomic(ppgtt->pt_pages[act_pt]);
1d2a314c 902
7bddb01f
DV
903 for (i = first_pte; i < last_pte; i++)
904 pt_vaddr[i] = scratch_pte;
1d2a314c
DV
905
906 kunmap_atomic(pt_vaddr);
1d2a314c 907
7bddb01f
DV
908 num_entries -= last_pte - first_pte;
909 first_pte = 0;
a15326a5 910 act_pt++;
7bddb01f 911 }
1d2a314c
DV
912}
913
853ba5d2 914static void gen6_ppgtt_insert_entries(struct i915_address_space *vm,
def886c3 915 struct sg_table *pages,
782f1495 916 uint64_t start,
24f3a8cf 917 enum i915_cache_level cache_level, u32 flags)
def886c3 918{
853ba5d2
BW
919 struct i915_hw_ppgtt *ppgtt =
920 container_of(vm, struct i915_hw_ppgtt, base);
e7c2b58b 921 gen6_gtt_pte_t *pt_vaddr;
782f1495 922 unsigned first_entry = start >> PAGE_SHIFT;
a15326a5 923 unsigned act_pt = first_entry / I915_PPGTT_PT_ENTRIES;
6e995e23
ID
924 unsigned act_pte = first_entry % I915_PPGTT_PT_ENTRIES;
925 struct sg_page_iter sg_iter;
926
cc79714f 927 pt_vaddr = NULL;
6e995e23 928 for_each_sg_page(pages->sgl, &sg_iter, pages->nents, 0) {
cc79714f
CW
929 if (pt_vaddr == NULL)
930 pt_vaddr = kmap_atomic(ppgtt->pt_pages[act_pt]);
6e995e23 931
cc79714f
CW
932 pt_vaddr[act_pte] =
933 vm->pte_encode(sg_page_iter_dma_address(&sg_iter),
24f3a8cf
AG
934 cache_level, true, flags);
935
6e995e23
ID
936 if (++act_pte == I915_PPGTT_PT_ENTRIES) {
937 kunmap_atomic(pt_vaddr);
cc79714f 938 pt_vaddr = NULL;
a15326a5 939 act_pt++;
6e995e23 940 act_pte = 0;
def886c3 941 }
def886c3 942 }
cc79714f
CW
943 if (pt_vaddr)
944 kunmap_atomic(pt_vaddr);
def886c3
DV
945}
946
a00d825d 947static void gen6_ppgtt_unmap_pages(struct i915_hw_ppgtt *ppgtt)
1d2a314c 948{
3440d265
DV
949 int i;
950
951 if (ppgtt->pt_dma_addr) {
952 for (i = 0; i < ppgtt->num_pd_entries; i++)
853ba5d2 953 pci_unmap_page(ppgtt->base.dev->pdev,
3440d265
DV
954 ppgtt->pt_dma_addr[i],
955 4096, PCI_DMA_BIDIRECTIONAL);
956 }
a00d825d
BW
957}
958
959static void gen6_ppgtt_free(struct i915_hw_ppgtt *ppgtt)
960{
961 int i;
3440d265
DV
962
963 kfree(ppgtt->pt_dma_addr);
964 for (i = 0; i < ppgtt->num_pd_entries; i++)
965 __free_page(ppgtt->pt_pages[i]);
966 kfree(ppgtt->pt_pages);
3440d265
DV
967}
968
a00d825d
BW
969static void gen6_ppgtt_cleanup(struct i915_address_space *vm)
970{
971 struct i915_hw_ppgtt *ppgtt =
972 container_of(vm, struct i915_hw_ppgtt, base);
973
a00d825d
BW
974 drm_mm_remove_node(&ppgtt->node);
975
976 gen6_ppgtt_unmap_pages(ppgtt);
977 gen6_ppgtt_free(ppgtt);
978}
979
b146520f 980static int gen6_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt)
3440d265 981{
853ba5d2 982 struct drm_device *dev = ppgtt->base.dev;
1d2a314c 983 struct drm_i915_private *dev_priv = dev->dev_private;
e3cc1995 984 bool retried = false;
b146520f 985 int ret;
1d2a314c 986
c8d4c0d6
BW
987 /* PPGTT PDEs reside in the GGTT and consists of 512 entries. The
988 * allocator works in address space sizes, so it's multiplied by page
989 * size. We allocate at the top of the GTT to avoid fragmentation.
990 */
991 BUG_ON(!drm_mm_initialized(&dev_priv->gtt.base.mm));
e3cc1995 992alloc:
c8d4c0d6
BW
993 ret = drm_mm_insert_node_in_range_generic(&dev_priv->gtt.base.mm,
994 &ppgtt->node, GEN6_PD_SIZE,
995 GEN6_PD_ALIGN, 0,
996 0, dev_priv->gtt.base.total,
3e8b5ae9 997 DRM_MM_TOPDOWN);
e3cc1995
BW
998 if (ret == -ENOSPC && !retried) {
999 ret = i915_gem_evict_something(dev, &dev_priv->gtt.base,
1000 GEN6_PD_SIZE, GEN6_PD_ALIGN,
d23db88c
CW
1001 I915_CACHE_NONE,
1002 0, dev_priv->gtt.base.total,
1003 0);
e3cc1995
BW
1004 if (ret)
1005 return ret;
1006
1007 retried = true;
1008 goto alloc;
1009 }
c8d4c0d6
BW
1010
1011 if (ppgtt->node.start < dev_priv->gtt.mappable_end)
1012 DRM_DEBUG("Forced to use aperture for PDEs\n");
1d2a314c 1013
6670a5a5 1014 ppgtt->num_pd_entries = GEN6_PPGTT_PD_ENTRIES;
b146520f
BW
1015 return ret;
1016}
1017
1018static int gen6_ppgtt_allocate_page_tables(struct i915_hw_ppgtt *ppgtt)
1019{
1020 int i;
1021
a1e22653 1022 ppgtt->pt_pages = kcalloc(ppgtt->num_pd_entries, sizeof(struct page *),
1d2a314c 1023 GFP_KERNEL);
b146520f
BW
1024
1025 if (!ppgtt->pt_pages)
3440d265 1026 return -ENOMEM;
1d2a314c
DV
1027
1028 for (i = 0; i < ppgtt->num_pd_entries; i++) {
1029 ppgtt->pt_pages[i] = alloc_page(GFP_KERNEL);
b146520f
BW
1030 if (!ppgtt->pt_pages[i]) {
1031 gen6_ppgtt_free(ppgtt);
1032 return -ENOMEM;
1033 }
1034 }
1035
1036 return 0;
1037}
1038
1039static int gen6_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt)
1040{
1041 int ret;
1042
1043 ret = gen6_ppgtt_allocate_page_directories(ppgtt);
1044 if (ret)
1045 return ret;
1046
1047 ret = gen6_ppgtt_allocate_page_tables(ppgtt);
1048 if (ret) {
1049 drm_mm_remove_node(&ppgtt->node);
1050 return ret;
1d2a314c
DV
1051 }
1052
a1e22653 1053 ppgtt->pt_dma_addr = kcalloc(ppgtt->num_pd_entries, sizeof(dma_addr_t),
8d2e6308 1054 GFP_KERNEL);
b146520f
BW
1055 if (!ppgtt->pt_dma_addr) {
1056 drm_mm_remove_node(&ppgtt->node);
1057 gen6_ppgtt_free(ppgtt);
1058 return -ENOMEM;
1059 }
1060
1061 return 0;
1062}
1063
1064static int gen6_ppgtt_setup_page_tables(struct i915_hw_ppgtt *ppgtt)
1065{
1066 struct drm_device *dev = ppgtt->base.dev;
1067 int i;
1d2a314c 1068
8d2e6308
BW
1069 for (i = 0; i < ppgtt->num_pd_entries; i++) {
1070 dma_addr_t pt_addr;
211c568b 1071
8d2e6308
BW
1072 pt_addr = pci_map_page(dev->pdev, ppgtt->pt_pages[i], 0, 4096,
1073 PCI_DMA_BIDIRECTIONAL);
1d2a314c 1074
8d2e6308 1075 if (pci_dma_mapping_error(dev->pdev, pt_addr)) {
b146520f
BW
1076 gen6_ppgtt_unmap_pages(ppgtt);
1077 return -EIO;
211c568b 1078 }
b146520f 1079
8d2e6308 1080 ppgtt->pt_dma_addr[i] = pt_addr;
1d2a314c 1081 }
1d2a314c 1082
b146520f
BW
1083 return 0;
1084}
1085
1086static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
1087{
1088 struct drm_device *dev = ppgtt->base.dev;
1089 struct drm_i915_private *dev_priv = dev->dev_private;
1090 int ret;
1091
1092 ppgtt->base.pte_encode = dev_priv->gtt.base.pte_encode;
1093 if (IS_GEN6(dev)) {
b146520f
BW
1094 ppgtt->switch_mm = gen6_mm_switch;
1095 } else if (IS_HASWELL(dev)) {
b146520f
BW
1096 ppgtt->switch_mm = hsw_mm_switch;
1097 } else if (IS_GEN7(dev)) {
b146520f
BW
1098 ppgtt->switch_mm = gen7_mm_switch;
1099 } else
1100 BUG();
1101
1102 ret = gen6_ppgtt_alloc(ppgtt);
1103 if (ret)
1104 return ret;
1105
1106 ret = gen6_ppgtt_setup_page_tables(ppgtt);
1107 if (ret) {
1108 gen6_ppgtt_free(ppgtt);
1109 return ret;
1110 }
1111
1112 ppgtt->base.clear_range = gen6_ppgtt_clear_range;
1113 ppgtt->base.insert_entries = gen6_ppgtt_insert_entries;
1114 ppgtt->base.cleanup = gen6_ppgtt_cleanup;
b146520f 1115 ppgtt->base.start = 0;
5a6c93fe 1116 ppgtt->base.total = ppgtt->num_pd_entries * I915_PPGTT_PT_ENTRIES * PAGE_SIZE;
87d60b63 1117 ppgtt->debug_dump = gen6_dump_ppgtt;
1d2a314c 1118
c8d4c0d6
BW
1119 ppgtt->pd_offset =
1120 ppgtt->node.start / PAGE_SIZE * sizeof(gen6_gtt_pte_t);
1d2a314c 1121
b146520f 1122 ppgtt->base.clear_range(&ppgtt->base, 0, ppgtt->base.total, true);
1d2a314c 1123
b146520f
BW
1124 DRM_DEBUG_DRIVER("Allocated pde space (%ldM) at GTT entry: %lx\n",
1125 ppgtt->node.size >> 20,
1126 ppgtt->node.start / PAGE_SIZE);
3440d265 1127
fa76da34
DV
1128 gen6_write_pdes(ppgtt);
1129 DRM_DEBUG("Adding PPGTT at offset %x\n",
1130 ppgtt->pd_offset << 10);
1131
b146520f 1132 return 0;
3440d265
DV
1133}
1134
fa76da34 1135static int __hw_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
3440d265
DV
1136{
1137 struct drm_i915_private *dev_priv = dev->dev_private;
3440d265 1138
853ba5d2 1139 ppgtt->base.dev = dev;
8407bb91 1140 ppgtt->base.scratch = dev_priv->gtt.base.scratch;
3440d265 1141
3ed124b2 1142 if (INTEL_INFO(dev)->gen < 8)
fa76da34 1143 return gen6_ppgtt_init(ppgtt);
8fe6bd23 1144 else if (IS_GEN8(dev))
fa76da34 1145 return gen8_ppgtt_init(ppgtt, dev_priv->gtt.base.total);
3ed124b2
BW
1146 else
1147 BUG();
fa76da34
DV
1148}
1149int i915_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
1150{
1151 struct drm_i915_private *dev_priv = dev->dev_private;
1152 int ret = 0;
3ed124b2 1153
fa76da34
DV
1154 ret = __hw_ppgtt_init(dev, ppgtt);
1155 if (ret == 0) {
c7c48dfd 1156 kref_init(&ppgtt->ref);
93bd8649
BW
1157 drm_mm_init(&ppgtt->base.mm, ppgtt->base.start,
1158 ppgtt->base.total);
7e0d96bc 1159 i915_init_vm(dev_priv, &ppgtt->base);
93bd8649 1160 }
1d2a314c
DV
1161
1162 return ret;
1163}
1164
82460d97
DV
1165int i915_ppgtt_init_hw(struct drm_device *dev)
1166{
1167 struct drm_i915_private *dev_priv = dev->dev_private;
1168 struct intel_engine_cs *ring;
1169 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
1170 int i, ret = 0;
1171
1172 if (!USES_PPGTT(dev))
1173 return 0;
1174
1175 if (IS_GEN6(dev))
1176 gen6_ppgtt_enable(dev);
1177 else if (IS_GEN7(dev))
1178 gen7_ppgtt_enable(dev);
1179 else if (INTEL_INFO(dev)->gen >= 8)
1180 gen8_ppgtt_enable(dev);
1181 else
1182 WARN_ON(1);
1183
1184 if (ppgtt) {
1185 for_each_ring(ring, dev_priv, i) {
1186 ret = ppgtt->switch_mm(ppgtt, ring, true);
1187 if (ret != 0)
1188 return ret;
1189 }
1190 }
1191
1192 return ret;
1193}
4d884705
DV
1194struct i915_hw_ppgtt *
1195i915_ppgtt_create(struct drm_device *dev, struct drm_i915_file_private *fpriv)
1196{
1197 struct i915_hw_ppgtt *ppgtt;
1198 int ret;
1199
1200 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
1201 if (!ppgtt)
1202 return ERR_PTR(-ENOMEM);
1203
1204 ret = i915_ppgtt_init(dev, ppgtt);
1205 if (ret) {
1206 kfree(ppgtt);
1207 return ERR_PTR(ret);
1208 }
1209
1210 ppgtt->file_priv = fpriv;
1211
1212 return ppgtt;
1213}
1214
ee960be7
DV
1215void i915_ppgtt_release(struct kref *kref)
1216{
1217 struct i915_hw_ppgtt *ppgtt =
1218 container_of(kref, struct i915_hw_ppgtt, ref);
1219
1220 /* vmas should already be unbound */
1221 WARN_ON(!list_empty(&ppgtt->base.active_list));
1222 WARN_ON(!list_empty(&ppgtt->base.inactive_list));
1223
19dd120c
DV
1224 list_del(&ppgtt->base.global_link);
1225 drm_mm_takedown(&ppgtt->base.mm);
1226
ee960be7
DV
1227 ppgtt->base.cleanup(&ppgtt->base);
1228 kfree(ppgtt);
1229}
1230
7e0d96bc 1231static void
6f65e29a
BW
1232ppgtt_bind_vma(struct i915_vma *vma,
1233 enum i915_cache_level cache_level,
1234 u32 flags)
1d2a314c 1235{
24f3a8cf
AG
1236 /* Currently applicable only to VLV */
1237 if (vma->obj->gt_ro)
1238 flags |= PTE_READ_ONLY;
1239
782f1495 1240 vma->vm->insert_entries(vma->vm, vma->obj->pages, vma->node.start,
24f3a8cf 1241 cache_level, flags);
1d2a314c
DV
1242}
1243
7e0d96bc 1244static void ppgtt_unbind_vma(struct i915_vma *vma)
7bddb01f 1245{
6f65e29a 1246 vma->vm->clear_range(vma->vm,
782f1495
BW
1247 vma->node.start,
1248 vma->obj->base.size,
6f65e29a 1249 true);
7bddb01f
DV
1250}
1251
a81cc00c
BW
1252extern int intel_iommu_gfx_mapped;
1253/* Certain Gen5 chipsets require require idling the GPU before
1254 * unmapping anything from the GTT when VT-d is enabled.
1255 */
1256static inline bool needs_idle_maps(struct drm_device *dev)
1257{
1258#ifdef CONFIG_INTEL_IOMMU
1259 /* Query intel_iommu to see if we need the workaround. Presumably that
1260 * was loaded first.
1261 */
1262 if (IS_GEN5(dev) && IS_MOBILE(dev) && intel_iommu_gfx_mapped)
1263 return true;
1264#endif
1265 return false;
1266}
1267
5c042287
BW
1268static bool do_idling(struct drm_i915_private *dev_priv)
1269{
1270 bool ret = dev_priv->mm.interruptible;
1271
a81cc00c 1272 if (unlikely(dev_priv->gtt.do_idle_maps)) {
5c042287 1273 dev_priv->mm.interruptible = false;
b2da9fe5 1274 if (i915_gpu_idle(dev_priv->dev)) {
5c042287
BW
1275 DRM_ERROR("Couldn't idle GPU\n");
1276 /* Wait a bit, in hopes it avoids the hang */
1277 udelay(10);
1278 }
1279 }
1280
1281 return ret;
1282}
1283
1284static void undo_idling(struct drm_i915_private *dev_priv, bool interruptible)
1285{
a81cc00c 1286 if (unlikely(dev_priv->gtt.do_idle_maps))
5c042287
BW
1287 dev_priv->mm.interruptible = interruptible;
1288}
1289
828c7908
BW
1290void i915_check_and_clear_faults(struct drm_device *dev)
1291{
1292 struct drm_i915_private *dev_priv = dev->dev_private;
a4872ba6 1293 struct intel_engine_cs *ring;
828c7908
BW
1294 int i;
1295
1296 if (INTEL_INFO(dev)->gen < 6)
1297 return;
1298
1299 for_each_ring(ring, dev_priv, i) {
1300 u32 fault_reg;
1301 fault_reg = I915_READ(RING_FAULT_REG(ring));
1302 if (fault_reg & RING_FAULT_VALID) {
1303 DRM_DEBUG_DRIVER("Unexpected fault\n"
1304 "\tAddr: 0x%08lx\\n"
1305 "\tAddress space: %s\n"
1306 "\tSource ID: %d\n"
1307 "\tType: %d\n",
1308 fault_reg & PAGE_MASK,
1309 fault_reg & RING_FAULT_GTTSEL_MASK ? "GGTT" : "PPGTT",
1310 RING_FAULT_SRCID(fault_reg),
1311 RING_FAULT_FAULT_TYPE(fault_reg));
1312 I915_WRITE(RING_FAULT_REG(ring),
1313 fault_reg & ~RING_FAULT_VALID);
1314 }
1315 }
1316 POSTING_READ(RING_FAULT_REG(&dev_priv->ring[RCS]));
1317}
1318
1319void i915_gem_suspend_gtt_mappings(struct drm_device *dev)
1320{
1321 struct drm_i915_private *dev_priv = dev->dev_private;
1322
1323 /* Don't bother messing with faults pre GEN6 as we have little
1324 * documentation supporting that it's a good idea.
1325 */
1326 if (INTEL_INFO(dev)->gen < 6)
1327 return;
1328
1329 i915_check_and_clear_faults(dev);
1330
1331 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
782f1495
BW
1332 dev_priv->gtt.base.start,
1333 dev_priv->gtt.base.total,
e568af1c 1334 true);
828c7908
BW
1335}
1336
76aaf220
DV
1337void i915_gem_restore_gtt_mappings(struct drm_device *dev)
1338{
1339 struct drm_i915_private *dev_priv = dev->dev_private;
05394f39 1340 struct drm_i915_gem_object *obj;
80da2161 1341 struct i915_address_space *vm;
76aaf220 1342
828c7908
BW
1343 i915_check_and_clear_faults(dev);
1344
bee4a186 1345 /* First fill our portion of the GTT with scratch pages */
853ba5d2 1346 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
782f1495
BW
1347 dev_priv->gtt.base.start,
1348 dev_priv->gtt.base.total,
828c7908 1349 true);
bee4a186 1350
35c20a60 1351 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
6f65e29a
BW
1352 struct i915_vma *vma = i915_gem_obj_to_vma(obj,
1353 &dev_priv->gtt.base);
1354 if (!vma)
1355 continue;
1356
2c22569b 1357 i915_gem_clflush_object(obj, obj->pin_display);
6f65e29a
BW
1358 /* The bind_vma code tries to be smart about tracking mappings.
1359 * Unfortunately above, we've just wiped out the mappings
1360 * without telling our object about it. So we need to fake it.
1361 */
1362 obj->has_global_gtt_mapping = 0;
1363 vma->bind_vma(vma, obj->cache_level, GLOBAL_BIND);
76aaf220
DV
1364 }
1365
80da2161 1366
a2319c08 1367 if (INTEL_INFO(dev)->gen >= 8) {
ee0ce478
VS
1368 if (IS_CHERRYVIEW(dev))
1369 chv_setup_private_ppat(dev_priv);
1370 else
1371 bdw_setup_private_ppat(dev_priv);
1372
80da2161 1373 return;
a2319c08 1374 }
80da2161
BW
1375
1376 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
1377 /* TODO: Perhaps it shouldn't be gen6 specific */
1378 if (i915_is_ggtt(vm)) {
1379 if (dev_priv->mm.aliasing_ppgtt)
1380 gen6_write_pdes(dev_priv->mm.aliasing_ppgtt);
1381 continue;
1382 }
1383
1384 gen6_write_pdes(container_of(vm, struct i915_hw_ppgtt, base));
76aaf220
DV
1385 }
1386
e76e9aeb 1387 i915_gem_chipset_flush(dev);
76aaf220 1388}
7c2e6fdf 1389
74163907 1390int i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj)
7c2e6fdf 1391{
9da3da66 1392 if (obj->has_dma_mapping)
74163907 1393 return 0;
9da3da66
CW
1394
1395 if (!dma_map_sg(&obj->base.dev->pdev->dev,
1396 obj->pages->sgl, obj->pages->nents,
1397 PCI_DMA_BIDIRECTIONAL))
1398 return -ENOSPC;
1399
1400 return 0;
7c2e6fdf
DV
1401}
1402
94ec8f61
BW
1403static inline void gen8_set_pte(void __iomem *addr, gen8_gtt_pte_t pte)
1404{
1405#ifdef writeq
1406 writeq(pte, addr);
1407#else
1408 iowrite32((u32)pte, addr);
1409 iowrite32(pte >> 32, addr + 4);
1410#endif
1411}
1412
1413static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
1414 struct sg_table *st,
782f1495 1415 uint64_t start,
24f3a8cf 1416 enum i915_cache_level level, u32 unused)
94ec8f61
BW
1417{
1418 struct drm_i915_private *dev_priv = vm->dev->dev_private;
782f1495 1419 unsigned first_entry = start >> PAGE_SHIFT;
94ec8f61
BW
1420 gen8_gtt_pte_t __iomem *gtt_entries =
1421 (gen8_gtt_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
1422 int i = 0;
1423 struct sg_page_iter sg_iter;
57007df7 1424 dma_addr_t addr = 0; /* shut up gcc */
94ec8f61
BW
1425
1426 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
1427 addr = sg_dma_address(sg_iter.sg) +
1428 (sg_iter.sg_pgoffset << PAGE_SHIFT);
1429 gen8_set_pte(&gtt_entries[i],
1430 gen8_pte_encode(addr, level, true));
1431 i++;
1432 }
1433
1434 /*
1435 * XXX: This serves as a posting read to make sure that the PTE has
1436 * actually been updated. There is some concern that even though
1437 * registers and PTEs are within the same BAR that they are potentially
1438 * of NUMA access patterns. Therefore, even with the way we assume
1439 * hardware should work, we must keep this posting read for paranoia.
1440 */
1441 if (i != 0)
1442 WARN_ON(readq(&gtt_entries[i-1])
1443 != gen8_pte_encode(addr, level, true));
1444
94ec8f61
BW
1445 /* This next bit makes the above posting read even more important. We
1446 * want to flush the TLBs only after we're certain all the PTE updates
1447 * have finished.
1448 */
1449 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
1450 POSTING_READ(GFX_FLSH_CNTL_GEN6);
94ec8f61
BW
1451}
1452
e76e9aeb
BW
1453/*
1454 * Binds an object into the global gtt with the specified cache level. The object
1455 * will be accessible to the GPU via commands whose operands reference offsets
1456 * within the global GTT as well as accessible by the GPU through the GMADR
1457 * mapped BAR (dev_priv->mm.gtt->gtt).
1458 */
853ba5d2 1459static void gen6_ggtt_insert_entries(struct i915_address_space *vm,
7faf1ab2 1460 struct sg_table *st,
782f1495 1461 uint64_t start,
24f3a8cf 1462 enum i915_cache_level level, u32 flags)
e76e9aeb 1463{
853ba5d2 1464 struct drm_i915_private *dev_priv = vm->dev->dev_private;
782f1495 1465 unsigned first_entry = start >> PAGE_SHIFT;
e7c2b58b
BW
1466 gen6_gtt_pte_t __iomem *gtt_entries =
1467 (gen6_gtt_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
6e995e23
ID
1468 int i = 0;
1469 struct sg_page_iter sg_iter;
57007df7 1470 dma_addr_t addr = 0;
e76e9aeb 1471
6e995e23 1472 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
2db76d7c 1473 addr = sg_page_iter_dma_address(&sg_iter);
24f3a8cf 1474 iowrite32(vm->pte_encode(addr, level, true, flags), &gtt_entries[i]);
6e995e23 1475 i++;
e76e9aeb
BW
1476 }
1477
e76e9aeb
BW
1478 /* XXX: This serves as a posting read to make sure that the PTE has
1479 * actually been updated. There is some concern that even though
1480 * registers and PTEs are within the same BAR that they are potentially
1481 * of NUMA access patterns. Therefore, even with the way we assume
1482 * hardware should work, we must keep this posting read for paranoia.
1483 */
57007df7
PM
1484 if (i != 0) {
1485 unsigned long gtt = readl(&gtt_entries[i-1]);
1486 WARN_ON(gtt != vm->pte_encode(addr, level, true, flags));
1487 }
0f9b91c7
BW
1488
1489 /* This next bit makes the above posting read even more important. We
1490 * want to flush the TLBs only after we're certain all the PTE updates
1491 * have finished.
1492 */
1493 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
1494 POSTING_READ(GFX_FLSH_CNTL_GEN6);
e76e9aeb
BW
1495}
1496
94ec8f61 1497static void gen8_ggtt_clear_range(struct i915_address_space *vm,
782f1495
BW
1498 uint64_t start,
1499 uint64_t length,
94ec8f61
BW
1500 bool use_scratch)
1501{
1502 struct drm_i915_private *dev_priv = vm->dev->dev_private;
782f1495
BW
1503 unsigned first_entry = start >> PAGE_SHIFT;
1504 unsigned num_entries = length >> PAGE_SHIFT;
94ec8f61
BW
1505 gen8_gtt_pte_t scratch_pte, __iomem *gtt_base =
1506 (gen8_gtt_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
1507 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
1508 int i;
1509
1510 if (WARN(num_entries > max_entries,
1511 "First entry = %d; Num entries = %d (max=%d)\n",
1512 first_entry, num_entries, max_entries))
1513 num_entries = max_entries;
1514
1515 scratch_pte = gen8_pte_encode(vm->scratch.addr,
1516 I915_CACHE_LLC,
1517 use_scratch);
1518 for (i = 0; i < num_entries; i++)
1519 gen8_set_pte(&gtt_base[i], scratch_pte);
1520 readl(gtt_base);
1521}
1522
853ba5d2 1523static void gen6_ggtt_clear_range(struct i915_address_space *vm,
782f1495
BW
1524 uint64_t start,
1525 uint64_t length,
828c7908 1526 bool use_scratch)
7faf1ab2 1527{
853ba5d2 1528 struct drm_i915_private *dev_priv = vm->dev->dev_private;
782f1495
BW
1529 unsigned first_entry = start >> PAGE_SHIFT;
1530 unsigned num_entries = length >> PAGE_SHIFT;
e7c2b58b
BW
1531 gen6_gtt_pte_t scratch_pte, __iomem *gtt_base =
1532 (gen6_gtt_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
a54c0c27 1533 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
7faf1ab2
DV
1534 int i;
1535
1536 if (WARN(num_entries > max_entries,
1537 "First entry = %d; Num entries = %d (max=%d)\n",
1538 first_entry, num_entries, max_entries))
1539 num_entries = max_entries;
1540
24f3a8cf 1541 scratch_pte = vm->pte_encode(vm->scratch.addr, I915_CACHE_LLC, use_scratch, 0);
828c7908 1542
7faf1ab2
DV
1543 for (i = 0; i < num_entries; i++)
1544 iowrite32(scratch_pte, &gtt_base[i]);
1545 readl(gtt_base);
1546}
1547
6f65e29a
BW
1548
1549static void i915_ggtt_bind_vma(struct i915_vma *vma,
1550 enum i915_cache_level cache_level,
1551 u32 unused)
7faf1ab2 1552{
6f65e29a 1553 const unsigned long entry = vma->node.start >> PAGE_SHIFT;
7faf1ab2
DV
1554 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
1555 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
1556
6f65e29a
BW
1557 BUG_ON(!i915_is_ggtt(vma->vm));
1558 intel_gtt_insert_sg_entries(vma->obj->pages, entry, flags);
1559 vma->obj->has_global_gtt_mapping = 1;
7faf1ab2
DV
1560}
1561
853ba5d2 1562static void i915_ggtt_clear_range(struct i915_address_space *vm,
782f1495
BW
1563 uint64_t start,
1564 uint64_t length,
828c7908 1565 bool unused)
7faf1ab2 1566{
782f1495
BW
1567 unsigned first_entry = start >> PAGE_SHIFT;
1568 unsigned num_entries = length >> PAGE_SHIFT;
7faf1ab2
DV
1569 intel_gtt_clear_range(first_entry, num_entries);
1570}
1571
6f65e29a
BW
1572static void i915_ggtt_unbind_vma(struct i915_vma *vma)
1573{
1574 const unsigned int first = vma->node.start >> PAGE_SHIFT;
1575 const unsigned int size = vma->obj->base.size >> PAGE_SHIFT;
7faf1ab2 1576
6f65e29a
BW
1577 BUG_ON(!i915_is_ggtt(vma->vm));
1578 vma->obj->has_global_gtt_mapping = 0;
1579 intel_gtt_clear_range(first, size);
1580}
7faf1ab2 1581
6f65e29a
BW
1582static void ggtt_bind_vma(struct i915_vma *vma,
1583 enum i915_cache_level cache_level,
1584 u32 flags)
d5bd1449 1585{
6f65e29a 1586 struct drm_device *dev = vma->vm->dev;
7faf1ab2 1587 struct drm_i915_private *dev_priv = dev->dev_private;
6f65e29a 1588 struct drm_i915_gem_object *obj = vma->obj;
7faf1ab2 1589
24f3a8cf
AG
1590 /* Currently applicable only to VLV */
1591 if (obj->gt_ro)
1592 flags |= PTE_READ_ONLY;
1593
6f65e29a
BW
1594 /* If there is no aliasing PPGTT, or the caller needs a global mapping,
1595 * or we have a global mapping already but the cacheability flags have
1596 * changed, set the global PTEs.
1597 *
1598 * If there is an aliasing PPGTT it is anecdotally faster, so use that
1599 * instead if none of the above hold true.
1600 *
1601 * NB: A global mapping should only be needed for special regions like
1602 * "gtt mappable", SNB errata, or if specified via special execbuf
1603 * flags. At all other times, the GPU will use the aliasing PPGTT.
1604 */
1605 if (!dev_priv->mm.aliasing_ppgtt || flags & GLOBAL_BIND) {
1606 if (!obj->has_global_gtt_mapping ||
1607 (cache_level != obj->cache_level)) {
782f1495
BW
1608 vma->vm->insert_entries(vma->vm, obj->pages,
1609 vma->node.start,
24f3a8cf 1610 cache_level, flags);
6f65e29a
BW
1611 obj->has_global_gtt_mapping = 1;
1612 }
1613 }
d5bd1449 1614
6f65e29a
BW
1615 if (dev_priv->mm.aliasing_ppgtt &&
1616 (!obj->has_aliasing_ppgtt_mapping ||
1617 (cache_level != obj->cache_level))) {
1618 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
1619 appgtt->base.insert_entries(&appgtt->base,
782f1495
BW
1620 vma->obj->pages,
1621 vma->node.start,
24f3a8cf 1622 cache_level, flags);
6f65e29a
BW
1623 vma->obj->has_aliasing_ppgtt_mapping = 1;
1624 }
d5bd1449
CW
1625}
1626
6f65e29a 1627static void ggtt_unbind_vma(struct i915_vma *vma)
74163907 1628{
6f65e29a 1629 struct drm_device *dev = vma->vm->dev;
7faf1ab2 1630 struct drm_i915_private *dev_priv = dev->dev_private;
6f65e29a 1631 struct drm_i915_gem_object *obj = vma->obj;
6f65e29a
BW
1632
1633 if (obj->has_global_gtt_mapping) {
782f1495
BW
1634 vma->vm->clear_range(vma->vm,
1635 vma->node.start,
1636 obj->base.size,
6f65e29a
BW
1637 true);
1638 obj->has_global_gtt_mapping = 0;
1639 }
74898d7e 1640
6f65e29a
BW
1641 if (obj->has_aliasing_ppgtt_mapping) {
1642 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
1643 appgtt->base.clear_range(&appgtt->base,
782f1495
BW
1644 vma->node.start,
1645 obj->base.size,
6f65e29a
BW
1646 true);
1647 obj->has_aliasing_ppgtt_mapping = 0;
1648 }
74163907
DV
1649}
1650
1651void i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj)
7c2e6fdf 1652{
5c042287
BW
1653 struct drm_device *dev = obj->base.dev;
1654 struct drm_i915_private *dev_priv = dev->dev_private;
1655 bool interruptible;
1656
1657 interruptible = do_idling(dev_priv);
1658
9da3da66
CW
1659 if (!obj->has_dma_mapping)
1660 dma_unmap_sg(&dev->pdev->dev,
1661 obj->pages->sgl, obj->pages->nents,
1662 PCI_DMA_BIDIRECTIONAL);
5c042287
BW
1663
1664 undo_idling(dev_priv, interruptible);
7c2e6fdf 1665}
644ec02b 1666
42d6ab48
CW
1667static void i915_gtt_color_adjust(struct drm_mm_node *node,
1668 unsigned long color,
1669 unsigned long *start,
1670 unsigned long *end)
1671{
1672 if (node->color != color)
1673 *start += 4096;
1674
1675 if (!list_empty(&node->node_list)) {
1676 node = list_entry(node->node_list.next,
1677 struct drm_mm_node,
1678 node_list);
1679 if (node->allocated && node->color != color)
1680 *end -= 4096;
1681 }
1682}
fbe5d36e 1683
6c5566a8
DV
1684int i915_gem_setup_global_gtt(struct drm_device *dev,
1685 unsigned long start,
1686 unsigned long mappable_end,
1687 unsigned long end)
644ec02b 1688{
e78891ca
BW
1689 /* Let GEM Manage all of the aperture.
1690 *
1691 * However, leave one page at the end still bound to the scratch page.
1692 * There are a number of places where the hardware apparently prefetches
1693 * past the end of the object, and we've seen multiple hangs with the
1694 * GPU head pointer stuck in a batchbuffer bound at the last page of the
1695 * aperture. One page should be enough to keep any prefetching inside
1696 * of the aperture.
1697 */
40d74980
BW
1698 struct drm_i915_private *dev_priv = dev->dev_private;
1699 struct i915_address_space *ggtt_vm = &dev_priv->gtt.base;
ed2f3452
CW
1700 struct drm_mm_node *entry;
1701 struct drm_i915_gem_object *obj;
1702 unsigned long hole_start, hole_end;
fa76da34 1703 int ret;
644ec02b 1704
35451cb6
BW
1705 BUG_ON(mappable_end > end);
1706
ed2f3452 1707 /* Subtract the guard page ... */
40d74980 1708 drm_mm_init(&ggtt_vm->mm, start, end - start - PAGE_SIZE);
42d6ab48 1709 if (!HAS_LLC(dev))
93bd8649 1710 dev_priv->gtt.base.mm.color_adjust = i915_gtt_color_adjust;
644ec02b 1711
ed2f3452 1712 /* Mark any preallocated objects as occupied */
35c20a60 1713 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
40d74980 1714 struct i915_vma *vma = i915_gem_obj_to_vma(obj, ggtt_vm);
fa76da34 1715
edd41a87 1716 DRM_DEBUG_KMS("reserving preallocated space: %lx + %zx\n",
c6cfb325
BW
1717 i915_gem_obj_ggtt_offset(obj), obj->base.size);
1718
1719 WARN_ON(i915_gem_obj_ggtt_bound(obj));
40d74980 1720 ret = drm_mm_reserve_node(&ggtt_vm->mm, &vma->node);
6c5566a8
DV
1721 if (ret) {
1722 DRM_DEBUG_KMS("Reservation failed: %i\n", ret);
1723 return ret;
1724 }
ed2f3452
CW
1725 obj->has_global_gtt_mapping = 1;
1726 }
1727
853ba5d2
BW
1728 dev_priv->gtt.base.start = start;
1729 dev_priv->gtt.base.total = end - start;
644ec02b 1730
ed2f3452 1731 /* Clear any non-preallocated blocks */
40d74980 1732 drm_mm_for_each_hole(entry, &ggtt_vm->mm, hole_start, hole_end) {
ed2f3452
CW
1733 DRM_DEBUG_KMS("clearing unused GTT space: [%lx, %lx]\n",
1734 hole_start, hole_end);
782f1495
BW
1735 ggtt_vm->clear_range(ggtt_vm, hole_start,
1736 hole_end - hole_start, true);
ed2f3452
CW
1737 }
1738
1739 /* And finally clear the reserved guard page */
782f1495 1740 ggtt_vm->clear_range(ggtt_vm, end - PAGE_SIZE, PAGE_SIZE, true);
6c5566a8 1741
fa76da34
DV
1742 if (USES_PPGTT(dev) && !USES_FULL_PPGTT(dev)) {
1743 struct i915_hw_ppgtt *ppgtt;
1744
1745 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
1746 if (!ppgtt)
1747 return -ENOMEM;
1748
1749 ret = __hw_ppgtt_init(dev, ppgtt);
1750 if (ret != 0)
1751 return ret;
1752
1753 dev_priv->mm.aliasing_ppgtt = ppgtt;
1754 }
1755
6c5566a8 1756 return 0;
e76e9aeb
BW
1757}
1758
d7e5008f
BW
1759void i915_gem_init_global_gtt(struct drm_device *dev)
1760{
1761 struct drm_i915_private *dev_priv = dev->dev_private;
1762 unsigned long gtt_size, mappable_size;
d7e5008f 1763
853ba5d2 1764 gtt_size = dev_priv->gtt.base.total;
93d18799 1765 mappable_size = dev_priv->gtt.mappable_end;
d7e5008f 1766
e78891ca 1767 i915_gem_setup_global_gtt(dev, 0, mappable_size, gtt_size);
e76e9aeb
BW
1768}
1769
1770static int setup_scratch_page(struct drm_device *dev)
1771{
1772 struct drm_i915_private *dev_priv = dev->dev_private;
1773 struct page *page;
1774 dma_addr_t dma_addr;
1775
1776 page = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO);
1777 if (page == NULL)
1778 return -ENOMEM;
1779 get_page(page);
1780 set_pages_uc(page, 1);
1781
1782#ifdef CONFIG_INTEL_IOMMU
1783 dma_addr = pci_map_page(dev->pdev, page, 0, PAGE_SIZE,
1784 PCI_DMA_BIDIRECTIONAL);
1785 if (pci_dma_mapping_error(dev->pdev, dma_addr))
1786 return -EINVAL;
1787#else
1788 dma_addr = page_to_phys(page);
1789#endif
853ba5d2
BW
1790 dev_priv->gtt.base.scratch.page = page;
1791 dev_priv->gtt.base.scratch.addr = dma_addr;
e76e9aeb
BW
1792
1793 return 0;
1794}
1795
1796static void teardown_scratch_page(struct drm_device *dev)
1797{
1798 struct drm_i915_private *dev_priv = dev->dev_private;
853ba5d2
BW
1799 struct page *page = dev_priv->gtt.base.scratch.page;
1800
1801 set_pages_wb(page, 1);
1802 pci_unmap_page(dev->pdev, dev_priv->gtt.base.scratch.addr,
e76e9aeb 1803 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
853ba5d2
BW
1804 put_page(page);
1805 __free_page(page);
e76e9aeb
BW
1806}
1807
1808static inline unsigned int gen6_get_total_gtt_size(u16 snb_gmch_ctl)
1809{
1810 snb_gmch_ctl >>= SNB_GMCH_GGMS_SHIFT;
1811 snb_gmch_ctl &= SNB_GMCH_GGMS_MASK;
1812 return snb_gmch_ctl << 20;
1813}
1814
9459d252
BW
1815static inline unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
1816{
1817 bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
1818 bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
1819 if (bdw_gmch_ctl)
1820 bdw_gmch_ctl = 1 << bdw_gmch_ctl;
562d55d9
BW
1821
1822#ifdef CONFIG_X86_32
1823 /* Limit 32b platforms to a 2GB GGTT: 4 << 20 / pte size * PAGE_SIZE */
1824 if (bdw_gmch_ctl > 4)
1825 bdw_gmch_ctl = 4;
1826#endif
1827
9459d252
BW
1828 return bdw_gmch_ctl << 20;
1829}
1830
d7f25f23
DL
1831static inline unsigned int chv_get_total_gtt_size(u16 gmch_ctrl)
1832{
1833 gmch_ctrl >>= SNB_GMCH_GGMS_SHIFT;
1834 gmch_ctrl &= SNB_GMCH_GGMS_MASK;
1835
1836 if (gmch_ctrl)
1837 return 1 << (20 + gmch_ctrl);
1838
1839 return 0;
1840}
1841
baa09f5f 1842static inline size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
e76e9aeb
BW
1843{
1844 snb_gmch_ctl >>= SNB_GMCH_GMS_SHIFT;
1845 snb_gmch_ctl &= SNB_GMCH_GMS_MASK;
1846 return snb_gmch_ctl << 25; /* 32 MB units */
1847}
1848
9459d252
BW
1849static inline size_t gen8_get_stolen_size(u16 bdw_gmch_ctl)
1850{
1851 bdw_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
1852 bdw_gmch_ctl &= BDW_GMCH_GMS_MASK;
1853 return bdw_gmch_ctl << 25; /* 32 MB units */
1854}
1855
d7f25f23
DL
1856static size_t chv_get_stolen_size(u16 gmch_ctrl)
1857{
1858 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
1859 gmch_ctrl &= SNB_GMCH_GMS_MASK;
1860
1861 /*
1862 * 0x0 to 0x10: 32MB increments starting at 0MB
1863 * 0x11 to 0x16: 4MB increments starting at 8MB
1864 * 0x17 to 0x1d: 4MB increments start at 36MB
1865 */
1866 if (gmch_ctrl < 0x11)
1867 return gmch_ctrl << 25;
1868 else if (gmch_ctrl < 0x17)
1869 return (gmch_ctrl - 0x11 + 2) << 22;
1870 else
1871 return (gmch_ctrl - 0x17 + 9) << 22;
1872}
1873
63340133
BW
1874static int ggtt_probe_common(struct drm_device *dev,
1875 size_t gtt_size)
1876{
1877 struct drm_i915_private *dev_priv = dev->dev_private;
21c34607 1878 phys_addr_t gtt_phys_addr;
63340133
BW
1879 int ret;
1880
1881 /* For Modern GENs the PTEs and register space are split in the BAR */
21c34607 1882 gtt_phys_addr = pci_resource_start(dev->pdev, 0) +
63340133
BW
1883 (pci_resource_len(dev->pdev, 0) / 2);
1884
21c34607 1885 dev_priv->gtt.gsm = ioremap_wc(gtt_phys_addr, gtt_size);
63340133
BW
1886 if (!dev_priv->gtt.gsm) {
1887 DRM_ERROR("Failed to map the gtt page table\n");
1888 return -ENOMEM;
1889 }
1890
1891 ret = setup_scratch_page(dev);
1892 if (ret) {
1893 DRM_ERROR("Scratch setup failed\n");
1894 /* iounmap will also get called at remove, but meh */
1895 iounmap(dev_priv->gtt.gsm);
1896 }
1897
1898 return ret;
1899}
1900
fbe5d36e
BW
1901/* The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
1902 * bits. When using advanced contexts each context stores its own PAT, but
1903 * writing this data shouldn't be harmful even in those cases. */
ee0ce478 1904static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv)
fbe5d36e 1905{
fbe5d36e
BW
1906 uint64_t pat;
1907
1908 pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) | /* for normal objects, no eLLC */
1909 GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) | /* for something pointing to ptes? */
1910 GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC) | /* for scanout with eLLC */
1911 GEN8_PPAT(3, GEN8_PPAT_UC) | /* Uncached objects, mostly for scanout */
1912 GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
1913 GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
1914 GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
1915 GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
1916
1917 /* XXX: spec defines this as 2 distinct registers. It's unclear if a 64b
1918 * write would work. */
1919 I915_WRITE(GEN8_PRIVATE_PAT, pat);
1920 I915_WRITE(GEN8_PRIVATE_PAT + 4, pat >> 32);
1921}
1922
ee0ce478
VS
1923static void chv_setup_private_ppat(struct drm_i915_private *dev_priv)
1924{
1925 uint64_t pat;
1926
1927 /*
1928 * Map WB on BDW to snooped on CHV.
1929 *
1930 * Only the snoop bit has meaning for CHV, the rest is
1931 * ignored.
1932 *
1933 * Note that the harware enforces snooping for all page
1934 * table accesses. The snoop bit is actually ignored for
1935 * PDEs.
1936 */
1937 pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
1938 GEN8_PPAT(1, 0) |
1939 GEN8_PPAT(2, 0) |
1940 GEN8_PPAT(3, 0) |
1941 GEN8_PPAT(4, CHV_PPAT_SNOOP) |
1942 GEN8_PPAT(5, CHV_PPAT_SNOOP) |
1943 GEN8_PPAT(6, CHV_PPAT_SNOOP) |
1944 GEN8_PPAT(7, CHV_PPAT_SNOOP);
1945
1946 I915_WRITE(GEN8_PRIVATE_PAT, pat);
1947 I915_WRITE(GEN8_PRIVATE_PAT + 4, pat >> 32);
1948}
1949
63340133
BW
1950static int gen8_gmch_probe(struct drm_device *dev,
1951 size_t *gtt_total,
1952 size_t *stolen,
1953 phys_addr_t *mappable_base,
1954 unsigned long *mappable_end)
1955{
1956 struct drm_i915_private *dev_priv = dev->dev_private;
1957 unsigned int gtt_size;
1958 u16 snb_gmch_ctl;
1959 int ret;
1960
1961 /* TODO: We're not aware of mappable constraints on gen8 yet */
1962 *mappable_base = pci_resource_start(dev->pdev, 2);
1963 *mappable_end = pci_resource_len(dev->pdev, 2);
1964
1965 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(39)))
1966 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(39));
1967
1968 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
1969
d7f25f23
DL
1970 if (IS_CHERRYVIEW(dev)) {
1971 *stolen = chv_get_stolen_size(snb_gmch_ctl);
1972 gtt_size = chv_get_total_gtt_size(snb_gmch_ctl);
1973 } else {
1974 *stolen = gen8_get_stolen_size(snb_gmch_ctl);
1975 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
1976 }
63340133 1977
d31eb10e 1978 *gtt_total = (gtt_size / sizeof(gen8_gtt_pte_t)) << PAGE_SHIFT;
63340133 1979
ee0ce478
VS
1980 if (IS_CHERRYVIEW(dev))
1981 chv_setup_private_ppat(dev_priv);
1982 else
1983 bdw_setup_private_ppat(dev_priv);
fbe5d36e 1984
63340133
BW
1985 ret = ggtt_probe_common(dev, gtt_size);
1986
94ec8f61
BW
1987 dev_priv->gtt.base.clear_range = gen8_ggtt_clear_range;
1988 dev_priv->gtt.base.insert_entries = gen8_ggtt_insert_entries;
63340133
BW
1989
1990 return ret;
1991}
1992
baa09f5f
BW
1993static int gen6_gmch_probe(struct drm_device *dev,
1994 size_t *gtt_total,
41907ddc
BW
1995 size_t *stolen,
1996 phys_addr_t *mappable_base,
1997 unsigned long *mappable_end)
e76e9aeb
BW
1998{
1999 struct drm_i915_private *dev_priv = dev->dev_private;
baa09f5f 2000 unsigned int gtt_size;
e76e9aeb 2001 u16 snb_gmch_ctl;
e76e9aeb
BW
2002 int ret;
2003
41907ddc
BW
2004 *mappable_base = pci_resource_start(dev->pdev, 2);
2005 *mappable_end = pci_resource_len(dev->pdev, 2);
2006
baa09f5f
BW
2007 /* 64/512MB is the current min/max we actually know of, but this is just
2008 * a coarse sanity check.
e76e9aeb 2009 */
41907ddc 2010 if ((*mappable_end < (64<<20) || (*mappable_end > (512<<20)))) {
baa09f5f
BW
2011 DRM_ERROR("Unknown GMADR size (%lx)\n",
2012 dev_priv->gtt.mappable_end);
2013 return -ENXIO;
e76e9aeb
BW
2014 }
2015
e76e9aeb
BW
2016 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(40)))
2017 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(40));
e76e9aeb 2018 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
e76e9aeb 2019
c4ae25ec 2020 *stolen = gen6_get_stolen_size(snb_gmch_ctl);
a93e4161 2021
63340133
BW
2022 gtt_size = gen6_get_total_gtt_size(snb_gmch_ctl);
2023 *gtt_total = (gtt_size / sizeof(gen6_gtt_pte_t)) << PAGE_SHIFT;
e76e9aeb 2024
63340133 2025 ret = ggtt_probe_common(dev, gtt_size);
e76e9aeb 2026
853ba5d2
BW
2027 dev_priv->gtt.base.clear_range = gen6_ggtt_clear_range;
2028 dev_priv->gtt.base.insert_entries = gen6_ggtt_insert_entries;
7faf1ab2 2029
e76e9aeb
BW
2030 return ret;
2031}
2032
853ba5d2 2033static void gen6_gmch_remove(struct i915_address_space *vm)
e76e9aeb 2034{
853ba5d2
BW
2035
2036 struct i915_gtt *gtt = container_of(vm, struct i915_gtt, base);
5ed16782 2037
4c2e0990
DV
2038 if (drm_mm_initialized(&vm->mm)) {
2039 drm_mm_takedown(&vm->mm);
2040 list_del(&vm->global_link);
2041 }
853ba5d2
BW
2042 iounmap(gtt->gsm);
2043 teardown_scratch_page(vm->dev);
644ec02b 2044}
baa09f5f
BW
2045
2046static int i915_gmch_probe(struct drm_device *dev,
2047 size_t *gtt_total,
41907ddc
BW
2048 size_t *stolen,
2049 phys_addr_t *mappable_base,
2050 unsigned long *mappable_end)
baa09f5f
BW
2051{
2052 struct drm_i915_private *dev_priv = dev->dev_private;
2053 int ret;
2054
baa09f5f
BW
2055 ret = intel_gmch_probe(dev_priv->bridge_dev, dev_priv->dev->pdev, NULL);
2056 if (!ret) {
2057 DRM_ERROR("failed to set up gmch\n");
2058 return -EIO;
2059 }
2060
41907ddc 2061 intel_gtt_get(gtt_total, stolen, mappable_base, mappable_end);
baa09f5f
BW
2062
2063 dev_priv->gtt.do_idle_maps = needs_idle_maps(dev_priv->dev);
853ba5d2 2064 dev_priv->gtt.base.clear_range = i915_ggtt_clear_range;
baa09f5f 2065
c0a7f818
CW
2066 if (unlikely(dev_priv->gtt.do_idle_maps))
2067 DRM_INFO("applying Ironlake quirks for intel_iommu\n");
2068
baa09f5f
BW
2069 return 0;
2070}
2071
853ba5d2 2072static void i915_gmch_remove(struct i915_address_space *vm)
baa09f5f 2073{
4c2e0990
DV
2074 if (drm_mm_initialized(&vm->mm)) {
2075 drm_mm_takedown(&vm->mm);
2076 list_del(&vm->global_link);
2077 }
baa09f5f
BW
2078 intel_gmch_remove();
2079}
2080
2081int i915_gem_gtt_init(struct drm_device *dev)
2082{
2083 struct drm_i915_private *dev_priv = dev->dev_private;
2084 struct i915_gtt *gtt = &dev_priv->gtt;
baa09f5f
BW
2085 int ret;
2086
baa09f5f 2087 if (INTEL_INFO(dev)->gen <= 5) {
b2f21b4d 2088 gtt->gtt_probe = i915_gmch_probe;
853ba5d2 2089 gtt->base.cleanup = i915_gmch_remove;
63340133 2090 } else if (INTEL_INFO(dev)->gen < 8) {
b2f21b4d 2091 gtt->gtt_probe = gen6_gmch_probe;
853ba5d2 2092 gtt->base.cleanup = gen6_gmch_remove;
4d15c145 2093 if (IS_HASWELL(dev) && dev_priv->ellc_size)
853ba5d2 2094 gtt->base.pte_encode = iris_pte_encode;
4d15c145 2095 else if (IS_HASWELL(dev))
853ba5d2 2096 gtt->base.pte_encode = hsw_pte_encode;
b2f21b4d 2097 else if (IS_VALLEYVIEW(dev))
853ba5d2 2098 gtt->base.pte_encode = byt_pte_encode;
350ec881
CW
2099 else if (INTEL_INFO(dev)->gen >= 7)
2100 gtt->base.pte_encode = ivb_pte_encode;
b2f21b4d 2101 else
350ec881 2102 gtt->base.pte_encode = snb_pte_encode;
63340133
BW
2103 } else {
2104 dev_priv->gtt.gtt_probe = gen8_gmch_probe;
2105 dev_priv->gtt.base.cleanup = gen6_gmch_remove;
baa09f5f
BW
2106 }
2107
853ba5d2 2108 ret = gtt->gtt_probe(dev, &gtt->base.total, &gtt->stolen_size,
b2f21b4d 2109 &gtt->mappable_base, &gtt->mappable_end);
a54c0c27 2110 if (ret)
baa09f5f 2111 return ret;
baa09f5f 2112
853ba5d2
BW
2113 gtt->base.dev = dev;
2114
baa09f5f 2115 /* GMADR is the PCI mmio aperture into the global GTT. */
853ba5d2
BW
2116 DRM_INFO("Memory usable by graphics device = %zdM\n",
2117 gtt->base.total >> 20);
b2f21b4d
BW
2118 DRM_DEBUG_DRIVER("GMADR size = %ldM\n", gtt->mappable_end >> 20);
2119 DRM_DEBUG_DRIVER("GTT stolen size = %zdM\n", gtt->stolen_size >> 20);
5db6c735
DV
2120#ifdef CONFIG_INTEL_IOMMU
2121 if (intel_iommu_gfx_mapped)
2122 DRM_INFO("VT-d active for gfx access\n");
2123#endif
cfa7c862
DV
2124 /*
2125 * i915.enable_ppgtt is read-only, so do an early pass to validate the
2126 * user's requested state against the hardware/driver capabilities. We
2127 * do this now so that we can print out any log messages once rather
2128 * than every time we check intel_enable_ppgtt().
2129 */
2130 i915.enable_ppgtt = sanitize_enable_ppgtt(dev, i915.enable_ppgtt);
2131 DRM_DEBUG_DRIVER("ppgtt mode: %i\n", i915.enable_ppgtt);
baa09f5f
BW
2132
2133 return 0;
2134}
6f65e29a
BW
2135
2136static struct i915_vma *__i915_gem_vma_create(struct drm_i915_gem_object *obj,
2137 struct i915_address_space *vm)
2138{
2139 struct i915_vma *vma = kzalloc(sizeof(*vma), GFP_KERNEL);
2140 if (vma == NULL)
2141 return ERR_PTR(-ENOMEM);
2142
2143 INIT_LIST_HEAD(&vma->vma_link);
2144 INIT_LIST_HEAD(&vma->mm_list);
2145 INIT_LIST_HEAD(&vma->exec_list);
2146 vma->vm = vm;
2147 vma->obj = obj;
2148
2149 switch (INTEL_INFO(vm->dev)->gen) {
2150 case 8:
2151 case 7:
2152 case 6:
7e0d96bc
BW
2153 if (i915_is_ggtt(vm)) {
2154 vma->unbind_vma = ggtt_unbind_vma;
2155 vma->bind_vma = ggtt_bind_vma;
2156 } else {
2157 vma->unbind_vma = ppgtt_unbind_vma;
2158 vma->bind_vma = ppgtt_bind_vma;
2159 }
6f65e29a
BW
2160 break;
2161 case 5:
2162 case 4:
2163 case 3:
2164 case 2:
2165 BUG_ON(!i915_is_ggtt(vm));
2166 vma->unbind_vma = i915_ggtt_unbind_vma;
2167 vma->bind_vma = i915_ggtt_bind_vma;
2168 break;
2169 default:
2170 BUG();
2171 }
2172
2173 /* Keep GGTT vmas first to make debug easier */
2174 if (i915_is_ggtt(vm))
2175 list_add(&vma->vma_link, &obj->vma_list);
2176 else
2177 list_add_tail(&vma->vma_link, &obj->vma_list);
2178
2179 return vma;
2180}
2181
2182struct i915_vma *
2183i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
2184 struct i915_address_space *vm)
2185{
2186 struct i915_vma *vma;
2187
2188 vma = i915_gem_obj_to_vma(obj, vm);
2189 if (!vma)
2190 vma = __i915_gem_vma_create(obj, vm);
2191
841cd773
DV
2192 if (!i915_is_ggtt(vm))
2193 i915_ppgtt_get(i915_vm_to_ppgtt(vm));
b9d06dd9 2194
6f65e29a
BW
2195 return vma;
2196}