blob: 016739eefd45a33ac57538016cff9d077f6fe951 [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;
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100107 bool has_full_48bit_ppgtt;
Chris Wilson1893a712014-09-19 11:56:27 +0100108
109 has_aliasing_ppgtt = INTEL_INFO(dev)->gen >= 6;
110 has_full_ppgtt = INTEL_INFO(dev)->gen >= 7;
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100111 has_full_48bit_ppgtt = IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9;
Chris Wilson1893a712014-09-19 11:56:27 +0100112
Yu Zhang71ba2d62015-02-10 19:05:54 +0800113 if (intel_vgpu_active(dev))
114 has_full_ppgtt = false; /* emulation is too hard */
115
Damien Lespiau70ee45e2014-11-14 15:05:59 +0000116 /*
117 * We don't allow disabling PPGTT for gen9+ as it's a requirement for
118 * execlists, the sole mechanism available to submit work.
119 */
120 if (INTEL_INFO(dev)->gen < 9 &&
121 (enable_ppgtt == 0 || !has_aliasing_ppgtt))
Daniel Vettercfa7c862014-04-29 11:53:58 +0200122 return 0;
123
124 if (enable_ppgtt == 1)
125 return 1;
126
Chris Wilson1893a712014-09-19 11:56:27 +0100127 if (enable_ppgtt == 2 && has_full_ppgtt)
Daniel Vettercfa7c862014-04-29 11:53:58 +0200128 return 2;
129
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100130 if (enable_ppgtt == 3 && has_full_48bit_ppgtt)
131 return 3;
132
Daniel Vetter93a25a92014-03-06 09:40:43 +0100133#ifdef CONFIG_INTEL_IOMMU
134 /* Disable ppgtt on SNB if VT-d is on. */
135 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped) {
136 DRM_INFO("Disabling PPGTT because VT-d is on\n");
Daniel Vettercfa7c862014-04-29 11:53:58 +0200137 return 0;
Daniel Vetter93a25a92014-03-06 09:40:43 +0100138 }
139#endif
140
Jesse Barnes62942ed2014-06-13 09:28:33 -0700141 /* Early VLV doesn't have this */
Ville Syrjäläca2aed6c2014-06-28 02:03:56 +0300142 if (IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
143 dev->pdev->revision < 0xb) {
Jesse Barnes62942ed2014-06-13 09:28:33 -0700144 DRM_DEBUG_DRIVER("disabling PPGTT on pre-B3 step VLV\n");
145 return 0;
146 }
147
Michel Thierry2f82bbd2014-12-15 14:58:00 +0000148 if (INTEL_INFO(dev)->gen >= 8 && i915.enable_execlists)
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100149 return has_full_48bit_ppgtt ? 3 : 2;
Michel Thierry2f82bbd2014-12-15 14:58:00 +0000150 else
151 return has_aliasing_ppgtt ? 1 : 0;
Daniel Vetter93a25a92014-03-06 09:40:43 +0100152}
153
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200154static int ppgtt_bind_vma(struct i915_vma *vma,
155 enum i915_cache_level cache_level,
156 u32 unused)
Daniel Vetter47552652015-04-14 17:35:24 +0200157{
158 u32 pte_flags = 0;
159
160 /* Currently applicable only to VLV */
161 if (vma->obj->gt_ro)
162 pte_flags |= PTE_READ_ONLY;
163
164 vma->vm->insert_entries(vma->vm, vma->obj->pages, vma->node.start,
165 cache_level, pte_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200166
167 return 0;
Daniel Vetter47552652015-04-14 17:35:24 +0200168}
169
170static void ppgtt_unbind_vma(struct i915_vma *vma)
171{
172 vma->vm->clear_range(vma->vm,
173 vma->node.start,
174 vma->obj->base.size,
175 true);
176}
Ben Widawsky6f65e292013-12-06 14:10:56 -0800177
Daniel Vetter2c642b02015-04-14 17:35:26 +0200178static gen8_pte_t gen8_pte_encode(dma_addr_t addr,
179 enum i915_cache_level level,
180 bool valid)
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700181{
Michel Thierry07749ef2015-03-16 16:00:54 +0000182 gen8_pte_t pte = valid ? _PAGE_PRESENT | _PAGE_RW : 0;
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700183 pte |= addr;
Ben Widawsky63c42e52014-04-18 18:04:27 -0300184
185 switch (level) {
186 case I915_CACHE_NONE:
Ben Widawskyfbe5d362013-11-04 19:56:49 -0800187 pte |= PPAT_UNCACHED_INDEX;
Ben Widawsky63c42e52014-04-18 18:04:27 -0300188 break;
189 case I915_CACHE_WT:
190 pte |= PPAT_DISPLAY_ELLC_INDEX;
191 break;
192 default:
193 pte |= PPAT_CACHED_INDEX;
194 break;
195 }
196
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700197 return pte;
198}
199
Mika Kuoppalafe36f552015-06-25 18:35:16 +0300200static gen8_pde_t gen8_pde_encode(const dma_addr_t addr,
201 const enum i915_cache_level level)
Ben Widawskyb1fe6672013-11-04 21:20:14 -0800202{
Michel Thierry07749ef2015-03-16 16:00:54 +0000203 gen8_pde_t pde = _PAGE_PRESENT | _PAGE_RW;
Ben Widawskyb1fe6672013-11-04 21:20:14 -0800204 pde |= addr;
205 if (level != I915_CACHE_NONE)
206 pde |= PPAT_CACHED_PDE_INDEX;
207 else
208 pde |= PPAT_UNCACHED_INDEX;
209 return pde;
210}
211
Michel Thierry762d9932015-07-30 11:05:29 +0100212#define gen8_pdpe_encode gen8_pde_encode
213#define gen8_pml4e_encode gen8_pde_encode
214
Michel Thierry07749ef2015-03-16 16:00:54 +0000215static gen6_pte_t snb_pte_encode(dma_addr_t addr,
216 enum i915_cache_level level,
217 bool valid, u32 unused)
Ben Widawsky54d12522012-09-24 16:44:32 -0700218{
Michel Thierry07749ef2015-03-16 16:00:54 +0000219 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky54d12522012-09-24 16:44:32 -0700220 pte |= GEN6_PTE_ADDR_ENCODE(addr);
Ben Widawskye7210c32012-10-19 09:33:22 -0700221
222 switch (level) {
Chris Wilson350ec882013-08-06 13:17:02 +0100223 case I915_CACHE_L3_LLC:
224 case I915_CACHE_LLC:
225 pte |= GEN6_PTE_CACHE_LLC;
226 break;
227 case I915_CACHE_NONE:
228 pte |= GEN6_PTE_UNCACHED;
229 break;
230 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +0100231 MISSING_CASE(level);
Chris Wilson350ec882013-08-06 13:17:02 +0100232 }
233
234 return pte;
235}
236
Michel Thierry07749ef2015-03-16 16:00:54 +0000237static gen6_pte_t ivb_pte_encode(dma_addr_t addr,
238 enum i915_cache_level level,
239 bool valid, u32 unused)
Chris Wilson350ec882013-08-06 13:17:02 +0100240{
Michel Thierry07749ef2015-03-16 16:00:54 +0000241 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Chris Wilson350ec882013-08-06 13:17:02 +0100242 pte |= GEN6_PTE_ADDR_ENCODE(addr);
243
244 switch (level) {
245 case I915_CACHE_L3_LLC:
246 pte |= GEN7_PTE_CACHE_L3_LLC;
Ben Widawskye7210c32012-10-19 09:33:22 -0700247 break;
248 case I915_CACHE_LLC:
249 pte |= GEN6_PTE_CACHE_LLC;
250 break;
251 case I915_CACHE_NONE:
Kenneth Graunke91197082013-04-22 00:53:51 -0700252 pte |= GEN6_PTE_UNCACHED;
Ben Widawskye7210c32012-10-19 09:33:22 -0700253 break;
254 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +0100255 MISSING_CASE(level);
Ben Widawskye7210c32012-10-19 09:33:22 -0700256 }
257
Ben Widawsky54d12522012-09-24 16:44:32 -0700258 return pte;
259}
260
Michel Thierry07749ef2015-03-16 16:00:54 +0000261static gen6_pte_t byt_pte_encode(dma_addr_t addr,
262 enum i915_cache_level level,
263 bool valid, u32 flags)
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700264{
Michel Thierry07749ef2015-03-16 16:00:54 +0000265 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700266 pte |= GEN6_PTE_ADDR_ENCODE(addr);
267
Akash Goel24f3a8c2014-06-17 10:59:42 +0530268 if (!(flags & PTE_READ_ONLY))
269 pte |= BYT_PTE_WRITEABLE;
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700270
271 if (level != I915_CACHE_NONE)
272 pte |= BYT_PTE_SNOOPED_BY_CPU_CACHES;
273
274 return pte;
275}
276
Michel Thierry07749ef2015-03-16 16:00:54 +0000277static gen6_pte_t hsw_pte_encode(dma_addr_t addr,
278 enum i915_cache_level level,
279 bool valid, u32 unused)
Kenneth Graunke91197082013-04-22 00:53:51 -0700280{
Michel Thierry07749ef2015-03-16 16:00:54 +0000281 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky0d8ff152013-07-04 11:02:03 -0700282 pte |= HSW_PTE_ADDR_ENCODE(addr);
Kenneth Graunke91197082013-04-22 00:53:51 -0700283
284 if (level != I915_CACHE_NONE)
Ben Widawsky87a6b682013-08-04 23:47:29 -0700285 pte |= HSW_WB_LLC_AGE3;
Kenneth Graunke91197082013-04-22 00:53:51 -0700286
287 return pte;
288}
289
Michel Thierry07749ef2015-03-16 16:00:54 +0000290static gen6_pte_t iris_pte_encode(dma_addr_t addr,
291 enum i915_cache_level level,
292 bool valid, u32 unused)
Ben Widawsky4d15c142013-07-04 11:02:06 -0700293{
Michel Thierry07749ef2015-03-16 16:00:54 +0000294 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky4d15c142013-07-04 11:02:06 -0700295 pte |= HSW_PTE_ADDR_ENCODE(addr);
296
Chris Wilson651d7942013-08-08 14:41:10 +0100297 switch (level) {
298 case I915_CACHE_NONE:
299 break;
300 case I915_CACHE_WT:
Chris Wilsonc51e9702013-11-22 10:37:53 +0000301 pte |= HSW_WT_ELLC_LLC_AGE3;
Chris Wilson651d7942013-08-08 14:41:10 +0100302 break;
303 default:
Chris Wilsonc51e9702013-11-22 10:37:53 +0000304 pte |= HSW_WB_ELLC_LLC_AGE3;
Chris Wilson651d7942013-08-08 14:41:10 +0100305 break;
306 }
Ben Widawsky4d15c142013-07-04 11:02:06 -0700307
308 return pte;
309}
310
Mika Kuoppalac114f762015-06-25 18:35:13 +0300311static int __setup_page_dma(struct drm_device *dev,
312 struct i915_page_dma *p, gfp_t flags)
Ben Widawsky678d96f2015-03-16 16:00:56 +0000313{
314 struct device *device = &dev->pdev->dev;
315
Mika Kuoppalac114f762015-06-25 18:35:13 +0300316 p->page = alloc_page(flags);
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300317 if (!p->page)
Michel Thierry1266cdb2015-03-24 17:06:33 +0000318 return -ENOMEM;
319
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300320 p->daddr = dma_map_page(device,
321 p->page, 0, 4096, PCI_DMA_BIDIRECTIONAL);
322
323 if (dma_mapping_error(device, p->daddr)) {
324 __free_page(p->page);
325 return -EINVAL;
326 }
327
Michel Thierry1266cdb2015-03-24 17:06:33 +0000328 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000329}
330
Mika Kuoppalac114f762015-06-25 18:35:13 +0300331static int setup_page_dma(struct drm_device *dev, struct i915_page_dma *p)
332{
333 return __setup_page_dma(dev, p, GFP_KERNEL);
334}
335
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300336static void cleanup_page_dma(struct drm_device *dev, struct i915_page_dma *p)
337{
338 if (WARN_ON(!p->page))
339 return;
340
341 dma_unmap_page(&dev->pdev->dev, p->daddr, 4096, PCI_DMA_BIDIRECTIONAL);
342 __free_page(p->page);
343 memset(p, 0, sizeof(*p));
344}
345
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300346static void *kmap_page_dma(struct i915_page_dma *p)
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300347{
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300348 return kmap_atomic(p->page);
349}
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300350
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300351/* We use the flushing unmap only with ppgtt structures:
352 * page directories, page tables and scratch pages.
353 */
354static void kunmap_page_dma(struct drm_device *dev, void *vaddr)
355{
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300356 /* There are only few exceptions for gen >=6. chv and bxt.
357 * And we are not sure about the latter so play safe for now.
358 */
359 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
360 drm_clflush_virt_range(vaddr, PAGE_SIZE);
361
362 kunmap_atomic(vaddr);
363}
364
Mika Kuoppala567047b2015-06-25 18:35:12 +0300365#define kmap_px(px) kmap_page_dma(px_base(px))
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300366#define kunmap_px(ppgtt, vaddr) kunmap_page_dma((ppgtt)->base.dev, (vaddr))
367
Mika Kuoppala567047b2015-06-25 18:35:12 +0300368#define setup_px(dev, px) setup_page_dma((dev), px_base(px))
369#define cleanup_px(dev, px) cleanup_page_dma((dev), px_base(px))
370#define fill_px(dev, px, v) fill_page_dma((dev), px_base(px), (v))
371#define fill32_px(dev, px, v) fill_page_dma_32((dev), px_base(px), (v))
372
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300373static void fill_page_dma(struct drm_device *dev, struct i915_page_dma *p,
374 const uint64_t val)
375{
376 int i;
377 uint64_t * const vaddr = kmap_page_dma(p);
378
379 for (i = 0; i < 512; i++)
380 vaddr[i] = val;
381
382 kunmap_page_dma(dev, vaddr);
383}
384
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300385static void fill_page_dma_32(struct drm_device *dev, struct i915_page_dma *p,
386 const uint32_t val32)
387{
388 uint64_t v = val32;
389
390 v = v << 32 | val32;
391
392 fill_page_dma(dev, p, v);
393}
394
Mika Kuoppala4ad2af12015-06-30 18:16:39 +0300395static struct i915_page_scratch *alloc_scratch_page(struct drm_device *dev)
396{
397 struct i915_page_scratch *sp;
398 int ret;
399
400 sp = kzalloc(sizeof(*sp), GFP_KERNEL);
401 if (sp == NULL)
402 return ERR_PTR(-ENOMEM);
403
404 ret = __setup_page_dma(dev, px_base(sp), GFP_DMA32 | __GFP_ZERO);
405 if (ret) {
406 kfree(sp);
407 return ERR_PTR(ret);
408 }
409
410 set_pages_uc(px_page(sp), 1);
411
412 return sp;
413}
414
415static void free_scratch_page(struct drm_device *dev,
416 struct i915_page_scratch *sp)
417{
418 set_pages_wb(px_page(sp), 1);
419
420 cleanup_px(dev, sp);
421 kfree(sp);
422}
423
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +0300424static struct i915_page_table *alloc_pt(struct drm_device *dev)
Ben Widawsky06fda602015-02-24 16:22:36 +0000425{
Michel Thierryec565b32015-04-08 12:13:23 +0100426 struct i915_page_table *pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000427 const size_t count = INTEL_INFO(dev)->gen >= 8 ?
428 GEN8_PTES : GEN6_PTES;
429 int ret = -ENOMEM;
Ben Widawsky06fda602015-02-24 16:22:36 +0000430
431 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
432 if (!pt)
433 return ERR_PTR(-ENOMEM);
434
Ben Widawsky678d96f2015-03-16 16:00:56 +0000435 pt->used_ptes = kcalloc(BITS_TO_LONGS(count), sizeof(*pt->used_ptes),
436 GFP_KERNEL);
437
438 if (!pt->used_ptes)
439 goto fail_bitmap;
440
Mika Kuoppala567047b2015-06-25 18:35:12 +0300441 ret = setup_px(dev, pt);
Ben Widawsky678d96f2015-03-16 16:00:56 +0000442 if (ret)
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300443 goto fail_page_m;
Ben Widawsky06fda602015-02-24 16:22:36 +0000444
445 return pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000446
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300447fail_page_m:
Ben Widawsky678d96f2015-03-16 16:00:56 +0000448 kfree(pt->used_ptes);
449fail_bitmap:
450 kfree(pt);
451
452 return ERR_PTR(ret);
Ben Widawsky06fda602015-02-24 16:22:36 +0000453}
454
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300455static void free_pt(struct drm_device *dev, struct i915_page_table *pt)
Ben Widawsky06fda602015-02-24 16:22:36 +0000456{
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300457 cleanup_px(dev, pt);
458 kfree(pt->used_ptes);
459 kfree(pt);
460}
461
462static void gen8_initialize_pt(struct i915_address_space *vm,
463 struct i915_page_table *pt)
464{
465 gen8_pte_t scratch_pte;
466
467 scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
468 I915_CACHE_LLC, true);
469
470 fill_px(vm->dev, pt, scratch_pte);
471}
472
473static void gen6_initialize_pt(struct i915_address_space *vm,
474 struct i915_page_table *pt)
475{
476 gen6_pte_t scratch_pte;
477
478 WARN_ON(px_dma(vm->scratch_page) == 0);
479
480 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
481 I915_CACHE_LLC, true, 0);
482
483 fill32_px(vm->dev, pt, scratch_pte);
Ben Widawsky06fda602015-02-24 16:22:36 +0000484}
485
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +0300486static struct i915_page_directory *alloc_pd(struct drm_device *dev)
Ben Widawsky06fda602015-02-24 16:22:36 +0000487{
Michel Thierryec565b32015-04-08 12:13:23 +0100488 struct i915_page_directory *pd;
Michel Thierry33c88192015-04-08 12:13:33 +0100489 int ret = -ENOMEM;
Ben Widawsky06fda602015-02-24 16:22:36 +0000490
491 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
492 if (!pd)
493 return ERR_PTR(-ENOMEM);
494
Michel Thierry33c88192015-04-08 12:13:33 +0100495 pd->used_pdes = kcalloc(BITS_TO_LONGS(I915_PDES),
496 sizeof(*pd->used_pdes), GFP_KERNEL);
497 if (!pd->used_pdes)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300498 goto fail_bitmap;
Michel Thierry33c88192015-04-08 12:13:33 +0100499
Mika Kuoppala567047b2015-06-25 18:35:12 +0300500 ret = setup_px(dev, pd);
Michel Thierry33c88192015-04-08 12:13:33 +0100501 if (ret)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300502 goto fail_page_m;
Michel Thierrye5815a22015-04-08 12:13:32 +0100503
Ben Widawsky06fda602015-02-24 16:22:36 +0000504 return pd;
Michel Thierry33c88192015-04-08 12:13:33 +0100505
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300506fail_page_m:
Michel Thierry33c88192015-04-08 12:13:33 +0100507 kfree(pd->used_pdes);
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300508fail_bitmap:
Michel Thierry33c88192015-04-08 12:13:33 +0100509 kfree(pd);
510
511 return ERR_PTR(ret);
Ben Widawsky06fda602015-02-24 16:22:36 +0000512}
513
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300514static void free_pd(struct drm_device *dev, struct i915_page_directory *pd)
515{
516 if (px_page(pd)) {
517 cleanup_px(dev, pd);
518 kfree(pd->used_pdes);
519 kfree(pd);
520 }
521}
522
523static void gen8_initialize_pd(struct i915_address_space *vm,
524 struct i915_page_directory *pd)
525{
526 gen8_pde_t scratch_pde;
527
528 scratch_pde = gen8_pde_encode(px_dma(vm->scratch_pt), I915_CACHE_LLC);
529
530 fill_px(vm->dev, pd, scratch_pde);
531}
532
Michel Thierry6ac18502015-07-29 17:23:46 +0100533static int __pdp_init(struct drm_device *dev,
534 struct i915_page_directory_pointer *pdp)
535{
536 size_t pdpes = I915_PDPES_PER_PDP(dev);
537
538 pdp->used_pdpes = kcalloc(BITS_TO_LONGS(pdpes),
539 sizeof(unsigned long),
540 GFP_KERNEL);
541 if (!pdp->used_pdpes)
542 return -ENOMEM;
543
544 pdp->page_directory = kcalloc(pdpes, sizeof(*pdp->page_directory),
545 GFP_KERNEL);
546 if (!pdp->page_directory) {
547 kfree(pdp->used_pdpes);
548 /* the PDP might be the statically allocated top level. Keep it
549 * as clean as possible */
550 pdp->used_pdpes = NULL;
551 return -ENOMEM;
552 }
553
554 return 0;
555}
556
557static void __pdp_fini(struct i915_page_directory_pointer *pdp)
558{
559 kfree(pdp->used_pdpes);
560 kfree(pdp->page_directory);
561 pdp->page_directory = NULL;
562}
563
Michel Thierry762d9932015-07-30 11:05:29 +0100564static struct
565i915_page_directory_pointer *alloc_pdp(struct drm_device *dev)
566{
567 struct i915_page_directory_pointer *pdp;
568 int ret = -ENOMEM;
569
570 WARN_ON(!USES_FULL_48BIT_PPGTT(dev));
571
572 pdp = kzalloc(sizeof(*pdp), GFP_KERNEL);
573 if (!pdp)
574 return ERR_PTR(-ENOMEM);
575
576 ret = __pdp_init(dev, pdp);
577 if (ret)
578 goto fail_bitmap;
579
580 ret = setup_px(dev, pdp);
581 if (ret)
582 goto fail_page_m;
583
584 return pdp;
585
586fail_page_m:
587 __pdp_fini(pdp);
588fail_bitmap:
589 kfree(pdp);
590
591 return ERR_PTR(ret);
592}
593
Michel Thierry6ac18502015-07-29 17:23:46 +0100594static void free_pdp(struct drm_device *dev,
595 struct i915_page_directory_pointer *pdp)
596{
597 __pdp_fini(pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100598 if (USES_FULL_48BIT_PPGTT(dev)) {
599 cleanup_px(dev, pdp);
600 kfree(pdp);
601 }
602}
603
Michel Thierry69ab76f2015-07-29 17:23:55 +0100604static void gen8_initialize_pdp(struct i915_address_space *vm,
605 struct i915_page_directory_pointer *pdp)
606{
607 gen8_ppgtt_pdpe_t scratch_pdpe;
608
609 scratch_pdpe = gen8_pdpe_encode(px_dma(vm->scratch_pd), I915_CACHE_LLC);
610
611 fill_px(vm->dev, pdp, scratch_pdpe);
612}
613
614static void gen8_initialize_pml4(struct i915_address_space *vm,
615 struct i915_pml4 *pml4)
616{
617 gen8_ppgtt_pml4e_t scratch_pml4e;
618
619 scratch_pml4e = gen8_pml4e_encode(px_dma(vm->scratch_pdp),
620 I915_CACHE_LLC);
621
622 fill_px(vm->dev, pml4, scratch_pml4e);
623}
624
Michel Thierry762d9932015-07-30 11:05:29 +0100625static void
626gen8_setup_page_directory(struct i915_hw_ppgtt *ppgtt,
627 struct i915_page_directory_pointer *pdp,
628 struct i915_page_directory *pd,
629 int index)
630{
631 gen8_ppgtt_pdpe_t *page_directorypo;
632
633 if (!USES_FULL_48BIT_PPGTT(ppgtt->base.dev))
634 return;
635
636 page_directorypo = kmap_px(pdp);
637 page_directorypo[index] = gen8_pdpe_encode(px_dma(pd), I915_CACHE_LLC);
638 kunmap_px(ppgtt, page_directorypo);
639}
640
641static void
642gen8_setup_page_directory_pointer(struct i915_hw_ppgtt *ppgtt,
643 struct i915_pml4 *pml4,
644 struct i915_page_directory_pointer *pdp,
645 int index)
646{
647 gen8_ppgtt_pml4e_t *pagemap = kmap_px(pml4);
648
649 WARN_ON(!USES_FULL_48BIT_PPGTT(ppgtt->base.dev));
650 pagemap[index] = gen8_pml4e_encode(px_dma(pdp), I915_CACHE_LLC);
651 kunmap_px(ppgtt, pagemap);
Michel Thierry6ac18502015-07-29 17:23:46 +0100652}
653
Ben Widawsky94e409c2013-11-04 22:29:36 -0800654/* Broadwell Page Directory Pointer Descriptors */
John Harrisone85b26d2015-05-29 17:43:56 +0100655static int gen8_write_pdp(struct drm_i915_gem_request *req,
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100656 unsigned entry,
657 dma_addr_t addr)
Ben Widawsky94e409c2013-11-04 22:29:36 -0800658{
John Harrisone85b26d2015-05-29 17:43:56 +0100659 struct intel_engine_cs *ring = req->ring;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800660 int ret;
661
662 BUG_ON(entry >= 4);
663
John Harrison5fb9de12015-05-29 17:44:07 +0100664 ret = intel_ring_begin(req, 6);
Ben Widawsky94e409c2013-11-04 22:29:36 -0800665 if (ret)
666 return ret;
667
668 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
669 intel_ring_emit(ring, GEN8_RING_PDP_UDW(ring, entry));
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100670 intel_ring_emit(ring, upper_32_bits(addr));
Ben Widawsky94e409c2013-11-04 22:29:36 -0800671 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
672 intel_ring_emit(ring, GEN8_RING_PDP_LDW(ring, entry));
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100673 intel_ring_emit(ring, lower_32_bits(addr));
Ben Widawsky94e409c2013-11-04 22:29:36 -0800674 intel_ring_advance(ring);
675
676 return 0;
677}
678
Michel Thierry2dba3232015-07-30 11:06:23 +0100679static int gen8_legacy_mm_switch(struct i915_hw_ppgtt *ppgtt,
680 struct drm_i915_gem_request *req)
Ben Widawsky94e409c2013-11-04 22:29:36 -0800681{
Ben Widawskyeeb94882013-12-06 14:11:10 -0800682 int i, ret;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800683
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100684 for (i = GEN8_LEGACY_PDPES - 1; i >= 0; i--) {
Mika Kuoppalad852c7b2015-06-25 18:35:06 +0300685 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
686
John Harrisone85b26d2015-05-29 17:43:56 +0100687 ret = gen8_write_pdp(req, i, pd_daddr);
Ben Widawskyeeb94882013-12-06 14:11:10 -0800688 if (ret)
689 return ret;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800690 }
Ben Widawskyd595bd42013-11-25 09:54:32 -0800691
Ben Widawskyeeb94882013-12-06 14:11:10 -0800692 return 0;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800693}
694
Michel Thierry2dba3232015-07-30 11:06:23 +0100695static int gen8_48b_mm_switch(struct i915_hw_ppgtt *ppgtt,
696 struct drm_i915_gem_request *req)
697{
698 return gen8_write_pdp(req, 0, px_dma(&ppgtt->pml4));
699}
700
Michel Thierryf9b5b782015-07-30 11:02:49 +0100701static void gen8_ppgtt_clear_pte_range(struct i915_address_space *vm,
702 struct i915_page_directory_pointer *pdp,
703 uint64_t start,
704 uint64_t length,
705 gen8_pte_t scratch_pte)
Ben Widawsky459108b2013-11-02 21:07:23 -0700706{
707 struct i915_hw_ppgtt *ppgtt =
708 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierryf9b5b782015-07-30 11:02:49 +0100709 gen8_pte_t *pt_vaddr;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100710 unsigned pdpe = gen8_pdpe_index(start);
711 unsigned pde = gen8_pde_index(start);
712 unsigned pte = gen8_pte_index(start);
Ben Widawsky782f1492014-02-20 11:50:33 -0800713 unsigned num_entries = length >> PAGE_SHIFT;
Ben Widawsky459108b2013-11-02 21:07:23 -0700714 unsigned last_pte, i;
715
Michel Thierryf9b5b782015-07-30 11:02:49 +0100716 if (WARN_ON(!pdp))
717 return;
Ben Widawsky459108b2013-11-02 21:07:23 -0700718
719 while (num_entries) {
Michel Thierryec565b32015-04-08 12:13:23 +0100720 struct i915_page_directory *pd;
721 struct i915_page_table *pt;
Ben Widawsky06fda602015-02-24 16:22:36 +0000722
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100723 if (WARN_ON(!pdp->page_directory[pdpe]))
Michel Thierry00245262015-06-25 12:59:38 +0100724 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000725
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100726 pd = pdp->page_directory[pdpe];
Ben Widawsky06fda602015-02-24 16:22:36 +0000727
728 if (WARN_ON(!pd->page_table[pde]))
Michel Thierry00245262015-06-25 12:59:38 +0100729 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000730
731 pt = pd->page_table[pde];
732
Mika Kuoppala567047b2015-06-25 18:35:12 +0300733 if (WARN_ON(!px_page(pt)))
Michel Thierry00245262015-06-25 12:59:38 +0100734 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000735
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800736 last_pte = pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +0000737 if (last_pte > GEN8_PTES)
738 last_pte = GEN8_PTES;
Ben Widawsky459108b2013-11-02 21:07:23 -0700739
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300740 pt_vaddr = kmap_px(pt);
Ben Widawsky459108b2013-11-02 21:07:23 -0700741
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800742 for (i = pte; i < last_pte; i++) {
Ben Widawsky459108b2013-11-02 21:07:23 -0700743 pt_vaddr[i] = scratch_pte;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800744 num_entries--;
745 }
Ben Widawsky459108b2013-11-02 21:07:23 -0700746
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300747 kunmap_px(ppgtt, pt);
Ben Widawsky459108b2013-11-02 21:07:23 -0700748
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800749 pte = 0;
Michel Thierry07749ef2015-03-16 16:00:54 +0000750 if (++pde == I915_PDES) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100751 if (++pdpe == I915_PDPES_PER_PDP(vm->dev))
752 break;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800753 pde = 0;
754 }
Ben Widawsky459108b2013-11-02 21:07:23 -0700755 }
756}
757
Michel Thierryf9b5b782015-07-30 11:02:49 +0100758static void gen8_ppgtt_clear_range(struct i915_address_space *vm,
759 uint64_t start,
760 uint64_t length,
761 bool use_scratch)
Ben Widawsky9df15b42013-11-02 21:07:24 -0700762{
763 struct i915_hw_ppgtt *ppgtt =
764 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierryf9b5b782015-07-30 11:02:49 +0100765 gen8_pte_t scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
766 I915_CACHE_LLC, use_scratch);
767
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100768 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
769 gen8_ppgtt_clear_pte_range(vm, &ppgtt->pdp, start, length,
770 scratch_pte);
771 } else {
772 uint64_t templ4, pml4e;
773 struct i915_page_directory_pointer *pdp;
774
775 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, templ4, pml4e) {
776 gen8_ppgtt_clear_pte_range(vm, pdp, start, length,
777 scratch_pte);
778 }
779 }
Michel Thierryf9b5b782015-07-30 11:02:49 +0100780}
781
782static void
783gen8_ppgtt_insert_pte_entries(struct i915_address_space *vm,
784 struct i915_page_directory_pointer *pdp,
Michel Thierry3387d432015-08-03 09:52:47 +0100785 struct sg_page_iter *sg_iter,
Michel Thierryf9b5b782015-07-30 11:02:49 +0100786 uint64_t start,
787 enum i915_cache_level cache_level)
788{
789 struct i915_hw_ppgtt *ppgtt =
790 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +0000791 gen8_pte_t *pt_vaddr;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100792 unsigned pdpe = gen8_pdpe_index(start);
793 unsigned pde = gen8_pde_index(start);
794 unsigned pte = gen8_pte_index(start);
Ben Widawsky9df15b42013-11-02 21:07:24 -0700795
Chris Wilson6f1cc992013-12-31 15:50:31 +0000796 pt_vaddr = NULL;
Ben Widawsky9df15b42013-11-02 21:07:24 -0700797
Michel Thierry3387d432015-08-03 09:52:47 +0100798 while (__sg_page_iter_next(sg_iter)) {
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000799 if (pt_vaddr == NULL) {
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100800 struct i915_page_directory *pd = pdp->page_directory[pdpe];
Michel Thierryec565b32015-04-08 12:13:23 +0100801 struct i915_page_table *pt = pd->page_table[pde];
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300802 pt_vaddr = kmap_px(pt);
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000803 }
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800804
805 pt_vaddr[pte] =
Michel Thierry3387d432015-08-03 09:52:47 +0100806 gen8_pte_encode(sg_page_iter_dma_address(sg_iter),
Chris Wilson6f1cc992013-12-31 15:50:31 +0000807 cache_level, true);
Michel Thierry07749ef2015-03-16 16:00:54 +0000808 if (++pte == GEN8_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300809 kunmap_px(ppgtt, pt_vaddr);
Chris Wilson6f1cc992013-12-31 15:50:31 +0000810 pt_vaddr = NULL;
Michel Thierry07749ef2015-03-16 16:00:54 +0000811 if (++pde == I915_PDES) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100812 if (++pdpe == I915_PDPES_PER_PDP(vm->dev))
813 break;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800814 pde = 0;
815 }
816 pte = 0;
Ben Widawsky9df15b42013-11-02 21:07:24 -0700817 }
818 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300819
820 if (pt_vaddr)
821 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky9df15b42013-11-02 21:07:24 -0700822}
823
Michel Thierryf9b5b782015-07-30 11:02:49 +0100824static void gen8_ppgtt_insert_entries(struct i915_address_space *vm,
825 struct sg_table *pages,
826 uint64_t start,
827 enum i915_cache_level cache_level,
828 u32 unused)
829{
830 struct i915_hw_ppgtt *ppgtt =
831 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry3387d432015-08-03 09:52:47 +0100832 struct sg_page_iter sg_iter;
Michel Thierryf9b5b782015-07-30 11:02:49 +0100833
Michel Thierry3387d432015-08-03 09:52:47 +0100834 __sg_page_iter_start(&sg_iter, pages->sgl, sg_nents(pages->sgl), 0);
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100835
836 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
837 gen8_ppgtt_insert_pte_entries(vm, &ppgtt->pdp, &sg_iter, start,
838 cache_level);
839 } else {
840 struct i915_page_directory_pointer *pdp;
841 uint64_t templ4, pml4e;
842 uint64_t length = (uint64_t)pages->orig_nents << PAGE_SHIFT;
843
844 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, templ4, pml4e) {
845 gen8_ppgtt_insert_pte_entries(vm, pdp, &sg_iter,
846 start, cache_level);
847 }
848 }
Michel Thierryf9b5b782015-07-30 11:02:49 +0100849}
850
Michel Thierryf37c0502015-06-10 17:46:39 +0100851static void gen8_free_page_tables(struct drm_device *dev,
852 struct i915_page_directory *pd)
Ben Widawskyb45a6712014-02-12 14:28:44 -0800853{
854 int i;
855
Mika Kuoppala567047b2015-06-25 18:35:12 +0300856 if (!px_page(pd))
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800857 return;
Ben Widawskyb45a6712014-02-12 14:28:44 -0800858
Michel Thierry33c88192015-04-08 12:13:33 +0100859 for_each_set_bit(i, pd->used_pdes, I915_PDES) {
Ben Widawsky06fda602015-02-24 16:22:36 +0000860 if (WARN_ON(!pd->page_table[i]))
861 continue;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800862
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300863 free_pt(dev, pd->page_table[i]);
Ben Widawsky06fda602015-02-24 16:22:36 +0000864 pd->page_table[i] = NULL;
865 }
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000866}
867
Mika Kuoppala8776f022015-06-30 18:16:40 +0300868static int gen8_init_scratch(struct i915_address_space *vm)
869{
870 struct drm_device *dev = vm->dev;
871
872 vm->scratch_page = alloc_scratch_page(dev);
873 if (IS_ERR(vm->scratch_page))
874 return PTR_ERR(vm->scratch_page);
875
876 vm->scratch_pt = alloc_pt(dev);
877 if (IS_ERR(vm->scratch_pt)) {
878 free_scratch_page(dev, vm->scratch_page);
879 return PTR_ERR(vm->scratch_pt);
880 }
881
882 vm->scratch_pd = alloc_pd(dev);
883 if (IS_ERR(vm->scratch_pd)) {
884 free_pt(dev, vm->scratch_pt);
885 free_scratch_page(dev, vm->scratch_page);
886 return PTR_ERR(vm->scratch_pd);
887 }
888
Michel Thierry69ab76f2015-07-29 17:23:55 +0100889 if (USES_FULL_48BIT_PPGTT(dev)) {
890 vm->scratch_pdp = alloc_pdp(dev);
891 if (IS_ERR(vm->scratch_pdp)) {
892 free_pd(dev, vm->scratch_pd);
893 free_pt(dev, vm->scratch_pt);
894 free_scratch_page(dev, vm->scratch_page);
895 return PTR_ERR(vm->scratch_pdp);
896 }
897 }
898
Mika Kuoppala8776f022015-06-30 18:16:40 +0300899 gen8_initialize_pt(vm, vm->scratch_pt);
900 gen8_initialize_pd(vm, vm->scratch_pd);
Michel Thierry69ab76f2015-07-29 17:23:55 +0100901 if (USES_FULL_48BIT_PPGTT(dev))
902 gen8_initialize_pdp(vm, vm->scratch_pdp);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300903
904 return 0;
905}
906
Zhiyuan Lv650da342015-08-28 15:41:18 +0800907static int gen8_ppgtt_notify_vgt(struct i915_hw_ppgtt *ppgtt, bool create)
908{
909 enum vgt_g2v_type msg;
910 struct drm_device *dev = ppgtt->base.dev;
911 struct drm_i915_private *dev_priv = dev->dev_private;
912 unsigned int offset = vgtif_reg(pdp0_lo);
913 int i;
914
915 if (USES_FULL_48BIT_PPGTT(dev)) {
916 u64 daddr = px_dma(&ppgtt->pml4);
917
918 I915_WRITE(offset, lower_32_bits(daddr));
919 I915_WRITE(offset + 4, upper_32_bits(daddr));
920
921 msg = (create ? VGT_G2V_PPGTT_L4_PAGE_TABLE_CREATE :
922 VGT_G2V_PPGTT_L4_PAGE_TABLE_DESTROY);
923 } else {
924 for (i = 0; i < GEN8_LEGACY_PDPES; i++) {
925 u64 daddr = i915_page_dir_dma_addr(ppgtt, i);
926
927 I915_WRITE(offset, lower_32_bits(daddr));
928 I915_WRITE(offset + 4, upper_32_bits(daddr));
929
930 offset += 8;
931 }
932
933 msg = (create ? VGT_G2V_PPGTT_L3_PAGE_TABLE_CREATE :
934 VGT_G2V_PPGTT_L3_PAGE_TABLE_DESTROY);
935 }
936
937 I915_WRITE(vgtif_reg(g2v_notify), msg);
938
939 return 0;
940}
941
Mika Kuoppala8776f022015-06-30 18:16:40 +0300942static void gen8_free_scratch(struct i915_address_space *vm)
943{
944 struct drm_device *dev = vm->dev;
945
Michel Thierry69ab76f2015-07-29 17:23:55 +0100946 if (USES_FULL_48BIT_PPGTT(dev))
947 free_pdp(dev, vm->scratch_pdp);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300948 free_pd(dev, vm->scratch_pd);
949 free_pt(dev, vm->scratch_pt);
950 free_scratch_page(dev, vm->scratch_page);
951}
952
Michel Thierry762d9932015-07-30 11:05:29 +0100953static void gen8_ppgtt_cleanup_3lvl(struct drm_device *dev,
954 struct i915_page_directory_pointer *pdp)
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800955{
956 int i;
957
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100958 for_each_set_bit(i, pdp->used_pdpes, I915_PDPES_PER_PDP(dev)) {
959 if (WARN_ON(!pdp->page_directory[i]))
Ben Widawsky06fda602015-02-24 16:22:36 +0000960 continue;
961
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100962 gen8_free_page_tables(dev, pdp->page_directory[i]);
963 free_pd(dev, pdp->page_directory[i]);
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800964 }
Michel Thierry69876be2015-04-08 12:13:27 +0100965
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100966 free_pdp(dev, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100967}
968
969static void gen8_ppgtt_cleanup_4lvl(struct i915_hw_ppgtt *ppgtt)
970{
971 int i;
972
973 for_each_set_bit(i, ppgtt->pml4.used_pml4es, GEN8_PML4ES_PER_PML4) {
974 if (WARN_ON(!ppgtt->pml4.pdps[i]))
975 continue;
976
977 gen8_ppgtt_cleanup_3lvl(ppgtt->base.dev, ppgtt->pml4.pdps[i]);
978 }
979
980 cleanup_px(ppgtt->base.dev, &ppgtt->pml4);
981}
982
983static void gen8_ppgtt_cleanup(struct i915_address_space *vm)
984{
985 struct i915_hw_ppgtt *ppgtt =
986 container_of(vm, struct i915_hw_ppgtt, base);
987
Zhiyuan Lv650da342015-08-28 15:41:18 +0800988 if (intel_vgpu_active(vm->dev))
989 gen8_ppgtt_notify_vgt(ppgtt, false);
990
Michel Thierry762d9932015-07-30 11:05:29 +0100991 if (!USES_FULL_48BIT_PPGTT(ppgtt->base.dev))
992 gen8_ppgtt_cleanup_3lvl(ppgtt->base.dev, &ppgtt->pdp);
993 else
994 gen8_ppgtt_cleanup_4lvl(ppgtt);
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100995
Mika Kuoppala8776f022015-06-30 18:16:40 +0300996 gen8_free_scratch(vm);
Ben Widawskyb45a6712014-02-12 14:28:44 -0800997}
998
Michel Thierryd7b26332015-04-08 12:13:34 +0100999/**
1000 * gen8_ppgtt_alloc_pagetabs() - Allocate page tables for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001001 * @vm: Master vm structure.
1002 * @pd: Page directory for this address range.
Michel Thierryd7b26332015-04-08 12:13:34 +01001003 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001004 * @length: Size of the allocations.
Michel Thierryd7b26332015-04-08 12:13:34 +01001005 * @new_pts: Bitmap set by function with new allocations. Likely used by the
1006 * caller to free on error.
1007 *
1008 * Allocate the required number of page tables. Extremely similar to
1009 * gen8_ppgtt_alloc_page_directories(). The main difference is here we are limited by
1010 * the page directory boundary (instead of the page directory pointer). That
1011 * boundary is 1GB virtual. Therefore, unlike gen8_ppgtt_alloc_page_directories(), it is
1012 * possible, and likely that the caller will need to use multiple calls of this
1013 * function to achieve the appropriate allocation.
1014 *
1015 * Return: 0 if success; negative error code otherwise.
1016 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001017static int gen8_ppgtt_alloc_pagetabs(struct i915_address_space *vm,
Michel Thierrye5815a22015-04-08 12:13:32 +01001018 struct i915_page_directory *pd,
Michel Thierry5441f0c2015-04-08 12:13:28 +01001019 uint64_t start,
Michel Thierryd7b26332015-04-08 12:13:34 +01001020 uint64_t length,
1021 unsigned long *new_pts)
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001022{
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001023 struct drm_device *dev = vm->dev;
Michel Thierryd7b26332015-04-08 12:13:34 +01001024 struct i915_page_table *pt;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001025 uint64_t temp;
1026 uint32_t pde;
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001027
Michel Thierryd7b26332015-04-08 12:13:34 +01001028 gen8_for_each_pde(pt, pd, start, length, temp, pde) {
1029 /* Don't reallocate page tables */
Michel Thierry6ac18502015-07-29 17:23:46 +01001030 if (test_bit(pde, pd->used_pdes)) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001031 /* Scratch is never allocated this way */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001032 WARN_ON(pt == vm->scratch_pt);
Michel Thierryd7b26332015-04-08 12:13:34 +01001033 continue;
1034 }
1035
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001036 pt = alloc_pt(dev);
Michel Thierryd7b26332015-04-08 12:13:34 +01001037 if (IS_ERR(pt))
Ben Widawsky06fda602015-02-24 16:22:36 +00001038 goto unwind_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001039
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001040 gen8_initialize_pt(vm, pt);
Michel Thierryd7b26332015-04-08 12:13:34 +01001041 pd->page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001042 __set_bit(pde, new_pts);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001043 trace_i915_page_table_entry_alloc(vm, pde, start, GEN8_PDE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001044 }
1045
1046 return 0;
1047
1048unwind_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001049 for_each_set_bit(pde, new_pts, I915_PDES)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001050 free_pt(dev, pd->page_table[pde]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001051
1052 return -ENOMEM;
1053}
1054
Michel Thierryd7b26332015-04-08 12:13:34 +01001055/**
1056 * gen8_ppgtt_alloc_page_directories() - Allocate page directories for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001057 * @vm: Master vm structure.
Michel Thierryd7b26332015-04-08 12:13:34 +01001058 * @pdp: Page directory pointer for this address range.
1059 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001060 * @length: Size of the allocations.
1061 * @new_pds: Bitmap set by function with new allocations. Likely used by the
Michel Thierryd7b26332015-04-08 12:13:34 +01001062 * caller to free on error.
1063 *
1064 * Allocate the required number of page directories starting at the pde index of
1065 * @start, and ending at the pde index @start + @length. This function will skip
1066 * over already allocated page directories within the range, and only allocate
1067 * new ones, setting the appropriate pointer within the pdp as well as the
1068 * correct position in the bitmap @new_pds.
1069 *
1070 * The function will only allocate the pages within the range for a give page
1071 * directory pointer. In other words, if @start + @length straddles a virtually
1072 * addressed PDP boundary (512GB for 4k pages), there will be more allocations
1073 * required by the caller, This is not currently possible, and the BUG in the
1074 * code will prevent it.
1075 *
1076 * Return: 0 if success; negative error code otherwise.
1077 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001078static int
1079gen8_ppgtt_alloc_page_directories(struct i915_address_space *vm,
1080 struct i915_page_directory_pointer *pdp,
1081 uint64_t start,
1082 uint64_t length,
1083 unsigned long *new_pds)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001084{
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001085 struct drm_device *dev = vm->dev;
Michel Thierryd7b26332015-04-08 12:13:34 +01001086 struct i915_page_directory *pd;
Michel Thierry69876be2015-04-08 12:13:27 +01001087 uint64_t temp;
1088 uint32_t pdpe;
Michel Thierry6ac18502015-07-29 17:23:46 +01001089 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001090
Michel Thierry6ac18502015-07-29 17:23:46 +01001091 WARN_ON(!bitmap_empty(new_pds, pdpes));
Michel Thierryd7b26332015-04-08 12:13:34 +01001092
Michel Thierryd7b26332015-04-08 12:13:34 +01001093 gen8_for_each_pdpe(pd, pdp, start, length, temp, pdpe) {
Michel Thierry6ac18502015-07-29 17:23:46 +01001094 if (test_bit(pdpe, pdp->used_pdpes))
Michel Thierryd7b26332015-04-08 12:13:34 +01001095 continue;
Michel Thierry33c88192015-04-08 12:13:33 +01001096
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001097 pd = alloc_pd(dev);
Michel Thierryd7b26332015-04-08 12:13:34 +01001098 if (IS_ERR(pd))
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001099 goto unwind_out;
Michel Thierry69876be2015-04-08 12:13:27 +01001100
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001101 gen8_initialize_pd(vm, pd);
Michel Thierryd7b26332015-04-08 12:13:34 +01001102 pdp->page_directory[pdpe] = pd;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001103 __set_bit(pdpe, new_pds);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001104 trace_i915_page_directory_entry_alloc(vm, pdpe, start, GEN8_PDPE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001105 }
1106
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001107 return 0;
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001108
1109unwind_out:
Michel Thierry6ac18502015-07-29 17:23:46 +01001110 for_each_set_bit(pdpe, new_pds, pdpes)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001111 free_pd(dev, pdp->page_directory[pdpe]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001112
1113 return -ENOMEM;
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001114}
1115
Michel Thierry762d9932015-07-30 11:05:29 +01001116/**
1117 * gen8_ppgtt_alloc_page_dirpointers() - Allocate pdps for VA range.
1118 * @vm: Master vm structure.
1119 * @pml4: Page map level 4 for this address range.
1120 * @start: Starting virtual address to begin allocations.
1121 * @length: Size of the allocations.
1122 * @new_pdps: Bitmap set by function with new allocations. Likely used by the
1123 * caller to free on error.
1124 *
1125 * Allocate the required number of page directory pointers. Extremely similar to
1126 * gen8_ppgtt_alloc_page_directories() and gen8_ppgtt_alloc_pagetabs().
1127 * The main difference is here we are limited by the pml4 boundary (instead of
1128 * the page directory pointer).
1129 *
1130 * Return: 0 if success; negative error code otherwise.
1131 */
1132static int
1133gen8_ppgtt_alloc_page_dirpointers(struct i915_address_space *vm,
1134 struct i915_pml4 *pml4,
1135 uint64_t start,
1136 uint64_t length,
1137 unsigned long *new_pdps)
1138{
1139 struct drm_device *dev = vm->dev;
1140 struct i915_page_directory_pointer *pdp;
1141 uint64_t temp;
1142 uint32_t pml4e;
1143
1144 WARN_ON(!bitmap_empty(new_pdps, GEN8_PML4ES_PER_PML4));
1145
1146 gen8_for_each_pml4e(pdp, pml4, start, length, temp, pml4e) {
1147 if (!test_bit(pml4e, pml4->used_pml4es)) {
1148 pdp = alloc_pdp(dev);
1149 if (IS_ERR(pdp))
1150 goto unwind_out;
1151
Michel Thierry69ab76f2015-07-29 17:23:55 +01001152 gen8_initialize_pdp(vm, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +01001153 pml4->pdps[pml4e] = pdp;
1154 __set_bit(pml4e, new_pdps);
1155 trace_i915_page_directory_pointer_entry_alloc(vm,
1156 pml4e,
1157 start,
1158 GEN8_PML4E_SHIFT);
1159 }
1160 }
1161
1162 return 0;
1163
1164unwind_out:
1165 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
1166 free_pdp(dev, pml4->pdps[pml4e]);
1167
1168 return -ENOMEM;
1169}
1170
Michel Thierryd7b26332015-04-08 12:13:34 +01001171static void
Michał Winiarski3a41a052015-09-03 19:22:18 +02001172free_gen8_temp_bitmaps(unsigned long *new_pds, unsigned long *new_pts)
Michel Thierryd7b26332015-04-08 12:13:34 +01001173{
Michel Thierryd7b26332015-04-08 12:13:34 +01001174 kfree(new_pts);
1175 kfree(new_pds);
1176}
1177
1178/* Fills in the page directory bitmap, and the array of page tables bitmap. Both
1179 * of these are based on the number of PDPEs in the system.
1180 */
1181static
1182int __must_check alloc_gen8_temp_bitmaps(unsigned long **new_pds,
Michał Winiarski3a41a052015-09-03 19:22:18 +02001183 unsigned long **new_pts,
Michel Thierry6ac18502015-07-29 17:23:46 +01001184 uint32_t pdpes)
Michel Thierryd7b26332015-04-08 12:13:34 +01001185{
Michel Thierryd7b26332015-04-08 12:13:34 +01001186 unsigned long *pds;
Michał Winiarski3a41a052015-09-03 19:22:18 +02001187 unsigned long *pts;
Michel Thierryd7b26332015-04-08 12:13:34 +01001188
Michał Winiarski3a41a052015-09-03 19:22:18 +02001189 pds = kcalloc(BITS_TO_LONGS(pdpes), sizeof(unsigned long), GFP_TEMPORARY);
Michel Thierryd7b26332015-04-08 12:13:34 +01001190 if (!pds)
1191 return -ENOMEM;
1192
Michał Winiarski3a41a052015-09-03 19:22:18 +02001193 pts = kcalloc(pdpes, BITS_TO_LONGS(I915_PDES) * sizeof(unsigned long),
1194 GFP_TEMPORARY);
1195 if (!pts)
1196 goto err_out;
Michel Thierryd7b26332015-04-08 12:13:34 +01001197
1198 *new_pds = pds;
1199 *new_pts = pts;
1200
1201 return 0;
1202
1203err_out:
Michał Winiarski3a41a052015-09-03 19:22:18 +02001204 free_gen8_temp_bitmaps(pds, pts);
Michel Thierryd7b26332015-04-08 12:13:34 +01001205 return -ENOMEM;
1206}
1207
Mika Kuoppala5b7e4c9c2015-06-25 18:35:03 +03001208/* PDE TLBs are a pain to invalidate on GEN8+. When we modify
1209 * the page table structures, we mark them dirty so that
1210 * context switching/execlist queuing code takes extra steps
1211 * to ensure that tlbs are flushed.
1212 */
1213static void mark_tlbs_dirty(struct i915_hw_ppgtt *ppgtt)
1214{
1215 ppgtt->pd_dirty_rings = INTEL_INFO(ppgtt->base.dev)->ring_mask;
1216}
1217
Michel Thierry762d9932015-07-30 11:05:29 +01001218static int gen8_alloc_va_range_3lvl(struct i915_address_space *vm,
1219 struct i915_page_directory_pointer *pdp,
1220 uint64_t start,
1221 uint64_t length)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001222{
Michel Thierrye5815a22015-04-08 12:13:32 +01001223 struct i915_hw_ppgtt *ppgtt =
1224 container_of(vm, struct i915_hw_ppgtt, base);
Michał Winiarski3a41a052015-09-03 19:22:18 +02001225 unsigned long *new_page_dirs, *new_page_tables;
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001226 struct drm_device *dev = vm->dev;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001227 struct i915_page_directory *pd;
Michel Thierry33c88192015-04-08 12:13:33 +01001228 const uint64_t orig_start = start;
1229 const uint64_t orig_length = length;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001230 uint64_t temp;
1231 uint32_t pdpe;
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001232 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001233 int ret;
1234
Michel Thierryd7b26332015-04-08 12:13:34 +01001235 /* Wrap is never okay since we can only represent 48b, and we don't
1236 * actually use the other side of the canonical address space.
1237 */
1238 if (WARN_ON(start + length < start))
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001239 return -ENODEV;
1240
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001241 if (WARN_ON(start + length > vm->total))
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001242 return -ENODEV;
Michel Thierryd7b26332015-04-08 12:13:34 +01001243
Michel Thierry6ac18502015-07-29 17:23:46 +01001244 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001245 if (ret)
1246 return ret;
1247
Michel Thierryd7b26332015-04-08 12:13:34 +01001248 /* Do the allocations first so we can easily bail out */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001249 ret = gen8_ppgtt_alloc_page_directories(vm, pdp, start, length,
1250 new_page_dirs);
Michel Thierryd7b26332015-04-08 12:13:34 +01001251 if (ret) {
Michał Winiarski3a41a052015-09-03 19:22:18 +02001252 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Michel Thierryd7b26332015-04-08 12:13:34 +01001253 return ret;
1254 }
1255
1256 /* For every page directory referenced, allocate page tables */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001257 gen8_for_each_pdpe(pd, pdp, start, length, temp, pdpe) {
1258 ret = gen8_ppgtt_alloc_pagetabs(vm, pd, start, length,
Michał Winiarski3a41a052015-09-03 19:22:18 +02001259 new_page_tables + pdpe * BITS_TO_LONGS(I915_PDES));
Michel Thierry5441f0c2015-04-08 12:13:28 +01001260 if (ret)
1261 goto err_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001262 }
1263
Michel Thierry33c88192015-04-08 12:13:33 +01001264 start = orig_start;
1265 length = orig_length;
1266
Michel Thierryd7b26332015-04-08 12:13:34 +01001267 /* Allocations have completed successfully, so set the bitmaps, and do
1268 * the mappings. */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001269 gen8_for_each_pdpe(pd, pdp, start, length, temp, pdpe) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001270 gen8_pde_t *const page_directory = kmap_px(pd);
Michel Thierry33c88192015-04-08 12:13:33 +01001271 struct i915_page_table *pt;
Michel Thierry09120d42015-07-29 17:23:45 +01001272 uint64_t pd_len = length;
Michel Thierry33c88192015-04-08 12:13:33 +01001273 uint64_t pd_start = start;
1274 uint32_t pde;
1275
Michel Thierryd7b26332015-04-08 12:13:34 +01001276 /* Every pd should be allocated, we just did that above. */
1277 WARN_ON(!pd);
1278
1279 gen8_for_each_pde(pt, pd, pd_start, pd_len, temp, pde) {
1280 /* Same reasoning as pd */
1281 WARN_ON(!pt);
1282 WARN_ON(!pd_len);
1283 WARN_ON(!gen8_pte_count(pd_start, pd_len));
1284
1285 /* Set our used ptes within the page table */
1286 bitmap_set(pt->used_ptes,
1287 gen8_pte_index(pd_start),
1288 gen8_pte_count(pd_start, pd_len));
1289
1290 /* Our pde is now pointing to the pagetable, pt */
Mika Kuoppala966082c2015-06-25 18:35:19 +03001291 __set_bit(pde, pd->used_pdes);
Michel Thierryd7b26332015-04-08 12:13:34 +01001292
1293 /* Map the PDE to the page table */
Mika Kuoppalafe36f552015-06-25 18:35:16 +03001294 page_directory[pde] = gen8_pde_encode(px_dma(pt),
1295 I915_CACHE_LLC);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001296 trace_i915_page_table_entry_map(&ppgtt->base, pde, pt,
1297 gen8_pte_index(start),
1298 gen8_pte_count(start, length),
1299 GEN8_PTES);
Michel Thierryd7b26332015-04-08 12:13:34 +01001300
1301 /* NB: We haven't yet mapped ptes to pages. At this
1302 * point we're still relying on insert_entries() */
Michel Thierry33c88192015-04-08 12:13:33 +01001303 }
Michel Thierryd7b26332015-04-08 12:13:34 +01001304
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001305 kunmap_px(ppgtt, page_directory);
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001306 __set_bit(pdpe, pdp->used_pdpes);
Michel Thierry762d9932015-07-30 11:05:29 +01001307 gen8_setup_page_directory(ppgtt, pdp, pd, pdpe);
Michel Thierry33c88192015-04-08 12:13:33 +01001308 }
1309
Michał Winiarski3a41a052015-09-03 19:22:18 +02001310 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Mika Kuoppala5b7e4c9c2015-06-25 18:35:03 +03001311 mark_tlbs_dirty(ppgtt);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001312 return 0;
1313
1314err_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001315 while (pdpe--) {
Michał Winiarski3a41a052015-09-03 19:22:18 +02001316 for_each_set_bit(temp, new_page_tables + pdpe *
1317 BITS_TO_LONGS(I915_PDES), I915_PDES)
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001318 free_pt(dev, pdp->page_directory[pdpe]->page_table[temp]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001319 }
1320
Michel Thierry6ac18502015-07-29 17:23:46 +01001321 for_each_set_bit(pdpe, new_page_dirs, pdpes)
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001322 free_pd(dev, pdp->page_directory[pdpe]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001323
Michał Winiarski3a41a052015-09-03 19:22:18 +02001324 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Mika Kuoppala5b7e4c9c2015-06-25 18:35:03 +03001325 mark_tlbs_dirty(ppgtt);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001326 return ret;
1327}
1328
Michel Thierry762d9932015-07-30 11:05:29 +01001329static int gen8_alloc_va_range_4lvl(struct i915_address_space *vm,
1330 struct i915_pml4 *pml4,
1331 uint64_t start,
1332 uint64_t length)
1333{
1334 DECLARE_BITMAP(new_pdps, GEN8_PML4ES_PER_PML4);
1335 struct i915_hw_ppgtt *ppgtt =
1336 container_of(vm, struct i915_hw_ppgtt, base);
1337 struct i915_page_directory_pointer *pdp;
1338 uint64_t temp, pml4e;
1339 int ret = 0;
1340
1341 /* Do the pml4 allocations first, so we don't need to track the newly
1342 * allocated tables below the pdp */
1343 bitmap_zero(new_pdps, GEN8_PML4ES_PER_PML4);
1344
1345 /* The pagedirectory and pagetable allocations are done in the shared 3
1346 * and 4 level code. Just allocate the pdps.
1347 */
1348 ret = gen8_ppgtt_alloc_page_dirpointers(vm, pml4, start, length,
1349 new_pdps);
1350 if (ret)
1351 return ret;
1352
1353 WARN(bitmap_weight(new_pdps, GEN8_PML4ES_PER_PML4) > 2,
1354 "The allocation has spanned more than 512GB. "
1355 "It is highly likely this is incorrect.");
1356
1357 gen8_for_each_pml4e(pdp, pml4, start, length, temp, pml4e) {
1358 WARN_ON(!pdp);
1359
1360 ret = gen8_alloc_va_range_3lvl(vm, pdp, start, length);
1361 if (ret)
1362 goto err_out;
1363
1364 gen8_setup_page_directory_pointer(ppgtt, pml4, pdp, pml4e);
1365 }
1366
1367 bitmap_or(pml4->used_pml4es, new_pdps, pml4->used_pml4es,
1368 GEN8_PML4ES_PER_PML4);
1369
1370 return 0;
1371
1372err_out:
1373 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
1374 gen8_ppgtt_cleanup_3lvl(vm->dev, pml4->pdps[pml4e]);
1375
1376 return ret;
1377}
1378
1379static int gen8_alloc_va_range(struct i915_address_space *vm,
1380 uint64_t start, uint64_t length)
1381{
1382 struct i915_hw_ppgtt *ppgtt =
1383 container_of(vm, struct i915_hw_ppgtt, base);
1384
1385 if (USES_FULL_48BIT_PPGTT(vm->dev))
1386 return gen8_alloc_va_range_4lvl(vm, &ppgtt->pml4, start, length);
1387 else
1388 return gen8_alloc_va_range_3lvl(vm, &ppgtt->pdp, start, length);
1389}
1390
Michel Thierryea91e402015-07-29 17:23:57 +01001391static void gen8_dump_pdp(struct i915_page_directory_pointer *pdp,
1392 uint64_t start, uint64_t length,
1393 gen8_pte_t scratch_pte,
1394 struct seq_file *m)
1395{
1396 struct i915_page_directory *pd;
1397 uint64_t temp;
1398 uint32_t pdpe;
1399
1400 gen8_for_each_pdpe(pd, pdp, start, length, temp, pdpe) {
1401 struct i915_page_table *pt;
1402 uint64_t pd_len = length;
1403 uint64_t pd_start = start;
1404 uint32_t pde;
1405
1406 if (!test_bit(pdpe, pdp->used_pdpes))
1407 continue;
1408
1409 seq_printf(m, "\tPDPE #%d\n", pdpe);
1410 gen8_for_each_pde(pt, pd, pd_start, pd_len, temp, pde) {
1411 uint32_t pte;
1412 gen8_pte_t *pt_vaddr;
1413
1414 if (!test_bit(pde, pd->used_pdes))
1415 continue;
1416
1417 pt_vaddr = kmap_px(pt);
1418 for (pte = 0; pte < GEN8_PTES; pte += 4) {
1419 uint64_t va =
1420 (pdpe << GEN8_PDPE_SHIFT) |
1421 (pde << GEN8_PDE_SHIFT) |
1422 (pte << GEN8_PTE_SHIFT);
1423 int i;
1424 bool found = false;
1425
1426 for (i = 0; i < 4; i++)
1427 if (pt_vaddr[pte + i] != scratch_pte)
1428 found = true;
1429 if (!found)
1430 continue;
1431
1432 seq_printf(m, "\t\t0x%llx [%03d,%03d,%04d]: =", va, pdpe, pde, pte);
1433 for (i = 0; i < 4; i++) {
1434 if (pt_vaddr[pte + i] != scratch_pte)
1435 seq_printf(m, " %llx", pt_vaddr[pte + i]);
1436 else
1437 seq_puts(m, " SCRATCH ");
1438 }
1439 seq_puts(m, "\n");
1440 }
1441 /* don't use kunmap_px, it could trigger
1442 * an unnecessary flush.
1443 */
1444 kunmap_atomic(pt_vaddr);
1445 }
1446 }
1447}
1448
1449static void gen8_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1450{
1451 struct i915_address_space *vm = &ppgtt->base;
1452 uint64_t start = ppgtt->base.start;
1453 uint64_t length = ppgtt->base.total;
1454 gen8_pte_t scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
1455 I915_CACHE_LLC, true);
1456
1457 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
1458 gen8_dump_pdp(&ppgtt->pdp, start, length, scratch_pte, m);
1459 } else {
1460 uint64_t templ4, pml4e;
1461 struct i915_pml4 *pml4 = &ppgtt->pml4;
1462 struct i915_page_directory_pointer *pdp;
1463
1464 gen8_for_each_pml4e(pdp, pml4, start, length, templ4, pml4e) {
1465 if (!test_bit(pml4e, pml4->used_pml4es))
1466 continue;
1467
1468 seq_printf(m, " PML4E #%llu\n", pml4e);
1469 gen8_dump_pdp(pdp, start, length, scratch_pte, m);
1470 }
1471 }
1472}
1473
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001474static int gen8_preallocate_top_level_pdps(struct i915_hw_ppgtt *ppgtt)
1475{
Michał Winiarski3a41a052015-09-03 19:22:18 +02001476 unsigned long *new_page_dirs, *new_page_tables;
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001477 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
1478 int ret;
1479
1480 /* We allocate temp bitmap for page tables for no gain
1481 * but as this is for init only, lets keep the things simple
1482 */
1483 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
1484 if (ret)
1485 return ret;
1486
1487 /* Allocate for all pdps regardless of how the ppgtt
1488 * was defined.
1489 */
1490 ret = gen8_ppgtt_alloc_page_directories(&ppgtt->base, &ppgtt->pdp,
1491 0, 1ULL << 32,
1492 new_page_dirs);
1493 if (!ret)
1494 *ppgtt->pdp.used_pdpes = *new_page_dirs;
1495
Michał Winiarski3a41a052015-09-03 19:22:18 +02001496 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001497
1498 return ret;
1499}
1500
Daniel Vettereb0b44a2015-03-18 14:47:59 +01001501/*
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001502 * GEN8 legacy ppgtt programming is accomplished through a max 4 PDP registers
1503 * with a net effect resembling a 2-level page table in normal x86 terms. Each
1504 * PDP represents 1GB of memory 4 * 512 * 512 * 4096 = 4GB legacy 32b address
1505 * space.
Ben Widawsky37aca442013-11-04 20:47:32 -08001506 *
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001507 */
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001508static int gen8_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky37aca442013-11-04 20:47:32 -08001509{
Mika Kuoppala8776f022015-06-30 18:16:40 +03001510 int ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001511
Mika Kuoppala8776f022015-06-30 18:16:40 +03001512 ret = gen8_init_scratch(&ppgtt->base);
1513 if (ret)
1514 return ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001515
Michel Thierryd7b26332015-04-08 12:13:34 +01001516 ppgtt->base.start = 0;
Michel Thierryd7b26332015-04-08 12:13:34 +01001517 ppgtt->base.cleanup = gen8_ppgtt_cleanup;
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001518 ppgtt->base.allocate_va_range = gen8_alloc_va_range;
Michel Thierryd7b26332015-04-08 12:13:34 +01001519 ppgtt->base.insert_entries = gen8_ppgtt_insert_entries;
Daniel Vetterc7e16f22015-04-14 17:35:11 +02001520 ppgtt->base.clear_range = gen8_ppgtt_clear_range;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02001521 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
1522 ppgtt->base.bind_vma = ppgtt_bind_vma;
Michel Thierryea91e402015-07-29 17:23:57 +01001523 ppgtt->debug_dump = gen8_dump_ppgtt;
Michel Thierryd7b26332015-04-08 12:13:34 +01001524
Michel Thierry762d9932015-07-30 11:05:29 +01001525 if (USES_FULL_48BIT_PPGTT(ppgtt->base.dev)) {
1526 ret = setup_px(ppgtt->base.dev, &ppgtt->pml4);
1527 if (ret)
1528 goto free_scratch;
Michel Thierry6ac18502015-07-29 17:23:46 +01001529
Michel Thierry69ab76f2015-07-29 17:23:55 +01001530 gen8_initialize_pml4(&ppgtt->base, &ppgtt->pml4);
1531
Michel Thierry762d9932015-07-30 11:05:29 +01001532 ppgtt->base.total = 1ULL << 48;
Michel Thierry2dba3232015-07-30 11:06:23 +01001533 ppgtt->switch_mm = gen8_48b_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001534 } else {
Michel Thierry25f50332015-08-07 17:40:19 +01001535 ret = __pdp_init(ppgtt->base.dev, &ppgtt->pdp);
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001536 if (ret)
1537 goto free_scratch;
1538
1539 ppgtt->base.total = 1ULL << 32;
Michel Thierry2dba3232015-07-30 11:06:23 +01001540 ppgtt->switch_mm = gen8_legacy_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001541 trace_i915_page_directory_pointer_entry_alloc(&ppgtt->base,
1542 0, 0,
1543 GEN8_PML4E_SHIFT);
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001544
1545 if (intel_vgpu_active(ppgtt->base.dev)) {
1546 ret = gen8_preallocate_top_level_pdps(ppgtt);
1547 if (ret)
1548 goto free_scratch;
1549 }
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001550 }
Michel Thierry6ac18502015-07-29 17:23:46 +01001551
Zhiyuan Lv650da342015-08-28 15:41:18 +08001552 if (intel_vgpu_active(ppgtt->base.dev))
1553 gen8_ppgtt_notify_vgt(ppgtt, true);
1554
Michel Thierryd7b26332015-04-08 12:13:34 +01001555 return 0;
Michel Thierry6ac18502015-07-29 17:23:46 +01001556
1557free_scratch:
1558 gen8_free_scratch(&ppgtt->base);
1559 return ret;
Michel Thierryd7b26332015-04-08 12:13:34 +01001560}
1561
Ben Widawsky87d60b62013-12-06 14:11:29 -08001562static void gen6_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1563{
Ben Widawsky87d60b62013-12-06 14:11:29 -08001564 struct i915_address_space *vm = &ppgtt->base;
Michel Thierry09942c62015-04-08 12:13:30 +01001565 struct i915_page_table *unused;
Michel Thierry07749ef2015-03-16 16:00:54 +00001566 gen6_pte_t scratch_pte;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001567 uint32_t pd_entry;
Michel Thierry09942c62015-04-08 12:13:30 +01001568 uint32_t pte, pde, temp;
1569 uint32_t start = ppgtt->base.start, length = ppgtt->base.total;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001570
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001571 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1572 I915_CACHE_LLC, true, 0);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001573
Michel Thierry09942c62015-04-08 12:13:30 +01001574 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001575 u32 expected;
Michel Thierry07749ef2015-03-16 16:00:54 +00001576 gen6_pte_t *pt_vaddr;
Mika Kuoppala567047b2015-06-25 18:35:12 +03001577 const dma_addr_t pt_addr = px_dma(ppgtt->pd.page_table[pde]);
Michel Thierry09942c62015-04-08 12:13:30 +01001578 pd_entry = readl(ppgtt->pd_addr + pde);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001579 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID);
1580
1581 if (pd_entry != expected)
1582 seq_printf(m, "\tPDE #%d mismatch: Actual PDE: %x Expected PDE: %x\n",
1583 pde,
1584 pd_entry,
1585 expected);
1586 seq_printf(m, "\tPDE: %x\n", pd_entry);
1587
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001588 pt_vaddr = kmap_px(ppgtt->pd.page_table[pde]);
1589
Michel Thierry07749ef2015-03-16 16:00:54 +00001590 for (pte = 0; pte < GEN6_PTES; pte+=4) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001591 unsigned long va =
Michel Thierry07749ef2015-03-16 16:00:54 +00001592 (pde * PAGE_SIZE * GEN6_PTES) +
Ben Widawsky87d60b62013-12-06 14:11:29 -08001593 (pte * PAGE_SIZE);
1594 int i;
1595 bool found = false;
1596 for (i = 0; i < 4; i++)
1597 if (pt_vaddr[pte + i] != scratch_pte)
1598 found = true;
1599 if (!found)
1600 continue;
1601
1602 seq_printf(m, "\t\t0x%lx [%03d,%04d]: =", va, pde, pte);
1603 for (i = 0; i < 4; i++) {
1604 if (pt_vaddr[pte + i] != scratch_pte)
1605 seq_printf(m, " %08x", pt_vaddr[pte + i]);
1606 else
1607 seq_puts(m, " SCRATCH ");
1608 }
1609 seq_puts(m, "\n");
1610 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001611 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001612 }
1613}
1614
Ben Widawsky678d96f2015-03-16 16:00:56 +00001615/* Write pde (index) from the page directory @pd to the page table @pt */
Michel Thierryec565b32015-04-08 12:13:23 +01001616static void gen6_write_pde(struct i915_page_directory *pd,
1617 const int pde, struct i915_page_table *pt)
Ben Widawsky61973492013-04-08 18:43:54 -07001618{
Ben Widawsky678d96f2015-03-16 16:00:56 +00001619 /* Caller needs to make sure the write completes if necessary */
1620 struct i915_hw_ppgtt *ppgtt =
1621 container_of(pd, struct i915_hw_ppgtt, pd);
1622 u32 pd_entry;
Ben Widawsky61973492013-04-08 18:43:54 -07001623
Mika Kuoppala567047b2015-06-25 18:35:12 +03001624 pd_entry = GEN6_PDE_ADDR_ENCODE(px_dma(pt));
Ben Widawsky678d96f2015-03-16 16:00:56 +00001625 pd_entry |= GEN6_PDE_VALID;
Ben Widawsky61973492013-04-08 18:43:54 -07001626
Ben Widawsky678d96f2015-03-16 16:00:56 +00001627 writel(pd_entry, ppgtt->pd_addr + pde);
1628}
Ben Widawsky61973492013-04-08 18:43:54 -07001629
Ben Widawsky678d96f2015-03-16 16:00:56 +00001630/* Write all the page tables found in the ppgtt structure to incrementing page
1631 * directories. */
1632static void gen6_write_page_range(struct drm_i915_private *dev_priv,
Michel Thierryec565b32015-04-08 12:13:23 +01001633 struct i915_page_directory *pd,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001634 uint32_t start, uint32_t length)
1635{
Michel Thierryec565b32015-04-08 12:13:23 +01001636 struct i915_page_table *pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001637 uint32_t pde, temp;
1638
1639 gen6_for_each_pde(pt, pd, start, length, temp, pde)
1640 gen6_write_pde(pd, pde, pt);
1641
1642 /* Make sure write is complete before other code can use this page
1643 * table. Also require for WC mapped PTEs */
1644 readl(dev_priv->gtt.gsm);
Ben Widawsky3e302542013-04-23 23:15:32 -07001645}
1646
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001647static uint32_t get_pd_offset(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky3e302542013-04-23 23:15:32 -07001648{
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001649 BUG_ON(ppgtt->pd.base.ggtt_offset & 0x3f);
Ben Widawsky3e302542013-04-23 23:15:32 -07001650
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001651 return (ppgtt->pd.base.ggtt_offset / 64) << 16;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001652}
Ben Widawsky61973492013-04-08 18:43:54 -07001653
Ben Widawsky90252e52013-12-06 14:11:12 -08001654static int hsw_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001655 struct drm_i915_gem_request *req)
Ben Widawsky90252e52013-12-06 14:11:12 -08001656{
John Harrisone85b26d2015-05-29 17:43:56 +01001657 struct intel_engine_cs *ring = req->ring;
Ben Widawsky90252e52013-12-06 14:11:12 -08001658 int ret;
Ben Widawsky61973492013-04-08 18:43:54 -07001659
Ben Widawsky90252e52013-12-06 14:11:12 -08001660 /* NB: TLBs must be flushed and invalidated before a switch */
John Harrisona84c3ae2015-05-29 17:43:57 +01001661 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001662 if (ret)
1663 return ret;
1664
John Harrison5fb9de12015-05-29 17:44:07 +01001665 ret = intel_ring_begin(req, 6);
Ben Widawsky90252e52013-12-06 14:11:12 -08001666 if (ret)
1667 return ret;
1668
1669 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1670 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
1671 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1672 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
1673 intel_ring_emit(ring, get_pd_offset(ppgtt));
1674 intel_ring_emit(ring, MI_NOOP);
1675 intel_ring_advance(ring);
1676
1677 return 0;
1678}
1679
Yu Zhang71ba2d62015-02-10 19:05:54 +08001680static int vgpu_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001681 struct drm_i915_gem_request *req)
Yu Zhang71ba2d62015-02-10 19:05:54 +08001682{
John Harrisone85b26d2015-05-29 17:43:56 +01001683 struct intel_engine_cs *ring = req->ring;
Yu Zhang71ba2d62015-02-10 19:05:54 +08001684 struct drm_i915_private *dev_priv = to_i915(ppgtt->base.dev);
1685
1686 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1687 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1688 return 0;
1689}
1690
Ben Widawsky48a10382013-12-06 14:11:11 -08001691static int gen7_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001692 struct drm_i915_gem_request *req)
Ben Widawsky48a10382013-12-06 14:11:11 -08001693{
John Harrisone85b26d2015-05-29 17:43:56 +01001694 struct intel_engine_cs *ring = req->ring;
Ben Widawsky48a10382013-12-06 14:11:11 -08001695 int ret;
1696
Ben Widawsky48a10382013-12-06 14:11:11 -08001697 /* NB: TLBs must be flushed and invalidated before a switch */
John Harrisona84c3ae2015-05-29 17:43:57 +01001698 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky48a10382013-12-06 14:11:11 -08001699 if (ret)
1700 return ret;
1701
John Harrison5fb9de12015-05-29 17:44:07 +01001702 ret = intel_ring_begin(req, 6);
Ben Widawsky48a10382013-12-06 14:11:11 -08001703 if (ret)
1704 return ret;
1705
1706 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1707 intel_ring_emit(ring, RING_PP_DIR_DCLV(ring));
1708 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1709 intel_ring_emit(ring, RING_PP_DIR_BASE(ring));
1710 intel_ring_emit(ring, get_pd_offset(ppgtt));
1711 intel_ring_emit(ring, MI_NOOP);
1712 intel_ring_advance(ring);
1713
Ben Widawsky90252e52013-12-06 14:11:12 -08001714 /* XXX: RCS is the only one to auto invalidate the TLBs? */
1715 if (ring->id != RCS) {
John Harrisona84c3ae2015-05-29 17:43:57 +01001716 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001717 if (ret)
1718 return ret;
1719 }
1720
Ben Widawsky48a10382013-12-06 14:11:11 -08001721 return 0;
1722}
1723
Ben Widawskyeeb94882013-12-06 14:11:10 -08001724static int gen6_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001725 struct drm_i915_gem_request *req)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001726{
John Harrisone85b26d2015-05-29 17:43:56 +01001727 struct intel_engine_cs *ring = req->ring;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001728 struct drm_device *dev = ppgtt->base.dev;
1729 struct drm_i915_private *dev_priv = dev->dev_private;
1730
Ben Widawsky48a10382013-12-06 14:11:11 -08001731
Ben Widawskyeeb94882013-12-06 14:11:10 -08001732 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1733 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1734
1735 POSTING_READ(RING_PP_DIR_DCLV(ring));
1736
1737 return 0;
1738}
1739
Daniel Vetter82460d92014-08-06 20:19:53 +02001740static void gen8_ppgtt_enable(struct drm_device *dev)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001741{
Ben Widawskyeeb94882013-12-06 14:11:10 -08001742 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001743 struct intel_engine_cs *ring;
Daniel Vetter82460d92014-08-06 20:19:53 +02001744 int j;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001745
1746 for_each_ring(ring, dev_priv, j) {
Michel Thierry2dba3232015-07-30 11:06:23 +01001747 u32 four_level = USES_FULL_48BIT_PPGTT(dev) ? GEN8_GFX_PPGTT_48B : 0;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001748 I915_WRITE(RING_MODE_GEN7(ring),
Michel Thierry2dba3232015-07-30 11:06:23 +01001749 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE | four_level));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001750 }
Ben Widawskyeeb94882013-12-06 14:11:10 -08001751}
1752
Daniel Vetter82460d92014-08-06 20:19:53 +02001753static void gen7_ppgtt_enable(struct drm_device *dev)
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001754{
Jani Nikula50227e12014-03-31 14:27:21 +03001755 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001756 struct intel_engine_cs *ring;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001757 uint32_t ecochk, ecobits;
1758 int i;
1759
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001760 ecobits = I915_READ(GAC_ECO_BITS);
1761 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
1762
1763 ecochk = I915_READ(GAM_ECOCHK);
1764 if (IS_HASWELL(dev)) {
1765 ecochk |= ECOCHK_PPGTT_WB_HSW;
1766 } else {
1767 ecochk |= ECOCHK_PPGTT_LLC_IVB;
1768 ecochk &= ~ECOCHK_PPGTT_GFDT_IVB;
1769 }
1770 I915_WRITE(GAM_ECOCHK, ecochk);
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001771
Ben Widawsky61973492013-04-08 18:43:54 -07001772 for_each_ring(ring, dev_priv, i) {
Ben Widawskyeeb94882013-12-06 14:11:10 -08001773 /* GFX_MODE is per-ring on gen7+ */
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001774 I915_WRITE(RING_MODE_GEN7(ring),
1775 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001776 }
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001777}
1778
Daniel Vetter82460d92014-08-06 20:19:53 +02001779static void gen6_ppgtt_enable(struct drm_device *dev)
Ben Widawsky61973492013-04-08 18:43:54 -07001780{
Jani Nikula50227e12014-03-31 14:27:21 +03001781 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001782 uint32_t ecochk, gab_ctl, ecobits;
Ben Widawsky61973492013-04-08 18:43:54 -07001783
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001784 ecobits = I915_READ(GAC_ECO_BITS);
1785 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_SNB_BIT |
1786 ECOBITS_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001787
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001788 gab_ctl = I915_READ(GAB_CTL);
1789 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
Ben Widawsky61973492013-04-08 18:43:54 -07001790
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001791 ecochk = I915_READ(GAM_ECOCHK);
1792 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT | ECOCHK_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001793
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001794 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001795}
1796
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001797/* PPGTT support for Sandybdrige/Gen6 and later */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001798static void gen6_ppgtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08001799 uint64_t start,
1800 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07001801 bool use_scratch)
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001802{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001803 struct i915_hw_ppgtt *ppgtt =
1804 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +00001805 gen6_pte_t *pt_vaddr, scratch_pte;
Ben Widawsky782f1492014-02-20 11:50:33 -08001806 unsigned first_entry = start >> PAGE_SHIFT;
1807 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001808 unsigned act_pt = first_entry / GEN6_PTES;
1809 unsigned first_pte = first_entry % GEN6_PTES;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001810 unsigned last_pte, i;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001811
Mika Kuoppalac114f762015-06-25 18:35:13 +03001812 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1813 I915_CACHE_LLC, true, 0);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001814
Daniel Vetter7bddb012012-02-09 17:15:47 +01001815 while (num_entries) {
1816 last_pte = first_pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +00001817 if (last_pte > GEN6_PTES)
1818 last_pte = GEN6_PTES;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001819
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001820 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001821
1822 for (i = first_pte; i < last_pte; i++)
1823 pt_vaddr[i] = scratch_pte;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001824
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001825 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001826
Daniel Vetter7bddb012012-02-09 17:15:47 +01001827 num_entries -= last_pte - first_pte;
1828 first_pte = 0;
Daniel Vettera15326a2013-03-19 23:48:39 +01001829 act_pt++;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001830 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001831}
1832
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001833static void gen6_ppgtt_insert_entries(struct i915_address_space *vm,
Daniel Vetterdef886c2013-01-24 14:44:56 -08001834 struct sg_table *pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08001835 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05301836 enum i915_cache_level cache_level, u32 flags)
Daniel Vetterdef886c2013-01-24 14:44:56 -08001837{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001838 struct i915_hw_ppgtt *ppgtt =
1839 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +00001840 gen6_pte_t *pt_vaddr;
Ben Widawsky782f1492014-02-20 11:50:33 -08001841 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001842 unsigned act_pt = first_entry / GEN6_PTES;
1843 unsigned act_pte = first_entry % GEN6_PTES;
Imre Deak6e995e22013-02-18 19:28:04 +02001844 struct sg_page_iter sg_iter;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001845
Chris Wilsoncc797142013-12-31 15:50:30 +00001846 pt_vaddr = NULL;
Imre Deak6e995e22013-02-18 19:28:04 +02001847 for_each_sg_page(pages->sgl, &sg_iter, pages->nents, 0) {
Chris Wilsoncc797142013-12-31 15:50:30 +00001848 if (pt_vaddr == NULL)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001849 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001850
Chris Wilsoncc797142013-12-31 15:50:30 +00001851 pt_vaddr[act_pte] =
1852 vm->pte_encode(sg_page_iter_dma_address(&sg_iter),
Akash Goel24f3a8c2014-06-17 10:59:42 +05301853 cache_level, true, flags);
1854
Michel Thierry07749ef2015-03-16 16:00:54 +00001855 if (++act_pte == GEN6_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001856 kunmap_px(ppgtt, pt_vaddr);
Chris Wilsoncc797142013-12-31 15:50:30 +00001857 pt_vaddr = NULL;
Daniel Vettera15326a2013-03-19 23:48:39 +01001858 act_pt++;
Imre Deak6e995e22013-02-18 19:28:04 +02001859 act_pte = 0;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001860 }
Daniel Vetterdef886c2013-01-24 14:44:56 -08001861 }
Chris Wilsoncc797142013-12-31 15:50:30 +00001862 if (pt_vaddr)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001863 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001864}
1865
Ben Widawsky678d96f2015-03-16 16:00:56 +00001866static int gen6_alloc_va_range(struct i915_address_space *vm,
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001867 uint64_t start_in, uint64_t length_in)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001868{
Michel Thierry4933d512015-03-24 15:46:22 +00001869 DECLARE_BITMAP(new_page_tables, I915_PDES);
1870 struct drm_device *dev = vm->dev;
1871 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001872 struct i915_hw_ppgtt *ppgtt =
1873 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierryec565b32015-04-08 12:13:23 +01001874 struct i915_page_table *pt;
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001875 uint32_t start, length, start_save, length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001876 uint32_t pde, temp;
Michel Thierry4933d512015-03-24 15:46:22 +00001877 int ret;
1878
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001879 if (WARN_ON(start_in + length_in > ppgtt->base.total))
1880 return -ENODEV;
1881
1882 start = start_save = start_in;
1883 length = length_save = length_in;
Michel Thierry4933d512015-03-24 15:46:22 +00001884
1885 bitmap_zero(new_page_tables, I915_PDES);
1886
1887 /* The allocation is done in two stages so that we can bail out with
1888 * minimal amount of pain. The first stage finds new page tables that
1889 * need allocation. The second stage marks use ptes within the page
1890 * tables.
1891 */
1892 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001893 if (pt != vm->scratch_pt) {
Michel Thierry4933d512015-03-24 15:46:22 +00001894 WARN_ON(bitmap_empty(pt->used_ptes, GEN6_PTES));
1895 continue;
1896 }
1897
1898 /* We've already allocated a page table */
1899 WARN_ON(!bitmap_empty(pt->used_ptes, GEN6_PTES));
1900
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001901 pt = alloc_pt(dev);
Michel Thierry4933d512015-03-24 15:46:22 +00001902 if (IS_ERR(pt)) {
1903 ret = PTR_ERR(pt);
1904 goto unwind_out;
1905 }
1906
1907 gen6_initialize_pt(vm, pt);
1908
1909 ppgtt->pd.page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001910 __set_bit(pde, new_page_tables);
Michel Thierry72744cb2015-03-24 15:46:23 +00001911 trace_i915_page_table_entry_alloc(vm, pde, start, GEN6_PDE_SHIFT);
Michel Thierry4933d512015-03-24 15:46:22 +00001912 }
1913
1914 start = start_save;
1915 length = length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001916
1917 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
1918 DECLARE_BITMAP(tmp_bitmap, GEN6_PTES);
1919
1920 bitmap_zero(tmp_bitmap, GEN6_PTES);
1921 bitmap_set(tmp_bitmap, gen6_pte_index(start),
1922 gen6_pte_count(start, length));
1923
Mika Kuoppala966082c2015-06-25 18:35:19 +03001924 if (__test_and_clear_bit(pde, new_page_tables))
Michel Thierry4933d512015-03-24 15:46:22 +00001925 gen6_write_pde(&ppgtt->pd, pde, pt);
1926
Michel Thierry72744cb2015-03-24 15:46:23 +00001927 trace_i915_page_table_entry_map(vm, pde, pt,
1928 gen6_pte_index(start),
1929 gen6_pte_count(start, length),
1930 GEN6_PTES);
Michel Thierry4933d512015-03-24 15:46:22 +00001931 bitmap_or(pt->used_ptes, tmp_bitmap, pt->used_ptes,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001932 GEN6_PTES);
1933 }
1934
Michel Thierry4933d512015-03-24 15:46:22 +00001935 WARN_ON(!bitmap_empty(new_page_tables, I915_PDES));
1936
1937 /* Make sure write is complete before other code can use this page
1938 * table. Also require for WC mapped PTEs */
1939 readl(dev_priv->gtt.gsm);
1940
Ben Widawsky563222a2015-03-19 12:53:28 +00001941 mark_tlbs_dirty(ppgtt);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001942 return 0;
Michel Thierry4933d512015-03-24 15:46:22 +00001943
1944unwind_out:
1945 for_each_set_bit(pde, new_page_tables, I915_PDES) {
Michel Thierryec565b32015-04-08 12:13:23 +01001946 struct i915_page_table *pt = ppgtt->pd.page_table[pde];
Michel Thierry4933d512015-03-24 15:46:22 +00001947
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001948 ppgtt->pd.page_table[pde] = vm->scratch_pt;
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001949 free_pt(vm->dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001950 }
1951
1952 mark_tlbs_dirty(ppgtt);
1953 return ret;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001954}
1955
Mika Kuoppala8776f022015-06-30 18:16:40 +03001956static int gen6_init_scratch(struct i915_address_space *vm)
1957{
1958 struct drm_device *dev = vm->dev;
1959
1960 vm->scratch_page = alloc_scratch_page(dev);
1961 if (IS_ERR(vm->scratch_page))
1962 return PTR_ERR(vm->scratch_page);
1963
1964 vm->scratch_pt = alloc_pt(dev);
1965 if (IS_ERR(vm->scratch_pt)) {
1966 free_scratch_page(dev, vm->scratch_page);
1967 return PTR_ERR(vm->scratch_pt);
1968 }
1969
1970 gen6_initialize_pt(vm, vm->scratch_pt);
1971
1972 return 0;
1973}
1974
1975static void gen6_free_scratch(struct i915_address_space *vm)
1976{
1977 struct drm_device *dev = vm->dev;
1978
1979 free_pt(dev, vm->scratch_pt);
1980 free_scratch_page(dev, vm->scratch_page);
1981}
1982
Daniel Vetter061dd492015-04-14 17:35:13 +02001983static void gen6_ppgtt_cleanup(struct i915_address_space *vm)
Ben Widawskya00d8252014-02-19 22:05:48 -08001984{
Daniel Vetter061dd492015-04-14 17:35:13 +02001985 struct i915_hw_ppgtt *ppgtt =
1986 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry09942c62015-04-08 12:13:30 +01001987 struct i915_page_table *pt;
1988 uint32_t pde;
Daniel Vetter3440d262013-01-24 13:49:56 -08001989
Daniel Vetter061dd492015-04-14 17:35:13 +02001990 drm_mm_remove_node(&ppgtt->node);
1991
Michel Thierry09942c62015-04-08 12:13:30 +01001992 gen6_for_all_pdes(pt, ppgtt, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001993 if (pt != vm->scratch_pt)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001994 free_pt(ppgtt->base.dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001995 }
1996
Mika Kuoppala8776f022015-06-30 18:16:40 +03001997 gen6_free_scratch(vm);
Daniel Vetter3440d262013-01-24 13:49:56 -08001998}
1999
Ben Widawskyb1465202014-02-19 22:05:49 -08002000static int gen6_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08002001{
Mika Kuoppala8776f022015-06-30 18:16:40 +03002002 struct i915_address_space *vm = &ppgtt->base;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002003 struct drm_device *dev = ppgtt->base.dev;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002004 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskye3cc1992013-12-06 14:11:08 -08002005 bool retried = false;
Ben Widawskyb1465202014-02-19 22:05:49 -08002006 int ret;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002007
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002008 /* PPGTT PDEs reside in the GGTT and consists of 512 entries. The
2009 * allocator works in address space sizes, so it's multiplied by page
2010 * size. We allocate at the top of the GTT to avoid fragmentation.
2011 */
2012 BUG_ON(!drm_mm_initialized(&dev_priv->gtt.base.mm));
Michel Thierry4933d512015-03-24 15:46:22 +00002013
Mika Kuoppala8776f022015-06-30 18:16:40 +03002014 ret = gen6_init_scratch(vm);
2015 if (ret)
2016 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002017
Ben Widawskye3cc1992013-12-06 14:11:08 -08002018alloc:
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002019 ret = drm_mm_insert_node_in_range_generic(&dev_priv->gtt.base.mm,
2020 &ppgtt->node, GEN6_PD_SIZE,
2021 GEN6_PD_ALIGN, 0,
2022 0, dev_priv->gtt.base.total,
Ben Widawsky3e8b5ae2014-05-06 22:21:30 -07002023 DRM_MM_TOPDOWN);
Ben Widawskye3cc1992013-12-06 14:11:08 -08002024 if (ret == -ENOSPC && !retried) {
2025 ret = i915_gem_evict_something(dev, &dev_priv->gtt.base,
2026 GEN6_PD_SIZE, GEN6_PD_ALIGN,
Chris Wilsond23db882014-05-23 08:48:08 +02002027 I915_CACHE_NONE,
2028 0, dev_priv->gtt.base.total,
2029 0);
Ben Widawskye3cc1992013-12-06 14:11:08 -08002030 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00002031 goto err_out;
Ben Widawskye3cc1992013-12-06 14:11:08 -08002032
2033 retried = true;
2034 goto alloc;
2035 }
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002036
Ben Widawskyc8c26622015-01-22 17:01:25 +00002037 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00002038 goto err_out;
2039
Ben Widawskyc8c26622015-01-22 17:01:25 +00002040
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002041 if (ppgtt->node.start < dev_priv->gtt.mappable_end)
2042 DRM_DEBUG("Forced to use aperture for PDEs\n");
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002043
Ben Widawskyc8c26622015-01-22 17:01:25 +00002044 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +00002045
2046err_out:
Mika Kuoppala8776f022015-06-30 18:16:40 +03002047 gen6_free_scratch(vm);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002048 return ret;
Ben Widawskyb1465202014-02-19 22:05:49 -08002049}
2050
Ben Widawskyb1465202014-02-19 22:05:49 -08002051static int gen6_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt)
2052{
kbuild test robot2f2cf682015-03-27 19:26:35 +08002053 return gen6_ppgtt_allocate_page_directories(ppgtt);
Ben Widawskyb1465202014-02-19 22:05:49 -08002054}
2055
Michel Thierry4933d512015-03-24 15:46:22 +00002056static void gen6_scratch_va_range(struct i915_hw_ppgtt *ppgtt,
2057 uint64_t start, uint64_t length)
2058{
Michel Thierryec565b32015-04-08 12:13:23 +01002059 struct i915_page_table *unused;
Michel Thierry4933d512015-03-24 15:46:22 +00002060 uint32_t pde, temp;
2061
2062 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde)
Mika Kuoppala79ab9372015-06-25 18:35:17 +03002063 ppgtt->pd.page_table[pde] = ppgtt->base.scratch_pt;
Michel Thierry4933d512015-03-24 15:46:22 +00002064}
2065
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002066static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawskyb1465202014-02-19 22:05:49 -08002067{
2068 struct drm_device *dev = ppgtt->base.dev;
2069 struct drm_i915_private *dev_priv = dev->dev_private;
2070 int ret;
2071
2072 ppgtt->base.pte_encode = dev_priv->gtt.base.pte_encode;
Ben Widawsky48a10382013-12-06 14:11:11 -08002073 if (IS_GEN6(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002074 ppgtt->switch_mm = gen6_mm_switch;
Ben Widawsky90252e52013-12-06 14:11:12 -08002075 } else if (IS_HASWELL(dev)) {
Ben Widawsky90252e52013-12-06 14:11:12 -08002076 ppgtt->switch_mm = hsw_mm_switch;
Ben Widawsky48a10382013-12-06 14:11:11 -08002077 } else if (IS_GEN7(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002078 ppgtt->switch_mm = gen7_mm_switch;
2079 } else
Ben Widawskyb4a74e32013-12-06 14:11:09 -08002080 BUG();
Ben Widawskyb1465202014-02-19 22:05:49 -08002081
Yu Zhang71ba2d62015-02-10 19:05:54 +08002082 if (intel_vgpu_active(dev))
2083 ppgtt->switch_mm = vgpu_mm_switch;
2084
Ben Widawskyb1465202014-02-19 22:05:49 -08002085 ret = gen6_ppgtt_alloc(ppgtt);
2086 if (ret)
2087 return ret;
2088
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002089 ppgtt->base.allocate_va_range = gen6_alloc_va_range;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002090 ppgtt->base.clear_range = gen6_ppgtt_clear_range;
2091 ppgtt->base.insert_entries = gen6_ppgtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002092 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
2093 ppgtt->base.bind_vma = ppgtt_bind_vma;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002094 ppgtt->base.cleanup = gen6_ppgtt_cleanup;
Ben Widawsky686e1f6f2013-11-25 09:54:34 -08002095 ppgtt->base.start = 0;
Michel Thierry09942c62015-04-08 12:13:30 +01002096 ppgtt->base.total = I915_PDES * GEN6_PTES * PAGE_SIZE;
Ben Widawskyb1465202014-02-19 22:05:49 -08002097 ppgtt->debug_dump = gen6_dump_ppgtt;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002098
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002099 ppgtt->pd.base.ggtt_offset =
Michel Thierry07749ef2015-03-16 16:00:54 +00002100 ppgtt->node.start / PAGE_SIZE * sizeof(gen6_pte_t);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002101
Ben Widawsky678d96f2015-03-16 16:00:56 +00002102 ppgtt->pd_addr = (gen6_pte_t __iomem *)dev_priv->gtt.gsm +
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002103 ppgtt->pd.base.ggtt_offset / sizeof(gen6_pte_t);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002104
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002105 gen6_scratch_va_range(ppgtt, 0, ppgtt->base.total);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002106
Ben Widawsky678d96f2015-03-16 16:00:56 +00002107 gen6_write_page_range(dev_priv, &ppgtt->pd, 0, ppgtt->base.total);
2108
Thierry Reding440fd522015-01-23 09:05:06 +01002109 DRM_DEBUG_DRIVER("Allocated pde space (%lldM) at GTT entry: %llx\n",
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002110 ppgtt->node.size >> 20,
2111 ppgtt->node.start / PAGE_SIZE);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002112
Daniel Vetterfa76da32014-08-06 20:19:54 +02002113 DRM_DEBUG("Adding PPGTT at offset %x\n",
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002114 ppgtt->pd.base.ggtt_offset << 10);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002115
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002116 return 0;
Daniel Vetter3440d262013-01-24 13:49:56 -08002117}
2118
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002119static int __hw_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08002120{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002121 ppgtt->base.dev = dev;
Daniel Vetter3440d262013-01-24 13:49:56 -08002122
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002123 if (INTEL_INFO(dev)->gen < 8)
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002124 return gen6_ppgtt_init(ppgtt);
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002125 else
Michel Thierryd7b26332015-04-08 12:13:34 +01002126 return gen8_ppgtt_init(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002127}
Mika Kuoppalac114f762015-06-25 18:35:13 +03002128
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002129static void i915_address_space_init(struct i915_address_space *vm,
2130 struct drm_i915_private *dev_priv)
2131{
2132 drm_mm_init(&vm->mm, vm->start, vm->total);
2133 vm->dev = dev_priv->dev;
2134 INIT_LIST_HEAD(&vm->active_list);
2135 INIT_LIST_HEAD(&vm->inactive_list);
2136 list_add_tail(&vm->global_link, &dev_priv->vm_list);
2137}
2138
Daniel Vetterfa76da32014-08-06 20:19:54 +02002139int i915_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
2140{
2141 struct drm_i915_private *dev_priv = dev->dev_private;
2142 int ret = 0;
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002143
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002144 ret = __hw_ppgtt_init(dev, ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002145 if (ret == 0) {
Ben Widawskyc7c48df2013-12-06 14:11:15 -08002146 kref_init(&ppgtt->ref);
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002147 i915_address_space_init(&ppgtt->base, dev_priv);
Ben Widawsky93bd8642013-07-16 16:50:06 -07002148 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002149
2150 return ret;
2151}
2152
Daniel Vetter82460d92014-08-06 20:19:53 +02002153int i915_ppgtt_init_hw(struct drm_device *dev)
2154{
Thomas Daniel671b50132014-08-20 16:24:50 +01002155 /* In the case of execlists, PPGTT is enabled by the context descriptor
2156 * and the PDPs are contained within the context itself. We don't
2157 * need to do anything here. */
2158 if (i915.enable_execlists)
2159 return 0;
2160
Daniel Vetter82460d92014-08-06 20:19:53 +02002161 if (!USES_PPGTT(dev))
2162 return 0;
2163
2164 if (IS_GEN6(dev))
2165 gen6_ppgtt_enable(dev);
2166 else if (IS_GEN7(dev))
2167 gen7_ppgtt_enable(dev);
2168 else if (INTEL_INFO(dev)->gen >= 8)
2169 gen8_ppgtt_enable(dev);
2170 else
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01002171 MISSING_CASE(INTEL_INFO(dev)->gen);
Daniel Vetter82460d92014-08-06 20:19:53 +02002172
John Harrison4ad2fd82015-06-18 13:11:20 +01002173 return 0;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002174}
John Harrison4ad2fd82015-06-18 13:11:20 +01002175
John Harrisonb3dd6b92015-05-29 17:43:40 +01002176int i915_ppgtt_init_ring(struct drm_i915_gem_request *req)
John Harrison4ad2fd82015-06-18 13:11:20 +01002177{
John Harrisonb3dd6b92015-05-29 17:43:40 +01002178 struct drm_i915_private *dev_priv = req->ring->dev->dev_private;
John Harrison4ad2fd82015-06-18 13:11:20 +01002179 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2180
2181 if (i915.enable_execlists)
2182 return 0;
2183
2184 if (!ppgtt)
2185 return 0;
2186
John Harrisone85b26d2015-05-29 17:43:56 +01002187 return ppgtt->switch_mm(ppgtt, req);
John Harrison4ad2fd82015-06-18 13:11:20 +01002188}
2189
Daniel Vetter4d884702014-08-06 15:04:47 +02002190struct i915_hw_ppgtt *
2191i915_ppgtt_create(struct drm_device *dev, struct drm_i915_file_private *fpriv)
2192{
2193 struct i915_hw_ppgtt *ppgtt;
2194 int ret;
2195
2196 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2197 if (!ppgtt)
2198 return ERR_PTR(-ENOMEM);
2199
2200 ret = i915_ppgtt_init(dev, ppgtt);
2201 if (ret) {
2202 kfree(ppgtt);
2203 return ERR_PTR(ret);
2204 }
2205
2206 ppgtt->file_priv = fpriv;
2207
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002208 trace_i915_ppgtt_create(&ppgtt->base);
2209
Daniel Vetter4d884702014-08-06 15:04:47 +02002210 return ppgtt;
2211}
2212
Daniel Vetteree960be2014-08-06 15:04:45 +02002213void i915_ppgtt_release(struct kref *kref)
2214{
2215 struct i915_hw_ppgtt *ppgtt =
2216 container_of(kref, struct i915_hw_ppgtt, ref);
2217
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002218 trace_i915_ppgtt_release(&ppgtt->base);
2219
Daniel Vetteree960be2014-08-06 15:04:45 +02002220 /* vmas should already be unbound */
2221 WARN_ON(!list_empty(&ppgtt->base.active_list));
2222 WARN_ON(!list_empty(&ppgtt->base.inactive_list));
2223
Daniel Vetter19dd1202014-08-06 15:04:55 +02002224 list_del(&ppgtt->base.global_link);
2225 drm_mm_takedown(&ppgtt->base.mm);
2226
Daniel Vetteree960be2014-08-06 15:04:45 +02002227 ppgtt->base.cleanup(&ppgtt->base);
2228 kfree(ppgtt);
2229}
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002230
Ben Widawskya81cc002013-01-18 12:30:31 -08002231extern int intel_iommu_gfx_mapped;
2232/* Certain Gen5 chipsets require require idling the GPU before
2233 * unmapping anything from the GTT when VT-d is enabled.
2234 */
Daniel Vetter2c642b02015-04-14 17:35:26 +02002235static bool needs_idle_maps(struct drm_device *dev)
Ben Widawskya81cc002013-01-18 12:30:31 -08002236{
2237#ifdef CONFIG_INTEL_IOMMU
2238 /* Query intel_iommu to see if we need the workaround. Presumably that
2239 * was loaded first.
2240 */
2241 if (IS_GEN5(dev) && IS_MOBILE(dev) && intel_iommu_gfx_mapped)
2242 return true;
2243#endif
2244 return false;
2245}
2246
Ben Widawsky5c042282011-10-17 15:51:55 -07002247static bool do_idling(struct drm_i915_private *dev_priv)
2248{
2249 bool ret = dev_priv->mm.interruptible;
2250
Ben Widawskya81cc002013-01-18 12:30:31 -08002251 if (unlikely(dev_priv->gtt.do_idle_maps)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002252 dev_priv->mm.interruptible = false;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002253 if (i915_gpu_idle(dev_priv->dev)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002254 DRM_ERROR("Couldn't idle GPU\n");
2255 /* Wait a bit, in hopes it avoids the hang */
2256 udelay(10);
2257 }
2258 }
2259
2260 return ret;
2261}
2262
2263static void undo_idling(struct drm_i915_private *dev_priv, bool interruptible)
2264{
Ben Widawskya81cc002013-01-18 12:30:31 -08002265 if (unlikely(dev_priv->gtt.do_idle_maps))
Ben Widawsky5c042282011-10-17 15:51:55 -07002266 dev_priv->mm.interruptible = interruptible;
2267}
2268
Ben Widawsky828c7902013-10-16 09:21:30 -07002269void i915_check_and_clear_faults(struct drm_device *dev)
2270{
2271 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002272 struct intel_engine_cs *ring;
Ben Widawsky828c7902013-10-16 09:21:30 -07002273 int i;
2274
2275 if (INTEL_INFO(dev)->gen < 6)
2276 return;
2277
2278 for_each_ring(ring, dev_priv, i) {
2279 u32 fault_reg;
2280 fault_reg = I915_READ(RING_FAULT_REG(ring));
2281 if (fault_reg & RING_FAULT_VALID) {
2282 DRM_DEBUG_DRIVER("Unexpected fault\n"
Paulo Zanoni59a5d292014-10-30 15:52:45 -02002283 "\tAddr: 0x%08lx\n"
Ben Widawsky828c7902013-10-16 09:21:30 -07002284 "\tAddress space: %s\n"
2285 "\tSource ID: %d\n"
2286 "\tType: %d\n",
2287 fault_reg & PAGE_MASK,
2288 fault_reg & RING_FAULT_GTTSEL_MASK ? "GGTT" : "PPGTT",
2289 RING_FAULT_SRCID(fault_reg),
2290 RING_FAULT_FAULT_TYPE(fault_reg));
2291 I915_WRITE(RING_FAULT_REG(ring),
2292 fault_reg & ~RING_FAULT_VALID);
2293 }
2294 }
2295 POSTING_READ(RING_FAULT_REG(&dev_priv->ring[RCS]));
2296}
2297
Chris Wilson91e56492014-09-25 10:13:12 +01002298static void i915_ggtt_flush(struct drm_i915_private *dev_priv)
2299{
2300 if (INTEL_INFO(dev_priv->dev)->gen < 6) {
2301 intel_gtt_chipset_flush();
2302 } else {
2303 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2304 POSTING_READ(GFX_FLSH_CNTL_GEN6);
2305 }
2306}
2307
Ben Widawsky828c7902013-10-16 09:21:30 -07002308void i915_gem_suspend_gtt_mappings(struct drm_device *dev)
2309{
2310 struct drm_i915_private *dev_priv = dev->dev_private;
2311
2312 /* Don't bother messing with faults pre GEN6 as we have little
2313 * documentation supporting that it's a good idea.
2314 */
2315 if (INTEL_INFO(dev)->gen < 6)
2316 return;
2317
2318 i915_check_and_clear_faults(dev);
2319
2320 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002321 dev_priv->gtt.base.start,
2322 dev_priv->gtt.base.total,
Daniel Vettere568af12014-03-26 20:08:20 +01002323 true);
Chris Wilson91e56492014-09-25 10:13:12 +01002324
2325 i915_ggtt_flush(dev_priv);
Ben Widawsky828c7902013-10-16 09:21:30 -07002326}
2327
Daniel Vetter74163902012-02-15 23:50:21 +01002328int i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002329{
Chris Wilson9da3da62012-06-01 15:20:22 +01002330 if (!dma_map_sg(&obj->base.dev->pdev->dev,
2331 obj->pages->sgl, obj->pages->nents,
2332 PCI_DMA_BIDIRECTIONAL))
2333 return -ENOSPC;
2334
2335 return 0;
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002336}
2337
Daniel Vetter2c642b02015-04-14 17:35:26 +02002338static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002339{
2340#ifdef writeq
2341 writeq(pte, addr);
2342#else
2343 iowrite32((u32)pte, addr);
2344 iowrite32(pte >> 32, addr + 4);
2345#endif
2346}
2347
2348static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
2349 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002350 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302351 enum i915_cache_level level, u32 unused)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002352{
2353 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002354 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002355 gen8_pte_t __iomem *gtt_entries =
2356 (gen8_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002357 int i = 0;
2358 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002359 dma_addr_t addr = 0; /* shut up gcc */
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002360
2361 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
2362 addr = sg_dma_address(sg_iter.sg) +
2363 (sg_iter.sg_pgoffset << PAGE_SHIFT);
2364 gen8_set_pte(&gtt_entries[i],
2365 gen8_pte_encode(addr, level, true));
2366 i++;
2367 }
2368
2369 /*
2370 * XXX: This serves as a posting read to make sure that the PTE has
2371 * actually been updated. There is some concern that even though
2372 * registers and PTEs are within the same BAR that they are potentially
2373 * of NUMA access patterns. Therefore, even with the way we assume
2374 * hardware should work, we must keep this posting read for paranoia.
2375 */
2376 if (i != 0)
2377 WARN_ON(readq(&gtt_entries[i-1])
2378 != gen8_pte_encode(addr, level, true));
2379
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002380 /* This next bit makes the above posting read even more important. We
2381 * want to flush the TLBs only after we're certain all the PTE updates
2382 * have finished.
2383 */
2384 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2385 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002386}
2387
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002388/*
2389 * Binds an object into the global gtt with the specified cache level. The object
2390 * will be accessible to the GPU via commands whose operands reference offsets
2391 * within the global GTT as well as accessible by the GPU through the GMADR
2392 * mapped BAR (dev_priv->mm.gtt->gtt).
2393 */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002394static void gen6_ggtt_insert_entries(struct i915_address_space *vm,
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002395 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002396 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302397 enum i915_cache_level level, u32 flags)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002398{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002399 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002400 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002401 gen6_pte_t __iomem *gtt_entries =
2402 (gen6_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
Imre Deak6e995e22013-02-18 19:28:04 +02002403 int i = 0;
2404 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002405 dma_addr_t addr = 0;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002406
Imre Deak6e995e22013-02-18 19:28:04 +02002407 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02002408 addr = sg_page_iter_dma_address(&sg_iter);
Akash Goel24f3a8c2014-06-17 10:59:42 +05302409 iowrite32(vm->pte_encode(addr, level, true, flags), &gtt_entries[i]);
Imre Deak6e995e22013-02-18 19:28:04 +02002410 i++;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002411 }
2412
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002413 /* XXX: This serves as a posting read to make sure that the PTE has
2414 * actually been updated. There is some concern that even though
2415 * registers and PTEs are within the same BAR that they are potentially
2416 * of NUMA access patterns. Therefore, even with the way we assume
2417 * hardware should work, we must keep this posting read for paranoia.
2418 */
Pavel Machek57007df2014-07-28 13:20:58 +02002419 if (i != 0) {
2420 unsigned long gtt = readl(&gtt_entries[i-1]);
2421 WARN_ON(gtt != vm->pte_encode(addr, level, true, flags));
2422 }
Ben Widawsky0f9b91c2012-11-04 09:21:30 -08002423
2424 /* This next bit makes the above posting read even more important. We
2425 * want to flush the TLBs only after we're certain all the PTE updates
2426 * have finished.
2427 */
2428 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2429 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002430}
2431
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002432static void gen8_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002433 uint64_t start,
2434 uint64_t length,
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002435 bool use_scratch)
2436{
2437 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002438 unsigned first_entry = start >> PAGE_SHIFT;
2439 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002440 gen8_pte_t scratch_pte, __iomem *gtt_base =
2441 (gen8_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002442 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
2443 int i;
2444
2445 if (WARN(num_entries > max_entries,
2446 "First entry = %d; Num entries = %d (max=%d)\n",
2447 first_entry, num_entries, max_entries))
2448 num_entries = max_entries;
2449
Mika Kuoppalac114f762015-06-25 18:35:13 +03002450 scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002451 I915_CACHE_LLC,
2452 use_scratch);
2453 for (i = 0; i < num_entries; i++)
2454 gen8_set_pte(&gtt_base[i], scratch_pte);
2455 readl(gtt_base);
2456}
2457
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002458static void gen6_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002459 uint64_t start,
2460 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002461 bool use_scratch)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002462{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002463 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002464 unsigned first_entry = start >> PAGE_SHIFT;
2465 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002466 gen6_pte_t scratch_pte, __iomem *gtt_base =
2467 (gen6_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
Ben Widawskya54c0c22013-01-24 14:45:00 -08002468 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002469 int i;
2470
2471 if (WARN(num_entries > max_entries,
2472 "First entry = %d; Num entries = %d (max=%d)\n",
2473 first_entry, num_entries, max_entries))
2474 num_entries = max_entries;
2475
Mika Kuoppalac114f762015-06-25 18:35:13 +03002476 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
2477 I915_CACHE_LLC, use_scratch, 0);
Ben Widawsky828c7902013-10-16 09:21:30 -07002478
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002479 for (i = 0; i < num_entries; i++)
2480 iowrite32(scratch_pte, &gtt_base[i]);
2481 readl(gtt_base);
2482}
2483
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002484static void i915_ggtt_insert_entries(struct i915_address_space *vm,
2485 struct sg_table *pages,
2486 uint64_t start,
2487 enum i915_cache_level cache_level, u32 unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002488{
2489 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
2490 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
2491
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002492 intel_gtt_insert_sg_entries(pages, start >> PAGE_SHIFT, flags);
Daniel Vetter08755462015-04-20 09:04:05 -07002493
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002494}
2495
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002496static void i915_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002497 uint64_t start,
2498 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002499 bool unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002500{
Ben Widawsky782f1492014-02-20 11:50:33 -08002501 unsigned first_entry = start >> PAGE_SHIFT;
2502 unsigned num_entries = length >> PAGE_SHIFT;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002503 intel_gtt_clear_range(first_entry, num_entries);
2504}
2505
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002506static int ggtt_bind_vma(struct i915_vma *vma,
2507 enum i915_cache_level cache_level,
2508 u32 flags)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002509{
Daniel Vetter0a878712015-10-15 14:23:01 +02002510 struct drm_i915_gem_object *obj = vma->obj;
2511 u32 pte_flags = 0;
2512 int ret;
2513
2514 ret = i915_get_ggtt_vma_pages(vma);
2515 if (ret)
2516 return ret;
2517
2518 /* Currently applicable only to VLV */
2519 if (obj->gt_ro)
2520 pte_flags |= PTE_READ_ONLY;
2521
2522 vma->vm->insert_entries(vma->vm, vma->ggtt_view.pages,
2523 vma->node.start,
2524 cache_level, pte_flags);
2525
2526 /*
2527 * Without aliasing PPGTT there's no difference between
2528 * GLOBAL/LOCAL_BIND, it's all the same ptes. Hence unconditionally
2529 * upgrade to both bound if we bind either to avoid double-binding.
2530 */
2531 vma->bound |= GLOBAL_BIND | LOCAL_BIND;
2532
2533 return 0;
2534}
2535
2536static int aliasing_gtt_bind_vma(struct i915_vma *vma,
2537 enum i915_cache_level cache_level,
2538 u32 flags)
2539{
Ben Widawsky6f65e292013-12-06 14:10:56 -08002540 struct drm_device *dev = vma->vm->dev;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002541 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002542 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002543 struct sg_table *pages = obj->pages;
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002544 u32 pte_flags = 0;
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002545 int ret;
2546
2547 ret = i915_get_ggtt_vma_pages(vma);
2548 if (ret)
2549 return ret;
2550 pages = vma->ggtt_view.pages;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002551
Akash Goel24f3a8c2014-06-17 10:59:42 +05302552 /* Currently applicable only to VLV */
2553 if (obj->gt_ro)
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002554 pte_flags |= PTE_READ_ONLY;
Akash Goel24f3a8c2014-06-17 10:59:42 +05302555
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002556
Daniel Vetter0a878712015-10-15 14:23:01 +02002557 if (flags & GLOBAL_BIND) {
Daniel Vetter08755462015-04-20 09:04:05 -07002558 vma->vm->insert_entries(vma->vm, pages,
2559 vma->node.start,
2560 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002561 }
Daniel Vetter74898d72012-02-15 23:50:22 +01002562
Daniel Vetter0a878712015-10-15 14:23:01 +02002563 if (flags & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002564 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002565 appgtt->base.insert_entries(&appgtt->base, pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08002566 vma->node.start,
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002567 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002568 }
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002569
2570 return 0;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002571}
2572
2573static void ggtt_unbind_vma(struct i915_vma *vma)
2574{
2575 struct drm_device *dev = vma->vm->dev;
2576 struct drm_i915_private *dev_priv = dev->dev_private;
2577 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002578 const uint64_t size = min_t(uint64_t,
2579 obj->base.size,
2580 vma->node.size);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002581
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002582 if (vma->bound & GLOBAL_BIND) {
Ben Widawsky782f1492014-02-20 11:50:33 -08002583 vma->vm->clear_range(vma->vm,
2584 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002585 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002586 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002587 }
2588
Daniel Vetter08755462015-04-20 09:04:05 -07002589 if (dev_priv->mm.aliasing_ppgtt && vma->bound & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002590 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002591
Ben Widawsky6f65e292013-12-06 14:10:56 -08002592 appgtt->base.clear_range(&appgtt->base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002593 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002594 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002595 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002596 }
Daniel Vetter74163902012-02-15 23:50:21 +01002597}
2598
2599void i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj)
2600{
Ben Widawsky5c042282011-10-17 15:51:55 -07002601 struct drm_device *dev = obj->base.dev;
2602 struct drm_i915_private *dev_priv = dev->dev_private;
2603 bool interruptible;
2604
2605 interruptible = do_idling(dev_priv);
2606
Imre Deak5ec5b512015-07-08 19:18:59 +03002607 dma_unmap_sg(&dev->pdev->dev, obj->pages->sgl, obj->pages->nents,
2608 PCI_DMA_BIDIRECTIONAL);
Ben Widawsky5c042282011-10-17 15:51:55 -07002609
2610 undo_idling(dev_priv, interruptible);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002611}
Daniel Vetter644ec022012-03-26 09:45:40 +02002612
Chris Wilson42d6ab42012-07-26 11:49:32 +01002613static void i915_gtt_color_adjust(struct drm_mm_node *node,
2614 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +01002615 u64 *start,
2616 u64 *end)
Chris Wilson42d6ab42012-07-26 11:49:32 +01002617{
2618 if (node->color != color)
2619 *start += 4096;
2620
2621 if (!list_empty(&node->node_list)) {
2622 node = list_entry(node->node_list.next,
2623 struct drm_mm_node,
2624 node_list);
2625 if (node->allocated && node->color != color)
2626 *end -= 4096;
2627 }
2628}
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002629
Daniel Vetterf548c0e2014-11-19 21:40:13 +01002630static int i915_gem_setup_global_gtt(struct drm_device *dev,
Michel Thierry088e0df2015-08-07 17:40:17 +01002631 u64 start,
2632 u64 mappable_end,
2633 u64 end)
Daniel Vetter644ec022012-03-26 09:45:40 +02002634{
Ben Widawskye78891c2013-01-25 16:41:04 -08002635 /* Let GEM Manage all of the aperture.
2636 *
2637 * However, leave one page at the end still bound to the scratch page.
2638 * There are a number of places where the hardware apparently prefetches
2639 * past the end of the object, and we've seen multiple hangs with the
2640 * GPU head pointer stuck in a batchbuffer bound at the last page of the
2641 * aperture. One page should be enough to keep any prefetching inside
2642 * of the aperture.
2643 */
Ben Widawsky40d749802013-07-31 16:59:59 -07002644 struct drm_i915_private *dev_priv = dev->dev_private;
2645 struct i915_address_space *ggtt_vm = &dev_priv->gtt.base;
Chris Wilsoned2f3452012-11-15 11:32:19 +00002646 struct drm_mm_node *entry;
2647 struct drm_i915_gem_object *obj;
2648 unsigned long hole_start, hole_end;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002649 int ret;
Daniel Vetter644ec022012-03-26 09:45:40 +02002650
Ben Widawsky35451cb2013-01-17 12:45:13 -08002651 BUG_ON(mappable_end > end);
2652
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002653 ggtt_vm->start = start;
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002654
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002655 /* Subtract the guard page before address space initialization to
2656 * shrink the range used by drm_mm */
2657 ggtt_vm->total = end - start - PAGE_SIZE;
2658 i915_address_space_init(ggtt_vm, dev_priv);
2659 ggtt_vm->total += PAGE_SIZE;
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002660
2661 if (intel_vgpu_active(dev)) {
2662 ret = intel_vgt_balloon(dev);
2663 if (ret)
2664 return ret;
2665 }
2666
Chris Wilson42d6ab42012-07-26 11:49:32 +01002667 if (!HAS_LLC(dev))
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002668 ggtt_vm->mm.color_adjust = i915_gtt_color_adjust;
Daniel Vetter644ec022012-03-26 09:45:40 +02002669
Chris Wilsoned2f3452012-11-15 11:32:19 +00002670 /* Mark any preallocated objects as occupied */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002671 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Ben Widawsky40d749802013-07-31 16:59:59 -07002672 struct i915_vma *vma = i915_gem_obj_to_vma(obj, ggtt_vm);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002673
Michel Thierry088e0df2015-08-07 17:40:17 +01002674 DRM_DEBUG_KMS("reserving preallocated space: %llx + %zx\n",
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002675 i915_gem_obj_ggtt_offset(obj), obj->base.size);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002676
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002677 WARN_ON(i915_gem_obj_ggtt_bound(obj));
Ben Widawsky40d749802013-07-31 16:59:59 -07002678 ret = drm_mm_reserve_node(&ggtt_vm->mm, &vma->node);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002679 if (ret) {
2680 DRM_DEBUG_KMS("Reservation failed: %i\n", ret);
2681 return ret;
2682 }
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002683 vma->bound |= GLOBAL_BIND;
Chris Wilson7c4a7d62015-09-24 11:57:45 +01002684 list_add_tail(&vma->mm_list, &ggtt_vm->inactive_list);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002685 }
2686
Chris Wilsoned2f3452012-11-15 11:32:19 +00002687 /* Clear any non-preallocated blocks */
Ben Widawsky40d749802013-07-31 16:59:59 -07002688 drm_mm_for_each_hole(entry, &ggtt_vm->mm, hole_start, hole_end) {
Chris Wilsoned2f3452012-11-15 11:32:19 +00002689 DRM_DEBUG_KMS("clearing unused GTT space: [%lx, %lx]\n",
2690 hole_start, hole_end);
Ben Widawsky782f1492014-02-20 11:50:33 -08002691 ggtt_vm->clear_range(ggtt_vm, hole_start,
2692 hole_end - hole_start, true);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002693 }
2694
2695 /* And finally clear the reserved guard page */
Ben Widawsky782f1492014-02-20 11:50:33 -08002696 ggtt_vm->clear_range(ggtt_vm, end - PAGE_SIZE, PAGE_SIZE, true);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002697
Daniel Vetterfa76da32014-08-06 20:19:54 +02002698 if (USES_PPGTT(dev) && !USES_FULL_PPGTT(dev)) {
2699 struct i915_hw_ppgtt *ppgtt;
2700
2701 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2702 if (!ppgtt)
2703 return -ENOMEM;
2704
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002705 ret = __hw_ppgtt_init(dev, ppgtt);
Michel Thierry4933d512015-03-24 15:46:22 +00002706 if (ret) {
Daniel Vetter061dd492015-04-14 17:35:13 +02002707 ppgtt->base.cleanup(&ppgtt->base);
Michel Thierry4933d512015-03-24 15:46:22 +00002708 kfree(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002709 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002710 }
Daniel Vetterfa76da32014-08-06 20:19:54 +02002711
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002712 if (ppgtt->base.allocate_va_range)
2713 ret = ppgtt->base.allocate_va_range(&ppgtt->base, 0,
2714 ppgtt->base.total);
2715 if (ret) {
2716 ppgtt->base.cleanup(&ppgtt->base);
2717 kfree(ppgtt);
2718 return ret;
2719 }
2720
2721 ppgtt->base.clear_range(&ppgtt->base,
2722 ppgtt->base.start,
2723 ppgtt->base.total,
2724 true);
2725
Daniel Vetterfa76da32014-08-06 20:19:54 +02002726 dev_priv->mm.aliasing_ppgtt = ppgtt;
Daniel Vetter0a878712015-10-15 14:23:01 +02002727 WARN_ON(dev_priv->gtt.base.bind_vma != ggtt_bind_vma);
2728 dev_priv->gtt.base.bind_vma = aliasing_gtt_bind_vma;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002729 }
2730
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002731 return 0;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002732}
2733
Ben Widawskyd7e50082012-12-18 10:31:25 -08002734void i915_gem_init_global_gtt(struct drm_device *dev)
2735{
2736 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002737 u64 gtt_size, mappable_size;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002738
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002739 gtt_size = dev_priv->gtt.base.total;
Ben Widawsky93d18792013-01-17 12:45:17 -08002740 mappable_size = dev_priv->gtt.mappable_end;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002741
Ben Widawskye78891c2013-01-25 16:41:04 -08002742 i915_gem_setup_global_gtt(dev, 0, mappable_size, gtt_size);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002743}
2744
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002745void i915_global_gtt_cleanup(struct drm_device *dev)
2746{
2747 struct drm_i915_private *dev_priv = dev->dev_private;
2748 struct i915_address_space *vm = &dev_priv->gtt.base;
2749
Daniel Vetter70e32542014-08-06 15:04:57 +02002750 if (dev_priv->mm.aliasing_ppgtt) {
2751 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2752
2753 ppgtt->base.cleanup(&ppgtt->base);
2754 }
2755
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002756 if (drm_mm_initialized(&vm->mm)) {
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002757 if (intel_vgpu_active(dev))
2758 intel_vgt_deballoon();
2759
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002760 drm_mm_takedown(&vm->mm);
2761 list_del(&vm->global_link);
2762 }
2763
2764 vm->cleanup(vm);
2765}
Daniel Vetter70e32542014-08-06 15:04:57 +02002766
Daniel Vetter2c642b02015-04-14 17:35:26 +02002767static unsigned int gen6_get_total_gtt_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002768{
2769 snb_gmch_ctl >>= SNB_GMCH_GGMS_SHIFT;
2770 snb_gmch_ctl &= SNB_GMCH_GGMS_MASK;
2771 return snb_gmch_ctl << 20;
2772}
2773
Daniel Vetter2c642b02015-04-14 17:35:26 +02002774static unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002775{
2776 bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
2777 bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
2778 if (bdw_gmch_ctl)
2779 bdw_gmch_ctl = 1 << bdw_gmch_ctl;
Ben Widawsky562d55d2014-05-27 16:53:08 -07002780
2781#ifdef CONFIG_X86_32
2782 /* Limit 32b platforms to a 2GB GGTT: 4 << 20 / pte size * PAGE_SIZE */
2783 if (bdw_gmch_ctl > 4)
2784 bdw_gmch_ctl = 4;
2785#endif
2786
Ben Widawsky9459d252013-11-03 16:53:55 -08002787 return bdw_gmch_ctl << 20;
2788}
2789
Daniel Vetter2c642b02015-04-14 17:35:26 +02002790static unsigned int chv_get_total_gtt_size(u16 gmch_ctrl)
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002791{
2792 gmch_ctrl >>= SNB_GMCH_GGMS_SHIFT;
2793 gmch_ctrl &= SNB_GMCH_GGMS_MASK;
2794
2795 if (gmch_ctrl)
2796 return 1 << (20 + gmch_ctrl);
2797
2798 return 0;
2799}
2800
Daniel Vetter2c642b02015-04-14 17:35:26 +02002801static size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002802{
2803 snb_gmch_ctl >>= SNB_GMCH_GMS_SHIFT;
2804 snb_gmch_ctl &= SNB_GMCH_GMS_MASK;
2805 return snb_gmch_ctl << 25; /* 32 MB units */
2806}
2807
Daniel Vetter2c642b02015-04-14 17:35:26 +02002808static size_t gen8_get_stolen_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002809{
2810 bdw_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2811 bdw_gmch_ctl &= BDW_GMCH_GMS_MASK;
2812 return bdw_gmch_ctl << 25; /* 32 MB units */
2813}
2814
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002815static size_t chv_get_stolen_size(u16 gmch_ctrl)
2816{
2817 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
2818 gmch_ctrl &= SNB_GMCH_GMS_MASK;
2819
2820 /*
2821 * 0x0 to 0x10: 32MB increments starting at 0MB
2822 * 0x11 to 0x16: 4MB increments starting at 8MB
2823 * 0x17 to 0x1d: 4MB increments start at 36MB
2824 */
2825 if (gmch_ctrl < 0x11)
2826 return gmch_ctrl << 25;
2827 else if (gmch_ctrl < 0x17)
2828 return (gmch_ctrl - 0x11 + 2) << 22;
2829 else
2830 return (gmch_ctrl - 0x17 + 9) << 22;
2831}
2832
Damien Lespiau66375012014-01-09 18:02:46 +00002833static size_t gen9_get_stolen_size(u16 gen9_gmch_ctl)
2834{
2835 gen9_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2836 gen9_gmch_ctl &= BDW_GMCH_GMS_MASK;
2837
2838 if (gen9_gmch_ctl < 0xf0)
2839 return gen9_gmch_ctl << 25; /* 32 MB units */
2840 else
2841 /* 4MB increments starting at 0xf0 for 4MB */
2842 return (gen9_gmch_ctl - 0xf0 + 1) << 22;
2843}
2844
Ben Widawsky63340132013-11-04 19:32:22 -08002845static int ggtt_probe_common(struct drm_device *dev,
2846 size_t gtt_size)
2847{
2848 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002849 struct i915_page_scratch *scratch_page;
Bjorn Helgaas21c34602013-12-21 10:52:52 -07002850 phys_addr_t gtt_phys_addr;
Ben Widawsky63340132013-11-04 19:32:22 -08002851
2852 /* For Modern GENs the PTEs and register space are split in the BAR */
Bjorn Helgaas21c34602013-12-21 10:52:52 -07002853 gtt_phys_addr = pci_resource_start(dev->pdev, 0) +
Ben Widawsky63340132013-11-04 19:32:22 -08002854 (pci_resource_len(dev->pdev, 0) / 2);
2855
Imre Deak2a073f892015-03-27 13:07:33 +02002856 /*
2857 * On BXT writes larger than 64 bit to the GTT pagetable range will be
2858 * dropped. For WC mappings in general we have 64 byte burst writes
2859 * when the WC buffer is flushed, so we can't use it, but have to
2860 * resort to an uncached mapping. The WC issue is easily caught by the
2861 * readback check when writing GTT PTE entries.
2862 */
2863 if (IS_BROXTON(dev))
2864 dev_priv->gtt.gsm = ioremap_nocache(gtt_phys_addr, gtt_size);
2865 else
2866 dev_priv->gtt.gsm = ioremap_wc(gtt_phys_addr, gtt_size);
Ben Widawsky63340132013-11-04 19:32:22 -08002867 if (!dev_priv->gtt.gsm) {
2868 DRM_ERROR("Failed to map the gtt page table\n");
2869 return -ENOMEM;
2870 }
2871
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002872 scratch_page = alloc_scratch_page(dev);
2873 if (IS_ERR(scratch_page)) {
Ben Widawsky63340132013-11-04 19:32:22 -08002874 DRM_ERROR("Scratch setup failed\n");
2875 /* iounmap will also get called at remove, but meh */
2876 iounmap(dev_priv->gtt.gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002877 return PTR_ERR(scratch_page);
Ben Widawsky63340132013-11-04 19:32:22 -08002878 }
2879
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002880 dev_priv->gtt.base.scratch_page = scratch_page;
2881
2882 return 0;
Ben Widawsky63340132013-11-04 19:32:22 -08002883}
2884
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002885/* The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
2886 * bits. When using advanced contexts each context stores its own PAT, but
2887 * writing this data shouldn't be harmful even in those cases. */
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002888static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv)
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002889{
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002890 uint64_t pat;
2891
2892 pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) | /* for normal objects, no eLLC */
2893 GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) | /* for something pointing to ptes? */
2894 GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC) | /* for scanout with eLLC */
2895 GEN8_PPAT(3, GEN8_PPAT_UC) | /* Uncached objects, mostly for scanout */
2896 GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
2897 GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
2898 GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
2899 GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
2900
Rodrigo Vivid6a8b722014-11-05 16:56:36 -08002901 if (!USES_PPGTT(dev_priv->dev))
2902 /* Spec: "For GGTT, there is NO pat_sel[2:0] from the entry,
2903 * so RTL will always use the value corresponding to
2904 * pat_sel = 000".
2905 * So let's disable cache for GGTT to avoid screen corruptions.
2906 * MOCS still can be used though.
2907 * - System agent ggtt writes (i.e. cpu gtt mmaps) already work
2908 * before this patch, i.e. the same uncached + snooping access
2909 * like on gen6/7 seems to be in effect.
2910 * - So this just fixes blitter/render access. Again it looks
2911 * like it's not just uncached access, but uncached + snooping.
2912 * So we can still hold onto all our assumptions wrt cpu
2913 * clflushing on LLC machines.
2914 */
2915 pat = GEN8_PPAT(0, GEN8_PPAT_UC);
2916
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002917 /* XXX: spec defines this as 2 distinct registers. It's unclear if a 64b
2918 * write would work. */
Ville Syrjälä7e435ad2015-09-18 20:03:25 +03002919 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
2920 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002921}
2922
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002923static void chv_setup_private_ppat(struct drm_i915_private *dev_priv)
2924{
2925 uint64_t pat;
2926
2927 /*
2928 * Map WB on BDW to snooped on CHV.
2929 *
2930 * Only the snoop bit has meaning for CHV, the rest is
2931 * ignored.
2932 *
Ville Syrjäläcf3d2622014-11-14 21:02:44 +02002933 * The hardware will never snoop for certain types of accesses:
2934 * - CPU GTT (GMADR->GGTT->no snoop->memory)
2935 * - PPGTT page tables
2936 * - some other special cycles
2937 *
2938 * As with BDW, we also need to consider the following for GT accesses:
2939 * "For GGTT, there is NO pat_sel[2:0] from the entry,
2940 * so RTL will always use the value corresponding to
2941 * pat_sel = 000".
2942 * Which means we must set the snoop bit in PAT entry 0
2943 * in order to keep the global status page working.
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002944 */
2945 pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
2946 GEN8_PPAT(1, 0) |
2947 GEN8_PPAT(2, 0) |
2948 GEN8_PPAT(3, 0) |
2949 GEN8_PPAT(4, CHV_PPAT_SNOOP) |
2950 GEN8_PPAT(5, CHV_PPAT_SNOOP) |
2951 GEN8_PPAT(6, CHV_PPAT_SNOOP) |
2952 GEN8_PPAT(7, CHV_PPAT_SNOOP);
2953
Ville Syrjälä7e435ad2015-09-18 20:03:25 +03002954 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
2955 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002956}
2957
Ben Widawsky63340132013-11-04 19:32:22 -08002958static int gen8_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002959 u64 *gtt_total,
Ben Widawsky63340132013-11-04 19:32:22 -08002960 size_t *stolen,
2961 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002962 u64 *mappable_end)
Ben Widawsky63340132013-11-04 19:32:22 -08002963{
2964 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002965 u64 gtt_size;
Ben Widawsky63340132013-11-04 19:32:22 -08002966 u16 snb_gmch_ctl;
2967 int ret;
2968
2969 /* TODO: We're not aware of mappable constraints on gen8 yet */
2970 *mappable_base = pci_resource_start(dev->pdev, 2);
2971 *mappable_end = pci_resource_len(dev->pdev, 2);
2972
2973 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(39)))
2974 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(39));
2975
2976 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
2977
Damien Lespiau66375012014-01-09 18:02:46 +00002978 if (INTEL_INFO(dev)->gen >= 9) {
2979 *stolen = gen9_get_stolen_size(snb_gmch_ctl);
2980 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
2981 } else if (IS_CHERRYVIEW(dev)) {
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002982 *stolen = chv_get_stolen_size(snb_gmch_ctl);
2983 gtt_size = chv_get_total_gtt_size(snb_gmch_ctl);
2984 } else {
2985 *stolen = gen8_get_stolen_size(snb_gmch_ctl);
2986 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
2987 }
Ben Widawsky63340132013-11-04 19:32:22 -08002988
Michel Thierry07749ef2015-03-16 16:00:54 +00002989 *gtt_total = (gtt_size / sizeof(gen8_pte_t)) << PAGE_SHIFT;
Ben Widawsky63340132013-11-04 19:32:22 -08002990
Sumit Singh5a4e33a2015-03-17 11:39:31 +02002991 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002992 chv_setup_private_ppat(dev_priv);
2993 else
2994 bdw_setup_private_ppat(dev_priv);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002995
Ben Widawsky63340132013-11-04 19:32:22 -08002996 ret = ggtt_probe_common(dev, gtt_size);
2997
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002998 dev_priv->gtt.base.clear_range = gen8_ggtt_clear_range;
2999 dev_priv->gtt.base.insert_entries = gen8_ggtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003000 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
3001 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawsky63340132013-11-04 19:32:22 -08003002
3003 return ret;
3004}
3005
Ben Widawskybaa09f52013-01-24 13:49:57 -08003006static int gen6_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003007 u64 *gtt_total,
Ben Widawsky41907dd2013-02-08 11:32:47 -08003008 size_t *stolen,
3009 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003010 u64 *mappable_end)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003011{
3012 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003013 unsigned int gtt_size;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003014 u16 snb_gmch_ctl;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003015 int ret;
3016
Ben Widawsky41907dd2013-02-08 11:32:47 -08003017 *mappable_base = pci_resource_start(dev->pdev, 2);
3018 *mappable_end = pci_resource_len(dev->pdev, 2);
3019
Ben Widawskybaa09f52013-01-24 13:49:57 -08003020 /* 64/512MB is the current min/max we actually know of, but this is just
3021 * a coarse sanity check.
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003022 */
Ben Widawsky41907dd2013-02-08 11:32:47 -08003023 if ((*mappable_end < (64<<20) || (*mappable_end > (512<<20)))) {
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003024 DRM_ERROR("Unknown GMADR size (%llx)\n",
Ben Widawskybaa09f52013-01-24 13:49:57 -08003025 dev_priv->gtt.mappable_end);
3026 return -ENXIO;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003027 }
3028
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003029 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(40)))
3030 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(40));
Ben Widawskybaa09f52013-01-24 13:49:57 -08003031 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003032
Ben Widawskyc4ae25e2013-05-01 11:00:34 -07003033 *stolen = gen6_get_stolen_size(snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003034
Ben Widawsky63340132013-11-04 19:32:22 -08003035 gtt_size = gen6_get_total_gtt_size(snb_gmch_ctl);
Michel Thierry07749ef2015-03-16 16:00:54 +00003036 *gtt_total = (gtt_size / sizeof(gen6_pte_t)) << PAGE_SHIFT;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003037
Ben Widawsky63340132013-11-04 19:32:22 -08003038 ret = ggtt_probe_common(dev, gtt_size);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003039
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003040 dev_priv->gtt.base.clear_range = gen6_ggtt_clear_range;
3041 dev_priv->gtt.base.insert_entries = gen6_ggtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003042 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
3043 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003044
3045 return ret;
3046}
3047
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003048static void gen6_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003049{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003050
3051 struct i915_gtt *gtt = container_of(vm, struct i915_gtt, base);
Ben Widawsky5ed16782013-11-25 09:54:43 -08003052
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003053 iounmap(gtt->gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03003054 free_scratch_page(vm->dev, vm->scratch_page);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003055}
3056
3057static int i915_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003058 u64 *gtt_total,
Ben Widawsky41907dd2013-02-08 11:32:47 -08003059 size_t *stolen,
3060 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003061 u64 *mappable_end)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003062{
3063 struct drm_i915_private *dev_priv = dev->dev_private;
3064 int ret;
3065
Ben Widawskybaa09f52013-01-24 13:49:57 -08003066 ret = intel_gmch_probe(dev_priv->bridge_dev, dev_priv->dev->pdev, NULL);
3067 if (!ret) {
3068 DRM_ERROR("failed to set up gmch\n");
3069 return -EIO;
3070 }
3071
Ben Widawsky41907dd2013-02-08 11:32:47 -08003072 intel_gtt_get(gtt_total, stolen, mappable_base, mappable_end);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003073
3074 dev_priv->gtt.do_idle_maps = needs_idle_maps(dev_priv->dev);
Daniel Vetterd369d2d2015-04-14 17:35:25 +02003075 dev_priv->gtt.base.insert_entries = i915_ggtt_insert_entries;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003076 dev_priv->gtt.base.clear_range = i915_ggtt_clear_range;
Daniel Vetterd369d2d2015-04-14 17:35:25 +02003077 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
3078 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003079
Chris Wilsonc0a7f812013-12-30 12:16:15 +00003080 if (unlikely(dev_priv->gtt.do_idle_maps))
3081 DRM_INFO("applying Ironlake quirks for intel_iommu\n");
3082
Ben Widawskybaa09f52013-01-24 13:49:57 -08003083 return 0;
3084}
3085
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003086static void i915_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003087{
3088 intel_gmch_remove();
3089}
3090
3091int i915_gem_gtt_init(struct drm_device *dev)
3092{
3093 struct drm_i915_private *dev_priv = dev->dev_private;
3094 struct i915_gtt *gtt = &dev_priv->gtt;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003095 int ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003096
Ben Widawskybaa09f52013-01-24 13:49:57 -08003097 if (INTEL_INFO(dev)->gen <= 5) {
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003098 gtt->gtt_probe = i915_gmch_probe;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003099 gtt->base.cleanup = i915_gmch_remove;
Ben Widawsky63340132013-11-04 19:32:22 -08003100 } else if (INTEL_INFO(dev)->gen < 8) {
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003101 gtt->gtt_probe = gen6_gmch_probe;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003102 gtt->base.cleanup = gen6_gmch_remove;
Ben Widawsky4d15c142013-07-04 11:02:06 -07003103 if (IS_HASWELL(dev) && dev_priv->ellc_size)
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003104 gtt->base.pte_encode = iris_pte_encode;
Ben Widawsky4d15c142013-07-04 11:02:06 -07003105 else if (IS_HASWELL(dev))
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003106 gtt->base.pte_encode = hsw_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003107 else if (IS_VALLEYVIEW(dev))
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003108 gtt->base.pte_encode = byt_pte_encode;
Chris Wilson350ec882013-08-06 13:17:02 +01003109 else if (INTEL_INFO(dev)->gen >= 7)
3110 gtt->base.pte_encode = ivb_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003111 else
Chris Wilson350ec882013-08-06 13:17:02 +01003112 gtt->base.pte_encode = snb_pte_encode;
Ben Widawsky63340132013-11-04 19:32:22 -08003113 } else {
3114 dev_priv->gtt.gtt_probe = gen8_gmch_probe;
3115 dev_priv->gtt.base.cleanup = gen6_gmch_remove;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003116 }
3117
Mika Kuoppalac114f762015-06-25 18:35:13 +03003118 gtt->base.dev = dev;
3119
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003120 ret = gtt->gtt_probe(dev, &gtt->base.total, &gtt->stolen_size,
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003121 &gtt->mappable_base, &gtt->mappable_end);
Ben Widawskya54c0c22013-01-24 14:45:00 -08003122 if (ret)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003123 return ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003124
Ben Widawskybaa09f52013-01-24 13:49:57 -08003125 /* GMADR is the PCI mmio aperture into the global GTT. */
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003126 DRM_INFO("Memory usable by graphics device = %lluM\n",
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003127 gtt->base.total >> 20);
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003128 DRM_DEBUG_DRIVER("GMADR size = %lldM\n", gtt->mappable_end >> 20);
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003129 DRM_DEBUG_DRIVER("GTT stolen size = %zdM\n", gtt->stolen_size >> 20);
Daniel Vetter5db6c732014-03-31 16:23:04 +02003130#ifdef CONFIG_INTEL_IOMMU
3131 if (intel_iommu_gfx_mapped)
3132 DRM_INFO("VT-d active for gfx access\n");
3133#endif
Daniel Vettercfa7c862014-04-29 11:53:58 +02003134 /*
3135 * i915.enable_ppgtt is read-only, so do an early pass to validate the
3136 * user's requested state against the hardware/driver capabilities. We
3137 * do this now so that we can print out any log messages once rather
3138 * than every time we check intel_enable_ppgtt().
3139 */
3140 i915.enable_ppgtt = sanitize_enable_ppgtt(dev, i915.enable_ppgtt);
3141 DRM_DEBUG_DRIVER("ppgtt mode: %i\n", i915.enable_ppgtt);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08003142
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003143 return 0;
Daniel Vetter644ec022012-03-26 09:45:40 +02003144}
Ben Widawsky6f65e292013-12-06 14:10:56 -08003145
Daniel Vetterfa423312015-04-14 17:35:23 +02003146void i915_gem_restore_gtt_mappings(struct drm_device *dev)
3147{
3148 struct drm_i915_private *dev_priv = dev->dev_private;
3149 struct drm_i915_gem_object *obj;
3150 struct i915_address_space *vm;
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003151 struct i915_vma *vma;
3152 bool flush;
Daniel Vetterfa423312015-04-14 17:35:23 +02003153
3154 i915_check_and_clear_faults(dev);
3155
3156 /* First fill our portion of the GTT with scratch pages */
3157 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
3158 dev_priv->gtt.base.start,
3159 dev_priv->gtt.base.total,
3160 true);
3161
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003162 /* Cache flush objects bound into GGTT and rebind them. */
3163 vm = &dev_priv->gtt.base;
Daniel Vetterfa423312015-04-14 17:35:23 +02003164 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003165 flush = false;
3166 list_for_each_entry(vma, &obj->vma_list, vma_link) {
3167 if (vma->vm != vm)
3168 continue;
Daniel Vetterfa423312015-04-14 17:35:23 +02003169
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003170 WARN_ON(i915_vma_bind(vma, obj->cache_level,
3171 PIN_UPDATE));
3172
3173 flush = true;
3174 }
3175
3176 if (flush)
3177 i915_gem_clflush_object(obj, obj->pin_display);
Daniel Vetterfa423312015-04-14 17:35:23 +02003178 }
3179
Daniel Vetterfa423312015-04-14 17:35:23 +02003180 if (INTEL_INFO(dev)->gen >= 8) {
3181 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
3182 chv_setup_private_ppat(dev_priv);
3183 else
3184 bdw_setup_private_ppat(dev_priv);
3185
3186 return;
3187 }
3188
3189 if (USES_PPGTT(dev)) {
3190 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
3191 /* TODO: Perhaps it shouldn't be gen6 specific */
3192
3193 struct i915_hw_ppgtt *ppgtt =
3194 container_of(vm, struct i915_hw_ppgtt,
3195 base);
3196
3197 if (i915_is_ggtt(vm))
3198 ppgtt = dev_priv->mm.aliasing_ppgtt;
3199
3200 gen6_write_page_range(dev_priv, &ppgtt->pd,
3201 0, ppgtt->base.total);
3202 }
3203 }
3204
3205 i915_ggtt_flush(dev_priv);
3206}
3207
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003208static struct i915_vma *
3209__i915_gem_vma_create(struct drm_i915_gem_object *obj,
3210 struct i915_address_space *vm,
3211 const struct i915_ggtt_view *ggtt_view)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003212{
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003213 struct i915_vma *vma;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003214
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003215 if (WARN_ON(i915_is_ggtt(vm) != !!ggtt_view))
3216 return ERR_PTR(-EINVAL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01003217
3218 vma = kmem_cache_zalloc(to_i915(obj->base.dev)->vmas, GFP_KERNEL);
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003219 if (vma == NULL)
3220 return ERR_PTR(-ENOMEM);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003221
Ben Widawsky6f65e292013-12-06 14:10:56 -08003222 INIT_LIST_HEAD(&vma->vma_link);
3223 INIT_LIST_HEAD(&vma->mm_list);
3224 INIT_LIST_HEAD(&vma->exec_list);
3225 vma->vm = vm;
3226 vma->obj = obj;
3227
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003228 if (i915_is_ggtt(vm))
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003229 vma->ggtt_view = *ggtt_view;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003230
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00003231 list_add_tail(&vma->vma_link, &obj->vma_list);
3232 if (!i915_is_ggtt(vm))
Michel Thierrye07f0552014-08-19 15:49:41 +01003233 i915_ppgtt_get(i915_vm_to_ppgtt(vm));
Ben Widawsky6f65e292013-12-06 14:10:56 -08003234
3235 return vma;
3236}
3237
3238struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003239i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
3240 struct i915_address_space *vm)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003241{
3242 struct i915_vma *vma;
3243
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003244 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003245 if (!vma)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003246 vma = __i915_gem_vma_create(obj, vm,
3247 i915_is_ggtt(vm) ? &i915_ggtt_view_normal : NULL);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003248
3249 return vma;
3250}
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003251
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003252struct i915_vma *
3253i915_gem_obj_lookup_or_create_ggtt_vma(struct drm_i915_gem_object *obj,
3254 const struct i915_ggtt_view *view)
3255{
3256 struct i915_address_space *ggtt = i915_obj_to_ggtt(obj);
3257 struct i915_vma *vma;
3258
3259 if (WARN_ON(!view))
3260 return ERR_PTR(-EINVAL);
3261
3262 vma = i915_gem_obj_to_ggtt_view(obj, view);
3263
3264 if (IS_ERR(vma))
3265 return vma;
3266
3267 if (!vma)
3268 vma = __i915_gem_vma_create(obj, ggtt, view);
3269
3270 return vma;
3271
3272}
3273
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003274static struct scatterlist *
3275rotate_pages(dma_addr_t *in, unsigned int offset,
3276 unsigned int width, unsigned int height,
3277 struct sg_table *st, struct scatterlist *sg)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003278{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003279 unsigned int column, row;
3280 unsigned int src_idx;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003281
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003282 if (!sg) {
3283 st->nents = 0;
3284 sg = st->sgl;
3285 }
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003286
3287 for (column = 0; column < width; column++) {
3288 src_idx = width * (height - 1) + column;
3289 for (row = 0; row < height; row++) {
3290 st->nents++;
3291 /* We don't need the pages, but need to initialize
3292 * the entries so the sg list can be happily traversed.
3293 * The only thing we need are DMA addresses.
3294 */
3295 sg_set_page(sg, NULL, PAGE_SIZE, 0);
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003296 sg_dma_address(sg) = in[offset + src_idx];
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003297 sg_dma_len(sg) = PAGE_SIZE;
3298 sg = sg_next(sg);
3299 src_idx -= width;
3300 }
3301 }
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003302
3303 return sg;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003304}
3305
3306static struct sg_table *
3307intel_rotate_fb_obj_pages(struct i915_ggtt_view *ggtt_view,
3308 struct drm_i915_gem_object *obj)
3309{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003310 struct intel_rotation_info *rot_info = &ggtt_view->rotation_info;
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003311 unsigned int size_pages = rot_info->size >> PAGE_SHIFT;
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003312 unsigned int size_pages_uv;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003313 struct sg_page_iter sg_iter;
3314 unsigned long i;
3315 dma_addr_t *page_addr_list;
3316 struct sg_table *st;
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003317 unsigned int uv_start_page;
3318 struct scatterlist *sg;
Tvrtko Ursulin1d00dad2015-03-25 10:15:26 +00003319 int ret = -ENOMEM;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003320
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003321 /* Allocate a temporary list of source pages for random access. */
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003322 page_addr_list = drm_malloc_ab(obj->base.size / PAGE_SIZE,
3323 sizeof(dma_addr_t));
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003324 if (!page_addr_list)
3325 return ERR_PTR(ret);
3326
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003327 /* Account for UV plane with NV12. */
3328 if (rot_info->pixel_format == DRM_FORMAT_NV12)
3329 size_pages_uv = rot_info->size_uv >> PAGE_SHIFT;
3330 else
3331 size_pages_uv = 0;
3332
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003333 /* Allocate target SG list. */
3334 st = kmalloc(sizeof(*st), GFP_KERNEL);
3335 if (!st)
3336 goto err_st_alloc;
3337
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003338 ret = sg_alloc_table(st, size_pages + size_pages_uv, GFP_KERNEL);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003339 if (ret)
3340 goto err_sg_alloc;
3341
3342 /* Populate source page list from the object. */
3343 i = 0;
3344 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
3345 page_addr_list[i] = sg_page_iter_dma_address(&sg_iter);
3346 i++;
3347 }
3348
3349 /* Rotate the pages. */
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003350 sg = rotate_pages(page_addr_list, 0,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003351 rot_info->width_pages, rot_info->height_pages,
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003352 st, NULL);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003353
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003354 /* Append the UV plane if NV12. */
3355 if (rot_info->pixel_format == DRM_FORMAT_NV12) {
3356 uv_start_page = size_pages;
3357
3358 /* Check for tile-row un-alignment. */
3359 if (offset_in_page(rot_info->uv_offset))
3360 uv_start_page--;
3361
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01003362 rot_info->uv_start_page = uv_start_page;
3363
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003364 rotate_pages(page_addr_list, uv_start_page,
3365 rot_info->width_pages_uv,
3366 rot_info->height_pages_uv,
3367 st, sg);
3368 }
3369
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003370 DRM_DEBUG_KMS(
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003371 "Created rotated page mapping for object size %zu (pitch=%u, height=%u, pixel_format=0x%x, %ux%u tiles, %u pages (%u plane 0)).\n",
Tvrtko Ursulinc9f8fd22015-06-24 09:55:20 +01003372 obj->base.size, rot_info->pitch, rot_info->height,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003373 rot_info->pixel_format, rot_info->width_pages,
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003374 rot_info->height_pages, size_pages + size_pages_uv,
3375 size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003376
3377 drm_free_large(page_addr_list);
3378
3379 return st;
3380
3381err_sg_alloc:
3382 kfree(st);
3383err_st_alloc:
3384 drm_free_large(page_addr_list);
3385
3386 DRM_DEBUG_KMS(
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003387 "Failed to create rotated mapping for object size %zu! (%d) (pitch=%u, height=%u, pixel_format=0x%x, %ux%u tiles, %u pages (%u plane 0))\n",
Tvrtko Ursulinc9f8fd22015-06-24 09:55:20 +01003388 obj->base.size, ret, rot_info->pitch, rot_info->height,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003389 rot_info->pixel_format, rot_info->width_pages,
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003390 rot_info->height_pages, size_pages + size_pages_uv,
3391 size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003392 return ERR_PTR(ret);
3393}
3394
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003395static struct sg_table *
3396intel_partial_pages(const struct i915_ggtt_view *view,
3397 struct drm_i915_gem_object *obj)
3398{
3399 struct sg_table *st;
3400 struct scatterlist *sg;
3401 struct sg_page_iter obj_sg_iter;
3402 int ret = -ENOMEM;
3403
3404 st = kmalloc(sizeof(*st), GFP_KERNEL);
3405 if (!st)
3406 goto err_st_alloc;
3407
3408 ret = sg_alloc_table(st, view->params.partial.size, GFP_KERNEL);
3409 if (ret)
3410 goto err_sg_alloc;
3411
3412 sg = st->sgl;
3413 st->nents = 0;
3414 for_each_sg_page(obj->pages->sgl, &obj_sg_iter, obj->pages->nents,
3415 view->params.partial.offset)
3416 {
3417 if (st->nents >= view->params.partial.size)
3418 break;
3419
3420 sg_set_page(sg, NULL, PAGE_SIZE, 0);
3421 sg_dma_address(sg) = sg_page_iter_dma_address(&obj_sg_iter);
3422 sg_dma_len(sg) = PAGE_SIZE;
3423
3424 sg = sg_next(sg);
3425 st->nents++;
3426 }
3427
3428 return st;
3429
3430err_sg_alloc:
3431 kfree(st);
3432err_st_alloc:
3433 return ERR_PTR(ret);
3434}
3435
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003436static int
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003437i915_get_ggtt_vma_pages(struct i915_vma *vma)
3438{
3439 int ret = 0;
3440
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003441 if (vma->ggtt_view.pages)
3442 return 0;
3443
3444 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
3445 vma->ggtt_view.pages = vma->obj->pages;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003446 else if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED)
3447 vma->ggtt_view.pages =
3448 intel_rotate_fb_obj_pages(&vma->ggtt_view, vma->obj);
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003449 else if (vma->ggtt_view.type == I915_GGTT_VIEW_PARTIAL)
3450 vma->ggtt_view.pages =
3451 intel_partial_pages(&vma->ggtt_view, vma->obj);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003452 else
3453 WARN_ONCE(1, "GGTT view %u not implemented!\n",
3454 vma->ggtt_view.type);
3455
3456 if (!vma->ggtt_view.pages) {
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003457 DRM_ERROR("Failed to get pages for GGTT view type %u!\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003458 vma->ggtt_view.type);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003459 ret = -EINVAL;
3460 } else if (IS_ERR(vma->ggtt_view.pages)) {
3461 ret = PTR_ERR(vma->ggtt_view.pages);
3462 vma->ggtt_view.pages = NULL;
3463 DRM_ERROR("Failed to get pages for VMA view type %u (%d)!\n",
3464 vma->ggtt_view.type, ret);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003465 }
3466
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003467 return ret;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003468}
3469
3470/**
3471 * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
3472 * @vma: VMA to map
3473 * @cache_level: mapping cache level
3474 * @flags: flags like global or local mapping
3475 *
3476 * DMA addresses are taken from the scatter-gather table of this object (or of
3477 * this VMA in case of non-default GGTT views) and PTE entries set up.
3478 * Note that DMA addresses are also the only part of the SG table we care about.
3479 */
3480int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
3481 u32 flags)
3482{
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003483 int ret;
3484 u32 bind_flags;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003485
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003486 if (WARN_ON(flags == 0))
3487 return -EINVAL;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003488
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003489 bind_flags = 0;
Daniel Vetter08755462015-04-20 09:04:05 -07003490 if (flags & PIN_GLOBAL)
3491 bind_flags |= GLOBAL_BIND;
3492 if (flags & PIN_USER)
3493 bind_flags |= LOCAL_BIND;
3494
3495 if (flags & PIN_UPDATE)
3496 bind_flags |= vma->bound;
3497 else
3498 bind_flags &= ~vma->bound;
3499
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003500 if (bind_flags == 0)
3501 return 0;
3502
3503 if (vma->bound == 0 && vma->vm->allocate_va_range) {
3504 trace_i915_va_alloc(vma->vm,
3505 vma->node.start,
3506 vma->node.size,
3507 VM_TO_TRACE_NAME(vma->vm));
3508
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003509 /* XXX: i915_vma_pin() will fix this +- hack */
3510 vma->pin_count++;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003511 ret = vma->vm->allocate_va_range(vma->vm,
3512 vma->node.start,
3513 vma->node.size);
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003514 vma->pin_count--;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003515 if (ret)
3516 return ret;
3517 }
3518
3519 ret = vma->vm->bind_vma(vma, cache_level, bind_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003520 if (ret)
3521 return ret;
Daniel Vetter08755462015-04-20 09:04:05 -07003522
3523 vma->bound |= bind_flags;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003524
3525 return 0;
3526}
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003527
3528/**
3529 * i915_ggtt_view_size - Get the size of a GGTT view.
3530 * @obj: Object the view is of.
3531 * @view: The view in question.
3532 *
3533 * @return The size of the GGTT view in bytes.
3534 */
3535size_t
3536i915_ggtt_view_size(struct drm_i915_gem_object *obj,
3537 const struct i915_ggtt_view *view)
3538{
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003539 if (view->type == I915_GGTT_VIEW_NORMAL) {
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003540 return obj->base.size;
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003541 } else if (view->type == I915_GGTT_VIEW_ROTATED) {
3542 return view->rotation_info.size;
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003543 } else if (view->type == I915_GGTT_VIEW_PARTIAL) {
3544 return view->params.partial.size << PAGE_SHIFT;
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003545 } else {
3546 WARN_ONCE(1, "GGTT view %u not implemented!\n", view->type);
3547 return obj->base.size;
3548 }
3549}