]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/i915/i915_gem_gtt.c
drm/i915: Manipulate the Global GTT size using I915_GTT_PAGE_SIZE
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / i915 / i915_gem_gtt.c
CommitLineData
76aaf220
DV
1/*
2 * Copyright © 2010 Daniel Vetter
c4ac524c 3 * Copyright © 2011-2014 Intel Corporation
76aaf220
DV
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 * IN THE SOFTWARE.
23 *
24 */
25
e007b19d 26#include <linux/log2.h>
606fec95 27#include <linux/random.h>
0e46ce2e 28#include <linux/seq_file.h>
5bab6f60 29#include <linux/stop_machine.h>
e007b19d 30
760285e7
DH
31#include <drm/drmP.h>
32#include <drm/i915_drm.h>
e007b19d 33
76aaf220 34#include "i915_drv.h"
5dda8fa3 35#include "i915_vgpu.h"
76aaf220
DV
36#include "i915_trace.h"
37#include "intel_drv.h"
d07f0e59 38#include "intel_frontbuffer.h"
76aaf220 39
bb8f9cff
CW
40#define I915_GFP_DMA (GFP_KERNEL | __GFP_HIGHMEM)
41
45f8f69a
TU
42/**
43 * DOC: Global GTT views
44 *
45 * Background and previous state
46 *
47 * Historically objects could exists (be bound) in global GTT space only as
48 * singular instances with a view representing all of the object's backing pages
49 * in a linear fashion. This view will be called a normal view.
50 *
51 * To support multiple views of the same object, where the number of mapped
52 * pages is not equal to the backing store, or where the layout of the pages
53 * is not linear, concept of a GGTT view was added.
54 *
55 * One example of an alternative view is a stereo display driven by a single
56 * image. In this case we would have a framebuffer looking like this
57 * (2x2 pages):
58 *
59 * 12
60 * 34
61 *
62 * Above would represent a normal GGTT view as normally mapped for GPU or CPU
63 * rendering. In contrast, fed to the display engine would be an alternative
64 * view which could look something like this:
65 *
66 * 1212
67 * 3434
68 *
69 * In this example both the size and layout of pages in the alternative view is
70 * different from the normal view.
71 *
72 * Implementation and usage
73 *
74 * GGTT views are implemented using VMAs and are distinguished via enum
75 * i915_ggtt_view_type and struct i915_ggtt_view.
76 *
77 * A new flavour of core GEM functions which work with GGTT bound objects were
ec7adb6e
JL
78 * added with the _ggtt_ infix, and sometimes with _view postfix to avoid
79 * renaming in large amounts of code. They take the struct i915_ggtt_view
80 * parameter encapsulating all metadata required to implement a view.
45f8f69a
TU
81 *
82 * As a helper for callers which are only interested in the normal view,
83 * globally const i915_ggtt_view_normal singleton instance exists. All old core
84 * GEM API functions, the ones not taking the view parameter, are operating on,
85 * or with the normal GGTT view.
86 *
87 * Code wanting to add or use a new GGTT view needs to:
88 *
89 * 1. Add a new enum with a suitable name.
90 * 2. Extend the metadata in the i915_ggtt_view structure if required.
91 * 3. Add support to i915_get_vma_pages().
92 *
93 * New views are required to build a scatter-gather table from within the
94 * i915_get_vma_pages function. This table is stored in the vma.ggtt_view and
95 * exists for the lifetime of an VMA.
96 *
97 * Core API is designed to have copy semantics which means that passed in
98 * struct i915_ggtt_view does not need to be persistent (left around after
99 * calling the core API functions).
100 *
101 */
102
70b9f6f8
DV
103static int
104i915_get_ggtt_vma_pages(struct i915_vma *vma);
105
7c3f86b6
CW
106static void gen6_ggtt_invalidate(struct drm_i915_private *dev_priv)
107{
108 /* Note that as an uncached mmio write, this should flush the
109 * WCB of the writes into the GGTT before it triggers the invalidate.
110 */
111 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
112}
113
114static void guc_ggtt_invalidate(struct drm_i915_private *dev_priv)
115{
116 gen6_ggtt_invalidate(dev_priv);
117 I915_WRITE(GEN8_GTCR, GEN8_GTCR_INVALIDATE);
118}
119
120static void gmch_ggtt_invalidate(struct drm_i915_private *dev_priv)
121{
122 intel_gtt_chipset_flush();
123}
124
125static inline void i915_ggtt_invalidate(struct drm_i915_private *i915)
126{
127 i915->ggtt.invalidate(i915);
128}
129
c033666a
CW
130int intel_sanitize_enable_ppgtt(struct drm_i915_private *dev_priv,
131 int enable_ppgtt)
cfa7c862 132{
1893a71b
CW
133 bool has_aliasing_ppgtt;
134 bool has_full_ppgtt;
1f9a99e0 135 bool has_full_48bit_ppgtt;
1893a71b 136
9e1d0e60
MT
137 has_aliasing_ppgtt = dev_priv->info.has_aliasing_ppgtt;
138 has_full_ppgtt = dev_priv->info.has_full_ppgtt;
139 has_full_48bit_ppgtt = dev_priv->info.has_full_48bit_ppgtt;
1893a71b 140
e320d400
ZW
141 if (intel_vgpu_active(dev_priv)) {
142 /* emulation is too hard */
143 has_full_ppgtt = false;
144 has_full_48bit_ppgtt = false;
145 }
71ba2d64 146
0e4ca100
CW
147 if (!has_aliasing_ppgtt)
148 return 0;
149
70ee45e1
DL
150 /*
151 * We don't allow disabling PPGTT for gen9+ as it's a requirement for
152 * execlists, the sole mechanism available to submit work.
153 */
c033666a 154 if (enable_ppgtt == 0 && INTEL_GEN(dev_priv) < 9)
cfa7c862
DV
155 return 0;
156
157 if (enable_ppgtt == 1)
158 return 1;
159
1893a71b 160 if (enable_ppgtt == 2 && has_full_ppgtt)
cfa7c862
DV
161 return 2;
162
1f9a99e0
MT
163 if (enable_ppgtt == 3 && has_full_48bit_ppgtt)
164 return 3;
165
93a25a9e
DV
166#ifdef CONFIG_INTEL_IOMMU
167 /* Disable ppgtt on SNB if VT-d is on. */
c033666a 168 if (IS_GEN6(dev_priv) && intel_iommu_gfx_mapped) {
93a25a9e 169 DRM_INFO("Disabling PPGTT because VT-d is on\n");
cfa7c862 170 return 0;
93a25a9e
DV
171 }
172#endif
173
62942ed7 174 /* Early VLV doesn't have this */
91c8a326 175 if (IS_VALLEYVIEW(dev_priv) && dev_priv->drm.pdev->revision < 0xb) {
62942ed7
JB
176 DRM_DEBUG_DRIVER("disabling PPGTT on pre-B3 step VLV\n");
177 return 0;
178 }
179
e320d400 180 if (INTEL_GEN(dev_priv) >= 8 && i915.enable_execlists && has_full_ppgtt)
1f9a99e0 181 return has_full_48bit_ppgtt ? 3 : 2;
2f82bbdf
MT
182 else
183 return has_aliasing_ppgtt ? 1 : 0;
93a25a9e
DV
184}
185
70b9f6f8
DV
186static int ppgtt_bind_vma(struct i915_vma *vma,
187 enum i915_cache_level cache_level,
188 u32 unused)
47552659
DV
189{
190 u32 pte_flags = 0;
191
a4f5ea64 192 vma->pages = vma->obj->mm.pages;
247177dd 193
47552659
DV
194 /* Currently applicable only to VLV */
195 if (vma->obj->gt_ro)
196 pte_flags |= PTE_READ_ONLY;
197
247177dd 198 vma->vm->insert_entries(vma->vm, vma->pages, vma->node.start,
47552659 199 cache_level, pte_flags);
70b9f6f8
DV
200
201 return 0;
47552659
DV
202}
203
204static void ppgtt_unbind_vma(struct i915_vma *vma)
205{
206 vma->vm->clear_range(vma->vm,
207 vma->node.start,
4fb84d99 208 vma->size);
47552659 209}
6f65e29a 210
2c642b07 211static gen8_pte_t gen8_pte_encode(dma_addr_t addr,
4fb84d99 212 enum i915_cache_level level)
94ec8f61 213{
4fb84d99 214 gen8_pte_t pte = _PAGE_PRESENT | _PAGE_RW;
94ec8f61 215 pte |= addr;
63c42e56
BW
216
217 switch (level) {
218 case I915_CACHE_NONE:
fbe5d36e 219 pte |= PPAT_UNCACHED_INDEX;
63c42e56
BW
220 break;
221 case I915_CACHE_WT:
222 pte |= PPAT_DISPLAY_ELLC_INDEX;
223 break;
224 default:
225 pte |= PPAT_CACHED_INDEX;
226 break;
227 }
228
94ec8f61
BW
229 return pte;
230}
231
fe36f55d
MK
232static gen8_pde_t gen8_pde_encode(const dma_addr_t addr,
233 const enum i915_cache_level level)
b1fe6673 234{
07749ef3 235 gen8_pde_t pde = _PAGE_PRESENT | _PAGE_RW;
b1fe6673
BW
236 pde |= addr;
237 if (level != I915_CACHE_NONE)
238 pde |= PPAT_CACHED_PDE_INDEX;
239 else
240 pde |= PPAT_UNCACHED_INDEX;
241 return pde;
242}
243
762d9936
MT
244#define gen8_pdpe_encode gen8_pde_encode
245#define gen8_pml4e_encode gen8_pde_encode
246
07749ef3
MT
247static gen6_pte_t snb_pte_encode(dma_addr_t addr,
248 enum i915_cache_level level,
4fb84d99 249 u32 unused)
54d12527 250{
4fb84d99 251 gen6_pte_t pte = GEN6_PTE_VALID;
54d12527 252 pte |= GEN6_PTE_ADDR_ENCODE(addr);
e7210c3c
BW
253
254 switch (level) {
350ec881
CW
255 case I915_CACHE_L3_LLC:
256 case I915_CACHE_LLC:
257 pte |= GEN6_PTE_CACHE_LLC;
258 break;
259 case I915_CACHE_NONE:
260 pte |= GEN6_PTE_UNCACHED;
261 break;
262 default:
5f77eeb0 263 MISSING_CASE(level);
350ec881
CW
264 }
265
266 return pte;
267}
268
07749ef3
MT
269static gen6_pte_t ivb_pte_encode(dma_addr_t addr,
270 enum i915_cache_level level,
4fb84d99 271 u32 unused)
350ec881 272{
4fb84d99 273 gen6_pte_t pte = GEN6_PTE_VALID;
350ec881
CW
274 pte |= GEN6_PTE_ADDR_ENCODE(addr);
275
276 switch (level) {
277 case I915_CACHE_L3_LLC:
278 pte |= GEN7_PTE_CACHE_L3_LLC;
e7210c3c
BW
279 break;
280 case I915_CACHE_LLC:
281 pte |= GEN6_PTE_CACHE_LLC;
282 break;
283 case I915_CACHE_NONE:
9119708c 284 pte |= GEN6_PTE_UNCACHED;
e7210c3c
BW
285 break;
286 default:
5f77eeb0 287 MISSING_CASE(level);
e7210c3c
BW
288 }
289
54d12527
BW
290 return pte;
291}
292
07749ef3
MT
293static gen6_pte_t byt_pte_encode(dma_addr_t addr,
294 enum i915_cache_level level,
4fb84d99 295 u32 flags)
93c34e70 296{
4fb84d99 297 gen6_pte_t pte = GEN6_PTE_VALID;
93c34e70
KG
298 pte |= GEN6_PTE_ADDR_ENCODE(addr);
299
24f3a8cf
AG
300 if (!(flags & PTE_READ_ONLY))
301 pte |= BYT_PTE_WRITEABLE;
93c34e70
KG
302
303 if (level != I915_CACHE_NONE)
304 pte |= BYT_PTE_SNOOPED_BY_CPU_CACHES;
305
306 return pte;
307}
308
07749ef3
MT
309static gen6_pte_t hsw_pte_encode(dma_addr_t addr,
310 enum i915_cache_level level,
4fb84d99 311 u32 unused)
9119708c 312{
4fb84d99 313 gen6_pte_t pte = GEN6_PTE_VALID;
0d8ff15e 314 pte |= HSW_PTE_ADDR_ENCODE(addr);
9119708c
KG
315
316 if (level != I915_CACHE_NONE)
87a6b688 317 pte |= HSW_WB_LLC_AGE3;
9119708c
KG
318
319 return pte;
320}
321
07749ef3
MT
322static gen6_pte_t iris_pte_encode(dma_addr_t addr,
323 enum i915_cache_level level,
4fb84d99 324 u32 unused)
4d15c145 325{
4fb84d99 326 gen6_pte_t pte = GEN6_PTE_VALID;
4d15c145
BW
327 pte |= HSW_PTE_ADDR_ENCODE(addr);
328
651d794f
CW
329 switch (level) {
330 case I915_CACHE_NONE:
331 break;
332 case I915_CACHE_WT:
c51e9701 333 pte |= HSW_WT_ELLC_LLC_AGE3;
651d794f
CW
334 break;
335 default:
c51e9701 336 pte |= HSW_WB_ELLC_LLC_AGE3;
651d794f
CW
337 break;
338 }
4d15c145
BW
339
340 return pte;
341}
342
275a991c 343static int __setup_page_dma(struct drm_i915_private *dev_priv,
c114f76a 344 struct i915_page_dma *p, gfp_t flags)
678d96fb 345{
275a991c 346 struct device *kdev = &dev_priv->drm.pdev->dev;
678d96fb 347
c114f76a 348 p->page = alloc_page(flags);
44159ddb
MK
349 if (!p->page)
350 return -ENOMEM;
678d96fb 351
c49d13ee 352 p->daddr = dma_map_page(kdev,
f51455d4 353 p->page, 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
678d96fb 354
c49d13ee 355 if (dma_mapping_error(kdev, p->daddr)) {
44159ddb
MK
356 __free_page(p->page);
357 return -EINVAL;
358 }
1266cdb1
MT
359
360 return 0;
678d96fb
BW
361}
362
275a991c
TU
363static int setup_page_dma(struct drm_i915_private *dev_priv,
364 struct i915_page_dma *p)
c114f76a 365{
275a991c 366 return __setup_page_dma(dev_priv, p, I915_GFP_DMA);
c114f76a
MK
367}
368
275a991c
TU
369static void cleanup_page_dma(struct drm_i915_private *dev_priv,
370 struct i915_page_dma *p)
06fda602 371{
275a991c 372 struct pci_dev *pdev = dev_priv->drm.pdev;
52a05c30 373
44159ddb 374 if (WARN_ON(!p->page))
06fda602 375 return;
678d96fb 376
f51455d4 377 dma_unmap_page(&pdev->dev, p->daddr, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
44159ddb
MK
378 __free_page(p->page);
379 memset(p, 0, sizeof(*p));
380}
381
d1c54acd 382static void *kmap_page_dma(struct i915_page_dma *p)
73eeea53 383{
d1c54acd
MK
384 return kmap_atomic(p->page);
385}
73eeea53 386
d1c54acd
MK
387/* We use the flushing unmap only with ppgtt structures:
388 * page directories, page tables and scratch pages.
389 */
e2d214ae 390static void kunmap_page_dma(struct drm_i915_private *dev_priv, void *vaddr)
d1c54acd 391{
73eeea53
MK
392 /* There are only few exceptions for gen >=6. chv and bxt.
393 * And we are not sure about the latter so play safe for now.
394 */
cc3f90f0 395 if (IS_CHERRYVIEW(dev_priv) || IS_GEN9_LP(dev_priv))
73eeea53
MK
396 drm_clflush_virt_range(vaddr, PAGE_SIZE);
397
398 kunmap_atomic(vaddr);
399}
400
567047be 401#define kmap_px(px) kmap_page_dma(px_base(px))
e2d214ae 402#define kunmap_px(ppgtt, vaddr) \
49d73912 403 kunmap_page_dma((ppgtt)->base.i915, (vaddr))
d1c54acd 404
275a991c
TU
405#define setup_px(dev_priv, px) setup_page_dma((dev_priv), px_base(px))
406#define cleanup_px(dev_priv, px) cleanup_page_dma((dev_priv), px_base(px))
e2d214ae
TU
407#define fill_px(dev_priv, px, v) fill_page_dma((dev_priv), px_base(px), (v))
408#define fill32_px(dev_priv, px, v) \
409 fill_page_dma_32((dev_priv), px_base(px), (v))
567047be 410
e2d214ae
TU
411static void fill_page_dma(struct drm_i915_private *dev_priv,
412 struct i915_page_dma *p, const uint64_t val)
d1c54acd
MK
413{
414 int i;
415 uint64_t * const vaddr = kmap_page_dma(p);
416
417 for (i = 0; i < 512; i++)
418 vaddr[i] = val;
419
e2d214ae 420 kunmap_page_dma(dev_priv, vaddr);
d1c54acd
MK
421}
422
e2d214ae
TU
423static void fill_page_dma_32(struct drm_i915_private *dev_priv,
424 struct i915_page_dma *p, const uint32_t val32)
73eeea53
MK
425{
426 uint64_t v = val32;
427
428 v = v << 32 | val32;
429
e2d214ae 430 fill_page_dma(dev_priv, p, v);
73eeea53
MK
431}
432
8bcdd0f7 433static int
275a991c 434setup_scratch_page(struct drm_i915_private *dev_priv,
bb8f9cff
CW
435 struct i915_page_dma *scratch,
436 gfp_t gfp)
4ad2af1e 437{
275a991c 438 return __setup_page_dma(dev_priv, scratch, gfp | __GFP_ZERO);
4ad2af1e
MK
439}
440
275a991c 441static void cleanup_scratch_page(struct drm_i915_private *dev_priv,
8bcdd0f7 442 struct i915_page_dma *scratch)
4ad2af1e 443{
275a991c 444 cleanup_page_dma(dev_priv, scratch);
4ad2af1e
MK
445}
446
275a991c 447static struct i915_page_table *alloc_pt(struct drm_i915_private *dev_priv)
06fda602 448{
ec565b3c 449 struct i915_page_table *pt;
275a991c 450 const size_t count = INTEL_GEN(dev_priv) >= 8 ? GEN8_PTES : GEN6_PTES;
678d96fb 451 int ret = -ENOMEM;
06fda602
BW
452
453 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
454 if (!pt)
455 return ERR_PTR(-ENOMEM);
456
678d96fb
BW
457 pt->used_ptes = kcalloc(BITS_TO_LONGS(count), sizeof(*pt->used_ptes),
458 GFP_KERNEL);
459
460 if (!pt->used_ptes)
461 goto fail_bitmap;
462
275a991c 463 ret = setup_px(dev_priv, pt);
678d96fb 464 if (ret)
44159ddb 465 goto fail_page_m;
06fda602
BW
466
467 return pt;
678d96fb 468
44159ddb 469fail_page_m:
678d96fb
BW
470 kfree(pt->used_ptes);
471fail_bitmap:
472 kfree(pt);
473
474 return ERR_PTR(ret);
06fda602
BW
475}
476
275a991c
TU
477static void free_pt(struct drm_i915_private *dev_priv,
478 struct i915_page_table *pt)
06fda602 479{
275a991c 480 cleanup_px(dev_priv, pt);
2e906bea
MK
481 kfree(pt->used_ptes);
482 kfree(pt);
483}
484
485static void gen8_initialize_pt(struct i915_address_space *vm,
486 struct i915_page_table *pt)
487{
488 gen8_pte_t scratch_pte;
489
8bcdd0f7 490 scratch_pte = gen8_pte_encode(vm->scratch_page.daddr,
4fb84d99 491 I915_CACHE_LLC);
2e906bea 492
49d73912 493 fill_px(vm->i915, pt, scratch_pte);
2e906bea
MK
494}
495
496static void gen6_initialize_pt(struct i915_address_space *vm,
497 struct i915_page_table *pt)
498{
499 gen6_pte_t scratch_pte;
500
8bcdd0f7 501 WARN_ON(vm->scratch_page.daddr == 0);
2e906bea 502
8bcdd0f7 503 scratch_pte = vm->pte_encode(vm->scratch_page.daddr,
4fb84d99 504 I915_CACHE_LLC, 0);
2e906bea 505
49d73912 506 fill32_px(vm->i915, pt, scratch_pte);
06fda602
BW
507}
508
275a991c 509static struct i915_page_directory *alloc_pd(struct drm_i915_private *dev_priv)
06fda602 510{
ec565b3c 511 struct i915_page_directory *pd;
33c8819f 512 int ret = -ENOMEM;
06fda602
BW
513
514 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
515 if (!pd)
516 return ERR_PTR(-ENOMEM);
517
33c8819f
MT
518 pd->used_pdes = kcalloc(BITS_TO_LONGS(I915_PDES),
519 sizeof(*pd->used_pdes), GFP_KERNEL);
520 if (!pd->used_pdes)
a08e111a 521 goto fail_bitmap;
33c8819f 522
275a991c 523 ret = setup_px(dev_priv, pd);
33c8819f 524 if (ret)
a08e111a 525 goto fail_page_m;
e5815a2e 526
06fda602 527 return pd;
33c8819f 528
a08e111a 529fail_page_m:
33c8819f 530 kfree(pd->used_pdes);
a08e111a 531fail_bitmap:
33c8819f
MT
532 kfree(pd);
533
534 return ERR_PTR(ret);
06fda602
BW
535}
536
275a991c
TU
537static void free_pd(struct drm_i915_private *dev_priv,
538 struct i915_page_directory *pd)
2e906bea
MK
539{
540 if (px_page(pd)) {
275a991c 541 cleanup_px(dev_priv, pd);
2e906bea
MK
542 kfree(pd->used_pdes);
543 kfree(pd);
544 }
545}
546
547static void gen8_initialize_pd(struct i915_address_space *vm,
548 struct i915_page_directory *pd)
549{
550 gen8_pde_t scratch_pde;
551
552 scratch_pde = gen8_pde_encode(px_dma(vm->scratch_pt), I915_CACHE_LLC);
553
49d73912 554 fill_px(vm->i915, pd, scratch_pde);
2e906bea
MK
555}
556
275a991c 557static int __pdp_init(struct drm_i915_private *dev_priv,
6ac18502
MT
558 struct i915_page_directory_pointer *pdp)
559{
275a991c 560 size_t pdpes = I915_PDPES_PER_PDP(dev_priv);
6ac18502
MT
561
562 pdp->used_pdpes = kcalloc(BITS_TO_LONGS(pdpes),
563 sizeof(unsigned long),
564 GFP_KERNEL);
565 if (!pdp->used_pdpes)
566 return -ENOMEM;
567
568 pdp->page_directory = kcalloc(pdpes, sizeof(*pdp->page_directory),
569 GFP_KERNEL);
570 if (!pdp->page_directory) {
571 kfree(pdp->used_pdpes);
572 /* the PDP might be the statically allocated top level. Keep it
573 * as clean as possible */
574 pdp->used_pdpes = NULL;
575 return -ENOMEM;
576 }
577
578 return 0;
579}
580
581static void __pdp_fini(struct i915_page_directory_pointer *pdp)
582{
583 kfree(pdp->used_pdpes);
584 kfree(pdp->page_directory);
585 pdp->page_directory = NULL;
586}
587
762d9936 588static struct
275a991c 589i915_page_directory_pointer *alloc_pdp(struct drm_i915_private *dev_priv)
762d9936
MT
590{
591 struct i915_page_directory_pointer *pdp;
592 int ret = -ENOMEM;
593
275a991c 594 WARN_ON(!USES_FULL_48BIT_PPGTT(dev_priv));
762d9936
MT
595
596 pdp = kzalloc(sizeof(*pdp), GFP_KERNEL);
597 if (!pdp)
598 return ERR_PTR(-ENOMEM);
599
275a991c 600 ret = __pdp_init(dev_priv, pdp);
762d9936
MT
601 if (ret)
602 goto fail_bitmap;
603
275a991c 604 ret = setup_px(dev_priv, pdp);
762d9936
MT
605 if (ret)
606 goto fail_page_m;
607
608 return pdp;
609
610fail_page_m:
611 __pdp_fini(pdp);
612fail_bitmap:
613 kfree(pdp);
614
615 return ERR_PTR(ret);
616}
617
275a991c 618static void free_pdp(struct drm_i915_private *dev_priv,
6ac18502
MT
619 struct i915_page_directory_pointer *pdp)
620{
621 __pdp_fini(pdp);
275a991c
TU
622 if (USES_FULL_48BIT_PPGTT(dev_priv)) {
623 cleanup_px(dev_priv, pdp);
762d9936
MT
624 kfree(pdp);
625 }
626}
627
69ab76fd
MT
628static void gen8_initialize_pdp(struct i915_address_space *vm,
629 struct i915_page_directory_pointer *pdp)
630{
631 gen8_ppgtt_pdpe_t scratch_pdpe;
632
633 scratch_pdpe = gen8_pdpe_encode(px_dma(vm->scratch_pd), I915_CACHE_LLC);
634
49d73912 635 fill_px(vm->i915, pdp, scratch_pdpe);
69ab76fd
MT
636}
637
638static void gen8_initialize_pml4(struct i915_address_space *vm,
639 struct i915_pml4 *pml4)
640{
641 gen8_ppgtt_pml4e_t scratch_pml4e;
642
643 scratch_pml4e = gen8_pml4e_encode(px_dma(vm->scratch_pdp),
644 I915_CACHE_LLC);
645
49d73912 646 fill_px(vm->i915, pml4, scratch_pml4e);
69ab76fd
MT
647}
648
762d9936 649static void
5c693b2b
MA
650gen8_setup_pdpe(struct i915_hw_ppgtt *ppgtt,
651 struct i915_page_directory_pointer *pdp,
652 struct i915_page_directory *pd,
653 int index)
762d9936
MT
654{
655 gen8_ppgtt_pdpe_t *page_directorypo;
656
275a991c 657 if (!USES_FULL_48BIT_PPGTT(to_i915(ppgtt->base.dev)))
762d9936
MT
658 return;
659
660 page_directorypo = kmap_px(pdp);
661 page_directorypo[index] = gen8_pdpe_encode(px_dma(pd), I915_CACHE_LLC);
662 kunmap_px(ppgtt, page_directorypo);
663}
664
665static void
56843107
MA
666gen8_setup_pml4e(struct i915_hw_ppgtt *ppgtt,
667 struct i915_pml4 *pml4,
668 struct i915_page_directory_pointer *pdp,
669 int index)
762d9936
MT
670{
671 gen8_ppgtt_pml4e_t *pagemap = kmap_px(pml4);
672
275a991c 673 WARN_ON(!USES_FULL_48BIT_PPGTT(to_i915(ppgtt->base.dev)));
762d9936
MT
674 pagemap[index] = gen8_pml4e_encode(px_dma(pdp), I915_CACHE_LLC);
675 kunmap_px(ppgtt, pagemap);
6ac18502
MT
676}
677
94e409c1 678/* Broadwell Page Directory Pointer Descriptors */
e85b26dc 679static int gen8_write_pdp(struct drm_i915_gem_request *req,
7cb6d7ac
MT
680 unsigned entry,
681 dma_addr_t addr)
94e409c1 682{
7e37f889 683 struct intel_ring *ring = req->ring;
4a570db5 684 struct intel_engine_cs *engine = req->engine;
94e409c1
BW
685 int ret;
686
687 BUG_ON(entry >= 4);
688
5fb9de1a 689 ret = intel_ring_begin(req, 6);
94e409c1
BW
690 if (ret)
691 return ret;
692
b5321f30
CW
693 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
694 intel_ring_emit_reg(ring, GEN8_RING_PDP_UDW(engine, entry));
695 intel_ring_emit(ring, upper_32_bits(addr));
696 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
697 intel_ring_emit_reg(ring, GEN8_RING_PDP_LDW(engine, entry));
698 intel_ring_emit(ring, lower_32_bits(addr));
699 intel_ring_advance(ring);
94e409c1
BW
700
701 return 0;
702}
703
2dba3239
MT
704static int gen8_legacy_mm_switch(struct i915_hw_ppgtt *ppgtt,
705 struct drm_i915_gem_request *req)
94e409c1 706{
eeb9488e 707 int i, ret;
94e409c1 708
7cb6d7ac 709 for (i = GEN8_LEGACY_PDPES - 1; i >= 0; i--) {
d852c7bf
MK
710 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
711
e85b26dc 712 ret = gen8_write_pdp(req, i, pd_daddr);
eeb9488e
BW
713 if (ret)
714 return ret;
94e409c1 715 }
d595bd4b 716
eeb9488e 717 return 0;
94e409c1
BW
718}
719
2dba3239
MT
720static int gen8_48b_mm_switch(struct i915_hw_ppgtt *ppgtt,
721 struct drm_i915_gem_request *req)
722{
723 return gen8_write_pdp(req, 0, px_dma(&ppgtt->pml4));
724}
725
fce93755
MK
726/* PDE TLBs are a pain to invalidate on GEN8+. When we modify
727 * the page table structures, we mark them dirty so that
728 * context switching/execlist queuing code takes extra steps
729 * to ensure that tlbs are flushed.
730 */
731static void mark_tlbs_dirty(struct i915_hw_ppgtt *ppgtt)
732{
49d73912 733 ppgtt->pd_dirty_rings = INTEL_INFO(ppgtt->base.i915)->ring_mask;
fce93755
MK
734}
735
2ce5179f
MW
736/* Removes entries from a single page table, releasing it if it's empty.
737 * Caller can use the return value to update higher-level entries.
738 */
739static bool gen8_ppgtt_clear_pt(struct i915_address_space *vm,
d209b9c3
MW
740 struct i915_page_table *pt,
741 uint64_t start,
742 uint64_t length)
459108b8 743{
e5716f55 744 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
d209b9c3 745 unsigned int num_entries = gen8_pte_count(start, length);
37c63934
MK
746 unsigned int pte = gen8_pte_index(start);
747 unsigned int pte_end = pte + num_entries;
f9b5b782 748 gen8_pte_t *pt_vaddr;
d209b9c3
MW
749 gen8_pte_t scratch_pte = gen8_pte_encode(vm->scratch_page.daddr,
750 I915_CACHE_LLC);
459108b8 751
d209b9c3 752 if (WARN_ON(!px_page(pt)))
2ce5179f 753 return false;
459108b8 754
37c63934
MK
755 GEM_BUG_ON(pte_end > GEN8_PTES);
756
757 bitmap_clear(pt->used_ptes, pte, num_entries);
06fda602 758
a18dbba8 759 if (bitmap_empty(pt->used_ptes, GEN8_PTES))
2ce5179f 760 return true;
2ce5179f 761
d209b9c3
MW
762 pt_vaddr = kmap_px(pt);
763
37c63934
MK
764 while (pte < pte_end)
765 pt_vaddr[pte++] = scratch_pte;
06fda602 766
d209b9c3 767 kunmap_px(ppgtt, pt_vaddr);
2ce5179f
MW
768
769 return false;
d209b9c3 770}
06fda602 771
2ce5179f
MW
772/* Removes entries from a single page dir, releasing it if it's empty.
773 * Caller can use the return value to update higher-level entries
774 */
775static bool gen8_ppgtt_clear_pd(struct i915_address_space *vm,
d209b9c3
MW
776 struct i915_page_directory *pd,
777 uint64_t start,
778 uint64_t length)
779{
2ce5179f 780 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
d209b9c3
MW
781 struct i915_page_table *pt;
782 uint64_t pde;
2ce5179f
MW
783 gen8_pde_t *pde_vaddr;
784 gen8_pde_t scratch_pde = gen8_pde_encode(px_dma(vm->scratch_pt),
785 I915_CACHE_LLC);
d209b9c3
MW
786
787 gen8_for_each_pde(pt, pd, start, length, pde) {
06fda602 788 if (WARN_ON(!pd->page_table[pde]))
00245266 789 break;
06fda602 790
2ce5179f
MW
791 if (gen8_ppgtt_clear_pt(vm, pt, start, length)) {
792 __clear_bit(pde, pd->used_pdes);
793 pde_vaddr = kmap_px(pd);
794 pde_vaddr[pde] = scratch_pde;
795 kunmap_px(ppgtt, pde_vaddr);
49d73912 796 free_pt(vm->i915, pt);
2ce5179f
MW
797 }
798 }
799
a18dbba8 800 if (bitmap_empty(pd->used_pdes, I915_PDES))
2ce5179f 801 return true;
2ce5179f
MW
802
803 return false;
d209b9c3 804}
06fda602 805
2ce5179f
MW
806/* Removes entries from a single page dir pointer, releasing it if it's empty.
807 * Caller can use the return value to update higher-level entries
808 */
809static bool gen8_ppgtt_clear_pdp(struct i915_address_space *vm,
d209b9c3
MW
810 struct i915_page_directory_pointer *pdp,
811 uint64_t start,
812 uint64_t length)
813{
2ce5179f 814 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
d209b9c3
MW
815 struct i915_page_directory *pd;
816 uint64_t pdpe;
06fda602 817
d209b9c3
MW
818 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
819 if (WARN_ON(!pdp->page_directory[pdpe]))
820 break;
459108b8 821
2ce5179f
MW
822 if (gen8_ppgtt_clear_pd(vm, pd, start, length)) {
823 __clear_bit(pdpe, pdp->used_pdpes);
9e65a378 824 gen8_setup_pdpe(ppgtt, pdp, vm->scratch_pd, pdpe);
49d73912 825 free_pd(vm->i915, pd);
2ce5179f
MW
826 }
827 }
828
fce93755
MK
829 mark_tlbs_dirty(ppgtt);
830
a18dbba8 831 if (bitmap_empty(pdp->used_pdpes, I915_PDPES_PER_PDP(dev_priv)))
2ce5179f 832 return true;
2ce5179f
MW
833
834 return false;
d209b9c3 835}
459108b8 836
2ce5179f
MW
837/* Removes entries from a single pml4.
838 * This is the top-level structure in 4-level page tables used on gen8+.
839 * Empty entries are always scratch pml4e.
840 */
d209b9c3
MW
841static void gen8_ppgtt_clear_pml4(struct i915_address_space *vm,
842 struct i915_pml4 *pml4,
843 uint64_t start,
844 uint64_t length)
845{
2ce5179f 846 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
d209b9c3
MW
847 struct i915_page_directory_pointer *pdp;
848 uint64_t pml4e;
2ce5179f 849
49d73912 850 GEM_BUG_ON(!USES_FULL_48BIT_PPGTT(vm->i915));
459108b8 851
d209b9c3
MW
852 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
853 if (WARN_ON(!pml4->pdps[pml4e]))
854 break;
459108b8 855
2ce5179f
MW
856 if (gen8_ppgtt_clear_pdp(vm, pdp, start, length)) {
857 __clear_bit(pml4e, pml4->used_pml4es);
9e65a378 858 gen8_setup_pml4e(ppgtt, pml4, vm->scratch_pdp, pml4e);
49d73912 859 free_pdp(vm->i915, pdp);
2ce5179f 860 }
459108b8
BW
861 }
862}
863
f9b5b782 864static void gen8_ppgtt_clear_range(struct i915_address_space *vm,
4fb84d99 865 uint64_t start, uint64_t length)
9df15b49 866{
e5716f55 867 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
f9b5b782 868
c6385c94 869 if (USES_FULL_48BIT_PPGTT(vm->i915))
d209b9c3
MW
870 gen8_ppgtt_clear_pml4(vm, &ppgtt->pml4, start, length);
871 else
872 gen8_ppgtt_clear_pdp(vm, &ppgtt->pdp, start, length);
f9b5b782
MT
873}
874
875static void
876gen8_ppgtt_insert_pte_entries(struct i915_address_space *vm,
877 struct i915_page_directory_pointer *pdp,
3387d433 878 struct sg_page_iter *sg_iter,
f9b5b782
MT
879 uint64_t start,
880 enum i915_cache_level cache_level)
881{
e5716f55 882 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
07749ef3 883 gen8_pte_t *pt_vaddr;
de5ba8eb
MT
884 unsigned pdpe = gen8_pdpe_index(start);
885 unsigned pde = gen8_pde_index(start);
886 unsigned pte = gen8_pte_index(start);
9df15b49 887
6f1cc993 888 pt_vaddr = NULL;
7ad47cf2 889
3387d433 890 while (__sg_page_iter_next(sg_iter)) {
d7b3de91 891 if (pt_vaddr == NULL) {
d4ec9da0 892 struct i915_page_directory *pd = pdp->page_directory[pdpe];
ec565b3c 893 struct i915_page_table *pt = pd->page_table[pde];
d1c54acd 894 pt_vaddr = kmap_px(pt);
d7b3de91 895 }
9df15b49 896
7ad47cf2 897 pt_vaddr[pte] =
3387d433 898 gen8_pte_encode(sg_page_iter_dma_address(sg_iter),
4fb84d99 899 cache_level);
07749ef3 900 if (++pte == GEN8_PTES) {
d1c54acd 901 kunmap_px(ppgtt, pt_vaddr);
6f1cc993 902 pt_vaddr = NULL;
07749ef3 903 if (++pde == I915_PDES) {
c6385c94 904 if (++pdpe == I915_PDPES_PER_PDP(vm->i915))
de5ba8eb 905 break;
7ad47cf2
BW
906 pde = 0;
907 }
908 pte = 0;
9df15b49
BW
909 }
910 }
d1c54acd
MK
911
912 if (pt_vaddr)
913 kunmap_px(ppgtt, pt_vaddr);
9df15b49
BW
914}
915
f9b5b782
MT
916static void gen8_ppgtt_insert_entries(struct i915_address_space *vm,
917 struct sg_table *pages,
918 uint64_t start,
919 enum i915_cache_level cache_level,
920 u32 unused)
921{
e5716f55 922 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
3387d433 923 struct sg_page_iter sg_iter;
f9b5b782 924
3387d433 925 __sg_page_iter_start(&sg_iter, pages->sgl, sg_nents(pages->sgl), 0);
de5ba8eb 926
c6385c94 927 if (!USES_FULL_48BIT_PPGTT(vm->i915)) {
de5ba8eb
MT
928 gen8_ppgtt_insert_pte_entries(vm, &ppgtt->pdp, &sg_iter, start,
929 cache_level);
930 } else {
931 struct i915_page_directory_pointer *pdp;
e8ebd8e2 932 uint64_t pml4e;
de5ba8eb
MT
933 uint64_t length = (uint64_t)pages->orig_nents << PAGE_SHIFT;
934
e8ebd8e2 935 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, pml4e) {
de5ba8eb
MT
936 gen8_ppgtt_insert_pte_entries(vm, pdp, &sg_iter,
937 start, cache_level);
938 }
939 }
f9b5b782
MT
940}
941
275a991c 942static void gen8_free_page_tables(struct drm_i915_private *dev_priv,
f37c0505 943 struct i915_page_directory *pd)
7ad47cf2
BW
944{
945 int i;
946
567047be 947 if (!px_page(pd))
7ad47cf2
BW
948 return;
949
33c8819f 950 for_each_set_bit(i, pd->used_pdes, I915_PDES) {
06fda602
BW
951 if (WARN_ON(!pd->page_table[i]))
952 continue;
7ad47cf2 953
275a991c 954 free_pt(dev_priv, pd->page_table[i]);
06fda602
BW
955 pd->page_table[i] = NULL;
956 }
d7b3de91
BW
957}
958
8776f02b
MK
959static int gen8_init_scratch(struct i915_address_space *vm)
960{
49d73912 961 struct drm_i915_private *dev_priv = vm->i915;
64c050db 962 int ret;
8776f02b 963
275a991c 964 ret = setup_scratch_page(dev_priv, &vm->scratch_page, I915_GFP_DMA);
8bcdd0f7
CW
965 if (ret)
966 return ret;
8776f02b 967
275a991c 968 vm->scratch_pt = alloc_pt(dev_priv);
8776f02b 969 if (IS_ERR(vm->scratch_pt)) {
64c050db
MA
970 ret = PTR_ERR(vm->scratch_pt);
971 goto free_scratch_page;
8776f02b
MK
972 }
973
275a991c 974 vm->scratch_pd = alloc_pd(dev_priv);
8776f02b 975 if (IS_ERR(vm->scratch_pd)) {
64c050db
MA
976 ret = PTR_ERR(vm->scratch_pd);
977 goto free_pt;
8776f02b
MK
978 }
979
275a991c
TU
980 if (USES_FULL_48BIT_PPGTT(dev_priv)) {
981 vm->scratch_pdp = alloc_pdp(dev_priv);
69ab76fd 982 if (IS_ERR(vm->scratch_pdp)) {
64c050db
MA
983 ret = PTR_ERR(vm->scratch_pdp);
984 goto free_pd;
69ab76fd
MT
985 }
986 }
987
8776f02b
MK
988 gen8_initialize_pt(vm, vm->scratch_pt);
989 gen8_initialize_pd(vm, vm->scratch_pd);
275a991c 990 if (USES_FULL_48BIT_PPGTT(dev_priv))
69ab76fd 991 gen8_initialize_pdp(vm, vm->scratch_pdp);
8776f02b
MK
992
993 return 0;
64c050db
MA
994
995free_pd:
275a991c 996 free_pd(dev_priv, vm->scratch_pd);
64c050db 997free_pt:
275a991c 998 free_pt(dev_priv, vm->scratch_pt);
64c050db 999free_scratch_page:
275a991c 1000 cleanup_scratch_page(dev_priv, &vm->scratch_page);
64c050db
MA
1001
1002 return ret;
8776f02b
MK
1003}
1004
650da34c
ZL
1005static int gen8_ppgtt_notify_vgt(struct i915_hw_ppgtt *ppgtt, bool create)
1006{
1007 enum vgt_g2v_type msg;
49d73912 1008 struct drm_i915_private *dev_priv = ppgtt->base.i915;
650da34c
ZL
1009 int i;
1010
df28564d 1011 if (USES_FULL_48BIT_PPGTT(dev_priv)) {
650da34c
ZL
1012 u64 daddr = px_dma(&ppgtt->pml4);
1013
ab75bb5d
VS
1014 I915_WRITE(vgtif_reg(pdp[0].lo), lower_32_bits(daddr));
1015 I915_WRITE(vgtif_reg(pdp[0].hi), upper_32_bits(daddr));
650da34c
ZL
1016
1017 msg = (create ? VGT_G2V_PPGTT_L4_PAGE_TABLE_CREATE :
1018 VGT_G2V_PPGTT_L4_PAGE_TABLE_DESTROY);
1019 } else {
1020 for (i = 0; i < GEN8_LEGACY_PDPES; i++) {
1021 u64 daddr = i915_page_dir_dma_addr(ppgtt, i);
1022
ab75bb5d
VS
1023 I915_WRITE(vgtif_reg(pdp[i].lo), lower_32_bits(daddr));
1024 I915_WRITE(vgtif_reg(pdp[i].hi), upper_32_bits(daddr));
650da34c
ZL
1025 }
1026
1027 msg = (create ? VGT_G2V_PPGTT_L3_PAGE_TABLE_CREATE :
1028 VGT_G2V_PPGTT_L3_PAGE_TABLE_DESTROY);
1029 }
1030
1031 I915_WRITE(vgtif_reg(g2v_notify), msg);
1032
1033 return 0;
1034}
1035
8776f02b
MK
1036static void gen8_free_scratch(struct i915_address_space *vm)
1037{
49d73912 1038 struct drm_i915_private *dev_priv = vm->i915;
8776f02b 1039
275a991c
TU
1040 if (USES_FULL_48BIT_PPGTT(dev_priv))
1041 free_pdp(dev_priv, vm->scratch_pdp);
1042 free_pd(dev_priv, vm->scratch_pd);
1043 free_pt(dev_priv, vm->scratch_pt);
1044 cleanup_scratch_page(dev_priv, &vm->scratch_page);
8776f02b
MK
1045}
1046
275a991c 1047static void gen8_ppgtt_cleanup_3lvl(struct drm_i915_private *dev_priv,
762d9936 1048 struct i915_page_directory_pointer *pdp)
b45a6715
BW
1049{
1050 int i;
1051
275a991c 1052 for_each_set_bit(i, pdp->used_pdpes, I915_PDPES_PER_PDP(dev_priv)) {
d4ec9da0 1053 if (WARN_ON(!pdp->page_directory[i]))
06fda602
BW
1054 continue;
1055
275a991c
TU
1056 gen8_free_page_tables(dev_priv, pdp->page_directory[i]);
1057 free_pd(dev_priv, pdp->page_directory[i]);
7ad47cf2 1058 }
69876bed 1059
275a991c 1060 free_pdp(dev_priv, pdp);
762d9936
MT
1061}
1062
1063static void gen8_ppgtt_cleanup_4lvl(struct i915_hw_ppgtt *ppgtt)
1064{
49d73912 1065 struct drm_i915_private *dev_priv = ppgtt->base.i915;
762d9936
MT
1066 int i;
1067
1068 for_each_set_bit(i, ppgtt->pml4.used_pml4es, GEN8_PML4ES_PER_PML4) {
1069 if (WARN_ON(!ppgtt->pml4.pdps[i]))
1070 continue;
1071
275a991c 1072 gen8_ppgtt_cleanup_3lvl(dev_priv, ppgtt->pml4.pdps[i]);
762d9936
MT
1073 }
1074
275a991c 1075 cleanup_px(dev_priv, &ppgtt->pml4);
762d9936
MT
1076}
1077
1078static void gen8_ppgtt_cleanup(struct i915_address_space *vm)
1079{
49d73912 1080 struct drm_i915_private *dev_priv = vm->i915;
e5716f55 1081 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
762d9936 1082
275a991c 1083 if (intel_vgpu_active(dev_priv))
650da34c
ZL
1084 gen8_ppgtt_notify_vgt(ppgtt, false);
1085
275a991c
TU
1086 if (!USES_FULL_48BIT_PPGTT(dev_priv))
1087 gen8_ppgtt_cleanup_3lvl(dev_priv, &ppgtt->pdp);
762d9936
MT
1088 else
1089 gen8_ppgtt_cleanup_4lvl(ppgtt);
d4ec9da0 1090
8776f02b 1091 gen8_free_scratch(vm);
b45a6715
BW
1092}
1093
d7b2633d
MT
1094/**
1095 * gen8_ppgtt_alloc_pagetabs() - Allocate page tables for VA range.
d4ec9da0
MT
1096 * @vm: Master vm structure.
1097 * @pd: Page directory for this address range.
d7b2633d 1098 * @start: Starting virtual address to begin allocations.
d4ec9da0 1099 * @length: Size of the allocations.
d7b2633d
MT
1100 * @new_pts: Bitmap set by function with new allocations. Likely used by the
1101 * caller to free on error.
1102 *
1103 * Allocate the required number of page tables. Extremely similar to
1104 * gen8_ppgtt_alloc_page_directories(). The main difference is here we are limited by
1105 * the page directory boundary (instead of the page directory pointer). That
1106 * boundary is 1GB virtual. Therefore, unlike gen8_ppgtt_alloc_page_directories(), it is
1107 * possible, and likely that the caller will need to use multiple calls of this
1108 * function to achieve the appropriate allocation.
1109 *
1110 * Return: 0 if success; negative error code otherwise.
1111 */
d4ec9da0 1112static int gen8_ppgtt_alloc_pagetabs(struct i915_address_space *vm,
e5815a2e 1113 struct i915_page_directory *pd,
5441f0cb 1114 uint64_t start,
d7b2633d
MT
1115 uint64_t length,
1116 unsigned long *new_pts)
bf2b4ed2 1117{
49d73912 1118 struct drm_i915_private *dev_priv = vm->i915;
d7b2633d 1119 struct i915_page_table *pt;
5441f0cb 1120 uint32_t pde;
bf2b4ed2 1121
e8ebd8e2 1122 gen8_for_each_pde(pt, pd, start, length, pde) {
d7b2633d 1123 /* Don't reallocate page tables */
6ac18502 1124 if (test_bit(pde, pd->used_pdes)) {
d7b2633d 1125 /* Scratch is never allocated this way */
d4ec9da0 1126 WARN_ON(pt == vm->scratch_pt);
d7b2633d
MT
1127 continue;
1128 }
1129
275a991c 1130 pt = alloc_pt(dev_priv);
d7b2633d 1131 if (IS_ERR(pt))
5441f0cb
MT
1132 goto unwind_out;
1133
d4ec9da0 1134 gen8_initialize_pt(vm, pt);
d7b2633d 1135 pd->page_table[pde] = pt;
966082c9 1136 __set_bit(pde, new_pts);
4c06ec8d 1137 trace_i915_page_table_entry_alloc(vm, pde, start, GEN8_PDE_SHIFT);
7ad47cf2
BW
1138 }
1139
bf2b4ed2 1140 return 0;
7ad47cf2
BW
1141
1142unwind_out:
d7b2633d 1143 for_each_set_bit(pde, new_pts, I915_PDES)
275a991c 1144 free_pt(dev_priv, pd->page_table[pde]);
7ad47cf2 1145
d7b3de91 1146 return -ENOMEM;
bf2b4ed2
BW
1147}
1148
d7b2633d
MT
1149/**
1150 * gen8_ppgtt_alloc_page_directories() - Allocate page directories for VA range.
d4ec9da0 1151 * @vm: Master vm structure.
d7b2633d
MT
1152 * @pdp: Page directory pointer for this address range.
1153 * @start: Starting virtual address to begin allocations.
d4ec9da0
MT
1154 * @length: Size of the allocations.
1155 * @new_pds: Bitmap set by function with new allocations. Likely used by the
d7b2633d
MT
1156 * caller to free on error.
1157 *
1158 * Allocate the required number of page directories starting at the pde index of
1159 * @start, and ending at the pde index @start + @length. This function will skip
1160 * over already allocated page directories within the range, and only allocate
1161 * new ones, setting the appropriate pointer within the pdp as well as the
1162 * correct position in the bitmap @new_pds.
1163 *
1164 * The function will only allocate the pages within the range for a give page
1165 * directory pointer. In other words, if @start + @length straddles a virtually
1166 * addressed PDP boundary (512GB for 4k pages), there will be more allocations
1167 * required by the caller, This is not currently possible, and the BUG in the
1168 * code will prevent it.
1169 *
1170 * Return: 0 if success; negative error code otherwise.
1171 */
d4ec9da0
MT
1172static int
1173gen8_ppgtt_alloc_page_directories(struct i915_address_space *vm,
1174 struct i915_page_directory_pointer *pdp,
1175 uint64_t start,
1176 uint64_t length,
1177 unsigned long *new_pds)
bf2b4ed2 1178{
49d73912 1179 struct drm_i915_private *dev_priv = vm->i915;
d7b2633d 1180 struct i915_page_directory *pd;
69876bed 1181 uint32_t pdpe;
275a991c 1182 uint32_t pdpes = I915_PDPES_PER_PDP(dev_priv);
69876bed 1183
6ac18502 1184 WARN_ON(!bitmap_empty(new_pds, pdpes));
d7b2633d 1185
e8ebd8e2 1186 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
6ac18502 1187 if (test_bit(pdpe, pdp->used_pdpes))
d7b2633d 1188 continue;
33c8819f 1189
275a991c 1190 pd = alloc_pd(dev_priv);
d7b2633d 1191 if (IS_ERR(pd))
d7b3de91 1192 goto unwind_out;
69876bed 1193
d4ec9da0 1194 gen8_initialize_pd(vm, pd);
d7b2633d 1195 pdp->page_directory[pdpe] = pd;
966082c9 1196 __set_bit(pdpe, new_pds);
4c06ec8d 1197 trace_i915_page_directory_entry_alloc(vm, pdpe, start, GEN8_PDPE_SHIFT);
d7b3de91
BW
1198 }
1199
bf2b4ed2 1200 return 0;
d7b3de91
BW
1201
1202unwind_out:
6ac18502 1203 for_each_set_bit(pdpe, new_pds, pdpes)
275a991c 1204 free_pd(dev_priv, pdp->page_directory[pdpe]);
d7b3de91
BW
1205
1206 return -ENOMEM;
bf2b4ed2
BW
1207}
1208
762d9936
MT
1209/**
1210 * gen8_ppgtt_alloc_page_dirpointers() - Allocate pdps for VA range.
1211 * @vm: Master vm structure.
1212 * @pml4: Page map level 4 for this address range.
1213 * @start: Starting virtual address to begin allocations.
1214 * @length: Size of the allocations.
1215 * @new_pdps: Bitmap set by function with new allocations. Likely used by the
1216 * caller to free on error.
1217 *
1218 * Allocate the required number of page directory pointers. Extremely similar to
1219 * gen8_ppgtt_alloc_page_directories() and gen8_ppgtt_alloc_pagetabs().
1220 * The main difference is here we are limited by the pml4 boundary (instead of
1221 * the page directory pointer).
1222 *
1223 * Return: 0 if success; negative error code otherwise.
1224 */
1225static int
1226gen8_ppgtt_alloc_page_dirpointers(struct i915_address_space *vm,
1227 struct i915_pml4 *pml4,
1228 uint64_t start,
1229 uint64_t length,
1230 unsigned long *new_pdps)
1231{
49d73912 1232 struct drm_i915_private *dev_priv = vm->i915;
762d9936 1233 struct i915_page_directory_pointer *pdp;
762d9936
MT
1234 uint32_t pml4e;
1235
1236 WARN_ON(!bitmap_empty(new_pdps, GEN8_PML4ES_PER_PML4));
1237
e8ebd8e2 1238 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
762d9936 1239 if (!test_bit(pml4e, pml4->used_pml4es)) {
275a991c 1240 pdp = alloc_pdp(dev_priv);
762d9936
MT
1241 if (IS_ERR(pdp))
1242 goto unwind_out;
1243
69ab76fd 1244 gen8_initialize_pdp(vm, pdp);
762d9936
MT
1245 pml4->pdps[pml4e] = pdp;
1246 __set_bit(pml4e, new_pdps);
1247 trace_i915_page_directory_pointer_entry_alloc(vm,
1248 pml4e,
1249 start,
1250 GEN8_PML4E_SHIFT);
1251 }
1252 }
1253
1254 return 0;
1255
1256unwind_out:
1257 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
275a991c 1258 free_pdp(dev_priv, pml4->pdps[pml4e]);
762d9936
MT
1259
1260 return -ENOMEM;
1261}
1262
d7b2633d 1263static void
3a41a05d 1264free_gen8_temp_bitmaps(unsigned long *new_pds, unsigned long *new_pts)
d7b2633d 1265{
d7b2633d
MT
1266 kfree(new_pts);
1267 kfree(new_pds);
1268}
1269
1270/* Fills in the page directory bitmap, and the array of page tables bitmap. Both
1271 * of these are based on the number of PDPEs in the system.
1272 */
1273static
1274int __must_check alloc_gen8_temp_bitmaps(unsigned long **new_pds,
3a41a05d 1275 unsigned long **new_pts,
6ac18502 1276 uint32_t pdpes)
d7b2633d 1277{
d7b2633d 1278 unsigned long *pds;
3a41a05d 1279 unsigned long *pts;
d7b2633d 1280
3a41a05d 1281 pds = kcalloc(BITS_TO_LONGS(pdpes), sizeof(unsigned long), GFP_TEMPORARY);
d7b2633d
MT
1282 if (!pds)
1283 return -ENOMEM;
1284
3a41a05d
MW
1285 pts = kcalloc(pdpes, BITS_TO_LONGS(I915_PDES) * sizeof(unsigned long),
1286 GFP_TEMPORARY);
1287 if (!pts)
1288 goto err_out;
d7b2633d
MT
1289
1290 *new_pds = pds;
1291 *new_pts = pts;
1292
1293 return 0;
1294
1295err_out:
3a41a05d 1296 free_gen8_temp_bitmaps(pds, pts);
d7b2633d
MT
1297 return -ENOMEM;
1298}
1299
762d9936
MT
1300static int gen8_alloc_va_range_3lvl(struct i915_address_space *vm,
1301 struct i915_page_directory_pointer *pdp,
1302 uint64_t start,
1303 uint64_t length)
bf2b4ed2 1304{
e5716f55 1305 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
3a41a05d 1306 unsigned long *new_page_dirs, *new_page_tables;
49d73912 1307 struct drm_i915_private *dev_priv = vm->i915;
5441f0cb 1308 struct i915_page_directory *pd;
33c8819f
MT
1309 const uint64_t orig_start = start;
1310 const uint64_t orig_length = length;
5441f0cb 1311 uint32_t pdpe;
275a991c 1312 uint32_t pdpes = I915_PDPES_PER_PDP(dev_priv);
bf2b4ed2
BW
1313 int ret;
1314
6ac18502 1315 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
bf2b4ed2
BW
1316 if (ret)
1317 return ret;
1318
d7b2633d 1319 /* Do the allocations first so we can easily bail out */
d4ec9da0
MT
1320 ret = gen8_ppgtt_alloc_page_directories(vm, pdp, start, length,
1321 new_page_dirs);
d7b2633d 1322 if (ret) {
3a41a05d 1323 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
d7b2633d
MT
1324 return ret;
1325 }
1326
1327 /* For every page directory referenced, allocate page tables */
e8ebd8e2 1328 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
d4ec9da0 1329 ret = gen8_ppgtt_alloc_pagetabs(vm, pd, start, length,
3a41a05d 1330 new_page_tables + pdpe * BITS_TO_LONGS(I915_PDES));
5441f0cb
MT
1331 if (ret)
1332 goto err_out;
5441f0cb
MT
1333 }
1334
33c8819f
MT
1335 start = orig_start;
1336 length = orig_length;
1337
d7b2633d
MT
1338 /* Allocations have completed successfully, so set the bitmaps, and do
1339 * the mappings. */
e8ebd8e2 1340 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
d1c54acd 1341 gen8_pde_t *const page_directory = kmap_px(pd);
33c8819f 1342 struct i915_page_table *pt;
09120d4e 1343 uint64_t pd_len = length;
33c8819f
MT
1344 uint64_t pd_start = start;
1345 uint32_t pde;
1346
d7b2633d
MT
1347 /* Every pd should be allocated, we just did that above. */
1348 WARN_ON(!pd);
1349
e8ebd8e2 1350 gen8_for_each_pde(pt, pd, pd_start, pd_len, pde) {
d7b2633d
MT
1351 /* Same reasoning as pd */
1352 WARN_ON(!pt);
1353 WARN_ON(!pd_len);
1354 WARN_ON(!gen8_pte_count(pd_start, pd_len));
1355
1356 /* Set our used ptes within the page table */
1357 bitmap_set(pt->used_ptes,
1358 gen8_pte_index(pd_start),
1359 gen8_pte_count(pd_start, pd_len));
1360
1361 /* Our pde is now pointing to the pagetable, pt */
966082c9 1362 __set_bit(pde, pd->used_pdes);
d7b2633d
MT
1363
1364 /* Map the PDE to the page table */
fe36f55d
MK
1365 page_directory[pde] = gen8_pde_encode(px_dma(pt),
1366 I915_CACHE_LLC);
4c06ec8d
MT
1367 trace_i915_page_table_entry_map(&ppgtt->base, pde, pt,
1368 gen8_pte_index(start),
1369 gen8_pte_count(start, length),
1370 GEN8_PTES);
d7b2633d
MT
1371
1372 /* NB: We haven't yet mapped ptes to pages. At this
1373 * point we're still relying on insert_entries() */
33c8819f 1374 }
d7b2633d 1375
d1c54acd 1376 kunmap_px(ppgtt, page_directory);
d4ec9da0 1377 __set_bit(pdpe, pdp->used_pdpes);
5c693b2b 1378 gen8_setup_pdpe(ppgtt, pdp, pd, pdpe);
33c8819f
MT
1379 }
1380
3a41a05d 1381 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
5b7e4c9c 1382 mark_tlbs_dirty(ppgtt);
d7b3de91 1383 return 0;
bf2b4ed2 1384
d7b3de91 1385err_out:
d7b2633d 1386 while (pdpe--) {
e8ebd8e2
DG
1387 unsigned long temp;
1388
3a41a05d
MW
1389 for_each_set_bit(temp, new_page_tables + pdpe *
1390 BITS_TO_LONGS(I915_PDES), I915_PDES)
275a991c
TU
1391 free_pt(dev_priv,
1392 pdp->page_directory[pdpe]->page_table[temp]);
d7b2633d
MT
1393 }
1394
6ac18502 1395 for_each_set_bit(pdpe, new_page_dirs, pdpes)
275a991c 1396 free_pd(dev_priv, pdp->page_directory[pdpe]);
d7b2633d 1397
3a41a05d 1398 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
5b7e4c9c 1399 mark_tlbs_dirty(ppgtt);
bf2b4ed2
BW
1400 return ret;
1401}
1402
762d9936
MT
1403static int gen8_alloc_va_range_4lvl(struct i915_address_space *vm,
1404 struct i915_pml4 *pml4,
1405 uint64_t start,
1406 uint64_t length)
1407{
1408 DECLARE_BITMAP(new_pdps, GEN8_PML4ES_PER_PML4);
e5716f55 1409 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
762d9936 1410 struct i915_page_directory_pointer *pdp;
e8ebd8e2 1411 uint64_t pml4e;
762d9936
MT
1412 int ret = 0;
1413
1414 /* Do the pml4 allocations first, so we don't need to track the newly
1415 * allocated tables below the pdp */
1416 bitmap_zero(new_pdps, GEN8_PML4ES_PER_PML4);
1417
1418 /* The pagedirectory and pagetable allocations are done in the shared 3
1419 * and 4 level code. Just allocate the pdps.
1420 */
1421 ret = gen8_ppgtt_alloc_page_dirpointers(vm, pml4, start, length,
1422 new_pdps);
1423 if (ret)
1424 return ret;
1425
e8ebd8e2 1426 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
762d9936
MT
1427 WARN_ON(!pdp);
1428
1429 ret = gen8_alloc_va_range_3lvl(vm, pdp, start, length);
1430 if (ret)
1431 goto err_out;
1432
56843107 1433 gen8_setup_pml4e(ppgtt, pml4, pdp, pml4e);
762d9936
MT
1434 }
1435
1436 bitmap_or(pml4->used_pml4es, new_pdps, pml4->used_pml4es,
1437 GEN8_PML4ES_PER_PML4);
1438
1439 return 0;
1440
1441err_out:
1442 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
49d73912 1443 gen8_ppgtt_cleanup_3lvl(vm->i915, pml4->pdps[pml4e]);
762d9936
MT
1444
1445 return ret;
1446}
1447
1448static int gen8_alloc_va_range(struct i915_address_space *vm,
1449 uint64_t start, uint64_t length)
1450{
e5716f55 1451 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
762d9936 1452
c6385c94 1453 if (USES_FULL_48BIT_PPGTT(vm->i915))
762d9936
MT
1454 return gen8_alloc_va_range_4lvl(vm, &ppgtt->pml4, start, length);
1455 else
1456 return gen8_alloc_va_range_3lvl(vm, &ppgtt->pdp, start, length);
1457}
1458
ea91e401
MT
1459static void gen8_dump_pdp(struct i915_page_directory_pointer *pdp,
1460 uint64_t start, uint64_t length,
1461 gen8_pte_t scratch_pte,
1462 struct seq_file *m)
1463{
1464 struct i915_page_directory *pd;
ea91e401
MT
1465 uint32_t pdpe;
1466
e8ebd8e2 1467 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
ea91e401
MT
1468 struct i915_page_table *pt;
1469 uint64_t pd_len = length;
1470 uint64_t pd_start = start;
1471 uint32_t pde;
1472
1473 if (!test_bit(pdpe, pdp->used_pdpes))
1474 continue;
1475
1476 seq_printf(m, "\tPDPE #%d\n", pdpe);
e8ebd8e2 1477 gen8_for_each_pde(pt, pd, pd_start, pd_len, pde) {
ea91e401
MT
1478 uint32_t pte;
1479 gen8_pte_t *pt_vaddr;
1480
1481 if (!test_bit(pde, pd->used_pdes))
1482 continue;
1483
1484 pt_vaddr = kmap_px(pt);
1485 for (pte = 0; pte < GEN8_PTES; pte += 4) {
1486 uint64_t va =
1487 (pdpe << GEN8_PDPE_SHIFT) |
1488 (pde << GEN8_PDE_SHIFT) |
1489 (pte << GEN8_PTE_SHIFT);
1490 int i;
1491 bool found = false;
1492
1493 for (i = 0; i < 4; i++)
1494 if (pt_vaddr[pte + i] != scratch_pte)
1495 found = true;
1496 if (!found)
1497 continue;
1498
1499 seq_printf(m, "\t\t0x%llx [%03d,%03d,%04d]: =", va, pdpe, pde, pte);
1500 for (i = 0; i < 4; i++) {
1501 if (pt_vaddr[pte + i] != scratch_pte)
1502 seq_printf(m, " %llx", pt_vaddr[pte + i]);
1503 else
1504 seq_puts(m, " SCRATCH ");
1505 }
1506 seq_puts(m, "\n");
1507 }
1508 /* don't use kunmap_px, it could trigger
1509 * an unnecessary flush.
1510 */
1511 kunmap_atomic(pt_vaddr);
1512 }
1513 }
1514}
1515
1516static void gen8_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1517{
1518 struct i915_address_space *vm = &ppgtt->base;
1519 uint64_t start = ppgtt->base.start;
1520 uint64_t length = ppgtt->base.total;
8bcdd0f7 1521 gen8_pte_t scratch_pte = gen8_pte_encode(vm->scratch_page.daddr,
4fb84d99 1522 I915_CACHE_LLC);
ea91e401 1523
c6385c94 1524 if (!USES_FULL_48BIT_PPGTT(vm->i915)) {
ea91e401
MT
1525 gen8_dump_pdp(&ppgtt->pdp, start, length, scratch_pte, m);
1526 } else {
e8ebd8e2 1527 uint64_t pml4e;
ea91e401
MT
1528 struct i915_pml4 *pml4 = &ppgtt->pml4;
1529 struct i915_page_directory_pointer *pdp;
1530
e8ebd8e2 1531 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
ea91e401
MT
1532 if (!test_bit(pml4e, pml4->used_pml4es))
1533 continue;
1534
1535 seq_printf(m, " PML4E #%llu\n", pml4e);
1536 gen8_dump_pdp(pdp, start, length, scratch_pte, m);
1537 }
1538 }
1539}
1540
331f38e7
ZL
1541static int gen8_preallocate_top_level_pdps(struct i915_hw_ppgtt *ppgtt)
1542{
3a41a05d 1543 unsigned long *new_page_dirs, *new_page_tables;
275a991c 1544 uint32_t pdpes = I915_PDPES_PER_PDP(to_i915(ppgtt->base.dev));
331f38e7
ZL
1545 int ret;
1546
1547 /* We allocate temp bitmap for page tables for no gain
1548 * but as this is for init only, lets keep the things simple
1549 */
1550 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
1551 if (ret)
1552 return ret;
1553
1554 /* Allocate for all pdps regardless of how the ppgtt
1555 * was defined.
1556 */
1557 ret = gen8_ppgtt_alloc_page_directories(&ppgtt->base, &ppgtt->pdp,
1558 0, 1ULL << 32,
1559 new_page_dirs);
1560 if (!ret)
1561 *ppgtt->pdp.used_pdpes = *new_page_dirs;
1562
3a41a05d 1563 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
331f38e7
ZL
1564
1565 return ret;
1566}
1567
eb0b44ad 1568/*
f3a964b9
BW
1569 * GEN8 legacy ppgtt programming is accomplished through a max 4 PDP registers
1570 * with a net effect resembling a 2-level page table in normal x86 terms. Each
1571 * PDP represents 1GB of memory 4 * 512 * 512 * 4096 = 4GB legacy 32b address
1572 * space.
37aca44a 1573 *
f3a964b9 1574 */
5c5f6457 1575static int gen8_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
37aca44a 1576{
49d73912 1577 struct drm_i915_private *dev_priv = ppgtt->base.i915;
8776f02b 1578 int ret;
7cb6d7ac 1579
8776f02b
MK
1580 ret = gen8_init_scratch(&ppgtt->base);
1581 if (ret)
1582 return ret;
69876bed 1583
d7b2633d 1584 ppgtt->base.start = 0;
d7b2633d 1585 ppgtt->base.cleanup = gen8_ppgtt_cleanup;
5c5f6457 1586 ppgtt->base.allocate_va_range = gen8_alloc_va_range;
d7b2633d 1587 ppgtt->base.insert_entries = gen8_ppgtt_insert_entries;
c7e16f22 1588 ppgtt->base.clear_range = gen8_ppgtt_clear_range;
777dc5bb
DV
1589 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
1590 ppgtt->base.bind_vma = ppgtt_bind_vma;
ea91e401 1591 ppgtt->debug_dump = gen8_dump_ppgtt;
d7b2633d 1592
275a991c
TU
1593 if (USES_FULL_48BIT_PPGTT(dev_priv)) {
1594 ret = setup_px(dev_priv, &ppgtt->pml4);
762d9936
MT
1595 if (ret)
1596 goto free_scratch;
6ac18502 1597
69ab76fd
MT
1598 gen8_initialize_pml4(&ppgtt->base, &ppgtt->pml4);
1599
762d9936 1600 ppgtt->base.total = 1ULL << 48;
2dba3239 1601 ppgtt->switch_mm = gen8_48b_mm_switch;
762d9936 1602 } else {
275a991c 1603 ret = __pdp_init(dev_priv, &ppgtt->pdp);
81ba8aef
MT
1604 if (ret)
1605 goto free_scratch;
1606
1607 ppgtt->base.total = 1ULL << 32;
2dba3239 1608 ppgtt->switch_mm = gen8_legacy_mm_switch;
762d9936
MT
1609 trace_i915_page_directory_pointer_entry_alloc(&ppgtt->base,
1610 0, 0,
1611 GEN8_PML4E_SHIFT);
331f38e7 1612
275a991c 1613 if (intel_vgpu_active(dev_priv)) {
331f38e7
ZL
1614 ret = gen8_preallocate_top_level_pdps(ppgtt);
1615 if (ret)
1616 goto free_scratch;
1617 }
81ba8aef 1618 }
6ac18502 1619
275a991c 1620 if (intel_vgpu_active(dev_priv))
650da34c
ZL
1621 gen8_ppgtt_notify_vgt(ppgtt, true);
1622
d7b2633d 1623 return 0;
6ac18502
MT
1624
1625free_scratch:
1626 gen8_free_scratch(&ppgtt->base);
1627 return ret;
d7b2633d
MT
1628}
1629
87d60b63
BW
1630static void gen6_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1631{
87d60b63 1632 struct i915_address_space *vm = &ppgtt->base;
09942c65 1633 struct i915_page_table *unused;
07749ef3 1634 gen6_pte_t scratch_pte;
87d60b63 1635 uint32_t pd_entry;
731f74c5 1636 uint32_t pte, pde;
09942c65 1637 uint32_t start = ppgtt->base.start, length = ppgtt->base.total;
87d60b63 1638
8bcdd0f7 1639 scratch_pte = vm->pte_encode(vm->scratch_page.daddr,
4fb84d99 1640 I915_CACHE_LLC, 0);
87d60b63 1641
731f74c5 1642 gen6_for_each_pde(unused, &ppgtt->pd, start, length, pde) {
87d60b63 1643 u32 expected;
07749ef3 1644 gen6_pte_t *pt_vaddr;
567047be 1645 const dma_addr_t pt_addr = px_dma(ppgtt->pd.page_table[pde]);
09942c65 1646 pd_entry = readl(ppgtt->pd_addr + pde);
87d60b63
BW
1647 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID);
1648
1649 if (pd_entry != expected)
1650 seq_printf(m, "\tPDE #%d mismatch: Actual PDE: %x Expected PDE: %x\n",
1651 pde,
1652 pd_entry,
1653 expected);
1654 seq_printf(m, "\tPDE: %x\n", pd_entry);
1655
d1c54acd
MK
1656 pt_vaddr = kmap_px(ppgtt->pd.page_table[pde]);
1657
07749ef3 1658 for (pte = 0; pte < GEN6_PTES; pte+=4) {
87d60b63 1659 unsigned long va =
07749ef3 1660 (pde * PAGE_SIZE * GEN6_PTES) +
87d60b63
BW
1661 (pte * PAGE_SIZE);
1662 int i;
1663 bool found = false;
1664 for (i = 0; i < 4; i++)
1665 if (pt_vaddr[pte + i] != scratch_pte)
1666 found = true;
1667 if (!found)
1668 continue;
1669
1670 seq_printf(m, "\t\t0x%lx [%03d,%04d]: =", va, pde, pte);
1671 for (i = 0; i < 4; i++) {
1672 if (pt_vaddr[pte + i] != scratch_pte)
1673 seq_printf(m, " %08x", pt_vaddr[pte + i]);
1674 else
1675 seq_puts(m, " SCRATCH ");
1676 }
1677 seq_puts(m, "\n");
1678 }
d1c54acd 1679 kunmap_px(ppgtt, pt_vaddr);
87d60b63
BW
1680 }
1681}
1682
678d96fb 1683/* Write pde (index) from the page directory @pd to the page table @pt */
ec565b3c
MT
1684static void gen6_write_pde(struct i915_page_directory *pd,
1685 const int pde, struct i915_page_table *pt)
6197349b 1686{
678d96fb
BW
1687 /* Caller needs to make sure the write completes if necessary */
1688 struct i915_hw_ppgtt *ppgtt =
1689 container_of(pd, struct i915_hw_ppgtt, pd);
1690 u32 pd_entry;
6197349b 1691
567047be 1692 pd_entry = GEN6_PDE_ADDR_ENCODE(px_dma(pt));
678d96fb 1693 pd_entry |= GEN6_PDE_VALID;
6197349b 1694
678d96fb
BW
1695 writel(pd_entry, ppgtt->pd_addr + pde);
1696}
6197349b 1697
678d96fb
BW
1698/* Write all the page tables found in the ppgtt structure to incrementing page
1699 * directories. */
1700static void gen6_write_page_range(struct drm_i915_private *dev_priv,
ec565b3c 1701 struct i915_page_directory *pd,
678d96fb
BW
1702 uint32_t start, uint32_t length)
1703{
72e96d64 1704 struct i915_ggtt *ggtt = &dev_priv->ggtt;
ec565b3c 1705 struct i915_page_table *pt;
731f74c5 1706 uint32_t pde;
678d96fb 1707
731f74c5 1708 gen6_for_each_pde(pt, pd, start, length, pde)
678d96fb
BW
1709 gen6_write_pde(pd, pde, pt);
1710
1711 /* Make sure write is complete before other code can use this page
1712 * table. Also require for WC mapped PTEs */
72e96d64 1713 readl(ggtt->gsm);
3e302542
BW
1714}
1715
b4a74e3a 1716static uint32_t get_pd_offset(struct i915_hw_ppgtt *ppgtt)
3e302542 1717{
44159ddb 1718 BUG_ON(ppgtt->pd.base.ggtt_offset & 0x3f);
b4a74e3a 1719
44159ddb 1720 return (ppgtt->pd.base.ggtt_offset / 64) << 16;
b4a74e3a
BW
1721}
1722
90252e5c 1723static int hsw_mm_switch(struct i915_hw_ppgtt *ppgtt,
e85b26dc 1724 struct drm_i915_gem_request *req)
90252e5c 1725{
7e37f889 1726 struct intel_ring *ring = req->ring;
4a570db5 1727 struct intel_engine_cs *engine = req->engine;
90252e5c
BW
1728 int ret;
1729
90252e5c 1730 /* NB: TLBs must be flushed and invalidated before a switch */
7c9cf4e3 1731 ret = engine->emit_flush(req, EMIT_INVALIDATE | EMIT_FLUSH);
90252e5c
BW
1732 if (ret)
1733 return ret;
1734
5fb9de1a 1735 ret = intel_ring_begin(req, 6);
90252e5c
BW
1736 if (ret)
1737 return ret;
1738
b5321f30
CW
1739 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1740 intel_ring_emit_reg(ring, RING_PP_DIR_DCLV(engine));
1741 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1742 intel_ring_emit_reg(ring, RING_PP_DIR_BASE(engine));
1743 intel_ring_emit(ring, get_pd_offset(ppgtt));
1744 intel_ring_emit(ring, MI_NOOP);
1745 intel_ring_advance(ring);
90252e5c
BW
1746
1747 return 0;
1748}
1749
48a10389 1750static int gen7_mm_switch(struct i915_hw_ppgtt *ppgtt,
e85b26dc 1751 struct drm_i915_gem_request *req)
48a10389 1752{
7e37f889 1753 struct intel_ring *ring = req->ring;
4a570db5 1754 struct intel_engine_cs *engine = req->engine;
48a10389
BW
1755 int ret;
1756
48a10389 1757 /* NB: TLBs must be flushed and invalidated before a switch */
7c9cf4e3 1758 ret = engine->emit_flush(req, EMIT_INVALIDATE | EMIT_FLUSH);
48a10389
BW
1759 if (ret)
1760 return ret;
1761
5fb9de1a 1762 ret = intel_ring_begin(req, 6);
48a10389
BW
1763 if (ret)
1764 return ret;
1765
b5321f30
CW
1766 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1767 intel_ring_emit_reg(ring, RING_PP_DIR_DCLV(engine));
1768 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1769 intel_ring_emit_reg(ring, RING_PP_DIR_BASE(engine));
1770 intel_ring_emit(ring, get_pd_offset(ppgtt));
1771 intel_ring_emit(ring, MI_NOOP);
1772 intel_ring_advance(ring);
48a10389 1773
90252e5c 1774 /* XXX: RCS is the only one to auto invalidate the TLBs? */
e2f80391 1775 if (engine->id != RCS) {
7c9cf4e3 1776 ret = engine->emit_flush(req, EMIT_INVALIDATE | EMIT_FLUSH);
90252e5c
BW
1777 if (ret)
1778 return ret;
1779 }
1780
48a10389
BW
1781 return 0;
1782}
1783
eeb9488e 1784static int gen6_mm_switch(struct i915_hw_ppgtt *ppgtt,
e85b26dc 1785 struct drm_i915_gem_request *req)
eeb9488e 1786{
4a570db5 1787 struct intel_engine_cs *engine = req->engine;
8eb95204 1788 struct drm_i915_private *dev_priv = req->i915;
48a10389 1789
e2f80391
TU
1790 I915_WRITE(RING_PP_DIR_DCLV(engine), PP_DIR_DCLV_2G);
1791 I915_WRITE(RING_PP_DIR_BASE(engine), get_pd_offset(ppgtt));
eeb9488e
BW
1792 return 0;
1793}
1794
c6be607a 1795static void gen8_ppgtt_enable(struct drm_i915_private *dev_priv)
eeb9488e 1796{
e2f80391 1797 struct intel_engine_cs *engine;
3b3f1650 1798 enum intel_engine_id id;
3e302542 1799
3b3f1650 1800 for_each_engine(engine, dev_priv, id) {
c6be607a
TU
1801 u32 four_level = USES_FULL_48BIT_PPGTT(dev_priv) ?
1802 GEN8_GFX_PPGTT_48B : 0;
e2f80391 1803 I915_WRITE(RING_MODE_GEN7(engine),
2dba3239 1804 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE | four_level));
eeb9488e 1805 }
eeb9488e 1806}
6197349b 1807
c6be607a 1808static void gen7_ppgtt_enable(struct drm_i915_private *dev_priv)
3e302542 1809{
e2f80391 1810 struct intel_engine_cs *engine;
b4a74e3a 1811 uint32_t ecochk, ecobits;
3b3f1650 1812 enum intel_engine_id id;
6197349b 1813
b4a74e3a
BW
1814 ecobits = I915_READ(GAC_ECO_BITS);
1815 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
a65c2fcd 1816
b4a74e3a 1817 ecochk = I915_READ(GAM_ECOCHK);
772c2a51 1818 if (IS_HASWELL(dev_priv)) {
b4a74e3a
BW
1819 ecochk |= ECOCHK_PPGTT_WB_HSW;
1820 } else {
1821 ecochk |= ECOCHK_PPGTT_LLC_IVB;
1822 ecochk &= ~ECOCHK_PPGTT_GFDT_IVB;
1823 }
1824 I915_WRITE(GAM_ECOCHK, ecochk);
a65c2fcd 1825
3b3f1650 1826 for_each_engine(engine, dev_priv, id) {
6197349b 1827 /* GFX_MODE is per-ring on gen7+ */
e2f80391 1828 I915_WRITE(RING_MODE_GEN7(engine),
b4a74e3a 1829 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
6197349b 1830 }
b4a74e3a 1831}
6197349b 1832
c6be607a 1833static void gen6_ppgtt_enable(struct drm_i915_private *dev_priv)
b4a74e3a 1834{
b4a74e3a 1835 uint32_t ecochk, gab_ctl, ecobits;
a65c2fcd 1836
b4a74e3a
BW
1837 ecobits = I915_READ(GAC_ECO_BITS);
1838 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_SNB_BIT |
1839 ECOBITS_PPGTT_CACHE64B);
6197349b 1840
b4a74e3a
BW
1841 gab_ctl = I915_READ(GAB_CTL);
1842 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
1843
1844 ecochk = I915_READ(GAM_ECOCHK);
1845 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT | ECOCHK_PPGTT_CACHE64B);
1846
1847 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
6197349b
BW
1848}
1849
1d2a314c 1850/* PPGTT support for Sandybdrige/Gen6 and later */
853ba5d2 1851static void gen6_ppgtt_clear_range(struct i915_address_space *vm,
782f1495 1852 uint64_t start,
4fb84d99 1853 uint64_t length)
1d2a314c 1854{
e5716f55 1855 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
07749ef3 1856 gen6_pte_t *pt_vaddr, scratch_pte;
782f1495
BW
1857 unsigned first_entry = start >> PAGE_SHIFT;
1858 unsigned num_entries = length >> PAGE_SHIFT;
07749ef3
MT
1859 unsigned act_pt = first_entry / GEN6_PTES;
1860 unsigned first_pte = first_entry % GEN6_PTES;
7bddb01f 1861 unsigned last_pte, i;
1d2a314c 1862
8bcdd0f7 1863 scratch_pte = vm->pte_encode(vm->scratch_page.daddr,
4fb84d99 1864 I915_CACHE_LLC, 0);
1d2a314c 1865
7bddb01f
DV
1866 while (num_entries) {
1867 last_pte = first_pte + num_entries;
07749ef3
MT
1868 if (last_pte > GEN6_PTES)
1869 last_pte = GEN6_PTES;
7bddb01f 1870
d1c54acd 1871 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
1d2a314c 1872
7bddb01f
DV
1873 for (i = first_pte; i < last_pte; i++)
1874 pt_vaddr[i] = scratch_pte;
1d2a314c 1875
d1c54acd 1876 kunmap_px(ppgtt, pt_vaddr);
1d2a314c 1877
7bddb01f
DV
1878 num_entries -= last_pte - first_pte;
1879 first_pte = 0;
a15326a5 1880 act_pt++;
7bddb01f 1881 }
1d2a314c
DV
1882}
1883
853ba5d2 1884static void gen6_ppgtt_insert_entries(struct i915_address_space *vm,
def886c3 1885 struct sg_table *pages,
782f1495 1886 uint64_t start,
24f3a8cf 1887 enum i915_cache_level cache_level, u32 flags)
def886c3 1888{
e5716f55 1889 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
782f1495 1890 unsigned first_entry = start >> PAGE_SHIFT;
07749ef3
MT
1891 unsigned act_pt = first_entry / GEN6_PTES;
1892 unsigned act_pte = first_entry % GEN6_PTES;
85d1225e
DG
1893 gen6_pte_t *pt_vaddr = NULL;
1894 struct sgt_iter sgt_iter;
1895 dma_addr_t addr;
6e995e23 1896
85d1225e 1897 for_each_sgt_dma(addr, sgt_iter, pages) {
cc79714f 1898 if (pt_vaddr == NULL)
d1c54acd 1899 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
6e995e23 1900
cc79714f 1901 pt_vaddr[act_pte] =
4fb84d99 1902 vm->pte_encode(addr, cache_level, flags);
24f3a8cf 1903
07749ef3 1904 if (++act_pte == GEN6_PTES) {
d1c54acd 1905 kunmap_px(ppgtt, pt_vaddr);
cc79714f 1906 pt_vaddr = NULL;
a15326a5 1907 act_pt++;
6e995e23 1908 act_pte = 0;
def886c3 1909 }
def886c3 1910 }
85d1225e 1911
cc79714f 1912 if (pt_vaddr)
d1c54acd 1913 kunmap_px(ppgtt, pt_vaddr);
def886c3
DV
1914}
1915
678d96fb 1916static int gen6_alloc_va_range(struct i915_address_space *vm,
a05d80ee 1917 uint64_t start_in, uint64_t length_in)
678d96fb 1918{
4933d519 1919 DECLARE_BITMAP(new_page_tables, I915_PDES);
49d73912 1920 struct drm_i915_private *dev_priv = vm->i915;
72e96d64 1921 struct i915_ggtt *ggtt = &dev_priv->ggtt;
e5716f55 1922 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
ec565b3c 1923 struct i915_page_table *pt;
a05d80ee 1924 uint32_t start, length, start_save, length_save;
731f74c5 1925 uint32_t pde;
4933d519
MT
1926 int ret;
1927
a05d80ee
MK
1928 start = start_save = start_in;
1929 length = length_save = length_in;
4933d519
MT
1930
1931 bitmap_zero(new_page_tables, I915_PDES);
1932
1933 /* The allocation is done in two stages so that we can bail out with
1934 * minimal amount of pain. The first stage finds new page tables that
1935 * need allocation. The second stage marks use ptes within the page
1936 * tables.
1937 */
731f74c5 1938 gen6_for_each_pde(pt, &ppgtt->pd, start, length, pde) {
79ab9370 1939 if (pt != vm->scratch_pt) {
4933d519
MT
1940 WARN_ON(bitmap_empty(pt->used_ptes, GEN6_PTES));
1941 continue;
1942 }
1943
1944 /* We've already allocated a page table */
1945 WARN_ON(!bitmap_empty(pt->used_ptes, GEN6_PTES));
1946
275a991c 1947 pt = alloc_pt(dev_priv);
4933d519
MT
1948 if (IS_ERR(pt)) {
1949 ret = PTR_ERR(pt);
1950 goto unwind_out;
1951 }
1952
1953 gen6_initialize_pt(vm, pt);
1954
1955 ppgtt->pd.page_table[pde] = pt;
966082c9 1956 __set_bit(pde, new_page_tables);
72744cb1 1957 trace_i915_page_table_entry_alloc(vm, pde, start, GEN6_PDE_SHIFT);
4933d519
MT
1958 }
1959
1960 start = start_save;
1961 length = length_save;
678d96fb 1962
731f74c5 1963 gen6_for_each_pde(pt, &ppgtt->pd, start, length, pde) {
678d96fb
BW
1964 DECLARE_BITMAP(tmp_bitmap, GEN6_PTES);
1965
1966 bitmap_zero(tmp_bitmap, GEN6_PTES);
1967 bitmap_set(tmp_bitmap, gen6_pte_index(start),
1968 gen6_pte_count(start, length));
1969
966082c9 1970 if (__test_and_clear_bit(pde, new_page_tables))
4933d519
MT
1971 gen6_write_pde(&ppgtt->pd, pde, pt);
1972
72744cb1
MT
1973 trace_i915_page_table_entry_map(vm, pde, pt,
1974 gen6_pte_index(start),
1975 gen6_pte_count(start, length),
1976 GEN6_PTES);
4933d519 1977 bitmap_or(pt->used_ptes, tmp_bitmap, pt->used_ptes,
678d96fb
BW
1978 GEN6_PTES);
1979 }
1980
4933d519
MT
1981 WARN_ON(!bitmap_empty(new_page_tables, I915_PDES));
1982
1983 /* Make sure write is complete before other code can use this page
1984 * table. Also require for WC mapped PTEs */
72e96d64 1985 readl(ggtt->gsm);
4933d519 1986
563222a7 1987 mark_tlbs_dirty(ppgtt);
678d96fb 1988 return 0;
4933d519
MT
1989
1990unwind_out:
1991 for_each_set_bit(pde, new_page_tables, I915_PDES) {
ec565b3c 1992 struct i915_page_table *pt = ppgtt->pd.page_table[pde];
4933d519 1993
79ab9370 1994 ppgtt->pd.page_table[pde] = vm->scratch_pt;
275a991c 1995 free_pt(dev_priv, pt);
4933d519
MT
1996 }
1997
1998 mark_tlbs_dirty(ppgtt);
1999 return ret;
678d96fb
BW
2000}
2001
8776f02b
MK
2002static int gen6_init_scratch(struct i915_address_space *vm)
2003{
49d73912 2004 struct drm_i915_private *dev_priv = vm->i915;
8bcdd0f7 2005 int ret;
8776f02b 2006
275a991c 2007 ret = setup_scratch_page(dev_priv, &vm->scratch_page, I915_GFP_DMA);
8bcdd0f7
CW
2008 if (ret)
2009 return ret;
8776f02b 2010
275a991c 2011 vm->scratch_pt = alloc_pt(dev_priv);
8776f02b 2012 if (IS_ERR(vm->scratch_pt)) {
275a991c 2013 cleanup_scratch_page(dev_priv, &vm->scratch_page);
8776f02b
MK
2014 return PTR_ERR(vm->scratch_pt);
2015 }
2016
2017 gen6_initialize_pt(vm, vm->scratch_pt);
2018
2019 return 0;
2020}
2021
2022static void gen6_free_scratch(struct i915_address_space *vm)
2023{
49d73912 2024 struct drm_i915_private *dev_priv = vm->i915;
8776f02b 2025
275a991c
TU
2026 free_pt(dev_priv, vm->scratch_pt);
2027 cleanup_scratch_page(dev_priv, &vm->scratch_page);
8776f02b
MK
2028}
2029
061dd493 2030static void gen6_ppgtt_cleanup(struct i915_address_space *vm)
a00d825d 2031{
e5716f55 2032 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
731f74c5 2033 struct i915_page_directory *pd = &ppgtt->pd;
49d73912 2034 struct drm_i915_private *dev_priv = vm->i915;
09942c65
MT
2035 struct i915_page_table *pt;
2036 uint32_t pde;
4933d519 2037
061dd493
DV
2038 drm_mm_remove_node(&ppgtt->node);
2039
731f74c5 2040 gen6_for_all_pdes(pt, pd, pde)
79ab9370 2041 if (pt != vm->scratch_pt)
275a991c 2042 free_pt(dev_priv, pt);
06fda602 2043
8776f02b 2044 gen6_free_scratch(vm);
3440d265
DV
2045}
2046
b146520f 2047static int gen6_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt)
3440d265 2048{
8776f02b 2049 struct i915_address_space *vm = &ppgtt->base;
49d73912 2050 struct drm_i915_private *dev_priv = ppgtt->base.i915;
72e96d64 2051 struct i915_ggtt *ggtt = &dev_priv->ggtt;
b146520f 2052 int ret;
1d2a314c 2053
c8d4c0d6
BW
2054 /* PPGTT PDEs reside in the GGTT and consists of 512 entries. The
2055 * allocator works in address space sizes, so it's multiplied by page
2056 * size. We allocate at the top of the GTT to avoid fragmentation.
2057 */
72e96d64 2058 BUG_ON(!drm_mm_initialized(&ggtt->base.mm));
4933d519 2059
8776f02b
MK
2060 ret = gen6_init_scratch(vm);
2061 if (ret)
2062 return ret;
4933d519 2063
e007b19d
CW
2064 ret = i915_gem_gtt_insert(&ggtt->base, &ppgtt->node,
2065 GEN6_PD_SIZE, GEN6_PD_ALIGN,
2066 I915_COLOR_UNEVICTABLE,
2067 0, ggtt->base.total,
2068 PIN_HIGH);
c8c26622 2069 if (ret)
678d96fb
BW
2070 goto err_out;
2071
72e96d64 2072 if (ppgtt->node.start < ggtt->mappable_end)
c8d4c0d6 2073 DRM_DEBUG("Forced to use aperture for PDEs\n");
1d2a314c 2074
c8c26622 2075 return 0;
678d96fb
BW
2076
2077err_out:
8776f02b 2078 gen6_free_scratch(vm);
678d96fb 2079 return ret;
b146520f
BW
2080}
2081
b146520f
BW
2082static int gen6_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt)
2083{
2f2cf682 2084 return gen6_ppgtt_allocate_page_directories(ppgtt);
4933d519 2085}
06dc68d6 2086
4933d519
MT
2087static void gen6_scratch_va_range(struct i915_hw_ppgtt *ppgtt,
2088 uint64_t start, uint64_t length)
2089{
ec565b3c 2090 struct i915_page_table *unused;
731f74c5 2091 uint32_t pde;
1d2a314c 2092
731f74c5 2093 gen6_for_each_pde(unused, &ppgtt->pd, start, length, pde)
79ab9370 2094 ppgtt->pd.page_table[pde] = ppgtt->base.scratch_pt;
b146520f
BW
2095}
2096
5c5f6457 2097static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
b146520f 2098{
49d73912 2099 struct drm_i915_private *dev_priv = ppgtt->base.i915;
72e96d64 2100 struct i915_ggtt *ggtt = &dev_priv->ggtt;
b146520f
BW
2101 int ret;
2102
72e96d64 2103 ppgtt->base.pte_encode = ggtt->base.pte_encode;
5db94019 2104 if (intel_vgpu_active(dev_priv) || IS_GEN6(dev_priv))
b146520f 2105 ppgtt->switch_mm = gen6_mm_switch;
772c2a51 2106 else if (IS_HASWELL(dev_priv))
b146520f 2107 ppgtt->switch_mm = hsw_mm_switch;
5db94019 2108 else if (IS_GEN7(dev_priv))
b146520f 2109 ppgtt->switch_mm = gen7_mm_switch;
8eb95204 2110 else
b146520f
BW
2111 BUG();
2112
2113 ret = gen6_ppgtt_alloc(ppgtt);
2114 if (ret)
2115 return ret;
2116
5c5f6457 2117 ppgtt->base.allocate_va_range = gen6_alloc_va_range;
b146520f
BW
2118 ppgtt->base.clear_range = gen6_ppgtt_clear_range;
2119 ppgtt->base.insert_entries = gen6_ppgtt_insert_entries;
777dc5bb
DV
2120 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
2121 ppgtt->base.bind_vma = ppgtt_bind_vma;
b146520f 2122 ppgtt->base.cleanup = gen6_ppgtt_cleanup;
b146520f 2123 ppgtt->base.start = 0;
09942c65 2124 ppgtt->base.total = I915_PDES * GEN6_PTES * PAGE_SIZE;
87d60b63 2125 ppgtt->debug_dump = gen6_dump_ppgtt;
1d2a314c 2126
44159ddb 2127 ppgtt->pd.base.ggtt_offset =
07749ef3 2128 ppgtt->node.start / PAGE_SIZE * sizeof(gen6_pte_t);
1d2a314c 2129
72e96d64 2130 ppgtt->pd_addr = (gen6_pte_t __iomem *)ggtt->gsm +
44159ddb 2131 ppgtt->pd.base.ggtt_offset / sizeof(gen6_pte_t);
678d96fb 2132
5c5f6457 2133 gen6_scratch_va_range(ppgtt, 0, ppgtt->base.total);
1d2a314c 2134
678d96fb
BW
2135 gen6_write_page_range(dev_priv, &ppgtt->pd, 0, ppgtt->base.total);
2136
440fd528 2137 DRM_DEBUG_DRIVER("Allocated pde space (%lldM) at GTT entry: %llx\n",
b146520f
BW
2138 ppgtt->node.size >> 20,
2139 ppgtt->node.start / PAGE_SIZE);
3440d265 2140
fa76da34 2141 DRM_DEBUG("Adding PPGTT at offset %x\n",
44159ddb 2142 ppgtt->pd.base.ggtt_offset << 10);
fa76da34 2143
b146520f 2144 return 0;
3440d265
DV
2145}
2146
2bfa996e
CW
2147static int __hw_ppgtt_init(struct i915_hw_ppgtt *ppgtt,
2148 struct drm_i915_private *dev_priv)
3440d265 2149{
49d73912 2150 ppgtt->base.i915 = dev_priv;
3440d265 2151
2bfa996e 2152 if (INTEL_INFO(dev_priv)->gen < 8)
5c5f6457 2153 return gen6_ppgtt_init(ppgtt);
3ed124b2 2154 else
d7b2633d 2155 return gen8_ppgtt_init(ppgtt);
fa76da34 2156}
c114f76a 2157
a2cad9df 2158static void i915_address_space_init(struct i915_address_space *vm,
80b204bc
CW
2159 struct drm_i915_private *dev_priv,
2160 const char *name)
a2cad9df 2161{
80b204bc 2162 i915_gem_timeline_init(dev_priv, &vm->timeline, name);
a2cad9df 2163 drm_mm_init(&vm->mm, vm->start, vm->total);
a2cad9df
MW
2164 INIT_LIST_HEAD(&vm->active_list);
2165 INIT_LIST_HEAD(&vm->inactive_list);
50e046b6 2166 INIT_LIST_HEAD(&vm->unbound_list);
a2cad9df
MW
2167 list_add_tail(&vm->global_link, &dev_priv->vm_list);
2168}
2169
ed9724dd
MA
2170static void i915_address_space_fini(struct i915_address_space *vm)
2171{
2172 i915_gem_timeline_fini(&vm->timeline);
2173 drm_mm_takedown(&vm->mm);
2174 list_del(&vm->global_link);
2175}
2176
c6be607a 2177static void gtt_write_workarounds(struct drm_i915_private *dev_priv)
d5165ebd 2178{
d5165ebd
TG
2179 /* This function is for gtt related workarounds. This function is
2180 * called on driver load and after a GPU reset, so you can place
2181 * workarounds here even if they get overwritten by GPU reset.
2182 */
9fb5026f 2183 /* WaIncreaseDefaultTLBEntries:chv,bdw,skl,bxt,kbl,glk */
8652744b 2184 if (IS_BROADWELL(dev_priv))
d5165ebd 2185 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_BDW);
920a14b2 2186 else if (IS_CHERRYVIEW(dev_priv))
d5165ebd 2187 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_CHV);
b976dc53 2188 else if (IS_GEN9_BC(dev_priv))
d5165ebd 2189 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_SKL);
9fb5026f 2190 else if (IS_GEN9_LP(dev_priv))
d5165ebd
TG
2191 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_BXT);
2192}
2193
2bfa996e
CW
2194static int i915_ppgtt_init(struct i915_hw_ppgtt *ppgtt,
2195 struct drm_i915_private *dev_priv,
80b204bc
CW
2196 struct drm_i915_file_private *file_priv,
2197 const char *name)
fa76da34 2198{
2bfa996e 2199 int ret;
3ed124b2 2200
2bfa996e 2201 ret = __hw_ppgtt_init(ppgtt, dev_priv);
fa76da34 2202 if (ret == 0) {
c7c48dfd 2203 kref_init(&ppgtt->ref);
80b204bc 2204 i915_address_space_init(&ppgtt->base, dev_priv, name);
2bfa996e 2205 ppgtt->base.file = file_priv;
93bd8649 2206 }
1d2a314c
DV
2207
2208 return ret;
2209}
2210
c6be607a 2211int i915_ppgtt_init_hw(struct drm_i915_private *dev_priv)
82460d97 2212{
c6be607a 2213 gtt_write_workarounds(dev_priv);
d5165ebd 2214
671b5013
TD
2215 /* In the case of execlists, PPGTT is enabled by the context descriptor
2216 * and the PDPs are contained within the context itself. We don't
2217 * need to do anything here. */
2218 if (i915.enable_execlists)
2219 return 0;
2220
c6be607a 2221 if (!USES_PPGTT(dev_priv))
82460d97
DV
2222 return 0;
2223
5db94019 2224 if (IS_GEN6(dev_priv))
c6be607a 2225 gen6_ppgtt_enable(dev_priv);
5db94019 2226 else if (IS_GEN7(dev_priv))
c6be607a
TU
2227 gen7_ppgtt_enable(dev_priv);
2228 else if (INTEL_GEN(dev_priv) >= 8)
2229 gen8_ppgtt_enable(dev_priv);
82460d97 2230 else
c6be607a 2231 MISSING_CASE(INTEL_GEN(dev_priv));
82460d97 2232
4ad2fd88
JH
2233 return 0;
2234}
1d2a314c 2235
4d884705 2236struct i915_hw_ppgtt *
2bfa996e 2237i915_ppgtt_create(struct drm_i915_private *dev_priv,
80b204bc
CW
2238 struct drm_i915_file_private *fpriv,
2239 const char *name)
4d884705
DV
2240{
2241 struct i915_hw_ppgtt *ppgtt;
2242 int ret;
2243
2244 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2245 if (!ppgtt)
2246 return ERR_PTR(-ENOMEM);
2247
80b204bc 2248 ret = i915_ppgtt_init(ppgtt, dev_priv, fpriv, name);
4d884705
DV
2249 if (ret) {
2250 kfree(ppgtt);
2251 return ERR_PTR(ret);
2252 }
2253
198c974d
DCS
2254 trace_i915_ppgtt_create(&ppgtt->base);
2255
4d884705
DV
2256 return ppgtt;
2257}
2258
0c7eeda1
CW
2259void i915_ppgtt_close(struct i915_address_space *vm)
2260{
2261 struct list_head *phases[] = {
2262 &vm->active_list,
2263 &vm->inactive_list,
2264 &vm->unbound_list,
2265 NULL,
2266 }, **phase;
2267
2268 GEM_BUG_ON(vm->closed);
2269 vm->closed = true;
2270
2271 for (phase = phases; *phase; phase++) {
2272 struct i915_vma *vma, *vn;
2273
2274 list_for_each_entry_safe(vma, vn, *phase, vm_link)
2275 if (!i915_vma_is_closed(vma))
2276 i915_vma_close(vma);
2277 }
2278}
2279
ed9724dd 2280void i915_ppgtt_release(struct kref *kref)
ee960be7
DV
2281{
2282 struct i915_hw_ppgtt *ppgtt =
2283 container_of(kref, struct i915_hw_ppgtt, ref);
2284
198c974d
DCS
2285 trace_i915_ppgtt_release(&ppgtt->base);
2286
50e046b6 2287 /* vmas should already be unbound and destroyed */
ee960be7
DV
2288 WARN_ON(!list_empty(&ppgtt->base.active_list));
2289 WARN_ON(!list_empty(&ppgtt->base.inactive_list));
50e046b6 2290 WARN_ON(!list_empty(&ppgtt->base.unbound_list));
ee960be7 2291
ed9724dd 2292 i915_address_space_fini(&ppgtt->base);
19dd120c 2293
ee960be7
DV
2294 ppgtt->base.cleanup(&ppgtt->base);
2295 kfree(ppgtt);
2296}
1d2a314c 2297
a81cc00c
BW
2298/* Certain Gen5 chipsets require require idling the GPU before
2299 * unmapping anything from the GTT when VT-d is enabled.
2300 */
97d6d7ab 2301static bool needs_idle_maps(struct drm_i915_private *dev_priv)
a81cc00c
BW
2302{
2303#ifdef CONFIG_INTEL_IOMMU
2304 /* Query intel_iommu to see if we need the workaround. Presumably that
2305 * was loaded first.
2306 */
97d6d7ab 2307 if (IS_GEN5(dev_priv) && IS_MOBILE(dev_priv) && intel_iommu_gfx_mapped)
a81cc00c
BW
2308 return true;
2309#endif
2310 return false;
2311}
2312
dc97997a 2313void i915_check_and_clear_faults(struct drm_i915_private *dev_priv)
828c7908 2314{
e2f80391 2315 struct intel_engine_cs *engine;
3b3f1650 2316 enum intel_engine_id id;
828c7908 2317
dc97997a 2318 if (INTEL_INFO(dev_priv)->gen < 6)
828c7908
BW
2319 return;
2320
3b3f1650 2321 for_each_engine(engine, dev_priv, id) {
828c7908 2322 u32 fault_reg;
e2f80391 2323 fault_reg = I915_READ(RING_FAULT_REG(engine));
828c7908
BW
2324 if (fault_reg & RING_FAULT_VALID) {
2325 DRM_DEBUG_DRIVER("Unexpected fault\n"
59a5d290 2326 "\tAddr: 0x%08lx\n"
828c7908
BW
2327 "\tAddress space: %s\n"
2328 "\tSource ID: %d\n"
2329 "\tType: %d\n",
2330 fault_reg & PAGE_MASK,
2331 fault_reg & RING_FAULT_GTTSEL_MASK ? "GGTT" : "PPGTT",
2332 RING_FAULT_SRCID(fault_reg),
2333 RING_FAULT_FAULT_TYPE(fault_reg));
e2f80391 2334 I915_WRITE(RING_FAULT_REG(engine),
828c7908
BW
2335 fault_reg & ~RING_FAULT_VALID);
2336 }
2337 }
3b3f1650
AG
2338
2339 /* Engine specific init may not have been done till this point. */
2340 if (dev_priv->engine[RCS])
2341 POSTING_READ(RING_FAULT_REG(dev_priv->engine[RCS]));
828c7908
BW
2342}
2343
275a991c 2344void i915_gem_suspend_gtt_mappings(struct drm_i915_private *dev_priv)
828c7908 2345{
72e96d64 2346 struct i915_ggtt *ggtt = &dev_priv->ggtt;
828c7908
BW
2347
2348 /* Don't bother messing with faults pre GEN6 as we have little
2349 * documentation supporting that it's a good idea.
2350 */
275a991c 2351 if (INTEL_GEN(dev_priv) < 6)
828c7908
BW
2352 return;
2353
dc97997a 2354 i915_check_and_clear_faults(dev_priv);
828c7908 2355
4fb84d99 2356 ggtt->base.clear_range(&ggtt->base, ggtt->base.start, ggtt->base.total);
91e56499 2357
7c3f86b6 2358 i915_ggtt_invalidate(dev_priv);
828c7908
BW
2359}
2360
03ac84f1
CW
2361int i915_gem_gtt_prepare_pages(struct drm_i915_gem_object *obj,
2362 struct sg_table *pages)
7c2e6fdf 2363{
1a292fa5
CW
2364 do {
2365 if (dma_map_sg(&obj->base.dev->pdev->dev,
2366 pages->sgl, pages->nents,
2367 PCI_DMA_BIDIRECTIONAL))
2368 return 0;
2369
2370 /* If the DMA remap fails, one cause can be that we have
2371 * too many objects pinned in a small remapping table,
2372 * such as swiotlb. Incrementally purge all other objects and
2373 * try again - if there are no more pages to remove from
2374 * the DMA remapper, i915_gem_shrink will return 0.
2375 */
2376 GEM_BUG_ON(obj->mm.pages == pages);
2377 } while (i915_gem_shrink(to_i915(obj->base.dev),
2378 obj->base.size >> PAGE_SHIFT,
2379 I915_SHRINK_BOUND |
2380 I915_SHRINK_UNBOUND |
2381 I915_SHRINK_ACTIVE));
9da3da66 2382
03ac84f1 2383 return -ENOSPC;
7c2e6fdf
DV
2384}
2385
2c642b07 2386static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
94ec8f61 2387{
94ec8f61 2388 writeq(pte, addr);
94ec8f61
BW
2389}
2390
d6473f56
CW
2391static void gen8_ggtt_insert_page(struct i915_address_space *vm,
2392 dma_addr_t addr,
2393 uint64_t offset,
2394 enum i915_cache_level level,
2395 u32 unused)
2396{
7c3f86b6 2397 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
d6473f56 2398 gen8_pte_t __iomem *pte =
7c3f86b6 2399 (gen8_pte_t __iomem *)ggtt->gsm + (offset >> PAGE_SHIFT);
d6473f56 2400
4fb84d99 2401 gen8_set_pte(pte, gen8_pte_encode(addr, level));
d6473f56 2402
7c3f86b6 2403 ggtt->invalidate(vm->i915);
d6473f56
CW
2404}
2405
94ec8f61
BW
2406static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
2407 struct sg_table *st,
782f1495 2408 uint64_t start,
24f3a8cf 2409 enum i915_cache_level level, u32 unused)
94ec8f61 2410{
ce7fda2e 2411 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
85d1225e
DG
2412 struct sgt_iter sgt_iter;
2413 gen8_pte_t __iomem *gtt_entries;
2414 gen8_pte_t gtt_entry;
2415 dma_addr_t addr;
85d1225e 2416 int i = 0;
be69459a 2417
85d1225e
DG
2418 gtt_entries = (gen8_pte_t __iomem *)ggtt->gsm + (start >> PAGE_SHIFT);
2419
2420 for_each_sgt_dma(addr, sgt_iter, st) {
4fb84d99 2421 gtt_entry = gen8_pte_encode(addr, level);
85d1225e 2422 gen8_set_pte(&gtt_entries[i++], gtt_entry);
94ec8f61
BW
2423 }
2424
2425 /*
2426 * XXX: This serves as a posting read to make sure that the PTE has
2427 * actually been updated. There is some concern that even though
2428 * registers and PTEs are within the same BAR that they are potentially
2429 * of NUMA access patterns. Therefore, even with the way we assume
2430 * hardware should work, we must keep this posting read for paranoia.
2431 */
2432 if (i != 0)
85d1225e 2433 WARN_ON(readq(&gtt_entries[i-1]) != gtt_entry);
94ec8f61 2434
94ec8f61
BW
2435 /* This next bit makes the above posting read even more important. We
2436 * want to flush the TLBs only after we're certain all the PTE updates
2437 * have finished.
2438 */
7c3f86b6 2439 ggtt->invalidate(vm->i915);
94ec8f61
BW
2440}
2441
c140330b
CW
2442struct insert_entries {
2443 struct i915_address_space *vm;
2444 struct sg_table *st;
2445 uint64_t start;
2446 enum i915_cache_level level;
2447 u32 flags;
2448};
2449
2450static int gen8_ggtt_insert_entries__cb(void *_arg)
2451{
2452 struct insert_entries *arg = _arg;
2453 gen8_ggtt_insert_entries(arg->vm, arg->st,
2454 arg->start, arg->level, arg->flags);
2455 return 0;
2456}
2457
2458static void gen8_ggtt_insert_entries__BKL(struct i915_address_space *vm,
2459 struct sg_table *st,
2460 uint64_t start,
2461 enum i915_cache_level level,
2462 u32 flags)
2463{
2464 struct insert_entries arg = { vm, st, start, level, flags };
2465 stop_machine(gen8_ggtt_insert_entries__cb, &arg, NULL);
2466}
2467
d6473f56
CW
2468static void gen6_ggtt_insert_page(struct i915_address_space *vm,
2469 dma_addr_t addr,
2470 uint64_t offset,
2471 enum i915_cache_level level,
2472 u32 flags)
2473{
7c3f86b6 2474 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
d6473f56 2475 gen6_pte_t __iomem *pte =
7c3f86b6 2476 (gen6_pte_t __iomem *)ggtt->gsm + (offset >> PAGE_SHIFT);
d6473f56 2477
4fb84d99 2478 iowrite32(vm->pte_encode(addr, level, flags), pte);
d6473f56 2479
7c3f86b6 2480 ggtt->invalidate(vm->i915);
d6473f56
CW
2481}
2482
e76e9aeb
BW
2483/*
2484 * Binds an object into the global gtt with the specified cache level. The object
2485 * will be accessible to the GPU via commands whose operands reference offsets
2486 * within the global GTT as well as accessible by the GPU through the GMADR
2487 * mapped BAR (dev_priv->mm.gtt->gtt).
2488 */
853ba5d2 2489static void gen6_ggtt_insert_entries(struct i915_address_space *vm,
7faf1ab2 2490 struct sg_table *st,
782f1495 2491 uint64_t start,
24f3a8cf 2492 enum i915_cache_level level, u32 flags)
e76e9aeb 2493{
ce7fda2e 2494 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
85d1225e
DG
2495 struct sgt_iter sgt_iter;
2496 gen6_pte_t __iomem *gtt_entries;
2497 gen6_pte_t gtt_entry;
2498 dma_addr_t addr;
85d1225e 2499 int i = 0;
be69459a 2500
85d1225e
DG
2501 gtt_entries = (gen6_pte_t __iomem *)ggtt->gsm + (start >> PAGE_SHIFT);
2502
2503 for_each_sgt_dma(addr, sgt_iter, st) {
4fb84d99 2504 gtt_entry = vm->pte_encode(addr, level, flags);
85d1225e 2505 iowrite32(gtt_entry, &gtt_entries[i++]);
e76e9aeb
BW
2506 }
2507
e76e9aeb
BW
2508 /* XXX: This serves as a posting read to make sure that the PTE has
2509 * actually been updated. There is some concern that even though
2510 * registers and PTEs are within the same BAR that they are potentially
2511 * of NUMA access patterns. Therefore, even with the way we assume
2512 * hardware should work, we must keep this posting read for paranoia.
2513 */
85d1225e
DG
2514 if (i != 0)
2515 WARN_ON(readl(&gtt_entries[i-1]) != gtt_entry);
0f9b91c7
BW
2516
2517 /* This next bit makes the above posting read even more important. We
2518 * want to flush the TLBs only after we're certain all the PTE updates
2519 * have finished.
2520 */
7c3f86b6 2521 ggtt->invalidate(vm->i915);
e76e9aeb
BW
2522}
2523
f7770bfd 2524static void nop_clear_range(struct i915_address_space *vm,
4fb84d99 2525 uint64_t start, uint64_t length)
f7770bfd
CW
2526{
2527}
2528
94ec8f61 2529static void gen8_ggtt_clear_range(struct i915_address_space *vm,
4fb84d99 2530 uint64_t start, uint64_t length)
94ec8f61 2531{
ce7fda2e 2532 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
782f1495
BW
2533 unsigned first_entry = start >> PAGE_SHIFT;
2534 unsigned num_entries = length >> PAGE_SHIFT;
07749ef3 2535 gen8_pte_t scratch_pte, __iomem *gtt_base =
72e96d64
JL
2536 (gen8_pte_t __iomem *)ggtt->gsm + first_entry;
2537 const int max_entries = ggtt_total_entries(ggtt) - first_entry;
94ec8f61
BW
2538 int i;
2539
2540 if (WARN(num_entries > max_entries,
2541 "First entry = %d; Num entries = %d (max=%d)\n",
2542 first_entry, num_entries, max_entries))
2543 num_entries = max_entries;
2544
8bcdd0f7 2545 scratch_pte = gen8_pte_encode(vm->scratch_page.daddr,
4fb84d99 2546 I915_CACHE_LLC);
94ec8f61
BW
2547 for (i = 0; i < num_entries; i++)
2548 gen8_set_pte(&gtt_base[i], scratch_pte);
2549 readl(gtt_base);
2550}
2551
853ba5d2 2552static void gen6_ggtt_clear_range(struct i915_address_space *vm,
782f1495 2553 uint64_t start,
4fb84d99 2554 uint64_t length)
7faf1ab2 2555{
ce7fda2e 2556 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
782f1495
BW
2557 unsigned first_entry = start >> PAGE_SHIFT;
2558 unsigned num_entries = length >> PAGE_SHIFT;
07749ef3 2559 gen6_pte_t scratch_pte, __iomem *gtt_base =
72e96d64
JL
2560 (gen6_pte_t __iomem *)ggtt->gsm + first_entry;
2561 const int max_entries = ggtt_total_entries(ggtt) - first_entry;
7faf1ab2
DV
2562 int i;
2563
2564 if (WARN(num_entries > max_entries,
2565 "First entry = %d; Num entries = %d (max=%d)\n",
2566 first_entry, num_entries, max_entries))
2567 num_entries = max_entries;
2568
8bcdd0f7 2569 scratch_pte = vm->pte_encode(vm->scratch_page.daddr,
4fb84d99 2570 I915_CACHE_LLC, 0);
828c7908 2571
7faf1ab2
DV
2572 for (i = 0; i < num_entries; i++)
2573 iowrite32(scratch_pte, &gtt_base[i]);
2574 readl(gtt_base);
2575}
2576
d6473f56
CW
2577static void i915_ggtt_insert_page(struct i915_address_space *vm,
2578 dma_addr_t addr,
2579 uint64_t offset,
2580 enum i915_cache_level cache_level,
2581 u32 unused)
2582{
d6473f56
CW
2583 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
2584 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
d6473f56
CW
2585
2586 intel_gtt_insert_page(addr, offset >> PAGE_SHIFT, flags);
d6473f56
CW
2587}
2588
d369d2d9
DV
2589static void i915_ggtt_insert_entries(struct i915_address_space *vm,
2590 struct sg_table *pages,
2591 uint64_t start,
2592 enum i915_cache_level cache_level, u32 unused)
7faf1ab2
DV
2593{
2594 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
2595 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
2596
d369d2d9 2597 intel_gtt_insert_sg_entries(pages, start >> PAGE_SHIFT, flags);
0875546c 2598
7faf1ab2
DV
2599}
2600
853ba5d2 2601static void i915_ggtt_clear_range(struct i915_address_space *vm,
782f1495 2602 uint64_t start,
4fb84d99 2603 uint64_t length)
7faf1ab2 2604{
2eedfc7d 2605 intel_gtt_clear_range(start >> PAGE_SHIFT, length >> PAGE_SHIFT);
7faf1ab2
DV
2606}
2607
70b9f6f8
DV
2608static int ggtt_bind_vma(struct i915_vma *vma,
2609 enum i915_cache_level cache_level,
2610 u32 flags)
0a878716 2611{
49d73912 2612 struct drm_i915_private *i915 = vma->vm->i915;
0a878716
DV
2613 struct drm_i915_gem_object *obj = vma->obj;
2614 u32 pte_flags = 0;
2615 int ret;
2616
2617 ret = i915_get_ggtt_vma_pages(vma);
2618 if (ret)
2619 return ret;
2620
2621 /* Currently applicable only to VLV */
2622 if (obj->gt_ro)
2623 pte_flags |= PTE_READ_ONLY;
2624
9c870d03 2625 intel_runtime_pm_get(i915);
247177dd 2626 vma->vm->insert_entries(vma->vm, vma->pages, vma->node.start,
0a878716 2627 cache_level, pte_flags);
9c870d03 2628 intel_runtime_pm_put(i915);
0a878716
DV
2629
2630 /*
2631 * Without aliasing PPGTT there's no difference between
2632 * GLOBAL/LOCAL_BIND, it's all the same ptes. Hence unconditionally
2633 * upgrade to both bound if we bind either to avoid double-binding.
2634 */
3272db53 2635 vma->flags |= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND;
0a878716
DV
2636
2637 return 0;
2638}
2639
2640static int aliasing_gtt_bind_vma(struct i915_vma *vma,
2641 enum i915_cache_level cache_level,
2642 u32 flags)
d5bd1449 2643{
49d73912 2644 struct drm_i915_private *i915 = vma->vm->i915;
321d178e 2645 u32 pte_flags;
70b9f6f8
DV
2646 int ret;
2647
2648 ret = i915_get_ggtt_vma_pages(vma);
2649 if (ret)
2650 return ret;
7faf1ab2 2651
24f3a8cf 2652 /* Currently applicable only to VLV */
321d178e
CW
2653 pte_flags = 0;
2654 if (vma->obj->gt_ro)
f329f5f6 2655 pte_flags |= PTE_READ_ONLY;
24f3a8cf 2656
ec7adb6e 2657
3272db53 2658 if (flags & I915_VMA_GLOBAL_BIND) {
9c870d03 2659 intel_runtime_pm_get(i915);
321d178e 2660 vma->vm->insert_entries(vma->vm,
247177dd 2661 vma->pages, vma->node.start,
0875546c 2662 cache_level, pte_flags);
9c870d03 2663 intel_runtime_pm_put(i915);
6f65e29a 2664 }
d5bd1449 2665
3272db53 2666 if (flags & I915_VMA_LOCAL_BIND) {
9c870d03 2667 struct i915_hw_ppgtt *appgtt = i915->mm.aliasing_ppgtt;
321d178e 2668 appgtt->base.insert_entries(&appgtt->base,
247177dd 2669 vma->pages, vma->node.start,
f329f5f6 2670 cache_level, pte_flags);
6f65e29a 2671 }
70b9f6f8
DV
2672
2673 return 0;
d5bd1449
CW
2674}
2675
6f65e29a 2676static void ggtt_unbind_vma(struct i915_vma *vma)
74163907 2677{
49d73912 2678 struct drm_i915_private *i915 = vma->vm->i915;
9c870d03 2679 struct i915_hw_ppgtt *appgtt = i915->mm.aliasing_ppgtt;
de180033 2680 const u64 size = min(vma->size, vma->node.size);
6f65e29a 2681
9c870d03
CW
2682 if (vma->flags & I915_VMA_GLOBAL_BIND) {
2683 intel_runtime_pm_get(i915);
782f1495 2684 vma->vm->clear_range(vma->vm,
4fb84d99 2685 vma->node.start, size);
9c870d03
CW
2686 intel_runtime_pm_put(i915);
2687 }
06615ee5 2688
3272db53 2689 if (vma->flags & I915_VMA_LOCAL_BIND && appgtt)
6f65e29a 2690 appgtt->base.clear_range(&appgtt->base,
4fb84d99 2691 vma->node.start, size);
74163907
DV
2692}
2693
03ac84f1
CW
2694void i915_gem_gtt_finish_pages(struct drm_i915_gem_object *obj,
2695 struct sg_table *pages)
7c2e6fdf 2696{
52a05c30
DW
2697 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
2698 struct device *kdev = &dev_priv->drm.pdev->dev;
307dc25b 2699 struct i915_ggtt *ggtt = &dev_priv->ggtt;
5c042287 2700
307dc25b 2701 if (unlikely(ggtt->do_idle_maps)) {
22dd3bb9 2702 if (i915_gem_wait_for_idle(dev_priv, I915_WAIT_LOCKED)) {
307dc25b
CW
2703 DRM_ERROR("Failed to wait for idle; VT'd may hang.\n");
2704 /* Wait a bit, in hopes it avoids the hang */
2705 udelay(10);
2706 }
2707 }
5c042287 2708
03ac84f1 2709 dma_unmap_sg(kdev, pages->sgl, pages->nents, PCI_DMA_BIDIRECTIONAL);
7c2e6fdf 2710}
644ec02b 2711
45b186f1 2712static void i915_gtt_color_adjust(const struct drm_mm_node *node,
42d6ab48 2713 unsigned long color,
440fd528
TR
2714 u64 *start,
2715 u64 *end)
42d6ab48
CW
2716{
2717 if (node->color != color)
f51455d4 2718 *start += I915_GTT_PAGE_SIZE;
42d6ab48 2719
b44f97fd
CW
2720 node = list_next_entry(node, node_list);
2721 if (node->allocated && node->color != color)
f51455d4 2722 *end -= I915_GTT_PAGE_SIZE;
42d6ab48 2723}
fbe5d36e 2724
f6b9d5ca 2725int i915_gem_init_ggtt(struct drm_i915_private *dev_priv)
644ec02b 2726{
e78891ca
BW
2727 /* Let GEM Manage all of the aperture.
2728 *
2729 * However, leave one page at the end still bound to the scratch page.
2730 * There are a number of places where the hardware apparently prefetches
2731 * past the end of the object, and we've seen multiple hangs with the
2732 * GPU head pointer stuck in a batchbuffer bound at the last page of the
2733 * aperture. One page should be enough to keep any prefetching inside
2734 * of the aperture.
2735 */
72e96d64 2736 struct i915_ggtt *ggtt = &dev_priv->ggtt;
ed2f3452 2737 unsigned long hole_start, hole_end;
95374d75 2738 struct i915_hw_ppgtt *ppgtt;
f6b9d5ca 2739 struct drm_mm_node *entry;
fa76da34 2740 int ret;
644ec02b 2741
b02d22a3
ZW
2742 ret = intel_vgt_balloon(dev_priv);
2743 if (ret)
2744 return ret;
5dda8fa3 2745
95374d75
CW
2746 /* Reserve a mappable slot for our lockless error capture */
2747 ret = drm_mm_insert_node_in_range_generic(&ggtt->base.mm,
2748 &ggtt->error_capture,
f51455d4 2749 PAGE_SIZE, 0,
85fd4f58 2750 I915_COLOR_UNEVICTABLE,
95374d75
CW
2751 0, ggtt->mappable_end,
2752 0, 0);
2753 if (ret)
2754 return ret;
2755
ed2f3452 2756 /* Clear any non-preallocated blocks */
72e96d64 2757 drm_mm_for_each_hole(entry, &ggtt->base.mm, hole_start, hole_end) {
ed2f3452
CW
2758 DRM_DEBUG_KMS("clearing unused GTT space: [%lx, %lx]\n",
2759 hole_start, hole_end);
72e96d64 2760 ggtt->base.clear_range(&ggtt->base, hole_start,
4fb84d99 2761 hole_end - hole_start);
ed2f3452
CW
2762 }
2763
2764 /* And finally clear the reserved guard page */
f6b9d5ca 2765 ggtt->base.clear_range(&ggtt->base,
4fb84d99 2766 ggtt->base.total - PAGE_SIZE, PAGE_SIZE);
6c5566a8 2767
97d6d7ab 2768 if (USES_PPGTT(dev_priv) && !USES_FULL_PPGTT(dev_priv)) {
fa76da34 2769 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
95374d75
CW
2770 if (!ppgtt) {
2771 ret = -ENOMEM;
2772 goto err;
2773 }
fa76da34 2774
2bfa996e 2775 ret = __hw_ppgtt_init(ppgtt, dev_priv);
95374d75
CW
2776 if (ret)
2777 goto err_ppgtt;
5c5f6457 2778
95374d75 2779 if (ppgtt->base.allocate_va_range) {
5c5f6457
DV
2780 ret = ppgtt->base.allocate_va_range(&ppgtt->base, 0,
2781 ppgtt->base.total);
95374d75
CW
2782 if (ret)
2783 goto err_ppgtt_cleanup;
4933d519 2784 }
fa76da34 2785
5c5f6457
DV
2786 ppgtt->base.clear_range(&ppgtt->base,
2787 ppgtt->base.start,
4fb84d99 2788 ppgtt->base.total);
5c5f6457 2789
fa76da34 2790 dev_priv->mm.aliasing_ppgtt = ppgtt;
72e96d64
JL
2791 WARN_ON(ggtt->base.bind_vma != ggtt_bind_vma);
2792 ggtt->base.bind_vma = aliasing_gtt_bind_vma;
fa76da34
DV
2793 }
2794
6c5566a8 2795 return 0;
95374d75
CW
2796
2797err_ppgtt_cleanup:
2798 ppgtt->base.cleanup(&ppgtt->base);
2799err_ppgtt:
2800 kfree(ppgtt);
2801err:
2802 drm_mm_remove_node(&ggtt->error_capture);
2803 return ret;
e76e9aeb
BW
2804}
2805
d85489d3
JL
2806/**
2807 * i915_ggtt_cleanup_hw - Clean up GGTT hardware initialization
97d6d7ab 2808 * @dev_priv: i915 device
d85489d3 2809 */
97d6d7ab 2810void i915_ggtt_cleanup_hw(struct drm_i915_private *dev_priv)
90d0a0e8 2811{
72e96d64 2812 struct i915_ggtt *ggtt = &dev_priv->ggtt;
90d0a0e8 2813
70e32544
DV
2814 if (dev_priv->mm.aliasing_ppgtt) {
2815 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
70e32544 2816 ppgtt->base.cleanup(&ppgtt->base);
cb7f2760 2817 kfree(ppgtt);
70e32544
DV
2818 }
2819
97d6d7ab 2820 i915_gem_cleanup_stolen(&dev_priv->drm);
a4eba47b 2821
95374d75
CW
2822 if (drm_mm_node_allocated(&ggtt->error_capture))
2823 drm_mm_remove_node(&ggtt->error_capture);
2824
72e96d64 2825 if (drm_mm_initialized(&ggtt->base.mm)) {
b02d22a3 2826 intel_vgt_deballoon(dev_priv);
5dda8fa3 2827
ed9724dd
MA
2828 mutex_lock(&dev_priv->drm.struct_mutex);
2829 i915_address_space_fini(&ggtt->base);
2830 mutex_unlock(&dev_priv->drm.struct_mutex);
90d0a0e8
DV
2831 }
2832
72e96d64 2833 ggtt->base.cleanup(&ggtt->base);
f6b9d5ca
CW
2834
2835 arch_phys_wc_del(ggtt->mtrr);
f7bbe788 2836 io_mapping_fini(&ggtt->mappable);
90d0a0e8 2837}
70e32544 2838
2c642b07 2839static unsigned int gen6_get_total_gtt_size(u16 snb_gmch_ctl)
e76e9aeb
BW
2840{
2841 snb_gmch_ctl >>= SNB_GMCH_GGMS_SHIFT;
2842 snb_gmch_ctl &= SNB_GMCH_GGMS_MASK;
2843 return snb_gmch_ctl << 20;
2844}
2845
2c642b07 2846static unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
9459d252
BW
2847{
2848 bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
2849 bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
2850 if (bdw_gmch_ctl)
2851 bdw_gmch_ctl = 1 << bdw_gmch_ctl;
562d55d9
BW
2852
2853#ifdef CONFIG_X86_32
2854 /* Limit 32b platforms to a 2GB GGTT: 4 << 20 / pte size * PAGE_SIZE */
2855 if (bdw_gmch_ctl > 4)
2856 bdw_gmch_ctl = 4;
2857#endif
2858
9459d252
BW
2859 return bdw_gmch_ctl << 20;
2860}
2861
2c642b07 2862static unsigned int chv_get_total_gtt_size(u16 gmch_ctrl)
d7f25f23
DL
2863{
2864 gmch_ctrl >>= SNB_GMCH_GGMS_SHIFT;
2865 gmch_ctrl &= SNB_GMCH_GGMS_MASK;
2866
2867 if (gmch_ctrl)
2868 return 1 << (20 + gmch_ctrl);
2869
2870 return 0;
2871}
2872
2c642b07 2873static size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
e76e9aeb
BW
2874{
2875 snb_gmch_ctl >>= SNB_GMCH_GMS_SHIFT;
2876 snb_gmch_ctl &= SNB_GMCH_GMS_MASK;
2877 return snb_gmch_ctl << 25; /* 32 MB units */
2878}
2879
2c642b07 2880static size_t gen8_get_stolen_size(u16 bdw_gmch_ctl)
9459d252
BW
2881{
2882 bdw_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2883 bdw_gmch_ctl &= BDW_GMCH_GMS_MASK;
2884 return bdw_gmch_ctl << 25; /* 32 MB units */
2885}
2886
d7f25f23
DL
2887static size_t chv_get_stolen_size(u16 gmch_ctrl)
2888{
2889 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
2890 gmch_ctrl &= SNB_GMCH_GMS_MASK;
2891
2892 /*
2893 * 0x0 to 0x10: 32MB increments starting at 0MB
2894 * 0x11 to 0x16: 4MB increments starting at 8MB
2895 * 0x17 to 0x1d: 4MB increments start at 36MB
2896 */
2897 if (gmch_ctrl < 0x11)
2898 return gmch_ctrl << 25;
2899 else if (gmch_ctrl < 0x17)
2900 return (gmch_ctrl - 0x11 + 2) << 22;
2901 else
2902 return (gmch_ctrl - 0x17 + 9) << 22;
2903}
2904
66375014
DL
2905static size_t gen9_get_stolen_size(u16 gen9_gmch_ctl)
2906{
2907 gen9_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2908 gen9_gmch_ctl &= BDW_GMCH_GMS_MASK;
2909
2910 if (gen9_gmch_ctl < 0xf0)
2911 return gen9_gmch_ctl << 25; /* 32 MB units */
2912 else
2913 /* 4MB increments starting at 0xf0 for 4MB */
2914 return (gen9_gmch_ctl - 0xf0 + 1) << 22;
2915}
2916
34c998b4 2917static int ggtt_probe_common(struct i915_ggtt *ggtt, u64 size)
63340133 2918{
49d73912
CW
2919 struct drm_i915_private *dev_priv = ggtt->base.i915;
2920 struct pci_dev *pdev = dev_priv->drm.pdev;
34c998b4 2921 phys_addr_t phys_addr;
8bcdd0f7 2922 int ret;
63340133
BW
2923
2924 /* For Modern GENs the PTEs and register space are split in the BAR */
34c998b4 2925 phys_addr = pci_resource_start(pdev, 0) + pci_resource_len(pdev, 0) / 2;
63340133 2926
2a073f89
ID
2927 /*
2928 * On BXT writes larger than 64 bit to the GTT pagetable range will be
2929 * dropped. For WC mappings in general we have 64 byte burst writes
2930 * when the WC buffer is flushed, so we can't use it, but have to
2931 * resort to an uncached mapping. The WC issue is easily caught by the
2932 * readback check when writing GTT PTE entries.
2933 */
cc3f90f0 2934 if (IS_GEN9_LP(dev_priv))
34c998b4 2935 ggtt->gsm = ioremap_nocache(phys_addr, size);
2a073f89 2936 else
34c998b4 2937 ggtt->gsm = ioremap_wc(phys_addr, size);
72e96d64 2938 if (!ggtt->gsm) {
34c998b4 2939 DRM_ERROR("Failed to map the ggtt page table\n");
63340133
BW
2940 return -ENOMEM;
2941 }
2942
275a991c 2943 ret = setup_scratch_page(dev_priv, &ggtt->base.scratch_page, GFP_DMA32);
8bcdd0f7 2944 if (ret) {
63340133
BW
2945 DRM_ERROR("Scratch setup failed\n");
2946 /* iounmap will also get called at remove, but meh */
72e96d64 2947 iounmap(ggtt->gsm);
8bcdd0f7 2948 return ret;
63340133
BW
2949 }
2950
4ad2af1e 2951 return 0;
63340133
BW
2952}
2953
fbe5d36e
BW
2954/* The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
2955 * bits. When using advanced contexts each context stores its own PAT, but
2956 * writing this data shouldn't be harmful even in those cases. */
ee0ce478 2957static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv)
fbe5d36e 2958{
fbe5d36e
BW
2959 uint64_t pat;
2960
2961 pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) | /* for normal objects, no eLLC */
2962 GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) | /* for something pointing to ptes? */
2963 GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC) | /* for scanout with eLLC */
2964 GEN8_PPAT(3, GEN8_PPAT_UC) | /* Uncached objects, mostly for scanout */
2965 GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
2966 GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
2967 GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
2968 GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
2969
2d1fe073 2970 if (!USES_PPGTT(dev_priv))
d6a8b72e
RV
2971 /* Spec: "For GGTT, there is NO pat_sel[2:0] from the entry,
2972 * so RTL will always use the value corresponding to
2973 * pat_sel = 000".
2974 * So let's disable cache for GGTT to avoid screen corruptions.
2975 * MOCS still can be used though.
2976 * - System agent ggtt writes (i.e. cpu gtt mmaps) already work
2977 * before this patch, i.e. the same uncached + snooping access
2978 * like on gen6/7 seems to be in effect.
2979 * - So this just fixes blitter/render access. Again it looks
2980 * like it's not just uncached access, but uncached + snooping.
2981 * So we can still hold onto all our assumptions wrt cpu
2982 * clflushing on LLC machines.
2983 */
2984 pat = GEN8_PPAT(0, GEN8_PPAT_UC);
2985
fbe5d36e
BW
2986 /* XXX: spec defines this as 2 distinct registers. It's unclear if a 64b
2987 * write would work. */
7e435ad2
VS
2988 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
2989 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
fbe5d36e
BW
2990}
2991
ee0ce478
VS
2992static void chv_setup_private_ppat(struct drm_i915_private *dev_priv)
2993{
2994 uint64_t pat;
2995
2996 /*
2997 * Map WB on BDW to snooped on CHV.
2998 *
2999 * Only the snoop bit has meaning for CHV, the rest is
3000 * ignored.
3001 *
cf3d262e
VS
3002 * The hardware will never snoop for certain types of accesses:
3003 * - CPU GTT (GMADR->GGTT->no snoop->memory)
3004 * - PPGTT page tables
3005 * - some other special cycles
3006 *
3007 * As with BDW, we also need to consider the following for GT accesses:
3008 * "For GGTT, there is NO pat_sel[2:0] from the entry,
3009 * so RTL will always use the value corresponding to
3010 * pat_sel = 000".
3011 * Which means we must set the snoop bit in PAT entry 0
3012 * in order to keep the global status page working.
ee0ce478
VS
3013 */
3014 pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
3015 GEN8_PPAT(1, 0) |
3016 GEN8_PPAT(2, 0) |
3017 GEN8_PPAT(3, 0) |
3018 GEN8_PPAT(4, CHV_PPAT_SNOOP) |
3019 GEN8_PPAT(5, CHV_PPAT_SNOOP) |
3020 GEN8_PPAT(6, CHV_PPAT_SNOOP) |
3021 GEN8_PPAT(7, CHV_PPAT_SNOOP);
3022
7e435ad2
VS
3023 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
3024 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
ee0ce478
VS
3025}
3026
34c998b4
CW
3027static void gen6_gmch_remove(struct i915_address_space *vm)
3028{
3029 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
3030
3031 iounmap(ggtt->gsm);
49d73912 3032 cleanup_scratch_page(vm->i915, &vm->scratch_page);
34c998b4
CW
3033}
3034
d507d735 3035static int gen8_gmch_probe(struct i915_ggtt *ggtt)
63340133 3036{
49d73912 3037 struct drm_i915_private *dev_priv = ggtt->base.i915;
97d6d7ab 3038 struct pci_dev *pdev = dev_priv->drm.pdev;
34c998b4 3039 unsigned int size;
63340133 3040 u16 snb_gmch_ctl;
63340133
BW
3041
3042 /* TODO: We're not aware of mappable constraints on gen8 yet */
97d6d7ab
CW
3043 ggtt->mappable_base = pci_resource_start(pdev, 2);
3044 ggtt->mappable_end = pci_resource_len(pdev, 2);
63340133 3045
97d6d7ab
CW
3046 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(39)))
3047 pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(39));
63340133 3048
97d6d7ab 3049 pci_read_config_word(pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
63340133 3050
97d6d7ab 3051 if (INTEL_GEN(dev_priv) >= 9) {
d507d735 3052 ggtt->stolen_size = gen9_get_stolen_size(snb_gmch_ctl);
34c998b4 3053 size = gen8_get_total_gtt_size(snb_gmch_ctl);
97d6d7ab 3054 } else if (IS_CHERRYVIEW(dev_priv)) {
d507d735 3055 ggtt->stolen_size = chv_get_stolen_size(snb_gmch_ctl);
34c998b4 3056 size = chv_get_total_gtt_size(snb_gmch_ctl);
d7f25f23 3057 } else {
d507d735 3058 ggtt->stolen_size = gen8_get_stolen_size(snb_gmch_ctl);
34c998b4 3059 size = gen8_get_total_gtt_size(snb_gmch_ctl);
d7f25f23 3060 }
63340133 3061
34c998b4 3062 ggtt->base.total = (size / sizeof(gen8_pte_t)) << PAGE_SHIFT;
63340133 3063
cc3f90f0 3064 if (IS_CHERRYVIEW(dev_priv) || IS_GEN9_LP(dev_priv))
ee0ce478
VS
3065 chv_setup_private_ppat(dev_priv);
3066 else
3067 bdw_setup_private_ppat(dev_priv);
fbe5d36e 3068
34c998b4 3069 ggtt->base.cleanup = gen6_gmch_remove;
d507d735
JL
3070 ggtt->base.bind_vma = ggtt_bind_vma;
3071 ggtt->base.unbind_vma = ggtt_unbind_vma;
d6473f56 3072 ggtt->base.insert_page = gen8_ggtt_insert_page;
f7770bfd 3073 ggtt->base.clear_range = nop_clear_range;
48f112fe 3074 if (!USES_FULL_PPGTT(dev_priv) || intel_scanout_needs_vtd_wa(dev_priv))
f7770bfd
CW
3075 ggtt->base.clear_range = gen8_ggtt_clear_range;
3076
3077 ggtt->base.insert_entries = gen8_ggtt_insert_entries;
3078 if (IS_CHERRYVIEW(dev_priv))
3079 ggtt->base.insert_entries = gen8_ggtt_insert_entries__BKL;
3080
7c3f86b6
CW
3081 ggtt->invalidate = gen6_ggtt_invalidate;
3082
34c998b4 3083 return ggtt_probe_common(ggtt, size);
63340133
BW
3084}
3085
d507d735 3086static int gen6_gmch_probe(struct i915_ggtt *ggtt)
e76e9aeb 3087{
49d73912 3088 struct drm_i915_private *dev_priv = ggtt->base.i915;
97d6d7ab 3089 struct pci_dev *pdev = dev_priv->drm.pdev;
34c998b4 3090 unsigned int size;
e76e9aeb 3091 u16 snb_gmch_ctl;
e76e9aeb 3092
97d6d7ab
CW
3093 ggtt->mappable_base = pci_resource_start(pdev, 2);
3094 ggtt->mappable_end = pci_resource_len(pdev, 2);
41907ddc 3095
baa09f5f
BW
3096 /* 64/512MB is the current min/max we actually know of, but this is just
3097 * a coarse sanity check.
e76e9aeb 3098 */
34c998b4 3099 if (ggtt->mappable_end < (64<<20) || ggtt->mappable_end > (512<<20)) {
d507d735 3100 DRM_ERROR("Unknown GMADR size (%llx)\n", ggtt->mappable_end);
baa09f5f 3101 return -ENXIO;
e76e9aeb
BW
3102 }
3103
97d6d7ab
CW
3104 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(40)))
3105 pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(40));
3106 pci_read_config_word(pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
e76e9aeb 3107
d507d735 3108 ggtt->stolen_size = gen6_get_stolen_size(snb_gmch_ctl);
e76e9aeb 3109
34c998b4
CW
3110 size = gen6_get_total_gtt_size(snb_gmch_ctl);
3111 ggtt->base.total = (size / sizeof(gen6_pte_t)) << PAGE_SHIFT;
e76e9aeb 3112
d507d735 3113 ggtt->base.clear_range = gen6_ggtt_clear_range;
d6473f56 3114 ggtt->base.insert_page = gen6_ggtt_insert_page;
d507d735
JL
3115 ggtt->base.insert_entries = gen6_ggtt_insert_entries;
3116 ggtt->base.bind_vma = ggtt_bind_vma;
3117 ggtt->base.unbind_vma = ggtt_unbind_vma;
34c998b4
CW
3118 ggtt->base.cleanup = gen6_gmch_remove;
3119
7c3f86b6
CW
3120 ggtt->invalidate = gen6_ggtt_invalidate;
3121
34c998b4
CW
3122 if (HAS_EDRAM(dev_priv))
3123 ggtt->base.pte_encode = iris_pte_encode;
3124 else if (IS_HASWELL(dev_priv))
3125 ggtt->base.pte_encode = hsw_pte_encode;
3126 else if (IS_VALLEYVIEW(dev_priv))
3127 ggtt->base.pte_encode = byt_pte_encode;
3128 else if (INTEL_GEN(dev_priv) >= 7)
3129 ggtt->base.pte_encode = ivb_pte_encode;
3130 else
3131 ggtt->base.pte_encode = snb_pte_encode;
7faf1ab2 3132
34c998b4 3133 return ggtt_probe_common(ggtt, size);
e76e9aeb
BW
3134}
3135
34c998b4 3136static void i915_gmch_remove(struct i915_address_space *vm)
e76e9aeb 3137{
34c998b4 3138 intel_gmch_remove();
644ec02b 3139}
baa09f5f 3140
d507d735 3141static int i915_gmch_probe(struct i915_ggtt *ggtt)
baa09f5f 3142{
49d73912 3143 struct drm_i915_private *dev_priv = ggtt->base.i915;
baa09f5f
BW
3144 int ret;
3145
91c8a326 3146 ret = intel_gmch_probe(dev_priv->bridge_dev, dev_priv->drm.pdev, NULL);
baa09f5f
BW
3147 if (!ret) {
3148 DRM_ERROR("failed to set up gmch\n");
3149 return -EIO;
3150 }
3151
edd1f2fe
CW
3152 intel_gtt_get(&ggtt->base.total,
3153 &ggtt->stolen_size,
3154 &ggtt->mappable_base,
3155 &ggtt->mappable_end);
baa09f5f 3156
97d6d7ab 3157 ggtt->do_idle_maps = needs_idle_maps(dev_priv);
d6473f56 3158 ggtt->base.insert_page = i915_ggtt_insert_page;
d507d735
JL
3159 ggtt->base.insert_entries = i915_ggtt_insert_entries;
3160 ggtt->base.clear_range = i915_ggtt_clear_range;
3161 ggtt->base.bind_vma = ggtt_bind_vma;
3162 ggtt->base.unbind_vma = ggtt_unbind_vma;
34c998b4 3163 ggtt->base.cleanup = i915_gmch_remove;
baa09f5f 3164
7c3f86b6
CW
3165 ggtt->invalidate = gmch_ggtt_invalidate;
3166
d507d735 3167 if (unlikely(ggtt->do_idle_maps))
c0a7f818
CW
3168 DRM_INFO("applying Ironlake quirks for intel_iommu\n");
3169
baa09f5f
BW
3170 return 0;
3171}
3172
d85489d3 3173/**
0088e522 3174 * i915_ggtt_probe_hw - Probe GGTT hardware location
97d6d7ab 3175 * @dev_priv: i915 device
d85489d3 3176 */
97d6d7ab 3177int i915_ggtt_probe_hw(struct drm_i915_private *dev_priv)
baa09f5f 3178{
62106b4f 3179 struct i915_ggtt *ggtt = &dev_priv->ggtt;
baa09f5f
BW
3180 int ret;
3181
49d73912 3182 ggtt->base.i915 = dev_priv;
c114f76a 3183
34c998b4
CW
3184 if (INTEL_GEN(dev_priv) <= 5)
3185 ret = i915_gmch_probe(ggtt);
3186 else if (INTEL_GEN(dev_priv) < 8)
3187 ret = gen6_gmch_probe(ggtt);
3188 else
3189 ret = gen8_gmch_probe(ggtt);
a54c0c27 3190 if (ret)
baa09f5f 3191 return ret;
baa09f5f 3192
db9309a5
CW
3193 /* Trim the GGTT to fit the GuC mappable upper range (when enabled).
3194 * This is easier than doing range restriction on the fly, as we
3195 * currently don't have any bits spare to pass in this upper
3196 * restriction!
3197 */
3198 if (HAS_GUC(dev_priv) && i915.enable_guc_loading) {
3199 ggtt->base.total = min_t(u64, ggtt->base.total, GUC_GGTT_TOP);
3200 ggtt->mappable_end = min(ggtt->mappable_end, ggtt->base.total);
3201 }
3202
c890e2d5
CW
3203 if ((ggtt->base.total - 1) >> 32) {
3204 DRM_ERROR("We never expected a Global GTT with more than 32bits"
f6b9d5ca 3205 " of address space! Found %lldM!\n",
c890e2d5
CW
3206 ggtt->base.total >> 20);
3207 ggtt->base.total = 1ULL << 32;
3208 ggtt->mappable_end = min(ggtt->mappable_end, ggtt->base.total);
3209 }
3210
f6b9d5ca
CW
3211 if (ggtt->mappable_end > ggtt->base.total) {
3212 DRM_ERROR("mappable aperture extends past end of GGTT,"
3213 " aperture=%llx, total=%llx\n",
3214 ggtt->mappable_end, ggtt->base.total);
3215 ggtt->mappable_end = ggtt->base.total;
3216 }
3217
baa09f5f 3218 /* GMADR is the PCI mmio aperture into the global GTT. */
c44ef60e 3219 DRM_INFO("Memory usable by graphics device = %lluM\n",
62106b4f
JL
3220 ggtt->base.total >> 20);
3221 DRM_DEBUG_DRIVER("GMADR size = %lldM\n", ggtt->mappable_end >> 20);
edd1f2fe 3222 DRM_DEBUG_DRIVER("GTT stolen size = %uM\n", ggtt->stolen_size >> 20);
5db6c735
DV
3223#ifdef CONFIG_INTEL_IOMMU
3224 if (intel_iommu_gfx_mapped)
3225 DRM_INFO("VT-d active for gfx access\n");
3226#endif
baa09f5f
BW
3227
3228 return 0;
0088e522
CW
3229}
3230
3231/**
3232 * i915_ggtt_init_hw - Initialize GGTT hardware
97d6d7ab 3233 * @dev_priv: i915 device
0088e522 3234 */
97d6d7ab 3235int i915_ggtt_init_hw(struct drm_i915_private *dev_priv)
0088e522 3236{
0088e522
CW
3237 struct i915_ggtt *ggtt = &dev_priv->ggtt;
3238 int ret;
3239
f6b9d5ca
CW
3240 INIT_LIST_HEAD(&dev_priv->vm_list);
3241
3242 /* Subtract the guard page before address space initialization to
3243 * shrink the range used by drm_mm.
3244 */
80b204bc 3245 mutex_lock(&dev_priv->drm.struct_mutex);
b196fbc7 3246 ggtt->base.total -= I915_GTT_PAGE_SIZE;
80b204bc 3247 i915_address_space_init(&ggtt->base, dev_priv, "[global]");
b196fbc7 3248 ggtt->base.total += I915_GTT_PAGE_SIZE;
f6b9d5ca
CW
3249 if (!HAS_LLC(dev_priv))
3250 ggtt->base.mm.color_adjust = i915_gtt_color_adjust;
80b204bc 3251 mutex_unlock(&dev_priv->drm.struct_mutex);
f6b9d5ca 3252
f7bbe788
CW
3253 if (!io_mapping_init_wc(&dev_priv->ggtt.mappable,
3254 dev_priv->ggtt.mappable_base,
3255 dev_priv->ggtt.mappable_end)) {
f6b9d5ca
CW
3256 ret = -EIO;
3257 goto out_gtt_cleanup;
3258 }
3259
3260 ggtt->mtrr = arch_phys_wc_add(ggtt->mappable_base, ggtt->mappable_end);
3261
0088e522
CW
3262 /*
3263 * Initialise stolen early so that we may reserve preallocated
3264 * objects for the BIOS to KMS transition.
3265 */
7ace3d30 3266 ret = i915_gem_init_stolen(dev_priv);
0088e522
CW
3267 if (ret)
3268 goto out_gtt_cleanup;
3269
3270 return 0;
a4eba47b
ID
3271
3272out_gtt_cleanup:
72e96d64 3273 ggtt->base.cleanup(&ggtt->base);
a4eba47b 3274 return ret;
baa09f5f 3275}
6f65e29a 3276
97d6d7ab 3277int i915_ggtt_enable_hw(struct drm_i915_private *dev_priv)
ac840ae5 3278{
97d6d7ab 3279 if (INTEL_GEN(dev_priv) < 6 && !intel_enable_gtt())
ac840ae5
VS
3280 return -EIO;
3281
3282 return 0;
3283}
3284
7c3f86b6
CW
3285void i915_ggtt_enable_guc(struct drm_i915_private *i915)
3286{
3287 i915->ggtt.invalidate = guc_ggtt_invalidate;
3288}
3289
3290void i915_ggtt_disable_guc(struct drm_i915_private *i915)
3291{
3292 i915->ggtt.invalidate = gen6_ggtt_invalidate;
3293}
3294
275a991c 3295void i915_gem_restore_gtt_mappings(struct drm_i915_private *dev_priv)
fa42331b 3296{
72e96d64 3297 struct i915_ggtt *ggtt = &dev_priv->ggtt;
fbb30a5c 3298 struct drm_i915_gem_object *obj, *on;
fa42331b 3299
dc97997a 3300 i915_check_and_clear_faults(dev_priv);
fa42331b
DV
3301
3302 /* First fill our portion of the GTT with scratch pages */
4fb84d99 3303 ggtt->base.clear_range(&ggtt->base, ggtt->base.start, ggtt->base.total);
fa42331b 3304
fbb30a5c
CW
3305 ggtt->base.closed = true; /* skip rewriting PTE on VMA unbind */
3306
3307 /* clflush objects bound into the GGTT and rebind them. */
3308 list_for_each_entry_safe(obj, on,
56cea323 3309 &dev_priv->mm.bound_list, global_link) {
fbb30a5c
CW
3310 bool ggtt_bound = false;
3311 struct i915_vma *vma;
3312
1c7f4bca 3313 list_for_each_entry(vma, &obj->vma_list, obj_link) {
72e96d64 3314 if (vma->vm != &ggtt->base)
2c3d9984 3315 continue;
fa42331b 3316
fbb30a5c
CW
3317 if (!i915_vma_unbind(vma))
3318 continue;
3319
2c3d9984
TU
3320 WARN_ON(i915_vma_bind(vma, obj->cache_level,
3321 PIN_UPDATE));
fbb30a5c 3322 ggtt_bound = true;
2c3d9984
TU
3323 }
3324
fbb30a5c 3325 if (ggtt_bound)
975f7ff4 3326 WARN_ON(i915_gem_object_set_to_gtt_domain(obj, false));
2c3d9984 3327 }
fa42331b 3328
fbb30a5c
CW
3329 ggtt->base.closed = false;
3330
275a991c 3331 if (INTEL_GEN(dev_priv) >= 8) {
cc3f90f0 3332 if (IS_CHERRYVIEW(dev_priv) || IS_GEN9_LP(dev_priv))
fa42331b
DV
3333 chv_setup_private_ppat(dev_priv);
3334 else
3335 bdw_setup_private_ppat(dev_priv);
3336
3337 return;
3338 }
3339
275a991c 3340 if (USES_PPGTT(dev_priv)) {
72e96d64
JL
3341 struct i915_address_space *vm;
3342
fa42331b
DV
3343 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
3344 /* TODO: Perhaps it shouldn't be gen6 specific */
3345
e5716f55 3346 struct i915_hw_ppgtt *ppgtt;
fa42331b 3347
2bfa996e 3348 if (i915_is_ggtt(vm))
fa42331b 3349 ppgtt = dev_priv->mm.aliasing_ppgtt;
e5716f55
JL
3350 else
3351 ppgtt = i915_vm_to_ppgtt(vm);
fa42331b
DV
3352
3353 gen6_write_page_range(dev_priv, &ppgtt->pd,
3354 0, ppgtt->base.total);
3355 }
3356 }
3357
7c3f86b6 3358 i915_ggtt_invalidate(dev_priv);
fa42331b
DV
3359}
3360
804beb4b 3361static struct scatterlist *
2d7f3bdb 3362rotate_pages(const dma_addr_t *in, unsigned int offset,
804beb4b 3363 unsigned int width, unsigned int height,
87130255 3364 unsigned int stride,
804beb4b 3365 struct sg_table *st, struct scatterlist *sg)
50470bb0
TU
3366{
3367 unsigned int column, row;
3368 unsigned int src_idx;
50470bb0 3369
50470bb0 3370 for (column = 0; column < width; column++) {
87130255 3371 src_idx = stride * (height - 1) + column;
50470bb0
TU
3372 for (row = 0; row < height; row++) {
3373 st->nents++;
3374 /* We don't need the pages, but need to initialize
3375 * the entries so the sg list can be happily traversed.
3376 * The only thing we need are DMA addresses.
3377 */
3378 sg_set_page(sg, NULL, PAGE_SIZE, 0);
804beb4b 3379 sg_dma_address(sg) = in[offset + src_idx];
50470bb0
TU
3380 sg_dma_len(sg) = PAGE_SIZE;
3381 sg = sg_next(sg);
87130255 3382 src_idx -= stride;
50470bb0
TU
3383 }
3384 }
804beb4b
TU
3385
3386 return sg;
50470bb0
TU
3387}
3388
3389static struct sg_table *
6687c906 3390intel_rotate_fb_obj_pages(const struct intel_rotation_info *rot_info,
50470bb0
TU
3391 struct drm_i915_gem_object *obj)
3392{
85d1225e 3393 const size_t n_pages = obj->base.size / PAGE_SIZE;
6687c906 3394 unsigned int size = intel_rotation_info_size(rot_info);
85d1225e
DG
3395 struct sgt_iter sgt_iter;
3396 dma_addr_t dma_addr;
50470bb0
TU
3397 unsigned long i;
3398 dma_addr_t *page_addr_list;
3399 struct sg_table *st;
89e3e142 3400 struct scatterlist *sg;
1d00dad5 3401 int ret = -ENOMEM;
50470bb0 3402
50470bb0 3403 /* Allocate a temporary list of source pages for random access. */
85d1225e 3404 page_addr_list = drm_malloc_gfp(n_pages,
f2a85e19
CW
3405 sizeof(dma_addr_t),
3406 GFP_TEMPORARY);
50470bb0
TU
3407 if (!page_addr_list)
3408 return ERR_PTR(ret);
3409
3410 /* Allocate target SG list. */
3411 st = kmalloc(sizeof(*st), GFP_KERNEL);
3412 if (!st)
3413 goto err_st_alloc;
3414
6687c906 3415 ret = sg_alloc_table(st, size, GFP_KERNEL);
50470bb0
TU
3416 if (ret)
3417 goto err_sg_alloc;
3418
3419 /* Populate source page list from the object. */
3420 i = 0;
a4f5ea64 3421 for_each_sgt_dma(dma_addr, sgt_iter, obj->mm.pages)
85d1225e 3422 page_addr_list[i++] = dma_addr;
50470bb0 3423
85d1225e 3424 GEM_BUG_ON(i != n_pages);
11f20322
VS
3425 st->nents = 0;
3426 sg = st->sgl;
3427
6687c906
VS
3428 for (i = 0 ; i < ARRAY_SIZE(rot_info->plane); i++) {
3429 sg = rotate_pages(page_addr_list, rot_info->plane[i].offset,
3430 rot_info->plane[i].width, rot_info->plane[i].height,
3431 rot_info->plane[i].stride, st, sg);
89e3e142
TU
3432 }
3433
6687c906
VS
3434 DRM_DEBUG_KMS("Created rotated page mapping for object size %zu (%ux%u tiles, %u pages)\n",
3435 obj->base.size, rot_info->plane[0].width, rot_info->plane[0].height, size);
50470bb0
TU
3436
3437 drm_free_large(page_addr_list);
3438
3439 return st;
3440
3441err_sg_alloc:
3442 kfree(st);
3443err_st_alloc:
3444 drm_free_large(page_addr_list);
3445
6687c906
VS
3446 DRM_DEBUG_KMS("Failed to create rotated mapping for object size %zu! (%ux%u tiles, %u pages)\n",
3447 obj->base.size, rot_info->plane[0].width, rot_info->plane[0].height, size);
3448
50470bb0
TU
3449 return ERR_PTR(ret);
3450}
ec7adb6e 3451
8bd7ef16
JL
3452static struct sg_table *
3453intel_partial_pages(const struct i915_ggtt_view *view,
3454 struct drm_i915_gem_object *obj)
3455{
3456 struct sg_table *st;
d2a84a76 3457 struct scatterlist *sg, *iter;
8bab1193 3458 unsigned int count = view->partial.size;
d2a84a76 3459 unsigned int offset;
8bd7ef16
JL
3460 int ret = -ENOMEM;
3461
3462 st = kmalloc(sizeof(*st), GFP_KERNEL);
3463 if (!st)
3464 goto err_st_alloc;
3465
d2a84a76 3466 ret = sg_alloc_table(st, count, GFP_KERNEL);
8bd7ef16
JL
3467 if (ret)
3468 goto err_sg_alloc;
3469
8bab1193 3470 iter = i915_gem_object_get_sg(obj, view->partial.offset, &offset);
d2a84a76
CW
3471 GEM_BUG_ON(!iter);
3472
8bd7ef16
JL
3473 sg = st->sgl;
3474 st->nents = 0;
d2a84a76
CW
3475 do {
3476 unsigned int len;
8bd7ef16 3477
d2a84a76
CW
3478 len = min(iter->length - (offset << PAGE_SHIFT),
3479 count << PAGE_SHIFT);
3480 sg_set_page(sg, NULL, len, 0);
3481 sg_dma_address(sg) =
3482 sg_dma_address(iter) + (offset << PAGE_SHIFT);
3483 sg_dma_len(sg) = len;
8bd7ef16 3484
8bd7ef16 3485 st->nents++;
d2a84a76
CW
3486 count -= len >> PAGE_SHIFT;
3487 if (count == 0) {
3488 sg_mark_end(sg);
3489 return st;
3490 }
8bd7ef16 3491
d2a84a76
CW
3492 sg = __sg_next(sg);
3493 iter = __sg_next(iter);
3494 offset = 0;
3495 } while (1);
8bd7ef16
JL
3496
3497err_sg_alloc:
3498 kfree(st);
3499err_st_alloc:
3500 return ERR_PTR(ret);
3501}
3502
70b9f6f8 3503static int
50470bb0 3504i915_get_ggtt_vma_pages(struct i915_vma *vma)
fe14d5f4 3505{
50470bb0
TU
3506 int ret = 0;
3507
2c3a3f44
CW
3508 /* The vma->pages are only valid within the lifespan of the borrowed
3509 * obj->mm.pages. When the obj->mm.pages sg_table is regenerated, so
3510 * must be the vma->pages. A simple rule is that vma->pages must only
3511 * be accessed when the obj->mm.pages are pinned.
3512 */
3513 GEM_BUG_ON(!i915_gem_object_has_pinned_pages(vma->obj));
3514
247177dd 3515 if (vma->pages)
fe14d5f4
TU
3516 return 0;
3517
3518 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
a4f5ea64 3519 vma->pages = vma->obj->mm.pages;
50470bb0 3520 else if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED)
247177dd 3521 vma->pages =
8bab1193
CW
3522 intel_rotate_fb_obj_pages(&vma->ggtt_view.rotated,
3523 vma->obj);
8bd7ef16 3524 else if (vma->ggtt_view.type == I915_GGTT_VIEW_PARTIAL)
247177dd 3525 vma->pages = intel_partial_pages(&vma->ggtt_view, vma->obj);
fe14d5f4
TU
3526 else
3527 WARN_ONCE(1, "GGTT view %u not implemented!\n",
3528 vma->ggtt_view.type);
3529
247177dd 3530 if (!vma->pages) {
ec7adb6e 3531 DRM_ERROR("Failed to get pages for GGTT view type %u!\n",
fe14d5f4 3532 vma->ggtt_view.type);
50470bb0 3533 ret = -EINVAL;
247177dd
CW
3534 } else if (IS_ERR(vma->pages)) {
3535 ret = PTR_ERR(vma->pages);
3536 vma->pages = NULL;
50470bb0
TU
3537 DRM_ERROR("Failed to get pages for VMA view type %u (%d)!\n",
3538 vma->ggtt_view.type, ret);
fe14d5f4
TU
3539 }
3540
50470bb0 3541 return ret;
fe14d5f4
TU
3542}
3543
625d988a
CW
3544/**
3545 * i915_gem_gtt_reserve - reserve a node in an address_space (GTT)
a4dbf7cf
CW
3546 * @vm: the &struct i915_address_space
3547 * @node: the &struct drm_mm_node (typically i915_vma.mode)
3548 * @size: how much space to allocate inside the GTT,
3549 * must be #I915_GTT_PAGE_SIZE aligned
3550 * @offset: where to insert inside the GTT,
3551 * must be #I915_GTT_MIN_ALIGNMENT aligned, and the node
3552 * (@offset + @size) must fit within the address space
3553 * @color: color to apply to node, if this node is not from a VMA,
3554 * color must be #I915_COLOR_UNEVICTABLE
3555 * @flags: control search and eviction behaviour
625d988a
CW
3556 *
3557 * i915_gem_gtt_reserve() tries to insert the @node at the exact @offset inside
3558 * the address space (using @size and @color). If the @node does not fit, it
3559 * tries to evict any overlapping nodes from the GTT, including any
3560 * neighbouring nodes if the colors do not match (to ensure guard pages between
3561 * differing domains). See i915_gem_evict_for_node() for the gory details
3562 * on the eviction algorithm. #PIN_NONBLOCK may used to prevent waiting on
3563 * evicting active overlapping objects, and any overlapping node that is pinned
3564 * or marked as unevictable will also result in failure.
3565 *
3566 * Returns: 0 on success, -ENOSPC if no suitable hole is found, -EINTR if
3567 * asked to wait for eviction and interrupted.
3568 */
3569int i915_gem_gtt_reserve(struct i915_address_space *vm,
3570 struct drm_mm_node *node,
3571 u64 size, u64 offset, unsigned long color,
3572 unsigned int flags)
3573{
3574 int err;
3575
3576 GEM_BUG_ON(!size);
3577 GEM_BUG_ON(!IS_ALIGNED(size, I915_GTT_PAGE_SIZE));
3578 GEM_BUG_ON(!IS_ALIGNED(offset, I915_GTT_MIN_ALIGNMENT));
3579 GEM_BUG_ON(range_overflows(offset, size, vm->total));
3fec7ec4 3580 GEM_BUG_ON(vm == &vm->i915->mm.aliasing_ppgtt->base);
9734ad13 3581 GEM_BUG_ON(drm_mm_node_allocated(node));
625d988a
CW
3582
3583 node->size = size;
3584 node->start = offset;
3585 node->color = color;
3586
3587 err = drm_mm_reserve_node(&vm->mm, node);
3588 if (err != -ENOSPC)
3589 return err;
3590
3591 err = i915_gem_evict_for_node(vm, node, flags);
3592 if (err == 0)
3593 err = drm_mm_reserve_node(&vm->mm, node);
3594
3595 return err;
3596}
3597
606fec95
CW
3598static u64 random_offset(u64 start, u64 end, u64 len, u64 align)
3599{
3600 u64 range, addr;
3601
3602 GEM_BUG_ON(range_overflows(start, len, end));
3603 GEM_BUG_ON(round_up(start, align) > round_down(end - len, align));
3604
3605 range = round_down(end - len, align) - round_up(start, align);
3606 if (range) {
3607 if (sizeof(unsigned long) == sizeof(u64)) {
3608 addr = get_random_long();
3609 } else {
3610 addr = get_random_int();
3611 if (range > U32_MAX) {
3612 addr <<= 32;
3613 addr |= get_random_int();
3614 }
3615 }
3616 div64_u64_rem(addr, range, &addr);
3617 start += addr;
3618 }
3619
3620 return round_up(start, align);
3621}
3622
e007b19d
CW
3623/**
3624 * i915_gem_gtt_insert - insert a node into an address_space (GTT)
a4dbf7cf
CW
3625 * @vm: the &struct i915_address_space
3626 * @node: the &struct drm_mm_node (typically i915_vma.node)
3627 * @size: how much space to allocate inside the GTT,
3628 * must be #I915_GTT_PAGE_SIZE aligned
3629 * @alignment: required alignment of starting offset, may be 0 but
3630 * if specified, this must be a power-of-two and at least
3631 * #I915_GTT_MIN_ALIGNMENT
3632 * @color: color to apply to node
3633 * @start: start of any range restriction inside GTT (0 for all),
e007b19d 3634 * must be #I915_GTT_PAGE_SIZE aligned
a4dbf7cf
CW
3635 * @end: end of any range restriction inside GTT (U64_MAX for all),
3636 * must be #I915_GTT_PAGE_SIZE aligned if not U64_MAX
3637 * @flags: control search and eviction behaviour
e007b19d
CW
3638 *
3639 * i915_gem_gtt_insert() first searches for an available hole into which
3640 * is can insert the node. The hole address is aligned to @alignment and
3641 * its @size must then fit entirely within the [@start, @end] bounds. The
3642 * nodes on either side of the hole must match @color, or else a guard page
3643 * will be inserted between the two nodes (or the node evicted). If no
606fec95
CW
3644 * suitable hole is found, first a victim is randomly selected and tested
3645 * for eviction, otherwise then the LRU list of objects within the GTT
e007b19d
CW
3646 * is scanned to find the first set of replacement nodes to create the hole.
3647 * Those old overlapping nodes are evicted from the GTT (and so must be
3648 * rebound before any future use). Any node that is currently pinned cannot
3649 * be evicted (see i915_vma_pin()). Similar if the node's VMA is currently
3650 * active and #PIN_NONBLOCK is specified, that node is also skipped when
3651 * searching for an eviction candidate. See i915_gem_evict_something() for
3652 * the gory details on the eviction algorithm.
3653 *
3654 * Returns: 0 on success, -ENOSPC if no suitable hole is found, -EINTR if
3655 * asked to wait for eviction and interrupted.
3656 */
3657int i915_gem_gtt_insert(struct i915_address_space *vm,
3658 struct drm_mm_node *node,
3659 u64 size, u64 alignment, unsigned long color,
3660 u64 start, u64 end, unsigned int flags)
3661{
3662 u32 search_flag, alloc_flag;
606fec95 3663 u64 offset;
e007b19d
CW
3664 int err;
3665
3666 lockdep_assert_held(&vm->i915->drm.struct_mutex);
3667 GEM_BUG_ON(!size);
3668 GEM_BUG_ON(!IS_ALIGNED(size, I915_GTT_PAGE_SIZE));
3669 GEM_BUG_ON(alignment && !is_power_of_2(alignment));
3670 GEM_BUG_ON(alignment && !IS_ALIGNED(alignment, I915_GTT_MIN_ALIGNMENT));
3671 GEM_BUG_ON(start >= end);
3672 GEM_BUG_ON(start > 0 && !IS_ALIGNED(start, I915_GTT_PAGE_SIZE));
3673 GEM_BUG_ON(end < U64_MAX && !IS_ALIGNED(end, I915_GTT_PAGE_SIZE));
3fec7ec4 3674 GEM_BUG_ON(vm == &vm->i915->mm.aliasing_ppgtt->base);
9734ad13 3675 GEM_BUG_ON(drm_mm_node_allocated(node));
e007b19d
CW
3676
3677 if (unlikely(range_overflows(start, size, end)))
3678 return -ENOSPC;
3679
3680 if (unlikely(round_up(start, alignment) > round_down(end - size, alignment)))
3681 return -ENOSPC;
3682
3683 if (flags & PIN_HIGH) {
3684 search_flag = DRM_MM_SEARCH_BELOW;
3685 alloc_flag = DRM_MM_CREATE_TOP;
3686 } else {
3687 search_flag = DRM_MM_SEARCH_DEFAULT;
3688 alloc_flag = DRM_MM_CREATE_DEFAULT;
3689 }
3690
3691 /* We only allocate in PAGE_SIZE/GTT_PAGE_SIZE (4096) chunks,
3692 * so we know that we always have a minimum alignment of 4096.
3693 * The drm_mm range manager is optimised to return results
3694 * with zero alignment, so where possible use the optimal
3695 * path.
3696 */
3697 BUILD_BUG_ON(I915_GTT_MIN_ALIGNMENT > I915_GTT_PAGE_SIZE);
3698 if (alignment <= I915_GTT_MIN_ALIGNMENT)
3699 alignment = 0;
3700
3701 err = drm_mm_insert_node_in_range_generic(&vm->mm, node,
3702 size, alignment, color,
3703 start, end,
3704 search_flag, alloc_flag);
3705 if (err != -ENOSPC)
3706 return err;
3707
606fec95
CW
3708 /* No free space, pick a slot at random.
3709 *
3710 * There is a pathological case here using a GTT shared between
3711 * mmap and GPU (i.e. ggtt/aliasing_ppgtt but not full-ppgtt):
3712 *
3713 * |<-- 256 MiB aperture -->||<-- 1792 MiB unmappable -->|
3714 * (64k objects) (448k objects)
3715 *
3716 * Now imagine that the eviction LRU is ordered top-down (just because
3717 * pathology meets real life), and that we need to evict an object to
3718 * make room inside the aperture. The eviction scan then has to walk
3719 * the 448k list before it finds one within range. And now imagine that
3720 * it has to search for a new hole between every byte inside the memcpy,
3721 * for several simultaneous clients.
3722 *
3723 * On a full-ppgtt system, if we have run out of available space, there
3724 * will be lots and lots of objects in the eviction list! Again,
3725 * searching that LRU list may be slow if we are also applying any
3726 * range restrictions (e.g. restriction to low 4GiB) and so, for
3727 * simplicity and similarilty between different GTT, try the single
3728 * random replacement first.
3729 */
3730 offset = random_offset(start, end,
3731 size, alignment ?: I915_GTT_MIN_ALIGNMENT);
3732 err = i915_gem_gtt_reserve(vm, node, size, offset, color, flags);
3733 if (err != -ENOSPC)
3734 return err;
3735
3736 /* Randomly selected placement is pinned, do a search */
e007b19d
CW
3737 err = i915_gem_evict_something(vm, size, alignment, color,
3738 start, end, flags);
3739 if (err)
3740 return err;
3741
3742 search_flag = DRM_MM_SEARCH_DEFAULT;
3743 return drm_mm_insert_node_in_range_generic(&vm->mm, node,
3744 size, alignment, color,
3745 start, end,
3746 search_flag, alloc_flag);
3747}