drm/i915: limit PPGTT size to 2GB in 32-bit platforms
[deliverable/linux.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 29#include "i915_drv.h"
5dda8fa3 30#include "i915_vgpu.h"
76aaf220
DV
31#include "i915_trace.h"
32#include "intel_drv.h"
33
45f8f69a
TU
34/**
35 * DOC: Global GTT views
36 *
37 * Background and previous state
38 *
39 * Historically objects could exists (be bound) in global GTT space only as
40 * singular instances with a view representing all of the object's backing pages
41 * in a linear fashion. This view will be called a normal view.
42 *
43 * To support multiple views of the same object, where the number of mapped
44 * pages is not equal to the backing store, or where the layout of the pages
45 * is not linear, concept of a GGTT view was added.
46 *
47 * One example of an alternative view is a stereo display driven by a single
48 * image. In this case we would have a framebuffer looking like this
49 * (2x2 pages):
50 *
51 * 12
52 * 34
53 *
54 * Above would represent a normal GGTT view as normally mapped for GPU or CPU
55 * rendering. In contrast, fed to the display engine would be an alternative
56 * view which could look something like this:
57 *
58 * 1212
59 * 3434
60 *
61 * In this example both the size and layout of pages in the alternative view is
62 * different from the normal view.
63 *
64 * Implementation and usage
65 *
66 * GGTT views are implemented using VMAs and are distinguished via enum
67 * i915_ggtt_view_type and struct i915_ggtt_view.
68 *
69 * A new flavour of core GEM functions which work with GGTT bound objects were
ec7adb6e
JL
70 * added with the _ggtt_ infix, and sometimes with _view postfix to avoid
71 * renaming in large amounts of code. They take the struct i915_ggtt_view
72 * parameter encapsulating all metadata required to implement a view.
45f8f69a
TU
73 *
74 * As a helper for callers which are only interested in the normal view,
75 * globally const i915_ggtt_view_normal singleton instance exists. All old core
76 * GEM API functions, the ones not taking the view parameter, are operating on,
77 * or with the normal GGTT view.
78 *
79 * Code wanting to add or use a new GGTT view needs to:
80 *
81 * 1. Add a new enum with a suitable name.
82 * 2. Extend the metadata in the i915_ggtt_view structure if required.
83 * 3. Add support to i915_get_vma_pages().
84 *
85 * New views are required to build a scatter-gather table from within the
86 * i915_get_vma_pages function. This table is stored in the vma.ggtt_view and
87 * exists for the lifetime of an VMA.
88 *
89 * Core API is designed to have copy semantics which means that passed in
90 * struct i915_ggtt_view does not need to be persistent (left around after
91 * calling the core API functions).
92 *
93 */
94
70b9f6f8
DV
95static int
96i915_get_ggtt_vma_pages(struct i915_vma *vma);
97
fe14d5f4 98const struct i915_ggtt_view i915_ggtt_view_normal;
9abc4648
JL
99const struct i915_ggtt_view i915_ggtt_view_rotated = {
100 .type = I915_GGTT_VIEW_ROTATED
101};
fe14d5f4 102
cfa7c862
DV
103static int sanitize_enable_ppgtt(struct drm_device *dev, int enable_ppgtt)
104{
1893a71b
CW
105 bool has_aliasing_ppgtt;
106 bool has_full_ppgtt;
107
108 has_aliasing_ppgtt = INTEL_INFO(dev)->gen >= 6;
109 has_full_ppgtt = INTEL_INFO(dev)->gen >= 7;
1893a71b 110
71ba2d64
YZ
111 if (intel_vgpu_active(dev))
112 has_full_ppgtt = false; /* emulation is too hard */
113
70ee45e1
DL
114 /*
115 * We don't allow disabling PPGTT for gen9+ as it's a requirement for
116 * execlists, the sole mechanism available to submit work.
117 */
118 if (INTEL_INFO(dev)->gen < 9 &&
119 (enable_ppgtt == 0 || !has_aliasing_ppgtt))
cfa7c862
DV
120 return 0;
121
122 if (enable_ppgtt == 1)
123 return 1;
124
1893a71b 125 if (enable_ppgtt == 2 && has_full_ppgtt)
cfa7c862
DV
126 return 2;
127
93a25a9e
DV
128#ifdef CONFIG_INTEL_IOMMU
129 /* Disable ppgtt on SNB if VT-d is on. */
130 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped) {
131 DRM_INFO("Disabling PPGTT because VT-d is on\n");
cfa7c862 132 return 0;
93a25a9e
DV
133 }
134#endif
135
62942ed7 136 /* Early VLV doesn't have this */
ca2aed6c
VS
137 if (IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
138 dev->pdev->revision < 0xb) {
62942ed7
JB
139 DRM_DEBUG_DRIVER("disabling PPGTT on pre-B3 step VLV\n");
140 return 0;
141 }
142
2f82bbdf
MT
143 if (INTEL_INFO(dev)->gen >= 8 && i915.enable_execlists)
144 return 2;
145 else
146 return has_aliasing_ppgtt ? 1 : 0;
93a25a9e
DV
147}
148
70b9f6f8
DV
149static int ppgtt_bind_vma(struct i915_vma *vma,
150 enum i915_cache_level cache_level,
151 u32 unused)
47552659
DV
152{
153 u32 pte_flags = 0;
154
155 /* Currently applicable only to VLV */
156 if (vma->obj->gt_ro)
157 pte_flags |= PTE_READ_ONLY;
158
159 vma->vm->insert_entries(vma->vm, vma->obj->pages, vma->node.start,
160 cache_level, pte_flags);
70b9f6f8
DV
161
162 return 0;
47552659
DV
163}
164
165static void ppgtt_unbind_vma(struct i915_vma *vma)
166{
167 vma->vm->clear_range(vma->vm,
168 vma->node.start,
169 vma->obj->base.size,
170 true);
171}
6f65e29a 172
2c642b07
DV
173static gen8_pte_t gen8_pte_encode(dma_addr_t addr,
174 enum i915_cache_level level,
175 bool valid)
94ec8f61 176{
07749ef3 177 gen8_pte_t pte = valid ? _PAGE_PRESENT | _PAGE_RW : 0;
94ec8f61 178 pte |= addr;
63c42e56
BW
179
180 switch (level) {
181 case I915_CACHE_NONE:
fbe5d36e 182 pte |= PPAT_UNCACHED_INDEX;
63c42e56
BW
183 break;
184 case I915_CACHE_WT:
185 pte |= PPAT_DISPLAY_ELLC_INDEX;
186 break;
187 default:
188 pte |= PPAT_CACHED_INDEX;
189 break;
190 }
191
94ec8f61
BW
192 return pte;
193}
194
2c642b07
DV
195static gen8_pde_t gen8_pde_encode(struct drm_device *dev,
196 dma_addr_t addr,
197 enum i915_cache_level level)
b1fe6673 198{
07749ef3 199 gen8_pde_t pde = _PAGE_PRESENT | _PAGE_RW;
b1fe6673
BW
200 pde |= addr;
201 if (level != I915_CACHE_NONE)
202 pde |= PPAT_CACHED_PDE_INDEX;
203 else
204 pde |= PPAT_UNCACHED_INDEX;
205 return pde;
206}
207
07749ef3
MT
208static gen6_pte_t snb_pte_encode(dma_addr_t addr,
209 enum i915_cache_level level,
210 bool valid, u32 unused)
54d12527 211{
07749ef3 212 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
54d12527 213 pte |= GEN6_PTE_ADDR_ENCODE(addr);
e7210c3c
BW
214
215 switch (level) {
350ec881
CW
216 case I915_CACHE_L3_LLC:
217 case I915_CACHE_LLC:
218 pte |= GEN6_PTE_CACHE_LLC;
219 break;
220 case I915_CACHE_NONE:
221 pte |= GEN6_PTE_UNCACHED;
222 break;
223 default:
5f77eeb0 224 MISSING_CASE(level);
350ec881
CW
225 }
226
227 return pte;
228}
229
07749ef3
MT
230static gen6_pte_t ivb_pte_encode(dma_addr_t addr,
231 enum i915_cache_level level,
232 bool valid, u32 unused)
350ec881 233{
07749ef3 234 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
350ec881
CW
235 pte |= GEN6_PTE_ADDR_ENCODE(addr);
236
237 switch (level) {
238 case I915_CACHE_L3_LLC:
239 pte |= GEN7_PTE_CACHE_L3_LLC;
e7210c3c
BW
240 break;
241 case I915_CACHE_LLC:
242 pte |= GEN6_PTE_CACHE_LLC;
243 break;
244 case I915_CACHE_NONE:
9119708c 245 pte |= GEN6_PTE_UNCACHED;
e7210c3c
BW
246 break;
247 default:
5f77eeb0 248 MISSING_CASE(level);
e7210c3c
BW
249 }
250
54d12527
BW
251 return pte;
252}
253
07749ef3
MT
254static gen6_pte_t byt_pte_encode(dma_addr_t addr,
255 enum i915_cache_level level,
256 bool valid, u32 flags)
93c34e70 257{
07749ef3 258 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
93c34e70
KG
259 pte |= GEN6_PTE_ADDR_ENCODE(addr);
260
24f3a8cf
AG
261 if (!(flags & PTE_READ_ONLY))
262 pte |= BYT_PTE_WRITEABLE;
93c34e70
KG
263
264 if (level != I915_CACHE_NONE)
265 pte |= BYT_PTE_SNOOPED_BY_CPU_CACHES;
266
267 return pte;
268}
269
07749ef3
MT
270static gen6_pte_t hsw_pte_encode(dma_addr_t addr,
271 enum i915_cache_level level,
272 bool valid, u32 unused)
9119708c 273{
07749ef3 274 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
0d8ff15e 275 pte |= HSW_PTE_ADDR_ENCODE(addr);
9119708c
KG
276
277 if (level != I915_CACHE_NONE)
87a6b688 278 pte |= HSW_WB_LLC_AGE3;
9119708c
KG
279
280 return pte;
281}
282
07749ef3
MT
283static gen6_pte_t iris_pte_encode(dma_addr_t addr,
284 enum i915_cache_level level,
285 bool valid, u32 unused)
4d15c145 286{
07749ef3 287 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
4d15c145
BW
288 pte |= HSW_PTE_ADDR_ENCODE(addr);
289
651d794f
CW
290 switch (level) {
291 case I915_CACHE_NONE:
292 break;
293 case I915_CACHE_WT:
c51e9701 294 pte |= HSW_WT_ELLC_LLC_AGE3;
651d794f
CW
295 break;
296 default:
c51e9701 297 pte |= HSW_WB_ELLC_LLC_AGE3;
651d794f
CW
298 break;
299 }
4d15c145
BW
300
301 return pte;
302}
303
678d96fb
BW
304#define i915_dma_unmap_single(px, dev) \
305 __i915_dma_unmap_single((px)->daddr, dev)
306
2c642b07
DV
307static void __i915_dma_unmap_single(dma_addr_t daddr,
308 struct drm_device *dev)
678d96fb
BW
309{
310 struct device *device = &dev->pdev->dev;
311
312 dma_unmap_page(device, daddr, 4096, PCI_DMA_BIDIRECTIONAL);
313}
314
315/**
316 * i915_dma_map_single() - Create a dma mapping for a page table/dir/etc.
317 * @px: Page table/dir/etc to get a DMA map for
318 * @dev: drm device
319 *
320 * Page table allocations are unified across all gens. They always require a
321 * single 4k allocation, as well as a DMA mapping. If we keep the structs
322 * symmetric here, the simple macro covers us for every page table type.
323 *
324 * Return: 0 if success.
325 */
326#define i915_dma_map_single(px, dev) \
327 i915_dma_map_page_single((px)->page, (dev), &(px)->daddr)
328
2c642b07
DV
329static int i915_dma_map_page_single(struct page *page,
330 struct drm_device *dev,
331 dma_addr_t *daddr)
678d96fb
BW
332{
333 struct device *device = &dev->pdev->dev;
334
335 *daddr = dma_map_page(device, page, 0, 4096, PCI_DMA_BIDIRECTIONAL);
1266cdb1
MT
336 if (dma_mapping_error(device, *daddr))
337 return -ENOMEM;
338
339 return 0;
678d96fb
BW
340}
341
ec565b3c 342static void unmap_and_free_pt(struct i915_page_table *pt,
678d96fb 343 struct drm_device *dev)
06fda602
BW
344{
345 if (WARN_ON(!pt->page))
346 return;
678d96fb
BW
347
348 i915_dma_unmap_single(pt, dev);
06fda602 349 __free_page(pt->page);
678d96fb 350 kfree(pt->used_ptes);
06fda602
BW
351 kfree(pt);
352}
353
5a8e9943 354static void gen8_initialize_pt(struct i915_address_space *vm,
e5815a2e 355 struct i915_page_table *pt)
5a8e9943
MT
356{
357 gen8_pte_t *pt_vaddr, scratch_pte;
358 int i;
359
360 pt_vaddr = kmap_atomic(pt->page);
361 scratch_pte = gen8_pte_encode(vm->scratch.addr,
362 I915_CACHE_LLC, true);
363
364 for (i = 0; i < GEN8_PTES; i++)
365 pt_vaddr[i] = scratch_pte;
366
367 if (!HAS_LLC(vm->dev))
368 drm_clflush_virt_range(pt_vaddr, PAGE_SIZE);
369 kunmap_atomic(pt_vaddr);
370}
371
ec565b3c 372static struct i915_page_table *alloc_pt_single(struct drm_device *dev)
06fda602 373{
ec565b3c 374 struct i915_page_table *pt;
678d96fb
BW
375 const size_t count = INTEL_INFO(dev)->gen >= 8 ?
376 GEN8_PTES : GEN6_PTES;
377 int ret = -ENOMEM;
06fda602
BW
378
379 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
380 if (!pt)
381 return ERR_PTR(-ENOMEM);
382
678d96fb
BW
383 pt->used_ptes = kcalloc(BITS_TO_LONGS(count), sizeof(*pt->used_ptes),
384 GFP_KERNEL);
385
386 if (!pt->used_ptes)
387 goto fail_bitmap;
388
4933d519 389 pt->page = alloc_page(GFP_KERNEL);
678d96fb
BW
390 if (!pt->page)
391 goto fail_page;
392
393 ret = i915_dma_map_single(pt, dev);
394 if (ret)
395 goto fail_dma;
06fda602
BW
396
397 return pt;
678d96fb
BW
398
399fail_dma:
400 __free_page(pt->page);
401fail_page:
402 kfree(pt->used_ptes);
403fail_bitmap:
404 kfree(pt);
405
406 return ERR_PTR(ret);
06fda602
BW
407}
408
e5815a2e
MT
409static void unmap_and_free_pd(struct i915_page_directory *pd,
410 struct drm_device *dev)
06fda602
BW
411{
412 if (pd->page) {
e5815a2e 413 i915_dma_unmap_single(pd, dev);
06fda602 414 __free_page(pd->page);
33c8819f 415 kfree(pd->used_pdes);
06fda602
BW
416 kfree(pd);
417 }
418}
419
e5815a2e 420static struct i915_page_directory *alloc_pd_single(struct drm_device *dev)
06fda602 421{
ec565b3c 422 struct i915_page_directory *pd;
33c8819f 423 int ret = -ENOMEM;
06fda602
BW
424
425 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
426 if (!pd)
427 return ERR_PTR(-ENOMEM);
428
33c8819f
MT
429 pd->used_pdes = kcalloc(BITS_TO_LONGS(I915_PDES),
430 sizeof(*pd->used_pdes), GFP_KERNEL);
431 if (!pd->used_pdes)
432 goto free_pd;
433
5a8e9943 434 pd->page = alloc_page(GFP_KERNEL);
33c8819f
MT
435 if (!pd->page)
436 goto free_bitmap;
06fda602 437
e5815a2e 438 ret = i915_dma_map_single(pd, dev);
33c8819f
MT
439 if (ret)
440 goto free_page;
e5815a2e 441
06fda602 442 return pd;
33c8819f
MT
443
444free_page:
445 __free_page(pd->page);
446free_bitmap:
447 kfree(pd->used_pdes);
448free_pd:
449 kfree(pd);
450
451 return ERR_PTR(ret);
06fda602
BW
452}
453
94e409c1 454/* Broadwell Page Directory Pointer Descriptors */
7cb6d7ac
MT
455static int gen8_write_pdp(struct intel_engine_cs *ring,
456 unsigned entry,
457 dma_addr_t addr)
94e409c1
BW
458{
459 int ret;
460
461 BUG_ON(entry >= 4);
462
463 ret = intel_ring_begin(ring, 6);
464 if (ret)
465 return ret;
466
467 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
468 intel_ring_emit(ring, GEN8_RING_PDP_UDW(ring, entry));
7cb6d7ac 469 intel_ring_emit(ring, upper_32_bits(addr));
94e409c1
BW
470 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
471 intel_ring_emit(ring, GEN8_RING_PDP_LDW(ring, entry));
7cb6d7ac 472 intel_ring_emit(ring, lower_32_bits(addr));
94e409c1
BW
473 intel_ring_advance(ring);
474
475 return 0;
476}
477
eeb9488e 478static int gen8_mm_switch(struct i915_hw_ppgtt *ppgtt,
6689c167 479 struct intel_engine_cs *ring)
94e409c1 480{
eeb9488e 481 int i, ret;
94e409c1 482
7cb6d7ac
MT
483 for (i = GEN8_LEGACY_PDPES - 1; i >= 0; i--) {
484 struct i915_page_directory *pd = ppgtt->pdp.page_directory[i];
485 dma_addr_t pd_daddr = pd ? pd->daddr : ppgtt->scratch_pd->daddr;
486 /* The page directory might be NULL, but we need to clear out
487 * whatever the previous context might have used. */
488 ret = gen8_write_pdp(ring, i, pd_daddr);
eeb9488e
BW
489 if (ret)
490 return ret;
94e409c1 491 }
d595bd4b 492
eeb9488e 493 return 0;
94e409c1
BW
494}
495
459108b8 496static void gen8_ppgtt_clear_range(struct i915_address_space *vm,
782f1495
BW
497 uint64_t start,
498 uint64_t length,
459108b8
BW
499 bool use_scratch)
500{
501 struct i915_hw_ppgtt *ppgtt =
502 container_of(vm, struct i915_hw_ppgtt, base);
07749ef3 503 gen8_pte_t *pt_vaddr, scratch_pte;
7ad47cf2
BW
504 unsigned pdpe = start >> GEN8_PDPE_SHIFT & GEN8_PDPE_MASK;
505 unsigned pde = start >> GEN8_PDE_SHIFT & GEN8_PDE_MASK;
506 unsigned pte = start >> GEN8_PTE_SHIFT & GEN8_PTE_MASK;
782f1495 507 unsigned num_entries = length >> PAGE_SHIFT;
459108b8
BW
508 unsigned last_pte, i;
509
510 scratch_pte = gen8_pte_encode(ppgtt->base.scratch.addr,
511 I915_CACHE_LLC, use_scratch);
512
513 while (num_entries) {
ec565b3c
MT
514 struct i915_page_directory *pd;
515 struct i915_page_table *pt;
06fda602
BW
516 struct page *page_table;
517
518 if (WARN_ON(!ppgtt->pdp.page_directory[pdpe]))
519 continue;
520
521 pd = ppgtt->pdp.page_directory[pdpe];
522
523 if (WARN_ON(!pd->page_table[pde]))
524 continue;
525
526 pt = pd->page_table[pde];
527
528 if (WARN_ON(!pt->page))
529 continue;
530
531 page_table = pt->page;
459108b8 532
7ad47cf2 533 last_pte = pte + num_entries;
07749ef3
MT
534 if (last_pte > GEN8_PTES)
535 last_pte = GEN8_PTES;
459108b8
BW
536
537 pt_vaddr = kmap_atomic(page_table);
538
7ad47cf2 539 for (i = pte; i < last_pte; i++) {
459108b8 540 pt_vaddr[i] = scratch_pte;
7ad47cf2
BW
541 num_entries--;
542 }
459108b8 543
fd1ab8f4
RB
544 if (!HAS_LLC(ppgtt->base.dev))
545 drm_clflush_virt_range(pt_vaddr, PAGE_SIZE);
459108b8
BW
546 kunmap_atomic(pt_vaddr);
547
7ad47cf2 548 pte = 0;
07749ef3 549 if (++pde == I915_PDES) {
7ad47cf2
BW
550 pdpe++;
551 pde = 0;
552 }
459108b8
BW
553 }
554}
555
9df15b49
BW
556static void gen8_ppgtt_insert_entries(struct i915_address_space *vm,
557 struct sg_table *pages,
782f1495 558 uint64_t start,
24f3a8cf 559 enum i915_cache_level cache_level, u32 unused)
9df15b49
BW
560{
561 struct i915_hw_ppgtt *ppgtt =
562 container_of(vm, struct i915_hw_ppgtt, base);
07749ef3 563 gen8_pte_t *pt_vaddr;
7ad47cf2
BW
564 unsigned pdpe = start >> GEN8_PDPE_SHIFT & GEN8_PDPE_MASK;
565 unsigned pde = start >> GEN8_PDE_SHIFT & GEN8_PDE_MASK;
566 unsigned pte = start >> GEN8_PTE_SHIFT & GEN8_PTE_MASK;
9df15b49
BW
567 struct sg_page_iter sg_iter;
568
6f1cc993 569 pt_vaddr = NULL;
7ad47cf2 570
9df15b49 571 for_each_sg_page(pages->sgl, &sg_iter, pages->nents, 0) {
76643600 572 if (WARN_ON(pdpe >= GEN8_LEGACY_PDPES))
7ad47cf2
BW
573 break;
574
d7b3de91 575 if (pt_vaddr == NULL) {
ec565b3c
MT
576 struct i915_page_directory *pd = ppgtt->pdp.page_directory[pdpe];
577 struct i915_page_table *pt = pd->page_table[pde];
06fda602 578 struct page *page_table = pt->page;
d7b3de91
BW
579
580 pt_vaddr = kmap_atomic(page_table);
581 }
9df15b49 582
7ad47cf2 583 pt_vaddr[pte] =
6f1cc993
CW
584 gen8_pte_encode(sg_page_iter_dma_address(&sg_iter),
585 cache_level, true);
07749ef3 586 if (++pte == GEN8_PTES) {
fd1ab8f4
RB
587 if (!HAS_LLC(ppgtt->base.dev))
588 drm_clflush_virt_range(pt_vaddr, PAGE_SIZE);
9df15b49 589 kunmap_atomic(pt_vaddr);
6f1cc993 590 pt_vaddr = NULL;
07749ef3 591 if (++pde == I915_PDES) {
7ad47cf2
BW
592 pdpe++;
593 pde = 0;
594 }
595 pte = 0;
9df15b49
BW
596 }
597 }
fd1ab8f4
RB
598 if (pt_vaddr) {
599 if (!HAS_LLC(ppgtt->base.dev))
600 drm_clflush_virt_range(pt_vaddr, PAGE_SIZE);
6f1cc993 601 kunmap_atomic(pt_vaddr);
fd1ab8f4 602 }
9df15b49
BW
603}
604
69876bed
MT
605static void __gen8_do_map_pt(gen8_pde_t * const pde,
606 struct i915_page_table *pt,
607 struct drm_device *dev)
608{
609 gen8_pde_t entry =
610 gen8_pde_encode(dev, pt->daddr, I915_CACHE_LLC);
611 *pde = entry;
612}
613
614static void gen8_initialize_pd(struct i915_address_space *vm,
615 struct i915_page_directory *pd)
616{
617 struct i915_hw_ppgtt *ppgtt =
618 container_of(vm, struct i915_hw_ppgtt, base);
619 gen8_pde_t *page_directory;
620 struct i915_page_table *pt;
621 int i;
622
623 page_directory = kmap_atomic(pd->page);
624 pt = ppgtt->scratch_pt;
625 for (i = 0; i < I915_PDES; i++)
626 /* Map the PDE to the page table */
627 __gen8_do_map_pt(page_directory + i, pt, vm->dev);
628
629 if (!HAS_LLC(vm->dev))
630 drm_clflush_virt_range(page_directory, PAGE_SIZE);
e5815a2e
MT
631 kunmap_atomic(page_directory);
632}
633
ec565b3c 634static void gen8_free_page_tables(struct i915_page_directory *pd, struct drm_device *dev)
7ad47cf2
BW
635{
636 int i;
637
06fda602 638 if (!pd->page)
7ad47cf2
BW
639 return;
640
33c8819f 641 for_each_set_bit(i, pd->used_pdes, I915_PDES) {
06fda602
BW
642 if (WARN_ON(!pd->page_table[i]))
643 continue;
7ad47cf2 644
06dc68d6 645 unmap_and_free_pt(pd->page_table[i], dev);
06fda602
BW
646 pd->page_table[i] = NULL;
647 }
d7b3de91
BW
648}
649
061dd493 650static void gen8_ppgtt_cleanup(struct i915_address_space *vm)
b45a6715 651{
061dd493
DV
652 struct i915_hw_ppgtt *ppgtt =
653 container_of(vm, struct i915_hw_ppgtt, base);
b45a6715
BW
654 int i;
655
33c8819f 656 for_each_set_bit(i, ppgtt->pdp.used_pdpes, GEN8_LEGACY_PDPES) {
06fda602
BW
657 if (WARN_ON(!ppgtt->pdp.page_directory[i]))
658 continue;
659
06dc68d6 660 gen8_free_page_tables(ppgtt->pdp.page_directory[i], ppgtt->base.dev);
e5815a2e 661 unmap_and_free_pd(ppgtt->pdp.page_directory[i], ppgtt->base.dev);
7ad47cf2 662 }
69876bed 663
e5815a2e 664 unmap_and_free_pd(ppgtt->scratch_pd, ppgtt->base.dev);
69876bed 665 unmap_and_free_pt(ppgtt->scratch_pt, ppgtt->base.dev);
b45a6715
BW
666}
667
d7b2633d
MT
668/**
669 * gen8_ppgtt_alloc_pagetabs() - Allocate page tables for VA range.
670 * @ppgtt: Master ppgtt structure.
671 * @pd: Page directory for this address range.
672 * @start: Starting virtual address to begin allocations.
673 * @length Size of the allocations.
674 * @new_pts: Bitmap set by function with new allocations. Likely used by the
675 * caller to free on error.
676 *
677 * Allocate the required number of page tables. Extremely similar to
678 * gen8_ppgtt_alloc_page_directories(). The main difference is here we are limited by
679 * the page directory boundary (instead of the page directory pointer). That
680 * boundary is 1GB virtual. Therefore, unlike gen8_ppgtt_alloc_page_directories(), it is
681 * possible, and likely that the caller will need to use multiple calls of this
682 * function to achieve the appropriate allocation.
683 *
684 * Return: 0 if success; negative error code otherwise.
685 */
e5815a2e
MT
686static int gen8_ppgtt_alloc_pagetabs(struct i915_hw_ppgtt *ppgtt,
687 struct i915_page_directory *pd,
5441f0cb 688 uint64_t start,
d7b2633d
MT
689 uint64_t length,
690 unsigned long *new_pts)
bf2b4ed2 691{
e5815a2e 692 struct drm_device *dev = ppgtt->base.dev;
d7b2633d 693 struct i915_page_table *pt;
5441f0cb
MT
694 uint64_t temp;
695 uint32_t pde;
bf2b4ed2 696
d7b2633d
MT
697 gen8_for_each_pde(pt, pd, start, length, temp, pde) {
698 /* Don't reallocate page tables */
699 if (pt) {
700 /* Scratch is never allocated this way */
701 WARN_ON(pt == ppgtt->scratch_pt);
702 continue;
703 }
704
705 pt = alloc_pt_single(dev);
706 if (IS_ERR(pt))
5441f0cb
MT
707 goto unwind_out;
708
d7b2633d
MT
709 gen8_initialize_pt(&ppgtt->base, pt);
710 pd->page_table[pde] = pt;
711 set_bit(pde, new_pts);
7ad47cf2
BW
712 }
713
bf2b4ed2 714 return 0;
7ad47cf2
BW
715
716unwind_out:
d7b2633d 717 for_each_set_bit(pde, new_pts, I915_PDES)
e5815a2e 718 unmap_and_free_pt(pd->page_table[pde], dev);
7ad47cf2 719
d7b3de91 720 return -ENOMEM;
bf2b4ed2
BW
721}
722
d7b2633d
MT
723/**
724 * gen8_ppgtt_alloc_page_directories() - Allocate page directories for VA range.
725 * @ppgtt: Master ppgtt structure.
726 * @pdp: Page directory pointer for this address range.
727 * @start: Starting virtual address to begin allocations.
728 * @length Size of the allocations.
729 * @new_pds Bitmap set by function with new allocations. Likely used by the
730 * caller to free on error.
731 *
732 * Allocate the required number of page directories starting at the pde index of
733 * @start, and ending at the pde index @start + @length. This function will skip
734 * over already allocated page directories within the range, and only allocate
735 * new ones, setting the appropriate pointer within the pdp as well as the
736 * correct position in the bitmap @new_pds.
737 *
738 * The function will only allocate the pages within the range for a give page
739 * directory pointer. In other words, if @start + @length straddles a virtually
740 * addressed PDP boundary (512GB for 4k pages), there will be more allocations
741 * required by the caller, This is not currently possible, and the BUG in the
742 * code will prevent it.
743 *
744 * Return: 0 if success; negative error code otherwise.
745 */
c488dbba
MT
746static int gen8_ppgtt_alloc_page_directories(struct i915_hw_ppgtt *ppgtt,
747 struct i915_page_directory_pointer *pdp,
69876bed 748 uint64_t start,
d7b2633d
MT
749 uint64_t length,
750 unsigned long *new_pds)
bf2b4ed2 751{
e5815a2e 752 struct drm_device *dev = ppgtt->base.dev;
d7b2633d 753 struct i915_page_directory *pd;
69876bed
MT
754 uint64_t temp;
755 uint32_t pdpe;
756
d7b2633d
MT
757 WARN_ON(!bitmap_empty(new_pds, GEN8_LEGACY_PDPES));
758
4dd738e9 759 /* FIXME: upper bound must not overflow 32 bits */
f3e06f11 760 WARN_ON((start + length) > (1ULL << 32));
69876bed 761
d7b2633d
MT
762 gen8_for_each_pdpe(pd, pdp, start, length, temp, pdpe) {
763 if (pd)
764 continue;
33c8819f 765
d7b2633d
MT
766 pd = alloc_pd_single(dev);
767 if (IS_ERR(pd))
d7b3de91 768 goto unwind_out;
69876bed 769
d7b2633d
MT
770 gen8_initialize_pd(&ppgtt->base, pd);
771 pdp->page_directory[pdpe] = pd;
772 set_bit(pdpe, new_pds);
d7b3de91
BW
773 }
774
bf2b4ed2 775 return 0;
d7b3de91
BW
776
777unwind_out:
d7b2633d 778 for_each_set_bit(pdpe, new_pds, GEN8_LEGACY_PDPES)
e5815a2e 779 unmap_and_free_pd(pdp->page_directory[pdpe], dev);
d7b3de91
BW
780
781 return -ENOMEM;
bf2b4ed2
BW
782}
783
d7b2633d
MT
784static void
785free_gen8_temp_bitmaps(unsigned long *new_pds, unsigned long **new_pts)
786{
787 int i;
788
789 for (i = 0; i < GEN8_LEGACY_PDPES; i++)
790 kfree(new_pts[i]);
791 kfree(new_pts);
792 kfree(new_pds);
793}
794
795/* Fills in the page directory bitmap, and the array of page tables bitmap. Both
796 * of these are based on the number of PDPEs in the system.
797 */
798static
799int __must_check alloc_gen8_temp_bitmaps(unsigned long **new_pds,
800 unsigned long ***new_pts)
801{
802 int i;
803 unsigned long *pds;
804 unsigned long **pts;
805
806 pds = kcalloc(BITS_TO_LONGS(GEN8_LEGACY_PDPES), sizeof(unsigned long), GFP_KERNEL);
807 if (!pds)
808 return -ENOMEM;
809
810 pts = kcalloc(GEN8_LEGACY_PDPES, sizeof(unsigned long *), GFP_KERNEL);
811 if (!pts) {
812 kfree(pds);
813 return -ENOMEM;
814 }
815
816 for (i = 0; i < GEN8_LEGACY_PDPES; i++) {
817 pts[i] = kcalloc(BITS_TO_LONGS(I915_PDES),
818 sizeof(unsigned long), GFP_KERNEL);
819 if (!pts[i])
820 goto err_out;
821 }
822
823 *new_pds = pds;
824 *new_pts = pts;
825
826 return 0;
827
828err_out:
829 free_gen8_temp_bitmaps(pds, pts);
830 return -ENOMEM;
831}
832
e5815a2e
MT
833static int gen8_alloc_va_range(struct i915_address_space *vm,
834 uint64_t start,
835 uint64_t length)
bf2b4ed2 836{
e5815a2e
MT
837 struct i915_hw_ppgtt *ppgtt =
838 container_of(vm, struct i915_hw_ppgtt, base);
d7b2633d 839 unsigned long *new_page_dirs, **new_page_tables;
5441f0cb 840 struct i915_page_directory *pd;
33c8819f
MT
841 const uint64_t orig_start = start;
842 const uint64_t orig_length = length;
5441f0cb
MT
843 uint64_t temp;
844 uint32_t pdpe;
bf2b4ed2
BW
845 int ret;
846
d7b2633d
MT
847 /* Wrap is never okay since we can only represent 48b, and we don't
848 * actually use the other side of the canonical address space.
849 */
850 if (WARN_ON(start + length < start))
851 return -ERANGE;
852
853 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables);
bf2b4ed2
BW
854 if (ret)
855 return ret;
856
d7b2633d
MT
857 /* Do the allocations first so we can easily bail out */
858 ret = gen8_ppgtt_alloc_page_directories(ppgtt, &ppgtt->pdp, start, length,
859 new_page_dirs);
860 if (ret) {
861 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
862 return ret;
863 }
864
865 /* For every page directory referenced, allocate page tables */
5441f0cb 866 gen8_for_each_pdpe(pd, &ppgtt->pdp, start, length, temp, pdpe) {
d7b2633d
MT
867 ret = gen8_ppgtt_alloc_pagetabs(ppgtt, pd, start, length,
868 new_page_tables[pdpe]);
5441f0cb
MT
869 if (ret)
870 goto err_out;
5441f0cb
MT
871 }
872
33c8819f
MT
873 start = orig_start;
874 length = orig_length;
875
d7b2633d
MT
876 /* Allocations have completed successfully, so set the bitmaps, and do
877 * the mappings. */
33c8819f 878 gen8_for_each_pdpe(pd, &ppgtt->pdp, start, length, temp, pdpe) {
d7b2633d 879 gen8_pde_t *const page_directory = kmap_atomic(pd->page);
33c8819f
MT
880 struct i915_page_table *pt;
881 uint64_t pd_len = gen8_clamp_pd(start, length);
882 uint64_t pd_start = start;
883 uint32_t pde;
884
d7b2633d
MT
885 /* Every pd should be allocated, we just did that above. */
886 WARN_ON(!pd);
887
888 gen8_for_each_pde(pt, pd, pd_start, pd_len, temp, pde) {
889 /* Same reasoning as pd */
890 WARN_ON(!pt);
891 WARN_ON(!pd_len);
892 WARN_ON(!gen8_pte_count(pd_start, pd_len));
893
894 /* Set our used ptes within the page table */
895 bitmap_set(pt->used_ptes,
896 gen8_pte_index(pd_start),
897 gen8_pte_count(pd_start, pd_len));
898
899 /* Our pde is now pointing to the pagetable, pt */
33c8819f 900 set_bit(pde, pd->used_pdes);
d7b2633d
MT
901
902 /* Map the PDE to the page table */
903 __gen8_do_map_pt(page_directory + pde, pt, vm->dev);
904
905 /* NB: We haven't yet mapped ptes to pages. At this
906 * point we're still relying on insert_entries() */
33c8819f 907 }
d7b2633d
MT
908
909 if (!HAS_LLC(vm->dev))
910 drm_clflush_virt_range(page_directory, PAGE_SIZE);
911
912 kunmap_atomic(page_directory);
913
33c8819f
MT
914 set_bit(pdpe, ppgtt->pdp.used_pdpes);
915 }
916
d7b2633d 917 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
d7b3de91 918 return 0;
bf2b4ed2 919
d7b3de91 920err_out:
d7b2633d
MT
921 while (pdpe--) {
922 for_each_set_bit(temp, new_page_tables[pdpe], I915_PDES)
923 unmap_and_free_pt(ppgtt->pdp.page_directory[pdpe]->page_table[temp], vm->dev);
924 }
925
926 for_each_set_bit(pdpe, new_page_dirs, GEN8_LEGACY_PDPES)
927 unmap_and_free_pd(ppgtt->pdp.page_directory[pdpe], vm->dev);
928
929 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
bf2b4ed2
BW
930 return ret;
931}
932
eb0b44ad 933/*
f3a964b9
BW
934 * GEN8 legacy ppgtt programming is accomplished through a max 4 PDP registers
935 * with a net effect resembling a 2-level page table in normal x86 terms. Each
936 * PDP represents 1GB of memory 4 * 512 * 512 * 4096 = 4GB legacy 32b address
937 * space.
37aca44a 938 *
f3a964b9 939 */
5c5f6457 940static int gen8_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
37aca44a 941{
69876bed
MT
942 ppgtt->scratch_pt = alloc_pt_single(ppgtt->base.dev);
943 if (IS_ERR(ppgtt->scratch_pt))
944 return PTR_ERR(ppgtt->scratch_pt);
945
e5815a2e 946 ppgtt->scratch_pd = alloc_pd_single(ppgtt->base.dev);
7cb6d7ac
MT
947 if (IS_ERR(ppgtt->scratch_pd))
948 return PTR_ERR(ppgtt->scratch_pd);
949
69876bed 950 gen8_initialize_pt(&ppgtt->base, ppgtt->scratch_pt);
7cb6d7ac 951 gen8_initialize_pd(&ppgtt->base, ppgtt->scratch_pd);
69876bed 952
d7b2633d 953 ppgtt->base.start = 0;
5c5f6457 954 ppgtt->base.total = 1ULL << 32;
501fd70f
MT
955 if (IS_ENABLED(CONFIG_X86_32))
956 /* While we have a proliferation of size_t variables
957 * we cannot represent the full ppgtt size on 32bit,
958 * so limit it to the same size as the GGTT (currently
959 * 2GiB).
960 */
961 ppgtt->base.total = to_i915(ppgtt->base.dev)->gtt.base.total;
d7b2633d 962 ppgtt->base.cleanup = gen8_ppgtt_cleanup;
5c5f6457 963 ppgtt->base.allocate_va_range = gen8_alloc_va_range;
d7b2633d 964 ppgtt->base.insert_entries = gen8_ppgtt_insert_entries;
c7e16f22 965 ppgtt->base.clear_range = gen8_ppgtt_clear_range;
777dc5bb
DV
966 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
967 ppgtt->base.bind_vma = ppgtt_bind_vma;
d7b2633d
MT
968
969 ppgtt->switch_mm = gen8_mm_switch;
970
971 return 0;
972}
973
87d60b63
BW
974static void gen6_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
975{
87d60b63 976 struct i915_address_space *vm = &ppgtt->base;
09942c65 977 struct i915_page_table *unused;
07749ef3 978 gen6_pte_t scratch_pte;
87d60b63 979 uint32_t pd_entry;
09942c65
MT
980 uint32_t pte, pde, temp;
981 uint32_t start = ppgtt->base.start, length = ppgtt->base.total;
87d60b63 982
24f3a8cf 983 scratch_pte = vm->pte_encode(vm->scratch.addr, I915_CACHE_LLC, true, 0);
87d60b63 984
09942c65 985 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde) {
87d60b63 986 u32 expected;
07749ef3 987 gen6_pte_t *pt_vaddr;
06fda602 988 dma_addr_t pt_addr = ppgtt->pd.page_table[pde]->daddr;
09942c65 989 pd_entry = readl(ppgtt->pd_addr + pde);
87d60b63
BW
990 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID);
991
992 if (pd_entry != expected)
993 seq_printf(m, "\tPDE #%d mismatch: Actual PDE: %x Expected PDE: %x\n",
994 pde,
995 pd_entry,
996 expected);
997 seq_printf(m, "\tPDE: %x\n", pd_entry);
998
06fda602 999 pt_vaddr = kmap_atomic(ppgtt->pd.page_table[pde]->page);
07749ef3 1000 for (pte = 0; pte < GEN6_PTES; pte+=4) {
87d60b63 1001 unsigned long va =
07749ef3 1002 (pde * PAGE_SIZE * GEN6_PTES) +
87d60b63
BW
1003 (pte * PAGE_SIZE);
1004 int i;
1005 bool found = false;
1006 for (i = 0; i < 4; i++)
1007 if (pt_vaddr[pte + i] != scratch_pte)
1008 found = true;
1009 if (!found)
1010 continue;
1011
1012 seq_printf(m, "\t\t0x%lx [%03d,%04d]: =", va, pde, pte);
1013 for (i = 0; i < 4; i++) {
1014 if (pt_vaddr[pte + i] != scratch_pte)
1015 seq_printf(m, " %08x", pt_vaddr[pte + i]);
1016 else
1017 seq_puts(m, " SCRATCH ");
1018 }
1019 seq_puts(m, "\n");
1020 }
1021 kunmap_atomic(pt_vaddr);
1022 }
1023}
1024
678d96fb 1025/* Write pde (index) from the page directory @pd to the page table @pt */
ec565b3c
MT
1026static void gen6_write_pde(struct i915_page_directory *pd,
1027 const int pde, struct i915_page_table *pt)
6197349b 1028{
678d96fb
BW
1029 /* Caller needs to make sure the write completes if necessary */
1030 struct i915_hw_ppgtt *ppgtt =
1031 container_of(pd, struct i915_hw_ppgtt, pd);
1032 u32 pd_entry;
6197349b 1033
678d96fb
BW
1034 pd_entry = GEN6_PDE_ADDR_ENCODE(pt->daddr);
1035 pd_entry |= GEN6_PDE_VALID;
6197349b 1036
678d96fb
BW
1037 writel(pd_entry, ppgtt->pd_addr + pde);
1038}
6197349b 1039
678d96fb
BW
1040/* Write all the page tables found in the ppgtt structure to incrementing page
1041 * directories. */
1042static void gen6_write_page_range(struct drm_i915_private *dev_priv,
ec565b3c 1043 struct i915_page_directory *pd,
678d96fb
BW
1044 uint32_t start, uint32_t length)
1045{
ec565b3c 1046 struct i915_page_table *pt;
678d96fb
BW
1047 uint32_t pde, temp;
1048
1049 gen6_for_each_pde(pt, pd, start, length, temp, pde)
1050 gen6_write_pde(pd, pde, pt);
1051
1052 /* Make sure write is complete before other code can use this page
1053 * table. Also require for WC mapped PTEs */
1054 readl(dev_priv->gtt.gsm);
3e302542
BW
1055}
1056
b4a74e3a 1057static uint32_t get_pd_offset(struct i915_hw_ppgtt *ppgtt)
3e302542 1058{
7324cc04 1059 BUG_ON(ppgtt->pd.pd_offset & 0x3f);
b4a74e3a 1060
7324cc04 1061 return (ppgtt->pd.pd_offset / 64) << 16;
b4a74e3a
BW
1062}
1063
90252e5c 1064static int hsw_mm_switch(struct i915_hw_ppgtt *ppgtt,
6689c167 1065 struct intel_engine_cs *ring)
90252e5c 1066{
90252e5c
BW
1067 int ret;
1068
90252e5c
BW
1069 /* NB: TLBs must be flushed and invalidated before a switch */
1070 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
1071 if (ret)
1072 return ret;
1073
1074 ret = intel_ring_begin(ring, 6);
1075 if (ret)
1076 return ret;
1077
1078 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1079 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
1080 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1081 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
1082 intel_ring_emit(ring, get_pd_offset(ppgtt));
1083 intel_ring_emit(ring, MI_NOOP);
1084 intel_ring_advance(ring);
1085
1086 return 0;
1087}
1088
71ba2d64
YZ
1089static int vgpu_mm_switch(struct i915_hw_ppgtt *ppgtt,
1090 struct intel_engine_cs *ring)
1091{
1092 struct drm_i915_private *dev_priv = to_i915(ppgtt->base.dev);
1093
1094 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1095 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1096 return 0;
1097}
1098
48a10389 1099static int gen7_mm_switch(struct i915_hw_ppgtt *ppgtt,
6689c167 1100 struct intel_engine_cs *ring)
48a10389 1101{
48a10389
BW
1102 int ret;
1103
48a10389
BW
1104 /* NB: TLBs must be flushed and invalidated before a switch */
1105 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
1106 if (ret)
1107 return ret;
1108
1109 ret = intel_ring_begin(ring, 6);
1110 if (ret)
1111 return ret;
1112
1113 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1114 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
1115 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1116 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
1117 intel_ring_emit(ring, get_pd_offset(ppgtt));
1118 intel_ring_emit(ring, MI_NOOP);
1119 intel_ring_advance(ring);
1120
90252e5c
BW
1121 /* XXX: RCS is the only one to auto invalidate the TLBs? */
1122 if (ring->id != RCS) {
1123 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
1124 if (ret)
1125 return ret;
1126 }
1127
48a10389
BW
1128 return 0;
1129}
1130
eeb9488e 1131static int gen6_mm_switch(struct i915_hw_ppgtt *ppgtt,
6689c167 1132 struct intel_engine_cs *ring)
eeb9488e
BW
1133{
1134 struct drm_device *dev = ppgtt->base.dev;
1135 struct drm_i915_private *dev_priv = dev->dev_private;
1136
48a10389 1137
eeb9488e
BW
1138 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1139 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1140
1141 POSTING_READ(RING_PP_DIR_DCLV(ring));
1142
1143 return 0;
1144}
1145
82460d97 1146static void gen8_ppgtt_enable(struct drm_device *dev)
eeb9488e 1147{
eeb9488e 1148 struct drm_i915_private *dev_priv = dev->dev_private;
a4872ba6 1149 struct intel_engine_cs *ring;
82460d97 1150 int j;
3e302542 1151
eeb9488e
BW
1152 for_each_ring(ring, dev_priv, j) {
1153 I915_WRITE(RING_MODE_GEN7(ring),
1154 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
eeb9488e 1155 }
eeb9488e 1156}
6197349b 1157
82460d97 1158static void gen7_ppgtt_enable(struct drm_device *dev)
3e302542 1159{
50227e1c 1160 struct drm_i915_private *dev_priv = dev->dev_private;
a4872ba6 1161 struct intel_engine_cs *ring;
b4a74e3a 1162 uint32_t ecochk, ecobits;
3e302542 1163 int i;
6197349b 1164
b4a74e3a
BW
1165 ecobits = I915_READ(GAC_ECO_BITS);
1166 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
a65c2fcd 1167
b4a74e3a
BW
1168 ecochk = I915_READ(GAM_ECOCHK);
1169 if (IS_HASWELL(dev)) {
1170 ecochk |= ECOCHK_PPGTT_WB_HSW;
1171 } else {
1172 ecochk |= ECOCHK_PPGTT_LLC_IVB;
1173 ecochk &= ~ECOCHK_PPGTT_GFDT_IVB;
1174 }
1175 I915_WRITE(GAM_ECOCHK, ecochk);
a65c2fcd 1176
b4a74e3a 1177 for_each_ring(ring, dev_priv, i) {
6197349b 1178 /* GFX_MODE is per-ring on gen7+ */
b4a74e3a
BW
1179 I915_WRITE(RING_MODE_GEN7(ring),
1180 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
6197349b 1181 }
b4a74e3a 1182}
6197349b 1183
82460d97 1184static void gen6_ppgtt_enable(struct drm_device *dev)
b4a74e3a 1185{
50227e1c 1186 struct drm_i915_private *dev_priv = dev->dev_private;
b4a74e3a 1187 uint32_t ecochk, gab_ctl, ecobits;
a65c2fcd 1188
b4a74e3a
BW
1189 ecobits = I915_READ(GAC_ECO_BITS);
1190 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_SNB_BIT |
1191 ECOBITS_PPGTT_CACHE64B);
6197349b 1192
b4a74e3a
BW
1193 gab_ctl = I915_READ(GAB_CTL);
1194 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
1195
1196 ecochk = I915_READ(GAM_ECOCHK);
1197 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT | ECOCHK_PPGTT_CACHE64B);
1198
1199 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
6197349b
BW
1200}
1201
1d2a314c 1202/* PPGTT support for Sandybdrige/Gen6 and later */
853ba5d2 1203static void gen6_ppgtt_clear_range(struct i915_address_space *vm,
782f1495
BW
1204 uint64_t start,
1205 uint64_t length,
828c7908 1206 bool use_scratch)
1d2a314c 1207{
853ba5d2
BW
1208 struct i915_hw_ppgtt *ppgtt =
1209 container_of(vm, struct i915_hw_ppgtt, base);
07749ef3 1210 gen6_pte_t *pt_vaddr, scratch_pte;
782f1495
BW
1211 unsigned first_entry = start >> PAGE_SHIFT;
1212 unsigned num_entries = length >> PAGE_SHIFT;
07749ef3
MT
1213 unsigned act_pt = first_entry / GEN6_PTES;
1214 unsigned first_pte = first_entry % GEN6_PTES;
7bddb01f 1215 unsigned last_pte, i;
1d2a314c 1216
24f3a8cf 1217 scratch_pte = vm->pte_encode(vm->scratch.addr, I915_CACHE_LLC, true, 0);
1d2a314c 1218
7bddb01f
DV
1219 while (num_entries) {
1220 last_pte = first_pte + num_entries;
07749ef3
MT
1221 if (last_pte > GEN6_PTES)
1222 last_pte = GEN6_PTES;
7bddb01f 1223
06fda602 1224 pt_vaddr = kmap_atomic(ppgtt->pd.page_table[act_pt]->page);
1d2a314c 1225
7bddb01f
DV
1226 for (i = first_pte; i < last_pte; i++)
1227 pt_vaddr[i] = scratch_pte;
1d2a314c
DV
1228
1229 kunmap_atomic(pt_vaddr);
1d2a314c 1230
7bddb01f
DV
1231 num_entries -= last_pte - first_pte;
1232 first_pte = 0;
a15326a5 1233 act_pt++;
7bddb01f 1234 }
1d2a314c
DV
1235}
1236
853ba5d2 1237static void gen6_ppgtt_insert_entries(struct i915_address_space *vm,
def886c3 1238 struct sg_table *pages,
782f1495 1239 uint64_t start,
24f3a8cf 1240 enum i915_cache_level cache_level, u32 flags)
def886c3 1241{
853ba5d2
BW
1242 struct i915_hw_ppgtt *ppgtt =
1243 container_of(vm, struct i915_hw_ppgtt, base);
07749ef3 1244 gen6_pte_t *pt_vaddr;
782f1495 1245 unsigned first_entry = start >> PAGE_SHIFT;
07749ef3
MT
1246 unsigned act_pt = first_entry / GEN6_PTES;
1247 unsigned act_pte = first_entry % GEN6_PTES;
6e995e23
ID
1248 struct sg_page_iter sg_iter;
1249
cc79714f 1250 pt_vaddr = NULL;
6e995e23 1251 for_each_sg_page(pages->sgl, &sg_iter, pages->nents, 0) {
cc79714f 1252 if (pt_vaddr == NULL)
06fda602 1253 pt_vaddr = kmap_atomic(ppgtt->pd.page_table[act_pt]->page);
6e995e23 1254
cc79714f
CW
1255 pt_vaddr[act_pte] =
1256 vm->pte_encode(sg_page_iter_dma_address(&sg_iter),
24f3a8cf
AG
1257 cache_level, true, flags);
1258
07749ef3 1259 if (++act_pte == GEN6_PTES) {
6e995e23 1260 kunmap_atomic(pt_vaddr);
cc79714f 1261 pt_vaddr = NULL;
a15326a5 1262 act_pt++;
6e995e23 1263 act_pte = 0;
def886c3 1264 }
def886c3 1265 }
cc79714f
CW
1266 if (pt_vaddr)
1267 kunmap_atomic(pt_vaddr);
def886c3
DV
1268}
1269
563222a7
BW
1270/* PDE TLBs are a pain invalidate pre GEN8. It requires a context reload. If we
1271 * are switching between contexts with the same LRCA, we also must do a force
1272 * restore.
1273 */
2c642b07 1274static void mark_tlbs_dirty(struct i915_hw_ppgtt *ppgtt)
563222a7
BW
1275{
1276 /* If current vm != vm, */
1277 ppgtt->pd_dirty_rings = INTEL_INFO(ppgtt->base.dev)->ring_mask;
1278}
1279
4933d519 1280static void gen6_initialize_pt(struct i915_address_space *vm,
ec565b3c 1281 struct i915_page_table *pt)
4933d519
MT
1282{
1283 gen6_pte_t *pt_vaddr, scratch_pte;
1284 int i;
1285
1286 WARN_ON(vm->scratch.addr == 0);
1287
1288 scratch_pte = vm->pte_encode(vm->scratch.addr,
1289 I915_CACHE_LLC, true, 0);
1290
1291 pt_vaddr = kmap_atomic(pt->page);
1292
1293 for (i = 0; i < GEN6_PTES; i++)
1294 pt_vaddr[i] = scratch_pte;
1295
1296 kunmap_atomic(pt_vaddr);
1297}
1298
678d96fb
BW
1299static int gen6_alloc_va_range(struct i915_address_space *vm,
1300 uint64_t start, uint64_t length)
1301{
4933d519
MT
1302 DECLARE_BITMAP(new_page_tables, I915_PDES);
1303 struct drm_device *dev = vm->dev;
1304 struct drm_i915_private *dev_priv = dev->dev_private;
678d96fb
BW
1305 struct i915_hw_ppgtt *ppgtt =
1306 container_of(vm, struct i915_hw_ppgtt, base);
ec565b3c 1307 struct i915_page_table *pt;
4933d519 1308 const uint32_t start_save = start, length_save = length;
678d96fb 1309 uint32_t pde, temp;
4933d519
MT
1310 int ret;
1311
1312 WARN_ON(upper_32_bits(start));
1313
1314 bitmap_zero(new_page_tables, I915_PDES);
1315
1316 /* The allocation is done in two stages so that we can bail out with
1317 * minimal amount of pain. The first stage finds new page tables that
1318 * need allocation. The second stage marks use ptes within the page
1319 * tables.
1320 */
1321 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
1322 if (pt != ppgtt->scratch_pt) {
1323 WARN_ON(bitmap_empty(pt->used_ptes, GEN6_PTES));
1324 continue;
1325 }
1326
1327 /* We've already allocated a page table */
1328 WARN_ON(!bitmap_empty(pt->used_ptes, GEN6_PTES));
1329
1330 pt = alloc_pt_single(dev);
1331 if (IS_ERR(pt)) {
1332 ret = PTR_ERR(pt);
1333 goto unwind_out;
1334 }
1335
1336 gen6_initialize_pt(vm, pt);
1337
1338 ppgtt->pd.page_table[pde] = pt;
1339 set_bit(pde, new_page_tables);
72744cb1 1340 trace_i915_page_table_entry_alloc(vm, pde, start, GEN6_PDE_SHIFT);
4933d519
MT
1341 }
1342
1343 start = start_save;
1344 length = length_save;
678d96fb
BW
1345
1346 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
1347 DECLARE_BITMAP(tmp_bitmap, GEN6_PTES);
1348
1349 bitmap_zero(tmp_bitmap, GEN6_PTES);
1350 bitmap_set(tmp_bitmap, gen6_pte_index(start),
1351 gen6_pte_count(start, length));
1352
4933d519
MT
1353 if (test_and_clear_bit(pde, new_page_tables))
1354 gen6_write_pde(&ppgtt->pd, pde, pt);
1355
72744cb1
MT
1356 trace_i915_page_table_entry_map(vm, pde, pt,
1357 gen6_pte_index(start),
1358 gen6_pte_count(start, length),
1359 GEN6_PTES);
4933d519 1360 bitmap_or(pt->used_ptes, tmp_bitmap, pt->used_ptes,
678d96fb
BW
1361 GEN6_PTES);
1362 }
1363
4933d519
MT
1364 WARN_ON(!bitmap_empty(new_page_tables, I915_PDES));
1365
1366 /* Make sure write is complete before other code can use this page
1367 * table. Also require for WC mapped PTEs */
1368 readl(dev_priv->gtt.gsm);
1369
563222a7 1370 mark_tlbs_dirty(ppgtt);
678d96fb 1371 return 0;
4933d519
MT
1372
1373unwind_out:
1374 for_each_set_bit(pde, new_page_tables, I915_PDES) {
ec565b3c 1375 struct i915_page_table *pt = ppgtt->pd.page_table[pde];
4933d519
MT
1376
1377 ppgtt->pd.page_table[pde] = ppgtt->scratch_pt;
1378 unmap_and_free_pt(pt, vm->dev);
1379 }
1380
1381 mark_tlbs_dirty(ppgtt);
1382 return ret;
678d96fb
BW
1383}
1384
061dd493 1385static void gen6_ppgtt_cleanup(struct i915_address_space *vm)
a00d825d 1386{
061dd493
DV
1387 struct i915_hw_ppgtt *ppgtt =
1388 container_of(vm, struct i915_hw_ppgtt, base);
09942c65
MT
1389 struct i915_page_table *pt;
1390 uint32_t pde;
4933d519 1391
061dd493
DV
1392
1393 drm_mm_remove_node(&ppgtt->node);
1394
09942c65 1395 gen6_for_all_pdes(pt, ppgtt, pde) {
4933d519 1396 if (pt != ppgtt->scratch_pt)
09942c65 1397 unmap_and_free_pt(pt, ppgtt->base.dev);
4933d519 1398 }
06fda602 1399
4933d519 1400 unmap_and_free_pt(ppgtt->scratch_pt, ppgtt->base.dev);
e5815a2e 1401 unmap_and_free_pd(&ppgtt->pd, ppgtt->base.dev);
3440d265
DV
1402}
1403
b146520f 1404static int gen6_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt)
3440d265 1405{
853ba5d2 1406 struct drm_device *dev = ppgtt->base.dev;
1d2a314c 1407 struct drm_i915_private *dev_priv = dev->dev_private;
e3cc1995 1408 bool retried = false;
b146520f 1409 int ret;
1d2a314c 1410
c8d4c0d6
BW
1411 /* PPGTT PDEs reside in the GGTT and consists of 512 entries. The
1412 * allocator works in address space sizes, so it's multiplied by page
1413 * size. We allocate at the top of the GTT to avoid fragmentation.
1414 */
1415 BUG_ON(!drm_mm_initialized(&dev_priv->gtt.base.mm));
4933d519
MT
1416 ppgtt->scratch_pt = alloc_pt_single(ppgtt->base.dev);
1417 if (IS_ERR(ppgtt->scratch_pt))
1418 return PTR_ERR(ppgtt->scratch_pt);
1419
1420 gen6_initialize_pt(&ppgtt->base, ppgtt->scratch_pt);
1421
e3cc1995 1422alloc:
c8d4c0d6
BW
1423 ret = drm_mm_insert_node_in_range_generic(&dev_priv->gtt.base.mm,
1424 &ppgtt->node, GEN6_PD_SIZE,
1425 GEN6_PD_ALIGN, 0,
1426 0, dev_priv->gtt.base.total,
3e8b5ae9 1427 DRM_MM_TOPDOWN);
e3cc1995
BW
1428 if (ret == -ENOSPC && !retried) {
1429 ret = i915_gem_evict_something(dev, &dev_priv->gtt.base,
1430 GEN6_PD_SIZE, GEN6_PD_ALIGN,
d23db88c
CW
1431 I915_CACHE_NONE,
1432 0, dev_priv->gtt.base.total,
1433 0);
e3cc1995 1434 if (ret)
678d96fb 1435 goto err_out;
e3cc1995
BW
1436
1437 retried = true;
1438 goto alloc;
1439 }
c8d4c0d6 1440
c8c26622 1441 if (ret)
678d96fb
BW
1442 goto err_out;
1443
c8c26622 1444
c8d4c0d6
BW
1445 if (ppgtt->node.start < dev_priv->gtt.mappable_end)
1446 DRM_DEBUG("Forced to use aperture for PDEs\n");
1d2a314c 1447
c8c26622 1448 return 0;
678d96fb
BW
1449
1450err_out:
4933d519 1451 unmap_and_free_pt(ppgtt->scratch_pt, ppgtt->base.dev);
678d96fb 1452 return ret;
b146520f
BW
1453}
1454
b146520f
BW
1455static int gen6_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt)
1456{
2f2cf682 1457 return gen6_ppgtt_allocate_page_directories(ppgtt);
4933d519 1458}
06dc68d6 1459
4933d519
MT
1460static void gen6_scratch_va_range(struct i915_hw_ppgtt *ppgtt,
1461 uint64_t start, uint64_t length)
1462{
ec565b3c 1463 struct i915_page_table *unused;
4933d519 1464 uint32_t pde, temp;
1d2a314c 1465
4933d519
MT
1466 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde)
1467 ppgtt->pd.page_table[pde] = ppgtt->scratch_pt;
b146520f
BW
1468}
1469
5c5f6457 1470static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
b146520f
BW
1471{
1472 struct drm_device *dev = ppgtt->base.dev;
1473 struct drm_i915_private *dev_priv = dev->dev_private;
1474 int ret;
1475
1476 ppgtt->base.pte_encode = dev_priv->gtt.base.pte_encode;
1477 if (IS_GEN6(dev)) {
b146520f
BW
1478 ppgtt->switch_mm = gen6_mm_switch;
1479 } else if (IS_HASWELL(dev)) {
b146520f
BW
1480 ppgtt->switch_mm = hsw_mm_switch;
1481 } else if (IS_GEN7(dev)) {
b146520f
BW
1482 ppgtt->switch_mm = gen7_mm_switch;
1483 } else
1484 BUG();
1485
71ba2d64
YZ
1486 if (intel_vgpu_active(dev))
1487 ppgtt->switch_mm = vgpu_mm_switch;
1488
b146520f
BW
1489 ret = gen6_ppgtt_alloc(ppgtt);
1490 if (ret)
1491 return ret;
1492
5c5f6457 1493 ppgtt->base.allocate_va_range = gen6_alloc_va_range;
b146520f
BW
1494 ppgtt->base.clear_range = gen6_ppgtt_clear_range;
1495 ppgtt->base.insert_entries = gen6_ppgtt_insert_entries;
777dc5bb
DV
1496 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
1497 ppgtt->base.bind_vma = ppgtt_bind_vma;
b146520f 1498 ppgtt->base.cleanup = gen6_ppgtt_cleanup;
b146520f 1499 ppgtt->base.start = 0;
09942c65 1500 ppgtt->base.total = I915_PDES * GEN6_PTES * PAGE_SIZE;
87d60b63 1501 ppgtt->debug_dump = gen6_dump_ppgtt;
1d2a314c 1502
7324cc04 1503 ppgtt->pd.pd_offset =
07749ef3 1504 ppgtt->node.start / PAGE_SIZE * sizeof(gen6_pte_t);
1d2a314c 1505
678d96fb
BW
1506 ppgtt->pd_addr = (gen6_pte_t __iomem *)dev_priv->gtt.gsm +
1507 ppgtt->pd.pd_offset / sizeof(gen6_pte_t);
1508
5c5f6457 1509 gen6_scratch_va_range(ppgtt, 0, ppgtt->base.total);
1d2a314c 1510
678d96fb
BW
1511 gen6_write_page_range(dev_priv, &ppgtt->pd, 0, ppgtt->base.total);
1512
440fd528 1513 DRM_DEBUG_DRIVER("Allocated pde space (%lldM) at GTT entry: %llx\n",
b146520f
BW
1514 ppgtt->node.size >> 20,
1515 ppgtt->node.start / PAGE_SIZE);
3440d265 1516
fa76da34 1517 DRM_DEBUG("Adding PPGTT at offset %x\n",
7324cc04 1518 ppgtt->pd.pd_offset << 10);
fa76da34 1519
b146520f 1520 return 0;
3440d265
DV
1521}
1522
5c5f6457 1523static int __hw_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
3440d265
DV
1524{
1525 struct drm_i915_private *dev_priv = dev->dev_private;
3440d265 1526
853ba5d2 1527 ppgtt->base.dev = dev;
8407bb91 1528 ppgtt->base.scratch = dev_priv->gtt.base.scratch;
3440d265 1529
3ed124b2 1530 if (INTEL_INFO(dev)->gen < 8)
5c5f6457 1531 return gen6_ppgtt_init(ppgtt);
3ed124b2 1532 else
d7b2633d 1533 return gen8_ppgtt_init(ppgtt);
fa76da34
DV
1534}
1535int i915_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
1536{
1537 struct drm_i915_private *dev_priv = dev->dev_private;
1538 int ret = 0;
3ed124b2 1539
5c5f6457 1540 ret = __hw_ppgtt_init(dev, ppgtt);
fa76da34 1541 if (ret == 0) {
c7c48dfd 1542 kref_init(&ppgtt->ref);
93bd8649
BW
1543 drm_mm_init(&ppgtt->base.mm, ppgtt->base.start,
1544 ppgtt->base.total);
7e0d96bc 1545 i915_init_vm(dev_priv, &ppgtt->base);
93bd8649 1546 }
1d2a314c
DV
1547
1548 return ret;
1549}
1550
82460d97
DV
1551int i915_ppgtt_init_hw(struct drm_device *dev)
1552{
1553 struct drm_i915_private *dev_priv = dev->dev_private;
1554 struct intel_engine_cs *ring;
1555 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
1556 int i, ret = 0;
1557
671b5013
TD
1558 /* In the case of execlists, PPGTT is enabled by the context descriptor
1559 * and the PDPs are contained within the context itself. We don't
1560 * need to do anything here. */
1561 if (i915.enable_execlists)
1562 return 0;
1563
82460d97
DV
1564 if (!USES_PPGTT(dev))
1565 return 0;
1566
1567 if (IS_GEN6(dev))
1568 gen6_ppgtt_enable(dev);
1569 else if (IS_GEN7(dev))
1570 gen7_ppgtt_enable(dev);
1571 else if (INTEL_INFO(dev)->gen >= 8)
1572 gen8_ppgtt_enable(dev);
1573 else
5f77eeb0 1574 MISSING_CASE(INTEL_INFO(dev)->gen);
82460d97
DV
1575
1576 if (ppgtt) {
1577 for_each_ring(ring, dev_priv, i) {
6689c167 1578 ret = ppgtt->switch_mm(ppgtt, ring);
82460d97
DV
1579 if (ret != 0)
1580 return ret;
7e0d96bc 1581 }
93bd8649 1582 }
1d2a314c
DV
1583
1584 return ret;
1585}
4d884705
DV
1586struct i915_hw_ppgtt *
1587i915_ppgtt_create(struct drm_device *dev, struct drm_i915_file_private *fpriv)
1588{
1589 struct i915_hw_ppgtt *ppgtt;
1590 int ret;
1591
1592 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
1593 if (!ppgtt)
1594 return ERR_PTR(-ENOMEM);
1595
1596 ret = i915_ppgtt_init(dev, ppgtt);
1597 if (ret) {
1598 kfree(ppgtt);
1599 return ERR_PTR(ret);
1600 }
1601
1602 ppgtt->file_priv = fpriv;
1603
198c974d
DCS
1604 trace_i915_ppgtt_create(&ppgtt->base);
1605
4d884705
DV
1606 return ppgtt;
1607}
1608
ee960be7
DV
1609void i915_ppgtt_release(struct kref *kref)
1610{
1611 struct i915_hw_ppgtt *ppgtt =
1612 container_of(kref, struct i915_hw_ppgtt, ref);
1613
198c974d
DCS
1614 trace_i915_ppgtt_release(&ppgtt->base);
1615
ee960be7
DV
1616 /* vmas should already be unbound */
1617 WARN_ON(!list_empty(&ppgtt->base.active_list));
1618 WARN_ON(!list_empty(&ppgtt->base.inactive_list));
1619
19dd120c
DV
1620 list_del(&ppgtt->base.global_link);
1621 drm_mm_takedown(&ppgtt->base.mm);
1622
ee960be7
DV
1623 ppgtt->base.cleanup(&ppgtt->base);
1624 kfree(ppgtt);
1625}
1d2a314c 1626
a81cc00c
BW
1627extern int intel_iommu_gfx_mapped;
1628/* Certain Gen5 chipsets require require idling the GPU before
1629 * unmapping anything from the GTT when VT-d is enabled.
1630 */
2c642b07 1631static bool needs_idle_maps(struct drm_device *dev)
a81cc00c
BW
1632{
1633#ifdef CONFIG_INTEL_IOMMU
1634 /* Query intel_iommu to see if we need the workaround. Presumably that
1635 * was loaded first.
1636 */
1637 if (IS_GEN5(dev) && IS_MOBILE(dev) && intel_iommu_gfx_mapped)
1638 return true;
1639#endif
1640 return false;
1641}
1642
5c042287
BW
1643static bool do_idling(struct drm_i915_private *dev_priv)
1644{
1645 bool ret = dev_priv->mm.interruptible;
1646
a81cc00c 1647 if (unlikely(dev_priv->gtt.do_idle_maps)) {
5c042287 1648 dev_priv->mm.interruptible = false;
b2da9fe5 1649 if (i915_gpu_idle(dev_priv->dev)) {
5c042287
BW
1650 DRM_ERROR("Couldn't idle GPU\n");
1651 /* Wait a bit, in hopes it avoids the hang */
1652 udelay(10);
1653 }
1654 }
1655
1656 return ret;
1657}
1658
1659static void undo_idling(struct drm_i915_private *dev_priv, bool interruptible)
1660{
a81cc00c 1661 if (unlikely(dev_priv->gtt.do_idle_maps))
5c042287
BW
1662 dev_priv->mm.interruptible = interruptible;
1663}
1664
828c7908
BW
1665void i915_check_and_clear_faults(struct drm_device *dev)
1666{
1667 struct drm_i915_private *dev_priv = dev->dev_private;
a4872ba6 1668 struct intel_engine_cs *ring;
828c7908
BW
1669 int i;
1670
1671 if (INTEL_INFO(dev)->gen < 6)
1672 return;
1673
1674 for_each_ring(ring, dev_priv, i) {
1675 u32 fault_reg;
1676 fault_reg = I915_READ(RING_FAULT_REG(ring));
1677 if (fault_reg & RING_FAULT_VALID) {
1678 DRM_DEBUG_DRIVER("Unexpected fault\n"
59a5d290 1679 "\tAddr: 0x%08lx\n"
828c7908
BW
1680 "\tAddress space: %s\n"
1681 "\tSource ID: %d\n"
1682 "\tType: %d\n",
1683 fault_reg & PAGE_MASK,
1684 fault_reg & RING_FAULT_GTTSEL_MASK ? "GGTT" : "PPGTT",
1685 RING_FAULT_SRCID(fault_reg),
1686 RING_FAULT_FAULT_TYPE(fault_reg));
1687 I915_WRITE(RING_FAULT_REG(ring),
1688 fault_reg & ~RING_FAULT_VALID);
1689 }
1690 }
1691 POSTING_READ(RING_FAULT_REG(&dev_priv->ring[RCS]));
1692}
1693
91e56499
CW
1694static void i915_ggtt_flush(struct drm_i915_private *dev_priv)
1695{
1696 if (INTEL_INFO(dev_priv->dev)->gen < 6) {
1697 intel_gtt_chipset_flush();
1698 } else {
1699 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
1700 POSTING_READ(GFX_FLSH_CNTL_GEN6);
1701 }
1702}
1703
828c7908
BW
1704void i915_gem_suspend_gtt_mappings(struct drm_device *dev)
1705{
1706 struct drm_i915_private *dev_priv = dev->dev_private;
1707
1708 /* Don't bother messing with faults pre GEN6 as we have little
1709 * documentation supporting that it's a good idea.
1710 */
1711 if (INTEL_INFO(dev)->gen < 6)
1712 return;
1713
1714 i915_check_and_clear_faults(dev);
1715
1716 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
782f1495
BW
1717 dev_priv->gtt.base.start,
1718 dev_priv->gtt.base.total,
e568af1c 1719 true);
91e56499
CW
1720
1721 i915_ggtt_flush(dev_priv);
828c7908
BW
1722}
1723
74163907 1724int i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj)
7c2e6fdf 1725{
9da3da66 1726 if (obj->has_dma_mapping)
74163907 1727 return 0;
9da3da66
CW
1728
1729 if (!dma_map_sg(&obj->base.dev->pdev->dev,
1730 obj->pages->sgl, obj->pages->nents,
1731 PCI_DMA_BIDIRECTIONAL))
1732 return -ENOSPC;
1733
1734 return 0;
7c2e6fdf
DV
1735}
1736
2c642b07 1737static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
94ec8f61
BW
1738{
1739#ifdef writeq
1740 writeq(pte, addr);
1741#else
1742 iowrite32((u32)pte, addr);
1743 iowrite32(pte >> 32, addr + 4);
1744#endif
1745}
1746
1747static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
1748 struct sg_table *st,
782f1495 1749 uint64_t start,
24f3a8cf 1750 enum i915_cache_level level, u32 unused)
94ec8f61
BW
1751{
1752 struct drm_i915_private *dev_priv = vm->dev->dev_private;
782f1495 1753 unsigned first_entry = start >> PAGE_SHIFT;
07749ef3
MT
1754 gen8_pte_t __iomem *gtt_entries =
1755 (gen8_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
94ec8f61
BW
1756 int i = 0;
1757 struct sg_page_iter sg_iter;
57007df7 1758 dma_addr_t addr = 0; /* shut up gcc */
94ec8f61
BW
1759
1760 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
1761 addr = sg_dma_address(sg_iter.sg) +
1762 (sg_iter.sg_pgoffset << PAGE_SHIFT);
1763 gen8_set_pte(&gtt_entries[i],
1764 gen8_pte_encode(addr, level, true));
1765 i++;
1766 }
1767
1768 /*
1769 * XXX: This serves as a posting read to make sure that the PTE has
1770 * actually been updated. There is some concern that even though
1771 * registers and PTEs are within the same BAR that they are potentially
1772 * of NUMA access patterns. Therefore, even with the way we assume
1773 * hardware should work, we must keep this posting read for paranoia.
1774 */
1775 if (i != 0)
1776 WARN_ON(readq(&gtt_entries[i-1])
1777 != gen8_pte_encode(addr, level, true));
1778
94ec8f61
BW
1779 /* This next bit makes the above posting read even more important. We
1780 * want to flush the TLBs only after we're certain all the PTE updates
1781 * have finished.
1782 */
1783 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
1784 POSTING_READ(GFX_FLSH_CNTL_GEN6);
94ec8f61
BW
1785}
1786
e76e9aeb
BW
1787/*
1788 * Binds an object into the global gtt with the specified cache level. The object
1789 * will be accessible to the GPU via commands whose operands reference offsets
1790 * within the global GTT as well as accessible by the GPU through the GMADR
1791 * mapped BAR (dev_priv->mm.gtt->gtt).
1792 */
853ba5d2 1793static void gen6_ggtt_insert_entries(struct i915_address_space *vm,
7faf1ab2 1794 struct sg_table *st,
782f1495 1795 uint64_t start,
24f3a8cf 1796 enum i915_cache_level level, u32 flags)
e76e9aeb 1797{
853ba5d2 1798 struct drm_i915_private *dev_priv = vm->dev->dev_private;
782f1495 1799 unsigned first_entry = start >> PAGE_SHIFT;
07749ef3
MT
1800 gen6_pte_t __iomem *gtt_entries =
1801 (gen6_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
6e995e23
ID
1802 int i = 0;
1803 struct sg_page_iter sg_iter;
57007df7 1804 dma_addr_t addr = 0;
e76e9aeb 1805
6e995e23 1806 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
2db76d7c 1807 addr = sg_page_iter_dma_address(&sg_iter);
24f3a8cf 1808 iowrite32(vm->pte_encode(addr, level, true, flags), &gtt_entries[i]);
6e995e23 1809 i++;
e76e9aeb
BW
1810 }
1811
e76e9aeb
BW
1812 /* XXX: This serves as a posting read to make sure that the PTE has
1813 * actually been updated. There is some concern that even though
1814 * registers and PTEs are within the same BAR that they are potentially
1815 * of NUMA access patterns. Therefore, even with the way we assume
1816 * hardware should work, we must keep this posting read for paranoia.
1817 */
57007df7
PM
1818 if (i != 0) {
1819 unsigned long gtt = readl(&gtt_entries[i-1]);
1820 WARN_ON(gtt != vm->pte_encode(addr, level, true, flags));
1821 }
0f9b91c7
BW
1822
1823 /* This next bit makes the above posting read even more important. We
1824 * want to flush the TLBs only after we're certain all the PTE updates
1825 * have finished.
1826 */
1827 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
1828 POSTING_READ(GFX_FLSH_CNTL_GEN6);
e76e9aeb
BW
1829}
1830
94ec8f61 1831static void gen8_ggtt_clear_range(struct i915_address_space *vm,
782f1495
BW
1832 uint64_t start,
1833 uint64_t length,
94ec8f61
BW
1834 bool use_scratch)
1835{
1836 struct drm_i915_private *dev_priv = vm->dev->dev_private;
782f1495
BW
1837 unsigned first_entry = start >> PAGE_SHIFT;
1838 unsigned num_entries = length >> PAGE_SHIFT;
07749ef3
MT
1839 gen8_pte_t scratch_pte, __iomem *gtt_base =
1840 (gen8_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
94ec8f61
BW
1841 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
1842 int i;
1843
1844 if (WARN(num_entries > max_entries,
1845 "First entry = %d; Num entries = %d (max=%d)\n",
1846 first_entry, num_entries, max_entries))
1847 num_entries = max_entries;
1848
1849 scratch_pte = gen8_pte_encode(vm->scratch.addr,
1850 I915_CACHE_LLC,
1851 use_scratch);
1852 for (i = 0; i < num_entries; i++)
1853 gen8_set_pte(&gtt_base[i], scratch_pte);
1854 readl(gtt_base);
1855}
1856
853ba5d2 1857static void gen6_ggtt_clear_range(struct i915_address_space *vm,
782f1495
BW
1858 uint64_t start,
1859 uint64_t length,
828c7908 1860 bool use_scratch)
7faf1ab2 1861{
853ba5d2 1862 struct drm_i915_private *dev_priv = vm->dev->dev_private;
782f1495
BW
1863 unsigned first_entry = start >> PAGE_SHIFT;
1864 unsigned num_entries = length >> PAGE_SHIFT;
07749ef3
MT
1865 gen6_pte_t scratch_pte, __iomem *gtt_base =
1866 (gen6_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
a54c0c27 1867 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
7faf1ab2
DV
1868 int i;
1869
1870 if (WARN(num_entries > max_entries,
1871 "First entry = %d; Num entries = %d (max=%d)\n",
1872 first_entry, num_entries, max_entries))
1873 num_entries = max_entries;
1874
24f3a8cf 1875 scratch_pte = vm->pte_encode(vm->scratch.addr, I915_CACHE_LLC, use_scratch, 0);
828c7908 1876
7faf1ab2
DV
1877 for (i = 0; i < num_entries; i++)
1878 iowrite32(scratch_pte, &gtt_base[i]);
1879 readl(gtt_base);
1880}
1881
d369d2d9
DV
1882static void i915_ggtt_insert_entries(struct i915_address_space *vm,
1883 struct sg_table *pages,
1884 uint64_t start,
1885 enum i915_cache_level cache_level, u32 unused)
7faf1ab2
DV
1886{
1887 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
1888 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
1889
d369d2d9 1890 intel_gtt_insert_sg_entries(pages, start >> PAGE_SHIFT, flags);
0875546c 1891
7faf1ab2
DV
1892}
1893
853ba5d2 1894static void i915_ggtt_clear_range(struct i915_address_space *vm,
782f1495
BW
1895 uint64_t start,
1896 uint64_t length,
828c7908 1897 bool unused)
7faf1ab2 1898{
782f1495
BW
1899 unsigned first_entry = start >> PAGE_SHIFT;
1900 unsigned num_entries = length >> PAGE_SHIFT;
7faf1ab2
DV
1901 intel_gtt_clear_range(first_entry, num_entries);
1902}
1903
70b9f6f8
DV
1904static int ggtt_bind_vma(struct i915_vma *vma,
1905 enum i915_cache_level cache_level,
1906 u32 flags)
d5bd1449 1907{
6f65e29a 1908 struct drm_device *dev = vma->vm->dev;
7faf1ab2 1909 struct drm_i915_private *dev_priv = dev->dev_private;
6f65e29a 1910 struct drm_i915_gem_object *obj = vma->obj;
ec7adb6e 1911 struct sg_table *pages = obj->pages;
f329f5f6 1912 u32 pte_flags = 0;
70b9f6f8
DV
1913 int ret;
1914
1915 ret = i915_get_ggtt_vma_pages(vma);
1916 if (ret)
1917 return ret;
1918 pages = vma->ggtt_view.pages;
7faf1ab2 1919
24f3a8cf
AG
1920 /* Currently applicable only to VLV */
1921 if (obj->gt_ro)
f329f5f6 1922 pte_flags |= PTE_READ_ONLY;
24f3a8cf 1923
ec7adb6e 1924
6f65e29a 1925 if (!dev_priv->mm.aliasing_ppgtt || flags & GLOBAL_BIND) {
0875546c
DV
1926 vma->vm->insert_entries(vma->vm, pages,
1927 vma->node.start,
1928 cache_level, pte_flags);
6f65e29a 1929 }
d5bd1449 1930
0875546c 1931 if (dev_priv->mm.aliasing_ppgtt && flags & LOCAL_BIND) {
6f65e29a 1932 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
ec7adb6e 1933 appgtt->base.insert_entries(&appgtt->base, pages,
782f1495 1934 vma->node.start,
f329f5f6 1935 cache_level, pte_flags);
6f65e29a 1936 }
70b9f6f8
DV
1937
1938 return 0;
d5bd1449
CW
1939}
1940
6f65e29a 1941static void ggtt_unbind_vma(struct i915_vma *vma)
74163907 1942{
6f65e29a 1943 struct drm_device *dev = vma->vm->dev;
7faf1ab2 1944 struct drm_i915_private *dev_priv = dev->dev_private;
6f65e29a 1945 struct drm_i915_gem_object *obj = vma->obj;
06615ee5
JL
1946 const uint64_t size = min_t(uint64_t,
1947 obj->base.size,
1948 vma->node.size);
6f65e29a 1949
aff43766 1950 if (vma->bound & GLOBAL_BIND) {
782f1495
BW
1951 vma->vm->clear_range(vma->vm,
1952 vma->node.start,
06615ee5 1953 size,
6f65e29a 1954 true);
6f65e29a 1955 }
74898d7e 1956
0875546c 1957 if (dev_priv->mm.aliasing_ppgtt && vma->bound & LOCAL_BIND) {
6f65e29a 1958 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
06615ee5 1959
6f65e29a 1960 appgtt->base.clear_range(&appgtt->base,
782f1495 1961 vma->node.start,
06615ee5 1962 size,
6f65e29a 1963 true);
6f65e29a 1964 }
74163907
DV
1965}
1966
1967void i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj)
7c2e6fdf 1968{
5c042287
BW
1969 struct drm_device *dev = obj->base.dev;
1970 struct drm_i915_private *dev_priv = dev->dev_private;
1971 bool interruptible;
1972
1973 interruptible = do_idling(dev_priv);
1974
9da3da66
CW
1975 if (!obj->has_dma_mapping)
1976 dma_unmap_sg(&dev->pdev->dev,
1977 obj->pages->sgl, obj->pages->nents,
1978 PCI_DMA_BIDIRECTIONAL);
5c042287
BW
1979
1980 undo_idling(dev_priv, interruptible);
7c2e6fdf 1981}
644ec02b 1982
42d6ab48
CW
1983static void i915_gtt_color_adjust(struct drm_mm_node *node,
1984 unsigned long color,
440fd528
TR
1985 u64 *start,
1986 u64 *end)
42d6ab48
CW
1987{
1988 if (node->color != color)
1989 *start += 4096;
1990
1991 if (!list_empty(&node->node_list)) {
1992 node = list_entry(node->node_list.next,
1993 struct drm_mm_node,
1994 node_list);
1995 if (node->allocated && node->color != color)
1996 *end -= 4096;
1997 }
1998}
fbe5d36e 1999
f548c0e9
DV
2000static int i915_gem_setup_global_gtt(struct drm_device *dev,
2001 unsigned long start,
2002 unsigned long mappable_end,
2003 unsigned long end)
644ec02b 2004{
e78891ca
BW
2005 /* Let GEM Manage all of the aperture.
2006 *
2007 * However, leave one page at the end still bound to the scratch page.
2008 * There are a number of places where the hardware apparently prefetches
2009 * past the end of the object, and we've seen multiple hangs with the
2010 * GPU head pointer stuck in a batchbuffer bound at the last page of the
2011 * aperture. One page should be enough to keep any prefetching inside
2012 * of the aperture.
2013 */
40d74980
BW
2014 struct drm_i915_private *dev_priv = dev->dev_private;
2015 struct i915_address_space *ggtt_vm = &dev_priv->gtt.base;
ed2f3452
CW
2016 struct drm_mm_node *entry;
2017 struct drm_i915_gem_object *obj;
2018 unsigned long hole_start, hole_end;
fa76da34 2019 int ret;
644ec02b 2020
35451cb6
BW
2021 BUG_ON(mappable_end > end);
2022
ed2f3452 2023 /* Subtract the guard page ... */
40d74980 2024 drm_mm_init(&ggtt_vm->mm, start, end - start - PAGE_SIZE);
5dda8fa3
YZ
2025
2026 dev_priv->gtt.base.start = start;
2027 dev_priv->gtt.base.total = end - start;
2028
2029 if (intel_vgpu_active(dev)) {
2030 ret = intel_vgt_balloon(dev);
2031 if (ret)
2032 return ret;
2033 }
2034
42d6ab48 2035 if (!HAS_LLC(dev))
93bd8649 2036 dev_priv->gtt.base.mm.color_adjust = i915_gtt_color_adjust;
644ec02b 2037
ed2f3452 2038 /* Mark any preallocated objects as occupied */
35c20a60 2039 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
40d74980 2040 struct i915_vma *vma = i915_gem_obj_to_vma(obj, ggtt_vm);
fa76da34 2041
edd41a87 2042 DRM_DEBUG_KMS("reserving preallocated space: %lx + %zx\n",
c6cfb325
BW
2043 i915_gem_obj_ggtt_offset(obj), obj->base.size);
2044
2045 WARN_ON(i915_gem_obj_ggtt_bound(obj));
40d74980 2046 ret = drm_mm_reserve_node(&ggtt_vm->mm, &vma->node);
6c5566a8
DV
2047 if (ret) {
2048 DRM_DEBUG_KMS("Reservation failed: %i\n", ret);
2049 return ret;
2050 }
aff43766 2051 vma->bound |= GLOBAL_BIND;
ed2f3452
CW
2052 }
2053
ed2f3452 2054 /* Clear any non-preallocated blocks */
40d74980 2055 drm_mm_for_each_hole(entry, &ggtt_vm->mm, hole_start, hole_end) {
ed2f3452
CW
2056 DRM_DEBUG_KMS("clearing unused GTT space: [%lx, %lx]\n",
2057 hole_start, hole_end);
782f1495
BW
2058 ggtt_vm->clear_range(ggtt_vm, hole_start,
2059 hole_end - hole_start, true);
ed2f3452
CW
2060 }
2061
2062 /* And finally clear the reserved guard page */
782f1495 2063 ggtt_vm->clear_range(ggtt_vm, end - PAGE_SIZE, PAGE_SIZE, true);
6c5566a8 2064
fa76da34
DV
2065 if (USES_PPGTT(dev) && !USES_FULL_PPGTT(dev)) {
2066 struct i915_hw_ppgtt *ppgtt;
2067
2068 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2069 if (!ppgtt)
2070 return -ENOMEM;
2071
5c5f6457
DV
2072 ret = __hw_ppgtt_init(dev, ppgtt);
2073 if (ret) {
2074 ppgtt->base.cleanup(&ppgtt->base);
2075 kfree(ppgtt);
2076 return ret;
2077 }
2078
2079 if (ppgtt->base.allocate_va_range)
2080 ret = ppgtt->base.allocate_va_range(&ppgtt->base, 0,
2081 ppgtt->base.total);
4933d519 2082 if (ret) {
061dd493 2083 ppgtt->base.cleanup(&ppgtt->base);
4933d519 2084 kfree(ppgtt);
fa76da34 2085 return ret;
4933d519 2086 }
fa76da34 2087
5c5f6457
DV
2088 ppgtt->base.clear_range(&ppgtt->base,
2089 ppgtt->base.start,
2090 ppgtt->base.total,
2091 true);
2092
fa76da34
DV
2093 dev_priv->mm.aliasing_ppgtt = ppgtt;
2094 }
2095
6c5566a8 2096 return 0;
e76e9aeb
BW
2097}
2098
d7e5008f
BW
2099void i915_gem_init_global_gtt(struct drm_device *dev)
2100{
2101 struct drm_i915_private *dev_priv = dev->dev_private;
2102 unsigned long gtt_size, mappable_size;
d7e5008f 2103
853ba5d2 2104 gtt_size = dev_priv->gtt.base.total;
93d18799 2105 mappable_size = dev_priv->gtt.mappable_end;
d7e5008f 2106
e78891ca 2107 i915_gem_setup_global_gtt(dev, 0, mappable_size, gtt_size);
e76e9aeb
BW
2108}
2109
90d0a0e8
DV
2110void i915_global_gtt_cleanup(struct drm_device *dev)
2111{
2112 struct drm_i915_private *dev_priv = dev->dev_private;
2113 struct i915_address_space *vm = &dev_priv->gtt.base;
2114
70e32544
DV
2115 if (dev_priv->mm.aliasing_ppgtt) {
2116 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2117
2118 ppgtt->base.cleanup(&ppgtt->base);
2119 }
2120
90d0a0e8 2121 if (drm_mm_initialized(&vm->mm)) {
5dda8fa3
YZ
2122 if (intel_vgpu_active(dev))
2123 intel_vgt_deballoon();
2124
90d0a0e8
DV
2125 drm_mm_takedown(&vm->mm);
2126 list_del(&vm->global_link);
2127 }
2128
2129 vm->cleanup(vm);
2130}
70e32544 2131
e76e9aeb
BW
2132static int setup_scratch_page(struct drm_device *dev)
2133{
2134 struct drm_i915_private *dev_priv = dev->dev_private;
2135 struct page *page;
2136 dma_addr_t dma_addr;
2137
2138 page = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO);
2139 if (page == NULL)
2140 return -ENOMEM;
e76e9aeb
BW
2141 set_pages_uc(page, 1);
2142
2143#ifdef CONFIG_INTEL_IOMMU
2144 dma_addr = pci_map_page(dev->pdev, page, 0, PAGE_SIZE,
2145 PCI_DMA_BIDIRECTIONAL);
2146 if (pci_dma_mapping_error(dev->pdev, dma_addr))
2147 return -EINVAL;
2148#else
2149 dma_addr = page_to_phys(page);
2150#endif
853ba5d2
BW
2151 dev_priv->gtt.base.scratch.page = page;
2152 dev_priv->gtt.base.scratch.addr = dma_addr;
e76e9aeb
BW
2153
2154 return 0;
2155}
2156
2157static void teardown_scratch_page(struct drm_device *dev)
2158{
2159 struct drm_i915_private *dev_priv = dev->dev_private;
853ba5d2
BW
2160 struct page *page = dev_priv->gtt.base.scratch.page;
2161
2162 set_pages_wb(page, 1);
2163 pci_unmap_page(dev->pdev, dev_priv->gtt.base.scratch.addr,
e76e9aeb 2164 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
853ba5d2 2165 __free_page(page);
e76e9aeb
BW
2166}
2167
2c642b07 2168static unsigned int gen6_get_total_gtt_size(u16 snb_gmch_ctl)
e76e9aeb
BW
2169{
2170 snb_gmch_ctl >>= SNB_GMCH_GGMS_SHIFT;
2171 snb_gmch_ctl &= SNB_GMCH_GGMS_MASK;
2172 return snb_gmch_ctl << 20;
2173}
2174
2c642b07 2175static unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
9459d252
BW
2176{
2177 bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
2178 bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
2179 if (bdw_gmch_ctl)
2180 bdw_gmch_ctl = 1 << bdw_gmch_ctl;
562d55d9
BW
2181
2182#ifdef CONFIG_X86_32
2183 /* Limit 32b platforms to a 2GB GGTT: 4 << 20 / pte size * PAGE_SIZE */
2184 if (bdw_gmch_ctl > 4)
2185 bdw_gmch_ctl = 4;
2186#endif
2187
9459d252
BW
2188 return bdw_gmch_ctl << 20;
2189}
2190
2c642b07 2191static unsigned int chv_get_total_gtt_size(u16 gmch_ctrl)
d7f25f23
DL
2192{
2193 gmch_ctrl >>= SNB_GMCH_GGMS_SHIFT;
2194 gmch_ctrl &= SNB_GMCH_GGMS_MASK;
2195
2196 if (gmch_ctrl)
2197 return 1 << (20 + gmch_ctrl);
2198
2199 return 0;
2200}
2201
2c642b07 2202static size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
e76e9aeb
BW
2203{
2204 snb_gmch_ctl >>= SNB_GMCH_GMS_SHIFT;
2205 snb_gmch_ctl &= SNB_GMCH_GMS_MASK;
2206 return snb_gmch_ctl << 25; /* 32 MB units */
2207}
2208
2c642b07 2209static size_t gen8_get_stolen_size(u16 bdw_gmch_ctl)
9459d252
BW
2210{
2211 bdw_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2212 bdw_gmch_ctl &= BDW_GMCH_GMS_MASK;
2213 return bdw_gmch_ctl << 25; /* 32 MB units */
2214}
2215
d7f25f23
DL
2216static size_t chv_get_stolen_size(u16 gmch_ctrl)
2217{
2218 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
2219 gmch_ctrl &= SNB_GMCH_GMS_MASK;
2220
2221 /*
2222 * 0x0 to 0x10: 32MB increments starting at 0MB
2223 * 0x11 to 0x16: 4MB increments starting at 8MB
2224 * 0x17 to 0x1d: 4MB increments start at 36MB
2225 */
2226 if (gmch_ctrl < 0x11)
2227 return gmch_ctrl << 25;
2228 else if (gmch_ctrl < 0x17)
2229 return (gmch_ctrl - 0x11 + 2) << 22;
2230 else
2231 return (gmch_ctrl - 0x17 + 9) << 22;
2232}
2233
66375014
DL
2234static size_t gen9_get_stolen_size(u16 gen9_gmch_ctl)
2235{
2236 gen9_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2237 gen9_gmch_ctl &= BDW_GMCH_GMS_MASK;
2238
2239 if (gen9_gmch_ctl < 0xf0)
2240 return gen9_gmch_ctl << 25; /* 32 MB units */
2241 else
2242 /* 4MB increments starting at 0xf0 for 4MB */
2243 return (gen9_gmch_ctl - 0xf0 + 1) << 22;
2244}
2245
63340133
BW
2246static int ggtt_probe_common(struct drm_device *dev,
2247 size_t gtt_size)
2248{
2249 struct drm_i915_private *dev_priv = dev->dev_private;
21c34607 2250 phys_addr_t gtt_phys_addr;
63340133
BW
2251 int ret;
2252
2253 /* For Modern GENs the PTEs and register space are split in the BAR */
21c34607 2254 gtt_phys_addr = pci_resource_start(dev->pdev, 0) +
63340133
BW
2255 (pci_resource_len(dev->pdev, 0) / 2);
2256
2a073f89
ID
2257 /*
2258 * On BXT writes larger than 64 bit to the GTT pagetable range will be
2259 * dropped. For WC mappings in general we have 64 byte burst writes
2260 * when the WC buffer is flushed, so we can't use it, but have to
2261 * resort to an uncached mapping. The WC issue is easily caught by the
2262 * readback check when writing GTT PTE entries.
2263 */
2264 if (IS_BROXTON(dev))
2265 dev_priv->gtt.gsm = ioremap_nocache(gtt_phys_addr, gtt_size);
2266 else
2267 dev_priv->gtt.gsm = ioremap_wc(gtt_phys_addr, gtt_size);
63340133
BW
2268 if (!dev_priv->gtt.gsm) {
2269 DRM_ERROR("Failed to map the gtt page table\n");
2270 return -ENOMEM;
2271 }
2272
2273 ret = setup_scratch_page(dev);
2274 if (ret) {
2275 DRM_ERROR("Scratch setup failed\n");
2276 /* iounmap will also get called at remove, but meh */
2277 iounmap(dev_priv->gtt.gsm);
2278 }
2279
2280 return ret;
2281}
2282
fbe5d36e
BW
2283/* The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
2284 * bits. When using advanced contexts each context stores its own PAT, but
2285 * writing this data shouldn't be harmful even in those cases. */
ee0ce478 2286static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv)
fbe5d36e 2287{
fbe5d36e
BW
2288 uint64_t pat;
2289
2290 pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) | /* for normal objects, no eLLC */
2291 GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) | /* for something pointing to ptes? */
2292 GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC) | /* for scanout with eLLC */
2293 GEN8_PPAT(3, GEN8_PPAT_UC) | /* Uncached objects, mostly for scanout */
2294 GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
2295 GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
2296 GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
2297 GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
2298
d6a8b72e
RV
2299 if (!USES_PPGTT(dev_priv->dev))
2300 /* Spec: "For GGTT, there is NO pat_sel[2:0] from the entry,
2301 * so RTL will always use the value corresponding to
2302 * pat_sel = 000".
2303 * So let's disable cache for GGTT to avoid screen corruptions.
2304 * MOCS still can be used though.
2305 * - System agent ggtt writes (i.e. cpu gtt mmaps) already work
2306 * before this patch, i.e. the same uncached + snooping access
2307 * like on gen6/7 seems to be in effect.
2308 * - So this just fixes blitter/render access. Again it looks
2309 * like it's not just uncached access, but uncached + snooping.
2310 * So we can still hold onto all our assumptions wrt cpu
2311 * clflushing on LLC machines.
2312 */
2313 pat = GEN8_PPAT(0, GEN8_PPAT_UC);
2314
fbe5d36e
BW
2315 /* XXX: spec defines this as 2 distinct registers. It's unclear if a 64b
2316 * write would work. */
2317 I915_WRITE(GEN8_PRIVATE_PAT, pat);
2318 I915_WRITE(GEN8_PRIVATE_PAT + 4, pat >> 32);
2319}
2320
ee0ce478
VS
2321static void chv_setup_private_ppat(struct drm_i915_private *dev_priv)
2322{
2323 uint64_t pat;
2324
2325 /*
2326 * Map WB on BDW to snooped on CHV.
2327 *
2328 * Only the snoop bit has meaning for CHV, the rest is
2329 * ignored.
2330 *
cf3d262e
VS
2331 * The hardware will never snoop for certain types of accesses:
2332 * - CPU GTT (GMADR->GGTT->no snoop->memory)
2333 * - PPGTT page tables
2334 * - some other special cycles
2335 *
2336 * As with BDW, we also need to consider the following for GT accesses:
2337 * "For GGTT, there is NO pat_sel[2:0] from the entry,
2338 * so RTL will always use the value corresponding to
2339 * pat_sel = 000".
2340 * Which means we must set the snoop bit in PAT entry 0
2341 * in order to keep the global status page working.
ee0ce478
VS
2342 */
2343 pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
2344 GEN8_PPAT(1, 0) |
2345 GEN8_PPAT(2, 0) |
2346 GEN8_PPAT(3, 0) |
2347 GEN8_PPAT(4, CHV_PPAT_SNOOP) |
2348 GEN8_PPAT(5, CHV_PPAT_SNOOP) |
2349 GEN8_PPAT(6, CHV_PPAT_SNOOP) |
2350 GEN8_PPAT(7, CHV_PPAT_SNOOP);
2351
2352 I915_WRITE(GEN8_PRIVATE_PAT, pat);
2353 I915_WRITE(GEN8_PRIVATE_PAT + 4, pat >> 32);
2354}
2355
63340133
BW
2356static int gen8_gmch_probe(struct drm_device *dev,
2357 size_t *gtt_total,
2358 size_t *stolen,
2359 phys_addr_t *mappable_base,
2360 unsigned long *mappable_end)
2361{
2362 struct drm_i915_private *dev_priv = dev->dev_private;
2363 unsigned int gtt_size;
2364 u16 snb_gmch_ctl;
2365 int ret;
2366
2367 /* TODO: We're not aware of mappable constraints on gen8 yet */
2368 *mappable_base = pci_resource_start(dev->pdev, 2);
2369 *mappable_end = pci_resource_len(dev->pdev, 2);
2370
2371 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(39)))
2372 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(39));
2373
2374 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
2375
66375014
DL
2376 if (INTEL_INFO(dev)->gen >= 9) {
2377 *stolen = gen9_get_stolen_size(snb_gmch_ctl);
2378 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
2379 } else if (IS_CHERRYVIEW(dev)) {
d7f25f23
DL
2380 *stolen = chv_get_stolen_size(snb_gmch_ctl);
2381 gtt_size = chv_get_total_gtt_size(snb_gmch_ctl);
2382 } else {
2383 *stolen = gen8_get_stolen_size(snb_gmch_ctl);
2384 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
2385 }
63340133 2386
07749ef3 2387 *gtt_total = (gtt_size / sizeof(gen8_pte_t)) << PAGE_SHIFT;
63340133 2388
5a4e33a3 2389 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
ee0ce478
VS
2390 chv_setup_private_ppat(dev_priv);
2391 else
2392 bdw_setup_private_ppat(dev_priv);
fbe5d36e 2393
63340133
BW
2394 ret = ggtt_probe_common(dev, gtt_size);
2395
94ec8f61
BW
2396 dev_priv->gtt.base.clear_range = gen8_ggtt_clear_range;
2397 dev_priv->gtt.base.insert_entries = gen8_ggtt_insert_entries;
777dc5bb
DV
2398 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2399 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
63340133
BW
2400
2401 return ret;
2402}
2403
baa09f5f
BW
2404static int gen6_gmch_probe(struct drm_device *dev,
2405 size_t *gtt_total,
41907ddc
BW
2406 size_t *stolen,
2407 phys_addr_t *mappable_base,
2408 unsigned long *mappable_end)
e76e9aeb
BW
2409{
2410 struct drm_i915_private *dev_priv = dev->dev_private;
baa09f5f 2411 unsigned int gtt_size;
e76e9aeb 2412 u16 snb_gmch_ctl;
e76e9aeb
BW
2413 int ret;
2414
41907ddc
BW
2415 *mappable_base = pci_resource_start(dev->pdev, 2);
2416 *mappable_end = pci_resource_len(dev->pdev, 2);
2417
baa09f5f
BW
2418 /* 64/512MB is the current min/max we actually know of, but this is just
2419 * a coarse sanity check.
e76e9aeb 2420 */
41907ddc 2421 if ((*mappable_end < (64<<20) || (*mappable_end > (512<<20)))) {
baa09f5f
BW
2422 DRM_ERROR("Unknown GMADR size (%lx)\n",
2423 dev_priv->gtt.mappable_end);
2424 return -ENXIO;
e76e9aeb
BW
2425 }
2426
e76e9aeb
BW
2427 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(40)))
2428 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(40));
e76e9aeb 2429 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
e76e9aeb 2430
c4ae25ec 2431 *stolen = gen6_get_stolen_size(snb_gmch_ctl);
a93e4161 2432
63340133 2433 gtt_size = gen6_get_total_gtt_size(snb_gmch_ctl);
07749ef3 2434 *gtt_total = (gtt_size / sizeof(gen6_pte_t)) << PAGE_SHIFT;
e76e9aeb 2435
63340133 2436 ret = ggtt_probe_common(dev, gtt_size);
e76e9aeb 2437
853ba5d2
BW
2438 dev_priv->gtt.base.clear_range = gen6_ggtt_clear_range;
2439 dev_priv->gtt.base.insert_entries = gen6_ggtt_insert_entries;
777dc5bb
DV
2440 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2441 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
7faf1ab2 2442
e76e9aeb
BW
2443 return ret;
2444}
2445
853ba5d2 2446static void gen6_gmch_remove(struct i915_address_space *vm)
e76e9aeb 2447{
853ba5d2
BW
2448
2449 struct i915_gtt *gtt = container_of(vm, struct i915_gtt, base);
5ed16782 2450
853ba5d2
BW
2451 iounmap(gtt->gsm);
2452 teardown_scratch_page(vm->dev);
644ec02b 2453}
baa09f5f
BW
2454
2455static int i915_gmch_probe(struct drm_device *dev,
2456 size_t *gtt_total,
41907ddc
BW
2457 size_t *stolen,
2458 phys_addr_t *mappable_base,
2459 unsigned long *mappable_end)
baa09f5f
BW
2460{
2461 struct drm_i915_private *dev_priv = dev->dev_private;
2462 int ret;
2463
baa09f5f
BW
2464 ret = intel_gmch_probe(dev_priv->bridge_dev, dev_priv->dev->pdev, NULL);
2465 if (!ret) {
2466 DRM_ERROR("failed to set up gmch\n");
2467 return -EIO;
2468 }
2469
41907ddc 2470 intel_gtt_get(gtt_total, stolen, mappable_base, mappable_end);
baa09f5f
BW
2471
2472 dev_priv->gtt.do_idle_maps = needs_idle_maps(dev_priv->dev);
d369d2d9 2473 dev_priv->gtt.base.insert_entries = i915_ggtt_insert_entries;
853ba5d2 2474 dev_priv->gtt.base.clear_range = i915_ggtt_clear_range;
d369d2d9
DV
2475 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2476 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
baa09f5f 2477
c0a7f818
CW
2478 if (unlikely(dev_priv->gtt.do_idle_maps))
2479 DRM_INFO("applying Ironlake quirks for intel_iommu\n");
2480
baa09f5f
BW
2481 return 0;
2482}
2483
853ba5d2 2484static void i915_gmch_remove(struct i915_address_space *vm)
baa09f5f
BW
2485{
2486 intel_gmch_remove();
2487}
2488
2489int i915_gem_gtt_init(struct drm_device *dev)
2490{
2491 struct drm_i915_private *dev_priv = dev->dev_private;
2492 struct i915_gtt *gtt = &dev_priv->gtt;
baa09f5f
BW
2493 int ret;
2494
baa09f5f 2495 if (INTEL_INFO(dev)->gen <= 5) {
b2f21b4d 2496 gtt->gtt_probe = i915_gmch_probe;
853ba5d2 2497 gtt->base.cleanup = i915_gmch_remove;
63340133 2498 } else if (INTEL_INFO(dev)->gen < 8) {
b2f21b4d 2499 gtt->gtt_probe = gen6_gmch_probe;
853ba5d2 2500 gtt->base.cleanup = gen6_gmch_remove;
4d15c145 2501 if (IS_HASWELL(dev) && dev_priv->ellc_size)
853ba5d2 2502 gtt->base.pte_encode = iris_pte_encode;
4d15c145 2503 else if (IS_HASWELL(dev))
853ba5d2 2504 gtt->base.pte_encode = hsw_pte_encode;
b2f21b4d 2505 else if (IS_VALLEYVIEW(dev))
853ba5d2 2506 gtt->base.pte_encode = byt_pte_encode;
350ec881
CW
2507 else if (INTEL_INFO(dev)->gen >= 7)
2508 gtt->base.pte_encode = ivb_pte_encode;
b2f21b4d 2509 else
350ec881 2510 gtt->base.pte_encode = snb_pte_encode;
63340133
BW
2511 } else {
2512 dev_priv->gtt.gtt_probe = gen8_gmch_probe;
2513 dev_priv->gtt.base.cleanup = gen6_gmch_remove;
baa09f5f
BW
2514 }
2515
853ba5d2 2516 ret = gtt->gtt_probe(dev, &gtt->base.total, &gtt->stolen_size,
b2f21b4d 2517 &gtt->mappable_base, &gtt->mappable_end);
a54c0c27 2518 if (ret)
baa09f5f 2519 return ret;
baa09f5f 2520
853ba5d2
BW
2521 gtt->base.dev = dev;
2522
baa09f5f 2523 /* GMADR is the PCI mmio aperture into the global GTT. */
853ba5d2
BW
2524 DRM_INFO("Memory usable by graphics device = %zdM\n",
2525 gtt->base.total >> 20);
b2f21b4d
BW
2526 DRM_DEBUG_DRIVER("GMADR size = %ldM\n", gtt->mappable_end >> 20);
2527 DRM_DEBUG_DRIVER("GTT stolen size = %zdM\n", gtt->stolen_size >> 20);
5db6c735
DV
2528#ifdef CONFIG_INTEL_IOMMU
2529 if (intel_iommu_gfx_mapped)
2530 DRM_INFO("VT-d active for gfx access\n");
2531#endif
cfa7c862
DV
2532 /*
2533 * i915.enable_ppgtt is read-only, so do an early pass to validate the
2534 * user's requested state against the hardware/driver capabilities. We
2535 * do this now so that we can print out any log messages once rather
2536 * than every time we check intel_enable_ppgtt().
2537 */
2538 i915.enable_ppgtt = sanitize_enable_ppgtt(dev, i915.enable_ppgtt);
2539 DRM_DEBUG_DRIVER("ppgtt mode: %i\n", i915.enable_ppgtt);
baa09f5f
BW
2540
2541 return 0;
2542}
6f65e29a 2543
fa42331b
DV
2544void i915_gem_restore_gtt_mappings(struct drm_device *dev)
2545{
2546 struct drm_i915_private *dev_priv = dev->dev_private;
2547 struct drm_i915_gem_object *obj;
2548 struct i915_address_space *vm;
2549
2550 i915_check_and_clear_faults(dev);
2551
2552 /* First fill our portion of the GTT with scratch pages */
2553 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
2554 dev_priv->gtt.base.start,
2555 dev_priv->gtt.base.total,
2556 true);
2557
2558 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
2559 struct i915_vma *vma = i915_gem_obj_to_vma(obj,
2560 &dev_priv->gtt.base);
2561 if (!vma)
2562 continue;
2563
2564 i915_gem_clflush_object(obj, obj->pin_display);
2565 WARN_ON(i915_vma_bind(vma, obj->cache_level, PIN_UPDATE));
2566 }
2567
2568
2569 if (INTEL_INFO(dev)->gen >= 8) {
2570 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
2571 chv_setup_private_ppat(dev_priv);
2572 else
2573 bdw_setup_private_ppat(dev_priv);
2574
2575 return;
2576 }
2577
2578 if (USES_PPGTT(dev)) {
2579 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
2580 /* TODO: Perhaps it shouldn't be gen6 specific */
2581
2582 struct i915_hw_ppgtt *ppgtt =
2583 container_of(vm, struct i915_hw_ppgtt,
2584 base);
2585
2586 if (i915_is_ggtt(vm))
2587 ppgtt = dev_priv->mm.aliasing_ppgtt;
2588
2589 gen6_write_page_range(dev_priv, &ppgtt->pd,
2590 0, ppgtt->base.total);
2591 }
2592 }
2593
2594 i915_ggtt_flush(dev_priv);
2595}
2596
ec7adb6e
JL
2597static struct i915_vma *
2598__i915_gem_vma_create(struct drm_i915_gem_object *obj,
2599 struct i915_address_space *vm,
2600 const struct i915_ggtt_view *ggtt_view)
6f65e29a 2601{
dabde5c7 2602 struct i915_vma *vma;
6f65e29a 2603
ec7adb6e
JL
2604 if (WARN_ON(i915_is_ggtt(vm) != !!ggtt_view))
2605 return ERR_PTR(-EINVAL);
e20d2ab7
CW
2606
2607 vma = kmem_cache_zalloc(to_i915(obj->base.dev)->vmas, GFP_KERNEL);
dabde5c7
DC
2608 if (vma == NULL)
2609 return ERR_PTR(-ENOMEM);
ec7adb6e 2610
6f65e29a
BW
2611 INIT_LIST_HEAD(&vma->vma_link);
2612 INIT_LIST_HEAD(&vma->mm_list);
2613 INIT_LIST_HEAD(&vma->exec_list);
2614 vma->vm = vm;
2615 vma->obj = obj;
2616
777dc5bb 2617 if (i915_is_ggtt(vm))
ec7adb6e 2618 vma->ggtt_view = *ggtt_view;
6f65e29a 2619
f7635669
TU
2620 list_add_tail(&vma->vma_link, &obj->vma_list);
2621 if (!i915_is_ggtt(vm))
e07f0552 2622 i915_ppgtt_get(i915_vm_to_ppgtt(vm));
6f65e29a
BW
2623
2624 return vma;
2625}
2626
2627struct i915_vma *
ec7adb6e
JL
2628i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
2629 struct i915_address_space *vm)
2630{
2631 struct i915_vma *vma;
2632
2633 vma = i915_gem_obj_to_vma(obj, vm);
2634 if (!vma)
2635 vma = __i915_gem_vma_create(obj, vm,
2636 i915_is_ggtt(vm) ? &i915_ggtt_view_normal : NULL);
2637
2638 return vma;
2639}
2640
2641struct i915_vma *
2642i915_gem_obj_lookup_or_create_ggtt_vma(struct drm_i915_gem_object *obj,
fe14d5f4 2643 const struct i915_ggtt_view *view)
6f65e29a 2644{
ec7adb6e 2645 struct i915_address_space *ggtt = i915_obj_to_ggtt(obj);
6f65e29a
BW
2646 struct i915_vma *vma;
2647
ec7adb6e
JL
2648 if (WARN_ON(!view))
2649 return ERR_PTR(-EINVAL);
2650
2651 vma = i915_gem_obj_to_ggtt_view(obj, view);
2652
2653 if (IS_ERR(vma))
2654 return vma;
2655
6f65e29a 2656 if (!vma)
ec7adb6e 2657 vma = __i915_gem_vma_create(obj, ggtt, view);
6f65e29a
BW
2658
2659 return vma;
ec7adb6e 2660
6f65e29a 2661}
fe14d5f4 2662
50470bb0
TU
2663static void
2664rotate_pages(dma_addr_t *in, unsigned int width, unsigned int height,
2665 struct sg_table *st)
2666{
2667 unsigned int column, row;
2668 unsigned int src_idx;
2669 struct scatterlist *sg = st->sgl;
2670
2671 st->nents = 0;
2672
2673 for (column = 0; column < width; column++) {
2674 src_idx = width * (height - 1) + column;
2675 for (row = 0; row < height; row++) {
2676 st->nents++;
2677 /* We don't need the pages, but need to initialize
2678 * the entries so the sg list can be happily traversed.
2679 * The only thing we need are DMA addresses.
2680 */
2681 sg_set_page(sg, NULL, PAGE_SIZE, 0);
2682 sg_dma_address(sg) = in[src_idx];
2683 sg_dma_len(sg) = PAGE_SIZE;
2684 sg = sg_next(sg);
2685 src_idx -= width;
2686 }
2687 }
2688}
2689
2690static struct sg_table *
2691intel_rotate_fb_obj_pages(struct i915_ggtt_view *ggtt_view,
2692 struct drm_i915_gem_object *obj)
2693{
2694 struct drm_device *dev = obj->base.dev;
2695 struct intel_rotation_info *rot_info = &ggtt_view->rotation_info;
2696 unsigned long size, pages, rot_pages;
2697 struct sg_page_iter sg_iter;
2698 unsigned long i;
2699 dma_addr_t *page_addr_list;
2700 struct sg_table *st;
2701 unsigned int tile_pitch, tile_height;
2702 unsigned int width_pages, height_pages;
1d00dad5 2703 int ret = -ENOMEM;
50470bb0
TU
2704
2705 pages = obj->base.size / PAGE_SIZE;
2706
2707 /* Calculate tiling geometry. */
2708 tile_height = intel_tile_height(dev, rot_info->pixel_format,
2709 rot_info->fb_modifier);
2710 tile_pitch = PAGE_SIZE / tile_height;
2711 width_pages = DIV_ROUND_UP(rot_info->pitch, tile_pitch);
2712 height_pages = DIV_ROUND_UP(rot_info->height, tile_height);
2713 rot_pages = width_pages * height_pages;
2714 size = rot_pages * PAGE_SIZE;
2715
2716 /* Allocate a temporary list of source pages for random access. */
2717 page_addr_list = drm_malloc_ab(pages, sizeof(dma_addr_t));
2718 if (!page_addr_list)
2719 return ERR_PTR(ret);
2720
2721 /* Allocate target SG list. */
2722 st = kmalloc(sizeof(*st), GFP_KERNEL);
2723 if (!st)
2724 goto err_st_alloc;
2725
2726 ret = sg_alloc_table(st, rot_pages, GFP_KERNEL);
2727 if (ret)
2728 goto err_sg_alloc;
2729
2730 /* Populate source page list from the object. */
2731 i = 0;
2732 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
2733 page_addr_list[i] = sg_page_iter_dma_address(&sg_iter);
2734 i++;
2735 }
2736
2737 /* Rotate the pages. */
2738 rotate_pages(page_addr_list, width_pages, height_pages, st);
2739
2740 DRM_DEBUG_KMS(
2741 "Created rotated page mapping for object size %lu (pitch=%u, height=%u, pixel_format=0x%x, %ux%u tiles, %lu pages).\n",
2742 size, rot_info->pitch, rot_info->height,
2743 rot_info->pixel_format, width_pages, height_pages,
2744 rot_pages);
2745
2746 drm_free_large(page_addr_list);
2747
2748 return st;
2749
2750err_sg_alloc:
2751 kfree(st);
2752err_st_alloc:
2753 drm_free_large(page_addr_list);
2754
2755 DRM_DEBUG_KMS(
2756 "Failed to create rotated mapping for object size %lu! (%d) (pitch=%u, height=%u, pixel_format=0x%x, %ux%u tiles, %lu pages)\n",
2757 size, ret, rot_info->pitch, rot_info->height,
2758 rot_info->pixel_format, width_pages, height_pages,
2759 rot_pages);
2760 return ERR_PTR(ret);
2761}
ec7adb6e 2762
8bd7ef16
JL
2763static struct sg_table *
2764intel_partial_pages(const struct i915_ggtt_view *view,
2765 struct drm_i915_gem_object *obj)
2766{
2767 struct sg_table *st;
2768 struct scatterlist *sg;
2769 struct sg_page_iter obj_sg_iter;
2770 int ret = -ENOMEM;
2771
2772 st = kmalloc(sizeof(*st), GFP_KERNEL);
2773 if (!st)
2774 goto err_st_alloc;
2775
2776 ret = sg_alloc_table(st, view->params.partial.size, GFP_KERNEL);
2777 if (ret)
2778 goto err_sg_alloc;
2779
2780 sg = st->sgl;
2781 st->nents = 0;
2782 for_each_sg_page(obj->pages->sgl, &obj_sg_iter, obj->pages->nents,
2783 view->params.partial.offset)
2784 {
2785 if (st->nents >= view->params.partial.size)
2786 break;
2787
2788 sg_set_page(sg, NULL, PAGE_SIZE, 0);
2789 sg_dma_address(sg) = sg_page_iter_dma_address(&obj_sg_iter);
2790 sg_dma_len(sg) = PAGE_SIZE;
2791
2792 sg = sg_next(sg);
2793 st->nents++;
2794 }
2795
2796 return st;
2797
2798err_sg_alloc:
2799 kfree(st);
2800err_st_alloc:
2801 return ERR_PTR(ret);
2802}
2803
70b9f6f8 2804static int
50470bb0 2805i915_get_ggtt_vma_pages(struct i915_vma *vma)
fe14d5f4 2806{
50470bb0
TU
2807 int ret = 0;
2808
fe14d5f4
TU
2809 if (vma->ggtt_view.pages)
2810 return 0;
2811
2812 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
2813 vma->ggtt_view.pages = vma->obj->pages;
50470bb0
TU
2814 else if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED)
2815 vma->ggtt_view.pages =
2816 intel_rotate_fb_obj_pages(&vma->ggtt_view, vma->obj);
8bd7ef16
JL
2817 else if (vma->ggtt_view.type == I915_GGTT_VIEW_PARTIAL)
2818 vma->ggtt_view.pages =
2819 intel_partial_pages(&vma->ggtt_view, vma->obj);
fe14d5f4
TU
2820 else
2821 WARN_ONCE(1, "GGTT view %u not implemented!\n",
2822 vma->ggtt_view.type);
2823
2824 if (!vma->ggtt_view.pages) {
ec7adb6e 2825 DRM_ERROR("Failed to get pages for GGTT view type %u!\n",
fe14d5f4 2826 vma->ggtt_view.type);
50470bb0
TU
2827 ret = -EINVAL;
2828 } else if (IS_ERR(vma->ggtt_view.pages)) {
2829 ret = PTR_ERR(vma->ggtt_view.pages);
2830 vma->ggtt_view.pages = NULL;
2831 DRM_ERROR("Failed to get pages for VMA view type %u (%d)!\n",
2832 vma->ggtt_view.type, ret);
fe14d5f4
TU
2833 }
2834
50470bb0 2835 return ret;
fe14d5f4
TU
2836}
2837
2838/**
2839 * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
2840 * @vma: VMA to map
2841 * @cache_level: mapping cache level
2842 * @flags: flags like global or local mapping
2843 *
2844 * DMA addresses are taken from the scatter-gather table of this object (or of
2845 * this VMA in case of non-default GGTT views) and PTE entries set up.
2846 * Note that DMA addresses are also the only part of the SG table we care about.
2847 */
2848int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
2849 u32 flags)
2850{
75d04a37
MK
2851 int ret;
2852 u32 bind_flags;
1d335d1b 2853
75d04a37
MK
2854 if (WARN_ON(flags == 0))
2855 return -EINVAL;
1d335d1b 2856
75d04a37 2857 bind_flags = 0;
0875546c
DV
2858 if (flags & PIN_GLOBAL)
2859 bind_flags |= GLOBAL_BIND;
2860 if (flags & PIN_USER)
2861 bind_flags |= LOCAL_BIND;
2862
2863 if (flags & PIN_UPDATE)
2864 bind_flags |= vma->bound;
2865 else
2866 bind_flags &= ~vma->bound;
2867
75d04a37
MK
2868 if (bind_flags == 0)
2869 return 0;
2870
2871 if (vma->bound == 0 && vma->vm->allocate_va_range) {
2872 trace_i915_va_alloc(vma->vm,
2873 vma->node.start,
2874 vma->node.size,
2875 VM_TO_TRACE_NAME(vma->vm));
2876
2877 ret = vma->vm->allocate_va_range(vma->vm,
2878 vma->node.start,
2879 vma->node.size);
2880 if (ret)
2881 return ret;
2882 }
2883
2884 ret = vma->vm->bind_vma(vma, cache_level, bind_flags);
70b9f6f8
DV
2885 if (ret)
2886 return ret;
0875546c
DV
2887
2888 vma->bound |= bind_flags;
fe14d5f4
TU
2889
2890 return 0;
2891}
91e6711e
JL
2892
2893/**
2894 * i915_ggtt_view_size - Get the size of a GGTT view.
2895 * @obj: Object the view is of.
2896 * @view: The view in question.
2897 *
2898 * @return The size of the GGTT view in bytes.
2899 */
2900size_t
2901i915_ggtt_view_size(struct drm_i915_gem_object *obj,
2902 const struct i915_ggtt_view *view)
2903{
2904 if (view->type == I915_GGTT_VIEW_NORMAL ||
2905 view->type == I915_GGTT_VIEW_ROTATED) {
2906 return obj->base.size;
8bd7ef16
JL
2907 } else if (view->type == I915_GGTT_VIEW_PARTIAL) {
2908 return view->params.partial.size << PAGE_SHIFT;
91e6711e
JL
2909 } else {
2910 WARN_ONCE(1, "GGTT view %u not implemented!\n", view->type);
2911 return obj->base.size;
2912 }
2913}
This page took 0.518951 seconds and 5 git commands to generate.