blob: 4a76807143b158ed09a2b85549e395186e7d7950 [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 Kuoppala5b7e4c9c2015-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 Kuoppala5b7e4c9c2015-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 Kuoppala5b7e4c9c2015-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 {
Michel Thierry25f50332015-08-07 17:40:19 +01001478 ret = __pdp_init(ppgtt->base.dev, &ppgtt->pdp);
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001479 if (ret)
1480 goto free_scratch;
1481
1482 ppgtt->base.total = 1ULL << 32;
Michel Thierry2dba3232015-07-30 11:06:23 +01001483 ppgtt->switch_mm = gen8_legacy_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001484 trace_i915_page_directory_pointer_entry_alloc(&ppgtt->base,
1485 0, 0,
1486 GEN8_PML4E_SHIFT);
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001487 }
Michel Thierry6ac18502015-07-29 17:23:46 +01001488
Michel Thierryd7b26332015-04-08 12:13:34 +01001489 return 0;
Michel Thierry6ac18502015-07-29 17:23:46 +01001490
1491free_scratch:
1492 gen8_free_scratch(&ppgtt->base);
1493 return ret;
Michel Thierryd7b26332015-04-08 12:13:34 +01001494}
1495
Ben Widawsky87d60b62013-12-06 14:11:29 -08001496static void gen6_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1497{
Ben Widawsky87d60b62013-12-06 14:11:29 -08001498 struct i915_address_space *vm = &ppgtt->base;
Michel Thierry09942c62015-04-08 12:13:30 +01001499 struct i915_page_table *unused;
Michel Thierry07749ef2015-03-16 16:00:54 +00001500 gen6_pte_t scratch_pte;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001501 uint32_t pd_entry;
Michel Thierry09942c62015-04-08 12:13:30 +01001502 uint32_t pte, pde, temp;
1503 uint32_t start = ppgtt->base.start, length = ppgtt->base.total;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001504
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001505 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1506 I915_CACHE_LLC, true, 0);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001507
Michel Thierry09942c62015-04-08 12:13:30 +01001508 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001509 u32 expected;
Michel Thierry07749ef2015-03-16 16:00:54 +00001510 gen6_pte_t *pt_vaddr;
Mika Kuoppala567047b2015-06-25 18:35:12 +03001511 const dma_addr_t pt_addr = px_dma(ppgtt->pd.page_table[pde]);
Michel Thierry09942c62015-04-08 12:13:30 +01001512 pd_entry = readl(ppgtt->pd_addr + pde);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001513 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID);
1514
1515 if (pd_entry != expected)
1516 seq_printf(m, "\tPDE #%d mismatch: Actual PDE: %x Expected PDE: %x\n",
1517 pde,
1518 pd_entry,
1519 expected);
1520 seq_printf(m, "\tPDE: %x\n", pd_entry);
1521
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001522 pt_vaddr = kmap_px(ppgtt->pd.page_table[pde]);
1523
Michel Thierry07749ef2015-03-16 16:00:54 +00001524 for (pte = 0; pte < GEN6_PTES; pte+=4) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001525 unsigned long va =
Michel Thierry07749ef2015-03-16 16:00:54 +00001526 (pde * PAGE_SIZE * GEN6_PTES) +
Ben Widawsky87d60b62013-12-06 14:11:29 -08001527 (pte * PAGE_SIZE);
1528 int i;
1529 bool found = false;
1530 for (i = 0; i < 4; i++)
1531 if (pt_vaddr[pte + i] != scratch_pte)
1532 found = true;
1533 if (!found)
1534 continue;
1535
1536 seq_printf(m, "\t\t0x%lx [%03d,%04d]: =", va, pde, pte);
1537 for (i = 0; i < 4; i++) {
1538 if (pt_vaddr[pte + i] != scratch_pte)
1539 seq_printf(m, " %08x", pt_vaddr[pte + i]);
1540 else
1541 seq_puts(m, " SCRATCH ");
1542 }
1543 seq_puts(m, "\n");
1544 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001545 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001546 }
1547}
1548
Ben Widawsky678d96f2015-03-16 16:00:56 +00001549/* Write pde (index) from the page directory @pd to the page table @pt */
Michel Thierryec565b32015-04-08 12:13:23 +01001550static void gen6_write_pde(struct i915_page_directory *pd,
1551 const int pde, struct i915_page_table *pt)
Ben Widawsky61973492013-04-08 18:43:54 -07001552{
Ben Widawsky678d96f2015-03-16 16:00:56 +00001553 /* Caller needs to make sure the write completes if necessary */
1554 struct i915_hw_ppgtt *ppgtt =
1555 container_of(pd, struct i915_hw_ppgtt, pd);
1556 u32 pd_entry;
Ben Widawsky61973492013-04-08 18:43:54 -07001557
Mika Kuoppala567047b2015-06-25 18:35:12 +03001558 pd_entry = GEN6_PDE_ADDR_ENCODE(px_dma(pt));
Ben Widawsky678d96f2015-03-16 16:00:56 +00001559 pd_entry |= GEN6_PDE_VALID;
Ben Widawsky61973492013-04-08 18:43:54 -07001560
Ben Widawsky678d96f2015-03-16 16:00:56 +00001561 writel(pd_entry, ppgtt->pd_addr + pde);
1562}
Ben Widawsky61973492013-04-08 18:43:54 -07001563
Ben Widawsky678d96f2015-03-16 16:00:56 +00001564/* Write all the page tables found in the ppgtt structure to incrementing page
1565 * directories. */
1566static void gen6_write_page_range(struct drm_i915_private *dev_priv,
Michel Thierryec565b32015-04-08 12:13:23 +01001567 struct i915_page_directory *pd,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001568 uint32_t start, uint32_t length)
1569{
Michel Thierryec565b32015-04-08 12:13:23 +01001570 struct i915_page_table *pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001571 uint32_t pde, temp;
1572
1573 gen6_for_each_pde(pt, pd, start, length, temp, pde)
1574 gen6_write_pde(pd, pde, pt);
1575
1576 /* Make sure write is complete before other code can use this page
1577 * table. Also require for WC mapped PTEs */
1578 readl(dev_priv->gtt.gsm);
Ben Widawsky3e302542013-04-23 23:15:32 -07001579}
1580
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001581static uint32_t get_pd_offset(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky3e302542013-04-23 23:15:32 -07001582{
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001583 BUG_ON(ppgtt->pd.base.ggtt_offset & 0x3f);
Ben Widawsky3e302542013-04-23 23:15:32 -07001584
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001585 return (ppgtt->pd.base.ggtt_offset / 64) << 16;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001586}
Ben Widawsky61973492013-04-08 18:43:54 -07001587
Ben Widawsky90252e52013-12-06 14:11:12 -08001588static int hsw_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001589 struct drm_i915_gem_request *req)
Ben Widawsky90252e52013-12-06 14:11:12 -08001590{
John Harrisone85b26d2015-05-29 17:43:56 +01001591 struct intel_engine_cs *ring = req->ring;
Ben Widawsky90252e52013-12-06 14:11:12 -08001592 int ret;
Ben Widawsky61973492013-04-08 18:43:54 -07001593
Ben Widawsky90252e52013-12-06 14:11:12 -08001594 /* NB: TLBs must be flushed and invalidated before a switch */
John Harrisona84c3ae2015-05-29 17:43:57 +01001595 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001596 if (ret)
1597 return ret;
1598
John Harrison5fb9de12015-05-29 17:44:07 +01001599 ret = intel_ring_begin(req, 6);
Ben Widawsky90252e52013-12-06 14:11:12 -08001600 if (ret)
1601 return ret;
1602
1603 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1604 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
1605 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1606 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
1607 intel_ring_emit(ring, get_pd_offset(ppgtt));
1608 intel_ring_emit(ring, MI_NOOP);
1609 intel_ring_advance(ring);
1610
1611 return 0;
1612}
1613
Yu Zhang71ba2d62015-02-10 19:05:54 +08001614static int vgpu_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001615 struct drm_i915_gem_request *req)
Yu Zhang71ba2d62015-02-10 19:05:54 +08001616{
John Harrisone85b26d2015-05-29 17:43:56 +01001617 struct intel_engine_cs *ring = req->ring;
Yu Zhang71ba2d62015-02-10 19:05:54 +08001618 struct drm_i915_private *dev_priv = to_i915(ppgtt->base.dev);
1619
1620 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1621 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1622 return 0;
1623}
1624
Ben Widawsky48a10382013-12-06 14:11:11 -08001625static int gen7_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001626 struct drm_i915_gem_request *req)
Ben Widawsky48a10382013-12-06 14:11:11 -08001627{
John Harrisone85b26d2015-05-29 17:43:56 +01001628 struct intel_engine_cs *ring = req->ring;
Ben Widawsky48a10382013-12-06 14:11:11 -08001629 int ret;
1630
Ben Widawsky48a10382013-12-06 14:11:11 -08001631 /* NB: TLBs must be flushed and invalidated before a switch */
John Harrisona84c3ae2015-05-29 17:43:57 +01001632 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky48a10382013-12-06 14:11:11 -08001633 if (ret)
1634 return ret;
1635
John Harrison5fb9de12015-05-29 17:44:07 +01001636 ret = intel_ring_begin(req, 6);
Ben Widawsky48a10382013-12-06 14:11:11 -08001637 if (ret)
1638 return ret;
1639
1640 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1641 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
1642 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1643 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
1644 intel_ring_emit(ring, get_pd_offset(ppgtt));
1645 intel_ring_emit(ring, MI_NOOP);
1646 intel_ring_advance(ring);
1647
Ben Widawsky90252e52013-12-06 14:11:12 -08001648 /* XXX: RCS is the only one to auto invalidate the TLBs? */
1649 if (ring->id != RCS) {
John Harrisona84c3ae2015-05-29 17:43:57 +01001650 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001651 if (ret)
1652 return ret;
1653 }
1654
Ben Widawsky48a10382013-12-06 14:11:11 -08001655 return 0;
1656}
1657
Ben Widawskyeeb94882013-12-06 14:11:10 -08001658static int gen6_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001659 struct drm_i915_gem_request *req)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001660{
John Harrisone85b26d2015-05-29 17:43:56 +01001661 struct intel_engine_cs *ring = req->ring;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001662 struct drm_device *dev = ppgtt->base.dev;
1663 struct drm_i915_private *dev_priv = dev->dev_private;
1664
Ben Widawsky48a10382013-12-06 14:11:11 -08001665
Ben Widawskyeeb94882013-12-06 14:11:10 -08001666 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1667 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1668
1669 POSTING_READ(RING_PP_DIR_DCLV(ring));
1670
1671 return 0;
1672}
1673
Daniel Vetter82460d92014-08-06 20:19:53 +02001674static void gen8_ppgtt_enable(struct drm_device *dev)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001675{
Ben Widawskyeeb94882013-12-06 14:11:10 -08001676 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001677 struct intel_engine_cs *ring;
Daniel Vetter82460d92014-08-06 20:19:53 +02001678 int j;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001679
1680 for_each_ring(ring, dev_priv, j) {
Michel Thierry2dba3232015-07-30 11:06:23 +01001681 u32 four_level = USES_FULL_48BIT_PPGTT(dev) ? GEN8_GFX_PPGTT_48B : 0;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001682 I915_WRITE(RING_MODE_GEN7(ring),
Michel Thierry2dba3232015-07-30 11:06:23 +01001683 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE | four_level));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001684 }
Ben Widawskyeeb94882013-12-06 14:11:10 -08001685}
1686
Daniel Vetter82460d92014-08-06 20:19:53 +02001687static void gen7_ppgtt_enable(struct drm_device *dev)
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001688{
Jani Nikula50227e12014-03-31 14:27:21 +03001689 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001690 struct intel_engine_cs *ring;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001691 uint32_t ecochk, ecobits;
1692 int i;
1693
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001694 ecobits = I915_READ(GAC_ECO_BITS);
1695 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
1696
1697 ecochk = I915_READ(GAM_ECOCHK);
1698 if (IS_HASWELL(dev)) {
1699 ecochk |= ECOCHK_PPGTT_WB_HSW;
1700 } else {
1701 ecochk |= ECOCHK_PPGTT_LLC_IVB;
1702 ecochk &= ~ECOCHK_PPGTT_GFDT_IVB;
1703 }
1704 I915_WRITE(GAM_ECOCHK, ecochk);
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001705
Ben Widawsky61973492013-04-08 18:43:54 -07001706 for_each_ring(ring, dev_priv, i) {
Ben Widawskyeeb94882013-12-06 14:11:10 -08001707 /* GFX_MODE is per-ring on gen7+ */
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001708 I915_WRITE(RING_MODE_GEN7(ring),
1709 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001710 }
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001711}
1712
Daniel Vetter82460d92014-08-06 20:19:53 +02001713static void gen6_ppgtt_enable(struct drm_device *dev)
Ben Widawsky61973492013-04-08 18:43:54 -07001714{
Jani Nikula50227e12014-03-31 14:27:21 +03001715 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001716 uint32_t ecochk, gab_ctl, ecobits;
Ben Widawsky61973492013-04-08 18:43:54 -07001717
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001718 ecobits = I915_READ(GAC_ECO_BITS);
1719 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_SNB_BIT |
1720 ECOBITS_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001721
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001722 gab_ctl = I915_READ(GAB_CTL);
1723 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
Ben Widawsky61973492013-04-08 18:43:54 -07001724
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001725 ecochk = I915_READ(GAM_ECOCHK);
1726 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT | ECOCHK_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001727
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001728 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001729}
1730
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001731/* PPGTT support for Sandybdrige/Gen6 and later */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001732static void gen6_ppgtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08001733 uint64_t start,
1734 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07001735 bool use_scratch)
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001736{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001737 struct i915_hw_ppgtt *ppgtt =
1738 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +00001739 gen6_pte_t *pt_vaddr, scratch_pte;
Ben Widawsky782f1492014-02-20 11:50:33 -08001740 unsigned first_entry = start >> PAGE_SHIFT;
1741 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001742 unsigned act_pt = first_entry / GEN6_PTES;
1743 unsigned first_pte = first_entry % GEN6_PTES;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001744 unsigned last_pte, i;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001745
Mika Kuoppalac114f762015-06-25 18:35:13 +03001746 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1747 I915_CACHE_LLC, true, 0);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001748
Daniel Vetter7bddb012012-02-09 17:15:47 +01001749 while (num_entries) {
1750 last_pte = first_pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +00001751 if (last_pte > GEN6_PTES)
1752 last_pte = GEN6_PTES;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001753
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001754 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001755
1756 for (i = first_pte; i < last_pte; i++)
1757 pt_vaddr[i] = scratch_pte;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001758
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001759 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001760
Daniel Vetter7bddb012012-02-09 17:15:47 +01001761 num_entries -= last_pte - first_pte;
1762 first_pte = 0;
Daniel Vettera15326a2013-03-19 23:48:39 +01001763 act_pt++;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001764 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001765}
1766
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001767static void gen6_ppgtt_insert_entries(struct i915_address_space *vm,
Daniel Vetterdef886c2013-01-24 14:44:56 -08001768 struct sg_table *pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08001769 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05301770 enum i915_cache_level cache_level, u32 flags)
Daniel Vetterdef886c2013-01-24 14:44:56 -08001771{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001772 struct i915_hw_ppgtt *ppgtt =
1773 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +00001774 gen6_pte_t *pt_vaddr;
Ben Widawsky782f1492014-02-20 11:50:33 -08001775 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001776 unsigned act_pt = first_entry / GEN6_PTES;
1777 unsigned act_pte = first_entry % GEN6_PTES;
Imre Deak6e995e22013-02-18 19:28:04 +02001778 struct sg_page_iter sg_iter;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001779
Chris Wilsoncc797142013-12-31 15:50:30 +00001780 pt_vaddr = NULL;
Imre Deak6e995e22013-02-18 19:28:04 +02001781 for_each_sg_page(pages->sgl, &sg_iter, pages->nents, 0) {
Chris Wilsoncc797142013-12-31 15:50:30 +00001782 if (pt_vaddr == NULL)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001783 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001784
Chris Wilsoncc797142013-12-31 15:50:30 +00001785 pt_vaddr[act_pte] =
1786 vm->pte_encode(sg_page_iter_dma_address(&sg_iter),
Akash Goel24f3a8c2014-06-17 10:59:42 +05301787 cache_level, true, flags);
1788
Michel Thierry07749ef2015-03-16 16:00:54 +00001789 if (++act_pte == GEN6_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001790 kunmap_px(ppgtt, pt_vaddr);
Chris Wilsoncc797142013-12-31 15:50:30 +00001791 pt_vaddr = NULL;
Daniel Vettera15326a2013-03-19 23:48:39 +01001792 act_pt++;
Imre Deak6e995e22013-02-18 19:28:04 +02001793 act_pte = 0;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001794 }
Daniel Vetterdef886c2013-01-24 14:44:56 -08001795 }
Chris Wilsoncc797142013-12-31 15:50:30 +00001796 if (pt_vaddr)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001797 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001798}
1799
Ben Widawsky678d96f2015-03-16 16:00:56 +00001800static int gen6_alloc_va_range(struct i915_address_space *vm,
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001801 uint64_t start_in, uint64_t length_in)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001802{
Michel Thierry4933d512015-03-24 15:46:22 +00001803 DECLARE_BITMAP(new_page_tables, I915_PDES);
1804 struct drm_device *dev = vm->dev;
1805 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001806 struct i915_hw_ppgtt *ppgtt =
1807 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierryec565b32015-04-08 12:13:23 +01001808 struct i915_page_table *pt;
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001809 uint32_t start, length, start_save, length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001810 uint32_t pde, temp;
Michel Thierry4933d512015-03-24 15:46:22 +00001811 int ret;
1812
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001813 if (WARN_ON(start_in + length_in > ppgtt->base.total))
1814 return -ENODEV;
1815
1816 start = start_save = start_in;
1817 length = length_save = length_in;
Michel Thierry4933d512015-03-24 15:46:22 +00001818
1819 bitmap_zero(new_page_tables, I915_PDES);
1820
1821 /* The allocation is done in two stages so that we can bail out with
1822 * minimal amount of pain. The first stage finds new page tables that
1823 * need allocation. The second stage marks use ptes within the page
1824 * tables.
1825 */
1826 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001827 if (pt != vm->scratch_pt) {
Michel Thierry4933d512015-03-24 15:46:22 +00001828 WARN_ON(bitmap_empty(pt->used_ptes, GEN6_PTES));
1829 continue;
1830 }
1831
1832 /* We've already allocated a page table */
1833 WARN_ON(!bitmap_empty(pt->used_ptes, GEN6_PTES));
1834
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001835 pt = alloc_pt(dev);
Michel Thierry4933d512015-03-24 15:46:22 +00001836 if (IS_ERR(pt)) {
1837 ret = PTR_ERR(pt);
1838 goto unwind_out;
1839 }
1840
1841 gen6_initialize_pt(vm, pt);
1842
1843 ppgtt->pd.page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001844 __set_bit(pde, new_page_tables);
Michel Thierry72744cb2015-03-24 15:46:23 +00001845 trace_i915_page_table_entry_alloc(vm, pde, start, GEN6_PDE_SHIFT);
Michel Thierry4933d512015-03-24 15:46:22 +00001846 }
1847
1848 start = start_save;
1849 length = length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001850
1851 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
1852 DECLARE_BITMAP(tmp_bitmap, GEN6_PTES);
1853
1854 bitmap_zero(tmp_bitmap, GEN6_PTES);
1855 bitmap_set(tmp_bitmap, gen6_pte_index(start),
1856 gen6_pte_count(start, length));
1857
Mika Kuoppala966082c2015-06-25 18:35:19 +03001858 if (__test_and_clear_bit(pde, new_page_tables))
Michel Thierry4933d512015-03-24 15:46:22 +00001859 gen6_write_pde(&ppgtt->pd, pde, pt);
1860
Michel Thierry72744cb2015-03-24 15:46:23 +00001861 trace_i915_page_table_entry_map(vm, pde, pt,
1862 gen6_pte_index(start),
1863 gen6_pte_count(start, length),
1864 GEN6_PTES);
Michel Thierry4933d512015-03-24 15:46:22 +00001865 bitmap_or(pt->used_ptes, tmp_bitmap, pt->used_ptes,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001866 GEN6_PTES);
1867 }
1868
Michel Thierry4933d512015-03-24 15:46:22 +00001869 WARN_ON(!bitmap_empty(new_page_tables, I915_PDES));
1870
1871 /* Make sure write is complete before other code can use this page
1872 * table. Also require for WC mapped PTEs */
1873 readl(dev_priv->gtt.gsm);
1874
Ben Widawsky563222a2015-03-19 12:53:28 +00001875 mark_tlbs_dirty(ppgtt);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001876 return 0;
Michel Thierry4933d512015-03-24 15:46:22 +00001877
1878unwind_out:
1879 for_each_set_bit(pde, new_page_tables, I915_PDES) {
Michel Thierryec565b32015-04-08 12:13:23 +01001880 struct i915_page_table *pt = ppgtt->pd.page_table[pde];
Michel Thierry4933d512015-03-24 15:46:22 +00001881
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001882 ppgtt->pd.page_table[pde] = vm->scratch_pt;
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001883 free_pt(vm->dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001884 }
1885
1886 mark_tlbs_dirty(ppgtt);
1887 return ret;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001888}
1889
Mika Kuoppala8776f022015-06-30 18:16:40 +03001890static int gen6_init_scratch(struct i915_address_space *vm)
1891{
1892 struct drm_device *dev = vm->dev;
1893
1894 vm->scratch_page = alloc_scratch_page(dev);
1895 if (IS_ERR(vm->scratch_page))
1896 return PTR_ERR(vm->scratch_page);
1897
1898 vm->scratch_pt = alloc_pt(dev);
1899 if (IS_ERR(vm->scratch_pt)) {
1900 free_scratch_page(dev, vm->scratch_page);
1901 return PTR_ERR(vm->scratch_pt);
1902 }
1903
1904 gen6_initialize_pt(vm, vm->scratch_pt);
1905
1906 return 0;
1907}
1908
1909static void gen6_free_scratch(struct i915_address_space *vm)
1910{
1911 struct drm_device *dev = vm->dev;
1912
1913 free_pt(dev, vm->scratch_pt);
1914 free_scratch_page(dev, vm->scratch_page);
1915}
1916
Daniel Vetter061dd492015-04-14 17:35:13 +02001917static void gen6_ppgtt_cleanup(struct i915_address_space *vm)
Ben Widawskya00d8252014-02-19 22:05:48 -08001918{
Daniel Vetter061dd492015-04-14 17:35:13 +02001919 struct i915_hw_ppgtt *ppgtt =
1920 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry09942c62015-04-08 12:13:30 +01001921 struct i915_page_table *pt;
1922 uint32_t pde;
Daniel Vetter3440d262013-01-24 13:49:56 -08001923
Daniel Vetter061dd492015-04-14 17:35:13 +02001924 drm_mm_remove_node(&ppgtt->node);
1925
Michel Thierry09942c62015-04-08 12:13:30 +01001926 gen6_for_all_pdes(pt, ppgtt, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001927 if (pt != vm->scratch_pt)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001928 free_pt(ppgtt->base.dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001929 }
1930
Mika Kuoppala8776f022015-06-30 18:16:40 +03001931 gen6_free_scratch(vm);
Daniel Vetter3440d262013-01-24 13:49:56 -08001932}
1933
Ben Widawskyb1465202014-02-19 22:05:49 -08001934static int gen6_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08001935{
Mika Kuoppala8776f022015-06-30 18:16:40 +03001936 struct i915_address_space *vm = &ppgtt->base;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001937 struct drm_device *dev = ppgtt->base.dev;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001938 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskye3cc1992013-12-06 14:11:08 -08001939 bool retried = false;
Ben Widawskyb1465202014-02-19 22:05:49 -08001940 int ret;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001941
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001942 /* PPGTT PDEs reside in the GGTT and consists of 512 entries. The
1943 * allocator works in address space sizes, so it's multiplied by page
1944 * size. We allocate at the top of the GTT to avoid fragmentation.
1945 */
1946 BUG_ON(!drm_mm_initialized(&dev_priv->gtt.base.mm));
Michel Thierry4933d512015-03-24 15:46:22 +00001947
Mika Kuoppala8776f022015-06-30 18:16:40 +03001948 ret = gen6_init_scratch(vm);
1949 if (ret)
1950 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00001951
Ben Widawskye3cc1992013-12-06 14:11:08 -08001952alloc:
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001953 ret = drm_mm_insert_node_in_range_generic(&dev_priv->gtt.base.mm,
1954 &ppgtt->node, GEN6_PD_SIZE,
1955 GEN6_PD_ALIGN, 0,
1956 0, dev_priv->gtt.base.total,
Ben Widawsky3e8b5ae2014-05-06 22:21:30 -07001957 DRM_MM_TOPDOWN);
Ben Widawskye3cc1992013-12-06 14:11:08 -08001958 if (ret == -ENOSPC && !retried) {
1959 ret = i915_gem_evict_something(dev, &dev_priv->gtt.base,
1960 GEN6_PD_SIZE, GEN6_PD_ALIGN,
Chris Wilsond23db882014-05-23 08:48:08 +02001961 I915_CACHE_NONE,
1962 0, dev_priv->gtt.base.total,
1963 0);
Ben Widawskye3cc1992013-12-06 14:11:08 -08001964 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001965 goto err_out;
Ben Widawskye3cc1992013-12-06 14:11:08 -08001966
1967 retried = true;
1968 goto alloc;
1969 }
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001970
Ben Widawskyc8c26622015-01-22 17:01:25 +00001971 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001972 goto err_out;
1973
Ben Widawskyc8c26622015-01-22 17:01:25 +00001974
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001975 if (ppgtt->node.start < dev_priv->gtt.mappable_end)
1976 DRM_DEBUG("Forced to use aperture for PDEs\n");
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001977
Ben Widawskyc8c26622015-01-22 17:01:25 +00001978 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001979
1980err_out:
Mika Kuoppala8776f022015-06-30 18:16:40 +03001981 gen6_free_scratch(vm);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001982 return ret;
Ben Widawskyb1465202014-02-19 22:05:49 -08001983}
1984
Ben Widawskyb1465202014-02-19 22:05:49 -08001985static int gen6_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt)
1986{
kbuild test robot2f2cf682015-03-27 19:26:35 +08001987 return gen6_ppgtt_allocate_page_directories(ppgtt);
Ben Widawskyb1465202014-02-19 22:05:49 -08001988}
1989
Michel Thierry4933d512015-03-24 15:46:22 +00001990static void gen6_scratch_va_range(struct i915_hw_ppgtt *ppgtt,
1991 uint64_t start, uint64_t length)
1992{
Michel Thierryec565b32015-04-08 12:13:23 +01001993 struct i915_page_table *unused;
Michel Thierry4933d512015-03-24 15:46:22 +00001994 uint32_t pde, temp;
1995
1996 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde)
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001997 ppgtt->pd.page_table[pde] = ppgtt->base.scratch_pt;
Michel Thierry4933d512015-03-24 15:46:22 +00001998}
1999
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002000static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawskyb1465202014-02-19 22:05:49 -08002001{
2002 struct drm_device *dev = ppgtt->base.dev;
2003 struct drm_i915_private *dev_priv = dev->dev_private;
2004 int ret;
2005
2006 ppgtt->base.pte_encode = dev_priv->gtt.base.pte_encode;
Ben Widawsky48a10382013-12-06 14:11:11 -08002007 if (IS_GEN6(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002008 ppgtt->switch_mm = gen6_mm_switch;
Ben Widawsky90252e52013-12-06 14:11:12 -08002009 } else if (IS_HASWELL(dev)) {
Ben Widawsky90252e52013-12-06 14:11:12 -08002010 ppgtt->switch_mm = hsw_mm_switch;
Ben Widawsky48a10382013-12-06 14:11:11 -08002011 } else if (IS_GEN7(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002012 ppgtt->switch_mm = gen7_mm_switch;
2013 } else
Ben Widawskyb4a74e32013-12-06 14:11:09 -08002014 BUG();
Ben Widawskyb1465202014-02-19 22:05:49 -08002015
Yu Zhang71ba2d62015-02-10 19:05:54 +08002016 if (intel_vgpu_active(dev))
2017 ppgtt->switch_mm = vgpu_mm_switch;
2018
Ben Widawskyb1465202014-02-19 22:05:49 -08002019 ret = gen6_ppgtt_alloc(ppgtt);
2020 if (ret)
2021 return ret;
2022
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002023 ppgtt->base.allocate_va_range = gen6_alloc_va_range;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002024 ppgtt->base.clear_range = gen6_ppgtt_clear_range;
2025 ppgtt->base.insert_entries = gen6_ppgtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002026 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
2027 ppgtt->base.bind_vma = ppgtt_bind_vma;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002028 ppgtt->base.cleanup = gen6_ppgtt_cleanup;
Ben Widawsky686e1f62013-11-25 09:54:34 -08002029 ppgtt->base.start = 0;
Michel Thierry09942c62015-04-08 12:13:30 +01002030 ppgtt->base.total = I915_PDES * GEN6_PTES * PAGE_SIZE;
Ben Widawskyb1465202014-02-19 22:05:49 -08002031 ppgtt->debug_dump = gen6_dump_ppgtt;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002032
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002033 ppgtt->pd.base.ggtt_offset =
Michel Thierry07749ef2015-03-16 16:00:54 +00002034 ppgtt->node.start / PAGE_SIZE * sizeof(gen6_pte_t);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002035
Ben Widawsky678d96f2015-03-16 16:00:56 +00002036 ppgtt->pd_addr = (gen6_pte_t __iomem *)dev_priv->gtt.gsm +
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002037 ppgtt->pd.base.ggtt_offset / sizeof(gen6_pte_t);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002038
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002039 gen6_scratch_va_range(ppgtt, 0, ppgtt->base.total);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002040
Ben Widawsky678d96f2015-03-16 16:00:56 +00002041 gen6_write_page_range(dev_priv, &ppgtt->pd, 0, ppgtt->base.total);
2042
Thierry Reding440fd522015-01-23 09:05:06 +01002043 DRM_DEBUG_DRIVER("Allocated pde space (%lldM) at GTT entry: %llx\n",
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002044 ppgtt->node.size >> 20,
2045 ppgtt->node.start / PAGE_SIZE);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002046
Daniel Vetterfa76da32014-08-06 20:19:54 +02002047 DRM_DEBUG("Adding PPGTT at offset %x\n",
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002048 ppgtt->pd.base.ggtt_offset << 10);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002049
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002050 return 0;
Daniel Vetter3440d262013-01-24 13:49:56 -08002051}
2052
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002053static int __hw_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08002054{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002055 ppgtt->base.dev = dev;
Daniel Vetter3440d262013-01-24 13:49:56 -08002056
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002057 if (INTEL_INFO(dev)->gen < 8)
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002058 return gen6_ppgtt_init(ppgtt);
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002059 else
Michel Thierryd7b26332015-04-08 12:13:34 +01002060 return gen8_ppgtt_init(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002061}
Mika Kuoppalac114f762015-06-25 18:35:13 +03002062
Daniel Vetterfa76da32014-08-06 20:19:54 +02002063int i915_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
2064{
2065 struct drm_i915_private *dev_priv = dev->dev_private;
2066 int ret = 0;
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002067
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002068 ret = __hw_ppgtt_init(dev, ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002069 if (ret == 0) {
Ben Widawskyc7c48df2013-12-06 14:11:15 -08002070 kref_init(&ppgtt->ref);
Ben Widawsky93bd8642013-07-16 16:50:06 -07002071 drm_mm_init(&ppgtt->base.mm, ppgtt->base.start,
2072 ppgtt->base.total);
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08002073 i915_init_vm(dev_priv, &ppgtt->base);
Ben Widawsky93bd8642013-07-16 16:50:06 -07002074 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002075
2076 return ret;
2077}
2078
Daniel Vetter82460d92014-08-06 20:19:53 +02002079int i915_ppgtt_init_hw(struct drm_device *dev)
2080{
Thomas Daniel671b50132014-08-20 16:24:50 +01002081 /* In the case of execlists, PPGTT is enabled by the context descriptor
2082 * and the PDPs are contained within the context itself. We don't
2083 * need to do anything here. */
2084 if (i915.enable_execlists)
2085 return 0;
2086
Daniel Vetter82460d92014-08-06 20:19:53 +02002087 if (!USES_PPGTT(dev))
2088 return 0;
2089
2090 if (IS_GEN6(dev))
2091 gen6_ppgtt_enable(dev);
2092 else if (IS_GEN7(dev))
2093 gen7_ppgtt_enable(dev);
2094 else if (INTEL_INFO(dev)->gen >= 8)
2095 gen8_ppgtt_enable(dev);
2096 else
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01002097 MISSING_CASE(INTEL_INFO(dev)->gen);
Daniel Vetter82460d92014-08-06 20:19:53 +02002098
John Harrison4ad2fd82015-06-18 13:11:20 +01002099 return 0;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002100}
John Harrison4ad2fd82015-06-18 13:11:20 +01002101
John Harrisonb3dd6b92015-05-29 17:43:40 +01002102int i915_ppgtt_init_ring(struct drm_i915_gem_request *req)
John Harrison4ad2fd82015-06-18 13:11:20 +01002103{
John Harrisonb3dd6b92015-05-29 17:43:40 +01002104 struct drm_i915_private *dev_priv = req->ring->dev->dev_private;
John Harrison4ad2fd82015-06-18 13:11:20 +01002105 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2106
2107 if (i915.enable_execlists)
2108 return 0;
2109
2110 if (!ppgtt)
2111 return 0;
2112
John Harrisone85b26d2015-05-29 17:43:56 +01002113 return ppgtt->switch_mm(ppgtt, req);
John Harrison4ad2fd82015-06-18 13:11:20 +01002114}
2115
Daniel Vetter4d884702014-08-06 15:04:47 +02002116struct i915_hw_ppgtt *
2117i915_ppgtt_create(struct drm_device *dev, struct drm_i915_file_private *fpriv)
2118{
2119 struct i915_hw_ppgtt *ppgtt;
2120 int ret;
2121
2122 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2123 if (!ppgtt)
2124 return ERR_PTR(-ENOMEM);
2125
2126 ret = i915_ppgtt_init(dev, ppgtt);
2127 if (ret) {
2128 kfree(ppgtt);
2129 return ERR_PTR(ret);
2130 }
2131
2132 ppgtt->file_priv = fpriv;
2133
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002134 trace_i915_ppgtt_create(&ppgtt->base);
2135
Daniel Vetter4d884702014-08-06 15:04:47 +02002136 return ppgtt;
2137}
2138
Daniel Vetteree960be2014-08-06 15:04:45 +02002139void i915_ppgtt_release(struct kref *kref)
2140{
2141 struct i915_hw_ppgtt *ppgtt =
2142 container_of(kref, struct i915_hw_ppgtt, ref);
2143
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002144 trace_i915_ppgtt_release(&ppgtt->base);
2145
Daniel Vetteree960be2014-08-06 15:04:45 +02002146 /* vmas should already be unbound */
2147 WARN_ON(!list_empty(&ppgtt->base.active_list));
2148 WARN_ON(!list_empty(&ppgtt->base.inactive_list));
2149
Daniel Vetter19dd1202014-08-06 15:04:55 +02002150 list_del(&ppgtt->base.global_link);
2151 drm_mm_takedown(&ppgtt->base.mm);
2152
Daniel Vetteree960be2014-08-06 15:04:45 +02002153 ppgtt->base.cleanup(&ppgtt->base);
2154 kfree(ppgtt);
2155}
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002156
Ben Widawskya81cc002013-01-18 12:30:31 -08002157extern int intel_iommu_gfx_mapped;
2158/* Certain Gen5 chipsets require require idling the GPU before
2159 * unmapping anything from the GTT when VT-d is enabled.
2160 */
Daniel Vetter2c642b02015-04-14 17:35:26 +02002161static bool needs_idle_maps(struct drm_device *dev)
Ben Widawskya81cc002013-01-18 12:30:31 -08002162{
2163#ifdef CONFIG_INTEL_IOMMU
2164 /* Query intel_iommu to see if we need the workaround. Presumably that
2165 * was loaded first.
2166 */
2167 if (IS_GEN5(dev) && IS_MOBILE(dev) && intel_iommu_gfx_mapped)
2168 return true;
2169#endif
2170 return false;
2171}
2172
Ben Widawsky5c042282011-10-17 15:51:55 -07002173static bool do_idling(struct drm_i915_private *dev_priv)
2174{
2175 bool ret = dev_priv->mm.interruptible;
2176
Ben Widawskya81cc002013-01-18 12:30:31 -08002177 if (unlikely(dev_priv->gtt.do_idle_maps)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002178 dev_priv->mm.interruptible = false;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002179 if (i915_gpu_idle(dev_priv->dev)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002180 DRM_ERROR("Couldn't idle GPU\n");
2181 /* Wait a bit, in hopes it avoids the hang */
2182 udelay(10);
2183 }
2184 }
2185
2186 return ret;
2187}
2188
2189static void undo_idling(struct drm_i915_private *dev_priv, bool interruptible)
2190{
Ben Widawskya81cc002013-01-18 12:30:31 -08002191 if (unlikely(dev_priv->gtt.do_idle_maps))
Ben Widawsky5c042282011-10-17 15:51:55 -07002192 dev_priv->mm.interruptible = interruptible;
2193}
2194
Ben Widawsky828c7902013-10-16 09:21:30 -07002195void i915_check_and_clear_faults(struct drm_device *dev)
2196{
2197 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002198 struct intel_engine_cs *ring;
Ben Widawsky828c7902013-10-16 09:21:30 -07002199 int i;
2200
2201 if (INTEL_INFO(dev)->gen < 6)
2202 return;
2203
2204 for_each_ring(ring, dev_priv, i) {
2205 u32 fault_reg;
2206 fault_reg = I915_READ(RING_FAULT_REG(ring));
2207 if (fault_reg & RING_FAULT_VALID) {
2208 DRM_DEBUG_DRIVER("Unexpected fault\n"
Paulo Zanoni59a5d292014-10-30 15:52:45 -02002209 "\tAddr: 0x%08lx\n"
Ben Widawsky828c7902013-10-16 09:21:30 -07002210 "\tAddress space: %s\n"
2211 "\tSource ID: %d\n"
2212 "\tType: %d\n",
2213 fault_reg & PAGE_MASK,
2214 fault_reg & RING_FAULT_GTTSEL_MASK ? "GGTT" : "PPGTT",
2215 RING_FAULT_SRCID(fault_reg),
2216 RING_FAULT_FAULT_TYPE(fault_reg));
2217 I915_WRITE(RING_FAULT_REG(ring),
2218 fault_reg & ~RING_FAULT_VALID);
2219 }
2220 }
2221 POSTING_READ(RING_FAULT_REG(&dev_priv->ring[RCS]));
2222}
2223
Chris Wilson91e56492014-09-25 10:13:12 +01002224static void i915_ggtt_flush(struct drm_i915_private *dev_priv)
2225{
2226 if (INTEL_INFO(dev_priv->dev)->gen < 6) {
2227 intel_gtt_chipset_flush();
2228 } else {
2229 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2230 POSTING_READ(GFX_FLSH_CNTL_GEN6);
2231 }
2232}
2233
Ben Widawsky828c7902013-10-16 09:21:30 -07002234void i915_gem_suspend_gtt_mappings(struct drm_device *dev)
2235{
2236 struct drm_i915_private *dev_priv = dev->dev_private;
2237
2238 /* Don't bother messing with faults pre GEN6 as we have little
2239 * documentation supporting that it's a good idea.
2240 */
2241 if (INTEL_INFO(dev)->gen < 6)
2242 return;
2243
2244 i915_check_and_clear_faults(dev);
2245
2246 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002247 dev_priv->gtt.base.start,
2248 dev_priv->gtt.base.total,
Daniel Vettere568af12014-03-26 20:08:20 +01002249 true);
Chris Wilson91e56492014-09-25 10:13:12 +01002250
2251 i915_ggtt_flush(dev_priv);
Ben Widawsky828c7902013-10-16 09:21:30 -07002252}
2253
Daniel Vetter74163902012-02-15 23:50:21 +01002254int i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002255{
Chris Wilson9da3da62012-06-01 15:20:22 +01002256 if (!dma_map_sg(&obj->base.dev->pdev->dev,
2257 obj->pages->sgl, obj->pages->nents,
2258 PCI_DMA_BIDIRECTIONAL))
2259 return -ENOSPC;
2260
2261 return 0;
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002262}
2263
Daniel Vetter2c642b02015-04-14 17:35:26 +02002264static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002265{
2266#ifdef writeq
2267 writeq(pte, addr);
2268#else
2269 iowrite32((u32)pte, addr);
2270 iowrite32(pte >> 32, addr + 4);
2271#endif
2272}
2273
2274static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
2275 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002276 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302277 enum i915_cache_level level, u32 unused)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002278{
2279 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002280 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002281 gen8_pte_t __iomem *gtt_entries =
2282 (gen8_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002283 int i = 0;
2284 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002285 dma_addr_t addr = 0; /* shut up gcc */
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002286
2287 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
2288 addr = sg_dma_address(sg_iter.sg) +
2289 (sg_iter.sg_pgoffset << PAGE_SHIFT);
2290 gen8_set_pte(&gtt_entries[i],
2291 gen8_pte_encode(addr, level, true));
2292 i++;
2293 }
2294
2295 /*
2296 * XXX: This serves as a posting read to make sure that the PTE has
2297 * actually been updated. There is some concern that even though
2298 * registers and PTEs are within the same BAR that they are potentially
2299 * of NUMA access patterns. Therefore, even with the way we assume
2300 * hardware should work, we must keep this posting read for paranoia.
2301 */
2302 if (i != 0)
2303 WARN_ON(readq(&gtt_entries[i-1])
2304 != gen8_pte_encode(addr, level, true));
2305
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002306 /* This next bit makes the above posting read even more important. We
2307 * want to flush the TLBs only after we're certain all the PTE updates
2308 * have finished.
2309 */
2310 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2311 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002312}
2313
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002314/*
2315 * Binds an object into the global gtt with the specified cache level. The object
2316 * will be accessible to the GPU via commands whose operands reference offsets
2317 * within the global GTT as well as accessible by the GPU through the GMADR
2318 * mapped BAR (dev_priv->mm.gtt->gtt).
2319 */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002320static void gen6_ggtt_insert_entries(struct i915_address_space *vm,
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002321 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002322 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302323 enum i915_cache_level level, u32 flags)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002324{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002325 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002326 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002327 gen6_pte_t __iomem *gtt_entries =
2328 (gen6_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
Imre Deak6e995e22013-02-18 19:28:04 +02002329 int i = 0;
2330 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002331 dma_addr_t addr = 0;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002332
Imre Deak6e995e22013-02-18 19:28:04 +02002333 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02002334 addr = sg_page_iter_dma_address(&sg_iter);
Akash Goel24f3a8c2014-06-17 10:59:42 +05302335 iowrite32(vm->pte_encode(addr, level, true, flags), &gtt_entries[i]);
Imre Deak6e995e22013-02-18 19:28:04 +02002336 i++;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002337 }
2338
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002339 /* XXX: This serves as a posting read to make sure that the PTE has
2340 * actually been updated. There is some concern that even though
2341 * registers and PTEs are within the same BAR that they are potentially
2342 * of NUMA access patterns. Therefore, even with the way we assume
2343 * hardware should work, we must keep this posting read for paranoia.
2344 */
Pavel Machek57007df2014-07-28 13:20:58 +02002345 if (i != 0) {
2346 unsigned long gtt = readl(&gtt_entries[i-1]);
2347 WARN_ON(gtt != vm->pte_encode(addr, level, true, flags));
2348 }
Ben Widawsky0f9b91c2012-11-04 09:21:30 -08002349
2350 /* This next bit makes the above posting read even more important. We
2351 * want to flush the TLBs only after we're certain all the PTE updates
2352 * have finished.
2353 */
2354 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2355 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002356}
2357
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002358static void gen8_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002359 uint64_t start,
2360 uint64_t length,
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002361 bool use_scratch)
2362{
2363 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002364 unsigned first_entry = start >> PAGE_SHIFT;
2365 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002366 gen8_pte_t scratch_pte, __iomem *gtt_base =
2367 (gen8_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002368 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
2369 int i;
2370
2371 if (WARN(num_entries > max_entries,
2372 "First entry = %d; Num entries = %d (max=%d)\n",
2373 first_entry, num_entries, max_entries))
2374 num_entries = max_entries;
2375
Mika Kuoppalac114f762015-06-25 18:35:13 +03002376 scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002377 I915_CACHE_LLC,
2378 use_scratch);
2379 for (i = 0; i < num_entries; i++)
2380 gen8_set_pte(&gtt_base[i], scratch_pte);
2381 readl(gtt_base);
2382}
2383
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002384static void gen6_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002385 uint64_t start,
2386 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002387 bool use_scratch)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002388{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002389 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002390 unsigned first_entry = start >> PAGE_SHIFT;
2391 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002392 gen6_pte_t scratch_pte, __iomem *gtt_base =
2393 (gen6_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
Ben Widawskya54c0c22013-01-24 14:45:00 -08002394 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002395 int i;
2396
2397 if (WARN(num_entries > max_entries,
2398 "First entry = %d; Num entries = %d (max=%d)\n",
2399 first_entry, num_entries, max_entries))
2400 num_entries = max_entries;
2401
Mika Kuoppalac114f762015-06-25 18:35:13 +03002402 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
2403 I915_CACHE_LLC, use_scratch, 0);
Ben Widawsky828c7902013-10-16 09:21:30 -07002404
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002405 for (i = 0; i < num_entries; i++)
2406 iowrite32(scratch_pte, &gtt_base[i]);
2407 readl(gtt_base);
2408}
2409
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002410static void i915_ggtt_insert_entries(struct i915_address_space *vm,
2411 struct sg_table *pages,
2412 uint64_t start,
2413 enum i915_cache_level cache_level, u32 unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002414{
2415 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
2416 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
2417
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002418 intel_gtt_insert_sg_entries(pages, start >> PAGE_SHIFT, flags);
Daniel Vetter08755462015-04-20 09:04:05 -07002419
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002420}
2421
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002422static void i915_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002423 uint64_t start,
2424 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002425 bool unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002426{
Ben Widawsky782f1492014-02-20 11:50:33 -08002427 unsigned first_entry = start >> PAGE_SHIFT;
2428 unsigned num_entries = length >> PAGE_SHIFT;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002429 intel_gtt_clear_range(first_entry, num_entries);
2430}
2431
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002432static int ggtt_bind_vma(struct i915_vma *vma,
2433 enum i915_cache_level cache_level,
2434 u32 flags)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002435{
Ben Widawsky6f65e292013-12-06 14:10:56 -08002436 struct drm_device *dev = vma->vm->dev;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002437 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002438 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002439 struct sg_table *pages = obj->pages;
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002440 u32 pte_flags = 0;
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002441 int ret;
2442
2443 ret = i915_get_ggtt_vma_pages(vma);
2444 if (ret)
2445 return ret;
2446 pages = vma->ggtt_view.pages;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002447
Akash Goel24f3a8c2014-06-17 10:59:42 +05302448 /* Currently applicable only to VLV */
2449 if (obj->gt_ro)
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002450 pte_flags |= PTE_READ_ONLY;
Akash Goel24f3a8c2014-06-17 10:59:42 +05302451
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002452
Ben Widawsky6f65e292013-12-06 14:10:56 -08002453 if (!dev_priv->mm.aliasing_ppgtt || flags & GLOBAL_BIND) {
Daniel Vetter08755462015-04-20 09:04:05 -07002454 vma->vm->insert_entries(vma->vm, pages,
2455 vma->node.start,
2456 cache_level, pte_flags);
Chris Wilsond0e30ad2015-07-29 20:02:48 +01002457
2458 /* Note the inconsistency here is due to absence of the
2459 * aliasing ppgtt on gen4 and earlier. Though we always
2460 * request PIN_USER for execbuffer (translated to LOCAL_BIND),
2461 * without the appgtt, we cannot honour that request and so
2462 * must substitute it with a global binding. Since we do this
2463 * behind the upper layers back, we need to explicitly set
2464 * the bound flag ourselves.
2465 */
2466 vma->bound |= GLOBAL_BIND;
2467
Ben Widawsky6f65e292013-12-06 14:10:56 -08002468 }
Daniel Vetter74898d72012-02-15 23:50:22 +01002469
Daniel Vetter08755462015-04-20 09:04:05 -07002470 if (dev_priv->mm.aliasing_ppgtt && flags & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002471 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002472 appgtt->base.insert_entries(&appgtt->base, pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08002473 vma->node.start,
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002474 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002475 }
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002476
2477 return 0;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002478}
2479
2480static void ggtt_unbind_vma(struct i915_vma *vma)
2481{
2482 struct drm_device *dev = vma->vm->dev;
2483 struct drm_i915_private *dev_priv = dev->dev_private;
2484 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002485 const uint64_t size = min_t(uint64_t,
2486 obj->base.size,
2487 vma->node.size);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002488
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002489 if (vma->bound & GLOBAL_BIND) {
Ben Widawsky782f1492014-02-20 11:50:33 -08002490 vma->vm->clear_range(vma->vm,
2491 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002492 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002493 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002494 }
2495
Daniel Vetter08755462015-04-20 09:04:05 -07002496 if (dev_priv->mm.aliasing_ppgtt && vma->bound & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002497 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002498
Ben Widawsky6f65e292013-12-06 14:10:56 -08002499 appgtt->base.clear_range(&appgtt->base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002500 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002501 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002502 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002503 }
Daniel Vetter74163902012-02-15 23:50:21 +01002504}
2505
2506void i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj)
2507{
Ben Widawsky5c042282011-10-17 15:51:55 -07002508 struct drm_device *dev = obj->base.dev;
2509 struct drm_i915_private *dev_priv = dev->dev_private;
2510 bool interruptible;
2511
2512 interruptible = do_idling(dev_priv);
2513
Imre Deak5ec5b512015-07-08 19:18:59 +03002514 dma_unmap_sg(&dev->pdev->dev, obj->pages->sgl, obj->pages->nents,
2515 PCI_DMA_BIDIRECTIONAL);
Ben Widawsky5c042282011-10-17 15:51:55 -07002516
2517 undo_idling(dev_priv, interruptible);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002518}
Daniel Vetter644ec022012-03-26 09:45:40 +02002519
Chris Wilson42d6ab42012-07-26 11:49:32 +01002520static void i915_gtt_color_adjust(struct drm_mm_node *node,
2521 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +01002522 u64 *start,
2523 u64 *end)
Chris Wilson42d6ab42012-07-26 11:49:32 +01002524{
2525 if (node->color != color)
2526 *start += 4096;
2527
2528 if (!list_empty(&node->node_list)) {
2529 node = list_entry(node->node_list.next,
2530 struct drm_mm_node,
2531 node_list);
2532 if (node->allocated && node->color != color)
2533 *end -= 4096;
2534 }
2535}
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002536
Daniel Vetterf548c0e2014-11-19 21:40:13 +01002537static int i915_gem_setup_global_gtt(struct drm_device *dev,
Michel Thierry088e0df2015-08-07 17:40:17 +01002538 u64 start,
2539 u64 mappable_end,
2540 u64 end)
Daniel Vetter644ec022012-03-26 09:45:40 +02002541{
Ben Widawskye78891c2013-01-25 16:41:04 -08002542 /* Let GEM Manage all of the aperture.
2543 *
2544 * However, leave one page at the end still bound to the scratch page.
2545 * There are a number of places where the hardware apparently prefetches
2546 * past the end of the object, and we've seen multiple hangs with the
2547 * GPU head pointer stuck in a batchbuffer bound at the last page of the
2548 * aperture. One page should be enough to keep any prefetching inside
2549 * of the aperture.
2550 */
Ben Widawsky40d749802013-07-31 16:59:59 -07002551 struct drm_i915_private *dev_priv = dev->dev_private;
2552 struct i915_address_space *ggtt_vm = &dev_priv->gtt.base;
Chris Wilsoned2f3452012-11-15 11:32:19 +00002553 struct drm_mm_node *entry;
2554 struct drm_i915_gem_object *obj;
2555 unsigned long hole_start, hole_end;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002556 int ret;
Daniel Vetter644ec022012-03-26 09:45:40 +02002557
Ben Widawsky35451cb2013-01-17 12:45:13 -08002558 BUG_ON(mappable_end > end);
2559
Chris Wilsoned2f3452012-11-15 11:32:19 +00002560 /* Subtract the guard page ... */
Ben Widawsky40d749802013-07-31 16:59:59 -07002561 drm_mm_init(&ggtt_vm->mm, start, end - start - PAGE_SIZE);
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002562
2563 dev_priv->gtt.base.start = start;
2564 dev_priv->gtt.base.total = end - start;
2565
2566 if (intel_vgpu_active(dev)) {
2567 ret = intel_vgt_balloon(dev);
2568 if (ret)
2569 return ret;
2570 }
2571
Chris Wilson42d6ab42012-07-26 11:49:32 +01002572 if (!HAS_LLC(dev))
Ben Widawsky93bd8642013-07-16 16:50:06 -07002573 dev_priv->gtt.base.mm.color_adjust = i915_gtt_color_adjust;
Daniel Vetter644ec022012-03-26 09:45:40 +02002574
Chris Wilsoned2f3452012-11-15 11:32:19 +00002575 /* Mark any preallocated objects as occupied */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002576 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Ben Widawsky40d749802013-07-31 16:59:59 -07002577 struct i915_vma *vma = i915_gem_obj_to_vma(obj, ggtt_vm);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002578
Michel Thierry088e0df2015-08-07 17:40:17 +01002579 DRM_DEBUG_KMS("reserving preallocated space: %llx + %zx\n",
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002580 i915_gem_obj_ggtt_offset(obj), obj->base.size);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002581
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002582 WARN_ON(i915_gem_obj_ggtt_bound(obj));
Ben Widawsky40d749802013-07-31 16:59:59 -07002583 ret = drm_mm_reserve_node(&ggtt_vm->mm, &vma->node);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002584 if (ret) {
2585 DRM_DEBUG_KMS("Reservation failed: %i\n", ret);
2586 return ret;
2587 }
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002588 vma->bound |= GLOBAL_BIND;
Chris Wilsoned2f3452012-11-15 11:32:19 +00002589 }
2590
Chris Wilsoned2f3452012-11-15 11:32:19 +00002591 /* Clear any non-preallocated blocks */
Ben Widawsky40d749802013-07-31 16:59:59 -07002592 drm_mm_for_each_hole(entry, &ggtt_vm->mm, hole_start, hole_end) {
Chris Wilsoned2f3452012-11-15 11:32:19 +00002593 DRM_DEBUG_KMS("clearing unused GTT space: [%lx, %lx]\n",
2594 hole_start, hole_end);
Ben Widawsky782f1492014-02-20 11:50:33 -08002595 ggtt_vm->clear_range(ggtt_vm, hole_start,
2596 hole_end - hole_start, true);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002597 }
2598
2599 /* And finally clear the reserved guard page */
Ben Widawsky782f1492014-02-20 11:50:33 -08002600 ggtt_vm->clear_range(ggtt_vm, end - PAGE_SIZE, PAGE_SIZE, true);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002601
Daniel Vetterfa76da32014-08-06 20:19:54 +02002602 if (USES_PPGTT(dev) && !USES_FULL_PPGTT(dev)) {
2603 struct i915_hw_ppgtt *ppgtt;
2604
2605 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2606 if (!ppgtt)
2607 return -ENOMEM;
2608
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002609 ret = __hw_ppgtt_init(dev, ppgtt);
Michel Thierry4933d512015-03-24 15:46:22 +00002610 if (ret) {
Daniel Vetter061dd492015-04-14 17:35:13 +02002611 ppgtt->base.cleanup(&ppgtt->base);
Michel Thierry4933d512015-03-24 15:46:22 +00002612 kfree(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002613 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002614 }
Daniel Vetterfa76da32014-08-06 20:19:54 +02002615
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002616 if (ppgtt->base.allocate_va_range)
2617 ret = ppgtt->base.allocate_va_range(&ppgtt->base, 0,
2618 ppgtt->base.total);
2619 if (ret) {
2620 ppgtt->base.cleanup(&ppgtt->base);
2621 kfree(ppgtt);
2622 return ret;
2623 }
2624
2625 ppgtt->base.clear_range(&ppgtt->base,
2626 ppgtt->base.start,
2627 ppgtt->base.total,
2628 true);
2629
Daniel Vetterfa76da32014-08-06 20:19:54 +02002630 dev_priv->mm.aliasing_ppgtt = ppgtt;
2631 }
2632
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002633 return 0;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002634}
2635
Ben Widawskyd7e50082012-12-18 10:31:25 -08002636void i915_gem_init_global_gtt(struct drm_device *dev)
2637{
2638 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002639 u64 gtt_size, mappable_size;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002640
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002641 gtt_size = dev_priv->gtt.base.total;
Ben Widawsky93d18792013-01-17 12:45:17 -08002642 mappable_size = dev_priv->gtt.mappable_end;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002643
Ben Widawskye78891c2013-01-25 16:41:04 -08002644 i915_gem_setup_global_gtt(dev, 0, mappable_size, gtt_size);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002645}
2646
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002647void i915_global_gtt_cleanup(struct drm_device *dev)
2648{
2649 struct drm_i915_private *dev_priv = dev->dev_private;
2650 struct i915_address_space *vm = &dev_priv->gtt.base;
2651
Daniel Vetter70e32542014-08-06 15:04:57 +02002652 if (dev_priv->mm.aliasing_ppgtt) {
2653 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2654
2655 ppgtt->base.cleanup(&ppgtt->base);
2656 }
2657
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002658 if (drm_mm_initialized(&vm->mm)) {
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002659 if (intel_vgpu_active(dev))
2660 intel_vgt_deballoon();
2661
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002662 drm_mm_takedown(&vm->mm);
2663 list_del(&vm->global_link);
2664 }
2665
2666 vm->cleanup(vm);
2667}
Daniel Vetter70e32542014-08-06 15:04:57 +02002668
Daniel Vetter2c642b02015-04-14 17:35:26 +02002669static unsigned int gen6_get_total_gtt_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002670{
2671 snb_gmch_ctl >>= SNB_GMCH_GGMS_SHIFT;
2672 snb_gmch_ctl &= SNB_GMCH_GGMS_MASK;
2673 return snb_gmch_ctl << 20;
2674}
2675
Daniel Vetter2c642b02015-04-14 17:35:26 +02002676static unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002677{
2678 bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
2679 bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
2680 if (bdw_gmch_ctl)
2681 bdw_gmch_ctl = 1 << bdw_gmch_ctl;
Ben Widawsky562d55d2014-05-27 16:53:08 -07002682
2683#ifdef CONFIG_X86_32
2684 /* Limit 32b platforms to a 2GB GGTT: 4 << 20 / pte size * PAGE_SIZE */
2685 if (bdw_gmch_ctl > 4)
2686 bdw_gmch_ctl = 4;
2687#endif
2688
Ben Widawsky9459d252013-11-03 16:53:55 -08002689 return bdw_gmch_ctl << 20;
2690}
2691
Daniel Vetter2c642b02015-04-14 17:35:26 +02002692static unsigned int chv_get_total_gtt_size(u16 gmch_ctrl)
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002693{
2694 gmch_ctrl >>= SNB_GMCH_GGMS_SHIFT;
2695 gmch_ctrl &= SNB_GMCH_GGMS_MASK;
2696
2697 if (gmch_ctrl)
2698 return 1 << (20 + gmch_ctrl);
2699
2700 return 0;
2701}
2702
Daniel Vetter2c642b02015-04-14 17:35:26 +02002703static size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002704{
2705 snb_gmch_ctl >>= SNB_GMCH_GMS_SHIFT;
2706 snb_gmch_ctl &= SNB_GMCH_GMS_MASK;
2707 return snb_gmch_ctl << 25; /* 32 MB units */
2708}
2709
Daniel Vetter2c642b02015-04-14 17:35:26 +02002710static size_t gen8_get_stolen_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002711{
2712 bdw_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2713 bdw_gmch_ctl &= BDW_GMCH_GMS_MASK;
2714 return bdw_gmch_ctl << 25; /* 32 MB units */
2715}
2716
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002717static size_t chv_get_stolen_size(u16 gmch_ctrl)
2718{
2719 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
2720 gmch_ctrl &= SNB_GMCH_GMS_MASK;
2721
2722 /*
2723 * 0x0 to 0x10: 32MB increments starting at 0MB
2724 * 0x11 to 0x16: 4MB increments starting at 8MB
2725 * 0x17 to 0x1d: 4MB increments start at 36MB
2726 */
2727 if (gmch_ctrl < 0x11)
2728 return gmch_ctrl << 25;
2729 else if (gmch_ctrl < 0x17)
2730 return (gmch_ctrl - 0x11 + 2) << 22;
2731 else
2732 return (gmch_ctrl - 0x17 + 9) << 22;
2733}
2734
Damien Lespiau66375012014-01-09 18:02:46 +00002735static size_t gen9_get_stolen_size(u16 gen9_gmch_ctl)
2736{
2737 gen9_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2738 gen9_gmch_ctl &= BDW_GMCH_GMS_MASK;
2739
2740 if (gen9_gmch_ctl < 0xf0)
2741 return gen9_gmch_ctl << 25; /* 32 MB units */
2742 else
2743 /* 4MB increments starting at 0xf0 for 4MB */
2744 return (gen9_gmch_ctl - 0xf0 + 1) << 22;
2745}
2746
Ben Widawsky63340132013-11-04 19:32:22 -08002747static int ggtt_probe_common(struct drm_device *dev,
2748 size_t gtt_size)
2749{
2750 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002751 struct i915_page_scratch *scratch_page;
Bjorn Helgaas21c34602013-12-21 10:52:52 -07002752 phys_addr_t gtt_phys_addr;
Ben Widawsky63340132013-11-04 19:32:22 -08002753
2754 /* For Modern GENs the PTEs and register space are split in the BAR */
Bjorn Helgaas21c34602013-12-21 10:52:52 -07002755 gtt_phys_addr = pci_resource_start(dev->pdev, 0) +
Ben Widawsky63340132013-11-04 19:32:22 -08002756 (pci_resource_len(dev->pdev, 0) / 2);
2757
Imre Deak2a073f892015-03-27 13:07:33 +02002758 /*
2759 * On BXT writes larger than 64 bit to the GTT pagetable range will be
2760 * dropped. For WC mappings in general we have 64 byte burst writes
2761 * when the WC buffer is flushed, so we can't use it, but have to
2762 * resort to an uncached mapping. The WC issue is easily caught by the
2763 * readback check when writing GTT PTE entries.
2764 */
2765 if (IS_BROXTON(dev))
2766 dev_priv->gtt.gsm = ioremap_nocache(gtt_phys_addr, gtt_size);
2767 else
2768 dev_priv->gtt.gsm = ioremap_wc(gtt_phys_addr, gtt_size);
Ben Widawsky63340132013-11-04 19:32:22 -08002769 if (!dev_priv->gtt.gsm) {
2770 DRM_ERROR("Failed to map the gtt page table\n");
2771 return -ENOMEM;
2772 }
2773
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002774 scratch_page = alloc_scratch_page(dev);
2775 if (IS_ERR(scratch_page)) {
Ben Widawsky63340132013-11-04 19:32:22 -08002776 DRM_ERROR("Scratch setup failed\n");
2777 /* iounmap will also get called at remove, but meh */
2778 iounmap(dev_priv->gtt.gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002779 return PTR_ERR(scratch_page);
Ben Widawsky63340132013-11-04 19:32:22 -08002780 }
2781
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002782 dev_priv->gtt.base.scratch_page = scratch_page;
2783
2784 return 0;
Ben Widawsky63340132013-11-04 19:32:22 -08002785}
2786
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002787/* The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
2788 * bits. When using advanced contexts each context stores its own PAT, but
2789 * writing this data shouldn't be harmful even in those cases. */
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002790static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv)
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002791{
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002792 uint64_t pat;
2793
2794 pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) | /* for normal objects, no eLLC */
2795 GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) | /* for something pointing to ptes? */
2796 GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC) | /* for scanout with eLLC */
2797 GEN8_PPAT(3, GEN8_PPAT_UC) | /* Uncached objects, mostly for scanout */
2798 GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
2799 GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
2800 GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
2801 GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
2802
Rodrigo Vivid6a8b722014-11-05 16:56:36 -08002803 if (!USES_PPGTT(dev_priv->dev))
2804 /* Spec: "For GGTT, there is NO pat_sel[2:0] from the entry,
2805 * so RTL will always use the value corresponding to
2806 * pat_sel = 000".
2807 * So let's disable cache for GGTT to avoid screen corruptions.
2808 * MOCS still can be used though.
2809 * - System agent ggtt writes (i.e. cpu gtt mmaps) already work
2810 * before this patch, i.e. the same uncached + snooping access
2811 * like on gen6/7 seems to be in effect.
2812 * - So this just fixes blitter/render access. Again it looks
2813 * like it's not just uncached access, but uncached + snooping.
2814 * So we can still hold onto all our assumptions wrt cpu
2815 * clflushing on LLC machines.
2816 */
2817 pat = GEN8_PPAT(0, GEN8_PPAT_UC);
2818
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002819 /* XXX: spec defines this as 2 distinct registers. It's unclear if a 64b
2820 * write would work. */
2821 I915_WRITE(GEN8_PRIVATE_PAT, pat);
2822 I915_WRITE(GEN8_PRIVATE_PAT + 4, pat >> 32);
2823}
2824
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002825static void chv_setup_private_ppat(struct drm_i915_private *dev_priv)
2826{
2827 uint64_t pat;
2828
2829 /*
2830 * Map WB on BDW to snooped on CHV.
2831 *
2832 * Only the snoop bit has meaning for CHV, the rest is
2833 * ignored.
2834 *
Ville Syrjäläcf3d2622014-11-14 21:02:44 +02002835 * The hardware will never snoop for certain types of accesses:
2836 * - CPU GTT (GMADR->GGTT->no snoop->memory)
2837 * - PPGTT page tables
2838 * - some other special cycles
2839 *
2840 * As with BDW, we also need to consider the following for GT accesses:
2841 * "For GGTT, there is NO pat_sel[2:0] from the entry,
2842 * so RTL will always use the value corresponding to
2843 * pat_sel = 000".
2844 * Which means we must set the snoop bit in PAT entry 0
2845 * in order to keep the global status page working.
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002846 */
2847 pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
2848 GEN8_PPAT(1, 0) |
2849 GEN8_PPAT(2, 0) |
2850 GEN8_PPAT(3, 0) |
2851 GEN8_PPAT(4, CHV_PPAT_SNOOP) |
2852 GEN8_PPAT(5, CHV_PPAT_SNOOP) |
2853 GEN8_PPAT(6, CHV_PPAT_SNOOP) |
2854 GEN8_PPAT(7, CHV_PPAT_SNOOP);
2855
2856 I915_WRITE(GEN8_PRIVATE_PAT, pat);
2857 I915_WRITE(GEN8_PRIVATE_PAT + 4, pat >> 32);
2858}
2859
Ben Widawsky63340132013-11-04 19:32:22 -08002860static int gen8_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002861 u64 *gtt_total,
Ben Widawsky63340132013-11-04 19:32:22 -08002862 size_t *stolen,
2863 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002864 u64 *mappable_end)
Ben Widawsky63340132013-11-04 19:32:22 -08002865{
2866 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002867 u64 gtt_size;
Ben Widawsky63340132013-11-04 19:32:22 -08002868 u16 snb_gmch_ctl;
2869 int ret;
2870
2871 /* TODO: We're not aware of mappable constraints on gen8 yet */
2872 *mappable_base = pci_resource_start(dev->pdev, 2);
2873 *mappable_end = pci_resource_len(dev->pdev, 2);
2874
2875 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(39)))
2876 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(39));
2877
2878 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
2879
Damien Lespiau66375012014-01-09 18:02:46 +00002880 if (INTEL_INFO(dev)->gen >= 9) {
2881 *stolen = gen9_get_stolen_size(snb_gmch_ctl);
2882 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
2883 } else if (IS_CHERRYVIEW(dev)) {
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002884 *stolen = chv_get_stolen_size(snb_gmch_ctl);
2885 gtt_size = chv_get_total_gtt_size(snb_gmch_ctl);
2886 } else {
2887 *stolen = gen8_get_stolen_size(snb_gmch_ctl);
2888 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
2889 }
Ben Widawsky63340132013-11-04 19:32:22 -08002890
Michel Thierry07749ef2015-03-16 16:00:54 +00002891 *gtt_total = (gtt_size / sizeof(gen8_pte_t)) << PAGE_SHIFT;
Ben Widawsky63340132013-11-04 19:32:22 -08002892
Sumit Singh5a4e33a2015-03-17 11:39:31 +02002893 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002894 chv_setup_private_ppat(dev_priv);
2895 else
2896 bdw_setup_private_ppat(dev_priv);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002897
Ben Widawsky63340132013-11-04 19:32:22 -08002898 ret = ggtt_probe_common(dev, gtt_size);
2899
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002900 dev_priv->gtt.base.clear_range = gen8_ggtt_clear_range;
2901 dev_priv->gtt.base.insert_entries = gen8_ggtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002902 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2903 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawsky63340132013-11-04 19:32:22 -08002904
2905 return ret;
2906}
2907
Ben Widawskybaa09f52013-01-24 13:49:57 -08002908static int gen6_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002909 u64 *gtt_total,
Ben Widawsky41907dd2013-02-08 11:32:47 -08002910 size_t *stolen,
2911 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002912 u64 *mappable_end)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002913{
2914 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002915 unsigned int gtt_size;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002916 u16 snb_gmch_ctl;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002917 int ret;
2918
Ben Widawsky41907dd2013-02-08 11:32:47 -08002919 *mappable_base = pci_resource_start(dev->pdev, 2);
2920 *mappable_end = pci_resource_len(dev->pdev, 2);
2921
Ben Widawskybaa09f52013-01-24 13:49:57 -08002922 /* 64/512MB is the current min/max we actually know of, but this is just
2923 * a coarse sanity check.
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002924 */
Ben Widawsky41907dd2013-02-08 11:32:47 -08002925 if ((*mappable_end < (64<<20) || (*mappable_end > (512<<20)))) {
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002926 DRM_ERROR("Unknown GMADR size (%llx)\n",
Ben Widawskybaa09f52013-01-24 13:49:57 -08002927 dev_priv->gtt.mappable_end);
2928 return -ENXIO;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002929 }
2930
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002931 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(40)))
2932 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(40));
Ben Widawskybaa09f52013-01-24 13:49:57 -08002933 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002934
Ben Widawskyc4ae25e2013-05-01 11:00:34 -07002935 *stolen = gen6_get_stolen_size(snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002936
Ben Widawsky63340132013-11-04 19:32:22 -08002937 gtt_size = gen6_get_total_gtt_size(snb_gmch_ctl);
Michel Thierry07749ef2015-03-16 16:00:54 +00002938 *gtt_total = (gtt_size / sizeof(gen6_pte_t)) << PAGE_SHIFT;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002939
Ben Widawsky63340132013-11-04 19:32:22 -08002940 ret = ggtt_probe_common(dev, gtt_size);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002941
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002942 dev_priv->gtt.base.clear_range = gen6_ggtt_clear_range;
2943 dev_priv->gtt.base.insert_entries = gen6_ggtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002944 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2945 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002946
2947 return ret;
2948}
2949
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002950static void gen6_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08002951{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002952
2953 struct i915_gtt *gtt = container_of(vm, struct i915_gtt, base);
Ben Widawsky5ed16782013-11-25 09:54:43 -08002954
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002955 iounmap(gtt->gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002956 free_scratch_page(vm->dev, vm->scratch_page);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002957}
2958
2959static int i915_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002960 u64 *gtt_total,
Ben Widawsky41907dd2013-02-08 11:32:47 -08002961 size_t *stolen,
2962 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002963 u64 *mappable_end)
Ben Widawskybaa09f52013-01-24 13:49:57 -08002964{
2965 struct drm_i915_private *dev_priv = dev->dev_private;
2966 int ret;
2967
Ben Widawskybaa09f52013-01-24 13:49:57 -08002968 ret = intel_gmch_probe(dev_priv->bridge_dev, dev_priv->dev->pdev, NULL);
2969 if (!ret) {
2970 DRM_ERROR("failed to set up gmch\n");
2971 return -EIO;
2972 }
2973
Ben Widawsky41907dd2013-02-08 11:32:47 -08002974 intel_gtt_get(gtt_total, stolen, mappable_base, mappable_end);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002975
2976 dev_priv->gtt.do_idle_maps = needs_idle_maps(dev_priv->dev);
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002977 dev_priv->gtt.base.insert_entries = i915_ggtt_insert_entries;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002978 dev_priv->gtt.base.clear_range = i915_ggtt_clear_range;
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002979 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2980 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002981
Chris Wilsonc0a7f812013-12-30 12:16:15 +00002982 if (unlikely(dev_priv->gtt.do_idle_maps))
2983 DRM_INFO("applying Ironlake quirks for intel_iommu\n");
2984
Ben Widawskybaa09f52013-01-24 13:49:57 -08002985 return 0;
2986}
2987
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002988static void i915_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08002989{
2990 intel_gmch_remove();
2991}
2992
2993int i915_gem_gtt_init(struct drm_device *dev)
2994{
2995 struct drm_i915_private *dev_priv = dev->dev_private;
2996 struct i915_gtt *gtt = &dev_priv->gtt;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002997 int ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002998
Ben Widawskybaa09f52013-01-24 13:49:57 -08002999 if (INTEL_INFO(dev)->gen <= 5) {
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003000 gtt->gtt_probe = i915_gmch_probe;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003001 gtt->base.cleanup = i915_gmch_remove;
Ben Widawsky63340132013-11-04 19:32:22 -08003002 } else if (INTEL_INFO(dev)->gen < 8) {
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003003 gtt->gtt_probe = gen6_gmch_probe;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003004 gtt->base.cleanup = gen6_gmch_remove;
Ben Widawsky4d15c142013-07-04 11:02:06 -07003005 if (IS_HASWELL(dev) && dev_priv->ellc_size)
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003006 gtt->base.pte_encode = iris_pte_encode;
Ben Widawsky4d15c142013-07-04 11:02:06 -07003007 else if (IS_HASWELL(dev))
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003008 gtt->base.pte_encode = hsw_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003009 else if (IS_VALLEYVIEW(dev))
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003010 gtt->base.pte_encode = byt_pte_encode;
Chris Wilson350ec882013-08-06 13:17:02 +01003011 else if (INTEL_INFO(dev)->gen >= 7)
3012 gtt->base.pte_encode = ivb_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003013 else
Chris Wilson350ec882013-08-06 13:17:02 +01003014 gtt->base.pte_encode = snb_pte_encode;
Ben Widawsky63340132013-11-04 19:32:22 -08003015 } else {
3016 dev_priv->gtt.gtt_probe = gen8_gmch_probe;
3017 dev_priv->gtt.base.cleanup = gen6_gmch_remove;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003018 }
3019
Mika Kuoppalac114f762015-06-25 18:35:13 +03003020 gtt->base.dev = dev;
3021
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003022 ret = gtt->gtt_probe(dev, &gtt->base.total, &gtt->stolen_size,
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003023 &gtt->mappable_base, &gtt->mappable_end);
Ben Widawskya54c0c22013-01-24 14:45:00 -08003024 if (ret)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003025 return ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003026
Ben Widawskybaa09f52013-01-24 13:49:57 -08003027 /* GMADR is the PCI mmio aperture into the global GTT. */
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003028 DRM_INFO("Memory usable by graphics device = %lluM\n",
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003029 gtt->base.total >> 20);
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003030 DRM_DEBUG_DRIVER("GMADR size = %lldM\n", gtt->mappable_end >> 20);
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003031 DRM_DEBUG_DRIVER("GTT stolen size = %zdM\n", gtt->stolen_size >> 20);
Daniel Vetter5db6c732014-03-31 16:23:04 +02003032#ifdef CONFIG_INTEL_IOMMU
3033 if (intel_iommu_gfx_mapped)
3034 DRM_INFO("VT-d active for gfx access\n");
3035#endif
Daniel Vettercfa7c862014-04-29 11:53:58 +02003036 /*
3037 * i915.enable_ppgtt is read-only, so do an early pass to validate the
3038 * user's requested state against the hardware/driver capabilities. We
3039 * do this now so that we can print out any log messages once rather
3040 * than every time we check intel_enable_ppgtt().
3041 */
3042 i915.enable_ppgtt = sanitize_enable_ppgtt(dev, i915.enable_ppgtt);
3043 DRM_DEBUG_DRIVER("ppgtt mode: %i\n", i915.enable_ppgtt);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08003044
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003045 return 0;
Daniel Vetter644ec022012-03-26 09:45:40 +02003046}
Ben Widawsky6f65e292013-12-06 14:10:56 -08003047
Daniel Vetterfa423312015-04-14 17:35:23 +02003048void i915_gem_restore_gtt_mappings(struct drm_device *dev)
3049{
3050 struct drm_i915_private *dev_priv = dev->dev_private;
3051 struct drm_i915_gem_object *obj;
3052 struct i915_address_space *vm;
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003053 struct i915_vma *vma;
3054 bool flush;
Daniel Vetterfa423312015-04-14 17:35:23 +02003055
3056 i915_check_and_clear_faults(dev);
3057
3058 /* First fill our portion of the GTT with scratch pages */
3059 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
3060 dev_priv->gtt.base.start,
3061 dev_priv->gtt.base.total,
3062 true);
3063
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003064 /* Cache flush objects bound into GGTT and rebind them. */
3065 vm = &dev_priv->gtt.base;
Daniel Vetterfa423312015-04-14 17:35:23 +02003066 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003067 flush = false;
3068 list_for_each_entry(vma, &obj->vma_list, vma_link) {
3069 if (vma->vm != vm)
3070 continue;
Daniel Vetterfa423312015-04-14 17:35:23 +02003071
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003072 WARN_ON(i915_vma_bind(vma, obj->cache_level,
3073 PIN_UPDATE));
3074
3075 flush = true;
3076 }
3077
3078 if (flush)
3079 i915_gem_clflush_object(obj, obj->pin_display);
Daniel Vetterfa423312015-04-14 17:35:23 +02003080 }
3081
Daniel Vetterfa423312015-04-14 17:35:23 +02003082 if (INTEL_INFO(dev)->gen >= 8) {
3083 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
3084 chv_setup_private_ppat(dev_priv);
3085 else
3086 bdw_setup_private_ppat(dev_priv);
3087
3088 return;
3089 }
3090
3091 if (USES_PPGTT(dev)) {
3092 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
3093 /* TODO: Perhaps it shouldn't be gen6 specific */
3094
3095 struct i915_hw_ppgtt *ppgtt =
3096 container_of(vm, struct i915_hw_ppgtt,
3097 base);
3098
3099 if (i915_is_ggtt(vm))
3100 ppgtt = dev_priv->mm.aliasing_ppgtt;
3101
3102 gen6_write_page_range(dev_priv, &ppgtt->pd,
3103 0, ppgtt->base.total);
3104 }
3105 }
3106
3107 i915_ggtt_flush(dev_priv);
3108}
3109
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003110static struct i915_vma *
3111__i915_gem_vma_create(struct drm_i915_gem_object *obj,
3112 struct i915_address_space *vm,
3113 const struct i915_ggtt_view *ggtt_view)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003114{
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003115 struct i915_vma *vma;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003116
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003117 if (WARN_ON(i915_is_ggtt(vm) != !!ggtt_view))
3118 return ERR_PTR(-EINVAL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01003119
3120 vma = kmem_cache_zalloc(to_i915(obj->base.dev)->vmas, GFP_KERNEL);
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003121 if (vma == NULL)
3122 return ERR_PTR(-ENOMEM);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003123
Ben Widawsky6f65e292013-12-06 14:10:56 -08003124 INIT_LIST_HEAD(&vma->vma_link);
3125 INIT_LIST_HEAD(&vma->mm_list);
3126 INIT_LIST_HEAD(&vma->exec_list);
3127 vma->vm = vm;
3128 vma->obj = obj;
3129
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003130 if (i915_is_ggtt(vm))
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003131 vma->ggtt_view = *ggtt_view;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003132
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00003133 list_add_tail(&vma->vma_link, &obj->vma_list);
3134 if (!i915_is_ggtt(vm))
Michel Thierrye07f0552014-08-19 15:49:41 +01003135 i915_ppgtt_get(i915_vm_to_ppgtt(vm));
Ben Widawsky6f65e292013-12-06 14:10:56 -08003136
3137 return vma;
3138}
3139
3140struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003141i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
3142 struct i915_address_space *vm)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003143{
3144 struct i915_vma *vma;
3145
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003146 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003147 if (!vma)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003148 vma = __i915_gem_vma_create(obj, vm,
3149 i915_is_ggtt(vm) ? &i915_ggtt_view_normal : NULL);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003150
3151 return vma;
3152}
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003153
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003154struct i915_vma *
3155i915_gem_obj_lookup_or_create_ggtt_vma(struct drm_i915_gem_object *obj,
3156 const struct i915_ggtt_view *view)
3157{
3158 struct i915_address_space *ggtt = i915_obj_to_ggtt(obj);
3159 struct i915_vma *vma;
3160
3161 if (WARN_ON(!view))
3162 return ERR_PTR(-EINVAL);
3163
3164 vma = i915_gem_obj_to_ggtt_view(obj, view);
3165
3166 if (IS_ERR(vma))
3167 return vma;
3168
3169 if (!vma)
3170 vma = __i915_gem_vma_create(obj, ggtt, view);
3171
3172 return vma;
3173
3174}
3175
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003176static void
3177rotate_pages(dma_addr_t *in, unsigned int width, unsigned int height,
3178 struct sg_table *st)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003179{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003180 unsigned int column, row;
3181 unsigned int src_idx;
3182 struct scatterlist *sg = st->sgl;
3183
3184 st->nents = 0;
3185
3186 for (column = 0; column < width; column++) {
3187 src_idx = width * (height - 1) + column;
3188 for (row = 0; row < height; row++) {
3189 st->nents++;
3190 /* We don't need the pages, but need to initialize
3191 * the entries so the sg list can be happily traversed.
3192 * The only thing we need are DMA addresses.
3193 */
3194 sg_set_page(sg, NULL, PAGE_SIZE, 0);
3195 sg_dma_address(sg) = in[src_idx];
3196 sg_dma_len(sg) = PAGE_SIZE;
3197 sg = sg_next(sg);
3198 src_idx -= width;
3199 }
3200 }
3201}
3202
3203static struct sg_table *
3204intel_rotate_fb_obj_pages(struct i915_ggtt_view *ggtt_view,
3205 struct drm_i915_gem_object *obj)
3206{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003207 struct intel_rotation_info *rot_info = &ggtt_view->rotation_info;
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003208 unsigned int size_pages = rot_info->size >> PAGE_SHIFT;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003209 struct sg_page_iter sg_iter;
3210 unsigned long i;
3211 dma_addr_t *page_addr_list;
3212 struct sg_table *st;
Tvrtko Ursulin1d00dad2015-03-25 10:15:26 +00003213 int ret = -ENOMEM;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003214
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003215 /* Allocate a temporary list of source pages for random access. */
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003216 page_addr_list = drm_malloc_ab(obj->base.size / PAGE_SIZE,
3217 sizeof(dma_addr_t));
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003218 if (!page_addr_list)
3219 return ERR_PTR(ret);
3220
3221 /* Allocate target SG list. */
3222 st = kmalloc(sizeof(*st), GFP_KERNEL);
3223 if (!st)
3224 goto err_st_alloc;
3225
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003226 ret = sg_alloc_table(st, size_pages, GFP_KERNEL);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003227 if (ret)
3228 goto err_sg_alloc;
3229
3230 /* Populate source page list from the object. */
3231 i = 0;
3232 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
3233 page_addr_list[i] = sg_page_iter_dma_address(&sg_iter);
3234 i++;
3235 }
3236
3237 /* Rotate the pages. */
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003238 rotate_pages(page_addr_list,
3239 rot_info->width_pages, rot_info->height_pages,
3240 st);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003241
3242 DRM_DEBUG_KMS(
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003243 "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 +01003244 obj->base.size, rot_info->pitch, rot_info->height,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003245 rot_info->pixel_format, rot_info->width_pages,
3246 rot_info->height_pages, size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003247
3248 drm_free_large(page_addr_list);
3249
3250 return st;
3251
3252err_sg_alloc:
3253 kfree(st);
3254err_st_alloc:
3255 drm_free_large(page_addr_list);
3256
3257 DRM_DEBUG_KMS(
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003258 "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 +01003259 obj->base.size, ret, rot_info->pitch, rot_info->height,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003260 rot_info->pixel_format, rot_info->width_pages,
3261 rot_info->height_pages, size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003262 return ERR_PTR(ret);
3263}
3264
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003265static struct sg_table *
3266intel_partial_pages(const struct i915_ggtt_view *view,
3267 struct drm_i915_gem_object *obj)
3268{
3269 struct sg_table *st;
3270 struct scatterlist *sg;
3271 struct sg_page_iter obj_sg_iter;
3272 int ret = -ENOMEM;
3273
3274 st = kmalloc(sizeof(*st), GFP_KERNEL);
3275 if (!st)
3276 goto err_st_alloc;
3277
3278 ret = sg_alloc_table(st, view->params.partial.size, GFP_KERNEL);
3279 if (ret)
3280 goto err_sg_alloc;
3281
3282 sg = st->sgl;
3283 st->nents = 0;
3284 for_each_sg_page(obj->pages->sgl, &obj_sg_iter, obj->pages->nents,
3285 view->params.partial.offset)
3286 {
3287 if (st->nents >= view->params.partial.size)
3288 break;
3289
3290 sg_set_page(sg, NULL, PAGE_SIZE, 0);
3291 sg_dma_address(sg) = sg_page_iter_dma_address(&obj_sg_iter);
3292 sg_dma_len(sg) = PAGE_SIZE;
3293
3294 sg = sg_next(sg);
3295 st->nents++;
3296 }
3297
3298 return st;
3299
3300err_sg_alloc:
3301 kfree(st);
3302err_st_alloc:
3303 return ERR_PTR(ret);
3304}
3305
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003306static int
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003307i915_get_ggtt_vma_pages(struct i915_vma *vma)
3308{
3309 int ret = 0;
3310
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003311 if (vma->ggtt_view.pages)
3312 return 0;
3313
3314 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
3315 vma->ggtt_view.pages = vma->obj->pages;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003316 else if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED)
3317 vma->ggtt_view.pages =
3318 intel_rotate_fb_obj_pages(&vma->ggtt_view, vma->obj);
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003319 else if (vma->ggtt_view.type == I915_GGTT_VIEW_PARTIAL)
3320 vma->ggtt_view.pages =
3321 intel_partial_pages(&vma->ggtt_view, vma->obj);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003322 else
3323 WARN_ONCE(1, "GGTT view %u not implemented!\n",
3324 vma->ggtt_view.type);
3325
3326 if (!vma->ggtt_view.pages) {
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003327 DRM_ERROR("Failed to get pages for GGTT view type %u!\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003328 vma->ggtt_view.type);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003329 ret = -EINVAL;
3330 } else if (IS_ERR(vma->ggtt_view.pages)) {
3331 ret = PTR_ERR(vma->ggtt_view.pages);
3332 vma->ggtt_view.pages = NULL;
3333 DRM_ERROR("Failed to get pages for VMA view type %u (%d)!\n",
3334 vma->ggtt_view.type, ret);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003335 }
3336
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003337 return ret;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003338}
3339
3340/**
3341 * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
3342 * @vma: VMA to map
3343 * @cache_level: mapping cache level
3344 * @flags: flags like global or local mapping
3345 *
3346 * DMA addresses are taken from the scatter-gather table of this object (or of
3347 * this VMA in case of non-default GGTT views) and PTE entries set up.
3348 * Note that DMA addresses are also the only part of the SG table we care about.
3349 */
3350int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
3351 u32 flags)
3352{
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003353 int ret;
3354 u32 bind_flags;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003355
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003356 if (WARN_ON(flags == 0))
3357 return -EINVAL;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003358
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003359 bind_flags = 0;
Daniel Vetter08755462015-04-20 09:04:05 -07003360 if (flags & PIN_GLOBAL)
3361 bind_flags |= GLOBAL_BIND;
3362 if (flags & PIN_USER)
3363 bind_flags |= LOCAL_BIND;
3364
3365 if (flags & PIN_UPDATE)
3366 bind_flags |= vma->bound;
3367 else
3368 bind_flags &= ~vma->bound;
3369
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003370 if (bind_flags == 0)
3371 return 0;
3372
3373 if (vma->bound == 0 && vma->vm->allocate_va_range) {
3374 trace_i915_va_alloc(vma->vm,
3375 vma->node.start,
3376 vma->node.size,
3377 VM_TO_TRACE_NAME(vma->vm));
3378
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003379 /* XXX: i915_vma_pin() will fix this +- hack */
3380 vma->pin_count++;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003381 ret = vma->vm->allocate_va_range(vma->vm,
3382 vma->node.start,
3383 vma->node.size);
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003384 vma->pin_count--;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003385 if (ret)
3386 return ret;
3387 }
3388
3389 ret = vma->vm->bind_vma(vma, cache_level, bind_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003390 if (ret)
3391 return ret;
Daniel Vetter08755462015-04-20 09:04:05 -07003392
3393 vma->bound |= bind_flags;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003394
3395 return 0;
3396}
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003397
3398/**
3399 * i915_ggtt_view_size - Get the size of a GGTT view.
3400 * @obj: Object the view is of.
3401 * @view: The view in question.
3402 *
3403 * @return The size of the GGTT view in bytes.
3404 */
3405size_t
3406i915_ggtt_view_size(struct drm_i915_gem_object *obj,
3407 const struct i915_ggtt_view *view)
3408{
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003409 if (view->type == I915_GGTT_VIEW_NORMAL) {
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003410 return obj->base.size;
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003411 } else if (view->type == I915_GGTT_VIEW_ROTATED) {
3412 return view->rotation_info.size;
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003413 } else if (view->type == I915_GGTT_VIEW_PARTIAL) {
3414 return view->params.partial.size << PAGE_SHIFT;
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003415 } else {
3416 WARN_ONCE(1, "GGTT view %u not implemented!\n", view->type);
3417 return obj->base.size;
3418 }
3419}