blob: 38439fa339a9b3f27d102e75ad330f4ef505ace7 [file] [log] [blame]
Daniel Vetter76aaf222010-11-05 22:23:30 +01001/*
2 * Copyright © 2010 Daniel Vetter
Ben Widawskyc4ac5242014-02-19 22:05:47 -08003 * Copyright © 2011-2014 Intel Corporation
Daniel Vetter76aaf222010-11-05 22:23:30 +01004 *
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
Daniel Vetter0e46ce22014-01-08 16:10:27 +010026#include <linux/seq_file.h>
David Howells760285e2012-10-02 18:01:07 +010027#include <drm/drmP.h>
28#include <drm/i915_drm.h>
Daniel Vetter76aaf222010-11-05 22:23:30 +010029#include "i915_drv.h"
Yu Zhang5dda8fa2015-02-10 19:05:48 +080030#include "i915_vgpu.h"
Daniel Vetter76aaf222010-11-05 22:23:30 +010031#include "i915_trace.h"
32#include "intel_drv.h"
33
Tvrtko Ursulin45f8f692014-12-10 17:27:59 +000034/**
35 * DOC: Global GTT views
36 *
37 * Background and previous state
38 *
39 * Historically objects could exists (be bound) in global GTT space only as
40 * singular instances with a view representing all of the object's backing pages
41 * in a linear fashion. This view will be called a normal view.
42 *
43 * To support multiple views of the same object, where the number of mapped
44 * pages is not equal to the backing store, or where the layout of the pages
45 * is not linear, concept of a GGTT view was added.
46 *
47 * One example of an alternative view is a stereo display driven by a single
48 * image. In this case we would have a framebuffer looking like this
49 * (2x2 pages):
50 *
51 * 12
52 * 34
53 *
54 * Above would represent a normal GGTT view as normally mapped for GPU or CPU
55 * rendering. In contrast, fed to the display engine would be an alternative
56 * view which could look something like this:
57 *
58 * 1212
59 * 3434
60 *
61 * In this example both the size and layout of pages in the alternative view is
62 * different from the normal view.
63 *
64 * Implementation and usage
65 *
66 * GGTT views are implemented using VMAs and are distinguished via enum
67 * i915_ggtt_view_type and struct i915_ggtt_view.
68 *
69 * A new flavour of core GEM functions which work with GGTT bound objects were
Joonas Lahtinenec7adb62015-03-16 14:11:13 +020070 * added with the _ggtt_ infix, and sometimes with _view postfix to avoid
71 * renaming in large amounts of code. They take the struct i915_ggtt_view
72 * parameter encapsulating all metadata required to implement a view.
Tvrtko Ursulin45f8f692014-12-10 17:27:59 +000073 *
74 * As a helper for callers which are only interested in the normal view,
75 * globally const i915_ggtt_view_normal singleton instance exists. All old core
76 * GEM API functions, the ones not taking the view parameter, are operating on,
77 * or with the normal GGTT view.
78 *
79 * Code wanting to add or use a new GGTT view needs to:
80 *
81 * 1. Add a new enum with a suitable name.
82 * 2. Extend the metadata in the i915_ggtt_view structure if required.
83 * 3. Add support to i915_get_vma_pages().
84 *
85 * New views are required to build a scatter-gather table from within the
86 * i915_get_vma_pages function. This table is stored in the vma.ggtt_view and
87 * exists for the lifetime of an VMA.
88 *
89 * Core API is designed to have copy semantics which means that passed in
90 * struct i915_ggtt_view does not need to be persistent (left around after
91 * calling the core API functions).
92 *
93 */
94
Daniel Vetter70b9f6f2015-04-14 17:35:27 +020095static int
96i915_get_ggtt_vma_pages(struct i915_vma *vma);
97
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +000098const struct i915_ggtt_view i915_ggtt_view_normal;
Joonas Lahtinen9abc4642015-03-27 13:09:22 +020099const struct i915_ggtt_view i915_ggtt_view_rotated = {
100 .type = I915_GGTT_VIEW_ROTATED
101};
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +0000102
Daniel Vettercfa7c862014-04-29 11:53:58 +0200103static int sanitize_enable_ppgtt(struct drm_device *dev, int enable_ppgtt)
104{
Chris Wilson1893a712014-09-19 11:56:27 +0100105 bool has_aliasing_ppgtt;
106 bool has_full_ppgtt;
107
108 has_aliasing_ppgtt = INTEL_INFO(dev)->gen >= 6;
109 has_full_ppgtt = INTEL_INFO(dev)->gen >= 7;
Chris Wilson1893a712014-09-19 11:56:27 +0100110
Yu Zhang71ba2d62015-02-10 19:05:54 +0800111 if (intel_vgpu_active(dev))
112 has_full_ppgtt = false; /* emulation is too hard */
113
Damien Lespiau70ee45e2014-11-14 15:05:59 +0000114 /*
115 * We don't allow disabling PPGTT for gen9+ as it's a requirement for
116 * execlists, the sole mechanism available to submit work.
117 */
118 if (INTEL_INFO(dev)->gen < 9 &&
119 (enable_ppgtt == 0 || !has_aliasing_ppgtt))
Daniel Vettercfa7c862014-04-29 11:53:58 +0200120 return 0;
121
122 if (enable_ppgtt == 1)
123 return 1;
124
Chris Wilson1893a712014-09-19 11:56:27 +0100125 if (enable_ppgtt == 2 && has_full_ppgtt)
Daniel Vettercfa7c862014-04-29 11:53:58 +0200126 return 2;
127
Daniel Vetter93a25a92014-03-06 09:40:43 +0100128#ifdef CONFIG_INTEL_IOMMU
129 /* Disable ppgtt on SNB if VT-d is on. */
130 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped) {
131 DRM_INFO("Disabling PPGTT because VT-d is on\n");
Daniel Vettercfa7c862014-04-29 11:53:58 +0200132 return 0;
Daniel Vetter93a25a92014-03-06 09:40:43 +0100133 }
134#endif
135
Jesse Barnes62942ed2014-06-13 09:28:33 -0700136 /* Early VLV doesn't have this */
Ville Syrjäläca2aed6c2014-06-28 02:03:56 +0300137 if (IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
138 dev->pdev->revision < 0xb) {
Jesse Barnes62942ed2014-06-13 09:28:33 -0700139 DRM_DEBUG_DRIVER("disabling PPGTT on pre-B3 step VLV\n");
140 return 0;
141 }
142
Michel Thierry2f82bbd2014-12-15 14:58:00 +0000143 if (INTEL_INFO(dev)->gen >= 8 && i915.enable_execlists)
144 return 2;
145 else
146 return has_aliasing_ppgtt ? 1 : 0;
Daniel Vetter93a25a92014-03-06 09:40:43 +0100147}
148
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200149static int ppgtt_bind_vma(struct i915_vma *vma,
150 enum i915_cache_level cache_level,
151 u32 unused)
Daniel Vetter47552652015-04-14 17:35:24 +0200152{
153 u32 pte_flags = 0;
154
155 /* Currently applicable only to VLV */
156 if (vma->obj->gt_ro)
157 pte_flags |= PTE_READ_ONLY;
158
159 vma->vm->insert_entries(vma->vm, vma->obj->pages, vma->node.start,
160 cache_level, pte_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200161
162 return 0;
Daniel Vetter47552652015-04-14 17:35:24 +0200163}
164
165static void ppgtt_unbind_vma(struct i915_vma *vma)
166{
167 vma->vm->clear_range(vma->vm,
168 vma->node.start,
169 vma->obj->base.size,
170 true);
171}
Ben Widawsky6f65e292013-12-06 14:10:56 -0800172
Daniel Vetter2c642b02015-04-14 17:35:26 +0200173static gen8_pte_t gen8_pte_encode(dma_addr_t addr,
174 enum i915_cache_level level,
175 bool valid)
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700176{
Michel Thierry07749ef2015-03-16 16:00:54 +0000177 gen8_pte_t pte = valid ? _PAGE_PRESENT | _PAGE_RW : 0;
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700178 pte |= addr;
Ben Widawsky63c42e52014-04-18 18:04:27 -0300179
180 switch (level) {
181 case I915_CACHE_NONE:
Ben Widawskyfbe5d362013-11-04 19:56:49 -0800182 pte |= PPAT_UNCACHED_INDEX;
Ben Widawsky63c42e52014-04-18 18:04:27 -0300183 break;
184 case I915_CACHE_WT:
185 pte |= PPAT_DISPLAY_ELLC_INDEX;
186 break;
187 default:
188 pte |= PPAT_CACHED_INDEX;
189 break;
190 }
191
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700192 return pte;
193}
194
Mika Kuoppalafe36f552015-06-25 18:35:16 +0300195static gen8_pde_t gen8_pde_encode(const dma_addr_t addr,
196 const enum i915_cache_level level)
Ben Widawskyb1fe6672013-11-04 21:20:14 -0800197{
Michel Thierry07749ef2015-03-16 16:00:54 +0000198 gen8_pde_t pde = _PAGE_PRESENT | _PAGE_RW;
Ben Widawskyb1fe6672013-11-04 21:20:14 -0800199 pde |= addr;
200 if (level != I915_CACHE_NONE)
201 pde |= PPAT_CACHED_PDE_INDEX;
202 else
203 pde |= PPAT_UNCACHED_INDEX;
204 return pde;
205}
206
Michel Thierry762d9932015-07-30 11:05:29 +0100207#define gen8_pdpe_encode gen8_pde_encode
208#define gen8_pml4e_encode gen8_pde_encode
209
Michel Thierry07749ef2015-03-16 16:00:54 +0000210static gen6_pte_t snb_pte_encode(dma_addr_t addr,
211 enum i915_cache_level level,
212 bool valid, u32 unused)
Ben Widawsky54d12522012-09-24 16:44:32 -0700213{
Michel Thierry07749ef2015-03-16 16:00:54 +0000214 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky54d12522012-09-24 16:44:32 -0700215 pte |= GEN6_PTE_ADDR_ENCODE(addr);
Ben Widawskye7210c32012-10-19 09:33:22 -0700216
217 switch (level) {
Chris Wilson350ec882013-08-06 13:17:02 +0100218 case I915_CACHE_L3_LLC:
219 case I915_CACHE_LLC:
220 pte |= GEN6_PTE_CACHE_LLC;
221 break;
222 case I915_CACHE_NONE:
223 pte |= GEN6_PTE_UNCACHED;
224 break;
225 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +0100226 MISSING_CASE(level);
Chris Wilson350ec882013-08-06 13:17:02 +0100227 }
228
229 return pte;
230}
231
Michel Thierry07749ef2015-03-16 16:00:54 +0000232static gen6_pte_t ivb_pte_encode(dma_addr_t addr,
233 enum i915_cache_level level,
234 bool valid, u32 unused)
Chris Wilson350ec882013-08-06 13:17:02 +0100235{
Michel Thierry07749ef2015-03-16 16:00:54 +0000236 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Chris Wilson350ec882013-08-06 13:17:02 +0100237 pte |= GEN6_PTE_ADDR_ENCODE(addr);
238
239 switch (level) {
240 case I915_CACHE_L3_LLC:
241 pte |= GEN7_PTE_CACHE_L3_LLC;
Ben Widawskye7210c32012-10-19 09:33:22 -0700242 break;
243 case I915_CACHE_LLC:
244 pte |= GEN6_PTE_CACHE_LLC;
245 break;
246 case I915_CACHE_NONE:
Kenneth Graunke91197082013-04-22 00:53:51 -0700247 pte |= GEN6_PTE_UNCACHED;
Ben Widawskye7210c32012-10-19 09:33:22 -0700248 break;
249 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +0100250 MISSING_CASE(level);
Ben Widawskye7210c32012-10-19 09:33:22 -0700251 }
252
Ben Widawsky54d12522012-09-24 16:44:32 -0700253 return pte;
254}
255
Michel Thierry07749ef2015-03-16 16:00:54 +0000256static gen6_pte_t byt_pte_encode(dma_addr_t addr,
257 enum i915_cache_level level,
258 bool valid, u32 flags)
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700259{
Michel Thierry07749ef2015-03-16 16:00:54 +0000260 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700261 pte |= GEN6_PTE_ADDR_ENCODE(addr);
262
Akash Goel24f3a8c2014-06-17 10:59:42 +0530263 if (!(flags & PTE_READ_ONLY))
264 pte |= BYT_PTE_WRITEABLE;
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700265
266 if (level != I915_CACHE_NONE)
267 pte |= BYT_PTE_SNOOPED_BY_CPU_CACHES;
268
269 return pte;
270}
271
Michel Thierry07749ef2015-03-16 16:00:54 +0000272static gen6_pte_t hsw_pte_encode(dma_addr_t addr,
273 enum i915_cache_level level,
274 bool valid, u32 unused)
Kenneth Graunke91197082013-04-22 00:53:51 -0700275{
Michel Thierry07749ef2015-03-16 16:00:54 +0000276 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky0d8ff152013-07-04 11:02:03 -0700277 pte |= HSW_PTE_ADDR_ENCODE(addr);
Kenneth Graunke91197082013-04-22 00:53:51 -0700278
279 if (level != I915_CACHE_NONE)
Ben Widawsky87a6b682013-08-04 23:47:29 -0700280 pte |= HSW_WB_LLC_AGE3;
Kenneth Graunke91197082013-04-22 00:53:51 -0700281
282 return pte;
283}
284
Michel Thierry07749ef2015-03-16 16:00:54 +0000285static gen6_pte_t iris_pte_encode(dma_addr_t addr,
286 enum i915_cache_level level,
287 bool valid, u32 unused)
Ben Widawsky4d15c142013-07-04 11:02:06 -0700288{
Michel Thierry07749ef2015-03-16 16:00:54 +0000289 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky4d15c142013-07-04 11:02:06 -0700290 pte |= HSW_PTE_ADDR_ENCODE(addr);
291
Chris Wilson651d7942013-08-08 14:41:10 +0100292 switch (level) {
293 case I915_CACHE_NONE:
294 break;
295 case I915_CACHE_WT:
Chris Wilsonc51e9702013-11-22 10:37:53 +0000296 pte |= HSW_WT_ELLC_LLC_AGE3;
Chris Wilson651d7942013-08-08 14:41:10 +0100297 break;
298 default:
Chris Wilsonc51e9702013-11-22 10:37:53 +0000299 pte |= HSW_WB_ELLC_LLC_AGE3;
Chris Wilson651d7942013-08-08 14:41:10 +0100300 break;
301 }
Ben Widawsky4d15c142013-07-04 11:02:06 -0700302
303 return pte;
304}
305
Mika Kuoppalac114f762015-06-25 18:35:13 +0300306static int __setup_page_dma(struct drm_device *dev,
307 struct i915_page_dma *p, gfp_t flags)
Ben Widawsky678d96f2015-03-16 16:00:56 +0000308{
309 struct device *device = &dev->pdev->dev;
310
Mika Kuoppalac114f762015-06-25 18:35:13 +0300311 p->page = alloc_page(flags);
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300312 if (!p->page)
Michel Thierry1266cdb2015-03-24 17:06:33 +0000313 return -ENOMEM;
314
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300315 p->daddr = dma_map_page(device,
316 p->page, 0, 4096, PCI_DMA_BIDIRECTIONAL);
317
318 if (dma_mapping_error(device, p->daddr)) {
319 __free_page(p->page);
320 return -EINVAL;
321 }
322
Michel Thierry1266cdb2015-03-24 17:06:33 +0000323 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000324}
325
Mika Kuoppalac114f762015-06-25 18:35:13 +0300326static int setup_page_dma(struct drm_device *dev, struct i915_page_dma *p)
327{
328 return __setup_page_dma(dev, p, GFP_KERNEL);
329}
330
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300331static void cleanup_page_dma(struct drm_device *dev, struct i915_page_dma *p)
332{
333 if (WARN_ON(!p->page))
334 return;
335
336 dma_unmap_page(&dev->pdev->dev, p->daddr, 4096, PCI_DMA_BIDIRECTIONAL);
337 __free_page(p->page);
338 memset(p, 0, sizeof(*p));
339}
340
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300341static void *kmap_page_dma(struct i915_page_dma *p)
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300342{
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300343 return kmap_atomic(p->page);
344}
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300345
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300346/* We use the flushing unmap only with ppgtt structures:
347 * page directories, page tables and scratch pages.
348 */
349static void kunmap_page_dma(struct drm_device *dev, void *vaddr)
350{
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300351 /* There are only few exceptions for gen >=6. chv and bxt.
352 * And we are not sure about the latter so play safe for now.
353 */
354 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
355 drm_clflush_virt_range(vaddr, PAGE_SIZE);
356
357 kunmap_atomic(vaddr);
358}
359
Mika Kuoppala567047b2015-06-25 18:35:12 +0300360#define kmap_px(px) kmap_page_dma(px_base(px))
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300361#define kunmap_px(ppgtt, vaddr) kunmap_page_dma((ppgtt)->base.dev, (vaddr))
362
Mika Kuoppala567047b2015-06-25 18:35:12 +0300363#define setup_px(dev, px) setup_page_dma((dev), px_base(px))
364#define cleanup_px(dev, px) cleanup_page_dma((dev), px_base(px))
365#define fill_px(dev, px, v) fill_page_dma((dev), px_base(px), (v))
366#define fill32_px(dev, px, v) fill_page_dma_32((dev), px_base(px), (v))
367
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300368static void fill_page_dma(struct drm_device *dev, struct i915_page_dma *p,
369 const uint64_t val)
370{
371 int i;
372 uint64_t * const vaddr = kmap_page_dma(p);
373
374 for (i = 0; i < 512; i++)
375 vaddr[i] = val;
376
377 kunmap_page_dma(dev, vaddr);
378}
379
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300380static void fill_page_dma_32(struct drm_device *dev, struct i915_page_dma *p,
381 const uint32_t val32)
382{
383 uint64_t v = val32;
384
385 v = v << 32 | val32;
386
387 fill_page_dma(dev, p, v);
388}
389
Mika Kuoppala4ad2af12015-06-30 18:16:39 +0300390static struct i915_page_scratch *alloc_scratch_page(struct drm_device *dev)
391{
392 struct i915_page_scratch *sp;
393 int ret;
394
395 sp = kzalloc(sizeof(*sp), GFP_KERNEL);
396 if (sp == NULL)
397 return ERR_PTR(-ENOMEM);
398
399 ret = __setup_page_dma(dev, px_base(sp), GFP_DMA32 | __GFP_ZERO);
400 if (ret) {
401 kfree(sp);
402 return ERR_PTR(ret);
403 }
404
405 set_pages_uc(px_page(sp), 1);
406
407 return sp;
408}
409
410static void free_scratch_page(struct drm_device *dev,
411 struct i915_page_scratch *sp)
412{
413 set_pages_wb(px_page(sp), 1);
414
415 cleanup_px(dev, sp);
416 kfree(sp);
417}
418
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +0300419static struct i915_page_table *alloc_pt(struct drm_device *dev)
Ben Widawsky06fda602015-02-24 16:22:36 +0000420{
Michel Thierryec565b32015-04-08 12:13:23 +0100421 struct i915_page_table *pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000422 const size_t count = INTEL_INFO(dev)->gen >= 8 ?
423 GEN8_PTES : GEN6_PTES;
424 int ret = -ENOMEM;
Ben Widawsky06fda602015-02-24 16:22:36 +0000425
426 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
427 if (!pt)
428 return ERR_PTR(-ENOMEM);
429
Ben Widawsky678d96f2015-03-16 16:00:56 +0000430 pt->used_ptes = kcalloc(BITS_TO_LONGS(count), sizeof(*pt->used_ptes),
431 GFP_KERNEL);
432
433 if (!pt->used_ptes)
434 goto fail_bitmap;
435
Mika Kuoppala567047b2015-06-25 18:35:12 +0300436 ret = setup_px(dev, pt);
Ben Widawsky678d96f2015-03-16 16:00:56 +0000437 if (ret)
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300438 goto fail_page_m;
Ben Widawsky06fda602015-02-24 16:22:36 +0000439
440 return pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000441
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300442fail_page_m:
Ben Widawsky678d96f2015-03-16 16:00:56 +0000443 kfree(pt->used_ptes);
444fail_bitmap:
445 kfree(pt);
446
447 return ERR_PTR(ret);
Ben Widawsky06fda602015-02-24 16:22:36 +0000448}
449
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300450static void free_pt(struct drm_device *dev, struct i915_page_table *pt)
Ben Widawsky06fda602015-02-24 16:22:36 +0000451{
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300452 cleanup_px(dev, pt);
453 kfree(pt->used_ptes);
454 kfree(pt);
455}
456
457static void gen8_initialize_pt(struct i915_address_space *vm,
458 struct i915_page_table *pt)
459{
460 gen8_pte_t scratch_pte;
461
462 scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
463 I915_CACHE_LLC, true);
464
465 fill_px(vm->dev, pt, scratch_pte);
466}
467
468static void gen6_initialize_pt(struct i915_address_space *vm,
469 struct i915_page_table *pt)
470{
471 gen6_pte_t scratch_pte;
472
473 WARN_ON(px_dma(vm->scratch_page) == 0);
474
475 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
476 I915_CACHE_LLC, true, 0);
477
478 fill32_px(vm->dev, pt, scratch_pte);
Ben Widawsky06fda602015-02-24 16:22:36 +0000479}
480
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +0300481static struct i915_page_directory *alloc_pd(struct drm_device *dev)
Ben Widawsky06fda602015-02-24 16:22:36 +0000482{
Michel Thierryec565b32015-04-08 12:13:23 +0100483 struct i915_page_directory *pd;
Michel Thierry33c88192015-04-08 12:13:33 +0100484 int ret = -ENOMEM;
Ben Widawsky06fda602015-02-24 16:22:36 +0000485
486 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
487 if (!pd)
488 return ERR_PTR(-ENOMEM);
489
Michel Thierry33c88192015-04-08 12:13:33 +0100490 pd->used_pdes = kcalloc(BITS_TO_LONGS(I915_PDES),
491 sizeof(*pd->used_pdes), GFP_KERNEL);
492 if (!pd->used_pdes)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300493 goto fail_bitmap;
Michel Thierry33c88192015-04-08 12:13:33 +0100494
Mika Kuoppala567047b2015-06-25 18:35:12 +0300495 ret = setup_px(dev, pd);
Michel Thierry33c88192015-04-08 12:13:33 +0100496 if (ret)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300497 goto fail_page_m;
Michel Thierrye5815a22015-04-08 12:13:32 +0100498
Ben Widawsky06fda602015-02-24 16:22:36 +0000499 return pd;
Michel Thierry33c88192015-04-08 12:13:33 +0100500
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300501fail_page_m:
Michel Thierry33c88192015-04-08 12:13:33 +0100502 kfree(pd->used_pdes);
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300503fail_bitmap:
Michel Thierry33c88192015-04-08 12:13:33 +0100504 kfree(pd);
505
506 return ERR_PTR(ret);
Ben Widawsky06fda602015-02-24 16:22:36 +0000507}
508
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300509static void free_pd(struct drm_device *dev, struct i915_page_directory *pd)
510{
511 if (px_page(pd)) {
512 cleanup_px(dev, pd);
513 kfree(pd->used_pdes);
514 kfree(pd);
515 }
516}
517
518static void gen8_initialize_pd(struct i915_address_space *vm,
519 struct i915_page_directory *pd)
520{
521 gen8_pde_t scratch_pde;
522
523 scratch_pde = gen8_pde_encode(px_dma(vm->scratch_pt), I915_CACHE_LLC);
524
525 fill_px(vm->dev, pd, scratch_pde);
526}
527
Michel Thierry6ac18502015-07-29 17:23:46 +0100528static int __pdp_init(struct drm_device *dev,
529 struct i915_page_directory_pointer *pdp)
530{
531 size_t pdpes = I915_PDPES_PER_PDP(dev);
532
533 pdp->used_pdpes = kcalloc(BITS_TO_LONGS(pdpes),
534 sizeof(unsigned long),
535 GFP_KERNEL);
536 if (!pdp->used_pdpes)
537 return -ENOMEM;
538
539 pdp->page_directory = kcalloc(pdpes, sizeof(*pdp->page_directory),
540 GFP_KERNEL);
541 if (!pdp->page_directory) {
542 kfree(pdp->used_pdpes);
543 /* the PDP might be the statically allocated top level. Keep it
544 * as clean as possible */
545 pdp->used_pdpes = NULL;
546 return -ENOMEM;
547 }
548
549 return 0;
550}
551
552static void __pdp_fini(struct i915_page_directory_pointer *pdp)
553{
554 kfree(pdp->used_pdpes);
555 kfree(pdp->page_directory);
556 pdp->page_directory = NULL;
557}
558
Michel Thierry762d9932015-07-30 11:05:29 +0100559static struct
560i915_page_directory_pointer *alloc_pdp(struct drm_device *dev)
561{
562 struct i915_page_directory_pointer *pdp;
563 int ret = -ENOMEM;
564
565 WARN_ON(!USES_FULL_48BIT_PPGTT(dev));
566
567 pdp = kzalloc(sizeof(*pdp), GFP_KERNEL);
568 if (!pdp)
569 return ERR_PTR(-ENOMEM);
570
571 ret = __pdp_init(dev, pdp);
572 if (ret)
573 goto fail_bitmap;
574
575 ret = setup_px(dev, pdp);
576 if (ret)
577 goto fail_page_m;
578
579 return pdp;
580
581fail_page_m:
582 __pdp_fini(pdp);
583fail_bitmap:
584 kfree(pdp);
585
586 return ERR_PTR(ret);
587}
588
Michel Thierry6ac18502015-07-29 17:23:46 +0100589static void free_pdp(struct drm_device *dev,
590 struct i915_page_directory_pointer *pdp)
591{
592 __pdp_fini(pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100593 if (USES_FULL_48BIT_PPGTT(dev)) {
594 cleanup_px(dev, pdp);
595 kfree(pdp);
596 }
597}
598
Michel Thierry69ab76f2015-07-29 17:23:55 +0100599static void gen8_initialize_pdp(struct i915_address_space *vm,
600 struct i915_page_directory_pointer *pdp)
601{
602 gen8_ppgtt_pdpe_t scratch_pdpe;
603
604 scratch_pdpe = gen8_pdpe_encode(px_dma(vm->scratch_pd), I915_CACHE_LLC);
605
606 fill_px(vm->dev, pdp, scratch_pdpe);
607}
608
609static void gen8_initialize_pml4(struct i915_address_space *vm,
610 struct i915_pml4 *pml4)
611{
612 gen8_ppgtt_pml4e_t scratch_pml4e;
613
614 scratch_pml4e = gen8_pml4e_encode(px_dma(vm->scratch_pdp),
615 I915_CACHE_LLC);
616
617 fill_px(vm->dev, pml4, scratch_pml4e);
618}
619
Michel Thierry762d9932015-07-30 11:05:29 +0100620static void
621gen8_setup_page_directory(struct i915_hw_ppgtt *ppgtt,
622 struct i915_page_directory_pointer *pdp,
623 struct i915_page_directory *pd,
624 int index)
625{
626 gen8_ppgtt_pdpe_t *page_directorypo;
627
628 if (!USES_FULL_48BIT_PPGTT(ppgtt->base.dev))
629 return;
630
631 page_directorypo = kmap_px(pdp);
632 page_directorypo[index] = gen8_pdpe_encode(px_dma(pd), I915_CACHE_LLC);
633 kunmap_px(ppgtt, page_directorypo);
634}
635
636static void
637gen8_setup_page_directory_pointer(struct i915_hw_ppgtt *ppgtt,
638 struct i915_pml4 *pml4,
639 struct i915_page_directory_pointer *pdp,
640 int index)
641{
642 gen8_ppgtt_pml4e_t *pagemap = kmap_px(pml4);
643
644 WARN_ON(!USES_FULL_48BIT_PPGTT(ppgtt->base.dev));
645 pagemap[index] = gen8_pml4e_encode(px_dma(pdp), I915_CACHE_LLC);
646 kunmap_px(ppgtt, pagemap);
Michel Thierry6ac18502015-07-29 17:23:46 +0100647}
648
Ben Widawsky94e409c2013-11-04 22:29:36 -0800649/* Broadwell Page Directory Pointer Descriptors */
John Harrisone85b26d2015-05-29 17:43:56 +0100650static int gen8_write_pdp(struct drm_i915_gem_request *req,
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100651 unsigned entry,
652 dma_addr_t addr)
Ben Widawsky94e409c2013-11-04 22:29:36 -0800653{
John Harrisone85b26d2015-05-29 17:43:56 +0100654 struct intel_engine_cs *ring = req->ring;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800655 int ret;
656
657 BUG_ON(entry >= 4);
658
John Harrison5fb9de12015-05-29 17:44:07 +0100659 ret = intel_ring_begin(req, 6);
Ben Widawsky94e409c2013-11-04 22:29:36 -0800660 if (ret)
661 return ret;
662
663 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
664 intel_ring_emit(ring, GEN8_RING_PDP_UDW(ring, entry));
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100665 intel_ring_emit(ring, upper_32_bits(addr));
Ben Widawsky94e409c2013-11-04 22:29:36 -0800666 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
667 intel_ring_emit(ring, GEN8_RING_PDP_LDW(ring, entry));
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100668 intel_ring_emit(ring, lower_32_bits(addr));
Ben Widawsky94e409c2013-11-04 22:29:36 -0800669 intel_ring_advance(ring);
670
671 return 0;
672}
673
Michel Thierry2dba3232015-07-30 11:06:23 +0100674static int gen8_legacy_mm_switch(struct i915_hw_ppgtt *ppgtt,
675 struct drm_i915_gem_request *req)
Ben Widawsky94e409c2013-11-04 22:29:36 -0800676{
Ben Widawskyeeb94882013-12-06 14:11:10 -0800677 int i, ret;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800678
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100679 for (i = GEN8_LEGACY_PDPES - 1; i >= 0; i--) {
Mika Kuoppalad852c7b2015-06-25 18:35:06 +0300680 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
681
John Harrisone85b26d2015-05-29 17:43:56 +0100682 ret = gen8_write_pdp(req, i, pd_daddr);
Ben Widawskyeeb94882013-12-06 14:11:10 -0800683 if (ret)
684 return ret;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800685 }
Ben Widawskyd595bd42013-11-25 09:54:32 -0800686
Ben Widawskyeeb94882013-12-06 14:11:10 -0800687 return 0;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800688}
689
Michel Thierry2dba3232015-07-30 11:06:23 +0100690static int gen8_48b_mm_switch(struct i915_hw_ppgtt *ppgtt,
691 struct drm_i915_gem_request *req)
692{
693 return gen8_write_pdp(req, 0, px_dma(&ppgtt->pml4));
694}
695
Michel Thierryf9b5b782015-07-30 11:02:49 +0100696static void gen8_ppgtt_clear_pte_range(struct i915_address_space *vm,
697 struct i915_page_directory_pointer *pdp,
698 uint64_t start,
699 uint64_t length,
700 gen8_pte_t scratch_pte)
Ben Widawsky459108b2013-11-02 21:07:23 -0700701{
702 struct i915_hw_ppgtt *ppgtt =
703 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierryf9b5b782015-07-30 11:02:49 +0100704 gen8_pte_t *pt_vaddr;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100705 unsigned pdpe = gen8_pdpe_index(start);
706 unsigned pde = gen8_pde_index(start);
707 unsigned pte = gen8_pte_index(start);
Ben Widawsky782f1492014-02-20 11:50:33 -0800708 unsigned num_entries = length >> PAGE_SHIFT;
Ben Widawsky459108b2013-11-02 21:07:23 -0700709 unsigned last_pte, i;
710
Michel Thierryf9b5b782015-07-30 11:02:49 +0100711 if (WARN_ON(!pdp))
712 return;
Ben Widawsky459108b2013-11-02 21:07:23 -0700713
714 while (num_entries) {
Michel Thierryec565b32015-04-08 12:13:23 +0100715 struct i915_page_directory *pd;
716 struct i915_page_table *pt;
Ben Widawsky06fda602015-02-24 16:22:36 +0000717
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100718 if (WARN_ON(!pdp->page_directory[pdpe]))
Michel Thierry00245262015-06-25 12:59:38 +0100719 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000720
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100721 pd = pdp->page_directory[pdpe];
Ben Widawsky06fda602015-02-24 16:22:36 +0000722
723 if (WARN_ON(!pd->page_table[pde]))
Michel Thierry00245262015-06-25 12:59:38 +0100724 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000725
726 pt = pd->page_table[pde];
727
Mika Kuoppala567047b2015-06-25 18:35:12 +0300728 if (WARN_ON(!px_page(pt)))
Michel Thierry00245262015-06-25 12:59:38 +0100729 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000730
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800731 last_pte = pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +0000732 if (last_pte > GEN8_PTES)
733 last_pte = GEN8_PTES;
Ben Widawsky459108b2013-11-02 21:07:23 -0700734
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300735 pt_vaddr = kmap_px(pt);
Ben Widawsky459108b2013-11-02 21:07:23 -0700736
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800737 for (i = pte; i < last_pte; i++) {
Ben Widawsky459108b2013-11-02 21:07:23 -0700738 pt_vaddr[i] = scratch_pte;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800739 num_entries--;
740 }
Ben Widawsky459108b2013-11-02 21:07:23 -0700741
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300742 kunmap_px(ppgtt, pt);
Ben Widawsky459108b2013-11-02 21:07:23 -0700743
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800744 pte = 0;
Michel Thierry07749ef2015-03-16 16:00:54 +0000745 if (++pde == I915_PDES) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100746 if (++pdpe == I915_PDPES_PER_PDP(vm->dev))
747 break;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800748 pde = 0;
749 }
Ben Widawsky459108b2013-11-02 21:07:23 -0700750 }
751}
752
Michel Thierryf9b5b782015-07-30 11:02:49 +0100753static void gen8_ppgtt_clear_range(struct i915_address_space *vm,
754 uint64_t start,
755 uint64_t length,
756 bool use_scratch)
Ben Widawsky9df15b42013-11-02 21:07:24 -0700757{
758 struct i915_hw_ppgtt *ppgtt =
759 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierryf9b5b782015-07-30 11:02:49 +0100760 gen8_pte_t scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
761 I915_CACHE_LLC, use_scratch);
762
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100763 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
764 gen8_ppgtt_clear_pte_range(vm, &ppgtt->pdp, start, length,
765 scratch_pte);
766 } else {
767 uint64_t templ4, pml4e;
768 struct i915_page_directory_pointer *pdp;
769
770 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, templ4, pml4e) {
771 gen8_ppgtt_clear_pte_range(vm, pdp, start, length,
772 scratch_pte);
773 }
774 }
Michel Thierryf9b5b782015-07-30 11:02:49 +0100775}
776
777static void
778gen8_ppgtt_insert_pte_entries(struct i915_address_space *vm,
779 struct i915_page_directory_pointer *pdp,
Michel Thierry3387d432015-08-03 09:52:47 +0100780 struct sg_page_iter *sg_iter,
Michel Thierryf9b5b782015-07-30 11:02:49 +0100781 uint64_t start,
782 enum i915_cache_level cache_level)
783{
784 struct i915_hw_ppgtt *ppgtt =
785 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +0000786 gen8_pte_t *pt_vaddr;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100787 unsigned pdpe = gen8_pdpe_index(start);
788 unsigned pde = gen8_pde_index(start);
789 unsigned pte = gen8_pte_index(start);
Ben Widawsky9df15b42013-11-02 21:07:24 -0700790
Chris Wilson6f1cc992013-12-31 15:50:31 +0000791 pt_vaddr = NULL;
Ben Widawsky9df15b42013-11-02 21:07:24 -0700792
Michel Thierry3387d432015-08-03 09:52:47 +0100793 while (__sg_page_iter_next(sg_iter)) {
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000794 if (pt_vaddr == NULL) {
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100795 struct i915_page_directory *pd = pdp->page_directory[pdpe];
Michel Thierryec565b32015-04-08 12:13:23 +0100796 struct i915_page_table *pt = pd->page_table[pde];
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300797 pt_vaddr = kmap_px(pt);
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000798 }
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800799
800 pt_vaddr[pte] =
Michel Thierry3387d432015-08-03 09:52:47 +0100801 gen8_pte_encode(sg_page_iter_dma_address(sg_iter),
Chris Wilson6f1cc992013-12-31 15:50:31 +0000802 cache_level, true);
Michel Thierry07749ef2015-03-16 16:00:54 +0000803 if (++pte == GEN8_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300804 kunmap_px(ppgtt, pt_vaddr);
Chris Wilson6f1cc992013-12-31 15:50:31 +0000805 pt_vaddr = NULL;
Michel Thierry07749ef2015-03-16 16:00:54 +0000806 if (++pde == I915_PDES) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100807 if (++pdpe == I915_PDPES_PER_PDP(vm->dev))
808 break;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800809 pde = 0;
810 }
811 pte = 0;
Ben Widawsky9df15b42013-11-02 21:07:24 -0700812 }
813 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300814
815 if (pt_vaddr)
816 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky9df15b42013-11-02 21:07:24 -0700817}
818
Michel Thierryf9b5b782015-07-30 11:02:49 +0100819static void gen8_ppgtt_insert_entries(struct i915_address_space *vm,
820 struct sg_table *pages,
821 uint64_t start,
822 enum i915_cache_level cache_level,
823 u32 unused)
824{
825 struct i915_hw_ppgtt *ppgtt =
826 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry3387d432015-08-03 09:52:47 +0100827 struct sg_page_iter sg_iter;
Michel Thierryf9b5b782015-07-30 11:02:49 +0100828
Michel Thierry3387d432015-08-03 09:52:47 +0100829 __sg_page_iter_start(&sg_iter, pages->sgl, sg_nents(pages->sgl), 0);
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100830
831 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
832 gen8_ppgtt_insert_pte_entries(vm, &ppgtt->pdp, &sg_iter, start,
833 cache_level);
834 } else {
835 struct i915_page_directory_pointer *pdp;
836 uint64_t templ4, pml4e;
837 uint64_t length = (uint64_t)pages->orig_nents << PAGE_SHIFT;
838
839 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, templ4, pml4e) {
840 gen8_ppgtt_insert_pte_entries(vm, pdp, &sg_iter,
841 start, cache_level);
842 }
843 }
Michel Thierryf9b5b782015-07-30 11:02:49 +0100844}
845
Michel Thierryf37c0502015-06-10 17:46:39 +0100846static void gen8_free_page_tables(struct drm_device *dev,
847 struct i915_page_directory *pd)
Ben Widawskyb45a6712014-02-12 14:28:44 -0800848{
849 int i;
850
Mika Kuoppala567047b2015-06-25 18:35:12 +0300851 if (!px_page(pd))
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800852 return;
Ben Widawskyb45a6712014-02-12 14:28:44 -0800853
Michel Thierry33c88192015-04-08 12:13:33 +0100854 for_each_set_bit(i, pd->used_pdes, I915_PDES) {
Ben Widawsky06fda602015-02-24 16:22:36 +0000855 if (WARN_ON(!pd->page_table[i]))
856 continue;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800857
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300858 free_pt(dev, pd->page_table[i]);
Ben Widawsky06fda602015-02-24 16:22:36 +0000859 pd->page_table[i] = NULL;
860 }
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000861}
862
Mika Kuoppala8776f022015-06-30 18:16:40 +0300863static int gen8_init_scratch(struct i915_address_space *vm)
864{
865 struct drm_device *dev = vm->dev;
866
867 vm->scratch_page = alloc_scratch_page(dev);
868 if (IS_ERR(vm->scratch_page))
869 return PTR_ERR(vm->scratch_page);
870
871 vm->scratch_pt = alloc_pt(dev);
872 if (IS_ERR(vm->scratch_pt)) {
873 free_scratch_page(dev, vm->scratch_page);
874 return PTR_ERR(vm->scratch_pt);
875 }
876
877 vm->scratch_pd = alloc_pd(dev);
878 if (IS_ERR(vm->scratch_pd)) {
879 free_pt(dev, vm->scratch_pt);
880 free_scratch_page(dev, vm->scratch_page);
881 return PTR_ERR(vm->scratch_pd);
882 }
883
Michel Thierry69ab76f2015-07-29 17:23:55 +0100884 if (USES_FULL_48BIT_PPGTT(dev)) {
885 vm->scratch_pdp = alloc_pdp(dev);
886 if (IS_ERR(vm->scratch_pdp)) {
887 free_pd(dev, vm->scratch_pd);
888 free_pt(dev, vm->scratch_pt);
889 free_scratch_page(dev, vm->scratch_page);
890 return PTR_ERR(vm->scratch_pdp);
891 }
892 }
893
Mika Kuoppala8776f022015-06-30 18:16:40 +0300894 gen8_initialize_pt(vm, vm->scratch_pt);
895 gen8_initialize_pd(vm, vm->scratch_pd);
Michel Thierry69ab76f2015-07-29 17:23:55 +0100896 if (USES_FULL_48BIT_PPGTT(dev))
897 gen8_initialize_pdp(vm, vm->scratch_pdp);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300898
899 return 0;
900}
901
902static void gen8_free_scratch(struct i915_address_space *vm)
903{
904 struct drm_device *dev = vm->dev;
905
Michel Thierry69ab76f2015-07-29 17:23:55 +0100906 if (USES_FULL_48BIT_PPGTT(dev))
907 free_pdp(dev, vm->scratch_pdp);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300908 free_pd(dev, vm->scratch_pd);
909 free_pt(dev, vm->scratch_pt);
910 free_scratch_page(dev, vm->scratch_page);
911}
912
Michel Thierry762d9932015-07-30 11:05:29 +0100913static void gen8_ppgtt_cleanup_3lvl(struct drm_device *dev,
914 struct i915_page_directory_pointer *pdp)
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800915{
916 int i;
917
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100918 for_each_set_bit(i, pdp->used_pdpes, I915_PDPES_PER_PDP(dev)) {
919 if (WARN_ON(!pdp->page_directory[i]))
Ben Widawsky06fda602015-02-24 16:22:36 +0000920 continue;
921
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100922 gen8_free_page_tables(dev, pdp->page_directory[i]);
923 free_pd(dev, pdp->page_directory[i]);
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800924 }
Michel Thierry69876be2015-04-08 12:13:27 +0100925
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100926 free_pdp(dev, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100927}
928
929static void gen8_ppgtt_cleanup_4lvl(struct i915_hw_ppgtt *ppgtt)
930{
931 int i;
932
933 for_each_set_bit(i, ppgtt->pml4.used_pml4es, GEN8_PML4ES_PER_PML4) {
934 if (WARN_ON(!ppgtt->pml4.pdps[i]))
935 continue;
936
937 gen8_ppgtt_cleanup_3lvl(ppgtt->base.dev, ppgtt->pml4.pdps[i]);
938 }
939
940 cleanup_px(ppgtt->base.dev, &ppgtt->pml4);
941}
942
943static void gen8_ppgtt_cleanup(struct i915_address_space *vm)
944{
945 struct i915_hw_ppgtt *ppgtt =
946 container_of(vm, struct i915_hw_ppgtt, base);
947
948 if (!USES_FULL_48BIT_PPGTT(ppgtt->base.dev))
949 gen8_ppgtt_cleanup_3lvl(ppgtt->base.dev, &ppgtt->pdp);
950 else
951 gen8_ppgtt_cleanup_4lvl(ppgtt);
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100952
Mika Kuoppala8776f022015-06-30 18:16:40 +0300953 gen8_free_scratch(vm);
Ben Widawskyb45a6712014-02-12 14:28:44 -0800954}
955
Michel Thierryd7b26332015-04-08 12:13:34 +0100956/**
957 * gen8_ppgtt_alloc_pagetabs() - Allocate page tables for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100958 * @vm: Master vm structure.
959 * @pd: Page directory for this address range.
Michel Thierryd7b26332015-04-08 12:13:34 +0100960 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100961 * @length: Size of the allocations.
Michel Thierryd7b26332015-04-08 12:13:34 +0100962 * @new_pts: Bitmap set by function with new allocations. Likely used by the
963 * caller to free on error.
964 *
965 * Allocate the required number of page tables. Extremely similar to
966 * gen8_ppgtt_alloc_page_directories(). The main difference is here we are limited by
967 * the page directory boundary (instead of the page directory pointer). That
968 * boundary is 1GB virtual. Therefore, unlike gen8_ppgtt_alloc_page_directories(), it is
969 * possible, and likely that the caller will need to use multiple calls of this
970 * function to achieve the appropriate allocation.
971 *
972 * Return: 0 if success; negative error code otherwise.
973 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100974static int gen8_ppgtt_alloc_pagetabs(struct i915_address_space *vm,
Michel Thierrye5815a22015-04-08 12:13:32 +0100975 struct i915_page_directory *pd,
Michel Thierry5441f0c2015-04-08 12:13:28 +0100976 uint64_t start,
Michel Thierryd7b26332015-04-08 12:13:34 +0100977 uint64_t length,
978 unsigned long *new_pts)
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000979{
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100980 struct drm_device *dev = vm->dev;
Michel Thierryd7b26332015-04-08 12:13:34 +0100981 struct i915_page_table *pt;
Michel Thierry5441f0c2015-04-08 12:13:28 +0100982 uint64_t temp;
983 uint32_t pde;
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000984
Michel Thierryd7b26332015-04-08 12:13:34 +0100985 gen8_for_each_pde(pt, pd, start, length, temp, pde) {
986 /* Don't reallocate page tables */
Michel Thierry6ac18502015-07-29 17:23:46 +0100987 if (test_bit(pde, pd->used_pdes)) {
Michel Thierryd7b26332015-04-08 12:13:34 +0100988 /* Scratch is never allocated this way */
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100989 WARN_ON(pt == vm->scratch_pt);
Michel Thierryd7b26332015-04-08 12:13:34 +0100990 continue;
991 }
992
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +0300993 pt = alloc_pt(dev);
Michel Thierryd7b26332015-04-08 12:13:34 +0100994 if (IS_ERR(pt))
Ben Widawsky06fda602015-02-24 16:22:36 +0000995 goto unwind_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +0100996
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100997 gen8_initialize_pt(vm, pt);
Michel Thierryd7b26332015-04-08 12:13:34 +0100998 pd->page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +0300999 __set_bit(pde, new_pts);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001000 trace_i915_page_table_entry_alloc(vm, pde, start, GEN8_PDE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001001 }
1002
1003 return 0;
1004
1005unwind_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001006 for_each_set_bit(pde, new_pts, I915_PDES)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001007 free_pt(dev, pd->page_table[pde]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001008
1009 return -ENOMEM;
1010}
1011
Michel Thierryd7b26332015-04-08 12:13:34 +01001012/**
1013 * gen8_ppgtt_alloc_page_directories() - Allocate page directories for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001014 * @vm: Master vm structure.
Michel Thierryd7b26332015-04-08 12:13:34 +01001015 * @pdp: Page directory pointer for this address range.
1016 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001017 * @length: Size of the allocations.
1018 * @new_pds: Bitmap set by function with new allocations. Likely used by the
Michel Thierryd7b26332015-04-08 12:13:34 +01001019 * caller to free on error.
1020 *
1021 * Allocate the required number of page directories starting at the pde index of
1022 * @start, and ending at the pde index @start + @length. This function will skip
1023 * over already allocated page directories within the range, and only allocate
1024 * new ones, setting the appropriate pointer within the pdp as well as the
1025 * correct position in the bitmap @new_pds.
1026 *
1027 * The function will only allocate the pages within the range for a give page
1028 * directory pointer. In other words, if @start + @length straddles a virtually
1029 * addressed PDP boundary (512GB for 4k pages), there will be more allocations
1030 * required by the caller, This is not currently possible, and the BUG in the
1031 * code will prevent it.
1032 *
1033 * Return: 0 if success; negative error code otherwise.
1034 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001035static int
1036gen8_ppgtt_alloc_page_directories(struct i915_address_space *vm,
1037 struct i915_page_directory_pointer *pdp,
1038 uint64_t start,
1039 uint64_t length,
1040 unsigned long *new_pds)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001041{
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001042 struct drm_device *dev = vm->dev;
Michel Thierryd7b26332015-04-08 12:13:34 +01001043 struct i915_page_directory *pd;
Michel Thierry69876be2015-04-08 12:13:27 +01001044 uint64_t temp;
1045 uint32_t pdpe;
Michel Thierry6ac18502015-07-29 17:23:46 +01001046 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001047
Michel Thierry6ac18502015-07-29 17:23:46 +01001048 WARN_ON(!bitmap_empty(new_pds, pdpes));
Michel Thierryd7b26332015-04-08 12:13:34 +01001049
Michel Thierryd7b26332015-04-08 12:13:34 +01001050 gen8_for_each_pdpe(pd, pdp, start, length, temp, pdpe) {
Michel Thierry6ac18502015-07-29 17:23:46 +01001051 if (test_bit(pdpe, pdp->used_pdpes))
Michel Thierryd7b26332015-04-08 12:13:34 +01001052 continue;
Michel Thierry33c88192015-04-08 12:13:33 +01001053
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001054 pd = alloc_pd(dev);
Michel Thierryd7b26332015-04-08 12:13:34 +01001055 if (IS_ERR(pd))
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001056 goto unwind_out;
Michel Thierry69876be2015-04-08 12:13:27 +01001057
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001058 gen8_initialize_pd(vm, pd);
Michel Thierryd7b26332015-04-08 12:13:34 +01001059 pdp->page_directory[pdpe] = pd;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001060 __set_bit(pdpe, new_pds);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001061 trace_i915_page_directory_entry_alloc(vm, pdpe, start, GEN8_PDPE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001062 }
1063
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001064 return 0;
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001065
1066unwind_out:
Michel Thierry6ac18502015-07-29 17:23:46 +01001067 for_each_set_bit(pdpe, new_pds, pdpes)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001068 free_pd(dev, pdp->page_directory[pdpe]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001069
1070 return -ENOMEM;
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001071}
1072
Michel Thierry762d9932015-07-30 11:05:29 +01001073/**
1074 * gen8_ppgtt_alloc_page_dirpointers() - Allocate pdps for VA range.
1075 * @vm: Master vm structure.
1076 * @pml4: Page map level 4 for this address range.
1077 * @start: Starting virtual address to begin allocations.
1078 * @length: Size of the allocations.
1079 * @new_pdps: Bitmap set by function with new allocations. Likely used by the
1080 * caller to free on error.
1081 *
1082 * Allocate the required number of page directory pointers. Extremely similar to
1083 * gen8_ppgtt_alloc_page_directories() and gen8_ppgtt_alloc_pagetabs().
1084 * The main difference is here we are limited by the pml4 boundary (instead of
1085 * the page directory pointer).
1086 *
1087 * Return: 0 if success; negative error code otherwise.
1088 */
1089static int
1090gen8_ppgtt_alloc_page_dirpointers(struct i915_address_space *vm,
1091 struct i915_pml4 *pml4,
1092 uint64_t start,
1093 uint64_t length,
1094 unsigned long *new_pdps)
1095{
1096 struct drm_device *dev = vm->dev;
1097 struct i915_page_directory_pointer *pdp;
1098 uint64_t temp;
1099 uint32_t pml4e;
1100
1101 WARN_ON(!bitmap_empty(new_pdps, GEN8_PML4ES_PER_PML4));
1102
1103 gen8_for_each_pml4e(pdp, pml4, start, length, temp, pml4e) {
1104 if (!test_bit(pml4e, pml4->used_pml4es)) {
1105 pdp = alloc_pdp(dev);
1106 if (IS_ERR(pdp))
1107 goto unwind_out;
1108
Michel Thierry69ab76f2015-07-29 17:23:55 +01001109 gen8_initialize_pdp(vm, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +01001110 pml4->pdps[pml4e] = pdp;
1111 __set_bit(pml4e, new_pdps);
1112 trace_i915_page_directory_pointer_entry_alloc(vm,
1113 pml4e,
1114 start,
1115 GEN8_PML4E_SHIFT);
1116 }
1117 }
1118
1119 return 0;
1120
1121unwind_out:
1122 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
1123 free_pdp(dev, pml4->pdps[pml4e]);
1124
1125 return -ENOMEM;
1126}
1127
Michel Thierryd7b26332015-04-08 12:13:34 +01001128static void
Michel Thierry6ac18502015-07-29 17:23:46 +01001129free_gen8_temp_bitmaps(unsigned long *new_pds, unsigned long **new_pts,
1130 uint32_t pdpes)
Michel Thierryd7b26332015-04-08 12:13:34 +01001131{
1132 int i;
1133
Michel Thierry6ac18502015-07-29 17:23:46 +01001134 for (i = 0; i < pdpes; i++)
Michel Thierryd7b26332015-04-08 12:13:34 +01001135 kfree(new_pts[i]);
1136 kfree(new_pts);
1137 kfree(new_pds);
1138}
1139
1140/* Fills in the page directory bitmap, and the array of page tables bitmap. Both
1141 * of these are based on the number of PDPEs in the system.
1142 */
1143static
1144int __must_check alloc_gen8_temp_bitmaps(unsigned long **new_pds,
Michel Thierry6ac18502015-07-29 17:23:46 +01001145 unsigned long ***new_pts,
1146 uint32_t pdpes)
Michel Thierryd7b26332015-04-08 12:13:34 +01001147{
1148 int i;
1149 unsigned long *pds;
1150 unsigned long **pts;
1151
Michel Thierry6ac18502015-07-29 17:23:46 +01001152 pds = kcalloc(BITS_TO_LONGS(pdpes), sizeof(unsigned long), GFP_KERNEL);
Michel Thierryd7b26332015-04-08 12:13:34 +01001153 if (!pds)
1154 return -ENOMEM;
1155
Michel Thierry6ac18502015-07-29 17:23:46 +01001156 pts = kcalloc(pdpes, sizeof(unsigned long *), GFP_KERNEL);
Michel Thierryd7b26332015-04-08 12:13:34 +01001157 if (!pts) {
1158 kfree(pds);
1159 return -ENOMEM;
1160 }
1161
Michel Thierry6ac18502015-07-29 17:23:46 +01001162 for (i = 0; i < pdpes; i++) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001163 pts[i] = kcalloc(BITS_TO_LONGS(I915_PDES),
1164 sizeof(unsigned long), GFP_KERNEL);
1165 if (!pts[i])
1166 goto err_out;
1167 }
1168
1169 *new_pds = pds;
1170 *new_pts = pts;
1171
1172 return 0;
1173
1174err_out:
Michel Thierry6ac18502015-07-29 17:23:46 +01001175 free_gen8_temp_bitmaps(pds, pts, pdpes);
Michel Thierryd7b26332015-04-08 12:13:34 +01001176 return -ENOMEM;
1177}
1178
Mika Kuoppala5b7e4c92015-06-25 18:35:03 +03001179/* PDE TLBs are a pain to invalidate on GEN8+. When we modify
1180 * the page table structures, we mark them dirty so that
1181 * context switching/execlist queuing code takes extra steps
1182 * to ensure that tlbs are flushed.
1183 */
1184static void mark_tlbs_dirty(struct i915_hw_ppgtt *ppgtt)
1185{
1186 ppgtt->pd_dirty_rings = INTEL_INFO(ppgtt->base.dev)->ring_mask;
1187}
1188
Michel Thierry762d9932015-07-30 11:05:29 +01001189static int gen8_alloc_va_range_3lvl(struct i915_address_space *vm,
1190 struct i915_page_directory_pointer *pdp,
1191 uint64_t start,
1192 uint64_t length)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001193{
Michel Thierrye5815a22015-04-08 12:13:32 +01001194 struct i915_hw_ppgtt *ppgtt =
1195 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierryd7b26332015-04-08 12:13:34 +01001196 unsigned long *new_page_dirs, **new_page_tables;
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001197 struct drm_device *dev = vm->dev;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001198 struct i915_page_directory *pd;
Michel Thierry33c88192015-04-08 12:13:33 +01001199 const uint64_t orig_start = start;
1200 const uint64_t orig_length = length;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001201 uint64_t temp;
1202 uint32_t pdpe;
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001203 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001204 int ret;
1205
Michel Thierryd7b26332015-04-08 12:13:34 +01001206 /* Wrap is never okay since we can only represent 48b, and we don't
1207 * actually use the other side of the canonical address space.
1208 */
1209 if (WARN_ON(start + length < start))
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001210 return -ENODEV;
1211
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001212 if (WARN_ON(start + length > vm->total))
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001213 return -ENODEV;
Michel Thierryd7b26332015-04-08 12:13:34 +01001214
Michel Thierry6ac18502015-07-29 17:23:46 +01001215 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001216 if (ret)
1217 return ret;
1218
Michel Thierryd7b26332015-04-08 12:13:34 +01001219 /* Do the allocations first so we can easily bail out */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001220 ret = gen8_ppgtt_alloc_page_directories(vm, pdp, start, length,
1221 new_page_dirs);
Michel Thierryd7b26332015-04-08 12:13:34 +01001222 if (ret) {
Michel Thierry6ac18502015-07-29 17:23:46 +01001223 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables, pdpes);
Michel Thierryd7b26332015-04-08 12:13:34 +01001224 return ret;
1225 }
1226
1227 /* For every page directory referenced, allocate page tables */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001228 gen8_for_each_pdpe(pd, pdp, start, length, temp, pdpe) {
1229 ret = gen8_ppgtt_alloc_pagetabs(vm, pd, start, length,
Michel Thierryd7b26332015-04-08 12:13:34 +01001230 new_page_tables[pdpe]);
Michel Thierry5441f0c2015-04-08 12:13:28 +01001231 if (ret)
1232 goto err_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001233 }
1234
Michel Thierry33c88192015-04-08 12:13:33 +01001235 start = orig_start;
1236 length = orig_length;
1237
Michel Thierryd7b26332015-04-08 12:13:34 +01001238 /* Allocations have completed successfully, so set the bitmaps, and do
1239 * the mappings. */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001240 gen8_for_each_pdpe(pd, pdp, start, length, temp, pdpe) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001241 gen8_pde_t *const page_directory = kmap_px(pd);
Michel Thierry33c88192015-04-08 12:13:33 +01001242 struct i915_page_table *pt;
Michel Thierry09120d42015-07-29 17:23:45 +01001243 uint64_t pd_len = length;
Michel Thierry33c88192015-04-08 12:13:33 +01001244 uint64_t pd_start = start;
1245 uint32_t pde;
1246
Michel Thierryd7b26332015-04-08 12:13:34 +01001247 /* Every pd should be allocated, we just did that above. */
1248 WARN_ON(!pd);
1249
1250 gen8_for_each_pde(pt, pd, pd_start, pd_len, temp, pde) {
1251 /* Same reasoning as pd */
1252 WARN_ON(!pt);
1253 WARN_ON(!pd_len);
1254 WARN_ON(!gen8_pte_count(pd_start, pd_len));
1255
1256 /* Set our used ptes within the page table */
1257 bitmap_set(pt->used_ptes,
1258 gen8_pte_index(pd_start),
1259 gen8_pte_count(pd_start, pd_len));
1260
1261 /* Our pde is now pointing to the pagetable, pt */
Mika Kuoppala966082c2015-06-25 18:35:19 +03001262 __set_bit(pde, pd->used_pdes);
Michel Thierryd7b26332015-04-08 12:13:34 +01001263
1264 /* Map the PDE to the page table */
Mika Kuoppalafe36f552015-06-25 18:35:16 +03001265 page_directory[pde] = gen8_pde_encode(px_dma(pt),
1266 I915_CACHE_LLC);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001267 trace_i915_page_table_entry_map(&ppgtt->base, pde, pt,
1268 gen8_pte_index(start),
1269 gen8_pte_count(start, length),
1270 GEN8_PTES);
Michel Thierryd7b26332015-04-08 12:13:34 +01001271
1272 /* NB: We haven't yet mapped ptes to pages. At this
1273 * point we're still relying on insert_entries() */
Michel Thierry33c88192015-04-08 12:13:33 +01001274 }
Michel Thierryd7b26332015-04-08 12:13:34 +01001275
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001276 kunmap_px(ppgtt, page_directory);
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001277 __set_bit(pdpe, pdp->used_pdpes);
Michel Thierry762d9932015-07-30 11:05:29 +01001278 gen8_setup_page_directory(ppgtt, pdp, pd, pdpe);
Michel Thierry33c88192015-04-08 12:13:33 +01001279 }
1280
Michel Thierry6ac18502015-07-29 17:23:46 +01001281 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables, pdpes);
Mika Kuoppala5b7e4c92015-06-25 18:35:03 +03001282 mark_tlbs_dirty(ppgtt);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001283 return 0;
1284
1285err_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001286 while (pdpe--) {
1287 for_each_set_bit(temp, new_page_tables[pdpe], I915_PDES)
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001288 free_pt(dev, pdp->page_directory[pdpe]->page_table[temp]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001289 }
1290
Michel Thierry6ac18502015-07-29 17:23:46 +01001291 for_each_set_bit(pdpe, new_page_dirs, pdpes)
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001292 free_pd(dev, pdp->page_directory[pdpe]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001293
Michel Thierry6ac18502015-07-29 17:23:46 +01001294 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables, pdpes);
Mika Kuoppala5b7e4c92015-06-25 18:35:03 +03001295 mark_tlbs_dirty(ppgtt);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001296 return ret;
1297}
1298
Michel Thierry762d9932015-07-30 11:05:29 +01001299static int gen8_alloc_va_range_4lvl(struct i915_address_space *vm,
1300 struct i915_pml4 *pml4,
1301 uint64_t start,
1302 uint64_t length)
1303{
1304 DECLARE_BITMAP(new_pdps, GEN8_PML4ES_PER_PML4);
1305 struct i915_hw_ppgtt *ppgtt =
1306 container_of(vm, struct i915_hw_ppgtt, base);
1307 struct i915_page_directory_pointer *pdp;
1308 uint64_t temp, pml4e;
1309 int ret = 0;
1310
1311 /* Do the pml4 allocations first, so we don't need to track the newly
1312 * allocated tables below the pdp */
1313 bitmap_zero(new_pdps, GEN8_PML4ES_PER_PML4);
1314
1315 /* The pagedirectory and pagetable allocations are done in the shared 3
1316 * and 4 level code. Just allocate the pdps.
1317 */
1318 ret = gen8_ppgtt_alloc_page_dirpointers(vm, pml4, start, length,
1319 new_pdps);
1320 if (ret)
1321 return ret;
1322
1323 WARN(bitmap_weight(new_pdps, GEN8_PML4ES_PER_PML4) > 2,
1324 "The allocation has spanned more than 512GB. "
1325 "It is highly likely this is incorrect.");
1326
1327 gen8_for_each_pml4e(pdp, pml4, start, length, temp, pml4e) {
1328 WARN_ON(!pdp);
1329
1330 ret = gen8_alloc_va_range_3lvl(vm, pdp, start, length);
1331 if (ret)
1332 goto err_out;
1333
1334 gen8_setup_page_directory_pointer(ppgtt, pml4, pdp, pml4e);
1335 }
1336
1337 bitmap_or(pml4->used_pml4es, new_pdps, pml4->used_pml4es,
1338 GEN8_PML4ES_PER_PML4);
1339
1340 return 0;
1341
1342err_out:
1343 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
1344 gen8_ppgtt_cleanup_3lvl(vm->dev, pml4->pdps[pml4e]);
1345
1346 return ret;
1347}
1348
1349static int gen8_alloc_va_range(struct i915_address_space *vm,
1350 uint64_t start, uint64_t length)
1351{
1352 struct i915_hw_ppgtt *ppgtt =
1353 container_of(vm, struct i915_hw_ppgtt, base);
1354
1355 if (USES_FULL_48BIT_PPGTT(vm->dev))
1356 return gen8_alloc_va_range_4lvl(vm, &ppgtt->pml4, start, length);
1357 else
1358 return gen8_alloc_va_range_3lvl(vm, &ppgtt->pdp, start, length);
1359}
1360
Michel Thierryea91e402015-07-29 17:23:57 +01001361static void gen8_dump_pdp(struct i915_page_directory_pointer *pdp,
1362 uint64_t start, uint64_t length,
1363 gen8_pte_t scratch_pte,
1364 struct seq_file *m)
1365{
1366 struct i915_page_directory *pd;
1367 uint64_t temp;
1368 uint32_t pdpe;
1369
1370 gen8_for_each_pdpe(pd, pdp, start, length, temp, pdpe) {
1371 struct i915_page_table *pt;
1372 uint64_t pd_len = length;
1373 uint64_t pd_start = start;
1374 uint32_t pde;
1375
1376 if (!test_bit(pdpe, pdp->used_pdpes))
1377 continue;
1378
1379 seq_printf(m, "\tPDPE #%d\n", pdpe);
1380 gen8_for_each_pde(pt, pd, pd_start, pd_len, temp, pde) {
1381 uint32_t pte;
1382 gen8_pte_t *pt_vaddr;
1383
1384 if (!test_bit(pde, pd->used_pdes))
1385 continue;
1386
1387 pt_vaddr = kmap_px(pt);
1388 for (pte = 0; pte < GEN8_PTES; pte += 4) {
1389 uint64_t va =
1390 (pdpe << GEN8_PDPE_SHIFT) |
1391 (pde << GEN8_PDE_SHIFT) |
1392 (pte << GEN8_PTE_SHIFT);
1393 int i;
1394 bool found = false;
1395
1396 for (i = 0; i < 4; i++)
1397 if (pt_vaddr[pte + i] != scratch_pte)
1398 found = true;
1399 if (!found)
1400 continue;
1401
1402 seq_printf(m, "\t\t0x%llx [%03d,%03d,%04d]: =", va, pdpe, pde, pte);
1403 for (i = 0; i < 4; i++) {
1404 if (pt_vaddr[pte + i] != scratch_pte)
1405 seq_printf(m, " %llx", pt_vaddr[pte + i]);
1406 else
1407 seq_puts(m, " SCRATCH ");
1408 }
1409 seq_puts(m, "\n");
1410 }
1411 /* don't use kunmap_px, it could trigger
1412 * an unnecessary flush.
1413 */
1414 kunmap_atomic(pt_vaddr);
1415 }
1416 }
1417}
1418
1419static void gen8_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1420{
1421 struct i915_address_space *vm = &ppgtt->base;
1422 uint64_t start = ppgtt->base.start;
1423 uint64_t length = ppgtt->base.total;
1424 gen8_pte_t scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
1425 I915_CACHE_LLC, true);
1426
1427 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
1428 gen8_dump_pdp(&ppgtt->pdp, start, length, scratch_pte, m);
1429 } else {
1430 uint64_t templ4, pml4e;
1431 struct i915_pml4 *pml4 = &ppgtt->pml4;
1432 struct i915_page_directory_pointer *pdp;
1433
1434 gen8_for_each_pml4e(pdp, pml4, start, length, templ4, pml4e) {
1435 if (!test_bit(pml4e, pml4->used_pml4es))
1436 continue;
1437
1438 seq_printf(m, " PML4E #%llu\n", pml4e);
1439 gen8_dump_pdp(pdp, start, length, scratch_pte, m);
1440 }
1441 }
1442}
1443
Daniel Vettereb0b44a2015-03-18 14:47:59 +01001444/*
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001445 * GEN8 legacy ppgtt programming is accomplished through a max 4 PDP registers
1446 * with a net effect resembling a 2-level page table in normal x86 terms. Each
1447 * PDP represents 1GB of memory 4 * 512 * 512 * 4096 = 4GB legacy 32b address
1448 * space.
Ben Widawsky37aca442013-11-04 20:47:32 -08001449 *
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001450 */
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001451static int gen8_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky37aca442013-11-04 20:47:32 -08001452{
Mika Kuoppala8776f022015-06-30 18:16:40 +03001453 int ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001454
Mika Kuoppala8776f022015-06-30 18:16:40 +03001455 ret = gen8_init_scratch(&ppgtt->base);
1456 if (ret)
1457 return ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001458
Michel Thierryd7b26332015-04-08 12:13:34 +01001459 ppgtt->base.start = 0;
Michel Thierryd7b26332015-04-08 12:13:34 +01001460 ppgtt->base.cleanup = gen8_ppgtt_cleanup;
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001461 ppgtt->base.allocate_va_range = gen8_alloc_va_range;
Michel Thierryd7b26332015-04-08 12:13:34 +01001462 ppgtt->base.insert_entries = gen8_ppgtt_insert_entries;
Daniel Vetterc7e16f22015-04-14 17:35:11 +02001463 ppgtt->base.clear_range = gen8_ppgtt_clear_range;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02001464 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
1465 ppgtt->base.bind_vma = ppgtt_bind_vma;
Michel Thierryea91e402015-07-29 17:23:57 +01001466 ppgtt->debug_dump = gen8_dump_ppgtt;
Michel Thierryd7b26332015-04-08 12:13:34 +01001467
Michel Thierry762d9932015-07-30 11:05:29 +01001468 if (USES_FULL_48BIT_PPGTT(ppgtt->base.dev)) {
1469 ret = setup_px(ppgtt->base.dev, &ppgtt->pml4);
1470 if (ret)
1471 goto free_scratch;
Michel Thierry6ac18502015-07-29 17:23:46 +01001472
Michel Thierry69ab76f2015-07-29 17:23:55 +01001473 gen8_initialize_pml4(&ppgtt->base, &ppgtt->pml4);
1474
Michel Thierry762d9932015-07-30 11:05:29 +01001475 ppgtt->base.total = 1ULL << 48;
Michel Thierry2dba3232015-07-30 11:06:23 +01001476 ppgtt->switch_mm = gen8_48b_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001477 } else {
1478 ret = __pdp_init(false, &ppgtt->pdp);
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001479 if (ret)
1480 goto free_scratch;
1481
1482 ppgtt->base.total = 1ULL << 32;
1483 if (IS_ENABLED(CONFIG_X86_32))
1484 /* While we have a proliferation of size_t variables
1485 * we cannot represent the full ppgtt size on 32bit,
1486 * so limit it to the same size as the GGTT (currently
1487 * 2GiB).
1488 */
1489 ppgtt->base.total = to_i915(ppgtt->base.dev)->gtt.base.total;
Michel Thierry762d9932015-07-30 11:05:29 +01001490
Michel Thierry2dba3232015-07-30 11:06:23 +01001491 ppgtt->switch_mm = gen8_legacy_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001492 trace_i915_page_directory_pointer_entry_alloc(&ppgtt->base,
1493 0, 0,
1494 GEN8_PML4E_SHIFT);
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001495 }
Michel Thierry6ac18502015-07-29 17:23:46 +01001496
Michel Thierryd7b26332015-04-08 12:13:34 +01001497 return 0;
Michel Thierry6ac18502015-07-29 17:23:46 +01001498
1499free_scratch:
1500 gen8_free_scratch(&ppgtt->base);
1501 return ret;
Michel Thierryd7b26332015-04-08 12:13:34 +01001502}
1503
Ben Widawsky87d60b62013-12-06 14:11:29 -08001504static void gen6_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1505{
Ben Widawsky87d60b62013-12-06 14:11:29 -08001506 struct i915_address_space *vm = &ppgtt->base;
Michel Thierry09942c62015-04-08 12:13:30 +01001507 struct i915_page_table *unused;
Michel Thierry07749ef2015-03-16 16:00:54 +00001508 gen6_pte_t scratch_pte;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001509 uint32_t pd_entry;
Michel Thierry09942c62015-04-08 12:13:30 +01001510 uint32_t pte, pde, temp;
1511 uint32_t start = ppgtt->base.start, length = ppgtt->base.total;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001512
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001513 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1514 I915_CACHE_LLC, true, 0);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001515
Michel Thierry09942c62015-04-08 12:13:30 +01001516 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001517 u32 expected;
Michel Thierry07749ef2015-03-16 16:00:54 +00001518 gen6_pte_t *pt_vaddr;
Mika Kuoppala567047b2015-06-25 18:35:12 +03001519 const dma_addr_t pt_addr = px_dma(ppgtt->pd.page_table[pde]);
Michel Thierry09942c62015-04-08 12:13:30 +01001520 pd_entry = readl(ppgtt->pd_addr + pde);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001521 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID);
1522
1523 if (pd_entry != expected)
1524 seq_printf(m, "\tPDE #%d mismatch: Actual PDE: %x Expected PDE: %x\n",
1525 pde,
1526 pd_entry,
1527 expected);
1528 seq_printf(m, "\tPDE: %x\n", pd_entry);
1529
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001530 pt_vaddr = kmap_px(ppgtt->pd.page_table[pde]);
1531
Michel Thierry07749ef2015-03-16 16:00:54 +00001532 for (pte = 0; pte < GEN6_PTES; pte+=4) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001533 unsigned long va =
Michel Thierry07749ef2015-03-16 16:00:54 +00001534 (pde * PAGE_SIZE * GEN6_PTES) +
Ben Widawsky87d60b62013-12-06 14:11:29 -08001535 (pte * PAGE_SIZE);
1536 int i;
1537 bool found = false;
1538 for (i = 0; i < 4; i++)
1539 if (pt_vaddr[pte + i] != scratch_pte)
1540 found = true;
1541 if (!found)
1542 continue;
1543
1544 seq_printf(m, "\t\t0x%lx [%03d,%04d]: =", va, pde, pte);
1545 for (i = 0; i < 4; i++) {
1546 if (pt_vaddr[pte + i] != scratch_pte)
1547 seq_printf(m, " %08x", pt_vaddr[pte + i]);
1548 else
1549 seq_puts(m, " SCRATCH ");
1550 }
1551 seq_puts(m, "\n");
1552 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001553 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001554 }
1555}
1556
Ben Widawsky678d96f2015-03-16 16:00:56 +00001557/* Write pde (index) from the page directory @pd to the page table @pt */
Michel Thierryec565b32015-04-08 12:13:23 +01001558static void gen6_write_pde(struct i915_page_directory *pd,
1559 const int pde, struct i915_page_table *pt)
Ben Widawsky61973492013-04-08 18:43:54 -07001560{
Ben Widawsky678d96f2015-03-16 16:00:56 +00001561 /* Caller needs to make sure the write completes if necessary */
1562 struct i915_hw_ppgtt *ppgtt =
1563 container_of(pd, struct i915_hw_ppgtt, pd);
1564 u32 pd_entry;
Ben Widawsky61973492013-04-08 18:43:54 -07001565
Mika Kuoppala567047b2015-06-25 18:35:12 +03001566 pd_entry = GEN6_PDE_ADDR_ENCODE(px_dma(pt));
Ben Widawsky678d96f2015-03-16 16:00:56 +00001567 pd_entry |= GEN6_PDE_VALID;
Ben Widawsky61973492013-04-08 18:43:54 -07001568
Ben Widawsky678d96f2015-03-16 16:00:56 +00001569 writel(pd_entry, ppgtt->pd_addr + pde);
1570}
Ben Widawsky61973492013-04-08 18:43:54 -07001571
Ben Widawsky678d96f2015-03-16 16:00:56 +00001572/* Write all the page tables found in the ppgtt structure to incrementing page
1573 * directories. */
1574static void gen6_write_page_range(struct drm_i915_private *dev_priv,
Michel Thierryec565b32015-04-08 12:13:23 +01001575 struct i915_page_directory *pd,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001576 uint32_t start, uint32_t length)
1577{
Michel Thierryec565b32015-04-08 12:13:23 +01001578 struct i915_page_table *pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001579 uint32_t pde, temp;
1580
1581 gen6_for_each_pde(pt, pd, start, length, temp, pde)
1582 gen6_write_pde(pd, pde, pt);
1583
1584 /* Make sure write is complete before other code can use this page
1585 * table. Also require for WC mapped PTEs */
1586 readl(dev_priv->gtt.gsm);
Ben Widawsky3e302542013-04-23 23:15:32 -07001587}
1588
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001589static uint32_t get_pd_offset(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky3e302542013-04-23 23:15:32 -07001590{
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001591 BUG_ON(ppgtt->pd.base.ggtt_offset & 0x3f);
Ben Widawsky3e302542013-04-23 23:15:32 -07001592
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001593 return (ppgtt->pd.base.ggtt_offset / 64) << 16;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001594}
Ben Widawsky61973492013-04-08 18:43:54 -07001595
Ben Widawsky90252e52013-12-06 14:11:12 -08001596static int hsw_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001597 struct drm_i915_gem_request *req)
Ben Widawsky90252e52013-12-06 14:11:12 -08001598{
John Harrisone85b26d2015-05-29 17:43:56 +01001599 struct intel_engine_cs *ring = req->ring;
Ben Widawsky90252e52013-12-06 14:11:12 -08001600 int ret;
Ben Widawsky61973492013-04-08 18:43:54 -07001601
Ben Widawsky90252e52013-12-06 14:11:12 -08001602 /* NB: TLBs must be flushed and invalidated before a switch */
John Harrisona84c3ae2015-05-29 17:43:57 +01001603 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001604 if (ret)
1605 return ret;
1606
John Harrison5fb9de12015-05-29 17:44:07 +01001607 ret = intel_ring_begin(req, 6);
Ben Widawsky90252e52013-12-06 14:11:12 -08001608 if (ret)
1609 return ret;
1610
1611 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1612 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
1613 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1614 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
1615 intel_ring_emit(ring, get_pd_offset(ppgtt));
1616 intel_ring_emit(ring, MI_NOOP);
1617 intel_ring_advance(ring);
1618
1619 return 0;
1620}
1621
Yu Zhang71ba2d62015-02-10 19:05:54 +08001622static int vgpu_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001623 struct drm_i915_gem_request *req)
Yu Zhang71ba2d62015-02-10 19:05:54 +08001624{
John Harrisone85b26d2015-05-29 17:43:56 +01001625 struct intel_engine_cs *ring = req->ring;
Yu Zhang71ba2d62015-02-10 19:05:54 +08001626 struct drm_i915_private *dev_priv = to_i915(ppgtt->base.dev);
1627
1628 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1629 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1630 return 0;
1631}
1632
Ben Widawsky48a10382013-12-06 14:11:11 -08001633static int gen7_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001634 struct drm_i915_gem_request *req)
Ben Widawsky48a10382013-12-06 14:11:11 -08001635{
John Harrisone85b26d2015-05-29 17:43:56 +01001636 struct intel_engine_cs *ring = req->ring;
Ben Widawsky48a10382013-12-06 14:11:11 -08001637 int ret;
1638
Ben Widawsky48a10382013-12-06 14:11:11 -08001639 /* NB: TLBs must be flushed and invalidated before a switch */
John Harrisona84c3ae2015-05-29 17:43:57 +01001640 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky48a10382013-12-06 14:11:11 -08001641 if (ret)
1642 return ret;
1643
John Harrison5fb9de12015-05-29 17:44:07 +01001644 ret = intel_ring_begin(req, 6);
Ben Widawsky48a10382013-12-06 14:11:11 -08001645 if (ret)
1646 return ret;
1647
1648 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1649 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
1650 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1651 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
1652 intel_ring_emit(ring, get_pd_offset(ppgtt));
1653 intel_ring_emit(ring, MI_NOOP);
1654 intel_ring_advance(ring);
1655
Ben Widawsky90252e52013-12-06 14:11:12 -08001656 /* XXX: RCS is the only one to auto invalidate the TLBs? */
1657 if (ring->id != RCS) {
John Harrisona84c3ae2015-05-29 17:43:57 +01001658 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001659 if (ret)
1660 return ret;
1661 }
1662
Ben Widawsky48a10382013-12-06 14:11:11 -08001663 return 0;
1664}
1665
Ben Widawskyeeb94882013-12-06 14:11:10 -08001666static int gen6_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001667 struct drm_i915_gem_request *req)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001668{
John Harrisone85b26d2015-05-29 17:43:56 +01001669 struct intel_engine_cs *ring = req->ring;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001670 struct drm_device *dev = ppgtt->base.dev;
1671 struct drm_i915_private *dev_priv = dev->dev_private;
1672
Ben Widawsky48a10382013-12-06 14:11:11 -08001673
Ben Widawskyeeb94882013-12-06 14:11:10 -08001674 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1675 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1676
1677 POSTING_READ(RING_PP_DIR_DCLV(ring));
1678
1679 return 0;
1680}
1681
Daniel Vetter82460d92014-08-06 20:19:53 +02001682static void gen8_ppgtt_enable(struct drm_device *dev)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001683{
Ben Widawskyeeb94882013-12-06 14:11:10 -08001684 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001685 struct intel_engine_cs *ring;
Daniel Vetter82460d92014-08-06 20:19:53 +02001686 int j;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001687
1688 for_each_ring(ring, dev_priv, j) {
Michel Thierry2dba3232015-07-30 11:06:23 +01001689 u32 four_level = USES_FULL_48BIT_PPGTT(dev) ? GEN8_GFX_PPGTT_48B : 0;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001690 I915_WRITE(RING_MODE_GEN7(ring),
Michel Thierry2dba3232015-07-30 11:06:23 +01001691 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE | four_level));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001692 }
Ben Widawskyeeb94882013-12-06 14:11:10 -08001693}
1694
Daniel Vetter82460d92014-08-06 20:19:53 +02001695static void gen7_ppgtt_enable(struct drm_device *dev)
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001696{
Jani Nikula50227e12014-03-31 14:27:21 +03001697 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001698 struct intel_engine_cs *ring;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001699 uint32_t ecochk, ecobits;
1700 int i;
1701
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001702 ecobits = I915_READ(GAC_ECO_BITS);
1703 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
1704
1705 ecochk = I915_READ(GAM_ECOCHK);
1706 if (IS_HASWELL(dev)) {
1707 ecochk |= ECOCHK_PPGTT_WB_HSW;
1708 } else {
1709 ecochk |= ECOCHK_PPGTT_LLC_IVB;
1710 ecochk &= ~ECOCHK_PPGTT_GFDT_IVB;
1711 }
1712 I915_WRITE(GAM_ECOCHK, ecochk);
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001713
Ben Widawsky61973492013-04-08 18:43:54 -07001714 for_each_ring(ring, dev_priv, i) {
Ben Widawskyeeb94882013-12-06 14:11:10 -08001715 /* GFX_MODE is per-ring on gen7+ */
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001716 I915_WRITE(RING_MODE_GEN7(ring),
1717 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001718 }
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001719}
1720
Daniel Vetter82460d92014-08-06 20:19:53 +02001721static void gen6_ppgtt_enable(struct drm_device *dev)
Ben Widawsky61973492013-04-08 18:43:54 -07001722{
Jani Nikula50227e12014-03-31 14:27:21 +03001723 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001724 uint32_t ecochk, gab_ctl, ecobits;
Ben Widawsky61973492013-04-08 18:43:54 -07001725
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001726 ecobits = I915_READ(GAC_ECO_BITS);
1727 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_SNB_BIT |
1728 ECOBITS_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001729
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001730 gab_ctl = I915_READ(GAB_CTL);
1731 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
Ben Widawsky61973492013-04-08 18:43:54 -07001732
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001733 ecochk = I915_READ(GAM_ECOCHK);
1734 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT | ECOCHK_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001735
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001736 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001737}
1738
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001739/* PPGTT support for Sandybdrige/Gen6 and later */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001740static void gen6_ppgtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08001741 uint64_t start,
1742 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07001743 bool use_scratch)
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001744{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001745 struct i915_hw_ppgtt *ppgtt =
1746 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +00001747 gen6_pte_t *pt_vaddr, scratch_pte;
Ben Widawsky782f1492014-02-20 11:50:33 -08001748 unsigned first_entry = start >> PAGE_SHIFT;
1749 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001750 unsigned act_pt = first_entry / GEN6_PTES;
1751 unsigned first_pte = first_entry % GEN6_PTES;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001752 unsigned last_pte, i;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001753
Mika Kuoppalac114f762015-06-25 18:35:13 +03001754 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1755 I915_CACHE_LLC, true, 0);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001756
Daniel Vetter7bddb012012-02-09 17:15:47 +01001757 while (num_entries) {
1758 last_pte = first_pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +00001759 if (last_pte > GEN6_PTES)
1760 last_pte = GEN6_PTES;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001761
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001762 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001763
1764 for (i = first_pte; i < last_pte; i++)
1765 pt_vaddr[i] = scratch_pte;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001766
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001767 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001768
Daniel Vetter7bddb012012-02-09 17:15:47 +01001769 num_entries -= last_pte - first_pte;
1770 first_pte = 0;
Daniel Vettera15326a2013-03-19 23:48:39 +01001771 act_pt++;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001772 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001773}
1774
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001775static void gen6_ppgtt_insert_entries(struct i915_address_space *vm,
Daniel Vetterdef886c2013-01-24 14:44:56 -08001776 struct sg_table *pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08001777 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05301778 enum i915_cache_level cache_level, u32 flags)
Daniel Vetterdef886c2013-01-24 14:44:56 -08001779{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001780 struct i915_hw_ppgtt *ppgtt =
1781 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +00001782 gen6_pte_t *pt_vaddr;
Ben Widawsky782f1492014-02-20 11:50:33 -08001783 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001784 unsigned act_pt = first_entry / GEN6_PTES;
1785 unsigned act_pte = first_entry % GEN6_PTES;
Imre Deak6e995e22013-02-18 19:28:04 +02001786 struct sg_page_iter sg_iter;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001787
Chris Wilsoncc797142013-12-31 15:50:30 +00001788 pt_vaddr = NULL;
Imre Deak6e995e22013-02-18 19:28:04 +02001789 for_each_sg_page(pages->sgl, &sg_iter, pages->nents, 0) {
Chris Wilsoncc797142013-12-31 15:50:30 +00001790 if (pt_vaddr == NULL)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001791 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001792
Chris Wilsoncc797142013-12-31 15:50:30 +00001793 pt_vaddr[act_pte] =
1794 vm->pte_encode(sg_page_iter_dma_address(&sg_iter),
Akash Goel24f3a8c2014-06-17 10:59:42 +05301795 cache_level, true, flags);
1796
Michel Thierry07749ef2015-03-16 16:00:54 +00001797 if (++act_pte == GEN6_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001798 kunmap_px(ppgtt, pt_vaddr);
Chris Wilsoncc797142013-12-31 15:50:30 +00001799 pt_vaddr = NULL;
Daniel Vettera15326a2013-03-19 23:48:39 +01001800 act_pt++;
Imre Deak6e995e22013-02-18 19:28:04 +02001801 act_pte = 0;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001802 }
Daniel Vetterdef886c2013-01-24 14:44:56 -08001803 }
Chris Wilsoncc797142013-12-31 15:50:30 +00001804 if (pt_vaddr)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001805 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001806}
1807
Ben Widawsky678d96f2015-03-16 16:00:56 +00001808static int gen6_alloc_va_range(struct i915_address_space *vm,
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001809 uint64_t start_in, uint64_t length_in)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001810{
Michel Thierry4933d512015-03-24 15:46:22 +00001811 DECLARE_BITMAP(new_page_tables, I915_PDES);
1812 struct drm_device *dev = vm->dev;
1813 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001814 struct i915_hw_ppgtt *ppgtt =
1815 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierryec565b32015-04-08 12:13:23 +01001816 struct i915_page_table *pt;
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001817 uint32_t start, length, start_save, length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001818 uint32_t pde, temp;
Michel Thierry4933d512015-03-24 15:46:22 +00001819 int ret;
1820
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001821 if (WARN_ON(start_in + length_in > ppgtt->base.total))
1822 return -ENODEV;
1823
1824 start = start_save = start_in;
1825 length = length_save = length_in;
Michel Thierry4933d512015-03-24 15:46:22 +00001826
1827 bitmap_zero(new_page_tables, I915_PDES);
1828
1829 /* The allocation is done in two stages so that we can bail out with
1830 * minimal amount of pain. The first stage finds new page tables that
1831 * need allocation. The second stage marks use ptes within the page
1832 * tables.
1833 */
1834 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001835 if (pt != vm->scratch_pt) {
Michel Thierry4933d512015-03-24 15:46:22 +00001836 WARN_ON(bitmap_empty(pt->used_ptes, GEN6_PTES));
1837 continue;
1838 }
1839
1840 /* We've already allocated a page table */
1841 WARN_ON(!bitmap_empty(pt->used_ptes, GEN6_PTES));
1842
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001843 pt = alloc_pt(dev);
Michel Thierry4933d512015-03-24 15:46:22 +00001844 if (IS_ERR(pt)) {
1845 ret = PTR_ERR(pt);
1846 goto unwind_out;
1847 }
1848
1849 gen6_initialize_pt(vm, pt);
1850
1851 ppgtt->pd.page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001852 __set_bit(pde, new_page_tables);
Michel Thierry72744cb2015-03-24 15:46:23 +00001853 trace_i915_page_table_entry_alloc(vm, pde, start, GEN6_PDE_SHIFT);
Michel Thierry4933d512015-03-24 15:46:22 +00001854 }
1855
1856 start = start_save;
1857 length = length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001858
1859 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
1860 DECLARE_BITMAP(tmp_bitmap, GEN6_PTES);
1861
1862 bitmap_zero(tmp_bitmap, GEN6_PTES);
1863 bitmap_set(tmp_bitmap, gen6_pte_index(start),
1864 gen6_pte_count(start, length));
1865
Mika Kuoppala966082c2015-06-25 18:35:19 +03001866 if (__test_and_clear_bit(pde, new_page_tables))
Michel Thierry4933d512015-03-24 15:46:22 +00001867 gen6_write_pde(&ppgtt->pd, pde, pt);
1868
Michel Thierry72744cb2015-03-24 15:46:23 +00001869 trace_i915_page_table_entry_map(vm, pde, pt,
1870 gen6_pte_index(start),
1871 gen6_pte_count(start, length),
1872 GEN6_PTES);
Michel Thierry4933d512015-03-24 15:46:22 +00001873 bitmap_or(pt->used_ptes, tmp_bitmap, pt->used_ptes,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001874 GEN6_PTES);
1875 }
1876
Michel Thierry4933d512015-03-24 15:46:22 +00001877 WARN_ON(!bitmap_empty(new_page_tables, I915_PDES));
1878
1879 /* Make sure write is complete before other code can use this page
1880 * table. Also require for WC mapped PTEs */
1881 readl(dev_priv->gtt.gsm);
1882
Ben Widawsky563222a2015-03-19 12:53:28 +00001883 mark_tlbs_dirty(ppgtt);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001884 return 0;
Michel Thierry4933d512015-03-24 15:46:22 +00001885
1886unwind_out:
1887 for_each_set_bit(pde, new_page_tables, I915_PDES) {
Michel Thierryec565b32015-04-08 12:13:23 +01001888 struct i915_page_table *pt = ppgtt->pd.page_table[pde];
Michel Thierry4933d512015-03-24 15:46:22 +00001889
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001890 ppgtt->pd.page_table[pde] = vm->scratch_pt;
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001891 free_pt(vm->dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001892 }
1893
1894 mark_tlbs_dirty(ppgtt);
1895 return ret;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001896}
1897
Mika Kuoppala8776f022015-06-30 18:16:40 +03001898static int gen6_init_scratch(struct i915_address_space *vm)
1899{
1900 struct drm_device *dev = vm->dev;
1901
1902 vm->scratch_page = alloc_scratch_page(dev);
1903 if (IS_ERR(vm->scratch_page))
1904 return PTR_ERR(vm->scratch_page);
1905
1906 vm->scratch_pt = alloc_pt(dev);
1907 if (IS_ERR(vm->scratch_pt)) {
1908 free_scratch_page(dev, vm->scratch_page);
1909 return PTR_ERR(vm->scratch_pt);
1910 }
1911
1912 gen6_initialize_pt(vm, vm->scratch_pt);
1913
1914 return 0;
1915}
1916
1917static void gen6_free_scratch(struct i915_address_space *vm)
1918{
1919 struct drm_device *dev = vm->dev;
1920
1921 free_pt(dev, vm->scratch_pt);
1922 free_scratch_page(dev, vm->scratch_page);
1923}
1924
Daniel Vetter061dd492015-04-14 17:35:13 +02001925static void gen6_ppgtt_cleanup(struct i915_address_space *vm)
Ben Widawskya00d8252014-02-19 22:05:48 -08001926{
Daniel Vetter061dd492015-04-14 17:35:13 +02001927 struct i915_hw_ppgtt *ppgtt =
1928 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry09942c62015-04-08 12:13:30 +01001929 struct i915_page_table *pt;
1930 uint32_t pde;
Daniel Vetter3440d262013-01-24 13:49:56 -08001931
Daniel Vetter061dd492015-04-14 17:35:13 +02001932 drm_mm_remove_node(&ppgtt->node);
1933
Michel Thierry09942c62015-04-08 12:13:30 +01001934 gen6_for_all_pdes(pt, ppgtt, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001935 if (pt != vm->scratch_pt)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001936 free_pt(ppgtt->base.dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001937 }
1938
Mika Kuoppala8776f022015-06-30 18:16:40 +03001939 gen6_free_scratch(vm);
Daniel Vetter3440d262013-01-24 13:49:56 -08001940}
1941
Ben Widawskyb1465202014-02-19 22:05:49 -08001942static int gen6_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08001943{
Mika Kuoppala8776f022015-06-30 18:16:40 +03001944 struct i915_address_space *vm = &ppgtt->base;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001945 struct drm_device *dev = ppgtt->base.dev;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001946 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskye3cc1992013-12-06 14:11:08 -08001947 bool retried = false;
Ben Widawskyb1465202014-02-19 22:05:49 -08001948 int ret;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001949
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001950 /* PPGTT PDEs reside in the GGTT and consists of 512 entries. The
1951 * allocator works in address space sizes, so it's multiplied by page
1952 * size. We allocate at the top of the GTT to avoid fragmentation.
1953 */
1954 BUG_ON(!drm_mm_initialized(&dev_priv->gtt.base.mm));
Michel Thierry4933d512015-03-24 15:46:22 +00001955
Mika Kuoppala8776f022015-06-30 18:16:40 +03001956 ret = gen6_init_scratch(vm);
1957 if (ret)
1958 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00001959
Ben Widawskye3cc1992013-12-06 14:11:08 -08001960alloc:
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001961 ret = drm_mm_insert_node_in_range_generic(&dev_priv->gtt.base.mm,
1962 &ppgtt->node, GEN6_PD_SIZE,
1963 GEN6_PD_ALIGN, 0,
1964 0, dev_priv->gtt.base.total,
Ben Widawsky3e8b5ae2014-05-06 22:21:30 -07001965 DRM_MM_TOPDOWN);
Ben Widawskye3cc1992013-12-06 14:11:08 -08001966 if (ret == -ENOSPC && !retried) {
1967 ret = i915_gem_evict_something(dev, &dev_priv->gtt.base,
1968 GEN6_PD_SIZE, GEN6_PD_ALIGN,
Chris Wilsond23db882014-05-23 08:48:08 +02001969 I915_CACHE_NONE,
1970 0, dev_priv->gtt.base.total,
1971 0);
Ben Widawskye3cc1992013-12-06 14:11:08 -08001972 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001973 goto err_out;
Ben Widawskye3cc1992013-12-06 14:11:08 -08001974
1975 retried = true;
1976 goto alloc;
1977 }
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001978
Ben Widawskyc8c26622015-01-22 17:01:25 +00001979 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001980 goto err_out;
1981
Ben Widawskyc8c26622015-01-22 17:01:25 +00001982
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001983 if (ppgtt->node.start < dev_priv->gtt.mappable_end)
1984 DRM_DEBUG("Forced to use aperture for PDEs\n");
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001985
Ben Widawskyc8c26622015-01-22 17:01:25 +00001986 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001987
1988err_out:
Mika Kuoppala8776f022015-06-30 18:16:40 +03001989 gen6_free_scratch(vm);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001990 return ret;
Ben Widawskyb1465202014-02-19 22:05:49 -08001991}
1992
Ben Widawskyb1465202014-02-19 22:05:49 -08001993static int gen6_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt)
1994{
kbuild test robot2f2cf682015-03-27 19:26:35 +08001995 return gen6_ppgtt_allocate_page_directories(ppgtt);
Ben Widawskyb1465202014-02-19 22:05:49 -08001996}
1997
Michel Thierry4933d512015-03-24 15:46:22 +00001998static void gen6_scratch_va_range(struct i915_hw_ppgtt *ppgtt,
1999 uint64_t start, uint64_t length)
2000{
Michel Thierryec565b32015-04-08 12:13:23 +01002001 struct i915_page_table *unused;
Michel Thierry4933d512015-03-24 15:46:22 +00002002 uint32_t pde, temp;
2003
2004 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde)
Mika Kuoppala79ab9372015-06-25 18:35:17 +03002005 ppgtt->pd.page_table[pde] = ppgtt->base.scratch_pt;
Michel Thierry4933d512015-03-24 15:46:22 +00002006}
2007
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002008static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawskyb1465202014-02-19 22:05:49 -08002009{
2010 struct drm_device *dev = ppgtt->base.dev;
2011 struct drm_i915_private *dev_priv = dev->dev_private;
2012 int ret;
2013
2014 ppgtt->base.pte_encode = dev_priv->gtt.base.pte_encode;
Ben Widawsky48a10382013-12-06 14:11:11 -08002015 if (IS_GEN6(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002016 ppgtt->switch_mm = gen6_mm_switch;
Ben Widawsky90252e52013-12-06 14:11:12 -08002017 } else if (IS_HASWELL(dev)) {
Ben Widawsky90252e52013-12-06 14:11:12 -08002018 ppgtt->switch_mm = hsw_mm_switch;
Ben Widawsky48a10382013-12-06 14:11:11 -08002019 } else if (IS_GEN7(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002020 ppgtt->switch_mm = gen7_mm_switch;
2021 } else
Ben Widawskyb4a74e32013-12-06 14:11:09 -08002022 BUG();
Ben Widawskyb1465202014-02-19 22:05:49 -08002023
Yu Zhang71ba2d62015-02-10 19:05:54 +08002024 if (intel_vgpu_active(dev))
2025 ppgtt->switch_mm = vgpu_mm_switch;
2026
Ben Widawskyb1465202014-02-19 22:05:49 -08002027 ret = gen6_ppgtt_alloc(ppgtt);
2028 if (ret)
2029 return ret;
2030
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002031 ppgtt->base.allocate_va_range = gen6_alloc_va_range;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002032 ppgtt->base.clear_range = gen6_ppgtt_clear_range;
2033 ppgtt->base.insert_entries = gen6_ppgtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002034 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
2035 ppgtt->base.bind_vma = ppgtt_bind_vma;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002036 ppgtt->base.cleanup = gen6_ppgtt_cleanup;
Ben Widawsky686e1f62013-11-25 09:54:34 -08002037 ppgtt->base.start = 0;
Michel Thierry09942c62015-04-08 12:13:30 +01002038 ppgtt->base.total = I915_PDES * GEN6_PTES * PAGE_SIZE;
Ben Widawskyb1465202014-02-19 22:05:49 -08002039 ppgtt->debug_dump = gen6_dump_ppgtt;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002040
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002041 ppgtt->pd.base.ggtt_offset =
Michel Thierry07749ef2015-03-16 16:00:54 +00002042 ppgtt->node.start / PAGE_SIZE * sizeof(gen6_pte_t);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002043
Ben Widawsky678d96f2015-03-16 16:00:56 +00002044 ppgtt->pd_addr = (gen6_pte_t __iomem *)dev_priv->gtt.gsm +
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002045 ppgtt->pd.base.ggtt_offset / sizeof(gen6_pte_t);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002046
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002047 gen6_scratch_va_range(ppgtt, 0, ppgtt->base.total);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002048
Ben Widawsky678d96f2015-03-16 16:00:56 +00002049 gen6_write_page_range(dev_priv, &ppgtt->pd, 0, ppgtt->base.total);
2050
Thierry Reding440fd522015-01-23 09:05:06 +01002051 DRM_DEBUG_DRIVER("Allocated pde space (%lldM) at GTT entry: %llx\n",
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002052 ppgtt->node.size >> 20,
2053 ppgtt->node.start / PAGE_SIZE);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002054
Daniel Vetterfa76da32014-08-06 20:19:54 +02002055 DRM_DEBUG("Adding PPGTT at offset %x\n",
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002056 ppgtt->pd.base.ggtt_offset << 10);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002057
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002058 return 0;
Daniel Vetter3440d262013-01-24 13:49:56 -08002059}
2060
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002061static int __hw_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08002062{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002063 ppgtt->base.dev = dev;
Daniel Vetter3440d262013-01-24 13:49:56 -08002064
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002065 if (INTEL_INFO(dev)->gen < 8)
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002066 return gen6_ppgtt_init(ppgtt);
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002067 else
Michel Thierryd7b26332015-04-08 12:13:34 +01002068 return gen8_ppgtt_init(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002069}
Mika Kuoppalac114f762015-06-25 18:35:13 +03002070
Daniel Vetterfa76da32014-08-06 20:19:54 +02002071int i915_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
2072{
2073 struct drm_i915_private *dev_priv = dev->dev_private;
2074 int ret = 0;
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002075
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002076 ret = __hw_ppgtt_init(dev, ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002077 if (ret == 0) {
Ben Widawskyc7c48df2013-12-06 14:11:15 -08002078 kref_init(&ppgtt->ref);
Ben Widawsky93bd8642013-07-16 16:50:06 -07002079 drm_mm_init(&ppgtt->base.mm, ppgtt->base.start,
2080 ppgtt->base.total);
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08002081 i915_init_vm(dev_priv, &ppgtt->base);
Ben Widawsky93bd8642013-07-16 16:50:06 -07002082 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002083
2084 return ret;
2085}
2086
Daniel Vetter82460d92014-08-06 20:19:53 +02002087int i915_ppgtt_init_hw(struct drm_device *dev)
2088{
Thomas Daniel671b50132014-08-20 16:24:50 +01002089 /* In the case of execlists, PPGTT is enabled by the context descriptor
2090 * and the PDPs are contained within the context itself. We don't
2091 * need to do anything here. */
2092 if (i915.enable_execlists)
2093 return 0;
2094
Daniel Vetter82460d92014-08-06 20:19:53 +02002095 if (!USES_PPGTT(dev))
2096 return 0;
2097
2098 if (IS_GEN6(dev))
2099 gen6_ppgtt_enable(dev);
2100 else if (IS_GEN7(dev))
2101 gen7_ppgtt_enable(dev);
2102 else if (INTEL_INFO(dev)->gen >= 8)
2103 gen8_ppgtt_enable(dev);
2104 else
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01002105 MISSING_CASE(INTEL_INFO(dev)->gen);
Daniel Vetter82460d92014-08-06 20:19:53 +02002106
John Harrison4ad2fd82015-06-18 13:11:20 +01002107 return 0;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002108}
John Harrison4ad2fd82015-06-18 13:11:20 +01002109
John Harrisonb3dd6b92015-05-29 17:43:40 +01002110int i915_ppgtt_init_ring(struct drm_i915_gem_request *req)
John Harrison4ad2fd82015-06-18 13:11:20 +01002111{
John Harrisonb3dd6b92015-05-29 17:43:40 +01002112 struct drm_i915_private *dev_priv = req->ring->dev->dev_private;
John Harrison4ad2fd82015-06-18 13:11:20 +01002113 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2114
2115 if (i915.enable_execlists)
2116 return 0;
2117
2118 if (!ppgtt)
2119 return 0;
2120
John Harrisone85b26d2015-05-29 17:43:56 +01002121 return ppgtt->switch_mm(ppgtt, req);
John Harrison4ad2fd82015-06-18 13:11:20 +01002122}
2123
Daniel Vetter4d884702014-08-06 15:04:47 +02002124struct i915_hw_ppgtt *
2125i915_ppgtt_create(struct drm_device *dev, struct drm_i915_file_private *fpriv)
2126{
2127 struct i915_hw_ppgtt *ppgtt;
2128 int ret;
2129
2130 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2131 if (!ppgtt)
2132 return ERR_PTR(-ENOMEM);
2133
2134 ret = i915_ppgtt_init(dev, ppgtt);
2135 if (ret) {
2136 kfree(ppgtt);
2137 return ERR_PTR(ret);
2138 }
2139
2140 ppgtt->file_priv = fpriv;
2141
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002142 trace_i915_ppgtt_create(&ppgtt->base);
2143
Daniel Vetter4d884702014-08-06 15:04:47 +02002144 return ppgtt;
2145}
2146
Daniel Vetteree960be2014-08-06 15:04:45 +02002147void i915_ppgtt_release(struct kref *kref)
2148{
2149 struct i915_hw_ppgtt *ppgtt =
2150 container_of(kref, struct i915_hw_ppgtt, ref);
2151
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002152 trace_i915_ppgtt_release(&ppgtt->base);
2153
Daniel Vetteree960be2014-08-06 15:04:45 +02002154 /* vmas should already be unbound */
2155 WARN_ON(!list_empty(&ppgtt->base.active_list));
2156 WARN_ON(!list_empty(&ppgtt->base.inactive_list));
2157
Daniel Vetter19dd1202014-08-06 15:04:55 +02002158 list_del(&ppgtt->base.global_link);
2159 drm_mm_takedown(&ppgtt->base.mm);
2160
Daniel Vetteree960be2014-08-06 15:04:45 +02002161 ppgtt->base.cleanup(&ppgtt->base);
2162 kfree(ppgtt);
2163}
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002164
Ben Widawskya81cc002013-01-18 12:30:31 -08002165extern int intel_iommu_gfx_mapped;
2166/* Certain Gen5 chipsets require require idling the GPU before
2167 * unmapping anything from the GTT when VT-d is enabled.
2168 */
Daniel Vetter2c642b02015-04-14 17:35:26 +02002169static bool needs_idle_maps(struct drm_device *dev)
Ben Widawskya81cc002013-01-18 12:30:31 -08002170{
2171#ifdef CONFIG_INTEL_IOMMU
2172 /* Query intel_iommu to see if we need the workaround. Presumably that
2173 * was loaded first.
2174 */
2175 if (IS_GEN5(dev) && IS_MOBILE(dev) && intel_iommu_gfx_mapped)
2176 return true;
2177#endif
2178 return false;
2179}
2180
Ben Widawsky5c042282011-10-17 15:51:55 -07002181static bool do_idling(struct drm_i915_private *dev_priv)
2182{
2183 bool ret = dev_priv->mm.interruptible;
2184
Ben Widawskya81cc002013-01-18 12:30:31 -08002185 if (unlikely(dev_priv->gtt.do_idle_maps)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002186 dev_priv->mm.interruptible = false;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002187 if (i915_gpu_idle(dev_priv->dev)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002188 DRM_ERROR("Couldn't idle GPU\n");
2189 /* Wait a bit, in hopes it avoids the hang */
2190 udelay(10);
2191 }
2192 }
2193
2194 return ret;
2195}
2196
2197static void undo_idling(struct drm_i915_private *dev_priv, bool interruptible)
2198{
Ben Widawskya81cc002013-01-18 12:30:31 -08002199 if (unlikely(dev_priv->gtt.do_idle_maps))
Ben Widawsky5c042282011-10-17 15:51:55 -07002200 dev_priv->mm.interruptible = interruptible;
2201}
2202
Ben Widawsky828c7902013-10-16 09:21:30 -07002203void i915_check_and_clear_faults(struct drm_device *dev)
2204{
2205 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002206 struct intel_engine_cs *ring;
Ben Widawsky828c7902013-10-16 09:21:30 -07002207 int i;
2208
2209 if (INTEL_INFO(dev)->gen < 6)
2210 return;
2211
2212 for_each_ring(ring, dev_priv, i) {
2213 u32 fault_reg;
2214 fault_reg = I915_READ(RING_FAULT_REG(ring));
2215 if (fault_reg & RING_FAULT_VALID) {
2216 DRM_DEBUG_DRIVER("Unexpected fault\n"
Paulo Zanoni59a5d292014-10-30 15:52:45 -02002217 "\tAddr: 0x%08lx\n"
Ben Widawsky828c7902013-10-16 09:21:30 -07002218 "\tAddress space: %s\n"
2219 "\tSource ID: %d\n"
2220 "\tType: %d\n",
2221 fault_reg & PAGE_MASK,
2222 fault_reg & RING_FAULT_GTTSEL_MASK ? "GGTT" : "PPGTT",
2223 RING_FAULT_SRCID(fault_reg),
2224 RING_FAULT_FAULT_TYPE(fault_reg));
2225 I915_WRITE(RING_FAULT_REG(ring),
2226 fault_reg & ~RING_FAULT_VALID);
2227 }
2228 }
2229 POSTING_READ(RING_FAULT_REG(&dev_priv->ring[RCS]));
2230}
2231
Chris Wilson91e56492014-09-25 10:13:12 +01002232static void i915_ggtt_flush(struct drm_i915_private *dev_priv)
2233{
2234 if (INTEL_INFO(dev_priv->dev)->gen < 6) {
2235 intel_gtt_chipset_flush();
2236 } else {
2237 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2238 POSTING_READ(GFX_FLSH_CNTL_GEN6);
2239 }
2240}
2241
Ben Widawsky828c7902013-10-16 09:21:30 -07002242void i915_gem_suspend_gtt_mappings(struct drm_device *dev)
2243{
2244 struct drm_i915_private *dev_priv = dev->dev_private;
2245
2246 /* Don't bother messing with faults pre GEN6 as we have little
2247 * documentation supporting that it's a good idea.
2248 */
2249 if (INTEL_INFO(dev)->gen < 6)
2250 return;
2251
2252 i915_check_and_clear_faults(dev);
2253
2254 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002255 dev_priv->gtt.base.start,
2256 dev_priv->gtt.base.total,
Daniel Vettere568af12014-03-26 20:08:20 +01002257 true);
Chris Wilson91e56492014-09-25 10:13:12 +01002258
2259 i915_ggtt_flush(dev_priv);
Ben Widawsky828c7902013-10-16 09:21:30 -07002260}
2261
Daniel Vetter74163902012-02-15 23:50:21 +01002262int i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002263{
Chris Wilson9da3da62012-06-01 15:20:22 +01002264 if (!dma_map_sg(&obj->base.dev->pdev->dev,
2265 obj->pages->sgl, obj->pages->nents,
2266 PCI_DMA_BIDIRECTIONAL))
2267 return -ENOSPC;
2268
2269 return 0;
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002270}
2271
Daniel Vetter2c642b02015-04-14 17:35:26 +02002272static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002273{
2274#ifdef writeq
2275 writeq(pte, addr);
2276#else
2277 iowrite32((u32)pte, addr);
2278 iowrite32(pte >> 32, addr + 4);
2279#endif
2280}
2281
2282static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
2283 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002284 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302285 enum i915_cache_level level, u32 unused)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002286{
2287 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002288 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002289 gen8_pte_t __iomem *gtt_entries =
2290 (gen8_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002291 int i = 0;
2292 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002293 dma_addr_t addr = 0; /* shut up gcc */
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002294
2295 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
2296 addr = sg_dma_address(sg_iter.sg) +
2297 (sg_iter.sg_pgoffset << PAGE_SHIFT);
2298 gen8_set_pte(&gtt_entries[i],
2299 gen8_pte_encode(addr, level, true));
2300 i++;
2301 }
2302
2303 /*
2304 * XXX: This serves as a posting read to make sure that the PTE has
2305 * actually been updated. There is some concern that even though
2306 * registers and PTEs are within the same BAR that they are potentially
2307 * of NUMA access patterns. Therefore, even with the way we assume
2308 * hardware should work, we must keep this posting read for paranoia.
2309 */
2310 if (i != 0)
2311 WARN_ON(readq(&gtt_entries[i-1])
2312 != gen8_pte_encode(addr, level, true));
2313
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002314 /* This next bit makes the above posting read even more important. We
2315 * want to flush the TLBs only after we're certain all the PTE updates
2316 * have finished.
2317 */
2318 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2319 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002320}
2321
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002322/*
2323 * Binds an object into the global gtt with the specified cache level. The object
2324 * will be accessible to the GPU via commands whose operands reference offsets
2325 * within the global GTT as well as accessible by the GPU through the GMADR
2326 * mapped BAR (dev_priv->mm.gtt->gtt).
2327 */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002328static void gen6_ggtt_insert_entries(struct i915_address_space *vm,
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002329 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002330 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302331 enum i915_cache_level level, u32 flags)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002332{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002333 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002334 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002335 gen6_pte_t __iomem *gtt_entries =
2336 (gen6_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
Imre Deak6e995e22013-02-18 19:28:04 +02002337 int i = 0;
2338 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002339 dma_addr_t addr = 0;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002340
Imre Deak6e995e22013-02-18 19:28:04 +02002341 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02002342 addr = sg_page_iter_dma_address(&sg_iter);
Akash Goel24f3a8c2014-06-17 10:59:42 +05302343 iowrite32(vm->pte_encode(addr, level, true, flags), &gtt_entries[i]);
Imre Deak6e995e22013-02-18 19:28:04 +02002344 i++;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002345 }
2346
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002347 /* XXX: This serves as a posting read to make sure that the PTE has
2348 * actually been updated. There is some concern that even though
2349 * registers and PTEs are within the same BAR that they are potentially
2350 * of NUMA access patterns. Therefore, even with the way we assume
2351 * hardware should work, we must keep this posting read for paranoia.
2352 */
Pavel Machek57007df2014-07-28 13:20:58 +02002353 if (i != 0) {
2354 unsigned long gtt = readl(&gtt_entries[i-1]);
2355 WARN_ON(gtt != vm->pte_encode(addr, level, true, flags));
2356 }
Ben Widawsky0f9b91c2012-11-04 09:21:30 -08002357
2358 /* This next bit makes the above posting read even more important. We
2359 * want to flush the TLBs only after we're certain all the PTE updates
2360 * have finished.
2361 */
2362 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2363 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002364}
2365
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002366static void gen8_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002367 uint64_t start,
2368 uint64_t length,
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002369 bool use_scratch)
2370{
2371 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002372 unsigned first_entry = start >> PAGE_SHIFT;
2373 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002374 gen8_pte_t scratch_pte, __iomem *gtt_base =
2375 (gen8_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002376 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
2377 int i;
2378
2379 if (WARN(num_entries > max_entries,
2380 "First entry = %d; Num entries = %d (max=%d)\n",
2381 first_entry, num_entries, max_entries))
2382 num_entries = max_entries;
2383
Mika Kuoppalac114f762015-06-25 18:35:13 +03002384 scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002385 I915_CACHE_LLC,
2386 use_scratch);
2387 for (i = 0; i < num_entries; i++)
2388 gen8_set_pte(&gtt_base[i], scratch_pte);
2389 readl(gtt_base);
2390}
2391
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002392static void gen6_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002393 uint64_t start,
2394 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002395 bool use_scratch)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002396{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002397 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002398 unsigned first_entry = start >> PAGE_SHIFT;
2399 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002400 gen6_pte_t scratch_pte, __iomem *gtt_base =
2401 (gen6_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
Ben Widawskya54c0c22013-01-24 14:45:00 -08002402 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002403 int i;
2404
2405 if (WARN(num_entries > max_entries,
2406 "First entry = %d; Num entries = %d (max=%d)\n",
2407 first_entry, num_entries, max_entries))
2408 num_entries = max_entries;
2409
Mika Kuoppalac114f762015-06-25 18:35:13 +03002410 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
2411 I915_CACHE_LLC, use_scratch, 0);
Ben Widawsky828c7902013-10-16 09:21:30 -07002412
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002413 for (i = 0; i < num_entries; i++)
2414 iowrite32(scratch_pte, &gtt_base[i]);
2415 readl(gtt_base);
2416}
2417
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002418static void i915_ggtt_insert_entries(struct i915_address_space *vm,
2419 struct sg_table *pages,
2420 uint64_t start,
2421 enum i915_cache_level cache_level, u32 unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002422{
2423 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
2424 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
2425
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002426 intel_gtt_insert_sg_entries(pages, start >> PAGE_SHIFT, flags);
Daniel Vetter08755462015-04-20 09:04:05 -07002427
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002428}
2429
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002430static void i915_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002431 uint64_t start,
2432 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002433 bool unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002434{
Ben Widawsky782f1492014-02-20 11:50:33 -08002435 unsigned first_entry = start >> PAGE_SHIFT;
2436 unsigned num_entries = length >> PAGE_SHIFT;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002437 intel_gtt_clear_range(first_entry, num_entries);
2438}
2439
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002440static int ggtt_bind_vma(struct i915_vma *vma,
2441 enum i915_cache_level cache_level,
2442 u32 flags)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002443{
Ben Widawsky6f65e292013-12-06 14:10:56 -08002444 struct drm_device *dev = vma->vm->dev;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002445 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002446 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002447 struct sg_table *pages = obj->pages;
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002448 u32 pte_flags = 0;
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002449 int ret;
2450
2451 ret = i915_get_ggtt_vma_pages(vma);
2452 if (ret)
2453 return ret;
2454 pages = vma->ggtt_view.pages;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002455
Akash Goel24f3a8c2014-06-17 10:59:42 +05302456 /* Currently applicable only to VLV */
2457 if (obj->gt_ro)
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002458 pte_flags |= PTE_READ_ONLY;
Akash Goel24f3a8c2014-06-17 10:59:42 +05302459
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002460
Ben Widawsky6f65e292013-12-06 14:10:56 -08002461 if (!dev_priv->mm.aliasing_ppgtt || flags & GLOBAL_BIND) {
Daniel Vetter08755462015-04-20 09:04:05 -07002462 vma->vm->insert_entries(vma->vm, pages,
2463 vma->node.start,
2464 cache_level, pte_flags);
Chris Wilsond0e30ad2015-07-29 20:02:48 +01002465
2466 /* Note the inconsistency here is due to absence of the
2467 * aliasing ppgtt on gen4 and earlier. Though we always
2468 * request PIN_USER for execbuffer (translated to LOCAL_BIND),
2469 * without the appgtt, we cannot honour that request and so
2470 * must substitute it with a global binding. Since we do this
2471 * behind the upper layers back, we need to explicitly set
2472 * the bound flag ourselves.
2473 */
2474 vma->bound |= GLOBAL_BIND;
2475
Ben Widawsky6f65e292013-12-06 14:10:56 -08002476 }
Daniel Vetter74898d72012-02-15 23:50:22 +01002477
Daniel Vetter08755462015-04-20 09:04:05 -07002478 if (dev_priv->mm.aliasing_ppgtt && flags & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002479 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002480 appgtt->base.insert_entries(&appgtt->base, pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08002481 vma->node.start,
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002482 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002483 }
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002484
2485 return 0;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002486}
2487
2488static void ggtt_unbind_vma(struct i915_vma *vma)
2489{
2490 struct drm_device *dev = vma->vm->dev;
2491 struct drm_i915_private *dev_priv = dev->dev_private;
2492 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002493 const uint64_t size = min_t(uint64_t,
2494 obj->base.size,
2495 vma->node.size);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002496
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002497 if (vma->bound & GLOBAL_BIND) {
Ben Widawsky782f1492014-02-20 11:50:33 -08002498 vma->vm->clear_range(vma->vm,
2499 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002500 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002501 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002502 }
2503
Daniel Vetter08755462015-04-20 09:04:05 -07002504 if (dev_priv->mm.aliasing_ppgtt && vma->bound & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002505 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002506
Ben Widawsky6f65e292013-12-06 14:10:56 -08002507 appgtt->base.clear_range(&appgtt->base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002508 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002509 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002510 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002511 }
Daniel Vetter74163902012-02-15 23:50:21 +01002512}
2513
2514void i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj)
2515{
Ben Widawsky5c042282011-10-17 15:51:55 -07002516 struct drm_device *dev = obj->base.dev;
2517 struct drm_i915_private *dev_priv = dev->dev_private;
2518 bool interruptible;
2519
2520 interruptible = do_idling(dev_priv);
2521
Imre Deak5ec5b512015-07-08 19:18:59 +03002522 dma_unmap_sg(&dev->pdev->dev, obj->pages->sgl, obj->pages->nents,
2523 PCI_DMA_BIDIRECTIONAL);
Ben Widawsky5c042282011-10-17 15:51:55 -07002524
2525 undo_idling(dev_priv, interruptible);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002526}
Daniel Vetter644ec022012-03-26 09:45:40 +02002527
Chris Wilson42d6ab42012-07-26 11:49:32 +01002528static void i915_gtt_color_adjust(struct drm_mm_node *node,
2529 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +01002530 u64 *start,
2531 u64 *end)
Chris Wilson42d6ab42012-07-26 11:49:32 +01002532{
2533 if (node->color != color)
2534 *start += 4096;
2535
2536 if (!list_empty(&node->node_list)) {
2537 node = list_entry(node->node_list.next,
2538 struct drm_mm_node,
2539 node_list);
2540 if (node->allocated && node->color != color)
2541 *end -= 4096;
2542 }
2543}
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002544
Daniel Vetterf548c0e2014-11-19 21:40:13 +01002545static int i915_gem_setup_global_gtt(struct drm_device *dev,
2546 unsigned long start,
2547 unsigned long mappable_end,
2548 unsigned long end)
Daniel Vetter644ec022012-03-26 09:45:40 +02002549{
Ben Widawskye78891c2013-01-25 16:41:04 -08002550 /* Let GEM Manage all of the aperture.
2551 *
2552 * However, leave one page at the end still bound to the scratch page.
2553 * There are a number of places where the hardware apparently prefetches
2554 * past the end of the object, and we've seen multiple hangs with the
2555 * GPU head pointer stuck in a batchbuffer bound at the last page of the
2556 * aperture. One page should be enough to keep any prefetching inside
2557 * of the aperture.
2558 */
Ben Widawsky40d749802013-07-31 16:59:59 -07002559 struct drm_i915_private *dev_priv = dev->dev_private;
2560 struct i915_address_space *ggtt_vm = &dev_priv->gtt.base;
Chris Wilsoned2f3452012-11-15 11:32:19 +00002561 struct drm_mm_node *entry;
2562 struct drm_i915_gem_object *obj;
2563 unsigned long hole_start, hole_end;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002564 int ret;
Daniel Vetter644ec022012-03-26 09:45:40 +02002565
Ben Widawsky35451cb2013-01-17 12:45:13 -08002566 BUG_ON(mappable_end > end);
2567
Chris Wilsoned2f3452012-11-15 11:32:19 +00002568 /* Subtract the guard page ... */
Ben Widawsky40d749802013-07-31 16:59:59 -07002569 drm_mm_init(&ggtt_vm->mm, start, end - start - PAGE_SIZE);
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002570
2571 dev_priv->gtt.base.start = start;
2572 dev_priv->gtt.base.total = end - start;
2573
2574 if (intel_vgpu_active(dev)) {
2575 ret = intel_vgt_balloon(dev);
2576 if (ret)
2577 return ret;
2578 }
2579
Chris Wilson42d6ab42012-07-26 11:49:32 +01002580 if (!HAS_LLC(dev))
Ben Widawsky93bd8642013-07-16 16:50:06 -07002581 dev_priv->gtt.base.mm.color_adjust = i915_gtt_color_adjust;
Daniel Vetter644ec022012-03-26 09:45:40 +02002582
Chris Wilsoned2f3452012-11-15 11:32:19 +00002583 /* Mark any preallocated objects as occupied */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002584 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Ben Widawsky40d749802013-07-31 16:59:59 -07002585 struct i915_vma *vma = i915_gem_obj_to_vma(obj, ggtt_vm);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002586
Ben Widawskyedd41a82013-07-05 14:41:05 -07002587 DRM_DEBUG_KMS("reserving preallocated space: %lx + %zx\n",
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002588 i915_gem_obj_ggtt_offset(obj), obj->base.size);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002589
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002590 WARN_ON(i915_gem_obj_ggtt_bound(obj));
Ben Widawsky40d749802013-07-31 16:59:59 -07002591 ret = drm_mm_reserve_node(&ggtt_vm->mm, &vma->node);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002592 if (ret) {
2593 DRM_DEBUG_KMS("Reservation failed: %i\n", ret);
2594 return ret;
2595 }
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002596 vma->bound |= GLOBAL_BIND;
Chris Wilsoned2f3452012-11-15 11:32:19 +00002597 }
2598
Chris Wilsoned2f3452012-11-15 11:32:19 +00002599 /* Clear any non-preallocated blocks */
Ben Widawsky40d749802013-07-31 16:59:59 -07002600 drm_mm_for_each_hole(entry, &ggtt_vm->mm, hole_start, hole_end) {
Chris Wilsoned2f3452012-11-15 11:32:19 +00002601 DRM_DEBUG_KMS("clearing unused GTT space: [%lx, %lx]\n",
2602 hole_start, hole_end);
Ben Widawsky782f1492014-02-20 11:50:33 -08002603 ggtt_vm->clear_range(ggtt_vm, hole_start,
2604 hole_end - hole_start, true);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002605 }
2606
2607 /* And finally clear the reserved guard page */
Ben Widawsky782f1492014-02-20 11:50:33 -08002608 ggtt_vm->clear_range(ggtt_vm, end - PAGE_SIZE, PAGE_SIZE, true);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002609
Daniel Vetterfa76da32014-08-06 20:19:54 +02002610 if (USES_PPGTT(dev) && !USES_FULL_PPGTT(dev)) {
2611 struct i915_hw_ppgtt *ppgtt;
2612
2613 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2614 if (!ppgtt)
2615 return -ENOMEM;
2616
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002617 ret = __hw_ppgtt_init(dev, ppgtt);
Michel Thierry4933d512015-03-24 15:46:22 +00002618 if (ret) {
Daniel Vetter061dd492015-04-14 17:35:13 +02002619 ppgtt->base.cleanup(&ppgtt->base);
Michel Thierry4933d512015-03-24 15:46:22 +00002620 kfree(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002621 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002622 }
Daniel Vetterfa76da32014-08-06 20:19:54 +02002623
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002624 if (ppgtt->base.allocate_va_range)
2625 ret = ppgtt->base.allocate_va_range(&ppgtt->base, 0,
2626 ppgtt->base.total);
2627 if (ret) {
2628 ppgtt->base.cleanup(&ppgtt->base);
2629 kfree(ppgtt);
2630 return ret;
2631 }
2632
2633 ppgtt->base.clear_range(&ppgtt->base,
2634 ppgtt->base.start,
2635 ppgtt->base.total,
2636 true);
2637
Daniel Vetterfa76da32014-08-06 20:19:54 +02002638 dev_priv->mm.aliasing_ppgtt = ppgtt;
2639 }
2640
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002641 return 0;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002642}
2643
Ben Widawskyd7e50082012-12-18 10:31:25 -08002644void i915_gem_init_global_gtt(struct drm_device *dev)
2645{
2646 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002647 u64 gtt_size, mappable_size;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002648
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002649 gtt_size = dev_priv->gtt.base.total;
Ben Widawsky93d18792013-01-17 12:45:17 -08002650 mappable_size = dev_priv->gtt.mappable_end;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002651
Ben Widawskye78891c2013-01-25 16:41:04 -08002652 i915_gem_setup_global_gtt(dev, 0, mappable_size, gtt_size);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002653}
2654
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002655void i915_global_gtt_cleanup(struct drm_device *dev)
2656{
2657 struct drm_i915_private *dev_priv = dev->dev_private;
2658 struct i915_address_space *vm = &dev_priv->gtt.base;
2659
Daniel Vetter70e32542014-08-06 15:04:57 +02002660 if (dev_priv->mm.aliasing_ppgtt) {
2661 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2662
2663 ppgtt->base.cleanup(&ppgtt->base);
2664 }
2665
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002666 if (drm_mm_initialized(&vm->mm)) {
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002667 if (intel_vgpu_active(dev))
2668 intel_vgt_deballoon();
2669
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002670 drm_mm_takedown(&vm->mm);
2671 list_del(&vm->global_link);
2672 }
2673
2674 vm->cleanup(vm);
2675}
Daniel Vetter70e32542014-08-06 15:04:57 +02002676
Daniel Vetter2c642b02015-04-14 17:35:26 +02002677static unsigned int gen6_get_total_gtt_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002678{
2679 snb_gmch_ctl >>= SNB_GMCH_GGMS_SHIFT;
2680 snb_gmch_ctl &= SNB_GMCH_GGMS_MASK;
2681 return snb_gmch_ctl << 20;
2682}
2683
Daniel Vetter2c642b02015-04-14 17:35:26 +02002684static unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002685{
2686 bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
2687 bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
2688 if (bdw_gmch_ctl)
2689 bdw_gmch_ctl = 1 << bdw_gmch_ctl;
Ben Widawsky562d55d2014-05-27 16:53:08 -07002690
2691#ifdef CONFIG_X86_32
2692 /* Limit 32b platforms to a 2GB GGTT: 4 << 20 / pte size * PAGE_SIZE */
2693 if (bdw_gmch_ctl > 4)
2694 bdw_gmch_ctl = 4;
2695#endif
2696
Ben Widawsky9459d252013-11-03 16:53:55 -08002697 return bdw_gmch_ctl << 20;
2698}
2699
Daniel Vetter2c642b02015-04-14 17:35:26 +02002700static unsigned int chv_get_total_gtt_size(u16 gmch_ctrl)
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002701{
2702 gmch_ctrl >>= SNB_GMCH_GGMS_SHIFT;
2703 gmch_ctrl &= SNB_GMCH_GGMS_MASK;
2704
2705 if (gmch_ctrl)
2706 return 1 << (20 + gmch_ctrl);
2707
2708 return 0;
2709}
2710
Daniel Vetter2c642b02015-04-14 17:35:26 +02002711static size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002712{
2713 snb_gmch_ctl >>= SNB_GMCH_GMS_SHIFT;
2714 snb_gmch_ctl &= SNB_GMCH_GMS_MASK;
2715 return snb_gmch_ctl << 25; /* 32 MB units */
2716}
2717
Daniel Vetter2c642b02015-04-14 17:35:26 +02002718static size_t gen8_get_stolen_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002719{
2720 bdw_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2721 bdw_gmch_ctl &= BDW_GMCH_GMS_MASK;
2722 return bdw_gmch_ctl << 25; /* 32 MB units */
2723}
2724
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002725static size_t chv_get_stolen_size(u16 gmch_ctrl)
2726{
2727 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
2728 gmch_ctrl &= SNB_GMCH_GMS_MASK;
2729
2730 /*
2731 * 0x0 to 0x10: 32MB increments starting at 0MB
2732 * 0x11 to 0x16: 4MB increments starting at 8MB
2733 * 0x17 to 0x1d: 4MB increments start at 36MB
2734 */
2735 if (gmch_ctrl < 0x11)
2736 return gmch_ctrl << 25;
2737 else if (gmch_ctrl < 0x17)
2738 return (gmch_ctrl - 0x11 + 2) << 22;
2739 else
2740 return (gmch_ctrl - 0x17 + 9) << 22;
2741}
2742
Damien Lespiau66375012014-01-09 18:02:46 +00002743static size_t gen9_get_stolen_size(u16 gen9_gmch_ctl)
2744{
2745 gen9_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2746 gen9_gmch_ctl &= BDW_GMCH_GMS_MASK;
2747
2748 if (gen9_gmch_ctl < 0xf0)
2749 return gen9_gmch_ctl << 25; /* 32 MB units */
2750 else
2751 /* 4MB increments starting at 0xf0 for 4MB */
2752 return (gen9_gmch_ctl - 0xf0 + 1) << 22;
2753}
2754
Ben Widawsky63340132013-11-04 19:32:22 -08002755static int ggtt_probe_common(struct drm_device *dev,
2756 size_t gtt_size)
2757{
2758 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002759 struct i915_page_scratch *scratch_page;
Bjorn Helgaas21c34602013-12-21 10:52:52 -07002760 phys_addr_t gtt_phys_addr;
Ben Widawsky63340132013-11-04 19:32:22 -08002761
2762 /* For Modern GENs the PTEs and register space are split in the BAR */
Bjorn Helgaas21c34602013-12-21 10:52:52 -07002763 gtt_phys_addr = pci_resource_start(dev->pdev, 0) +
Ben Widawsky63340132013-11-04 19:32:22 -08002764 (pci_resource_len(dev->pdev, 0) / 2);
2765
Imre Deak2a073f892015-03-27 13:07:33 +02002766 /*
2767 * On BXT writes larger than 64 bit to the GTT pagetable range will be
2768 * dropped. For WC mappings in general we have 64 byte burst writes
2769 * when the WC buffer is flushed, so we can't use it, but have to
2770 * resort to an uncached mapping. The WC issue is easily caught by the
2771 * readback check when writing GTT PTE entries.
2772 */
2773 if (IS_BROXTON(dev))
2774 dev_priv->gtt.gsm = ioremap_nocache(gtt_phys_addr, gtt_size);
2775 else
2776 dev_priv->gtt.gsm = ioremap_wc(gtt_phys_addr, gtt_size);
Ben Widawsky63340132013-11-04 19:32:22 -08002777 if (!dev_priv->gtt.gsm) {
2778 DRM_ERROR("Failed to map the gtt page table\n");
2779 return -ENOMEM;
2780 }
2781
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002782 scratch_page = alloc_scratch_page(dev);
2783 if (IS_ERR(scratch_page)) {
Ben Widawsky63340132013-11-04 19:32:22 -08002784 DRM_ERROR("Scratch setup failed\n");
2785 /* iounmap will also get called at remove, but meh */
2786 iounmap(dev_priv->gtt.gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002787 return PTR_ERR(scratch_page);
Ben Widawsky63340132013-11-04 19:32:22 -08002788 }
2789
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002790 dev_priv->gtt.base.scratch_page = scratch_page;
2791
2792 return 0;
Ben Widawsky63340132013-11-04 19:32:22 -08002793}
2794
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002795/* The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
2796 * bits. When using advanced contexts each context stores its own PAT, but
2797 * writing this data shouldn't be harmful even in those cases. */
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002798static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv)
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002799{
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002800 uint64_t pat;
2801
2802 pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) | /* for normal objects, no eLLC */
2803 GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) | /* for something pointing to ptes? */
2804 GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC) | /* for scanout with eLLC */
2805 GEN8_PPAT(3, GEN8_PPAT_UC) | /* Uncached objects, mostly for scanout */
2806 GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
2807 GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
2808 GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
2809 GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
2810
Rodrigo Vivid6a8b722014-11-05 16:56:36 -08002811 if (!USES_PPGTT(dev_priv->dev))
2812 /* Spec: "For GGTT, there is NO pat_sel[2:0] from the entry,
2813 * so RTL will always use the value corresponding to
2814 * pat_sel = 000".
2815 * So let's disable cache for GGTT to avoid screen corruptions.
2816 * MOCS still can be used though.
2817 * - System agent ggtt writes (i.e. cpu gtt mmaps) already work
2818 * before this patch, i.e. the same uncached + snooping access
2819 * like on gen6/7 seems to be in effect.
2820 * - So this just fixes blitter/render access. Again it looks
2821 * like it's not just uncached access, but uncached + snooping.
2822 * So we can still hold onto all our assumptions wrt cpu
2823 * clflushing on LLC machines.
2824 */
2825 pat = GEN8_PPAT(0, GEN8_PPAT_UC);
2826
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002827 /* XXX: spec defines this as 2 distinct registers. It's unclear if a 64b
2828 * write would work. */
2829 I915_WRITE(GEN8_PRIVATE_PAT, pat);
2830 I915_WRITE(GEN8_PRIVATE_PAT + 4, pat >> 32);
2831}
2832
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002833static void chv_setup_private_ppat(struct drm_i915_private *dev_priv)
2834{
2835 uint64_t pat;
2836
2837 /*
2838 * Map WB on BDW to snooped on CHV.
2839 *
2840 * Only the snoop bit has meaning for CHV, the rest is
2841 * ignored.
2842 *
Ville Syrjäläcf3d2622014-11-14 21:02:44 +02002843 * The hardware will never snoop for certain types of accesses:
2844 * - CPU GTT (GMADR->GGTT->no snoop->memory)
2845 * - PPGTT page tables
2846 * - some other special cycles
2847 *
2848 * As with BDW, we also need to consider the following for GT accesses:
2849 * "For GGTT, there is NO pat_sel[2:0] from the entry,
2850 * so RTL will always use the value corresponding to
2851 * pat_sel = 000".
2852 * Which means we must set the snoop bit in PAT entry 0
2853 * in order to keep the global status page working.
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002854 */
2855 pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
2856 GEN8_PPAT(1, 0) |
2857 GEN8_PPAT(2, 0) |
2858 GEN8_PPAT(3, 0) |
2859 GEN8_PPAT(4, CHV_PPAT_SNOOP) |
2860 GEN8_PPAT(5, CHV_PPAT_SNOOP) |
2861 GEN8_PPAT(6, CHV_PPAT_SNOOP) |
2862 GEN8_PPAT(7, CHV_PPAT_SNOOP);
2863
2864 I915_WRITE(GEN8_PRIVATE_PAT, pat);
2865 I915_WRITE(GEN8_PRIVATE_PAT + 4, pat >> 32);
2866}
2867
Ben Widawsky63340132013-11-04 19:32:22 -08002868static int gen8_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002869 u64 *gtt_total,
Ben Widawsky63340132013-11-04 19:32:22 -08002870 size_t *stolen,
2871 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002872 u64 *mappable_end)
Ben Widawsky63340132013-11-04 19:32:22 -08002873{
2874 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002875 u64 gtt_size;
Ben Widawsky63340132013-11-04 19:32:22 -08002876 u16 snb_gmch_ctl;
2877 int ret;
2878
2879 /* TODO: We're not aware of mappable constraints on gen8 yet */
2880 *mappable_base = pci_resource_start(dev->pdev, 2);
2881 *mappable_end = pci_resource_len(dev->pdev, 2);
2882
2883 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(39)))
2884 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(39));
2885
2886 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
2887
Damien Lespiau66375012014-01-09 18:02:46 +00002888 if (INTEL_INFO(dev)->gen >= 9) {
2889 *stolen = gen9_get_stolen_size(snb_gmch_ctl);
2890 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
2891 } else if (IS_CHERRYVIEW(dev)) {
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002892 *stolen = chv_get_stolen_size(snb_gmch_ctl);
2893 gtt_size = chv_get_total_gtt_size(snb_gmch_ctl);
2894 } else {
2895 *stolen = gen8_get_stolen_size(snb_gmch_ctl);
2896 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
2897 }
Ben Widawsky63340132013-11-04 19:32:22 -08002898
Michel Thierry07749ef2015-03-16 16:00:54 +00002899 *gtt_total = (gtt_size / sizeof(gen8_pte_t)) << PAGE_SHIFT;
Ben Widawsky63340132013-11-04 19:32:22 -08002900
Sumit Singh5a4e33a2015-03-17 11:39:31 +02002901 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002902 chv_setup_private_ppat(dev_priv);
2903 else
2904 bdw_setup_private_ppat(dev_priv);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002905
Ben Widawsky63340132013-11-04 19:32:22 -08002906 ret = ggtt_probe_common(dev, gtt_size);
2907
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002908 dev_priv->gtt.base.clear_range = gen8_ggtt_clear_range;
2909 dev_priv->gtt.base.insert_entries = gen8_ggtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002910 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2911 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawsky63340132013-11-04 19:32:22 -08002912
2913 return ret;
2914}
2915
Ben Widawskybaa09f52013-01-24 13:49:57 -08002916static int gen6_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002917 u64 *gtt_total,
Ben Widawsky41907dd2013-02-08 11:32:47 -08002918 size_t *stolen,
2919 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002920 u64 *mappable_end)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002921{
2922 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002923 unsigned int gtt_size;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002924 u16 snb_gmch_ctl;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002925 int ret;
2926
Ben Widawsky41907dd2013-02-08 11:32:47 -08002927 *mappable_base = pci_resource_start(dev->pdev, 2);
2928 *mappable_end = pci_resource_len(dev->pdev, 2);
2929
Ben Widawskybaa09f52013-01-24 13:49:57 -08002930 /* 64/512MB is the current min/max we actually know of, but this is just
2931 * a coarse sanity check.
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002932 */
Ben Widawsky41907dd2013-02-08 11:32:47 -08002933 if ((*mappable_end < (64<<20) || (*mappable_end > (512<<20)))) {
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002934 DRM_ERROR("Unknown GMADR size (%llx)\n",
Ben Widawskybaa09f52013-01-24 13:49:57 -08002935 dev_priv->gtt.mappable_end);
2936 return -ENXIO;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002937 }
2938
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002939 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(40)))
2940 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(40));
Ben Widawskybaa09f52013-01-24 13:49:57 -08002941 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002942
Ben Widawskyc4ae25e2013-05-01 11:00:34 -07002943 *stolen = gen6_get_stolen_size(snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002944
Ben Widawsky63340132013-11-04 19:32:22 -08002945 gtt_size = gen6_get_total_gtt_size(snb_gmch_ctl);
Michel Thierry07749ef2015-03-16 16:00:54 +00002946 *gtt_total = (gtt_size / sizeof(gen6_pte_t)) << PAGE_SHIFT;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002947
Ben Widawsky63340132013-11-04 19:32:22 -08002948 ret = ggtt_probe_common(dev, gtt_size);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002949
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002950 dev_priv->gtt.base.clear_range = gen6_ggtt_clear_range;
2951 dev_priv->gtt.base.insert_entries = gen6_ggtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002952 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2953 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002954
2955 return ret;
2956}
2957
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002958static void gen6_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08002959{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002960
2961 struct i915_gtt *gtt = container_of(vm, struct i915_gtt, base);
Ben Widawsky5ed16782013-11-25 09:54:43 -08002962
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002963 iounmap(gtt->gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002964 free_scratch_page(vm->dev, vm->scratch_page);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002965}
2966
2967static int i915_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002968 u64 *gtt_total,
Ben Widawsky41907dd2013-02-08 11:32:47 -08002969 size_t *stolen,
2970 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002971 u64 *mappable_end)
Ben Widawskybaa09f52013-01-24 13:49:57 -08002972{
2973 struct drm_i915_private *dev_priv = dev->dev_private;
2974 int ret;
2975
Ben Widawskybaa09f52013-01-24 13:49:57 -08002976 ret = intel_gmch_probe(dev_priv->bridge_dev, dev_priv->dev->pdev, NULL);
2977 if (!ret) {
2978 DRM_ERROR("failed to set up gmch\n");
2979 return -EIO;
2980 }
2981
Ben Widawsky41907dd2013-02-08 11:32:47 -08002982 intel_gtt_get(gtt_total, stolen, mappable_base, mappable_end);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002983
2984 dev_priv->gtt.do_idle_maps = needs_idle_maps(dev_priv->dev);
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002985 dev_priv->gtt.base.insert_entries = i915_ggtt_insert_entries;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002986 dev_priv->gtt.base.clear_range = i915_ggtt_clear_range;
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002987 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2988 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002989
Chris Wilsonc0a7f812013-12-30 12:16:15 +00002990 if (unlikely(dev_priv->gtt.do_idle_maps))
2991 DRM_INFO("applying Ironlake quirks for intel_iommu\n");
2992
Ben Widawskybaa09f52013-01-24 13:49:57 -08002993 return 0;
2994}
2995
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002996static void i915_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08002997{
2998 intel_gmch_remove();
2999}
3000
3001int i915_gem_gtt_init(struct drm_device *dev)
3002{
3003 struct drm_i915_private *dev_priv = dev->dev_private;
3004 struct i915_gtt *gtt = &dev_priv->gtt;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003005 int ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003006
Ben Widawskybaa09f52013-01-24 13:49:57 -08003007 if (INTEL_INFO(dev)->gen <= 5) {
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003008 gtt->gtt_probe = i915_gmch_probe;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003009 gtt->base.cleanup = i915_gmch_remove;
Ben Widawsky63340132013-11-04 19:32:22 -08003010 } else if (INTEL_INFO(dev)->gen < 8) {
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003011 gtt->gtt_probe = gen6_gmch_probe;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003012 gtt->base.cleanup = gen6_gmch_remove;
Ben Widawsky4d15c142013-07-04 11:02:06 -07003013 if (IS_HASWELL(dev) && dev_priv->ellc_size)
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003014 gtt->base.pte_encode = iris_pte_encode;
Ben Widawsky4d15c142013-07-04 11:02:06 -07003015 else if (IS_HASWELL(dev))
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003016 gtt->base.pte_encode = hsw_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003017 else if (IS_VALLEYVIEW(dev))
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003018 gtt->base.pte_encode = byt_pte_encode;
Chris Wilson350ec882013-08-06 13:17:02 +01003019 else if (INTEL_INFO(dev)->gen >= 7)
3020 gtt->base.pte_encode = ivb_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003021 else
Chris Wilson350ec882013-08-06 13:17:02 +01003022 gtt->base.pte_encode = snb_pte_encode;
Ben Widawsky63340132013-11-04 19:32:22 -08003023 } else {
3024 dev_priv->gtt.gtt_probe = gen8_gmch_probe;
3025 dev_priv->gtt.base.cleanup = gen6_gmch_remove;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003026 }
3027
Mika Kuoppalac114f762015-06-25 18:35:13 +03003028 gtt->base.dev = dev;
3029
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003030 ret = gtt->gtt_probe(dev, &gtt->base.total, &gtt->stolen_size,
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003031 &gtt->mappable_base, &gtt->mappable_end);
Ben Widawskya54c0c22013-01-24 14:45:00 -08003032 if (ret)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003033 return ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003034
Ben Widawskybaa09f52013-01-24 13:49:57 -08003035 /* GMADR is the PCI mmio aperture into the global GTT. */
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003036 DRM_INFO("Memory usable by graphics device = %lluM\n",
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003037 gtt->base.total >> 20);
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003038 DRM_DEBUG_DRIVER("GMADR size = %lldM\n", gtt->mappable_end >> 20);
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003039 DRM_DEBUG_DRIVER("GTT stolen size = %zdM\n", gtt->stolen_size >> 20);
Daniel Vetter5db6c732014-03-31 16:23:04 +02003040#ifdef CONFIG_INTEL_IOMMU
3041 if (intel_iommu_gfx_mapped)
3042 DRM_INFO("VT-d active for gfx access\n");
3043#endif
Daniel Vettercfa7c862014-04-29 11:53:58 +02003044 /*
3045 * i915.enable_ppgtt is read-only, so do an early pass to validate the
3046 * user's requested state against the hardware/driver capabilities. We
3047 * do this now so that we can print out any log messages once rather
3048 * than every time we check intel_enable_ppgtt().
3049 */
3050 i915.enable_ppgtt = sanitize_enable_ppgtt(dev, i915.enable_ppgtt);
3051 DRM_DEBUG_DRIVER("ppgtt mode: %i\n", i915.enable_ppgtt);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08003052
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003053 return 0;
Daniel Vetter644ec022012-03-26 09:45:40 +02003054}
Ben Widawsky6f65e292013-12-06 14:10:56 -08003055
Daniel Vetterfa423312015-04-14 17:35:23 +02003056void i915_gem_restore_gtt_mappings(struct drm_device *dev)
3057{
3058 struct drm_i915_private *dev_priv = dev->dev_private;
3059 struct drm_i915_gem_object *obj;
3060 struct i915_address_space *vm;
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003061 struct i915_vma *vma;
3062 bool flush;
Daniel Vetterfa423312015-04-14 17:35:23 +02003063
3064 i915_check_and_clear_faults(dev);
3065
3066 /* First fill our portion of the GTT with scratch pages */
3067 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
3068 dev_priv->gtt.base.start,
3069 dev_priv->gtt.base.total,
3070 true);
3071
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003072 /* Cache flush objects bound into GGTT and rebind them. */
3073 vm = &dev_priv->gtt.base;
Daniel Vetterfa423312015-04-14 17:35:23 +02003074 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003075 flush = false;
3076 list_for_each_entry(vma, &obj->vma_list, vma_link) {
3077 if (vma->vm != vm)
3078 continue;
Daniel Vetterfa423312015-04-14 17:35:23 +02003079
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003080 WARN_ON(i915_vma_bind(vma, obj->cache_level,
3081 PIN_UPDATE));
3082
3083 flush = true;
3084 }
3085
3086 if (flush)
3087 i915_gem_clflush_object(obj, obj->pin_display);
Daniel Vetterfa423312015-04-14 17:35:23 +02003088 }
3089
Daniel Vetterfa423312015-04-14 17:35:23 +02003090 if (INTEL_INFO(dev)->gen >= 8) {
3091 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
3092 chv_setup_private_ppat(dev_priv);
3093 else
3094 bdw_setup_private_ppat(dev_priv);
3095
3096 return;
3097 }
3098
3099 if (USES_PPGTT(dev)) {
3100 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
3101 /* TODO: Perhaps it shouldn't be gen6 specific */
3102
3103 struct i915_hw_ppgtt *ppgtt =
3104 container_of(vm, struct i915_hw_ppgtt,
3105 base);
3106
3107 if (i915_is_ggtt(vm))
3108 ppgtt = dev_priv->mm.aliasing_ppgtt;
3109
3110 gen6_write_page_range(dev_priv, &ppgtt->pd,
3111 0, ppgtt->base.total);
3112 }
3113 }
3114
3115 i915_ggtt_flush(dev_priv);
3116}
3117
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003118static struct i915_vma *
3119__i915_gem_vma_create(struct drm_i915_gem_object *obj,
3120 struct i915_address_space *vm,
3121 const struct i915_ggtt_view *ggtt_view)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003122{
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003123 struct i915_vma *vma;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003124
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003125 if (WARN_ON(i915_is_ggtt(vm) != !!ggtt_view))
3126 return ERR_PTR(-EINVAL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01003127
3128 vma = kmem_cache_zalloc(to_i915(obj->base.dev)->vmas, GFP_KERNEL);
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003129 if (vma == NULL)
3130 return ERR_PTR(-ENOMEM);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003131
Ben Widawsky6f65e292013-12-06 14:10:56 -08003132 INIT_LIST_HEAD(&vma->vma_link);
3133 INIT_LIST_HEAD(&vma->mm_list);
3134 INIT_LIST_HEAD(&vma->exec_list);
3135 vma->vm = vm;
3136 vma->obj = obj;
3137
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003138 if (i915_is_ggtt(vm))
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003139 vma->ggtt_view = *ggtt_view;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003140
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00003141 list_add_tail(&vma->vma_link, &obj->vma_list);
3142 if (!i915_is_ggtt(vm))
Michel Thierrye07f0552014-08-19 15:49:41 +01003143 i915_ppgtt_get(i915_vm_to_ppgtt(vm));
Ben Widawsky6f65e292013-12-06 14:10:56 -08003144
3145 return vma;
3146}
3147
3148struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003149i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
3150 struct i915_address_space *vm)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003151{
3152 struct i915_vma *vma;
3153
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003154 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003155 if (!vma)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003156 vma = __i915_gem_vma_create(obj, vm,
3157 i915_is_ggtt(vm) ? &i915_ggtt_view_normal : NULL);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003158
3159 return vma;
3160}
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003161
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003162struct i915_vma *
3163i915_gem_obj_lookup_or_create_ggtt_vma(struct drm_i915_gem_object *obj,
3164 const struct i915_ggtt_view *view)
3165{
3166 struct i915_address_space *ggtt = i915_obj_to_ggtt(obj);
3167 struct i915_vma *vma;
3168
3169 if (WARN_ON(!view))
3170 return ERR_PTR(-EINVAL);
3171
3172 vma = i915_gem_obj_to_ggtt_view(obj, view);
3173
3174 if (IS_ERR(vma))
3175 return vma;
3176
3177 if (!vma)
3178 vma = __i915_gem_vma_create(obj, ggtt, view);
3179
3180 return vma;
3181
3182}
3183
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003184static void
3185rotate_pages(dma_addr_t *in, unsigned int width, unsigned int height,
3186 struct sg_table *st)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003187{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003188 unsigned int column, row;
3189 unsigned int src_idx;
3190 struct scatterlist *sg = st->sgl;
3191
3192 st->nents = 0;
3193
3194 for (column = 0; column < width; column++) {
3195 src_idx = width * (height - 1) + column;
3196 for (row = 0; row < height; row++) {
3197 st->nents++;
3198 /* We don't need the pages, but need to initialize
3199 * the entries so the sg list can be happily traversed.
3200 * The only thing we need are DMA addresses.
3201 */
3202 sg_set_page(sg, NULL, PAGE_SIZE, 0);
3203 sg_dma_address(sg) = in[src_idx];
3204 sg_dma_len(sg) = PAGE_SIZE;
3205 sg = sg_next(sg);
3206 src_idx -= width;
3207 }
3208 }
3209}
3210
3211static struct sg_table *
3212intel_rotate_fb_obj_pages(struct i915_ggtt_view *ggtt_view,
3213 struct drm_i915_gem_object *obj)
3214{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003215 struct intel_rotation_info *rot_info = &ggtt_view->rotation_info;
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003216 unsigned int size_pages = rot_info->size >> PAGE_SHIFT;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003217 struct sg_page_iter sg_iter;
3218 unsigned long i;
3219 dma_addr_t *page_addr_list;
3220 struct sg_table *st;
Tvrtko Ursulin1d00dad2015-03-25 10:15:26 +00003221 int ret = -ENOMEM;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003222
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003223 /* Allocate a temporary list of source pages for random access. */
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003224 page_addr_list = drm_malloc_ab(obj->base.size / PAGE_SIZE,
3225 sizeof(dma_addr_t));
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003226 if (!page_addr_list)
3227 return ERR_PTR(ret);
3228
3229 /* Allocate target SG list. */
3230 st = kmalloc(sizeof(*st), GFP_KERNEL);
3231 if (!st)
3232 goto err_st_alloc;
3233
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003234 ret = sg_alloc_table(st, size_pages, GFP_KERNEL);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003235 if (ret)
3236 goto err_sg_alloc;
3237
3238 /* Populate source page list from the object. */
3239 i = 0;
3240 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
3241 page_addr_list[i] = sg_page_iter_dma_address(&sg_iter);
3242 i++;
3243 }
3244
3245 /* Rotate the pages. */
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003246 rotate_pages(page_addr_list,
3247 rot_info->width_pages, rot_info->height_pages,
3248 st);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003249
3250 DRM_DEBUG_KMS(
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003251 "Created rotated page mapping for object size %zu (pitch=%u, height=%u, pixel_format=0x%x, %ux%u tiles, %u pages).\n",
Tvrtko Ursulinc9f8fd22015-06-24 09:55:20 +01003252 obj->base.size, rot_info->pitch, rot_info->height,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003253 rot_info->pixel_format, rot_info->width_pages,
3254 rot_info->height_pages, size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003255
3256 drm_free_large(page_addr_list);
3257
3258 return st;
3259
3260err_sg_alloc:
3261 kfree(st);
3262err_st_alloc:
3263 drm_free_large(page_addr_list);
3264
3265 DRM_DEBUG_KMS(
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003266 "Failed to create rotated mapping for object size %zu! (%d) (pitch=%u, height=%u, pixel_format=0x%x, %ux%u tiles, %u pages)\n",
Tvrtko Ursulinc9f8fd22015-06-24 09:55:20 +01003267 obj->base.size, ret, rot_info->pitch, rot_info->height,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003268 rot_info->pixel_format, rot_info->width_pages,
3269 rot_info->height_pages, size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003270 return ERR_PTR(ret);
3271}
3272
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003273static struct sg_table *
3274intel_partial_pages(const struct i915_ggtt_view *view,
3275 struct drm_i915_gem_object *obj)
3276{
3277 struct sg_table *st;
3278 struct scatterlist *sg;
3279 struct sg_page_iter obj_sg_iter;
3280 int ret = -ENOMEM;
3281
3282 st = kmalloc(sizeof(*st), GFP_KERNEL);
3283 if (!st)
3284 goto err_st_alloc;
3285
3286 ret = sg_alloc_table(st, view->params.partial.size, GFP_KERNEL);
3287 if (ret)
3288 goto err_sg_alloc;
3289
3290 sg = st->sgl;
3291 st->nents = 0;
3292 for_each_sg_page(obj->pages->sgl, &obj_sg_iter, obj->pages->nents,
3293 view->params.partial.offset)
3294 {
3295 if (st->nents >= view->params.partial.size)
3296 break;
3297
3298 sg_set_page(sg, NULL, PAGE_SIZE, 0);
3299 sg_dma_address(sg) = sg_page_iter_dma_address(&obj_sg_iter);
3300 sg_dma_len(sg) = PAGE_SIZE;
3301
3302 sg = sg_next(sg);
3303 st->nents++;
3304 }
3305
3306 return st;
3307
3308err_sg_alloc:
3309 kfree(st);
3310err_st_alloc:
3311 return ERR_PTR(ret);
3312}
3313
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003314static int
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003315i915_get_ggtt_vma_pages(struct i915_vma *vma)
3316{
3317 int ret = 0;
3318
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003319 if (vma->ggtt_view.pages)
3320 return 0;
3321
3322 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
3323 vma->ggtt_view.pages = vma->obj->pages;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003324 else if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED)
3325 vma->ggtt_view.pages =
3326 intel_rotate_fb_obj_pages(&vma->ggtt_view, vma->obj);
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003327 else if (vma->ggtt_view.type == I915_GGTT_VIEW_PARTIAL)
3328 vma->ggtt_view.pages =
3329 intel_partial_pages(&vma->ggtt_view, vma->obj);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003330 else
3331 WARN_ONCE(1, "GGTT view %u not implemented!\n",
3332 vma->ggtt_view.type);
3333
3334 if (!vma->ggtt_view.pages) {
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003335 DRM_ERROR("Failed to get pages for GGTT view type %u!\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003336 vma->ggtt_view.type);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003337 ret = -EINVAL;
3338 } else if (IS_ERR(vma->ggtt_view.pages)) {
3339 ret = PTR_ERR(vma->ggtt_view.pages);
3340 vma->ggtt_view.pages = NULL;
3341 DRM_ERROR("Failed to get pages for VMA view type %u (%d)!\n",
3342 vma->ggtt_view.type, ret);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003343 }
3344
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003345 return ret;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003346}
3347
3348/**
3349 * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
3350 * @vma: VMA to map
3351 * @cache_level: mapping cache level
3352 * @flags: flags like global or local mapping
3353 *
3354 * DMA addresses are taken from the scatter-gather table of this object (or of
3355 * this VMA in case of non-default GGTT views) and PTE entries set up.
3356 * Note that DMA addresses are also the only part of the SG table we care about.
3357 */
3358int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
3359 u32 flags)
3360{
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003361 int ret;
3362 u32 bind_flags;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003363
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003364 if (WARN_ON(flags == 0))
3365 return -EINVAL;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003366
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003367 bind_flags = 0;
Daniel Vetter08755462015-04-20 09:04:05 -07003368 if (flags & PIN_GLOBAL)
3369 bind_flags |= GLOBAL_BIND;
3370 if (flags & PIN_USER)
3371 bind_flags |= LOCAL_BIND;
3372
3373 if (flags & PIN_UPDATE)
3374 bind_flags |= vma->bound;
3375 else
3376 bind_flags &= ~vma->bound;
3377
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003378 if (bind_flags == 0)
3379 return 0;
3380
3381 if (vma->bound == 0 && vma->vm->allocate_va_range) {
3382 trace_i915_va_alloc(vma->vm,
3383 vma->node.start,
3384 vma->node.size,
3385 VM_TO_TRACE_NAME(vma->vm));
3386
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003387 /* XXX: i915_vma_pin() will fix this +- hack */
3388 vma->pin_count++;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003389 ret = vma->vm->allocate_va_range(vma->vm,
3390 vma->node.start,
3391 vma->node.size);
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003392 vma->pin_count--;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003393 if (ret)
3394 return ret;
3395 }
3396
3397 ret = vma->vm->bind_vma(vma, cache_level, bind_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003398 if (ret)
3399 return ret;
Daniel Vetter08755462015-04-20 09:04:05 -07003400
3401 vma->bound |= bind_flags;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003402
3403 return 0;
3404}
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003405
3406/**
3407 * i915_ggtt_view_size - Get the size of a GGTT view.
3408 * @obj: Object the view is of.
3409 * @view: The view in question.
3410 *
3411 * @return The size of the GGTT view in bytes.
3412 */
3413size_t
3414i915_ggtt_view_size(struct drm_i915_gem_object *obj,
3415 const struct i915_ggtt_view *view)
3416{
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003417 if (view->type == I915_GGTT_VIEW_NORMAL) {
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003418 return obj->base.size;
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003419 } else if (view->type == I915_GGTT_VIEW_ROTATED) {
3420 return view->rotation_info.size;
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003421 } else if (view->type == I915_GGTT_VIEW_PARTIAL) {
3422 return view->params.partial.size << PAGE_SHIFT;
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003423 } else {
3424 WARN_ONCE(1, "GGTT view %u not implemented!\n", view->type);
3425 return obj->base.size;
3426 }
3427}