blob: c14b8f8d0c87ee161ed990058c492c391b01c708 [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>
Chris Wilson5bab6f62015-10-23 18:43:32 +010027#include <linux/stop_machine.h>
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
29#include <drm/i915_drm.h>
Daniel Vetter76aaf222010-11-05 22:23:30 +010030#include "i915_drv.h"
Yu Zhang5dda8fa2015-02-10 19:05:48 +080031#include "i915_vgpu.h"
Daniel Vetter76aaf222010-11-05 22:23:30 +010032#include "i915_trace.h"
33#include "intel_drv.h"
34
Tvrtko Ursulin45f8f692014-12-10 17:27:59 +000035/**
36 * DOC: Global GTT views
37 *
38 * Background and previous state
39 *
40 * Historically objects could exists (be bound) in global GTT space only as
41 * singular instances with a view representing all of the object's backing pages
42 * in a linear fashion. This view will be called a normal view.
43 *
44 * To support multiple views of the same object, where the number of mapped
45 * pages is not equal to the backing store, or where the layout of the pages
46 * is not linear, concept of a GGTT view was added.
47 *
48 * One example of an alternative view is a stereo display driven by a single
49 * image. In this case we would have a framebuffer looking like this
50 * (2x2 pages):
51 *
52 * 12
53 * 34
54 *
55 * Above would represent a normal GGTT view as normally mapped for GPU or CPU
56 * rendering. In contrast, fed to the display engine would be an alternative
57 * view which could look something like this:
58 *
59 * 1212
60 * 3434
61 *
62 * In this example both the size and layout of pages in the alternative view is
63 * different from the normal view.
64 *
65 * Implementation and usage
66 *
67 * GGTT views are implemented using VMAs and are distinguished via enum
68 * i915_ggtt_view_type and struct i915_ggtt_view.
69 *
70 * A new flavour of core GEM functions which work with GGTT bound objects were
Joonas Lahtinenec7adb62015-03-16 14:11:13 +020071 * added with the _ggtt_ infix, and sometimes with _view postfix to avoid
72 * renaming in large amounts of code. They take the struct i915_ggtt_view
73 * parameter encapsulating all metadata required to implement a view.
Tvrtko Ursulin45f8f692014-12-10 17:27:59 +000074 *
75 * As a helper for callers which are only interested in the normal view,
76 * globally const i915_ggtt_view_normal singleton instance exists. All old core
77 * GEM API functions, the ones not taking the view parameter, are operating on,
78 * or with the normal GGTT view.
79 *
80 * Code wanting to add or use a new GGTT view needs to:
81 *
82 * 1. Add a new enum with a suitable name.
83 * 2. Extend the metadata in the i915_ggtt_view structure if required.
84 * 3. Add support to i915_get_vma_pages().
85 *
86 * New views are required to build a scatter-gather table from within the
87 * i915_get_vma_pages function. This table is stored in the vma.ggtt_view and
88 * exists for the lifetime of an VMA.
89 *
90 * Core API is designed to have copy semantics which means that passed in
91 * struct i915_ggtt_view does not need to be persistent (left around after
92 * calling the core API functions).
93 *
94 */
95
Daniel Vetter70b9f6f2015-04-14 17:35:27 +020096static int
97i915_get_ggtt_vma_pages(struct i915_vma *vma);
98
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +000099const struct i915_ggtt_view i915_ggtt_view_normal;
Joonas Lahtinen9abc4642015-03-27 13:09:22 +0200100const struct i915_ggtt_view i915_ggtt_view_rotated = {
101 .type = I915_GGTT_VIEW_ROTATED
102};
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +0000103
Daniel Vettercfa7c862014-04-29 11:53:58 +0200104static int sanitize_enable_ppgtt(struct drm_device *dev, int enable_ppgtt)
105{
Chris Wilson1893a712014-09-19 11:56:27 +0100106 bool has_aliasing_ppgtt;
107 bool has_full_ppgtt;
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100108 bool has_full_48bit_ppgtt;
Chris Wilson1893a712014-09-19 11:56:27 +0100109
110 has_aliasing_ppgtt = INTEL_INFO(dev)->gen >= 6;
111 has_full_ppgtt = INTEL_INFO(dev)->gen >= 7;
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100112 has_full_48bit_ppgtt = IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9;
Chris Wilson1893a712014-09-19 11:56:27 +0100113
Yu Zhang71ba2d62015-02-10 19:05:54 +0800114 if (intel_vgpu_active(dev))
115 has_full_ppgtt = false; /* emulation is too hard */
116
Damien Lespiau70ee45e2014-11-14 15:05:59 +0000117 /*
118 * We don't allow disabling PPGTT for gen9+ as it's a requirement for
119 * execlists, the sole mechanism available to submit work.
120 */
121 if (INTEL_INFO(dev)->gen < 9 &&
122 (enable_ppgtt == 0 || !has_aliasing_ppgtt))
Daniel Vettercfa7c862014-04-29 11:53:58 +0200123 return 0;
124
125 if (enable_ppgtt == 1)
126 return 1;
127
Chris Wilson1893a712014-09-19 11:56:27 +0100128 if (enable_ppgtt == 2 && has_full_ppgtt)
Daniel Vettercfa7c862014-04-29 11:53:58 +0200129 return 2;
130
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100131 if (enable_ppgtt == 3 && has_full_48bit_ppgtt)
132 return 3;
133
Daniel Vetter93a25a92014-03-06 09:40:43 +0100134#ifdef CONFIG_INTEL_IOMMU
135 /* Disable ppgtt on SNB if VT-d is on. */
136 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped) {
137 DRM_INFO("Disabling PPGTT because VT-d is on\n");
Daniel Vettercfa7c862014-04-29 11:53:58 +0200138 return 0;
Daniel Vetter93a25a92014-03-06 09:40:43 +0100139 }
140#endif
141
Jesse Barnes62942ed2014-06-13 09:28:33 -0700142 /* Early VLV doesn't have this */
Wayne Boyer666a4532015-12-09 12:29:35 -0800143 if (IS_VALLEYVIEW(dev) && 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));
Ville Syrjäläf92a9162015-11-04 23:20:07 +0200669 intel_ring_emit_reg(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));
Ville Syrjäläf92a9162015-11-04 23:20:07 +0200672 intel_ring_emit_reg(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 {
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000772 uint64_t pml4e;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100773 struct i915_page_directory_pointer *pdp;
774
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000775 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, pml4e) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100776 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;
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000841 uint64_t pml4e;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100842 uint64_t length = (uint64_t)pages->orig_nents << PAGE_SHIFT;
843
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000844 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, pml4e) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100845 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;
Zhiyuan Lv650da342015-08-28 15:41:18 +0800912 int i;
913
914 if (USES_FULL_48BIT_PPGTT(dev)) {
915 u64 daddr = px_dma(&ppgtt->pml4);
916
Ville Syrjäläab75bb52015-11-04 23:20:12 +0200917 I915_WRITE(vgtif_reg(pdp[0].lo), lower_32_bits(daddr));
918 I915_WRITE(vgtif_reg(pdp[0].hi), upper_32_bits(daddr));
Zhiyuan Lv650da342015-08-28 15:41:18 +0800919
920 msg = (create ? VGT_G2V_PPGTT_L4_PAGE_TABLE_CREATE :
921 VGT_G2V_PPGTT_L4_PAGE_TABLE_DESTROY);
922 } else {
923 for (i = 0; i < GEN8_LEGACY_PDPES; i++) {
924 u64 daddr = i915_page_dir_dma_addr(ppgtt, i);
925
Ville Syrjäläab75bb52015-11-04 23:20:12 +0200926 I915_WRITE(vgtif_reg(pdp[i].lo), lower_32_bits(daddr));
927 I915_WRITE(vgtif_reg(pdp[i].hi), upper_32_bits(daddr));
Zhiyuan Lv650da342015-08-28 15:41:18 +0800928 }
929
930 msg = (create ? VGT_G2V_PPGTT_L3_PAGE_TABLE_CREATE :
931 VGT_G2V_PPGTT_L3_PAGE_TABLE_DESTROY);
932 }
933
934 I915_WRITE(vgtif_reg(g2v_notify), msg);
935
936 return 0;
937}
938
Mika Kuoppala8776f022015-06-30 18:16:40 +0300939static void gen8_free_scratch(struct i915_address_space *vm)
940{
941 struct drm_device *dev = vm->dev;
942
Michel Thierry69ab76f2015-07-29 17:23:55 +0100943 if (USES_FULL_48BIT_PPGTT(dev))
944 free_pdp(dev, vm->scratch_pdp);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300945 free_pd(dev, vm->scratch_pd);
946 free_pt(dev, vm->scratch_pt);
947 free_scratch_page(dev, vm->scratch_page);
948}
949
Michel Thierry762d9932015-07-30 11:05:29 +0100950static void gen8_ppgtt_cleanup_3lvl(struct drm_device *dev,
951 struct i915_page_directory_pointer *pdp)
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800952{
953 int i;
954
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100955 for_each_set_bit(i, pdp->used_pdpes, I915_PDPES_PER_PDP(dev)) {
956 if (WARN_ON(!pdp->page_directory[i]))
Ben Widawsky06fda602015-02-24 16:22:36 +0000957 continue;
958
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100959 gen8_free_page_tables(dev, pdp->page_directory[i]);
960 free_pd(dev, pdp->page_directory[i]);
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800961 }
Michel Thierry69876be2015-04-08 12:13:27 +0100962
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100963 free_pdp(dev, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100964}
965
966static void gen8_ppgtt_cleanup_4lvl(struct i915_hw_ppgtt *ppgtt)
967{
968 int i;
969
970 for_each_set_bit(i, ppgtt->pml4.used_pml4es, GEN8_PML4ES_PER_PML4) {
971 if (WARN_ON(!ppgtt->pml4.pdps[i]))
972 continue;
973
974 gen8_ppgtt_cleanup_3lvl(ppgtt->base.dev, ppgtt->pml4.pdps[i]);
975 }
976
977 cleanup_px(ppgtt->base.dev, &ppgtt->pml4);
978}
979
980static void gen8_ppgtt_cleanup(struct i915_address_space *vm)
981{
982 struct i915_hw_ppgtt *ppgtt =
983 container_of(vm, struct i915_hw_ppgtt, base);
984
Zhiyuan Lv650da342015-08-28 15:41:18 +0800985 if (intel_vgpu_active(vm->dev))
986 gen8_ppgtt_notify_vgt(ppgtt, false);
987
Michel Thierry762d9932015-07-30 11:05:29 +0100988 if (!USES_FULL_48BIT_PPGTT(ppgtt->base.dev))
989 gen8_ppgtt_cleanup_3lvl(ppgtt->base.dev, &ppgtt->pdp);
990 else
991 gen8_ppgtt_cleanup_4lvl(ppgtt);
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100992
Mika Kuoppala8776f022015-06-30 18:16:40 +0300993 gen8_free_scratch(vm);
Ben Widawskyb45a6712014-02-12 14:28:44 -0800994}
995
Michel Thierryd7b26332015-04-08 12:13:34 +0100996/**
997 * gen8_ppgtt_alloc_pagetabs() - Allocate page tables for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100998 * @vm: Master vm structure.
999 * @pd: Page directory for this address range.
Michel Thierryd7b26332015-04-08 12:13:34 +01001000 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001001 * @length: Size of the allocations.
Michel Thierryd7b26332015-04-08 12:13:34 +01001002 * @new_pts: Bitmap set by function with new allocations. Likely used by the
1003 * caller to free on error.
1004 *
1005 * Allocate the required number of page tables. Extremely similar to
1006 * gen8_ppgtt_alloc_page_directories(). The main difference is here we are limited by
1007 * the page directory boundary (instead of the page directory pointer). That
1008 * boundary is 1GB virtual. Therefore, unlike gen8_ppgtt_alloc_page_directories(), it is
1009 * possible, and likely that the caller will need to use multiple calls of this
1010 * function to achieve the appropriate allocation.
1011 *
1012 * Return: 0 if success; negative error code otherwise.
1013 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001014static int gen8_ppgtt_alloc_pagetabs(struct i915_address_space *vm,
Michel Thierrye5815a22015-04-08 12:13:32 +01001015 struct i915_page_directory *pd,
Michel Thierry5441f0c2015-04-08 12:13:28 +01001016 uint64_t start,
Michel Thierryd7b26332015-04-08 12:13:34 +01001017 uint64_t length,
1018 unsigned long *new_pts)
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001019{
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001020 struct drm_device *dev = vm->dev;
Michel Thierryd7b26332015-04-08 12:13:34 +01001021 struct i915_page_table *pt;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001022 uint32_t pde;
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001023
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001024 gen8_for_each_pde(pt, pd, start, length, pde) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001025 /* Don't reallocate page tables */
Michel Thierry6ac18502015-07-29 17:23:46 +01001026 if (test_bit(pde, pd->used_pdes)) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001027 /* Scratch is never allocated this way */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001028 WARN_ON(pt == vm->scratch_pt);
Michel Thierryd7b26332015-04-08 12:13:34 +01001029 continue;
1030 }
1031
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001032 pt = alloc_pt(dev);
Michel Thierryd7b26332015-04-08 12:13:34 +01001033 if (IS_ERR(pt))
Ben Widawsky06fda602015-02-24 16:22:36 +00001034 goto unwind_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001035
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001036 gen8_initialize_pt(vm, pt);
Michel Thierryd7b26332015-04-08 12:13:34 +01001037 pd->page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001038 __set_bit(pde, new_pts);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001039 trace_i915_page_table_entry_alloc(vm, pde, start, GEN8_PDE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001040 }
1041
1042 return 0;
1043
1044unwind_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001045 for_each_set_bit(pde, new_pts, I915_PDES)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001046 free_pt(dev, pd->page_table[pde]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001047
1048 return -ENOMEM;
1049}
1050
Michel Thierryd7b26332015-04-08 12:13:34 +01001051/**
1052 * gen8_ppgtt_alloc_page_directories() - Allocate page directories for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001053 * @vm: Master vm structure.
Michel Thierryd7b26332015-04-08 12:13:34 +01001054 * @pdp: Page directory pointer for this address range.
1055 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001056 * @length: Size of the allocations.
1057 * @new_pds: Bitmap set by function with new allocations. Likely used by the
Michel Thierryd7b26332015-04-08 12:13:34 +01001058 * caller to free on error.
1059 *
1060 * Allocate the required number of page directories starting at the pde index of
1061 * @start, and ending at the pde index @start + @length. This function will skip
1062 * over already allocated page directories within the range, and only allocate
1063 * new ones, setting the appropriate pointer within the pdp as well as the
1064 * correct position in the bitmap @new_pds.
1065 *
1066 * The function will only allocate the pages within the range for a give page
1067 * directory pointer. In other words, if @start + @length straddles a virtually
1068 * addressed PDP boundary (512GB for 4k pages), there will be more allocations
1069 * required by the caller, This is not currently possible, and the BUG in the
1070 * code will prevent it.
1071 *
1072 * Return: 0 if success; negative error code otherwise.
1073 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001074static int
1075gen8_ppgtt_alloc_page_directories(struct i915_address_space *vm,
1076 struct i915_page_directory_pointer *pdp,
1077 uint64_t start,
1078 uint64_t length,
1079 unsigned long *new_pds)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001080{
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001081 struct drm_device *dev = vm->dev;
Michel Thierryd7b26332015-04-08 12:13:34 +01001082 struct i915_page_directory *pd;
Michel Thierry69876be2015-04-08 12:13:27 +01001083 uint32_t pdpe;
Michel Thierry6ac18502015-07-29 17:23:46 +01001084 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001085
Michel Thierry6ac18502015-07-29 17:23:46 +01001086 WARN_ON(!bitmap_empty(new_pds, pdpes));
Michel Thierryd7b26332015-04-08 12:13:34 +01001087
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001088 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierry6ac18502015-07-29 17:23:46 +01001089 if (test_bit(pdpe, pdp->used_pdpes))
Michel Thierryd7b26332015-04-08 12:13:34 +01001090 continue;
Michel Thierry33c88192015-04-08 12:13:33 +01001091
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001092 pd = alloc_pd(dev);
Michel Thierryd7b26332015-04-08 12:13:34 +01001093 if (IS_ERR(pd))
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001094 goto unwind_out;
Michel Thierry69876be2015-04-08 12:13:27 +01001095
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001096 gen8_initialize_pd(vm, pd);
Michel Thierryd7b26332015-04-08 12:13:34 +01001097 pdp->page_directory[pdpe] = pd;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001098 __set_bit(pdpe, new_pds);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001099 trace_i915_page_directory_entry_alloc(vm, pdpe, start, GEN8_PDPE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001100 }
1101
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001102 return 0;
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001103
1104unwind_out:
Michel Thierry6ac18502015-07-29 17:23:46 +01001105 for_each_set_bit(pdpe, new_pds, pdpes)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001106 free_pd(dev, pdp->page_directory[pdpe]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001107
1108 return -ENOMEM;
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001109}
1110
Michel Thierry762d9932015-07-30 11:05:29 +01001111/**
1112 * gen8_ppgtt_alloc_page_dirpointers() - Allocate pdps for VA range.
1113 * @vm: Master vm structure.
1114 * @pml4: Page map level 4 for this address range.
1115 * @start: Starting virtual address to begin allocations.
1116 * @length: Size of the allocations.
1117 * @new_pdps: Bitmap set by function with new allocations. Likely used by the
1118 * caller to free on error.
1119 *
1120 * Allocate the required number of page directory pointers. Extremely similar to
1121 * gen8_ppgtt_alloc_page_directories() and gen8_ppgtt_alloc_pagetabs().
1122 * The main difference is here we are limited by the pml4 boundary (instead of
1123 * the page directory pointer).
1124 *
1125 * Return: 0 if success; negative error code otherwise.
1126 */
1127static int
1128gen8_ppgtt_alloc_page_dirpointers(struct i915_address_space *vm,
1129 struct i915_pml4 *pml4,
1130 uint64_t start,
1131 uint64_t length,
1132 unsigned long *new_pdps)
1133{
1134 struct drm_device *dev = vm->dev;
1135 struct i915_page_directory_pointer *pdp;
Michel Thierry762d9932015-07-30 11:05:29 +01001136 uint32_t pml4e;
1137
1138 WARN_ON(!bitmap_empty(new_pdps, GEN8_PML4ES_PER_PML4));
1139
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001140 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierry762d9932015-07-30 11:05:29 +01001141 if (!test_bit(pml4e, pml4->used_pml4es)) {
1142 pdp = alloc_pdp(dev);
1143 if (IS_ERR(pdp))
1144 goto unwind_out;
1145
Michel Thierry69ab76f2015-07-29 17:23:55 +01001146 gen8_initialize_pdp(vm, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +01001147 pml4->pdps[pml4e] = pdp;
1148 __set_bit(pml4e, new_pdps);
1149 trace_i915_page_directory_pointer_entry_alloc(vm,
1150 pml4e,
1151 start,
1152 GEN8_PML4E_SHIFT);
1153 }
1154 }
1155
1156 return 0;
1157
1158unwind_out:
1159 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
1160 free_pdp(dev, pml4->pdps[pml4e]);
1161
1162 return -ENOMEM;
1163}
1164
Michel Thierryd7b26332015-04-08 12:13:34 +01001165static void
Michał Winiarski3a41a052015-09-03 19:22:18 +02001166free_gen8_temp_bitmaps(unsigned long *new_pds, unsigned long *new_pts)
Michel Thierryd7b26332015-04-08 12:13:34 +01001167{
Michel Thierryd7b26332015-04-08 12:13:34 +01001168 kfree(new_pts);
1169 kfree(new_pds);
1170}
1171
1172/* Fills in the page directory bitmap, and the array of page tables bitmap. Both
1173 * of these are based on the number of PDPEs in the system.
1174 */
1175static
1176int __must_check alloc_gen8_temp_bitmaps(unsigned long **new_pds,
Michał Winiarski3a41a052015-09-03 19:22:18 +02001177 unsigned long **new_pts,
Michel Thierry6ac18502015-07-29 17:23:46 +01001178 uint32_t pdpes)
Michel Thierryd7b26332015-04-08 12:13:34 +01001179{
Michel Thierryd7b26332015-04-08 12:13:34 +01001180 unsigned long *pds;
Michał Winiarski3a41a052015-09-03 19:22:18 +02001181 unsigned long *pts;
Michel Thierryd7b26332015-04-08 12:13:34 +01001182
Michał Winiarski3a41a052015-09-03 19:22:18 +02001183 pds = kcalloc(BITS_TO_LONGS(pdpes), sizeof(unsigned long), GFP_TEMPORARY);
Michel Thierryd7b26332015-04-08 12:13:34 +01001184 if (!pds)
1185 return -ENOMEM;
1186
Michał Winiarski3a41a052015-09-03 19:22:18 +02001187 pts = kcalloc(pdpes, BITS_TO_LONGS(I915_PDES) * sizeof(unsigned long),
1188 GFP_TEMPORARY);
1189 if (!pts)
1190 goto err_out;
Michel Thierryd7b26332015-04-08 12:13:34 +01001191
1192 *new_pds = pds;
1193 *new_pts = pts;
1194
1195 return 0;
1196
1197err_out:
Michał Winiarski3a41a052015-09-03 19:22:18 +02001198 free_gen8_temp_bitmaps(pds, pts);
Michel Thierryd7b26332015-04-08 12:13:34 +01001199 return -ENOMEM;
1200}
1201
Mika Kuoppala5b7e4c9c2015-06-25 18:35:03 +03001202/* PDE TLBs are a pain to invalidate on GEN8+. When we modify
1203 * the page table structures, we mark them dirty so that
1204 * context switching/execlist queuing code takes extra steps
1205 * to ensure that tlbs are flushed.
1206 */
1207static void mark_tlbs_dirty(struct i915_hw_ppgtt *ppgtt)
1208{
1209 ppgtt->pd_dirty_rings = INTEL_INFO(ppgtt->base.dev)->ring_mask;
1210}
1211
Michel Thierry762d9932015-07-30 11:05:29 +01001212static int gen8_alloc_va_range_3lvl(struct i915_address_space *vm,
1213 struct i915_page_directory_pointer *pdp,
1214 uint64_t start,
1215 uint64_t length)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001216{
Michel Thierrye5815a22015-04-08 12:13:32 +01001217 struct i915_hw_ppgtt *ppgtt =
1218 container_of(vm, struct i915_hw_ppgtt, base);
Michał Winiarski3a41a052015-09-03 19:22:18 +02001219 unsigned long *new_page_dirs, *new_page_tables;
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001220 struct drm_device *dev = vm->dev;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001221 struct i915_page_directory *pd;
Michel Thierry33c88192015-04-08 12:13:33 +01001222 const uint64_t orig_start = start;
1223 const uint64_t orig_length = length;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001224 uint32_t pdpe;
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001225 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001226 int ret;
1227
Michel Thierryd7b26332015-04-08 12:13:34 +01001228 /* Wrap is never okay since we can only represent 48b, and we don't
1229 * actually use the other side of the canonical address space.
1230 */
1231 if (WARN_ON(start + length < start))
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001232 return -ENODEV;
1233
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001234 if (WARN_ON(start + length > vm->total))
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001235 return -ENODEV;
Michel Thierryd7b26332015-04-08 12:13:34 +01001236
Michel Thierry6ac18502015-07-29 17:23:46 +01001237 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001238 if (ret)
1239 return ret;
1240
Michel Thierryd7b26332015-04-08 12:13:34 +01001241 /* Do the allocations first so we can easily bail out */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001242 ret = gen8_ppgtt_alloc_page_directories(vm, pdp, start, length,
1243 new_page_dirs);
Michel Thierryd7b26332015-04-08 12:13:34 +01001244 if (ret) {
Michał Winiarski3a41a052015-09-03 19:22:18 +02001245 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Michel Thierryd7b26332015-04-08 12:13:34 +01001246 return ret;
1247 }
1248
1249 /* For every page directory referenced, allocate page tables */
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001250 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001251 ret = gen8_ppgtt_alloc_pagetabs(vm, pd, start, length,
Michał Winiarski3a41a052015-09-03 19:22:18 +02001252 new_page_tables + pdpe * BITS_TO_LONGS(I915_PDES));
Michel Thierry5441f0c2015-04-08 12:13:28 +01001253 if (ret)
1254 goto err_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001255 }
1256
Michel Thierry33c88192015-04-08 12:13:33 +01001257 start = orig_start;
1258 length = orig_length;
1259
Michel Thierryd7b26332015-04-08 12:13:34 +01001260 /* Allocations have completed successfully, so set the bitmaps, and do
1261 * the mappings. */
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001262 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001263 gen8_pde_t *const page_directory = kmap_px(pd);
Michel Thierry33c88192015-04-08 12:13:33 +01001264 struct i915_page_table *pt;
Michel Thierry09120d42015-07-29 17:23:45 +01001265 uint64_t pd_len = length;
Michel Thierry33c88192015-04-08 12:13:33 +01001266 uint64_t pd_start = start;
1267 uint32_t pde;
1268
Michel Thierryd7b26332015-04-08 12:13:34 +01001269 /* Every pd should be allocated, we just did that above. */
1270 WARN_ON(!pd);
1271
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001272 gen8_for_each_pde(pt, pd, pd_start, pd_len, pde) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001273 /* Same reasoning as pd */
1274 WARN_ON(!pt);
1275 WARN_ON(!pd_len);
1276 WARN_ON(!gen8_pte_count(pd_start, pd_len));
1277
1278 /* Set our used ptes within the page table */
1279 bitmap_set(pt->used_ptes,
1280 gen8_pte_index(pd_start),
1281 gen8_pte_count(pd_start, pd_len));
1282
1283 /* Our pde is now pointing to the pagetable, pt */
Mika Kuoppala966082c2015-06-25 18:35:19 +03001284 __set_bit(pde, pd->used_pdes);
Michel Thierryd7b26332015-04-08 12:13:34 +01001285
1286 /* Map the PDE to the page table */
Mika Kuoppalafe36f552015-06-25 18:35:16 +03001287 page_directory[pde] = gen8_pde_encode(px_dma(pt),
1288 I915_CACHE_LLC);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001289 trace_i915_page_table_entry_map(&ppgtt->base, pde, pt,
1290 gen8_pte_index(start),
1291 gen8_pte_count(start, length),
1292 GEN8_PTES);
Michel Thierryd7b26332015-04-08 12:13:34 +01001293
1294 /* NB: We haven't yet mapped ptes to pages. At this
1295 * point we're still relying on insert_entries() */
Michel Thierry33c88192015-04-08 12:13:33 +01001296 }
Michel Thierryd7b26332015-04-08 12:13:34 +01001297
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001298 kunmap_px(ppgtt, page_directory);
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001299 __set_bit(pdpe, pdp->used_pdpes);
Michel Thierry762d9932015-07-30 11:05:29 +01001300 gen8_setup_page_directory(ppgtt, pdp, pd, pdpe);
Michel Thierry33c88192015-04-08 12:13:33 +01001301 }
1302
Michał Winiarski3a41a052015-09-03 19:22:18 +02001303 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Mika Kuoppala5b7e4c9c2015-06-25 18:35:03 +03001304 mark_tlbs_dirty(ppgtt);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001305 return 0;
1306
1307err_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001308 while (pdpe--) {
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001309 unsigned long temp;
1310
Michał Winiarski3a41a052015-09-03 19:22:18 +02001311 for_each_set_bit(temp, new_page_tables + pdpe *
1312 BITS_TO_LONGS(I915_PDES), I915_PDES)
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001313 free_pt(dev, pdp->page_directory[pdpe]->page_table[temp]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001314 }
1315
Michel Thierry6ac18502015-07-29 17:23:46 +01001316 for_each_set_bit(pdpe, new_page_dirs, pdpes)
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001317 free_pd(dev, pdp->page_directory[pdpe]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001318
Michał Winiarski3a41a052015-09-03 19:22:18 +02001319 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Mika Kuoppala5b7e4c9c2015-06-25 18:35:03 +03001320 mark_tlbs_dirty(ppgtt);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001321 return ret;
1322}
1323
Michel Thierry762d9932015-07-30 11:05:29 +01001324static int gen8_alloc_va_range_4lvl(struct i915_address_space *vm,
1325 struct i915_pml4 *pml4,
1326 uint64_t start,
1327 uint64_t length)
1328{
1329 DECLARE_BITMAP(new_pdps, GEN8_PML4ES_PER_PML4);
1330 struct i915_hw_ppgtt *ppgtt =
1331 container_of(vm, struct i915_hw_ppgtt, base);
1332 struct i915_page_directory_pointer *pdp;
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001333 uint64_t pml4e;
Michel Thierry762d9932015-07-30 11:05:29 +01001334 int ret = 0;
1335
1336 /* Do the pml4 allocations first, so we don't need to track the newly
1337 * allocated tables below the pdp */
1338 bitmap_zero(new_pdps, GEN8_PML4ES_PER_PML4);
1339
1340 /* The pagedirectory and pagetable allocations are done in the shared 3
1341 * and 4 level code. Just allocate the pdps.
1342 */
1343 ret = gen8_ppgtt_alloc_page_dirpointers(vm, pml4, start, length,
1344 new_pdps);
1345 if (ret)
1346 return ret;
1347
1348 WARN(bitmap_weight(new_pdps, GEN8_PML4ES_PER_PML4) > 2,
1349 "The allocation has spanned more than 512GB. "
1350 "It is highly likely this is incorrect.");
1351
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001352 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierry762d9932015-07-30 11:05:29 +01001353 WARN_ON(!pdp);
1354
1355 ret = gen8_alloc_va_range_3lvl(vm, pdp, start, length);
1356 if (ret)
1357 goto err_out;
1358
1359 gen8_setup_page_directory_pointer(ppgtt, pml4, pdp, pml4e);
1360 }
1361
1362 bitmap_or(pml4->used_pml4es, new_pdps, pml4->used_pml4es,
1363 GEN8_PML4ES_PER_PML4);
1364
1365 return 0;
1366
1367err_out:
1368 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
1369 gen8_ppgtt_cleanup_3lvl(vm->dev, pml4->pdps[pml4e]);
1370
1371 return ret;
1372}
1373
1374static int gen8_alloc_va_range(struct i915_address_space *vm,
1375 uint64_t start, uint64_t length)
1376{
1377 struct i915_hw_ppgtt *ppgtt =
1378 container_of(vm, struct i915_hw_ppgtt, base);
1379
1380 if (USES_FULL_48BIT_PPGTT(vm->dev))
1381 return gen8_alloc_va_range_4lvl(vm, &ppgtt->pml4, start, length);
1382 else
1383 return gen8_alloc_va_range_3lvl(vm, &ppgtt->pdp, start, length);
1384}
1385
Michel Thierryea91e402015-07-29 17:23:57 +01001386static void gen8_dump_pdp(struct i915_page_directory_pointer *pdp,
1387 uint64_t start, uint64_t length,
1388 gen8_pte_t scratch_pte,
1389 struct seq_file *m)
1390{
1391 struct i915_page_directory *pd;
Michel Thierryea91e402015-07-29 17:23:57 +01001392 uint32_t pdpe;
1393
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001394 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierryea91e402015-07-29 17:23:57 +01001395 struct i915_page_table *pt;
1396 uint64_t pd_len = length;
1397 uint64_t pd_start = start;
1398 uint32_t pde;
1399
1400 if (!test_bit(pdpe, pdp->used_pdpes))
1401 continue;
1402
1403 seq_printf(m, "\tPDPE #%d\n", pdpe);
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001404 gen8_for_each_pde(pt, pd, pd_start, pd_len, pde) {
Michel Thierryea91e402015-07-29 17:23:57 +01001405 uint32_t pte;
1406 gen8_pte_t *pt_vaddr;
1407
1408 if (!test_bit(pde, pd->used_pdes))
1409 continue;
1410
1411 pt_vaddr = kmap_px(pt);
1412 for (pte = 0; pte < GEN8_PTES; pte += 4) {
1413 uint64_t va =
1414 (pdpe << GEN8_PDPE_SHIFT) |
1415 (pde << GEN8_PDE_SHIFT) |
1416 (pte << GEN8_PTE_SHIFT);
1417 int i;
1418 bool found = false;
1419
1420 for (i = 0; i < 4; i++)
1421 if (pt_vaddr[pte + i] != scratch_pte)
1422 found = true;
1423 if (!found)
1424 continue;
1425
1426 seq_printf(m, "\t\t0x%llx [%03d,%03d,%04d]: =", va, pdpe, pde, pte);
1427 for (i = 0; i < 4; i++) {
1428 if (pt_vaddr[pte + i] != scratch_pte)
1429 seq_printf(m, " %llx", pt_vaddr[pte + i]);
1430 else
1431 seq_puts(m, " SCRATCH ");
1432 }
1433 seq_puts(m, "\n");
1434 }
1435 /* don't use kunmap_px, it could trigger
1436 * an unnecessary flush.
1437 */
1438 kunmap_atomic(pt_vaddr);
1439 }
1440 }
1441}
1442
1443static void gen8_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1444{
1445 struct i915_address_space *vm = &ppgtt->base;
1446 uint64_t start = ppgtt->base.start;
1447 uint64_t length = ppgtt->base.total;
1448 gen8_pte_t scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
1449 I915_CACHE_LLC, true);
1450
1451 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
1452 gen8_dump_pdp(&ppgtt->pdp, start, length, scratch_pte, m);
1453 } else {
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001454 uint64_t pml4e;
Michel Thierryea91e402015-07-29 17:23:57 +01001455 struct i915_pml4 *pml4 = &ppgtt->pml4;
1456 struct i915_page_directory_pointer *pdp;
1457
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001458 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierryea91e402015-07-29 17:23:57 +01001459 if (!test_bit(pml4e, pml4->used_pml4es))
1460 continue;
1461
1462 seq_printf(m, " PML4E #%llu\n", pml4e);
1463 gen8_dump_pdp(pdp, start, length, scratch_pte, m);
1464 }
1465 }
1466}
1467
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001468static int gen8_preallocate_top_level_pdps(struct i915_hw_ppgtt *ppgtt)
1469{
Michał Winiarski3a41a052015-09-03 19:22:18 +02001470 unsigned long *new_page_dirs, *new_page_tables;
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001471 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
1472 int ret;
1473
1474 /* We allocate temp bitmap for page tables for no gain
1475 * but as this is for init only, lets keep the things simple
1476 */
1477 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
1478 if (ret)
1479 return ret;
1480
1481 /* Allocate for all pdps regardless of how the ppgtt
1482 * was defined.
1483 */
1484 ret = gen8_ppgtt_alloc_page_directories(&ppgtt->base, &ppgtt->pdp,
1485 0, 1ULL << 32,
1486 new_page_dirs);
1487 if (!ret)
1488 *ppgtt->pdp.used_pdpes = *new_page_dirs;
1489
Michał Winiarski3a41a052015-09-03 19:22:18 +02001490 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001491
1492 return ret;
1493}
1494
Daniel Vettereb0b44a2015-03-18 14:47:59 +01001495/*
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001496 * GEN8 legacy ppgtt programming is accomplished through a max 4 PDP registers
1497 * with a net effect resembling a 2-level page table in normal x86 terms. Each
1498 * PDP represents 1GB of memory 4 * 512 * 512 * 4096 = 4GB legacy 32b address
1499 * space.
Ben Widawsky37aca442013-11-04 20:47:32 -08001500 *
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001501 */
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001502static int gen8_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky37aca442013-11-04 20:47:32 -08001503{
Mika Kuoppala8776f022015-06-30 18:16:40 +03001504 int ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001505
Mika Kuoppala8776f022015-06-30 18:16:40 +03001506 ret = gen8_init_scratch(&ppgtt->base);
1507 if (ret)
1508 return ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001509
Michel Thierryd7b26332015-04-08 12:13:34 +01001510 ppgtt->base.start = 0;
Michel Thierryd7b26332015-04-08 12:13:34 +01001511 ppgtt->base.cleanup = gen8_ppgtt_cleanup;
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001512 ppgtt->base.allocate_va_range = gen8_alloc_va_range;
Michel Thierryd7b26332015-04-08 12:13:34 +01001513 ppgtt->base.insert_entries = gen8_ppgtt_insert_entries;
Daniel Vetterc7e16f22015-04-14 17:35:11 +02001514 ppgtt->base.clear_range = gen8_ppgtt_clear_range;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02001515 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
1516 ppgtt->base.bind_vma = ppgtt_bind_vma;
Michel Thierryea91e402015-07-29 17:23:57 +01001517 ppgtt->debug_dump = gen8_dump_ppgtt;
Michel Thierryd7b26332015-04-08 12:13:34 +01001518
Michel Thierry762d9932015-07-30 11:05:29 +01001519 if (USES_FULL_48BIT_PPGTT(ppgtt->base.dev)) {
1520 ret = setup_px(ppgtt->base.dev, &ppgtt->pml4);
1521 if (ret)
1522 goto free_scratch;
Michel Thierry6ac18502015-07-29 17:23:46 +01001523
Michel Thierry69ab76f2015-07-29 17:23:55 +01001524 gen8_initialize_pml4(&ppgtt->base, &ppgtt->pml4);
1525
Michel Thierry762d9932015-07-30 11:05:29 +01001526 ppgtt->base.total = 1ULL << 48;
Michel Thierry2dba3232015-07-30 11:06:23 +01001527 ppgtt->switch_mm = gen8_48b_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001528 } else {
Michel Thierry25f50332015-08-07 17:40:19 +01001529 ret = __pdp_init(ppgtt->base.dev, &ppgtt->pdp);
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001530 if (ret)
1531 goto free_scratch;
1532
1533 ppgtt->base.total = 1ULL << 32;
Michel Thierry2dba3232015-07-30 11:06:23 +01001534 ppgtt->switch_mm = gen8_legacy_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001535 trace_i915_page_directory_pointer_entry_alloc(&ppgtt->base,
1536 0, 0,
1537 GEN8_PML4E_SHIFT);
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001538
1539 if (intel_vgpu_active(ppgtt->base.dev)) {
1540 ret = gen8_preallocate_top_level_pdps(ppgtt);
1541 if (ret)
1542 goto free_scratch;
1543 }
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001544 }
Michel Thierry6ac18502015-07-29 17:23:46 +01001545
Zhiyuan Lv650da342015-08-28 15:41:18 +08001546 if (intel_vgpu_active(ppgtt->base.dev))
1547 gen8_ppgtt_notify_vgt(ppgtt, true);
1548
Michel Thierryd7b26332015-04-08 12:13:34 +01001549 return 0;
Michel Thierry6ac18502015-07-29 17:23:46 +01001550
1551free_scratch:
1552 gen8_free_scratch(&ppgtt->base);
1553 return ret;
Michel Thierryd7b26332015-04-08 12:13:34 +01001554}
1555
Ben Widawsky87d60b62013-12-06 14:11:29 -08001556static void gen6_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1557{
Ben Widawsky87d60b62013-12-06 14:11:29 -08001558 struct i915_address_space *vm = &ppgtt->base;
Michel Thierry09942c62015-04-08 12:13:30 +01001559 struct i915_page_table *unused;
Michel Thierry07749ef2015-03-16 16:00:54 +00001560 gen6_pte_t scratch_pte;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001561 uint32_t pd_entry;
Michel Thierry09942c62015-04-08 12:13:30 +01001562 uint32_t pte, pde, temp;
1563 uint32_t start = ppgtt->base.start, length = ppgtt->base.total;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001564
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001565 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1566 I915_CACHE_LLC, true, 0);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001567
Michel Thierry09942c62015-04-08 12:13:30 +01001568 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001569 u32 expected;
Michel Thierry07749ef2015-03-16 16:00:54 +00001570 gen6_pte_t *pt_vaddr;
Mika Kuoppala567047b2015-06-25 18:35:12 +03001571 const dma_addr_t pt_addr = px_dma(ppgtt->pd.page_table[pde]);
Michel Thierry09942c62015-04-08 12:13:30 +01001572 pd_entry = readl(ppgtt->pd_addr + pde);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001573 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID);
1574
1575 if (pd_entry != expected)
1576 seq_printf(m, "\tPDE #%d mismatch: Actual PDE: %x Expected PDE: %x\n",
1577 pde,
1578 pd_entry,
1579 expected);
1580 seq_printf(m, "\tPDE: %x\n", pd_entry);
1581
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001582 pt_vaddr = kmap_px(ppgtt->pd.page_table[pde]);
1583
Michel Thierry07749ef2015-03-16 16:00:54 +00001584 for (pte = 0; pte < GEN6_PTES; pte+=4) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001585 unsigned long va =
Michel Thierry07749ef2015-03-16 16:00:54 +00001586 (pde * PAGE_SIZE * GEN6_PTES) +
Ben Widawsky87d60b62013-12-06 14:11:29 -08001587 (pte * PAGE_SIZE);
1588 int i;
1589 bool found = false;
1590 for (i = 0; i < 4; i++)
1591 if (pt_vaddr[pte + i] != scratch_pte)
1592 found = true;
1593 if (!found)
1594 continue;
1595
1596 seq_printf(m, "\t\t0x%lx [%03d,%04d]: =", va, pde, pte);
1597 for (i = 0; i < 4; i++) {
1598 if (pt_vaddr[pte + i] != scratch_pte)
1599 seq_printf(m, " %08x", pt_vaddr[pte + i]);
1600 else
1601 seq_puts(m, " SCRATCH ");
1602 }
1603 seq_puts(m, "\n");
1604 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001605 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001606 }
1607}
1608
Ben Widawsky678d96f2015-03-16 16:00:56 +00001609/* Write pde (index) from the page directory @pd to the page table @pt */
Michel Thierryec565b32015-04-08 12:13:23 +01001610static void gen6_write_pde(struct i915_page_directory *pd,
1611 const int pde, struct i915_page_table *pt)
Ben Widawsky61973492013-04-08 18:43:54 -07001612{
Ben Widawsky678d96f2015-03-16 16:00:56 +00001613 /* Caller needs to make sure the write completes if necessary */
1614 struct i915_hw_ppgtt *ppgtt =
1615 container_of(pd, struct i915_hw_ppgtt, pd);
1616 u32 pd_entry;
Ben Widawsky61973492013-04-08 18:43:54 -07001617
Mika Kuoppala567047b2015-06-25 18:35:12 +03001618 pd_entry = GEN6_PDE_ADDR_ENCODE(px_dma(pt));
Ben Widawsky678d96f2015-03-16 16:00:56 +00001619 pd_entry |= GEN6_PDE_VALID;
Ben Widawsky61973492013-04-08 18:43:54 -07001620
Ben Widawsky678d96f2015-03-16 16:00:56 +00001621 writel(pd_entry, ppgtt->pd_addr + pde);
1622}
Ben Widawsky61973492013-04-08 18:43:54 -07001623
Ben Widawsky678d96f2015-03-16 16:00:56 +00001624/* Write all the page tables found in the ppgtt structure to incrementing page
1625 * directories. */
1626static void gen6_write_page_range(struct drm_i915_private *dev_priv,
Michel Thierryec565b32015-04-08 12:13:23 +01001627 struct i915_page_directory *pd,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001628 uint32_t start, uint32_t length)
1629{
Michel Thierryec565b32015-04-08 12:13:23 +01001630 struct i915_page_table *pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001631 uint32_t pde, temp;
1632
1633 gen6_for_each_pde(pt, pd, start, length, temp, pde)
1634 gen6_write_pde(pd, pde, pt);
1635
1636 /* Make sure write is complete before other code can use this page
1637 * table. Also require for WC mapped PTEs */
1638 readl(dev_priv->gtt.gsm);
Ben Widawsky3e302542013-04-23 23:15:32 -07001639}
1640
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001641static uint32_t get_pd_offset(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky3e302542013-04-23 23:15:32 -07001642{
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001643 BUG_ON(ppgtt->pd.base.ggtt_offset & 0x3f);
Ben Widawsky3e302542013-04-23 23:15:32 -07001644
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001645 return (ppgtt->pd.base.ggtt_offset / 64) << 16;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001646}
Ben Widawsky61973492013-04-08 18:43:54 -07001647
Ben Widawsky90252e52013-12-06 14:11:12 -08001648static int hsw_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001649 struct drm_i915_gem_request *req)
Ben Widawsky90252e52013-12-06 14:11:12 -08001650{
John Harrisone85b26d2015-05-29 17:43:56 +01001651 struct intel_engine_cs *ring = req->ring;
Ben Widawsky90252e52013-12-06 14:11:12 -08001652 int ret;
Ben Widawsky61973492013-04-08 18:43:54 -07001653
Ben Widawsky90252e52013-12-06 14:11:12 -08001654 /* NB: TLBs must be flushed and invalidated before a switch */
John Harrisona84c3ae2015-05-29 17:43:57 +01001655 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001656 if (ret)
1657 return ret;
1658
John Harrison5fb9de12015-05-29 17:44:07 +01001659 ret = intel_ring_begin(req, 6);
Ben Widawsky90252e52013-12-06 14:11:12 -08001660 if (ret)
1661 return ret;
1662
1663 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
Ville Syrjäläf92a9162015-11-04 23:20:07 +02001664 intel_ring_emit_reg(ring, RING_PP_DIR_DCLV(ring));
Ben Widawsky90252e52013-12-06 14:11:12 -08001665 intel_ring_emit(ring, PP_DIR_DCLV_2G);
Ville Syrjäläf92a9162015-11-04 23:20:07 +02001666 intel_ring_emit_reg(ring, RING_PP_DIR_BASE(ring));
Ben Widawsky90252e52013-12-06 14:11:12 -08001667 intel_ring_emit(ring, get_pd_offset(ppgtt));
1668 intel_ring_emit(ring, MI_NOOP);
1669 intel_ring_advance(ring);
1670
1671 return 0;
1672}
1673
Yu Zhang71ba2d62015-02-10 19:05:54 +08001674static int vgpu_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001675 struct drm_i915_gem_request *req)
Yu Zhang71ba2d62015-02-10 19:05:54 +08001676{
John Harrisone85b26d2015-05-29 17:43:56 +01001677 struct intel_engine_cs *ring = req->ring;
Yu Zhang71ba2d62015-02-10 19:05:54 +08001678 struct drm_i915_private *dev_priv = to_i915(ppgtt->base.dev);
1679
1680 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1681 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1682 return 0;
1683}
1684
Ben Widawsky48a10382013-12-06 14:11:11 -08001685static int gen7_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001686 struct drm_i915_gem_request *req)
Ben Widawsky48a10382013-12-06 14:11:11 -08001687{
John Harrisone85b26d2015-05-29 17:43:56 +01001688 struct intel_engine_cs *ring = req->ring;
Ben Widawsky48a10382013-12-06 14:11:11 -08001689 int ret;
1690
Ben Widawsky48a10382013-12-06 14:11:11 -08001691 /* NB: TLBs must be flushed and invalidated before a switch */
John Harrisona84c3ae2015-05-29 17:43:57 +01001692 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky48a10382013-12-06 14:11:11 -08001693 if (ret)
1694 return ret;
1695
John Harrison5fb9de12015-05-29 17:44:07 +01001696 ret = intel_ring_begin(req, 6);
Ben Widawsky48a10382013-12-06 14:11:11 -08001697 if (ret)
1698 return ret;
1699
1700 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
Ville Syrjäläf92a9162015-11-04 23:20:07 +02001701 intel_ring_emit_reg(ring, RING_PP_DIR_DCLV(ring));
Ben Widawsky48a10382013-12-06 14:11:11 -08001702 intel_ring_emit(ring, PP_DIR_DCLV_2G);
Ville Syrjäläf92a9162015-11-04 23:20:07 +02001703 intel_ring_emit_reg(ring, RING_PP_DIR_BASE(ring));
Ben Widawsky48a10382013-12-06 14:11:11 -08001704 intel_ring_emit(ring, get_pd_offset(ppgtt));
1705 intel_ring_emit(ring, MI_NOOP);
1706 intel_ring_advance(ring);
1707
Ben Widawsky90252e52013-12-06 14:11:12 -08001708 /* XXX: RCS is the only one to auto invalidate the TLBs? */
1709 if (ring->id != RCS) {
John Harrisona84c3ae2015-05-29 17:43:57 +01001710 ret = ring->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001711 if (ret)
1712 return ret;
1713 }
1714
Ben Widawsky48a10382013-12-06 14:11:11 -08001715 return 0;
1716}
1717
Ben Widawskyeeb94882013-12-06 14:11:10 -08001718static int gen6_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001719 struct drm_i915_gem_request *req)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001720{
John Harrisone85b26d2015-05-29 17:43:56 +01001721 struct intel_engine_cs *ring = req->ring;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001722 struct drm_device *dev = ppgtt->base.dev;
1723 struct drm_i915_private *dev_priv = dev->dev_private;
1724
Ben Widawsky48a10382013-12-06 14:11:11 -08001725
Ben Widawskyeeb94882013-12-06 14:11:10 -08001726 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
1727 I915_WRITE(RING_PP_DIR_BASE(ring), get_pd_offset(ppgtt));
1728
1729 POSTING_READ(RING_PP_DIR_DCLV(ring));
1730
1731 return 0;
1732}
1733
Daniel Vetter82460d92014-08-06 20:19:53 +02001734static void gen8_ppgtt_enable(struct drm_device *dev)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001735{
Ben Widawskyeeb94882013-12-06 14:11:10 -08001736 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001737 struct intel_engine_cs *ring;
Daniel Vetter82460d92014-08-06 20:19:53 +02001738 int j;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001739
1740 for_each_ring(ring, dev_priv, j) {
Michel Thierry2dba3232015-07-30 11:06:23 +01001741 u32 four_level = USES_FULL_48BIT_PPGTT(dev) ? GEN8_GFX_PPGTT_48B : 0;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001742 I915_WRITE(RING_MODE_GEN7(ring),
Michel Thierry2dba3232015-07-30 11:06:23 +01001743 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE | four_level));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001744 }
Ben Widawskyeeb94882013-12-06 14:11:10 -08001745}
1746
Daniel Vetter82460d92014-08-06 20:19:53 +02001747static void gen7_ppgtt_enable(struct drm_device *dev)
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001748{
Jani Nikula50227e12014-03-31 14:27:21 +03001749 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001750 struct intel_engine_cs *ring;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001751 uint32_t ecochk, ecobits;
1752 int i;
1753
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001754 ecobits = I915_READ(GAC_ECO_BITS);
1755 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
1756
1757 ecochk = I915_READ(GAM_ECOCHK);
1758 if (IS_HASWELL(dev)) {
1759 ecochk |= ECOCHK_PPGTT_WB_HSW;
1760 } else {
1761 ecochk |= ECOCHK_PPGTT_LLC_IVB;
1762 ecochk &= ~ECOCHK_PPGTT_GFDT_IVB;
1763 }
1764 I915_WRITE(GAM_ECOCHK, ecochk);
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001765
Ben Widawsky61973492013-04-08 18:43:54 -07001766 for_each_ring(ring, dev_priv, i) {
Ben Widawskyeeb94882013-12-06 14:11:10 -08001767 /* GFX_MODE is per-ring on gen7+ */
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001768 I915_WRITE(RING_MODE_GEN7(ring),
1769 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001770 }
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001771}
1772
Daniel Vetter82460d92014-08-06 20:19:53 +02001773static void gen6_ppgtt_enable(struct drm_device *dev)
Ben Widawsky61973492013-04-08 18:43:54 -07001774{
Jani Nikula50227e12014-03-31 14:27:21 +03001775 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001776 uint32_t ecochk, gab_ctl, ecobits;
Ben Widawsky61973492013-04-08 18:43:54 -07001777
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001778 ecobits = I915_READ(GAC_ECO_BITS);
1779 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_SNB_BIT |
1780 ECOBITS_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001781
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001782 gab_ctl = I915_READ(GAB_CTL);
1783 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
Ben Widawsky61973492013-04-08 18:43:54 -07001784
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001785 ecochk = I915_READ(GAM_ECOCHK);
1786 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT | ECOCHK_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001787
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001788 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001789}
1790
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001791/* PPGTT support for Sandybdrige/Gen6 and later */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001792static void gen6_ppgtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08001793 uint64_t start,
1794 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07001795 bool use_scratch)
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001796{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001797 struct i915_hw_ppgtt *ppgtt =
1798 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +00001799 gen6_pte_t *pt_vaddr, scratch_pte;
Ben Widawsky782f1492014-02-20 11:50:33 -08001800 unsigned first_entry = start >> PAGE_SHIFT;
1801 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001802 unsigned act_pt = first_entry / GEN6_PTES;
1803 unsigned first_pte = first_entry % GEN6_PTES;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001804 unsigned last_pte, i;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001805
Mika Kuoppalac114f762015-06-25 18:35:13 +03001806 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1807 I915_CACHE_LLC, true, 0);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001808
Daniel Vetter7bddb012012-02-09 17:15:47 +01001809 while (num_entries) {
1810 last_pte = first_pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +00001811 if (last_pte > GEN6_PTES)
1812 last_pte = GEN6_PTES;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001813
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001814 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001815
1816 for (i = first_pte; i < last_pte; i++)
1817 pt_vaddr[i] = scratch_pte;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001818
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001819 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001820
Daniel Vetter7bddb012012-02-09 17:15:47 +01001821 num_entries -= last_pte - first_pte;
1822 first_pte = 0;
Daniel Vettera15326a2013-03-19 23:48:39 +01001823 act_pt++;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001824 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001825}
1826
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001827static void gen6_ppgtt_insert_entries(struct i915_address_space *vm,
Daniel Vetterdef886c2013-01-24 14:44:56 -08001828 struct sg_table *pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08001829 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05301830 enum i915_cache_level cache_level, u32 flags)
Daniel Vetterdef886c2013-01-24 14:44:56 -08001831{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001832 struct i915_hw_ppgtt *ppgtt =
1833 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry07749ef2015-03-16 16:00:54 +00001834 gen6_pte_t *pt_vaddr;
Ben Widawsky782f1492014-02-20 11:50:33 -08001835 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001836 unsigned act_pt = first_entry / GEN6_PTES;
1837 unsigned act_pte = first_entry % GEN6_PTES;
Imre Deak6e995e22013-02-18 19:28:04 +02001838 struct sg_page_iter sg_iter;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001839
Chris Wilsoncc797142013-12-31 15:50:30 +00001840 pt_vaddr = NULL;
Imre Deak6e995e22013-02-18 19:28:04 +02001841 for_each_sg_page(pages->sgl, &sg_iter, pages->nents, 0) {
Chris Wilsoncc797142013-12-31 15:50:30 +00001842 if (pt_vaddr == NULL)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001843 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001844
Chris Wilsoncc797142013-12-31 15:50:30 +00001845 pt_vaddr[act_pte] =
1846 vm->pte_encode(sg_page_iter_dma_address(&sg_iter),
Akash Goel24f3a8c2014-06-17 10:59:42 +05301847 cache_level, true, flags);
1848
Michel Thierry07749ef2015-03-16 16:00:54 +00001849 if (++act_pte == GEN6_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001850 kunmap_px(ppgtt, pt_vaddr);
Chris Wilsoncc797142013-12-31 15:50:30 +00001851 pt_vaddr = NULL;
Daniel Vettera15326a2013-03-19 23:48:39 +01001852 act_pt++;
Imre Deak6e995e22013-02-18 19:28:04 +02001853 act_pte = 0;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001854 }
Daniel Vetterdef886c2013-01-24 14:44:56 -08001855 }
Chris Wilsoncc797142013-12-31 15:50:30 +00001856 if (pt_vaddr)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001857 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001858}
1859
Ben Widawsky678d96f2015-03-16 16:00:56 +00001860static int gen6_alloc_va_range(struct i915_address_space *vm,
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001861 uint64_t start_in, uint64_t length_in)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001862{
Michel Thierry4933d512015-03-24 15:46:22 +00001863 DECLARE_BITMAP(new_page_tables, I915_PDES);
1864 struct drm_device *dev = vm->dev;
1865 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001866 struct i915_hw_ppgtt *ppgtt =
1867 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierryec565b32015-04-08 12:13:23 +01001868 struct i915_page_table *pt;
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001869 uint32_t start, length, start_save, length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001870 uint32_t pde, temp;
Michel Thierry4933d512015-03-24 15:46:22 +00001871 int ret;
1872
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001873 if (WARN_ON(start_in + length_in > ppgtt->base.total))
1874 return -ENODEV;
1875
1876 start = start_save = start_in;
1877 length = length_save = length_in;
Michel Thierry4933d512015-03-24 15:46:22 +00001878
1879 bitmap_zero(new_page_tables, I915_PDES);
1880
1881 /* The allocation is done in two stages so that we can bail out with
1882 * minimal amount of pain. The first stage finds new page tables that
1883 * need allocation. The second stage marks use ptes within the page
1884 * tables.
1885 */
1886 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001887 if (pt != vm->scratch_pt) {
Michel Thierry4933d512015-03-24 15:46:22 +00001888 WARN_ON(bitmap_empty(pt->used_ptes, GEN6_PTES));
1889 continue;
1890 }
1891
1892 /* We've already allocated a page table */
1893 WARN_ON(!bitmap_empty(pt->used_ptes, GEN6_PTES));
1894
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001895 pt = alloc_pt(dev);
Michel Thierry4933d512015-03-24 15:46:22 +00001896 if (IS_ERR(pt)) {
1897 ret = PTR_ERR(pt);
1898 goto unwind_out;
1899 }
1900
1901 gen6_initialize_pt(vm, pt);
1902
1903 ppgtt->pd.page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001904 __set_bit(pde, new_page_tables);
Michel Thierry72744cb2015-03-24 15:46:23 +00001905 trace_i915_page_table_entry_alloc(vm, pde, start, GEN6_PDE_SHIFT);
Michel Thierry4933d512015-03-24 15:46:22 +00001906 }
1907
1908 start = start_save;
1909 length = length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001910
1911 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
1912 DECLARE_BITMAP(tmp_bitmap, GEN6_PTES);
1913
1914 bitmap_zero(tmp_bitmap, GEN6_PTES);
1915 bitmap_set(tmp_bitmap, gen6_pte_index(start),
1916 gen6_pte_count(start, length));
1917
Mika Kuoppala966082c2015-06-25 18:35:19 +03001918 if (__test_and_clear_bit(pde, new_page_tables))
Michel Thierry4933d512015-03-24 15:46:22 +00001919 gen6_write_pde(&ppgtt->pd, pde, pt);
1920
Michel Thierry72744cb2015-03-24 15:46:23 +00001921 trace_i915_page_table_entry_map(vm, pde, pt,
1922 gen6_pte_index(start),
1923 gen6_pte_count(start, length),
1924 GEN6_PTES);
Michel Thierry4933d512015-03-24 15:46:22 +00001925 bitmap_or(pt->used_ptes, tmp_bitmap, pt->used_ptes,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001926 GEN6_PTES);
1927 }
1928
Michel Thierry4933d512015-03-24 15:46:22 +00001929 WARN_ON(!bitmap_empty(new_page_tables, I915_PDES));
1930
1931 /* Make sure write is complete before other code can use this page
1932 * table. Also require for WC mapped PTEs */
1933 readl(dev_priv->gtt.gsm);
1934
Ben Widawsky563222a2015-03-19 12:53:28 +00001935 mark_tlbs_dirty(ppgtt);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001936 return 0;
Michel Thierry4933d512015-03-24 15:46:22 +00001937
1938unwind_out:
1939 for_each_set_bit(pde, new_page_tables, I915_PDES) {
Michel Thierryec565b32015-04-08 12:13:23 +01001940 struct i915_page_table *pt = ppgtt->pd.page_table[pde];
Michel Thierry4933d512015-03-24 15:46:22 +00001941
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001942 ppgtt->pd.page_table[pde] = vm->scratch_pt;
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001943 free_pt(vm->dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001944 }
1945
1946 mark_tlbs_dirty(ppgtt);
1947 return ret;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001948}
1949
Mika Kuoppala8776f022015-06-30 18:16:40 +03001950static int gen6_init_scratch(struct i915_address_space *vm)
1951{
1952 struct drm_device *dev = vm->dev;
1953
1954 vm->scratch_page = alloc_scratch_page(dev);
1955 if (IS_ERR(vm->scratch_page))
1956 return PTR_ERR(vm->scratch_page);
1957
1958 vm->scratch_pt = alloc_pt(dev);
1959 if (IS_ERR(vm->scratch_pt)) {
1960 free_scratch_page(dev, vm->scratch_page);
1961 return PTR_ERR(vm->scratch_pt);
1962 }
1963
1964 gen6_initialize_pt(vm, vm->scratch_pt);
1965
1966 return 0;
1967}
1968
1969static void gen6_free_scratch(struct i915_address_space *vm)
1970{
1971 struct drm_device *dev = vm->dev;
1972
1973 free_pt(dev, vm->scratch_pt);
1974 free_scratch_page(dev, vm->scratch_page);
1975}
1976
Daniel Vetter061dd492015-04-14 17:35:13 +02001977static void gen6_ppgtt_cleanup(struct i915_address_space *vm)
Ben Widawskya00d8252014-02-19 22:05:48 -08001978{
Daniel Vetter061dd492015-04-14 17:35:13 +02001979 struct i915_hw_ppgtt *ppgtt =
1980 container_of(vm, struct i915_hw_ppgtt, base);
Michel Thierry09942c62015-04-08 12:13:30 +01001981 struct i915_page_table *pt;
1982 uint32_t pde;
Daniel Vetter3440d262013-01-24 13:49:56 -08001983
Daniel Vetter061dd492015-04-14 17:35:13 +02001984 drm_mm_remove_node(&ppgtt->node);
1985
Michel Thierry09942c62015-04-08 12:13:30 +01001986 gen6_for_all_pdes(pt, ppgtt, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001987 if (pt != vm->scratch_pt)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001988 free_pt(ppgtt->base.dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001989 }
1990
Mika Kuoppala8776f022015-06-30 18:16:40 +03001991 gen6_free_scratch(vm);
Daniel Vetter3440d262013-01-24 13:49:56 -08001992}
1993
Ben Widawskyb1465202014-02-19 22:05:49 -08001994static int gen6_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08001995{
Mika Kuoppala8776f022015-06-30 18:16:40 +03001996 struct i915_address_space *vm = &ppgtt->base;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001997 struct drm_device *dev = ppgtt->base.dev;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001998 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskye3cc1992013-12-06 14:11:08 -08001999 bool retried = false;
Ben Widawskyb1465202014-02-19 22:05:49 -08002000 int ret;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002001
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002002 /* PPGTT PDEs reside in the GGTT and consists of 512 entries. The
2003 * allocator works in address space sizes, so it's multiplied by page
2004 * size. We allocate at the top of the GTT to avoid fragmentation.
2005 */
2006 BUG_ON(!drm_mm_initialized(&dev_priv->gtt.base.mm));
Michel Thierry4933d512015-03-24 15:46:22 +00002007
Mika Kuoppala8776f022015-06-30 18:16:40 +03002008 ret = gen6_init_scratch(vm);
2009 if (ret)
2010 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002011
Ben Widawskye3cc1992013-12-06 14:11:08 -08002012alloc:
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002013 ret = drm_mm_insert_node_in_range_generic(&dev_priv->gtt.base.mm,
2014 &ppgtt->node, GEN6_PD_SIZE,
2015 GEN6_PD_ALIGN, 0,
2016 0, dev_priv->gtt.base.total,
Ben Widawsky3e8b5ae2014-05-06 22:21:30 -07002017 DRM_MM_TOPDOWN);
Ben Widawskye3cc1992013-12-06 14:11:08 -08002018 if (ret == -ENOSPC && !retried) {
2019 ret = i915_gem_evict_something(dev, &dev_priv->gtt.base,
2020 GEN6_PD_SIZE, GEN6_PD_ALIGN,
Chris Wilsond23db882014-05-23 08:48:08 +02002021 I915_CACHE_NONE,
2022 0, dev_priv->gtt.base.total,
2023 0);
Ben Widawskye3cc1992013-12-06 14:11:08 -08002024 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00002025 goto err_out;
Ben Widawskye3cc1992013-12-06 14:11:08 -08002026
2027 retried = true;
2028 goto alloc;
2029 }
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002030
Ben Widawskyc8c26622015-01-22 17:01:25 +00002031 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00002032 goto err_out;
2033
Ben Widawskyc8c26622015-01-22 17:01:25 +00002034
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002035 if (ppgtt->node.start < dev_priv->gtt.mappable_end)
2036 DRM_DEBUG("Forced to use aperture for PDEs\n");
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002037
Ben Widawskyc8c26622015-01-22 17:01:25 +00002038 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +00002039
2040err_out:
Mika Kuoppala8776f022015-06-30 18:16:40 +03002041 gen6_free_scratch(vm);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002042 return ret;
Ben Widawskyb1465202014-02-19 22:05:49 -08002043}
2044
Ben Widawskyb1465202014-02-19 22:05:49 -08002045static int gen6_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt)
2046{
kbuild test robot2f2cf682015-03-27 19:26:35 +08002047 return gen6_ppgtt_allocate_page_directories(ppgtt);
Ben Widawskyb1465202014-02-19 22:05:49 -08002048}
2049
Michel Thierry4933d512015-03-24 15:46:22 +00002050static void gen6_scratch_va_range(struct i915_hw_ppgtt *ppgtt,
2051 uint64_t start, uint64_t length)
2052{
Michel Thierryec565b32015-04-08 12:13:23 +01002053 struct i915_page_table *unused;
Michel Thierry4933d512015-03-24 15:46:22 +00002054 uint32_t pde, temp;
2055
2056 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde)
Mika Kuoppala79ab9372015-06-25 18:35:17 +03002057 ppgtt->pd.page_table[pde] = ppgtt->base.scratch_pt;
Michel Thierry4933d512015-03-24 15:46:22 +00002058}
2059
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002060static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawskyb1465202014-02-19 22:05:49 -08002061{
2062 struct drm_device *dev = ppgtt->base.dev;
2063 struct drm_i915_private *dev_priv = dev->dev_private;
2064 int ret;
2065
2066 ppgtt->base.pte_encode = dev_priv->gtt.base.pte_encode;
Ben Widawsky48a10382013-12-06 14:11:11 -08002067 if (IS_GEN6(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002068 ppgtt->switch_mm = gen6_mm_switch;
Ben Widawsky90252e52013-12-06 14:11:12 -08002069 } else if (IS_HASWELL(dev)) {
Ben Widawsky90252e52013-12-06 14:11:12 -08002070 ppgtt->switch_mm = hsw_mm_switch;
Ben Widawsky48a10382013-12-06 14:11:11 -08002071 } else if (IS_GEN7(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002072 ppgtt->switch_mm = gen7_mm_switch;
2073 } else
Ben Widawskyb4a74e32013-12-06 14:11:09 -08002074 BUG();
Ben Widawskyb1465202014-02-19 22:05:49 -08002075
Yu Zhang71ba2d62015-02-10 19:05:54 +08002076 if (intel_vgpu_active(dev))
2077 ppgtt->switch_mm = vgpu_mm_switch;
2078
Ben Widawskyb1465202014-02-19 22:05:49 -08002079 ret = gen6_ppgtt_alloc(ppgtt);
2080 if (ret)
2081 return ret;
2082
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002083 ppgtt->base.allocate_va_range = gen6_alloc_va_range;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002084 ppgtt->base.clear_range = gen6_ppgtt_clear_range;
2085 ppgtt->base.insert_entries = gen6_ppgtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002086 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
2087 ppgtt->base.bind_vma = ppgtt_bind_vma;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002088 ppgtt->base.cleanup = gen6_ppgtt_cleanup;
Ben Widawsky686e1f62013-11-25 09:54:34 -08002089 ppgtt->base.start = 0;
Michel Thierry09942c62015-04-08 12:13:30 +01002090 ppgtt->base.total = I915_PDES * GEN6_PTES * PAGE_SIZE;
Ben Widawskyb1465202014-02-19 22:05:49 -08002091 ppgtt->debug_dump = gen6_dump_ppgtt;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002092
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002093 ppgtt->pd.base.ggtt_offset =
Michel Thierry07749ef2015-03-16 16:00:54 +00002094 ppgtt->node.start / PAGE_SIZE * sizeof(gen6_pte_t);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002095
Ben Widawsky678d96f2015-03-16 16:00:56 +00002096 ppgtt->pd_addr = (gen6_pte_t __iomem *)dev_priv->gtt.gsm +
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002097 ppgtt->pd.base.ggtt_offset / sizeof(gen6_pte_t);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002098
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002099 gen6_scratch_va_range(ppgtt, 0, ppgtt->base.total);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002100
Ben Widawsky678d96f2015-03-16 16:00:56 +00002101 gen6_write_page_range(dev_priv, &ppgtt->pd, 0, ppgtt->base.total);
2102
Thierry Reding440fd522015-01-23 09:05:06 +01002103 DRM_DEBUG_DRIVER("Allocated pde space (%lldM) at GTT entry: %llx\n",
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002104 ppgtt->node.size >> 20,
2105 ppgtt->node.start / PAGE_SIZE);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002106
Daniel Vetterfa76da32014-08-06 20:19:54 +02002107 DRM_DEBUG("Adding PPGTT at offset %x\n",
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002108 ppgtt->pd.base.ggtt_offset << 10);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002109
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002110 return 0;
Daniel Vetter3440d262013-01-24 13:49:56 -08002111}
2112
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002113static int __hw_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08002114{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002115 ppgtt->base.dev = dev;
Daniel Vetter3440d262013-01-24 13:49:56 -08002116
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002117 if (INTEL_INFO(dev)->gen < 8)
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002118 return gen6_ppgtt_init(ppgtt);
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002119 else
Michel Thierryd7b26332015-04-08 12:13:34 +01002120 return gen8_ppgtt_init(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002121}
Mika Kuoppalac114f762015-06-25 18:35:13 +03002122
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002123static void i915_address_space_init(struct i915_address_space *vm,
2124 struct drm_i915_private *dev_priv)
2125{
2126 drm_mm_init(&vm->mm, vm->start, vm->total);
2127 vm->dev = dev_priv->dev;
2128 INIT_LIST_HEAD(&vm->active_list);
2129 INIT_LIST_HEAD(&vm->inactive_list);
2130 list_add_tail(&vm->global_link, &dev_priv->vm_list);
2131}
2132
Daniel Vetterfa76da32014-08-06 20:19:54 +02002133int i915_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
2134{
2135 struct drm_i915_private *dev_priv = dev->dev_private;
2136 int ret = 0;
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002137
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002138 ret = __hw_ppgtt_init(dev, ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002139 if (ret == 0) {
Ben Widawskyc7c48df2013-12-06 14:11:15 -08002140 kref_init(&ppgtt->ref);
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002141 i915_address_space_init(&ppgtt->base, dev_priv);
Ben Widawsky93bd8642013-07-16 16:50:06 -07002142 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002143
2144 return ret;
2145}
2146
Daniel Vetter82460d92014-08-06 20:19:53 +02002147int i915_ppgtt_init_hw(struct drm_device *dev)
2148{
Thomas Daniel671b50132014-08-20 16:24:50 +01002149 /* In the case of execlists, PPGTT is enabled by the context descriptor
2150 * and the PDPs are contained within the context itself. We don't
2151 * need to do anything here. */
2152 if (i915.enable_execlists)
2153 return 0;
2154
Daniel Vetter82460d92014-08-06 20:19:53 +02002155 if (!USES_PPGTT(dev))
2156 return 0;
2157
2158 if (IS_GEN6(dev))
2159 gen6_ppgtt_enable(dev);
2160 else if (IS_GEN7(dev))
2161 gen7_ppgtt_enable(dev);
2162 else if (INTEL_INFO(dev)->gen >= 8)
2163 gen8_ppgtt_enable(dev);
2164 else
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01002165 MISSING_CASE(INTEL_INFO(dev)->gen);
Daniel Vetter82460d92014-08-06 20:19:53 +02002166
John Harrison4ad2fd82015-06-18 13:11:20 +01002167 return 0;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002168}
John Harrison4ad2fd82015-06-18 13:11:20 +01002169
John Harrisonb3dd6b92015-05-29 17:43:40 +01002170int i915_ppgtt_init_ring(struct drm_i915_gem_request *req)
John Harrison4ad2fd82015-06-18 13:11:20 +01002171{
John Harrisonb3dd6b92015-05-29 17:43:40 +01002172 struct drm_i915_private *dev_priv = req->ring->dev->dev_private;
John Harrison4ad2fd82015-06-18 13:11:20 +01002173 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2174
2175 if (i915.enable_execlists)
2176 return 0;
2177
2178 if (!ppgtt)
2179 return 0;
2180
John Harrisone85b26d2015-05-29 17:43:56 +01002181 return ppgtt->switch_mm(ppgtt, req);
John Harrison4ad2fd82015-06-18 13:11:20 +01002182}
2183
Daniel Vetter4d884702014-08-06 15:04:47 +02002184struct i915_hw_ppgtt *
2185i915_ppgtt_create(struct drm_device *dev, struct drm_i915_file_private *fpriv)
2186{
2187 struct i915_hw_ppgtt *ppgtt;
2188 int ret;
2189
2190 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2191 if (!ppgtt)
2192 return ERR_PTR(-ENOMEM);
2193
2194 ret = i915_ppgtt_init(dev, ppgtt);
2195 if (ret) {
2196 kfree(ppgtt);
2197 return ERR_PTR(ret);
2198 }
2199
2200 ppgtt->file_priv = fpriv;
2201
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002202 trace_i915_ppgtt_create(&ppgtt->base);
2203
Daniel Vetter4d884702014-08-06 15:04:47 +02002204 return ppgtt;
2205}
2206
Daniel Vetteree960be2014-08-06 15:04:45 +02002207void i915_ppgtt_release(struct kref *kref)
2208{
2209 struct i915_hw_ppgtt *ppgtt =
2210 container_of(kref, struct i915_hw_ppgtt, ref);
2211
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002212 trace_i915_ppgtt_release(&ppgtt->base);
2213
Daniel Vetteree960be2014-08-06 15:04:45 +02002214 /* vmas should already be unbound */
2215 WARN_ON(!list_empty(&ppgtt->base.active_list));
2216 WARN_ON(!list_empty(&ppgtt->base.inactive_list));
2217
Daniel Vetter19dd1202014-08-06 15:04:55 +02002218 list_del(&ppgtt->base.global_link);
2219 drm_mm_takedown(&ppgtt->base.mm);
2220
Daniel Vetteree960be2014-08-06 15:04:45 +02002221 ppgtt->base.cleanup(&ppgtt->base);
2222 kfree(ppgtt);
2223}
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002224
Ben Widawskya81cc002013-01-18 12:30:31 -08002225extern int intel_iommu_gfx_mapped;
2226/* Certain Gen5 chipsets require require idling the GPU before
2227 * unmapping anything from the GTT when VT-d is enabled.
2228 */
Daniel Vetter2c642b02015-04-14 17:35:26 +02002229static bool needs_idle_maps(struct drm_device *dev)
Ben Widawskya81cc002013-01-18 12:30:31 -08002230{
2231#ifdef CONFIG_INTEL_IOMMU
2232 /* Query intel_iommu to see if we need the workaround. Presumably that
2233 * was loaded first.
2234 */
2235 if (IS_GEN5(dev) && IS_MOBILE(dev) && intel_iommu_gfx_mapped)
2236 return true;
2237#endif
2238 return false;
2239}
2240
Ben Widawsky5c042282011-10-17 15:51:55 -07002241static bool do_idling(struct drm_i915_private *dev_priv)
2242{
2243 bool ret = dev_priv->mm.interruptible;
2244
Ben Widawskya81cc002013-01-18 12:30:31 -08002245 if (unlikely(dev_priv->gtt.do_idle_maps)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002246 dev_priv->mm.interruptible = false;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002247 if (i915_gpu_idle(dev_priv->dev)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002248 DRM_ERROR("Couldn't idle GPU\n");
2249 /* Wait a bit, in hopes it avoids the hang */
2250 udelay(10);
2251 }
2252 }
2253
2254 return ret;
2255}
2256
2257static void undo_idling(struct drm_i915_private *dev_priv, bool interruptible)
2258{
Ben Widawskya81cc002013-01-18 12:30:31 -08002259 if (unlikely(dev_priv->gtt.do_idle_maps))
Ben Widawsky5c042282011-10-17 15:51:55 -07002260 dev_priv->mm.interruptible = interruptible;
2261}
2262
Ben Widawsky828c7902013-10-16 09:21:30 -07002263void i915_check_and_clear_faults(struct drm_device *dev)
2264{
2265 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002266 struct intel_engine_cs *ring;
Ben Widawsky828c7902013-10-16 09:21:30 -07002267 int i;
2268
2269 if (INTEL_INFO(dev)->gen < 6)
2270 return;
2271
2272 for_each_ring(ring, dev_priv, i) {
2273 u32 fault_reg;
2274 fault_reg = I915_READ(RING_FAULT_REG(ring));
2275 if (fault_reg & RING_FAULT_VALID) {
2276 DRM_DEBUG_DRIVER("Unexpected fault\n"
Paulo Zanoni59a5d292014-10-30 15:52:45 -02002277 "\tAddr: 0x%08lx\n"
Ben Widawsky828c7902013-10-16 09:21:30 -07002278 "\tAddress space: %s\n"
2279 "\tSource ID: %d\n"
2280 "\tType: %d\n",
2281 fault_reg & PAGE_MASK,
2282 fault_reg & RING_FAULT_GTTSEL_MASK ? "GGTT" : "PPGTT",
2283 RING_FAULT_SRCID(fault_reg),
2284 RING_FAULT_FAULT_TYPE(fault_reg));
2285 I915_WRITE(RING_FAULT_REG(ring),
2286 fault_reg & ~RING_FAULT_VALID);
2287 }
2288 }
2289 POSTING_READ(RING_FAULT_REG(&dev_priv->ring[RCS]));
2290}
2291
Chris Wilson91e56492014-09-25 10:13:12 +01002292static void i915_ggtt_flush(struct drm_i915_private *dev_priv)
2293{
2294 if (INTEL_INFO(dev_priv->dev)->gen < 6) {
2295 intel_gtt_chipset_flush();
2296 } else {
2297 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2298 POSTING_READ(GFX_FLSH_CNTL_GEN6);
2299 }
2300}
2301
Ben Widawsky828c7902013-10-16 09:21:30 -07002302void i915_gem_suspend_gtt_mappings(struct drm_device *dev)
2303{
2304 struct drm_i915_private *dev_priv = dev->dev_private;
2305
2306 /* Don't bother messing with faults pre GEN6 as we have little
2307 * documentation supporting that it's a good idea.
2308 */
2309 if (INTEL_INFO(dev)->gen < 6)
2310 return;
2311
2312 i915_check_and_clear_faults(dev);
2313
2314 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002315 dev_priv->gtt.base.start,
2316 dev_priv->gtt.base.total,
Daniel Vettere568af12014-03-26 20:08:20 +01002317 true);
Chris Wilson91e56492014-09-25 10:13:12 +01002318
2319 i915_ggtt_flush(dev_priv);
Ben Widawsky828c7902013-10-16 09:21:30 -07002320}
2321
Daniel Vetter74163902012-02-15 23:50:21 +01002322int i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002323{
Chris Wilson9da3da62012-06-01 15:20:22 +01002324 if (!dma_map_sg(&obj->base.dev->pdev->dev,
2325 obj->pages->sgl, obj->pages->nents,
2326 PCI_DMA_BIDIRECTIONAL))
2327 return -ENOSPC;
2328
2329 return 0;
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002330}
2331
Daniel Vetter2c642b02015-04-14 17:35:26 +02002332static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002333{
2334#ifdef writeq
2335 writeq(pte, addr);
2336#else
2337 iowrite32((u32)pte, addr);
2338 iowrite32(pte >> 32, addr + 4);
2339#endif
2340}
2341
2342static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
2343 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002344 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302345 enum i915_cache_level level, u32 unused)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002346{
2347 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002348 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002349 gen8_pte_t __iomem *gtt_entries =
2350 (gen8_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002351 int i = 0;
2352 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002353 dma_addr_t addr = 0; /* shut up gcc */
Imre Deakbe694592015-12-15 20:10:38 +02002354 int rpm_atomic_seq;
2355
2356 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002357
2358 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
2359 addr = sg_dma_address(sg_iter.sg) +
2360 (sg_iter.sg_pgoffset << PAGE_SHIFT);
2361 gen8_set_pte(&gtt_entries[i],
2362 gen8_pte_encode(addr, level, true));
2363 i++;
2364 }
2365
2366 /*
2367 * XXX: This serves as a posting read to make sure that the PTE has
2368 * actually been updated. There is some concern that even though
2369 * registers and PTEs are within the same BAR that they are potentially
2370 * of NUMA access patterns. Therefore, even with the way we assume
2371 * hardware should work, we must keep this posting read for paranoia.
2372 */
2373 if (i != 0)
2374 WARN_ON(readq(&gtt_entries[i-1])
2375 != gen8_pte_encode(addr, level, true));
2376
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002377 /* This next bit makes the above posting read even more important. We
2378 * want to flush the TLBs only after we're certain all the PTE updates
2379 * have finished.
2380 */
2381 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2382 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Imre Deakbe694592015-12-15 20:10:38 +02002383
2384 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002385}
2386
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002387/*
2388 * Binds an object into the global gtt with the specified cache level. The object
2389 * will be accessible to the GPU via commands whose operands reference offsets
2390 * within the global GTT as well as accessible by the GPU through the GMADR
2391 * mapped BAR (dev_priv->mm.gtt->gtt).
2392 */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002393static void gen6_ggtt_insert_entries(struct i915_address_space *vm,
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002394 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002395 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302396 enum i915_cache_level level, u32 flags)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002397{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002398 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002399 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002400 gen6_pte_t __iomem *gtt_entries =
2401 (gen6_pte_t __iomem *)dev_priv->gtt.gsm + first_entry;
Imre Deak6e995e22013-02-18 19:28:04 +02002402 int i = 0;
2403 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002404 dma_addr_t addr = 0;
Imre Deakbe694592015-12-15 20:10:38 +02002405 int rpm_atomic_seq;
2406
2407 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002408
Imre Deak6e995e22013-02-18 19:28:04 +02002409 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02002410 addr = sg_page_iter_dma_address(&sg_iter);
Akash Goel24f3a8c2014-06-17 10:59:42 +05302411 iowrite32(vm->pte_encode(addr, level, true, flags), &gtt_entries[i]);
Imre Deak6e995e22013-02-18 19:28:04 +02002412 i++;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002413 }
2414
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002415 /* XXX: This serves as a posting read to make sure that the PTE has
2416 * actually been updated. There is some concern that even though
2417 * registers and PTEs are within the same BAR that they are potentially
2418 * of NUMA access patterns. Therefore, even with the way we assume
2419 * hardware should work, we must keep this posting read for paranoia.
2420 */
Pavel Machek57007df2014-07-28 13:20:58 +02002421 if (i != 0) {
2422 unsigned long gtt = readl(&gtt_entries[i-1]);
2423 WARN_ON(gtt != vm->pte_encode(addr, level, true, flags));
2424 }
Ben Widawsky0f9b91c2012-11-04 09:21:30 -08002425
2426 /* This next bit makes the above posting read even more important. We
2427 * want to flush the TLBs only after we're certain all the PTE updates
2428 * have finished.
2429 */
2430 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2431 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Imre Deakbe694592015-12-15 20:10:38 +02002432
2433 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002434}
2435
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002436static void gen8_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002437 uint64_t start,
2438 uint64_t length,
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002439 bool use_scratch)
2440{
2441 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002442 unsigned first_entry = start >> PAGE_SHIFT;
2443 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002444 gen8_pte_t scratch_pte, __iomem *gtt_base =
2445 (gen8_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002446 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
2447 int i;
Imre Deakbe694592015-12-15 20:10:38 +02002448 int rpm_atomic_seq;
2449
2450 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002451
2452 if (WARN(num_entries > max_entries,
2453 "First entry = %d; Num entries = %d (max=%d)\n",
2454 first_entry, num_entries, max_entries))
2455 num_entries = max_entries;
2456
Mika Kuoppalac114f762015-06-25 18:35:13 +03002457 scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002458 I915_CACHE_LLC,
2459 use_scratch);
2460 for (i = 0; i < num_entries; i++)
2461 gen8_set_pte(&gtt_base[i], scratch_pte);
2462 readl(gtt_base);
Imre Deakbe694592015-12-15 20:10:38 +02002463
2464 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002465}
2466
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002467static void gen6_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002468 uint64_t start,
2469 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002470 bool use_scratch)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002471{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002472 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002473 unsigned first_entry = start >> PAGE_SHIFT;
2474 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002475 gen6_pte_t scratch_pte, __iomem *gtt_base =
2476 (gen6_pte_t __iomem *) dev_priv->gtt.gsm + first_entry;
Ben Widawskya54c0c22013-01-24 14:45:00 -08002477 const int max_entries = gtt_total_entries(dev_priv->gtt) - first_entry;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002478 int i;
Imre Deakbe694592015-12-15 20:10:38 +02002479 int rpm_atomic_seq;
2480
2481 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002482
2483 if (WARN(num_entries > max_entries,
2484 "First entry = %d; Num entries = %d (max=%d)\n",
2485 first_entry, num_entries, max_entries))
2486 num_entries = max_entries;
2487
Mika Kuoppalac114f762015-06-25 18:35:13 +03002488 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
2489 I915_CACHE_LLC, use_scratch, 0);
Ben Widawsky828c7902013-10-16 09:21:30 -07002490
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002491 for (i = 0; i < num_entries; i++)
2492 iowrite32(scratch_pte, &gtt_base[i]);
2493 readl(gtt_base);
Imre Deakbe694592015-12-15 20:10:38 +02002494
2495 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002496}
2497
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002498static void i915_ggtt_insert_entries(struct i915_address_space *vm,
2499 struct sg_table *pages,
2500 uint64_t start,
2501 enum i915_cache_level cache_level, u32 unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002502{
Imre Deakbe694592015-12-15 20:10:38 +02002503 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002504 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
2505 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
Imre Deakbe694592015-12-15 20:10:38 +02002506 int rpm_atomic_seq;
2507
2508 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002509
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002510 intel_gtt_insert_sg_entries(pages, start >> PAGE_SHIFT, flags);
Daniel Vetter08755462015-04-20 09:04:05 -07002511
Imre Deakbe694592015-12-15 20:10:38 +02002512 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
2513
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002514}
2515
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002516static void i915_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002517 uint64_t start,
2518 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002519 bool unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002520{
Imre Deakbe694592015-12-15 20:10:38 +02002521 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002522 unsigned first_entry = start >> PAGE_SHIFT;
2523 unsigned num_entries = length >> PAGE_SHIFT;
Imre Deakbe694592015-12-15 20:10:38 +02002524 int rpm_atomic_seq;
2525
2526 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
2527
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002528 intel_gtt_clear_range(first_entry, num_entries);
Imre Deakbe694592015-12-15 20:10:38 +02002529
2530 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002531}
2532
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002533static int ggtt_bind_vma(struct i915_vma *vma,
2534 enum i915_cache_level cache_level,
2535 u32 flags)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002536{
Daniel Vetter0a878712015-10-15 14:23:01 +02002537 struct drm_i915_gem_object *obj = vma->obj;
2538 u32 pte_flags = 0;
2539 int ret;
2540
2541 ret = i915_get_ggtt_vma_pages(vma);
2542 if (ret)
2543 return ret;
2544
2545 /* Currently applicable only to VLV */
2546 if (obj->gt_ro)
2547 pte_flags |= PTE_READ_ONLY;
2548
2549 vma->vm->insert_entries(vma->vm, vma->ggtt_view.pages,
2550 vma->node.start,
2551 cache_level, pte_flags);
2552
2553 /*
2554 * Without aliasing PPGTT there's no difference between
2555 * GLOBAL/LOCAL_BIND, it's all the same ptes. Hence unconditionally
2556 * upgrade to both bound if we bind either to avoid double-binding.
2557 */
2558 vma->bound |= GLOBAL_BIND | LOCAL_BIND;
2559
2560 return 0;
2561}
2562
Chris Wilson5bab6f62015-10-23 18:43:32 +01002563struct ggtt_bind_vma__cb {
2564 struct i915_vma *vma;
2565 enum i915_cache_level cache_level;
2566 u32 flags;
2567};
2568
2569static int ggtt_bind_vma__cb(void *_arg)
2570{
2571 struct ggtt_bind_vma__cb *arg = _arg;
2572 return ggtt_bind_vma(arg->vma, arg->cache_level, arg->flags);
2573}
2574
2575static int ggtt_bind_vma__BKL(struct i915_vma *vma,
2576 enum i915_cache_level cache_level,
2577 u32 flags)
2578{
2579 struct ggtt_bind_vma__cb arg = { vma, cache_level, flags };
2580 return stop_machine(ggtt_bind_vma__cb, &arg, NULL);
2581}
2582
Daniel Vetter0a878712015-10-15 14:23:01 +02002583static int aliasing_gtt_bind_vma(struct i915_vma *vma,
2584 enum i915_cache_level cache_level,
2585 u32 flags)
2586{
Ben Widawsky6f65e292013-12-06 14:10:56 -08002587 struct drm_device *dev = vma->vm->dev;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002588 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002589 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002590 struct sg_table *pages = obj->pages;
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002591 u32 pte_flags = 0;
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002592 int ret;
2593
2594 ret = i915_get_ggtt_vma_pages(vma);
2595 if (ret)
2596 return ret;
2597 pages = vma->ggtt_view.pages;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002598
Akash Goel24f3a8c2014-06-17 10:59:42 +05302599 /* Currently applicable only to VLV */
2600 if (obj->gt_ro)
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002601 pte_flags |= PTE_READ_ONLY;
Akash Goel24f3a8c2014-06-17 10:59:42 +05302602
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002603
Daniel Vetter0a878712015-10-15 14:23:01 +02002604 if (flags & GLOBAL_BIND) {
Daniel Vetter08755462015-04-20 09:04:05 -07002605 vma->vm->insert_entries(vma->vm, pages,
2606 vma->node.start,
2607 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002608 }
Daniel Vetter74898d72012-02-15 23:50:22 +01002609
Daniel Vetter0a878712015-10-15 14:23:01 +02002610 if (flags & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002611 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002612 appgtt->base.insert_entries(&appgtt->base, pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08002613 vma->node.start,
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002614 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002615 }
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002616
2617 return 0;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002618}
2619
2620static void ggtt_unbind_vma(struct i915_vma *vma)
2621{
2622 struct drm_device *dev = vma->vm->dev;
2623 struct drm_i915_private *dev_priv = dev->dev_private;
2624 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002625 const uint64_t size = min_t(uint64_t,
2626 obj->base.size,
2627 vma->node.size);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002628
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002629 if (vma->bound & GLOBAL_BIND) {
Ben Widawsky782f1492014-02-20 11:50:33 -08002630 vma->vm->clear_range(vma->vm,
2631 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002632 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002633 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002634 }
2635
Daniel Vetter08755462015-04-20 09:04:05 -07002636 if (dev_priv->mm.aliasing_ppgtt && vma->bound & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002637 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002638
Ben Widawsky6f65e292013-12-06 14:10:56 -08002639 appgtt->base.clear_range(&appgtt->base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002640 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002641 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002642 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002643 }
Daniel Vetter74163902012-02-15 23:50:21 +01002644}
2645
2646void i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj)
2647{
Ben Widawsky5c042282011-10-17 15:51:55 -07002648 struct drm_device *dev = obj->base.dev;
2649 struct drm_i915_private *dev_priv = dev->dev_private;
2650 bool interruptible;
2651
2652 interruptible = do_idling(dev_priv);
2653
Imre Deak5ec5b512015-07-08 19:18:59 +03002654 dma_unmap_sg(&dev->pdev->dev, obj->pages->sgl, obj->pages->nents,
2655 PCI_DMA_BIDIRECTIONAL);
Ben Widawsky5c042282011-10-17 15:51:55 -07002656
2657 undo_idling(dev_priv, interruptible);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002658}
Daniel Vetter644ec022012-03-26 09:45:40 +02002659
Chris Wilson42d6ab42012-07-26 11:49:32 +01002660static void i915_gtt_color_adjust(struct drm_mm_node *node,
2661 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +01002662 u64 *start,
2663 u64 *end)
Chris Wilson42d6ab42012-07-26 11:49:32 +01002664{
2665 if (node->color != color)
2666 *start += 4096;
2667
2668 if (!list_empty(&node->node_list)) {
2669 node = list_entry(node->node_list.next,
2670 struct drm_mm_node,
2671 node_list);
2672 if (node->allocated && node->color != color)
2673 *end -= 4096;
2674 }
2675}
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002676
Daniel Vetterf548c0e2014-11-19 21:40:13 +01002677static int i915_gem_setup_global_gtt(struct drm_device *dev,
Michel Thierry088e0df2015-08-07 17:40:17 +01002678 u64 start,
2679 u64 mappable_end,
2680 u64 end)
Daniel Vetter644ec022012-03-26 09:45:40 +02002681{
Ben Widawskye78891c2013-01-25 16:41:04 -08002682 /* Let GEM Manage all of the aperture.
2683 *
2684 * However, leave one page at the end still bound to the scratch page.
2685 * There are a number of places where the hardware apparently prefetches
2686 * past the end of the object, and we've seen multiple hangs with the
2687 * GPU head pointer stuck in a batchbuffer bound at the last page of the
2688 * aperture. One page should be enough to keep any prefetching inside
2689 * of the aperture.
2690 */
Ben Widawsky40d749802013-07-31 16:59:59 -07002691 struct drm_i915_private *dev_priv = dev->dev_private;
2692 struct i915_address_space *ggtt_vm = &dev_priv->gtt.base;
Chris Wilsoned2f3452012-11-15 11:32:19 +00002693 struct drm_mm_node *entry;
2694 struct drm_i915_gem_object *obj;
2695 unsigned long hole_start, hole_end;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002696 int ret;
Daniel Vetter644ec022012-03-26 09:45:40 +02002697
Ben Widawsky35451cb2013-01-17 12:45:13 -08002698 BUG_ON(mappable_end > end);
2699
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002700 ggtt_vm->start = start;
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002701
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002702 /* Subtract the guard page before address space initialization to
2703 * shrink the range used by drm_mm */
2704 ggtt_vm->total = end - start - PAGE_SIZE;
2705 i915_address_space_init(ggtt_vm, dev_priv);
2706 ggtt_vm->total += PAGE_SIZE;
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002707
2708 if (intel_vgpu_active(dev)) {
2709 ret = intel_vgt_balloon(dev);
2710 if (ret)
2711 return ret;
2712 }
2713
Chris Wilson42d6ab42012-07-26 11:49:32 +01002714 if (!HAS_LLC(dev))
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002715 ggtt_vm->mm.color_adjust = i915_gtt_color_adjust;
Daniel Vetter644ec022012-03-26 09:45:40 +02002716
Chris Wilsoned2f3452012-11-15 11:32:19 +00002717 /* Mark any preallocated objects as occupied */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002718 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Ben Widawsky40d749802013-07-31 16:59:59 -07002719 struct i915_vma *vma = i915_gem_obj_to_vma(obj, ggtt_vm);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002720
Michel Thierry088e0df2015-08-07 17:40:17 +01002721 DRM_DEBUG_KMS("reserving preallocated space: %llx + %zx\n",
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002722 i915_gem_obj_ggtt_offset(obj), obj->base.size);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002723
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002724 WARN_ON(i915_gem_obj_ggtt_bound(obj));
Ben Widawsky40d749802013-07-31 16:59:59 -07002725 ret = drm_mm_reserve_node(&ggtt_vm->mm, &vma->node);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002726 if (ret) {
2727 DRM_DEBUG_KMS("Reservation failed: %i\n", ret);
2728 return ret;
2729 }
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002730 vma->bound |= GLOBAL_BIND;
Chris Wilson7c4a7d62015-09-24 11:57:45 +01002731 list_add_tail(&vma->mm_list, &ggtt_vm->inactive_list);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002732 }
2733
Chris Wilsoned2f3452012-11-15 11:32:19 +00002734 /* Clear any non-preallocated blocks */
Ben Widawsky40d749802013-07-31 16:59:59 -07002735 drm_mm_for_each_hole(entry, &ggtt_vm->mm, hole_start, hole_end) {
Chris Wilsoned2f3452012-11-15 11:32:19 +00002736 DRM_DEBUG_KMS("clearing unused GTT space: [%lx, %lx]\n",
2737 hole_start, hole_end);
Ben Widawsky782f1492014-02-20 11:50:33 -08002738 ggtt_vm->clear_range(ggtt_vm, hole_start,
2739 hole_end - hole_start, true);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002740 }
2741
2742 /* And finally clear the reserved guard page */
Ben Widawsky782f1492014-02-20 11:50:33 -08002743 ggtt_vm->clear_range(ggtt_vm, end - PAGE_SIZE, PAGE_SIZE, true);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002744
Daniel Vetterfa76da32014-08-06 20:19:54 +02002745 if (USES_PPGTT(dev) && !USES_FULL_PPGTT(dev)) {
2746 struct i915_hw_ppgtt *ppgtt;
2747
2748 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2749 if (!ppgtt)
2750 return -ENOMEM;
2751
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002752 ret = __hw_ppgtt_init(dev, ppgtt);
Michel Thierry4933d512015-03-24 15:46:22 +00002753 if (ret) {
Daniel Vetter061dd492015-04-14 17:35:13 +02002754 ppgtt->base.cleanup(&ppgtt->base);
Michel Thierry4933d512015-03-24 15:46:22 +00002755 kfree(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002756 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002757 }
Daniel Vetterfa76da32014-08-06 20:19:54 +02002758
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002759 if (ppgtt->base.allocate_va_range)
2760 ret = ppgtt->base.allocate_va_range(&ppgtt->base, 0,
2761 ppgtt->base.total);
2762 if (ret) {
2763 ppgtt->base.cleanup(&ppgtt->base);
2764 kfree(ppgtt);
2765 return ret;
2766 }
2767
2768 ppgtt->base.clear_range(&ppgtt->base,
2769 ppgtt->base.start,
2770 ppgtt->base.total,
2771 true);
2772
Daniel Vetterfa76da32014-08-06 20:19:54 +02002773 dev_priv->mm.aliasing_ppgtt = ppgtt;
Daniel Vetter0a878712015-10-15 14:23:01 +02002774 WARN_ON(dev_priv->gtt.base.bind_vma != ggtt_bind_vma);
2775 dev_priv->gtt.base.bind_vma = aliasing_gtt_bind_vma;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002776 }
2777
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002778 return 0;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002779}
2780
Ben Widawskyd7e50082012-12-18 10:31:25 -08002781void i915_gem_init_global_gtt(struct drm_device *dev)
2782{
2783 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalac44ef602015-06-25 18:35:05 +03002784 u64 gtt_size, mappable_size;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002785
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002786 gtt_size = dev_priv->gtt.base.total;
Ben Widawsky93d18792013-01-17 12:45:17 -08002787 mappable_size = dev_priv->gtt.mappable_end;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002788
Ben Widawskye78891c2013-01-25 16:41:04 -08002789 i915_gem_setup_global_gtt(dev, 0, mappable_size, gtt_size);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002790}
2791
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002792void i915_global_gtt_cleanup(struct drm_device *dev)
2793{
2794 struct drm_i915_private *dev_priv = dev->dev_private;
2795 struct i915_address_space *vm = &dev_priv->gtt.base;
2796
Daniel Vetter70e32542014-08-06 15:04:57 +02002797 if (dev_priv->mm.aliasing_ppgtt) {
2798 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2799
2800 ppgtt->base.cleanup(&ppgtt->base);
2801 }
2802
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002803 if (drm_mm_initialized(&vm->mm)) {
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002804 if (intel_vgpu_active(dev))
2805 intel_vgt_deballoon();
2806
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002807 drm_mm_takedown(&vm->mm);
2808 list_del(&vm->global_link);
2809 }
2810
2811 vm->cleanup(vm);
2812}
Daniel Vetter70e32542014-08-06 15:04:57 +02002813
Daniel Vetter2c642b02015-04-14 17:35:26 +02002814static unsigned int gen6_get_total_gtt_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002815{
2816 snb_gmch_ctl >>= SNB_GMCH_GGMS_SHIFT;
2817 snb_gmch_ctl &= SNB_GMCH_GGMS_MASK;
2818 return snb_gmch_ctl << 20;
2819}
2820
Daniel Vetter2c642b02015-04-14 17:35:26 +02002821static unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002822{
2823 bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
2824 bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
2825 if (bdw_gmch_ctl)
2826 bdw_gmch_ctl = 1 << bdw_gmch_ctl;
Ben Widawsky562d55d2014-05-27 16:53:08 -07002827
2828#ifdef CONFIG_X86_32
2829 /* Limit 32b platforms to a 2GB GGTT: 4 << 20 / pte size * PAGE_SIZE */
2830 if (bdw_gmch_ctl > 4)
2831 bdw_gmch_ctl = 4;
2832#endif
2833
Ben Widawsky9459d252013-11-03 16:53:55 -08002834 return bdw_gmch_ctl << 20;
2835}
2836
Daniel Vetter2c642b02015-04-14 17:35:26 +02002837static unsigned int chv_get_total_gtt_size(u16 gmch_ctrl)
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002838{
2839 gmch_ctrl >>= SNB_GMCH_GGMS_SHIFT;
2840 gmch_ctrl &= SNB_GMCH_GGMS_MASK;
2841
2842 if (gmch_ctrl)
2843 return 1 << (20 + gmch_ctrl);
2844
2845 return 0;
2846}
2847
Daniel Vetter2c642b02015-04-14 17:35:26 +02002848static size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002849{
2850 snb_gmch_ctl >>= SNB_GMCH_GMS_SHIFT;
2851 snb_gmch_ctl &= SNB_GMCH_GMS_MASK;
2852 return snb_gmch_ctl << 25; /* 32 MB units */
2853}
2854
Daniel Vetter2c642b02015-04-14 17:35:26 +02002855static size_t gen8_get_stolen_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002856{
2857 bdw_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2858 bdw_gmch_ctl &= BDW_GMCH_GMS_MASK;
2859 return bdw_gmch_ctl << 25; /* 32 MB units */
2860}
2861
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002862static size_t chv_get_stolen_size(u16 gmch_ctrl)
2863{
2864 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
2865 gmch_ctrl &= SNB_GMCH_GMS_MASK;
2866
2867 /*
2868 * 0x0 to 0x10: 32MB increments starting at 0MB
2869 * 0x11 to 0x16: 4MB increments starting at 8MB
2870 * 0x17 to 0x1d: 4MB increments start at 36MB
2871 */
2872 if (gmch_ctrl < 0x11)
2873 return gmch_ctrl << 25;
2874 else if (gmch_ctrl < 0x17)
2875 return (gmch_ctrl - 0x11 + 2) << 22;
2876 else
2877 return (gmch_ctrl - 0x17 + 9) << 22;
2878}
2879
Damien Lespiau66375012014-01-09 18:02:46 +00002880static size_t gen9_get_stolen_size(u16 gen9_gmch_ctl)
2881{
2882 gen9_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2883 gen9_gmch_ctl &= BDW_GMCH_GMS_MASK;
2884
2885 if (gen9_gmch_ctl < 0xf0)
2886 return gen9_gmch_ctl << 25; /* 32 MB units */
2887 else
2888 /* 4MB increments starting at 0xf0 for 4MB */
2889 return (gen9_gmch_ctl - 0xf0 + 1) << 22;
2890}
2891
Ben Widawsky63340132013-11-04 19:32:22 -08002892static int ggtt_probe_common(struct drm_device *dev,
2893 size_t gtt_size)
2894{
2895 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002896 struct i915_page_scratch *scratch_page;
Bjorn Helgaas21c34602013-12-21 10:52:52 -07002897 phys_addr_t gtt_phys_addr;
Ben Widawsky63340132013-11-04 19:32:22 -08002898
2899 /* For Modern GENs the PTEs and register space are split in the BAR */
Bjorn Helgaas21c34602013-12-21 10:52:52 -07002900 gtt_phys_addr = pci_resource_start(dev->pdev, 0) +
Ben Widawsky63340132013-11-04 19:32:22 -08002901 (pci_resource_len(dev->pdev, 0) / 2);
2902
Imre Deak2a073f892015-03-27 13:07:33 +02002903 /*
2904 * On BXT writes larger than 64 bit to the GTT pagetable range will be
2905 * dropped. For WC mappings in general we have 64 byte burst writes
2906 * when the WC buffer is flushed, so we can't use it, but have to
2907 * resort to an uncached mapping. The WC issue is easily caught by the
2908 * readback check when writing GTT PTE entries.
2909 */
2910 if (IS_BROXTON(dev))
2911 dev_priv->gtt.gsm = ioremap_nocache(gtt_phys_addr, gtt_size);
2912 else
2913 dev_priv->gtt.gsm = ioremap_wc(gtt_phys_addr, gtt_size);
Ben Widawsky63340132013-11-04 19:32:22 -08002914 if (!dev_priv->gtt.gsm) {
2915 DRM_ERROR("Failed to map the gtt page table\n");
2916 return -ENOMEM;
2917 }
2918
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002919 scratch_page = alloc_scratch_page(dev);
2920 if (IS_ERR(scratch_page)) {
Ben Widawsky63340132013-11-04 19:32:22 -08002921 DRM_ERROR("Scratch setup failed\n");
2922 /* iounmap will also get called at remove, but meh */
2923 iounmap(dev_priv->gtt.gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002924 return PTR_ERR(scratch_page);
Ben Widawsky63340132013-11-04 19:32:22 -08002925 }
2926
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002927 dev_priv->gtt.base.scratch_page = scratch_page;
2928
2929 return 0;
Ben Widawsky63340132013-11-04 19:32:22 -08002930}
2931
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002932/* The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
2933 * bits. When using advanced contexts each context stores its own PAT, but
2934 * writing this data shouldn't be harmful even in those cases. */
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002935static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv)
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002936{
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002937 uint64_t pat;
2938
2939 pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) | /* for normal objects, no eLLC */
2940 GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) | /* for something pointing to ptes? */
2941 GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC) | /* for scanout with eLLC */
2942 GEN8_PPAT(3, GEN8_PPAT_UC) | /* Uncached objects, mostly for scanout */
2943 GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
2944 GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
2945 GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
2946 GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
2947
Rodrigo Vivid6a8b722014-11-05 16:56:36 -08002948 if (!USES_PPGTT(dev_priv->dev))
2949 /* Spec: "For GGTT, there is NO pat_sel[2:0] from the entry,
2950 * so RTL will always use the value corresponding to
2951 * pat_sel = 000".
2952 * So let's disable cache for GGTT to avoid screen corruptions.
2953 * MOCS still can be used though.
2954 * - System agent ggtt writes (i.e. cpu gtt mmaps) already work
2955 * before this patch, i.e. the same uncached + snooping access
2956 * like on gen6/7 seems to be in effect.
2957 * - So this just fixes blitter/render access. Again it looks
2958 * like it's not just uncached access, but uncached + snooping.
2959 * So we can still hold onto all our assumptions wrt cpu
2960 * clflushing on LLC machines.
2961 */
2962 pat = GEN8_PPAT(0, GEN8_PPAT_UC);
2963
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002964 /* XXX: spec defines this as 2 distinct registers. It's unclear if a 64b
2965 * write would work. */
Ville Syrjälä7e435ad2015-09-18 20:03:25 +03002966 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
2967 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002968}
2969
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002970static void chv_setup_private_ppat(struct drm_i915_private *dev_priv)
2971{
2972 uint64_t pat;
2973
2974 /*
2975 * Map WB on BDW to snooped on CHV.
2976 *
2977 * Only the snoop bit has meaning for CHV, the rest is
2978 * ignored.
2979 *
Ville Syrjäläcf3d2622014-11-14 21:02:44 +02002980 * The hardware will never snoop for certain types of accesses:
2981 * - CPU GTT (GMADR->GGTT->no snoop->memory)
2982 * - PPGTT page tables
2983 * - some other special cycles
2984 *
2985 * As with BDW, we also need to consider the following for GT accesses:
2986 * "For GGTT, there is NO pat_sel[2:0] from the entry,
2987 * so RTL will always use the value corresponding to
2988 * pat_sel = 000".
2989 * Which means we must set the snoop bit in PAT entry 0
2990 * in order to keep the global status page working.
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002991 */
2992 pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
2993 GEN8_PPAT(1, 0) |
2994 GEN8_PPAT(2, 0) |
2995 GEN8_PPAT(3, 0) |
2996 GEN8_PPAT(4, CHV_PPAT_SNOOP) |
2997 GEN8_PPAT(5, CHV_PPAT_SNOOP) |
2998 GEN8_PPAT(6, CHV_PPAT_SNOOP) |
2999 GEN8_PPAT(7, CHV_PPAT_SNOOP);
3000
Ville Syrjälä7e435ad2015-09-18 20:03:25 +03003001 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
3002 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003003}
3004
Ben Widawsky63340132013-11-04 19:32:22 -08003005static int gen8_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003006 u64 *gtt_total,
Ben Widawsky63340132013-11-04 19:32:22 -08003007 size_t *stolen,
3008 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003009 u64 *mappable_end)
Ben Widawsky63340132013-11-04 19:32:22 -08003010{
3011 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003012 u64 gtt_size;
Ben Widawsky63340132013-11-04 19:32:22 -08003013 u16 snb_gmch_ctl;
3014 int ret;
3015
3016 /* TODO: We're not aware of mappable constraints on gen8 yet */
3017 *mappable_base = pci_resource_start(dev->pdev, 2);
3018 *mappable_end = pci_resource_len(dev->pdev, 2);
3019
3020 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(39)))
3021 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(39));
3022
3023 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
3024
Damien Lespiau66375012014-01-09 18:02:46 +00003025 if (INTEL_INFO(dev)->gen >= 9) {
3026 *stolen = gen9_get_stolen_size(snb_gmch_ctl);
3027 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
3028 } else if (IS_CHERRYVIEW(dev)) {
Damien Lespiaud7f25f22014-05-08 22:19:40 +03003029 *stolen = chv_get_stolen_size(snb_gmch_ctl);
3030 gtt_size = chv_get_total_gtt_size(snb_gmch_ctl);
3031 } else {
3032 *stolen = gen8_get_stolen_size(snb_gmch_ctl);
3033 gtt_size = gen8_get_total_gtt_size(snb_gmch_ctl);
3034 }
Ben Widawsky63340132013-11-04 19:32:22 -08003035
Michel Thierry07749ef2015-03-16 16:00:54 +00003036 *gtt_total = (gtt_size / sizeof(gen8_pte_t)) << PAGE_SHIFT;
Ben Widawsky63340132013-11-04 19:32:22 -08003037
Sumit Singh5a4e33a2015-03-17 11:39:31 +02003038 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003039 chv_setup_private_ppat(dev_priv);
3040 else
3041 bdw_setup_private_ppat(dev_priv);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08003042
Ben Widawsky63340132013-11-04 19:32:22 -08003043 ret = ggtt_probe_common(dev, gtt_size);
3044
Ben Widawsky94ec8f62013-11-02 21:07:18 -07003045 dev_priv->gtt.base.clear_range = gen8_ggtt_clear_range;
3046 dev_priv->gtt.base.insert_entries = gen8_ggtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003047 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
3048 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawsky63340132013-11-04 19:32:22 -08003049
Chris Wilson5bab6f62015-10-23 18:43:32 +01003050 if (IS_CHERRYVIEW(dev))
3051 dev_priv->gtt.base.bind_vma = ggtt_bind_vma__BKL;
3052
Ben Widawsky63340132013-11-04 19:32:22 -08003053 return ret;
3054}
3055
Ben Widawskybaa09f52013-01-24 13:49:57 -08003056static int gen6_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003057 u64 *gtt_total,
Ben Widawsky41907dd2013-02-08 11:32:47 -08003058 size_t *stolen,
3059 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003060 u64 *mappable_end)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003061{
3062 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003063 unsigned int gtt_size;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003064 u16 snb_gmch_ctl;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003065 int ret;
3066
Ben Widawsky41907dd2013-02-08 11:32:47 -08003067 *mappable_base = pci_resource_start(dev->pdev, 2);
3068 *mappable_end = pci_resource_len(dev->pdev, 2);
3069
Ben Widawskybaa09f52013-01-24 13:49:57 -08003070 /* 64/512MB is the current min/max we actually know of, but this is just
3071 * a coarse sanity check.
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003072 */
Ben Widawsky41907dd2013-02-08 11:32:47 -08003073 if ((*mappable_end < (64<<20) || (*mappable_end > (512<<20)))) {
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003074 DRM_ERROR("Unknown GMADR size (%llx)\n",
Ben Widawskybaa09f52013-01-24 13:49:57 -08003075 dev_priv->gtt.mappable_end);
3076 return -ENXIO;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003077 }
3078
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003079 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(40)))
3080 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(40));
Ben Widawskybaa09f52013-01-24 13:49:57 -08003081 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003082
Ben Widawskyc4ae25e2013-05-01 11:00:34 -07003083 *stolen = gen6_get_stolen_size(snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003084
Ben Widawsky63340132013-11-04 19:32:22 -08003085 gtt_size = gen6_get_total_gtt_size(snb_gmch_ctl);
Michel Thierry07749ef2015-03-16 16:00:54 +00003086 *gtt_total = (gtt_size / sizeof(gen6_pte_t)) << PAGE_SHIFT;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003087
Ben Widawsky63340132013-11-04 19:32:22 -08003088 ret = ggtt_probe_common(dev, gtt_size);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003089
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003090 dev_priv->gtt.base.clear_range = gen6_ggtt_clear_range;
3091 dev_priv->gtt.base.insert_entries = gen6_ggtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003092 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
3093 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003094
3095 return ret;
3096}
3097
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003098static void gen6_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003099{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003100
3101 struct i915_gtt *gtt = container_of(vm, struct i915_gtt, base);
Ben Widawsky5ed16782013-11-25 09:54:43 -08003102
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003103 iounmap(gtt->gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03003104 free_scratch_page(vm->dev, vm->scratch_page);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003105}
3106
3107static int i915_gmch_probe(struct drm_device *dev,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003108 u64 *gtt_total,
Ben Widawsky41907dd2013-02-08 11:32:47 -08003109 size_t *stolen,
3110 phys_addr_t *mappable_base,
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003111 u64 *mappable_end)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003112{
3113 struct drm_i915_private *dev_priv = dev->dev_private;
3114 int ret;
3115
Ben Widawskybaa09f52013-01-24 13:49:57 -08003116 ret = intel_gmch_probe(dev_priv->bridge_dev, dev_priv->dev->pdev, NULL);
3117 if (!ret) {
3118 DRM_ERROR("failed to set up gmch\n");
3119 return -EIO;
3120 }
3121
Ben Widawsky41907dd2013-02-08 11:32:47 -08003122 intel_gtt_get(gtt_total, stolen, mappable_base, mappable_end);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003123
3124 dev_priv->gtt.do_idle_maps = needs_idle_maps(dev_priv->dev);
Daniel Vetterd369d2d2015-04-14 17:35:25 +02003125 dev_priv->gtt.base.insert_entries = i915_ggtt_insert_entries;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003126 dev_priv->gtt.base.clear_range = i915_ggtt_clear_range;
Daniel Vetterd369d2d2015-04-14 17:35:25 +02003127 dev_priv->gtt.base.bind_vma = ggtt_bind_vma;
3128 dev_priv->gtt.base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003129
Chris Wilsonc0a7f812013-12-30 12:16:15 +00003130 if (unlikely(dev_priv->gtt.do_idle_maps))
3131 DRM_INFO("applying Ironlake quirks for intel_iommu\n");
3132
Ben Widawskybaa09f52013-01-24 13:49:57 -08003133 return 0;
3134}
3135
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003136static void i915_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003137{
3138 intel_gmch_remove();
3139}
3140
3141int i915_gem_gtt_init(struct drm_device *dev)
3142{
3143 struct drm_i915_private *dev_priv = dev->dev_private;
3144 struct i915_gtt *gtt = &dev_priv->gtt;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003145 int ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003146
Ben Widawskybaa09f52013-01-24 13:49:57 -08003147 if (INTEL_INFO(dev)->gen <= 5) {
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003148 gtt->gtt_probe = i915_gmch_probe;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003149 gtt->base.cleanup = i915_gmch_remove;
Ben Widawsky63340132013-11-04 19:32:22 -08003150 } else if (INTEL_INFO(dev)->gen < 8) {
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003151 gtt->gtt_probe = gen6_gmch_probe;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003152 gtt->base.cleanup = gen6_gmch_remove;
Ben Widawsky4d15c142013-07-04 11:02:06 -07003153 if (IS_HASWELL(dev) && dev_priv->ellc_size)
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003154 gtt->base.pte_encode = iris_pte_encode;
Ben Widawsky4d15c142013-07-04 11:02:06 -07003155 else if (IS_HASWELL(dev))
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003156 gtt->base.pte_encode = hsw_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003157 else if (IS_VALLEYVIEW(dev))
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003158 gtt->base.pte_encode = byt_pte_encode;
Chris Wilson350ec882013-08-06 13:17:02 +01003159 else if (INTEL_INFO(dev)->gen >= 7)
3160 gtt->base.pte_encode = ivb_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003161 else
Chris Wilson350ec882013-08-06 13:17:02 +01003162 gtt->base.pte_encode = snb_pte_encode;
Ben Widawsky63340132013-11-04 19:32:22 -08003163 } else {
3164 dev_priv->gtt.gtt_probe = gen8_gmch_probe;
3165 dev_priv->gtt.base.cleanup = gen6_gmch_remove;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003166 }
3167
Mika Kuoppalac114f762015-06-25 18:35:13 +03003168 gtt->base.dev = dev;
3169
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003170 ret = gtt->gtt_probe(dev, &gtt->base.total, &gtt->stolen_size,
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003171 &gtt->mappable_base, &gtt->mappable_end);
Ben Widawskya54c0c22013-01-24 14:45:00 -08003172 if (ret)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003173 return ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003174
Ben Widawskybaa09f52013-01-24 13:49:57 -08003175 /* GMADR is the PCI mmio aperture into the global GTT. */
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003176 DRM_INFO("Memory usable by graphics device = %lluM\n",
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003177 gtt->base.total >> 20);
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003178 DRM_DEBUG_DRIVER("GMADR size = %lldM\n", gtt->mappable_end >> 20);
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003179 DRM_DEBUG_DRIVER("GTT stolen size = %zdM\n", gtt->stolen_size >> 20);
Daniel Vetter5db6c732014-03-31 16:23:04 +02003180#ifdef CONFIG_INTEL_IOMMU
3181 if (intel_iommu_gfx_mapped)
3182 DRM_INFO("VT-d active for gfx access\n");
3183#endif
Daniel Vettercfa7c862014-04-29 11:53:58 +02003184 /*
3185 * i915.enable_ppgtt is read-only, so do an early pass to validate the
3186 * user's requested state against the hardware/driver capabilities. We
3187 * do this now so that we can print out any log messages once rather
3188 * than every time we check intel_enable_ppgtt().
3189 */
3190 i915.enable_ppgtt = sanitize_enable_ppgtt(dev, i915.enable_ppgtt);
3191 DRM_DEBUG_DRIVER("ppgtt mode: %i\n", i915.enable_ppgtt);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08003192
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003193 return 0;
Daniel Vetter644ec022012-03-26 09:45:40 +02003194}
Ben Widawsky6f65e292013-12-06 14:10:56 -08003195
Daniel Vetterfa423312015-04-14 17:35:23 +02003196void i915_gem_restore_gtt_mappings(struct drm_device *dev)
3197{
3198 struct drm_i915_private *dev_priv = dev->dev_private;
3199 struct drm_i915_gem_object *obj;
3200 struct i915_address_space *vm;
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003201 struct i915_vma *vma;
3202 bool flush;
Daniel Vetterfa423312015-04-14 17:35:23 +02003203
3204 i915_check_and_clear_faults(dev);
3205
3206 /* First fill our portion of the GTT with scratch pages */
3207 dev_priv->gtt.base.clear_range(&dev_priv->gtt.base,
3208 dev_priv->gtt.base.start,
3209 dev_priv->gtt.base.total,
3210 true);
3211
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003212 /* Cache flush objects bound into GGTT and rebind them. */
3213 vm = &dev_priv->gtt.base;
Daniel Vetterfa423312015-04-14 17:35:23 +02003214 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003215 flush = false;
3216 list_for_each_entry(vma, &obj->vma_list, vma_link) {
3217 if (vma->vm != vm)
3218 continue;
Daniel Vetterfa423312015-04-14 17:35:23 +02003219
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003220 WARN_ON(i915_vma_bind(vma, obj->cache_level,
3221 PIN_UPDATE));
3222
3223 flush = true;
3224 }
3225
3226 if (flush)
3227 i915_gem_clflush_object(obj, obj->pin_display);
Daniel Vetterfa423312015-04-14 17:35:23 +02003228 }
3229
Daniel Vetterfa423312015-04-14 17:35:23 +02003230 if (INTEL_INFO(dev)->gen >= 8) {
3231 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
3232 chv_setup_private_ppat(dev_priv);
3233 else
3234 bdw_setup_private_ppat(dev_priv);
3235
3236 return;
3237 }
3238
3239 if (USES_PPGTT(dev)) {
3240 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
3241 /* TODO: Perhaps it shouldn't be gen6 specific */
3242
3243 struct i915_hw_ppgtt *ppgtt =
3244 container_of(vm, struct i915_hw_ppgtt,
3245 base);
3246
3247 if (i915_is_ggtt(vm))
3248 ppgtt = dev_priv->mm.aliasing_ppgtt;
3249
3250 gen6_write_page_range(dev_priv, &ppgtt->pd,
3251 0, ppgtt->base.total);
3252 }
3253 }
3254
3255 i915_ggtt_flush(dev_priv);
3256}
3257
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003258static struct i915_vma *
3259__i915_gem_vma_create(struct drm_i915_gem_object *obj,
3260 struct i915_address_space *vm,
3261 const struct i915_ggtt_view *ggtt_view)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003262{
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003263 struct i915_vma *vma;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003264
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003265 if (WARN_ON(i915_is_ggtt(vm) != !!ggtt_view))
3266 return ERR_PTR(-EINVAL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01003267
3268 vma = kmem_cache_zalloc(to_i915(obj->base.dev)->vmas, GFP_KERNEL);
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003269 if (vma == NULL)
3270 return ERR_PTR(-ENOMEM);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003271
Ben Widawsky6f65e292013-12-06 14:10:56 -08003272 INIT_LIST_HEAD(&vma->vma_link);
3273 INIT_LIST_HEAD(&vma->mm_list);
3274 INIT_LIST_HEAD(&vma->exec_list);
3275 vma->vm = vm;
3276 vma->obj = obj;
3277
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003278 if (i915_is_ggtt(vm))
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003279 vma->ggtt_view = *ggtt_view;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003280
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00003281 list_add_tail(&vma->vma_link, &obj->vma_list);
3282 if (!i915_is_ggtt(vm))
Michel Thierrye07f0552014-08-19 15:49:41 +01003283 i915_ppgtt_get(i915_vm_to_ppgtt(vm));
Ben Widawsky6f65e292013-12-06 14:10:56 -08003284
3285 return vma;
3286}
3287
3288struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003289i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
3290 struct i915_address_space *vm)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003291{
3292 struct i915_vma *vma;
3293
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003294 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003295 if (!vma)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003296 vma = __i915_gem_vma_create(obj, vm,
3297 i915_is_ggtt(vm) ? &i915_ggtt_view_normal : NULL);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003298
3299 return vma;
3300}
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003301
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003302struct i915_vma *
3303i915_gem_obj_lookup_or_create_ggtt_vma(struct drm_i915_gem_object *obj,
3304 const struct i915_ggtt_view *view)
3305{
3306 struct i915_address_space *ggtt = i915_obj_to_ggtt(obj);
3307 struct i915_vma *vma;
3308
3309 if (WARN_ON(!view))
3310 return ERR_PTR(-EINVAL);
3311
3312 vma = i915_gem_obj_to_ggtt_view(obj, view);
3313
3314 if (IS_ERR(vma))
3315 return vma;
3316
3317 if (!vma)
3318 vma = __i915_gem_vma_create(obj, ggtt, view);
3319
3320 return vma;
3321
3322}
3323
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003324static struct scatterlist *
3325rotate_pages(dma_addr_t *in, unsigned int offset,
3326 unsigned int width, unsigned int height,
3327 struct sg_table *st, struct scatterlist *sg)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003328{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003329 unsigned int column, row;
3330 unsigned int src_idx;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003331
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003332 if (!sg) {
3333 st->nents = 0;
3334 sg = st->sgl;
3335 }
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003336
3337 for (column = 0; column < width; column++) {
3338 src_idx = width * (height - 1) + column;
3339 for (row = 0; row < height; row++) {
3340 st->nents++;
3341 /* We don't need the pages, but need to initialize
3342 * the entries so the sg list can be happily traversed.
3343 * The only thing we need are DMA addresses.
3344 */
3345 sg_set_page(sg, NULL, PAGE_SIZE, 0);
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003346 sg_dma_address(sg) = in[offset + src_idx];
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003347 sg_dma_len(sg) = PAGE_SIZE;
3348 sg = sg_next(sg);
3349 src_idx -= width;
3350 }
3351 }
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003352
3353 return sg;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003354}
3355
3356static struct sg_table *
3357intel_rotate_fb_obj_pages(struct i915_ggtt_view *ggtt_view,
3358 struct drm_i915_gem_object *obj)
3359{
Daniel Vettera6d09182015-10-14 16:51:05 +02003360 struct intel_rotation_info *rot_info = &ggtt_view->params.rotation_info;
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003361 unsigned int size_pages = rot_info->size >> PAGE_SHIFT;
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003362 unsigned int size_pages_uv;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003363 struct sg_page_iter sg_iter;
3364 unsigned long i;
3365 dma_addr_t *page_addr_list;
3366 struct sg_table *st;
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003367 unsigned int uv_start_page;
3368 struct scatterlist *sg;
Tvrtko Ursulin1d00dad2015-03-25 10:15:26 +00003369 int ret = -ENOMEM;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003370
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003371 /* Allocate a temporary list of source pages for random access. */
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003372 page_addr_list = drm_malloc_ab(obj->base.size / PAGE_SIZE,
3373 sizeof(dma_addr_t));
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003374 if (!page_addr_list)
3375 return ERR_PTR(ret);
3376
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003377 /* Account for UV plane with NV12. */
3378 if (rot_info->pixel_format == DRM_FORMAT_NV12)
3379 size_pages_uv = rot_info->size_uv >> PAGE_SHIFT;
3380 else
3381 size_pages_uv = 0;
3382
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003383 /* Allocate target SG list. */
3384 st = kmalloc(sizeof(*st), GFP_KERNEL);
3385 if (!st)
3386 goto err_st_alloc;
3387
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003388 ret = sg_alloc_table(st, size_pages + size_pages_uv, GFP_KERNEL);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003389 if (ret)
3390 goto err_sg_alloc;
3391
3392 /* Populate source page list from the object. */
3393 i = 0;
3394 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
3395 page_addr_list[i] = sg_page_iter_dma_address(&sg_iter);
3396 i++;
3397 }
3398
3399 /* Rotate the pages. */
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003400 sg = rotate_pages(page_addr_list, 0,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003401 rot_info->width_pages, rot_info->height_pages,
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003402 st, NULL);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003403
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003404 /* Append the UV plane if NV12. */
3405 if (rot_info->pixel_format == DRM_FORMAT_NV12) {
3406 uv_start_page = size_pages;
3407
3408 /* Check for tile-row un-alignment. */
3409 if (offset_in_page(rot_info->uv_offset))
3410 uv_start_page--;
3411
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01003412 rot_info->uv_start_page = uv_start_page;
3413
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003414 rotate_pages(page_addr_list, uv_start_page,
3415 rot_info->width_pages_uv,
3416 rot_info->height_pages_uv,
3417 st, sg);
3418 }
3419
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003420 DRM_DEBUG_KMS(
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003421 "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 +01003422 obj->base.size, rot_info->pitch, rot_info->height,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003423 rot_info->pixel_format, rot_info->width_pages,
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003424 rot_info->height_pages, size_pages + size_pages_uv,
3425 size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003426
3427 drm_free_large(page_addr_list);
3428
3429 return st;
3430
3431err_sg_alloc:
3432 kfree(st);
3433err_st_alloc:
3434 drm_free_large(page_addr_list);
3435
3436 DRM_DEBUG_KMS(
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003437 "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 +01003438 obj->base.size, ret, rot_info->pitch, rot_info->height,
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01003439 rot_info->pixel_format, rot_info->width_pages,
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003440 rot_info->height_pages, size_pages + size_pages_uv,
3441 size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003442 return ERR_PTR(ret);
3443}
3444
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003445static struct sg_table *
3446intel_partial_pages(const struct i915_ggtt_view *view,
3447 struct drm_i915_gem_object *obj)
3448{
3449 struct sg_table *st;
3450 struct scatterlist *sg;
3451 struct sg_page_iter obj_sg_iter;
3452 int ret = -ENOMEM;
3453
3454 st = kmalloc(sizeof(*st), GFP_KERNEL);
3455 if (!st)
3456 goto err_st_alloc;
3457
3458 ret = sg_alloc_table(st, view->params.partial.size, GFP_KERNEL);
3459 if (ret)
3460 goto err_sg_alloc;
3461
3462 sg = st->sgl;
3463 st->nents = 0;
3464 for_each_sg_page(obj->pages->sgl, &obj_sg_iter, obj->pages->nents,
3465 view->params.partial.offset)
3466 {
3467 if (st->nents >= view->params.partial.size)
3468 break;
3469
3470 sg_set_page(sg, NULL, PAGE_SIZE, 0);
3471 sg_dma_address(sg) = sg_page_iter_dma_address(&obj_sg_iter);
3472 sg_dma_len(sg) = PAGE_SIZE;
3473
3474 sg = sg_next(sg);
3475 st->nents++;
3476 }
3477
3478 return st;
3479
3480err_sg_alloc:
3481 kfree(st);
3482err_st_alloc:
3483 return ERR_PTR(ret);
3484}
3485
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003486static int
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003487i915_get_ggtt_vma_pages(struct i915_vma *vma)
3488{
3489 int ret = 0;
3490
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003491 if (vma->ggtt_view.pages)
3492 return 0;
3493
3494 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
3495 vma->ggtt_view.pages = vma->obj->pages;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003496 else if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED)
3497 vma->ggtt_view.pages =
3498 intel_rotate_fb_obj_pages(&vma->ggtt_view, vma->obj);
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003499 else if (vma->ggtt_view.type == I915_GGTT_VIEW_PARTIAL)
3500 vma->ggtt_view.pages =
3501 intel_partial_pages(&vma->ggtt_view, vma->obj);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003502 else
3503 WARN_ONCE(1, "GGTT view %u not implemented!\n",
3504 vma->ggtt_view.type);
3505
3506 if (!vma->ggtt_view.pages) {
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003507 DRM_ERROR("Failed to get pages for GGTT view type %u!\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003508 vma->ggtt_view.type);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003509 ret = -EINVAL;
3510 } else if (IS_ERR(vma->ggtt_view.pages)) {
3511 ret = PTR_ERR(vma->ggtt_view.pages);
3512 vma->ggtt_view.pages = NULL;
3513 DRM_ERROR("Failed to get pages for VMA view type %u (%d)!\n",
3514 vma->ggtt_view.type, ret);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003515 }
3516
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003517 return ret;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003518}
3519
3520/**
3521 * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
3522 * @vma: VMA to map
3523 * @cache_level: mapping cache level
3524 * @flags: flags like global or local mapping
3525 *
3526 * DMA addresses are taken from the scatter-gather table of this object (or of
3527 * this VMA in case of non-default GGTT views) and PTE entries set up.
3528 * Note that DMA addresses are also the only part of the SG table we care about.
3529 */
3530int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
3531 u32 flags)
3532{
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003533 int ret;
3534 u32 bind_flags;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003535
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003536 if (WARN_ON(flags == 0))
3537 return -EINVAL;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003538
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003539 bind_flags = 0;
Daniel Vetter08755462015-04-20 09:04:05 -07003540 if (flags & PIN_GLOBAL)
3541 bind_flags |= GLOBAL_BIND;
3542 if (flags & PIN_USER)
3543 bind_flags |= LOCAL_BIND;
3544
3545 if (flags & PIN_UPDATE)
3546 bind_flags |= vma->bound;
3547 else
3548 bind_flags &= ~vma->bound;
3549
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003550 if (bind_flags == 0)
3551 return 0;
3552
3553 if (vma->bound == 0 && vma->vm->allocate_va_range) {
3554 trace_i915_va_alloc(vma->vm,
3555 vma->node.start,
3556 vma->node.size,
3557 VM_TO_TRACE_NAME(vma->vm));
3558
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003559 /* XXX: i915_vma_pin() will fix this +- hack */
3560 vma->pin_count++;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003561 ret = vma->vm->allocate_va_range(vma->vm,
3562 vma->node.start,
3563 vma->node.size);
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003564 vma->pin_count--;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003565 if (ret)
3566 return ret;
3567 }
3568
3569 ret = vma->vm->bind_vma(vma, cache_level, bind_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003570 if (ret)
3571 return ret;
Daniel Vetter08755462015-04-20 09:04:05 -07003572
3573 vma->bound |= bind_flags;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003574
3575 return 0;
3576}
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003577
3578/**
3579 * i915_ggtt_view_size - Get the size of a GGTT view.
3580 * @obj: Object the view is of.
3581 * @view: The view in question.
3582 *
3583 * @return The size of the GGTT view in bytes.
3584 */
3585size_t
3586i915_ggtt_view_size(struct drm_i915_gem_object *obj,
3587 const struct i915_ggtt_view *view)
3588{
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003589 if (view->type == I915_GGTT_VIEW_NORMAL) {
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003590 return obj->base.size;
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003591 } else if (view->type == I915_GGTT_VIEW_ROTATED) {
Daniel Vettera6d09182015-10-14 16:51:05 +02003592 return view->params.rotation_info.size;
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003593 } else if (view->type == I915_GGTT_VIEW_PARTIAL) {
3594 return view->params.partial.size << PAGE_SHIFT;
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003595 } else {
3596 WARN_ONCE(1, "GGTT view %u not implemented!\n", view->type);
3597 return obj->base.size;
3598 }
3599}