blob: a4bdef30713cddb1092b8c65b99a5f34f18cb7d2 [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
Daniel Vettereb0b44a2015-03-18 14:47:59 +01001361/*
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001362 * GEN8 legacy ppgtt programming is accomplished through a max 4 PDP registers
1363 * with a net effect resembling a 2-level page table in normal x86 terms. Each
1364 * PDP represents 1GB of memory 4 * 512 * 512 * 4096 = 4GB legacy 32b address
1365 * space.
Ben Widawsky37aca442013-11-04 20:47:32 -08001366 *
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001367 */
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001368static int gen8_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky37aca442013-11-04 20:47:32 -08001369{
Mika Kuoppala8776f022015-06-30 18:16:40 +03001370 int ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001371
Mika Kuoppala8776f022015-06-30 18:16:40 +03001372 ret = gen8_init_scratch(&ppgtt->base);
1373 if (ret)
1374 return ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001375
Michel Thierryd7b26332015-04-08 12:13:34 +01001376 ppgtt->base.start = 0;
Michel Thierryd7b26332015-04-08 12:13:34 +01001377 ppgtt->base.cleanup = gen8_ppgtt_cleanup;
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001378 ppgtt->base.allocate_va_range = gen8_alloc_va_range;
Michel Thierryd7b26332015-04-08 12:13:34 +01001379 ppgtt->base.insert_entries = gen8_ppgtt_insert_entries;
Daniel Vetterc7e16f22015-04-14 17:35:11 +02001380 ppgtt->base.clear_range = gen8_ppgtt_clear_range;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02001381 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
1382 ppgtt->base.bind_vma = ppgtt_bind_vma;
Michel Thierryd7b26332015-04-08 12:13:34 +01001383
Michel Thierry762d9932015-07-30 11:05:29 +01001384 if (USES_FULL_48BIT_PPGTT(ppgtt->base.dev)) {
1385 ret = setup_px(ppgtt->base.dev, &ppgtt->pml4);
1386 if (ret)
1387 goto free_scratch;
Michel Thierry6ac18502015-07-29 17:23:46 +01001388
Michel Thierry69ab76f2015-07-29 17:23:55 +01001389 gen8_initialize_pml4(&ppgtt->base, &ppgtt->pml4);
1390
Michel Thierry762d9932015-07-30 11:05:29 +01001391 ppgtt->base.total = 1ULL << 48;
Michel Thierry2dba3232015-07-30 11:06:23 +01001392 ppgtt->switch_mm = gen8_48b_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001393 } else {
1394 ret = __pdp_init(false, &ppgtt->pdp);
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001395 if (ret)
1396 goto free_scratch;
1397
1398 ppgtt->base.total = 1ULL << 32;
1399 if (IS_ENABLED(CONFIG_X86_32))
1400 /* While we have a proliferation of size_t variables
1401 * we cannot represent the full ppgtt size on 32bit,
1402 * so limit it to the same size as the GGTT (currently
1403 * 2GiB).
1404 */
1405 ppgtt->base.total = to_i915(ppgtt->base.dev)->gtt.base.total;
Michel Thierry762d9932015-07-30 11:05:29 +01001406
Michel Thierry2dba3232015-07-30 11:06:23 +01001407 ppgtt->switch_mm = gen8_legacy_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001408 trace_i915_page_directory_pointer_entry_alloc(&ppgtt->base,
1409 0, 0,
1410 GEN8_PML4E_SHIFT);
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001411 }
Michel Thierry6ac18502015-07-29 17:23:46 +01001412
Michel Thierryd7b26332015-04-08 12:13:34 +01001413 return 0;
Michel Thierry6ac18502015-07-29 17:23:46 +01001414
1415free_scratch:
1416 gen8_free_scratch(&ppgtt->base);
1417 return ret;
Michel Thierryd7b26332015-04-08 12:13:34 +01001418}
1419
Ben Widawsky87d60b62013-12-06 14:11:29 -08001420static void gen6_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1421{
Ben Widawsky87d60b62013-12-06 14:11:29 -08001422 struct i915_address_space *vm = &ppgtt->base;
Michel Thierry09942c62015-04-08 12:13:30 +01001423 struct i915_page_table *unused;
Michel Thierry07749ef2015-03-16 16:00:54 +00001424 gen6_pte_t scratch_pte;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001425 uint32_t pd_entry;
Michel Thierry09942c62015-04-08 12:13:30 +01001426 uint32_t pte, pde, temp;
1427 uint32_t start = ppgtt->base.start, length = ppgtt->base.total;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001428
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001429 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1430 I915_CACHE_LLC, true, 0);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001431
Michel Thierry09942c62015-04-08 12:13:30 +01001432 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001433 u32 expected;
Michel Thierry07749ef2015-03-16 16:00:54 +00001434 gen6_pte_t *pt_vaddr;
Mika Kuoppala567047b2015-06-25 18:35:12 +03001435 const dma_addr_t pt_addr = px_dma(ppgtt->pd.page_table[pde]);
Michel Thierry09942c62015-04-08 12:13:30 +01001436 pd_entry = readl(ppgtt->pd_addr + pde);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001437 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID);
1438
1439 if (pd_entry != expected)
1440 seq_printf(m, "\tPDE #%d mismatch: Actual PDE: %x Expected PDE: %x\n",
1441 pde,
1442 pd_entry,
1443 expected);
1444 seq_printf(m, "\tPDE: %x\n", pd_entry);
1445
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001446 pt_vaddr = kmap_px(ppgtt->pd.page_table[pde]);
1447
Michel Thierry07749ef2015-03-16 16:00:54 +00001448 for (pte = 0; pte < GEN6_PTES; pte+=4) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001449 unsigned long va =
Michel Thierry07749ef2015-03-16 16:00:54 +00001450 (pde * PAGE_SIZE * GEN6_PTES) +
Ben Widawsky87d60b62013-12-06 14:11:29 -08001451 (pte * PAGE_SIZE);
1452 int i;
1453 bool found = false;
1454 for (i = 0; i < 4; i++)
1455 if (pt_vaddr[pte + i] != scratch_pte)
1456 found = true;
1457 if (!found)
1458 continue;
1459
1460 seq_printf(m, "\t\t0x%lx [%03d,%04d]: =", va, pde, pte);
1461 for (i = 0; i < 4; i++) {
1462 if (pt_vaddr[pte + i] != scratch_pte)
1463 seq_printf(m, " %08x", pt_vaddr[pte + i]);
1464 else
1465 seq_puts(m, " SCRATCH ");
1466 }
1467 seq_puts(m, "\n");
1468 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001469 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001470 }
1471}
1472
Ben Widawsky678d96f2015-03-16 16:00:56 +00001473/* Write pde (index) from the page directory @pd to the page table @pt */
Michel Thierryec565b32015-04-08 12:13:23 +01001474static void gen6_write_pde(struct i915_page_directory *pd,
1475 const int pde, struct i915_page_table *pt)
Ben Widawsky61973492013-04-08 18:43:54 -07001476{
Ben Widawsky678d96f2015-03-16 16:00:56 +00001477 /* Caller needs to make sure the write completes if necessary */
1478 struct i915_hw_ppgtt *ppgtt =
1479 container_of(pd, struct i915_hw_ppgtt, pd);
1480 u32 pd_entry;
Ben Widawsky61973492013-04-08 18:43:54 -07001481
Mika Kuoppala567047b2015-06-25 18:35:12 +03001482 pd_entry = GEN6_PDE_ADDR_ENCODE(px_dma(pt));
Ben Widawsky678d96f2015-03-16 16:00:56 +00001483 pd_entry |= GEN6_PDE_VALID;
Ben Widawsky61973492013-04-08 18:43:54 -07001484
Ben Widawsky678d96f2015-03-16 16:00:56 +00001485 writel(pd_entry, ppgtt->pd_addr + pde);
1486}
Ben Widawsky61973492013-04-08 18:43:54 -07001487
Ben Widawsky678d96f2015-03-16 16:00:56 +00001488/* Write all the page tables found in the ppgtt structure to incrementing page
1489 * directories. */
1490static void gen6_write_page_range(struct drm_i915_private *dev_priv,
Michel Thierryec565b32015-04-08 12:13:23 +01001491 struct i915_page_directory *pd,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001492 uint32_t start, uint32_t length)
1493{
Michel Thierryec565b32015-04-08 12:13:23 +01001494 struct i915_page_table *pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001495 uint32_t pde, temp;
1496
1497 gen6_for_each_pde(pt, pd, start, length, temp, pde)
1498 gen6_write_pde(pd, pde, pt);
1499
1500 /* Make sure write is complete before other code can use this page
1501 * table. Also require for WC mapped PTEs */
1502 readl(dev_priv->gtt.gsm);
Ben Widawsky3e302542013-04-23 23:15:32 -07001503}
1504
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001505static uint32_t get_pd_offset(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky3e302542013-04-23 23:15:32 -07001506{
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001507 BUG_ON(ppgtt->pd.base.ggtt_offset & 0x3f);
Ben Widawsky3e302542013-04-23 23:15:32 -07001508
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001509 return (ppgtt->pd.base.ggtt_offset / 64) << 16;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001510}
Ben Widawsky61973492013-04-08 18:43:54 -07001511
Ben Widawsky90252e52013-12-06 14:11:12 -08001512static int hsw_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001513 struct drm_i915_gem_request *req)
Ben Widawsky90252e52013-12-06 14:11:12 -08001514{
John Harrisone85b26d2015-05-29 17:43:56 +01001515 struct intel_engine_cs *ring = req->ring;
Ben Widawsky90252e52013-12-06 14:11:12 -08001516 int ret;
Ben Widawsky61973492013-04-08 18:43:54 -07001517
Ben Widawsky90252e52013-12-06 14:11:12 -08001518 /* NB: TLBs must be flushed and invalidated before a switch */
John Harrisona84c3ae2015-05-29 17:43:57 +01001519 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001520 if (ret)
1521 return ret;
1522
John Harrison5fb9de12015-05-29 17:44:07 +01001523 ret = intel_ring_begin(req, 6);
Ben Widawsky90252e52013-12-06 14:11:12 -08001524 if (ret)
1525 return ret;
1526
1527 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1528 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
1529 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1530 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
1531 intel_ring_emit(ring, get_pd_offset(ppgtt));
1532 intel_ring_emit(ring, MI_NOOP);
1533 intel_ring_advance(ring);
1534
1535 return 0;
1536}
1537
Yu Zhang71ba2d62015-02-10 19:05:54 +08001538static int vgpu_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001539 struct drm_i915_gem_request *req)
Yu Zhang71ba2d62015-02-10 19:05:54 +08001540{
John Harrisone85b26d2015-05-29 17:43:56 +01001541 struct intel_engine_cs *ring = req->ring;
Yu Zhang71ba2d62015-02-10 19:05:54 +08001542 struct drm_i915_private *dev_priv = to_i915(ppgtt->base.dev);
1543
1544 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1545 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1546 return 0;
1547}
1548
Ben Widawsky48a10382013-12-06 14:11:11 -08001549static int gen7_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001550 struct drm_i915_gem_request *req)
Ben Widawsky48a10382013-12-06 14:11:11 -08001551{
John Harrisone85b26d2015-05-29 17:43:56 +01001552 struct intel_engine_cs *ring = req->ring;
Ben Widawsky48a10382013-12-06 14:11:11 -08001553 int ret;
1554
Ben Widawsky48a10382013-12-06 14:11:11 -08001555 /* NB: TLBs must be flushed and invalidated before a switch */
John Harrisona84c3ae2015-05-29 17:43:57 +01001556 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky48a10382013-12-06 14:11:11 -08001557 if (ret)
1558 return ret;
1559
John Harrison5fb9de12015-05-29 17:44:07 +01001560 ret = intel_ring_begin(req, 6);
Ben Widawsky48a10382013-12-06 14:11:11 -08001561 if (ret)
1562 return ret;
1563
1564 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1565 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
1566 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1567 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
1568 intel_ring_emit(ring, get_pd_offset(ppgtt));
1569 intel_ring_emit(ring, MI_NOOP);
1570 intel_ring_advance(ring);
1571
Ben Widawsky90252e52013-12-06 14:11:12 -08001572 /* XXX: RCS is the only one to auto invalidate the TLBs? */
1573 if (ring->id != RCS) {
John Harrisona84c3ae2015-05-29 17:43:57 +01001574 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001575 if (ret)
1576 return ret;
1577 }
1578
Ben Widawsky48a10382013-12-06 14:11:11 -08001579 return 0;
1580}
1581
Ben Widawskyeeb94882013-12-06 14:11:10 -08001582static int gen6_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001583 struct drm_i915_gem_request *req)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001584{
John Harrisone85b26d2015-05-29 17:43:56 +01001585 struct intel_engine_cs *ring = req->ring;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001586 struct drm_device *dev = ppgtt->base.dev;
1587 struct drm_i915_private *dev_priv = dev->dev_private;
1588
Ben Widawsky48a10382013-12-06 14:11:11 -08001589
Ben Widawskyeeb94882013-12-06 14:11:10 -08001590 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1591 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1592
1593 POSTING_READ(RING_PP_DIR_DCLV(ring));
1594
1595 return 0;
1596}
1597
Daniel Vetter82460d92014-08-06 20:19:53 +02001598static void gen8_ppgtt_enable(struct drm_device *dev)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001599{
Ben Widawskyeeb94882013-12-06 14:11:10 -08001600 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001601 struct intel_engine_cs *ring;
Daniel Vetter82460d92014-08-06 20:19:53 +02001602 int j;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001603
1604 for_each_ring(ring, dev_priv, j) {
Michel Thierry2dba3232015-07-30 11:06:23 +01001605 u32 four_level = USES_FULL_48BIT_PPGTT(dev) ? GEN8_GFX_PPGTT_48B : 0;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001606 I915_WRITE(RING_MODE_GEN7(ring),
Michel Thierry2dba3232015-07-30 11:06:23 +01001607 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE | four_level));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001608 }
Ben Widawskyeeb94882013-12-06 14:11:10 -08001609}
1610
Daniel Vetter82460d92014-08-06 20:19:53 +02001611static void gen7_ppgtt_enable(struct drm_device *dev)
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001612{
Jani Nikula50227e12014-03-31 14:27:21 +03001613 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001614 struct intel_engine_cs *ring;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001615 uint32_t ecochk, ecobits;
1616 int i;
1617
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001618 ecobits = I915_READ(GAC_ECO_BITS);
1619 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
1620
1621 ecochk = I915_READ(GAM_ECOCHK);
1622 if (IS_HASWELL(dev)) {
1623 ecochk |= ECOCHK_PPGTT_WB_HSW;
1624 } else {
1625 ecochk |= ECOCHK_PPGTT_LLC_IVB;
1626 ecochk &= ~ECOCHK_PPGTT_GFDT_IVB;
1627 }
1628 I915_WRITE(GAM_ECOCHK, ecochk);
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001629
Ben Widawsky61973492013-04-08 18:43:54 -07001630 for_each_ring(ring, dev_priv, i) {
Ben Widawskyeeb94882013-12-06 14:11:10 -08001631 /* GFX_MODE is per-ring on gen7+ */
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001632 I915_WRITE(RING_MODE_GEN7(ring),
1633 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001634 }
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001635}
1636
Daniel Vetter82460d92014-08-06 20:19:53 +02001637static void gen6_ppgtt_enable(struct drm_device *dev)
Ben Widawsky61973492013-04-08 18:43:54 -07001638{
Jani Nikula50227e12014-03-31 14:27:21 +03001639 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001640 uint32_t ecochk, gab_ctl, ecobits;
Ben Widawsky61973492013-04-08 18:43:54 -07001641
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001642 ecobits = I915_READ(GAC_ECO_BITS);
1643 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_SNB_BIT |
1644 ECOBITS_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001645
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001646 gab_ctl = I915_READ(GAB_CTL);
1647 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
Ben Widawsky61973492013-04-08 18:43:54 -07001648
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001649 ecochk = I915_READ(GAM_ECOCHK);
1650 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT | ECOCHK_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001651
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001652 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001653}
1654
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001655/* PPGTT support for Sandybdrige/Gen6 and later */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001656static void gen6_ppgtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08001657 uint64_t start,
1658 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07001659 bool use_scratch)
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001660{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001661 struct i915_hw_ppgtt *ppgtt =
1662 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +00001663 gen6_pte_t *pt_vaddr, scratch_pte;
Ben Widawsky782f1492014-02-20 11:50:33 -08001664 unsigned first_entry = start >> PAGE_SHIFT;
1665 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001666 unsigned act_pt = first_entry / GEN6_PTES;
1667 unsigned first_pte = first_entry % GEN6_PTES;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001668 unsigned last_pte, i;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001669
Mika Kuoppalac114f762015-06-25 18:35:13 +03001670 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1671 I915_CACHE_LLC, true, 0);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001672
Daniel Vetter7bddb012012-02-09 17:15:47 +01001673 while (num_entries) {
1674 last_pte = first_pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +00001675 if (last_pte > GEN6_PTES)
1676 last_pte = GEN6_PTES;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001677
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001678 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001679
1680 for (i = first_pte; i < last_pte; i++)
1681 pt_vaddr[i] = scratch_pte;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001682
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001683 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001684
Daniel Vetter7bddb012012-02-09 17:15:47 +01001685 num_entries -= last_pte - first_pte;
1686 first_pte = 0;
Daniel Vettera15326a2013-03-19 23:48:39 +01001687 act_pt++;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001688 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001689}
1690
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001691static void gen6_ppgtt_insert_entries(struct i915_address_space *vm,
Daniel Vetterdef886c2013-01-24 14:44:56 -08001692 struct sg_table *pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08001693 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05301694 enum i915_cache_level cache_level, u32 flags)
Daniel Vetterdef886c2013-01-24 14:44:56 -08001695{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001696 struct i915_hw_ppgtt *ppgtt =
1697 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +00001698 gen6_pte_t *pt_vaddr;
Ben Widawsky782f1492014-02-20 11:50:33 -08001699 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001700 unsigned act_pt = first_entry / GEN6_PTES;
1701 unsigned act_pte = first_entry % GEN6_PTES;
Imre Deak6e995e22013-02-18 19:28:04 +02001702 struct sg_page_iter sg_iter;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001703
Chris Wilsoncc797142013-12-31 15:50:30 +00001704 pt_vaddr = NULL;
Imre Deak6e995e22013-02-18 19:28:04 +02001705 for_each_sg_page(pages->sgl, &sg_iter, pages->nents, 0) {
Chris Wilsoncc797142013-12-31 15:50:30 +00001706 if (pt_vaddr == NULL)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001707 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001708
Chris Wilsoncc797142013-12-31 15:50:30 +00001709 pt_vaddr[act_pte] =
1710 vm->pte_encode(sg_page_iter_dma_address(&sg_iter),
Akash Goel24f3a8c2014-06-17 10:59:42 +05301711 cache_level, true, flags);
1712
Michel Thierry07749ef2015-03-16 16:00:54 +00001713 if (++act_pte == GEN6_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001714 kunmap_px(ppgtt, pt_vaddr);
Chris Wilsoncc797142013-12-31 15:50:30 +00001715 pt_vaddr = NULL;
Daniel Vettera15326a2013-03-19 23:48:39 +01001716 act_pt++;
Imre Deak6e995e22013-02-18 19:28:04 +02001717 act_pte = 0;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001718 }
Daniel Vetterdef886c2013-01-24 14:44:56 -08001719 }
Chris Wilsoncc797142013-12-31 15:50:30 +00001720 if (pt_vaddr)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001721 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001722}
1723
Ben Widawsky678d96f2015-03-16 16:00:56 +00001724static int gen6_alloc_va_range(struct i915_address_space *vm,
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001725 uint64_t start_in, uint64_t length_in)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001726{
Michel Thierry4933d512015-03-24 15:46:22 +00001727 DECLARE_BITMAP(new_page_tables, I915_PDES);
1728 struct drm_device *dev = vm->dev;
1729 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001730 struct i915_hw_ppgtt *ppgtt =
1731 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierryec565b32015-04-08 12:13:23 +01001732 struct i915_page_table *pt;
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001733 uint32_t start, length, start_save, length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001734 uint32_t pde, temp;
Michel Thierry4933d512015-03-24 15:46:22 +00001735 int ret;
1736
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001737 if (WARN_ON(start_in + length_in > ppgtt->base.total))
1738 return -ENODEV;
1739
1740 start = start_save = start_in;
1741 length = length_save = length_in;
Michel Thierry4933d512015-03-24 15:46:22 +00001742
1743 bitmap_zero(new_page_tables, I915_PDES);
1744
1745 /* The allocation is done in two stages so that we can bail out with
1746 * minimal amount of pain. The first stage finds new page tables that
1747 * need allocation. The second stage marks use ptes within the page
1748 * tables.
1749 */
1750 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001751 if (pt != vm->scratch_pt) {
Michel Thierry4933d512015-03-24 15:46:22 +00001752 WARN_ON(bitmap_empty(pt->used_ptes, GEN6_PTES));
1753 continue;
1754 }
1755
1756 /* We've already allocated a page table */
1757 WARN_ON(!bitmap_empty(pt->used_ptes, GEN6_PTES));
1758
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001759 pt = alloc_pt(dev);
Michel Thierry4933d512015-03-24 15:46:22 +00001760 if (IS_ERR(pt)) {
1761 ret = PTR_ERR(pt);
1762 goto unwind_out;
1763 }
1764
1765 gen6_initialize_pt(vm, pt);
1766
1767 ppgtt->pd.page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001768 __set_bit(pde, new_page_tables);
Michel Thierry72744cb2015-03-24 15:46:23 +00001769 trace_i915_page_table_entry_alloc(vm, pde, start, GEN6_PDE_SHIFT);
Michel Thierry4933d512015-03-24 15:46:22 +00001770 }
1771
1772 start = start_save;
1773 length = length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001774
1775 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
1776 DECLARE_BITMAP(tmp_bitmap, GEN6_PTES);
1777
1778 bitmap_zero(tmp_bitmap, GEN6_PTES);
1779 bitmap_set(tmp_bitmap, gen6_pte_index(start),
1780 gen6_pte_count(start, length));
1781
Mika Kuoppala966082c2015-06-25 18:35:19 +03001782 if (__test_and_clear_bit(pde, new_page_tables))
Michel Thierry4933d512015-03-24 15:46:22 +00001783 gen6_write_pde(&ppgtt->pd, pde, pt);
1784
Michel Thierry72744cb2015-03-24 15:46:23 +00001785 trace_i915_page_table_entry_map(vm, pde, pt,
1786 gen6_pte_index(start),
1787 gen6_pte_count(start, length),
1788 GEN6_PTES);
Michel Thierry4933d512015-03-24 15:46:22 +00001789 bitmap_or(pt->used_ptes, tmp_bitmap, pt->used_ptes,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001790 GEN6_PTES);
1791 }
1792
Michel Thierry4933d512015-03-24 15:46:22 +00001793 WARN_ON(!bitmap_empty(new_page_tables, I915_PDES));
1794
1795 /* Make sure write is complete before other code can use this page
1796 * table. Also require for WC mapped PTEs */
1797 readl(dev_priv->gtt.gsm);
1798
Ben Widawsky563222a2015-03-19 12:53:28 +00001799 mark_tlbs_dirty(ppgtt);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001800 return 0;
Michel Thierry4933d512015-03-24 15:46:22 +00001801
1802unwind_out:
1803 for_each_set_bit(pde, new_page_tables, I915_PDES) {
Michel Thierryec565b32015-04-08 12:13:23 +01001804 struct i915_page_table *pt = ppgtt->pd.page_table[pde];
Michel Thierry4933d512015-03-24 15:46:22 +00001805
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001806 ppgtt->pd.page_table[pde] = vm->scratch_pt;
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001807 free_pt(vm->dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001808 }
1809
1810 mark_tlbs_dirty(ppgtt);
1811 return ret;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001812}
1813
Mika Kuoppala8776f022015-06-30 18:16:40 +03001814static int gen6_init_scratch(struct i915_address_space *vm)
1815{
1816 struct drm_device *dev = vm->dev;
1817
1818 vm->scratch_page = alloc_scratch_page(dev);
1819 if (IS_ERR(vm->scratch_page))
1820 return PTR_ERR(vm->scratch_page);
1821
1822 vm->scratch_pt = alloc_pt(dev);
1823 if (IS_ERR(vm->scratch_pt)) {
1824 free_scratch_page(dev, vm->scratch_page);
1825 return PTR_ERR(vm->scratch_pt);
1826 }
1827
1828 gen6_initialize_pt(vm, vm->scratch_pt);
1829
1830 return 0;
1831}
1832
1833static void gen6_free_scratch(struct i915_address_space *vm)
1834{
1835 struct drm_device *dev = vm->dev;
1836
1837 free_pt(dev, vm->scratch_pt);
1838 free_scratch_page(dev, vm->scratch_page);
1839}
1840
Daniel Vetter061dd492015-04-14 17:35:13 +02001841static void gen6_ppgtt_cleanup(struct i915_address_space *vm)
Ben Widawskya00d8252014-02-19 22:05:48 -08001842{
Daniel Vetter061dd492015-04-14 17:35:13 +02001843 struct i915_hw_ppgtt *ppgtt =
1844 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry09942c62015-04-08 12:13:30 +01001845 struct i915_page_table *pt;
1846 uint32_t pde;
Daniel Vetter3440d262013-01-24 13:49:56 -08001847
Daniel Vetter061dd492015-04-14 17:35:13 +02001848 drm_mm_remove_node(&ppgtt->node);
1849
Michel Thierry09942c62015-04-08 12:13:30 +01001850 gen6_for_all_pdes(pt, ppgtt, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001851 if (pt != vm->scratch_pt)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001852 free_pt(ppgtt->base.dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001853 }
1854
Mika Kuoppala8776f022015-06-30 18:16:40 +03001855 gen6_free_scratch(vm);
Daniel Vetter3440d262013-01-24 13:49:56 -08001856}
1857
Ben Widawskyb1465202014-02-19 22:05:49 -08001858static int gen6_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08001859{
Mika Kuoppala8776f022015-06-30 18:16:40 +03001860 struct i915_address_space *vm = &ppgtt->base;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001861 struct drm_device *dev = ppgtt->base.dev;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001862 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskye3cc1992013-12-06 14:11:08 -08001863 bool retried = false;
Ben Widawskyb1465202014-02-19 22:05:49 -08001864 int ret;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001865
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001866 /* PPGTT PDEs reside in the GGTT and consists of 512 entries. The
1867 * allocator works in address space sizes, so it's multiplied by page
1868 * size. We allocate at the top of the GTT to avoid fragmentation.
1869 */
1870 BUG_ON(!drm_mm_initialized(&dev_priv->gtt.base.mm));
Michel Thierry4933d512015-03-24 15:46:22 +00001871
Mika Kuoppala8776f022015-06-30 18:16:40 +03001872 ret = gen6_init_scratch(vm);
1873 if (ret)
1874 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00001875
Ben Widawskye3cc1992013-12-06 14:11:08 -08001876alloc:
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001877 ret = drm_mm_insert_node_in_range_generic(&dev_priv->gtt.base.mm,
1878 &ppgtt->node, GEN6_PD_SIZE,
1879 GEN6_PD_ALIGN, 0,
1880 0, dev_priv->gtt.base.total,
Ben Widawsky3e8b5ae2014-05-06 22:21:30 -07001881 DRM_MM_TOPDOWN);
Ben Widawskye3cc1992013-12-06 14:11:08 -08001882 if (ret == -ENOSPC && !retried) {
1883 ret = i915_gem_evict_something(dev, &dev_priv->gtt.base,
1884 GEN6_PD_SIZE, GEN6_PD_ALIGN,
Chris Wilsond23db882014-05-23 08:48:08 +02001885 I915_CACHE_NONE,
1886 0, dev_priv->gtt.base.total,
1887 0);
Ben Widawskye3cc1992013-12-06 14:11:08 -08001888 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001889 goto err_out;
Ben Widawskye3cc1992013-12-06 14:11:08 -08001890
1891 retried = true;
1892 goto alloc;
1893 }
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001894
Ben Widawskyc8c26622015-01-22 17:01:25 +00001895 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001896 goto err_out;
1897
Ben Widawskyc8c26622015-01-22 17:01:25 +00001898
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001899 if (ppgtt->node.start < dev_priv->gtt.mappable_end)
1900 DRM_DEBUG("Forced to use aperture for PDEs\n");
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001901
Ben Widawskyc8c26622015-01-22 17:01:25 +00001902 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001903
1904err_out:
Mika Kuoppala8776f022015-06-30 18:16:40 +03001905 gen6_free_scratch(vm);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001906 return ret;
Ben Widawskyb1465202014-02-19 22:05:49 -08001907}
1908
Ben Widawskyb1465202014-02-19 22:05:49 -08001909static int gen6_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt)
1910{
kbuild test robot2f2cf682015-03-27 19:26:35 +08001911 return gen6_ppgtt_allocate_page_directories(ppgtt);
Ben Widawskyb1465202014-02-19 22:05:49 -08001912}
1913
Michel Thierry4933d512015-03-24 15:46:22 +00001914static void gen6_scratch_va_range(struct i915_hw_ppgtt *ppgtt,
1915 uint64_t start, uint64_t length)
1916{
Michel Thierryec565b32015-04-08 12:13:23 +01001917 struct i915_page_table *unused;
Michel Thierry4933d512015-03-24 15:46:22 +00001918 uint32_t pde, temp;
1919
1920 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde)
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001921 ppgtt->pd.page_table[pde] = ppgtt->base.scratch_pt;
Michel Thierry4933d512015-03-24 15:46:22 +00001922}
1923
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001924static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawskyb1465202014-02-19 22:05:49 -08001925{
1926 struct drm_device *dev = ppgtt->base.dev;
1927 struct drm_i915_private *dev_priv = dev->dev_private;
1928 int ret;
1929
1930 ppgtt->base.pte_encode = dev_priv->gtt.base.pte_encode;
Ben Widawsky48a10382013-12-06 14:11:11 -08001931 if (IS_GEN6(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08001932 ppgtt->switch_mm = gen6_mm_switch;
Ben Widawsky90252e52013-12-06 14:11:12 -08001933 } else if (IS_HASWELL(dev)) {
Ben Widawsky90252e52013-12-06 14:11:12 -08001934 ppgtt->switch_mm = hsw_mm_switch;
Ben Widawsky48a10382013-12-06 14:11:11 -08001935 } else if (IS_GEN7(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08001936 ppgtt->switch_mm = gen7_mm_switch;
1937 } else
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001938 BUG();
Ben Widawskyb1465202014-02-19 22:05:49 -08001939
Yu Zhang71ba2d62015-02-10 19:05:54 +08001940 if (intel_vgpu_active(dev))
1941 ppgtt->switch_mm = vgpu_mm_switch;
1942
Ben Widawskyb1465202014-02-19 22:05:49 -08001943 ret = gen6_ppgtt_alloc(ppgtt);
1944 if (ret)
1945 return ret;
1946
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001947 ppgtt->base.allocate_va_range = gen6_alloc_va_range;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001948 ppgtt->base.clear_range = gen6_ppgtt_clear_range;
1949 ppgtt->base.insert_entries = gen6_ppgtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02001950 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
1951 ppgtt->base.bind_vma = ppgtt_bind_vma;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001952 ppgtt->base.cleanup = gen6_ppgtt_cleanup;
Ben Widawsky686e1f6f2013-11-25 09:54:34 -08001953 ppgtt->base.start = 0;
Michel Thierry09942c62015-04-08 12:13:30 +01001954 ppgtt->base.total = I915_PDES * GEN6_PTES * PAGE_SIZE;
Ben Widawskyb1465202014-02-19 22:05:49 -08001955 ppgtt->debug_dump = gen6_dump_ppgtt;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001956
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001957 ppgtt->pd.base.ggtt_offset =
Michel Thierry07749ef2015-03-16 16:00:54 +00001958 ppgtt->node.start / PAGE_SIZE * sizeof(gen6_pte_t);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001959
Ben Widawsky678d96f2015-03-16 16:00:56 +00001960 ppgtt->pd_addr = (gen6_pte_t __iomem *)dev_priv->gtt.gsm +
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001961 ppgtt->pd.base.ggtt_offset / sizeof(gen6_pte_t);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001962
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001963 gen6_scratch_va_range(ppgtt, 0, ppgtt->base.total);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001964
Ben Widawsky678d96f2015-03-16 16:00:56 +00001965 gen6_write_page_range(dev_priv, &ppgtt->pd, 0, ppgtt->base.total);
1966
Thierry Reding440fd522015-01-23 09:05:06 +01001967 DRM_DEBUG_DRIVER("Allocated pde space (%lldM) at GTT entry: %llx\n",
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08001968 ppgtt->node.size >> 20,
1969 ppgtt->node.start / PAGE_SIZE);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001970
Daniel Vetterfa76da32014-08-06 20:19:54 +02001971 DRM_DEBUG("Adding PPGTT at offset %x\n",
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001972 ppgtt->pd.base.ggtt_offset << 10);
Daniel Vetterfa76da32014-08-06 20:19:54 +02001973
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001974 return 0;
Daniel Vetter3440d262013-01-24 13:49:56 -08001975}
1976
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001977static int __hw_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08001978{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001979 ppgtt->base.dev = dev;
Daniel Vetter3440d262013-01-24 13:49:56 -08001980
Ben Widawsky3ed124b2013-04-08 18:43:53 -07001981 if (INTEL_INFO(dev)->gen < 8)
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001982 return gen6_ppgtt_init(ppgtt);
Ben Widawsky3ed124b2013-04-08 18:43:53 -07001983 else
Michel Thierryd7b26332015-04-08 12:13:34 +01001984 return gen8_ppgtt_init(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02001985}
Mika Kuoppalac114f762015-06-25 18:35:13 +03001986
Daniel Vetterfa76da32014-08-06 20:19:54 +02001987int i915_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
1988{
1989 struct drm_i915_private *dev_priv = dev->dev_private;
1990 int ret = 0;
Ben Widawsky3ed124b2013-04-08 18:43:53 -07001991
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001992 ret = __hw_ppgtt_init(dev, ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02001993 if (ret == 0) {
Ben Widawskyc7c48df2013-12-06 14:11:15 -08001994 kref_init(&ppgtt->ref);
Ben Widawsky93bd8642013-07-16 16:50:06 -07001995 drm_mm_init(&ppgtt->base.mm, ppgtt->base.start,
1996 ppgtt->base.total);
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08001997 i915_init_vm(dev_priv, &ppgtt->base);
Ben Widawsky93bd8642013-07-16 16:50:06 -07001998 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001999
2000 return ret;
2001}
2002
Daniel Vetter82460d92014-08-06 20:19:53 +02002003int i915_ppgtt_init_hw(struct drm_device *dev)
2004{
Thomas Daniel671b50132014-08-20 16:24:50 +01002005 /* In the case of execlists, PPGTT is enabled by the context descriptor
2006 * and the PDPs are contained within the context itself. We don't
2007 * need to do anything here. */
2008 if (i915.enable_execlists)
2009 return 0;
2010
Daniel Vetter82460d92014-08-06 20:19:53 +02002011 if (!USES_PPGTT(dev))
2012 return 0;
2013
2014 if (IS_GEN6(dev))
2015 gen6_ppgtt_enable(dev);
2016 else if (IS_GEN7(dev))
2017 gen7_ppgtt_enable(dev);
2018 else if (INTEL_INFO(dev)->gen >= 8)
2019 gen8_ppgtt_enable(dev);
2020 else
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01002021 MISSING_CASE(INTEL_INFO(dev)->gen);
Daniel Vetter82460d92014-08-06 20:19:53 +02002022
John Harrison4ad2fd82015-06-18 13:11:20 +01002023 return 0;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002024}
John Harrison4ad2fd82015-06-18 13:11:20 +01002025
John Harrisonb3dd6b92015-05-29 17:43:40 +01002026int i915_ppgtt_init_ring(struct drm_i915_gem_request *req)
John Harrison4ad2fd82015-06-18 13:11:20 +01002027{
John Harrisonb3dd6b92015-05-29 17:43:40 +01002028 struct drm_i915_private *dev_priv = req->ring->dev->dev_private;
John Harrison4ad2fd82015-06-18 13:11:20 +01002029 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2030
2031 if (i915.enable_execlists)
2032 return 0;
2033
2034 if (!ppgtt)
2035 return 0;
2036
John Harrisone85b26d2015-05-29 17:43:56 +01002037 return ppgtt->switch_mm(ppgtt, req);
John Harrison4ad2fd82015-06-18 13:11:20 +01002038}
2039
Daniel Vetter4d884702014-08-06 15:04:47 +02002040struct i915_hw_ppgtt *
2041i915_ppgtt_create(struct drm_device *dev, struct drm_i915_file_private *fpriv)
2042{
2043 struct i915_hw_ppgtt *ppgtt;
2044 int ret;
2045
2046 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2047 if (!ppgtt)
2048 return ERR_PTR(-ENOMEM);
2049
2050 ret = i915_ppgtt_init(dev, ppgtt);
2051 if (ret) {
2052 kfree(ppgtt);
2053 return ERR_PTR(ret);
2054 }
2055
2056 ppgtt->file_priv = fpriv;
2057
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002058 trace_i915_ppgtt_create(&ppgtt->base);
2059
Daniel Vetter4d884702014-08-06 15:04:47 +02002060 return ppgtt;
2061}
2062
Daniel Vetteree960be2014-08-06 15:04:45 +02002063void i915_ppgtt_release(struct kref *kref)
2064{
2065 struct i915_hw_ppgtt *ppgtt =
2066 container_of(kref, struct i915_hw_ppgtt, ref);
2067
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002068 trace_i915_ppgtt_release(&ppgtt->base);
2069
Daniel Vetteree960be2014-08-06 15:04:45 +02002070 /* vmas should already be unbound */
2071 WARN_ON(!list_empty(&ppgtt->base.active_list));
2072 WARN_ON(!list_empty(&ppgtt->base.inactive_list));
2073
Daniel Vetter19dd1202014-08-06 15:04:55 +02002074 list_del(&ppgtt->base.global_link);
2075 drm_mm_takedown(&ppgtt->base.mm);
2076
Daniel Vetteree960be2014-08-06 15:04:45 +02002077 ppgtt->base.cleanup(&ppgtt->base);
2078 kfree(ppgtt);
2079}
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002080
Ben Widawskya81cc002013-01-18 12:30:31 -08002081extern int intel_iommu_gfx_mapped;
2082/* Certain Gen5 chipsets require require idling the GPU before
2083 * unmapping anything from the GTT when VT-d is enabled.
2084 */
Daniel Vetter2c642b02015-04-14 17:35:26 +02002085static bool needs_idle_maps(struct drm_device *dev)
Ben Widawskya81cc002013-01-18 12:30:31 -08002086{
2087#ifdef CONFIG_INTEL_IOMMU
2088 /* Query intel_iommu to see if we need the workaround. Presumably that
2089 * was loaded first.
2090 */
2091 if (IS_GEN5(dev) && IS_MOBILE(dev) && intel_iommu_gfx_mapped)
2092 return true;
2093#endif
2094 return false;
2095}
2096
Ben Widawsky5c042282011-10-17 15:51:55 -07002097static bool do_idling(struct drm_i915_private *dev_priv)
2098{
2099 bool ret = dev_priv->mm.interruptible;
2100
Ben Widawskya81cc002013-01-18 12:30:31 -08002101 if (unlikely(dev_priv->gtt.do_idle_maps)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002102 dev_priv->mm.interruptible = false;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002103 if (i915_gpu_idle(dev_priv->dev)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002104 DRM_ERROR("Couldn't idle GPU\n");
2105 /* Wait a bit, in hopes it avoids the hang */
2106 udelay(10);
2107 }
2108 }
2109
2110 return ret;
2111}
2112
2113static void undo_idling(struct drm_i915_private *dev_priv, bool interruptible)
2114{
Ben Widawskya81cc002013-01-18 12:30:31 -08002115 if (unlikely(dev_priv->gtt.do_idle_maps))
Ben Widawsky5c042282011-10-17 15:51:55 -07002116 dev_priv->mm.interruptible = interruptible;
2117}
2118
Ben Widawsky828c7902013-10-16 09:21:30 -07002119void i915_check_and_clear_faults(struct drm_device *dev)
2120{
2121 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002122 struct intel_engine_cs *ring;
Ben Widawsky828c7902013-10-16 09:21:30 -07002123 int i;
2124
2125 if (INTEL_INFO(dev)->gen < 6)
2126 return;
2127
2128 for_each_ring(ring, dev_priv, i) {
2129 u32 fault_reg;
2130 fault_reg = I915_READ(RING_FAULT_REG(ring));
2131 if (fault_reg & RING_FAULT_VALID) {
2132 DRM_DEBUG_DRIVER("Unexpected fault\n"
Paulo Zanoni59a5d292014-10-30 15:52:45 -02002133 "\tAddr: 0x%08lx\n"
Ben Widawsky828c7902013-10-16 09:21:30 -07002134 "\tAddress space: %s\n"
2135 "\tSource ID: %d\n"
2136 "\tType: %d\n",
2137 fault_reg & PAGE_MASK,
2138 fault_reg & RING_FAULT_GTTSEL_MASK ? "GGTT" : "PPGTT",
2139 RING_FAULT_SRCID(fault_reg),
2140 RING_FAULT_FAULT_TYPE(fault_reg));
2141 I915_WRITE(RING_FAULT_REG(ring),
2142 fault_reg & ~RING_FAULT_VALID);
2143 }
2144 }
2145 POSTING_READ(RING_FAULT_REG(&dev_priv->ring[RCS]));
2146}
2147
Chris Wilson91e56492014-09-25 10:13:12 +01002148static void i915_ggtt_flush(struct drm_i915_private *dev_priv)
2149{
2150 if (INTEL_INFO(dev_priv->dev)->gen < 6) {
2151 intel_gtt_chipset_flush();
2152 } else {
2153 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2154 POSTING_READ(GFX_FLSH_CNTL_GEN6);
2155 }
2156}
2157
Ben Widawsky828c7902013-10-16 09:21:30 -07002158void i915_gem_suspend_gtt_mappings(struct drm_device *dev)
2159{
2160 struct drm_i915_private *dev_priv = dev->dev_private;
2161
2162 /* Don't bother messing with faults pre GEN6 as we have little
2163 * documentation supporting that it's a good idea.
2164 */
2165 if (INTEL_INFO(dev)->gen < 6)
2166 return;
2167
2168 i915_check_and_clear_faults(dev);
2169
2170 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002171 dev_priv->gtt.base.start,
2172 dev_priv->gtt.base.total,
Daniel Vettere568af12014-03-26 20:08:20 +01002173 true);
Chris Wilson91e56492014-09-25 10:13:12 +01002174
2175 i915_ggtt_flush(dev_priv);
Ben Widawsky828c7902013-10-16 09:21:30 -07002176}
2177
Daniel Vetter74163902012-02-15 23:50:21 +01002178int i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002179{
Chris Wilson9da3da62012-06-01 15:20:22 +01002180 if (!dma_map_sg(&obj->base.dev->pdev->dev,
2181 obj->pages->sgl, obj->pages->nents,
2182 PCI_DMA_BIDIRECTIONAL))
2183 return -ENOSPC;
2184
2185 return 0;
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002186}
2187
Daniel Vetter2c642b02015-04-14 17:35:26 +02002188static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002189{
2190#ifdef writeq
2191 writeq(pte, addr);
2192#else
2193 iowrite32((u32)pte, addr);
2194 iowrite32(pte >> 32, addr + 4);
2195#endif
2196}
2197
2198static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
2199 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002200 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302201 enum i915_cache_level level, u32 unused)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002202{
2203 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002204 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002205 gen8_pte_t __iomem *gtt_entries =
2206 (gen8_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002207 int i = 0;
2208 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002209 dma_addr_t addr = 0; /* shut up gcc */
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002210
2211 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
2212 addr = sg_dma_address(sg_iter.sg) +
2213 (sg_iter.sg_pgoffset << PAGE_SHIFT);
2214 gen8_set_pte(&gtt_entries[i],
2215 gen8_pte_encode(addr, level, true));
2216 i++;
2217 }
2218
2219 /*
2220 * XXX: This serves as a posting read to make sure that the PTE has
2221 * actually been updated. There is some concern that even though
2222 * registers and PTEs are within the same BAR that they are potentially
2223 * of NUMA access patterns. Therefore, even with the way we assume
2224 * hardware should work, we must keep this posting read for paranoia.
2225 */
2226 if (i != 0)
2227 WARN_ON(readq(&gtt_entries[i-1])
2228 != gen8_pte_encode(addr, level, true));
2229
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002230 /* This next bit makes the above posting read even more important. We
2231 * want to flush the TLBs only after we're certain all the PTE updates
2232 * have finished.
2233 */
2234 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2235 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002236}
2237
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002238/*
2239 * Binds an object into the global gtt with the specified cache level. The object
2240 * will be accessible to the GPU via commands whose operands reference offsets
2241 * within the global GTT as well as accessible by the GPU through the GMADR
2242 * mapped BAR (dev_priv->mm.gtt->gtt).
2243 */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002244static void gen6_ggtt_insert_entries(struct i915_address_space *vm,
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002245 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002246 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302247 enum i915_cache_level level, u32 flags)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002248{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002249 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002250 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002251 gen6_pte_t __iomem *gtt_entries =
2252 (gen6_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
Imre Deak6e995e22013-02-18 19:28:04 +02002253 int i = 0;
2254 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002255 dma_addr_t addr = 0;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002256
Imre Deak6e995e22013-02-18 19:28:04 +02002257 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02002258 addr = sg_page_iter_dma_address(&sg_iter);
Akash Goel24f3a8c2014-06-17 10:59:42 +05302259 iowrite32(vm->pte_encode(addr, level, true, flags), &gtt_entries[i]);
Imre Deak6e995e22013-02-18 19:28:04 +02002260 i++;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002261 }
2262
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002263 /* XXX: This serves as a posting read to make sure that the PTE has
2264 * actually been updated. There is some concern that even though
2265 * registers and PTEs are within the same BAR that they are potentially
2266 * of NUMA access patterns. Therefore, even with the way we assume
2267 * hardware should work, we must keep this posting read for paranoia.
2268 */
Pavel Machek57007df2014-07-28 13:20:58 +02002269 if (i != 0) {
2270 unsigned long gtt = readl(&gtt_entries[i-1]);
2271 WARN_ON(gtt != vm->pte_encode(addr, level, true, flags));
2272 }
Ben Widawsky0f9b91c2012-11-04 09:21:30 -08002273
2274 /* This next bit makes the above posting read even more important. We
2275 * want to flush the TLBs only after we're certain all the PTE updates
2276 * have finished.
2277 */
2278 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2279 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002280}
2281
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002282static void gen8_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002283 uint64_t start,
2284 uint64_t length,
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002285 bool use_scratch)
2286{
2287 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002288 unsigned first_entry = start >> PAGE_SHIFT;
2289 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002290 gen8_pte_t scratch_pte, __iomem *gtt_base =
2291 (gen8_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002292 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
2293 int i;
2294
2295 if (WARN(num_entries > max_entries,
2296 "First entry = %d; Num entries = %d (max=%d)\n",
2297 first_entry, num_entries, max_entries))
2298 num_entries = max_entries;
2299
Mika Kuoppalac114f762015-06-25 18:35:13 +03002300 scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002301 I915_CACHE_LLC,
2302 use_scratch);
2303 for (i = 0; i < num_entries; i++)
2304 gen8_set_pte(&gtt_base[i], scratch_pte);
2305 readl(gtt_base);
2306}
2307
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002308static void gen6_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002309 uint64_t start,
2310 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002311 bool use_scratch)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002312{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002313 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002314 unsigned first_entry = start >> PAGE_SHIFT;
2315 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002316 gen6_pte_t scratch_pte, __iomem *gtt_base =
2317 (gen6_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
Ben Widawskya54c0c22013-01-24 14:45:00 -08002318 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002319 int i;
2320
2321 if (WARN(num_entries > max_entries,
2322 "First entry = %d; Num entries = %d (max=%d)\n",
2323 first_entry, num_entries, max_entries))
2324 num_entries = max_entries;
2325
Mika Kuoppalac114f762015-06-25 18:35:13 +03002326 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
2327 I915_CACHE_LLC, use_scratch, 0);
Ben Widawsky828c7902013-10-16 09:21:30 -07002328
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002329 for (i = 0; i < num_entries; i++)
2330 iowrite32(scratch_pte, &gtt_base[i]);
2331 readl(gtt_base);
2332}
2333
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002334static void i915_ggtt_insert_entries(struct i915_address_space *vm,
2335 struct sg_table *pages,
2336 uint64_t start,
2337 enum i915_cache_level cache_level, u32 unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002338{
2339 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
2340 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
2341
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002342 intel_gtt_insert_sg_entries(pages, start >> PAGE_SHIFT, flags);
Daniel Vetter08755462015-04-20 09:04:05 -07002343
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002344}
2345
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002346static void i915_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002347 uint64_t start,
2348 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002349 bool unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002350{
Ben Widawsky782f1492014-02-20 11:50:33 -08002351 unsigned first_entry = start >> PAGE_SHIFT;
2352 unsigned num_entries = length >> PAGE_SHIFT;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002353 intel_gtt_clear_range(first_entry, num_entries);
2354}
2355
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002356static int ggtt_bind_vma(struct i915_vma *vma,
2357 enum i915_cache_level cache_level,
2358 u32 flags)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002359{
Ben Widawsky6f65e292013-12-06 14:10:56 -08002360 struct drm_device *dev = vma->vm->dev;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002361 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002362 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002363 struct sg_table *pages = obj->pages;
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002364 u32 pte_flags = 0;
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002365 int ret;
2366
2367 ret = i915_get_ggtt_vma_pages(vma);
2368 if (ret)
2369 return ret;
2370 pages = vma->ggtt_view.pages;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002371
Akash Goel24f3a8c2014-06-17 10:59:42 +05302372 /* Currently applicable only to VLV */
2373 if (obj->gt_ro)
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002374 pte_flags |= PTE_READ_ONLY;
Akash Goel24f3a8c2014-06-17 10:59:42 +05302375
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002376
Ben Widawsky6f65e292013-12-06 14:10:56 -08002377 if (!dev_priv->mm.aliasing_ppgtt || flags & GLOBAL_BIND) {
Daniel Vetter08755462015-04-20 09:04:05 -07002378 vma->vm->insert_entries(vma->vm, pages,
2379 vma->node.start,
2380 cache_level, pte_flags);
Chris Wilsond0e30ad2015-07-29 20:02:48 +01002381
2382 /* Note the inconsistency here is due to absence of the
2383 * aliasing ppgtt on gen4 and earlier. Though we always
2384 * request PIN_USER for execbuffer (translated to LOCAL_BIND),
2385 * without the appgtt, we cannot honour that request and so
2386 * must substitute it with a global binding. Since we do this
2387 * behind the upper layers back, we need to explicitly set
2388 * the bound flag ourselves.
2389 */
2390 vma->bound |= GLOBAL_BIND;
2391
Ben Widawsky6f65e292013-12-06 14:10:56 -08002392 }
Daniel Vetter74898d72012-02-15 23:50:22 +01002393
Daniel Vetter08755462015-04-20 09:04:05 -07002394 if (dev_priv->mm.aliasing_ppgtt && flags & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002395 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002396 appgtt->base.insert_entries(&appgtt->base, pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08002397 vma->node.start,
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002398 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002399 }
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002400
2401 return 0;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002402}
2403
2404static void ggtt_unbind_vma(struct i915_vma *vma)
2405{
2406 struct drm_device *dev = vma->vm->dev;
2407 struct drm_i915_private *dev_priv = dev->dev_private;
2408 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002409 const uint64_t size = min_t(uint64_t,
2410 obj->base.size,
2411 vma->node.size);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002412
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002413 if (vma->bound & GLOBAL_BIND) {
Ben Widawsky782f1492014-02-20 11:50:33 -08002414 vma->vm->clear_range(vma->vm,
2415 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002416 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002417 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002418 }
2419
Daniel Vetter08755462015-04-20 09:04:05 -07002420 if (dev_priv->mm.aliasing_ppgtt && vma->bound & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002421 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002422
Ben Widawsky6f65e292013-12-06 14:10:56 -08002423 appgtt->base.clear_range(&appgtt->base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002424 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002425 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002426 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002427 }
Daniel Vetter74163902012-02-15 23:50:21 +01002428}
2429
2430void i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj)
2431{
Ben Widawsky5c042282011-10-17 15:51:55 -07002432 struct drm_device *dev = obj->base.dev;
2433 struct drm_i915_private *dev_priv = dev->dev_private;
2434 bool interruptible;
2435
2436 interruptible = do_idling(dev_priv);
2437
Imre Deak5ec5b512015-07-08 19:18:59 +03002438 dma_unmap_sg(&dev->pdev->dev, obj->pages->sgl, obj->pages->nents,
2439 PCI_DMA_BIDIRECTIONAL);
Ben Widawsky5c042282011-10-17 15:51:55 -07002440
2441 undo_idling(dev_priv, interruptible);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002442}
Daniel Vetter644ec022012-03-26 09:45:40 +02002443
Chris Wilson42d6ab42012-07-26 11:49:32 +01002444static void i915_gtt_color_adjust(struct drm_mm_node *node,
2445 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +01002446 u64 *start,
2447 u64 *end)
Chris Wilson42d6ab42012-07-26 11:49:32 +01002448{
2449 if (node->color != color)
2450 *start += 4096;
2451
2452 if (!list_empty(&node->node_list)) {
2453 node = list_entry(node->node_list.next,
2454 struct drm_mm_node,
2455 node_list);
2456 if (node->allocated && node->color != color)
2457 *end -= 4096;
2458 }
2459}
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002460
Daniel Vetterf548c0e2014-11-19 21:40:13 +01002461static int i915_gem_setup_global_gtt(struct drm_device *dev,
2462 unsigned long start,
2463 unsigned long mappable_end,
2464 unsigned long end)
Daniel Vetter644ec022012-03-26 09:45:40 +02002465{
Ben Widawskye78891c2013-01-25 16:41:04 -08002466 /* Let GEM Manage all of the aperture.
2467 *
2468 * However, leave one page at the end still bound to the scratch page.
2469 * There are a number of places where the hardware apparently prefetches
2470 * past the end of the object, and we've seen multiple hangs with the
2471 * GPU head pointer stuck in a batchbuffer bound at the last page of the
2472 * aperture. One page should be enough to keep any prefetching inside
2473 * of the aperture.
2474 */
Ben Widawsky40d749802013-07-31 16:59:59 -07002475 struct drm_i915_private *dev_priv = dev->dev_private;
2476 struct i915_address_space *ggtt_vm = &dev_priv->gtt.base;
Chris Wilsoned2f3452012-11-15 11:32:19 +00002477 struct drm_mm_node *entry;
2478 struct drm_i915_gem_object *obj;
2479 unsigned long hole_start, hole_end;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002480 int ret;
Daniel Vetter644ec022012-03-26 09:45:40 +02002481
Ben Widawsky35451cb2013-01-17 12:45:13 -08002482 BUG_ON(mappable_end > end);
2483
Chris Wilsoned2f3452012-11-15 11:32:19 +00002484 /* Subtract the guard page ... */
Ben Widawsky40d749802013-07-31 16:59:59 -07002485 drm_mm_init(&ggtt_vm->mm, start, end - start - PAGE_SIZE);
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002486
2487 dev_priv->gtt.base.start = start;
2488 dev_priv->gtt.base.total = end - start;
2489
2490 if (intel_vgpu_active(dev)) {
2491 ret = intel_vgt_balloon(dev);
2492 if (ret)
2493 return ret;
2494 }
2495
Chris Wilson42d6ab42012-07-26 11:49:32 +01002496 if (!HAS_LLC(dev))
Ben Widawsky93bd8642013-07-16 16:50:06 -07002497 dev_priv->gtt.base.mm.color_adjust = i915_gtt_color_adjust;
Daniel Vetter644ec022012-03-26 09:45:40 +02002498
Chris Wilsoned2f3452012-11-15 11:32:19 +00002499 /* Mark any preallocated objects as occupied */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002500 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Ben Widawsky40d749802013-07-31 16:59:59 -07002501 struct i915_vma *vma = i915_gem_obj_to_vma(obj, ggtt_vm);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002502
Ben Widawskyedd41a82013-07-05 14:41:05 -07002503 DRM_DEBUG_KMS("reserving preallocated space: %lx + %zx\n",
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002504 i915_gem_obj_ggtt_offset(obj), obj->base.size);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002505
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002506 WARN_ON(i915_gem_obj_ggtt_bound(obj));
Ben Widawsky40d749802013-07-31 16:59:59 -07002507 ret = drm_mm_reserve_node(&ggtt_vm->mm, &vma->node);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002508 if (ret) {
2509 DRM_DEBUG_KMS("Reservation failed: %i\n", ret);
2510 return ret;
2511 }
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002512 vma->bound |= GLOBAL_BIND;
Chris Wilsoned2f3452012-11-15 11:32:19 +00002513 }
2514
Chris Wilsoned2f3452012-11-15 11:32:19 +00002515 /* Clear any non-preallocated blocks */
Ben Widawsky40d749802013-07-31 16:59:59 -07002516 drm_mm_for_each_hole(entry, &ggtt_vm->mm, hole_start, hole_end) {
Chris Wilsoned2f3452012-11-15 11:32:19 +00002517 DRM_DEBUG_KMS("clearing unused GTT space: [%lx, %lx]\n",
2518 hole_start, hole_end);
Ben Widawsky782f1492014-02-20 11:50:33 -08002519 ggtt_vm->clear_range(ggtt_vm, hole_start,
2520 hole_end - hole_start, true);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002521 }
2522
2523 /* And finally clear the reserved guard page */
Ben Widawsky782f1492014-02-20 11:50:33 -08002524 ggtt_vm->clear_range(ggtt_vm, end - PAGE_SIZE, PAGE_SIZE, true);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002525
Daniel Vetterfa76da32014-08-06 20:19:54 +02002526 if (USES_PPGTT(dev) && !USES_FULL_PPGTT(dev)) {
2527 struct i915_hw_ppgtt *ppgtt;
2528
2529 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2530 if (!ppgtt)
2531 return -ENOMEM;
2532
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002533 ret = __hw_ppgtt_init(dev, ppgtt);
Michel Thierry4933d512015-03-24 15:46:22 +00002534 if (ret) {
Daniel Vetter061dd492015-04-14 17:35:13 +02002535 ppgtt->base.cleanup(&ppgtt->base);
Michel Thierry4933d512015-03-24 15:46:22 +00002536 kfree(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002537 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002538 }
Daniel Vetterfa76da32014-08-06 20:19:54 +02002539
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002540 if (ppgtt->base.allocate_va_range)
2541 ret = ppgtt->base.allocate_va_range(&ppgtt->base, 0,
2542 ppgtt->base.total);
2543 if (ret) {
2544 ppgtt->base.cleanup(&ppgtt->base);
2545 kfree(ppgtt);
2546 return ret;
2547 }
2548
2549 ppgtt->base.clear_range(&ppgtt->base,
2550 ppgtt->base.start,
2551 ppgtt->base.total,
2552 true);
2553
Daniel Vetterfa76da32014-08-06 20:19:54 +02002554 dev_priv->mm.aliasing_ppgtt = ppgtt;
2555 }
2556
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002557 return 0;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002558}
2559
Ben Widawskyd7e50082012-12-18 10:31:25 -08002560void i915_gem_init_global_gtt(struct drm_device *dev)
2561{
2562 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002563 u64 gtt_size, mappable_size;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002564
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002565 gtt_size = dev_priv->gtt.base.total;
Ben Widawsky93d18792013-01-17 12:45:17 -08002566 mappable_size = dev_priv->gtt.mappable_end;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002567
Ben Widawskye78891c2013-01-25 16:41:04 -08002568 i915_gem_setup_global_gtt(dev, 0, mappable_size, gtt_size);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002569}
2570
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002571void i915_global_gtt_cleanup(struct drm_device *dev)
2572{
2573 struct drm_i915_private *dev_priv = dev->dev_private;
2574 struct i915_address_space *vm = &dev_priv->gtt.base;
2575
Daniel Vetter70e32542014-08-06 15:04:57 +02002576 if (dev_priv->mm.aliasing_ppgtt) {
2577 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2578
2579 ppgtt->base.cleanup(&ppgtt->base);
2580 }
2581
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002582 if (drm_mm_initialized(&vm->mm)) {
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002583 if (intel_vgpu_active(dev))
2584 intel_vgt_deballoon();
2585
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002586 drm_mm_takedown(&vm->mm);
2587 list_del(&vm->global_link);
2588 }
2589
2590 vm->cleanup(vm);
2591}
Daniel Vetter70e32542014-08-06 15:04:57 +02002592
Daniel Vetter2c642b02015-04-14 17:35:26 +02002593static unsigned int gen6_get_total_gtt_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002594{
2595 snb_gmch_ctl >>= SNB_GMCH_GGMS_SHIFT;
2596 snb_gmch_ctl &= SNB_GMCH_GGMS_MASK;
2597 return snb_gmch_ctl << 20;
2598}
2599
Daniel Vetter2c642b02015-04-14 17:35:26 +02002600static unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002601{
2602 bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
2603 bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
2604 if (bdw_gmch_ctl)
2605 bdw_gmch_ctl = 1 << bdw_gmch_ctl;
Ben Widawsky562d55d2014-05-27 16:53:08 -07002606
2607#ifdef CONFIG_X86_32
2608 /* Limit 32b platforms to a 2GB GGTT: 4 << 20 / pte size * PAGE_SIZE */
2609 if (bdw_gmch_ctl > 4)
2610 bdw_gmch_ctl = 4;
2611#endif
2612
Ben Widawsky9459d252013-11-03 16:53:55 -08002613 return bdw_gmch_ctl << 20;
2614}
2615
Daniel Vetter2c642b02015-04-14 17:35:26 +02002616static unsigned int chv_get_total_gtt_size(u16 gmch_ctrl)
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002617{
2618 gmch_ctrl >>= SNB_GMCH_GGMS_SHIFT;
2619 gmch_ctrl &= SNB_GMCH_GGMS_MASK;
2620
2621 if (gmch_ctrl)
2622 return 1 << (20 + gmch_ctrl);
2623
2624 return 0;
2625}
2626
Daniel Vetter2c642b02015-04-14 17:35:26 +02002627static size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002628{
2629 snb_gmch_ctl >>= SNB_GMCH_GMS_SHIFT;
2630 snb_gmch_ctl &= SNB_GMCH_GMS_MASK;
2631 return snb_gmch_ctl << 25; /* 32 MB units */
2632}
2633
Daniel Vetter2c642b02015-04-14 17:35:26 +02002634static size_t gen8_get_stolen_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002635{
2636 bdw_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2637 bdw_gmch_ctl &= BDW_GMCH_GMS_MASK;
2638 return bdw_gmch_ctl << 25; /* 32 MB units */
2639}
2640
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002641static size_t chv_get_stolen_size(u16 gmch_ctrl)
2642{
2643 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
2644 gmch_ctrl &= SNB_GMCH_GMS_MASK;
2645
2646 /*
2647 * 0x0 to 0x10: 32MB increments starting at 0MB
2648 * 0x11 to 0x16: 4MB increments starting at 8MB
2649 * 0x17 to 0x1d: 4MB increments start at 36MB
2650 */
2651 if (gmch_ctrl < 0x11)
2652 return gmch_ctrl << 25;
2653 else if (gmch_ctrl < 0x17)
2654 return (gmch_ctrl - 0x11 + 2) << 22;
2655 else
2656 return (gmch_ctrl - 0x17 + 9) << 22;
2657}
2658
Damien Lespiau66375012014-01-09 18:02:46 +00002659static size_t gen9_get_stolen_size(u16 gen9_gmch_ctl)
2660{
2661 gen9_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2662 gen9_gmch_ctl &= BDW_GMCH_GMS_MASK;
2663
2664 if (gen9_gmch_ctl < 0xf0)
2665 return gen9_gmch_ctl << 25; /* 32 MB units */
2666 else
2667 /* 4MB increments starting at 0xf0 for 4MB */
2668 return (gen9_gmch_ctl - 0xf0 + 1) << 22;
2669}
2670
Ben Widawsky63340132013-11-04 19:32:22 -08002671static int ggtt_probe_common(struct drm_device *dev,
2672 size_t gtt_size)
2673{
2674 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002675 struct i915_page_scratch *scratch_page;
Bjorn Helgaas21c34602013-12-21 10:52:52 -07002676 phys_addr_t gtt_phys_addr;
Ben Widawsky63340132013-11-04 19:32:22 -08002677
2678 /* For Modern GENs the PTEs and register space are split in the BAR */
Bjorn Helgaas21c34602013-12-21 10:52:52 -07002679 gtt_phys_addr = pci_resource_start(dev->pdev, 0) +
Ben Widawsky63340132013-11-04 19:32:22 -08002680 (pci_resource_len(dev->pdev, 0) / 2);
2681
Imre Deak2a073f892015-03-27 13:07:33 +02002682 /*
2683 * On BXT writes larger than 64 bit to the GTT pagetable range will be
2684 * dropped. For WC mappings in general we have 64 byte burst writes
2685 * when the WC buffer is flushed, so we can't use it, but have to
2686 * resort to an uncached mapping. The WC issue is easily caught by the
2687 * readback check when writing GTT PTE entries.
2688 */
2689 if (IS_BROXTON(dev))
2690 dev_priv->gtt.gsm = ioremap_nocache(gtt_phys_addr, gtt_size);
2691 else
2692 dev_priv->gtt.gsm = ioremap_wc(gtt_phys_addr, gtt_size);
Ben Widawsky63340132013-11-04 19:32:22 -08002693 if (!dev_priv->gtt.gsm) {
2694 DRM_ERROR("Failed to map the gtt page table\n");
2695 return -ENOMEM;
2696 }
2697
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002698 scratch_page = alloc_scratch_page(dev);
2699 if (IS_ERR(scratch_page)) {
Ben Widawsky63340132013-11-04 19:32:22 -08002700 DRM_ERROR("Scratch setup failed\n");
2701 /* iounmap will also get called at remove, but meh */
2702 iounmap(dev_priv->gtt.gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002703 return PTR_ERR(scratch_page);
Ben Widawsky63340132013-11-04 19:32:22 -08002704 }
2705
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002706 dev_priv->gtt.base.scratch_page = scratch_page;
2707
2708 return 0;
Ben Widawsky63340132013-11-04 19:32:22 -08002709}
2710
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002711/* The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
2712 * bits. When using advanced contexts each context stores its own PAT, but
2713 * writing this data shouldn't be harmful even in those cases. */
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002714static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv)
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002715{
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002716 uint64_t pat;
2717
2718 pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) | /* for normal objects, no eLLC */
2719 GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) | /* for something pointing to ptes? */
2720 GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC) | /* for scanout with eLLC */
2721 GEN8_PPAT(3, GEN8_PPAT_UC) | /* Uncached objects, mostly for scanout */
2722 GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
2723 GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
2724 GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
2725 GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
2726
Rodrigo Vivid6a8b722014-11-05 16:56:36 -08002727 if (!USES_PPGTT(dev_priv->dev))
2728 /* Spec: "For GGTT, there is NO pat_sel[2:0] from the entry,
2729 * so RTL will always use the value corresponding to
2730 * pat_sel = 000".
2731 * So let's disable cache for GGTT to avoid screen corruptions.
2732 * MOCS still can be used though.
2733 * - System agent ggtt writes (i.e. cpu gtt mmaps) already work
2734 * before this patch, i.e. the same uncached + snooping access
2735 * like on gen6/7 seems to be in effect.
2736 * - So this just fixes blitter/render access. Again it looks
2737 * like it's not just uncached access, but uncached + snooping.
2738 * So we can still hold onto all our assumptions wrt cpu
2739 * clflushing on LLC machines.
2740 */
2741 pat = GEN8_PPAT(0, GEN8_PPAT_UC);
2742
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002743 /* XXX: spec defines this as 2 distinct registers. It's unclear if a 64b
2744 * write would work. */
2745 I915_WRITE(GEN8_PRIVATE_PAT, pat);
2746 I915_WRITE(GEN8_PRIVATE_PAT + 4, pat >> 32);
2747}
2748
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002749static void chv_setup_private_ppat(struct drm_i915_private *dev_priv)
2750{
2751 uint64_t pat;
2752
2753 /*
2754 * Map WB on BDW to snooped on CHV.
2755 *
2756 * Only the snoop bit has meaning for CHV, the rest is
2757 * ignored.
2758 *
Ville Syrjäläcf3d2622014-11-14 21:02:44 +02002759 * The hardware will never snoop for certain types of accesses:
2760 * - CPU GTT (GMADR->GGTT->no snoop->memory)
2761 * - PPGTT page tables
2762 * - some other special cycles
2763 *
2764 * As with BDW, we also need to consider the following for GT accesses:
2765 * "For GGTT, there is NO pat_sel[2:0] from the entry,
2766 * so RTL will always use the value corresponding to
2767 * pat_sel = 000".
2768 * Which means we must set the snoop bit in PAT entry 0
2769 * in order to keep the global status page working.
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002770 */
2771 pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
2772 GEN8_PPAT(1, 0) |
2773 GEN8_PPAT(2, 0) |
2774 GEN8_PPAT(3, 0) |
2775 GEN8_PPAT(4, CHV_PPAT_SNOOP) |
2776 GEN8_PPAT(5, CHV_PPAT_SNOOP) |
2777 GEN8_PPAT(6, CHV_PPAT_SNOOP) |
2778 GEN8_PPAT(7, CHV_PPAT_SNOOP);
2779
2780 I915_WRITE(GEN8_PRIVATE_PAT, pat);
2781 I915_WRITE(GEN8_PRIVATE_PAT + 4, pat >> 32);
2782}
2783
Ben Widawsky63340132013-11-04 19:32:22 -08002784static int gen8_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002785 u64 *gtt_total,
Ben Widawsky63340132013-11-04 19:32:22 -08002786 size_t *stolen,
2787 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002788 u64 *mappable_end)
Ben Widawsky63340132013-11-04 19:32:22 -08002789{
2790 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002791 u64 gtt_size;
Ben Widawsky63340132013-11-04 19:32:22 -08002792 u16 snb_gmch_ctl;
2793 int ret;
2794
2795 /* TODO: We're not aware of mappable constraints on gen8 yet */
2796 *mappable_base = pci_resource_start(dev->pdev, 2);
2797 *mappable_end = pci_resource_len(dev->pdev, 2);
2798
2799 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(39)))
2800 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(39));
2801
2802 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
2803
Damien Lespiau66375012014-01-09 18:02:46 +00002804 if (INTEL_INFO(dev)->gen >= 9) {
2805 *stolen = gen9_get_stolen_size(snb_gmch_ctl);
2806 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
2807 } else if (IS_CHERRYVIEW(dev)) {
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002808 *stolen = chv_get_stolen_size(snb_gmch_ctl);
2809 gtt_size = chv_get_total_gtt_size(snb_gmch_ctl);
2810 } else {
2811 *stolen = gen8_get_stolen_size(snb_gmch_ctl);
2812 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
2813 }
Ben Widawsky63340132013-11-04 19:32:22 -08002814
Michel Thierry07749ef2015-03-16 16:00:54 +00002815 *gtt_total = (gtt_size / sizeof(gen8_pte_t)) << PAGE_SHIFT;
Ben Widawsky63340132013-11-04 19:32:22 -08002816
Sumit Singh5a4e33a2015-03-17 11:39:31 +02002817 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002818 chv_setup_private_ppat(dev_priv);
2819 else
2820 bdw_setup_private_ppat(dev_priv);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002821
Ben Widawsky63340132013-11-04 19:32:22 -08002822 ret = ggtt_probe_common(dev, gtt_size);
2823
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002824 dev_priv->gtt.base.clear_range = gen8_ggtt_clear_range;
2825 dev_priv->gtt.base.insert_entries = gen8_ggtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002826 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2827 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawsky63340132013-11-04 19:32:22 -08002828
2829 return ret;
2830}
2831
Ben Widawskybaa09f52013-01-24 13:49:57 -08002832static int gen6_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002833 u64 *gtt_total,
Ben Widawsky41907dd2013-02-08 11:32:47 -08002834 size_t *stolen,
2835 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002836 u64 *mappable_end)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002837{
2838 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002839 unsigned int gtt_size;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002840 u16 snb_gmch_ctl;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002841 int ret;
2842
Ben Widawsky41907dd2013-02-08 11:32:47 -08002843 *mappable_base = pci_resource_start(dev->pdev, 2);
2844 *mappable_end = pci_resource_len(dev->pdev, 2);
2845
Ben Widawskybaa09f52013-01-24 13:49:57 -08002846 /* 64/512MB is the current min/max we actually know of, but this is just
2847 * a coarse sanity check.
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002848 */
Ben Widawsky41907dd2013-02-08 11:32:47 -08002849 if ((*mappable_end < (64<<20) || (*mappable_end > (512<<20)))) {
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002850 DRM_ERROR("Unknown GMADR size (%llx)\n",
Ben Widawskybaa09f52013-01-24 13:49:57 -08002851 dev_priv->gtt.mappable_end);
2852 return -ENXIO;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002853 }
2854
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002855 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(40)))
2856 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(40));
Ben Widawskybaa09f52013-01-24 13:49:57 -08002857 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002858
Ben Widawskyc4ae25e2013-05-01 11:00:34 -07002859 *stolen = gen6_get_stolen_size(snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002860
Ben Widawsky63340132013-11-04 19:32:22 -08002861 gtt_size = gen6_get_total_gtt_size(snb_gmch_ctl);
Michel Thierry07749ef2015-03-16 16:00:54 +00002862 *gtt_total = (gtt_size / sizeof(gen6_pte_t)) << PAGE_SHIFT;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002863
Ben Widawsky63340132013-11-04 19:32:22 -08002864 ret = ggtt_probe_common(dev, gtt_size);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002865
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002866 dev_priv->gtt.base.clear_range = gen6_ggtt_clear_range;
2867 dev_priv->gtt.base.insert_entries = gen6_ggtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002868 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2869 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002870
2871 return ret;
2872}
2873
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002874static void gen6_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08002875{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002876
2877 struct i915_gtt *gtt = container_of(vm, struct i915_gtt, base);
Ben Widawsky5ed16782013-11-25 09:54:43 -08002878
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002879 iounmap(gtt->gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002880 free_scratch_page(vm->dev, vm->scratch_page);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002881}
2882
2883static int i915_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002884 u64 *gtt_total,
Ben Widawsky41907dd2013-02-08 11:32:47 -08002885 size_t *stolen,
2886 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002887 u64 *mappable_end)
Ben Widawskybaa09f52013-01-24 13:49:57 -08002888{
2889 struct drm_i915_private *dev_priv = dev->dev_private;
2890 int ret;
2891
Ben Widawskybaa09f52013-01-24 13:49:57 -08002892 ret = intel_gmch_probe(dev_priv->bridge_dev, dev_priv->dev->pdev, NULL);
2893 if (!ret) {
2894 DRM_ERROR("failed to set up gmch\n");
2895 return -EIO;
2896 }
2897
Ben Widawsky41907dd2013-02-08 11:32:47 -08002898 intel_gtt_get(gtt_total, stolen, mappable_base, mappable_end);
Ben Widawskybaa09f52013-01-24 13:49:57 -08002899
2900 dev_priv->gtt.do_idle_maps = needs_idle_maps(dev_priv->dev);
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002901 dev_priv->gtt.base.insert_entries = i915_ggtt_insert_entries;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002902 dev_priv->gtt.base.clear_range = i915_ggtt_clear_range;
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002903 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
2904 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002905
Chris Wilsonc0a7f812013-12-30 12:16:15 +00002906 if (unlikely(dev_priv->gtt.do_idle_maps))
2907 DRM_INFO("applying Ironlake quirks for intel_iommu\n");
2908
Ben Widawskybaa09f52013-01-24 13:49:57 -08002909 return 0;
2910}
2911
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002912static void i915_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08002913{
2914 intel_gmch_remove();
2915}
2916
2917int i915_gem_gtt_init(struct drm_device *dev)
2918{
2919 struct drm_i915_private *dev_priv = dev->dev_private;
2920 struct i915_gtt *gtt = &dev_priv->gtt;
Ben Widawskybaa09f52013-01-24 13:49:57 -08002921 int ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002922
Ben Widawskybaa09f52013-01-24 13:49:57 -08002923 if (INTEL_INFO(dev)->gen <= 5) {
Ben Widawskyb2f21b42013-06-27 16:30:20 -07002924 gtt->gtt_probe = i915_gmch_probe;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002925 gtt->base.cleanup = i915_gmch_remove;
Ben Widawsky63340132013-11-04 19:32:22 -08002926 } else if (INTEL_INFO(dev)->gen < 8) {
Ben Widawskyb2f21b42013-06-27 16:30:20 -07002927 gtt->gtt_probe = gen6_gmch_probe;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002928 gtt->base.cleanup = gen6_gmch_remove;
Ben Widawsky4d15c142013-07-04 11:02:06 -07002929 if (IS_HASWELL(dev) && dev_priv->ellc_size)
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002930 gtt->base.pte_encode = iris_pte_encode;
Ben Widawsky4d15c142013-07-04 11:02:06 -07002931 else if (IS_HASWELL(dev))
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002932 gtt->base.pte_encode = hsw_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07002933 else if (IS_VALLEYVIEW(dev))
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002934 gtt->base.pte_encode = byt_pte_encode;
Chris Wilson350ec882013-08-06 13:17:02 +01002935 else if (INTEL_INFO(dev)->gen >= 7)
2936 gtt->base.pte_encode = ivb_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07002937 else
Chris Wilson350ec882013-08-06 13:17:02 +01002938 gtt->base.pte_encode = snb_pte_encode;
Ben Widawsky63340132013-11-04 19:32:22 -08002939 } else {
2940 dev_priv->gtt.gtt_probe = gen8_gmch_probe;
2941 dev_priv->gtt.base.cleanup = gen6_gmch_remove;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002942 }
2943
Mika Kuoppalac114f762015-06-25 18:35:13 +03002944 gtt->base.dev = dev;
2945
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002946 ret = gtt->gtt_probe(dev, &gtt->base.total, &gtt->stolen_size,
Ben Widawskyb2f21b42013-06-27 16:30:20 -07002947 &gtt->mappable_base, &gtt->mappable_end);
Ben Widawskya54c0c22013-01-24 14:45:00 -08002948 if (ret)
Ben Widawskybaa09f52013-01-24 13:49:57 -08002949 return ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002950
Ben Widawskybaa09f52013-01-24 13:49:57 -08002951 /* GMADR is the PCI mmio aperture into the global GTT. */
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002952 DRM_INFO("Memory usable by graphics device = %lluM\n",
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002953 gtt->base.total >> 20);
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002954 DRM_DEBUG_DRIVER("GMADR size = %lldM\n", gtt->mappable_end >> 20);
Ben Widawskyb2f21b42013-06-27 16:30:20 -07002955 DRM_DEBUG_DRIVER("GTT stolen size = %zdM\n", gtt->stolen_size >> 20);
Daniel Vetter5db6c732014-03-31 16:23:04 +02002956#ifdef CONFIG_INTEL_IOMMU
2957 if (intel_iommu_gfx_mapped)
2958 DRM_INFO("VT-d active for gfx access\n");
2959#endif
Daniel Vettercfa7c862014-04-29 11:53:58 +02002960 /*
2961 * i915.enable_ppgtt is read-only, so do an early pass to validate the
2962 * user's requested state against the hardware/driver capabilities. We
2963 * do this now so that we can print out any log messages once rather
2964 * than every time we check intel_enable_ppgtt().
2965 */
2966 i915.enable_ppgtt = sanitize_enable_ppgtt(dev, i915.enable_ppgtt);
2967 DRM_DEBUG_DRIVER("ppgtt mode: %i\n", i915.enable_ppgtt);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002968
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002969 return 0;
Daniel Vetter644ec022012-03-26 09:45:40 +02002970}
Ben Widawsky6f65e292013-12-06 14:10:56 -08002971
Daniel Vetterfa423312015-04-14 17:35:23 +02002972void i915_gem_restore_gtt_mappings(struct drm_device *dev)
2973{
2974 struct drm_i915_private *dev_priv = dev->dev_private;
2975 struct drm_i915_gem_object *obj;
2976 struct i915_address_space *vm;
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01002977 struct i915_vma *vma;
2978 bool flush;
Daniel Vetterfa423312015-04-14 17:35:23 +02002979
2980 i915_check_and_clear_faults(dev);
2981
2982 /* First fill our portion of the GTT with scratch pages */
2983 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
2984 dev_priv->gtt.base.start,
2985 dev_priv->gtt.base.total,
2986 true);
2987
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01002988 /* Cache flush objects bound into GGTT and rebind them. */
2989 vm = &dev_priv->gtt.base;
Daniel Vetterfa423312015-04-14 17:35:23 +02002990 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01002991 flush = false;
2992 list_for_each_entry(vma, &obj->vma_list, vma_link) {
2993 if (vma->vm != vm)
2994 continue;
Daniel Vetterfa423312015-04-14 17:35:23 +02002995
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01002996 WARN_ON(i915_vma_bind(vma, obj->cache_level,
2997 PIN_UPDATE));
2998
2999 flush = true;
3000 }
3001
3002 if (flush)
3003 i915_gem_clflush_object(obj, obj->pin_display);
Daniel Vetterfa423312015-04-14 17:35:23 +02003004 }
3005
Daniel Vetterfa423312015-04-14 17:35:23 +02003006 if (INTEL_INFO(dev)->gen >= 8) {
3007 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
3008 chv_setup_private_ppat(dev_priv);
3009 else
3010 bdw_setup_private_ppat(dev_priv);
3011
3012 return;
3013 }
3014
3015 if (USES_PPGTT(dev)) {
3016 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
3017 /* TODO: Perhaps it shouldn't be gen6 specific */
3018
3019 struct i915_hw_ppgtt *ppgtt =
3020 container_of(vm, struct i915_hw_ppgtt,
3021 base);
3022
3023 if (i915_is_ggtt(vm))
3024 ppgtt = dev_priv->mm.aliasing_ppgtt;
3025
3026 gen6_write_page_range(dev_priv, &ppgtt->pd,
3027 0, ppgtt->base.total);
3028 }
3029 }
3030
3031 i915_ggtt_flush(dev_priv);
3032}
3033
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003034static struct i915_vma *
3035__i915_gem_vma_create(struct drm_i915_gem_object *obj,
3036 struct i915_address_space *vm,
3037 const struct i915_ggtt_view *ggtt_view)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003038{
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003039 struct i915_vma *vma;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003040
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003041 if (WARN_ON(i915_is_ggtt(vm) != !!ggtt_view))
3042 return ERR_PTR(-EINVAL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01003043
3044 vma = kmem_cache_zalloc(to_i915(obj->base.dev)->vmas, GFP_KERNEL);
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003045 if (vma == NULL)
3046 return ERR_PTR(-ENOMEM);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003047
Ben Widawsky6f65e292013-12-06 14:10:56 -08003048 INIT_LIST_HEAD(&vma->vma_link);
3049 INIT_LIST_HEAD(&vma->mm_list);
3050 INIT_LIST_HEAD(&vma->exec_list);
3051 vma->vm = vm;
3052 vma->obj = obj;
3053
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003054 if (i915_is_ggtt(vm))
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003055 vma->ggtt_view = *ggtt_view;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003056
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00003057 list_add_tail(&vma->vma_link, &obj->vma_list);
3058 if (!i915_is_ggtt(vm))
Michel Thierrye07f0552014-08-19 15:49:41 +01003059 i915_ppgtt_get(i915_vm_to_ppgtt(vm));
Ben Widawsky6f65e292013-12-06 14:10:56 -08003060
3061 return vma;
3062}
3063
3064struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003065i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
3066 struct i915_address_space *vm)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003067{
3068 struct i915_vma *vma;
3069
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003070 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003071 if (!vma)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003072 vma = __i915_gem_vma_create(obj, vm,
3073 i915_is_ggtt(vm) ? &i915_ggtt_view_normal : NULL);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003074
3075 return vma;
3076}
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003077
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003078struct i915_vma *
3079i915_gem_obj_lookup_or_create_ggtt_vma(struct drm_i915_gem_object *obj,
3080 const struct i915_ggtt_view *view)
3081{
3082 struct i915_address_space *ggtt = i915_obj_to_ggtt(obj);
3083 struct i915_vma *vma;
3084
3085 if (WARN_ON(!view))
3086 return ERR_PTR(-EINVAL);
3087
3088 vma = i915_gem_obj_to_ggtt_view(obj, view);
3089
3090 if (IS_ERR(vma))
3091 return vma;
3092
3093 if (!vma)
3094 vma = __i915_gem_vma_create(obj, ggtt, view);
3095
3096 return vma;
3097
3098}
3099
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003100static void
3101rotate_pages(dma_addr_t *in, unsigned int width, unsigned int height,
3102 struct sg_table *st)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003103{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003104 unsigned int column, row;
3105 unsigned int src_idx;
3106 struct scatterlist *sg = st->sgl;
3107
3108 st->nents = 0;
3109
3110 for (column = 0; column < width; column++) {
3111 src_idx = width * (height - 1) + column;
3112 for (row = 0; row < height; row++) {
3113 st->nents++;
3114 /* We don't need the pages, but need to initialize
3115 * the entries so the sg list can be happily traversed.
3116 * The only thing we need are DMA addresses.
3117 */
3118 sg_set_page(sg, NULL, PAGE_SIZE, 0);
3119 sg_dma_address(sg) = in[src_idx];
3120 sg_dma_len(sg) = PAGE_SIZE;
3121 sg = sg_next(sg);
3122 src_idx -= width;
3123 }
3124 }
3125}
3126
3127static struct sg_table *
3128intel_rotate_fb_obj_pages(struct i915_ggtt_view *ggtt_view,
3129 struct drm_i915_gem_object *obj)
3130{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003131 struct intel_rotation_info *rot_info = &ggtt_view->rotation_info;
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003132 unsigned int size_pages = rot_info->size >> PAGE_SHIFT;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003133 struct sg_page_iter sg_iter;
3134 unsigned long i;
3135 dma_addr_t *page_addr_list;
3136 struct sg_table *st;
Tvrtko Ursulin1d00dad2015-03-25 10:15:26 +00003137 int ret = -ENOMEM;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003138
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003139 /* Allocate a temporary list of source pages for random access. */
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003140 page_addr_list = drm_malloc_ab(obj->base.size / PAGE_SIZE,
3141 sizeof(dma_addr_t));
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003142 if (!page_addr_list)
3143 return ERR_PTR(ret);
3144
3145 /* Allocate target SG list. */
3146 st = kmalloc(sizeof(*st), GFP_KERNEL);
3147 if (!st)
3148 goto err_st_alloc;
3149
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003150 ret = sg_alloc_table(st, size_pages, GFP_KERNEL);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003151 if (ret)
3152 goto err_sg_alloc;
3153
3154 /* Populate source page list from the object. */
3155 i = 0;
3156 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
3157 page_addr_list[i] = sg_page_iter_dma_address(&sg_iter);
3158 i++;
3159 }
3160
3161 /* Rotate the pages. */
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003162 rotate_pages(page_addr_list,
3163 rot_info->width_pages, rot_info->height_pages,
3164 st);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003165
3166 DRM_DEBUG_KMS(
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003167 "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 +01003168 obj->base.size, rot_info->pitch, rot_info->height,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003169 rot_info->pixel_format, rot_info->width_pages,
3170 rot_info->height_pages, size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003171
3172 drm_free_large(page_addr_list);
3173
3174 return st;
3175
3176err_sg_alloc:
3177 kfree(st);
3178err_st_alloc:
3179 drm_free_large(page_addr_list);
3180
3181 DRM_DEBUG_KMS(
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003182 "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 +01003183 obj->base.size, ret, rot_info->pitch, rot_info->height,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003184 rot_info->pixel_format, rot_info->width_pages,
3185 rot_info->height_pages, size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003186 return ERR_PTR(ret);
3187}
3188
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003189static struct sg_table *
3190intel_partial_pages(const struct i915_ggtt_view *view,
3191 struct drm_i915_gem_object *obj)
3192{
3193 struct sg_table *st;
3194 struct scatterlist *sg;
3195 struct sg_page_iter obj_sg_iter;
3196 int ret = -ENOMEM;
3197
3198 st = kmalloc(sizeof(*st), GFP_KERNEL);
3199 if (!st)
3200 goto err_st_alloc;
3201
3202 ret = sg_alloc_table(st, view->params.partial.size, GFP_KERNEL);
3203 if (ret)
3204 goto err_sg_alloc;
3205
3206 sg = st->sgl;
3207 st->nents = 0;
3208 for_each_sg_page(obj->pages->sgl, &obj_sg_iter, obj->pages->nents,
3209 view->params.partial.offset)
3210 {
3211 if (st->nents >= view->params.partial.size)
3212 break;
3213
3214 sg_set_page(sg, NULL, PAGE_SIZE, 0);
3215 sg_dma_address(sg) = sg_page_iter_dma_address(&obj_sg_iter);
3216 sg_dma_len(sg) = PAGE_SIZE;
3217
3218 sg = sg_next(sg);
3219 st->nents++;
3220 }
3221
3222 return st;
3223
3224err_sg_alloc:
3225 kfree(st);
3226err_st_alloc:
3227 return ERR_PTR(ret);
3228}
3229
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003230static int
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003231i915_get_ggtt_vma_pages(struct i915_vma *vma)
3232{
3233 int ret = 0;
3234
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003235 if (vma->ggtt_view.pages)
3236 return 0;
3237
3238 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
3239 vma->ggtt_view.pages = vma->obj->pages;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003240 else if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED)
3241 vma->ggtt_view.pages =
3242 intel_rotate_fb_obj_pages(&vma->ggtt_view, vma->obj);
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003243 else if (vma->ggtt_view.type == I915_GGTT_VIEW_PARTIAL)
3244 vma->ggtt_view.pages =
3245 intel_partial_pages(&vma->ggtt_view, vma->obj);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003246 else
3247 WARN_ONCE(1, "GGTT view %u not implemented!\n",
3248 vma->ggtt_view.type);
3249
3250 if (!vma->ggtt_view.pages) {
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003251 DRM_ERROR("Failed to get pages for GGTT view type %u!\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003252 vma->ggtt_view.type);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003253 ret = -EINVAL;
3254 } else if (IS_ERR(vma->ggtt_view.pages)) {
3255 ret = PTR_ERR(vma->ggtt_view.pages);
3256 vma->ggtt_view.pages = NULL;
3257 DRM_ERROR("Failed to get pages for VMA view type %u (%d)!\n",
3258 vma->ggtt_view.type, ret);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003259 }
3260
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003261 return ret;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003262}
3263
3264/**
3265 * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
3266 * @vma: VMA to map
3267 * @cache_level: mapping cache level
3268 * @flags: flags like global or local mapping
3269 *
3270 * DMA addresses are taken from the scatter-gather table of this object (or of
3271 * this VMA in case of non-default GGTT views) and PTE entries set up.
3272 * Note that DMA addresses are also the only part of the SG table we care about.
3273 */
3274int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
3275 u32 flags)
3276{
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003277 int ret;
3278 u32 bind_flags;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003279
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003280 if (WARN_ON(flags == 0))
3281 return -EINVAL;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003282
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003283 bind_flags = 0;
Daniel Vetter08755462015-04-20 09:04:05 -07003284 if (flags & PIN_GLOBAL)
3285 bind_flags |= GLOBAL_BIND;
3286 if (flags & PIN_USER)
3287 bind_flags |= LOCAL_BIND;
3288
3289 if (flags & PIN_UPDATE)
3290 bind_flags |= vma->bound;
3291 else
3292 bind_flags &= ~vma->bound;
3293
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003294 if (bind_flags == 0)
3295 return 0;
3296
3297 if (vma->bound == 0 && vma->vm->allocate_va_range) {
3298 trace_i915_va_alloc(vma->vm,
3299 vma->node.start,
3300 vma->node.size,
3301 VM_TO_TRACE_NAME(vma->vm));
3302
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003303 /* XXX: i915_vma_pin() will fix this +- hack */
3304 vma->pin_count++;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003305 ret = vma->vm->allocate_va_range(vma->vm,
3306 vma->node.start,
3307 vma->node.size);
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003308 vma->pin_count--;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003309 if (ret)
3310 return ret;
3311 }
3312
3313 ret = vma->vm->bind_vma(vma, cache_level, bind_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003314 if (ret)
3315 return ret;
Daniel Vetter08755462015-04-20 09:04:05 -07003316
3317 vma->bound |= bind_flags;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003318
3319 return 0;
3320}
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003321
3322/**
3323 * i915_ggtt_view_size - Get the size of a GGTT view.
3324 * @obj: Object the view is of.
3325 * @view: The view in question.
3326 *
3327 * @return The size of the GGTT view in bytes.
3328 */
3329size_t
3330i915_ggtt_view_size(struct drm_i915_gem_object *obj,
3331 const struct i915_ggtt_view *view)
3332{
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003333 if (view->type == I915_GGTT_VIEW_NORMAL) {
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003334 return obj->base.size;
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003335 } else if (view->type == I915_GGTT_VIEW_ROTATED) {
3336 return view->rotation_info.size;
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003337 } else if (view->type == I915_GGTT_VIEW_PARTIAL) {
3338 return view->params.partial.size << PAGE_SHIFT;
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003339 } else {
3340 WARN_ONCE(1, "GGTT view %u not implemented!\n", view->type);
3341 return obj->base.size;
3342 }
3343}