blob: ca0bf4bb31a7bdc30a5b4aac1c81572ee647ca34 [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
Chris Wilsonce7fda22016-04-28 09:56:38 +010096static inline struct i915_ggtt *
97i915_vm_to_ggtt(struct i915_address_space *vm)
98{
99 GEM_BUG_ON(!i915_is_ggtt(vm));
100 return container_of(vm, struct i915_ggtt, base);
101}
102
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200103static int
104i915_get_ggtt_vma_pages(struct i915_vma *vma);
105
Ville Syrjäläb5e16982016-01-14 15:22:10 +0200106const struct i915_ggtt_view i915_ggtt_view_normal = {
107 .type = I915_GGTT_VIEW_NORMAL,
108};
Joonas Lahtinen9abc4642015-03-27 13:09:22 +0200109const struct i915_ggtt_view i915_ggtt_view_rotated = {
Ville Syrjäläb5e16982016-01-14 15:22:10 +0200110 .type = I915_GGTT_VIEW_ROTATED,
Joonas Lahtinen9abc4642015-03-27 13:09:22 +0200111};
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +0000112
Daniel Vettercfa7c862014-04-29 11:53:58 +0200113static int sanitize_enable_ppgtt(struct drm_device *dev, int enable_ppgtt)
114{
Chris Wilson1893a712014-09-19 11:56:27 +0100115 bool has_aliasing_ppgtt;
116 bool has_full_ppgtt;
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100117 bool has_full_48bit_ppgtt;
Chris Wilson1893a712014-09-19 11:56:27 +0100118
119 has_aliasing_ppgtt = INTEL_INFO(dev)->gen >= 6;
120 has_full_ppgtt = INTEL_INFO(dev)->gen >= 7;
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100121 has_full_48bit_ppgtt = IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9;
Chris Wilson1893a712014-09-19 11:56:27 +0100122
Yu Zhang71ba2d62015-02-10 19:05:54 +0800123 if (intel_vgpu_active(dev))
124 has_full_ppgtt = false; /* emulation is too hard */
125
Damien Lespiau70ee45e2014-11-14 15:05:59 +0000126 /*
127 * We don't allow disabling PPGTT for gen9+ as it's a requirement for
128 * execlists, the sole mechanism available to submit work.
129 */
130 if (INTEL_INFO(dev)->gen < 9 &&
131 (enable_ppgtt == 0 || !has_aliasing_ppgtt))
Daniel Vettercfa7c862014-04-29 11:53:58 +0200132 return 0;
133
134 if (enable_ppgtt == 1)
135 return 1;
136
Chris Wilson1893a712014-09-19 11:56:27 +0100137 if (enable_ppgtt == 2 && has_full_ppgtt)
Daniel Vettercfa7c862014-04-29 11:53:58 +0200138 return 2;
139
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100140 if (enable_ppgtt == 3 && has_full_48bit_ppgtt)
141 return 3;
142
Daniel Vetter93a25a92014-03-06 09:40:43 +0100143#ifdef CONFIG_INTEL_IOMMU
144 /* Disable ppgtt on SNB if VT-d is on. */
145 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped) {
146 DRM_INFO("Disabling PPGTT because VT-d is on\n");
Daniel Vettercfa7c862014-04-29 11:53:58 +0200147 return 0;
Daniel Vetter93a25a92014-03-06 09:40:43 +0100148 }
149#endif
150
Jesse Barnes62942ed2014-06-13 09:28:33 -0700151 /* Early VLV doesn't have this */
Wayne Boyer666a4532015-12-09 12:29:35 -0800152 if (IS_VALLEYVIEW(dev) && dev->pdev->revision < 0xb) {
Jesse Barnes62942ed2014-06-13 09:28:33 -0700153 DRM_DEBUG_DRIVER("disabling PPGTT on pre-B3 step VLV\n");
154 return 0;
155 }
156
Michel Thierry2f82bbd2014-12-15 14:58:00 +0000157 if (INTEL_INFO(dev)->gen >= 8 && i915.enable_execlists)
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100158 return has_full_48bit_ppgtt ? 3 : 2;
Michel Thierry2f82bbd2014-12-15 14:58:00 +0000159 else
160 return has_aliasing_ppgtt ? 1 : 0;
Daniel Vetter93a25a92014-03-06 09:40:43 +0100161}
162
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200163static int ppgtt_bind_vma(struct i915_vma *vma,
164 enum i915_cache_level cache_level,
165 u32 unused)
Daniel Vetter47552652015-04-14 17:35:24 +0200166{
167 u32 pte_flags = 0;
168
169 /* Currently applicable only to VLV */
170 if (vma->obj->gt_ro)
171 pte_flags |= PTE_READ_ONLY;
172
173 vma->vm->insert_entries(vma->vm, vma->obj->pages, vma->node.start,
174 cache_level, pte_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200175
176 return 0;
Daniel Vetter47552652015-04-14 17:35:24 +0200177}
178
179static void ppgtt_unbind_vma(struct i915_vma *vma)
180{
181 vma->vm->clear_range(vma->vm,
182 vma->node.start,
183 vma->obj->base.size,
184 true);
185}
Ben Widawsky6f65e292013-12-06 14:10:56 -0800186
Daniel Vetter2c642b02015-04-14 17:35:26 +0200187static gen8_pte_t gen8_pte_encode(dma_addr_t addr,
188 enum i915_cache_level level,
189 bool valid)
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700190{
Michel Thierry07749ef2015-03-16 16:00:54 +0000191 gen8_pte_t pte = valid ? _PAGE_PRESENT | _PAGE_RW : 0;
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700192 pte |= addr;
Ben Widawsky63c42e52014-04-18 18:04:27 -0300193
194 switch (level) {
195 case I915_CACHE_NONE:
Ben Widawskyfbe5d362013-11-04 19:56:49 -0800196 pte |= PPAT_UNCACHED_INDEX;
Ben Widawsky63c42e52014-04-18 18:04:27 -0300197 break;
198 case I915_CACHE_WT:
199 pte |= PPAT_DISPLAY_ELLC_INDEX;
200 break;
201 default:
202 pte |= PPAT_CACHED_INDEX;
203 break;
204 }
205
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700206 return pte;
207}
208
Mika Kuoppalafe36f552015-06-25 18:35:16 +0300209static gen8_pde_t gen8_pde_encode(const dma_addr_t addr,
210 const enum i915_cache_level level)
Ben Widawskyb1fe6672013-11-04 21:20:14 -0800211{
Michel Thierry07749ef2015-03-16 16:00:54 +0000212 gen8_pde_t pde = _PAGE_PRESENT | _PAGE_RW;
Ben Widawskyb1fe6672013-11-04 21:20:14 -0800213 pde |= addr;
214 if (level != I915_CACHE_NONE)
215 pde |= PPAT_CACHED_PDE_INDEX;
216 else
217 pde |= PPAT_UNCACHED_INDEX;
218 return pde;
219}
220
Michel Thierry762d9932015-07-30 11:05:29 +0100221#define gen8_pdpe_encode gen8_pde_encode
222#define gen8_pml4e_encode gen8_pde_encode
223
Michel Thierry07749ef2015-03-16 16:00:54 +0000224static gen6_pte_t snb_pte_encode(dma_addr_t addr,
225 enum i915_cache_level level,
226 bool valid, u32 unused)
Ben Widawsky54d12522012-09-24 16:44:32 -0700227{
Michel Thierry07749ef2015-03-16 16:00:54 +0000228 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky54d12522012-09-24 16:44:32 -0700229 pte |= GEN6_PTE_ADDR_ENCODE(addr);
Ben Widawskye7210c32012-10-19 09:33:22 -0700230
231 switch (level) {
Chris Wilson350ec882013-08-06 13:17:02 +0100232 case I915_CACHE_L3_LLC:
233 case I915_CACHE_LLC:
234 pte |= GEN6_PTE_CACHE_LLC;
235 break;
236 case I915_CACHE_NONE:
237 pte |= GEN6_PTE_UNCACHED;
238 break;
239 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +0100240 MISSING_CASE(level);
Chris Wilson350ec882013-08-06 13:17:02 +0100241 }
242
243 return pte;
244}
245
Michel Thierry07749ef2015-03-16 16:00:54 +0000246static gen6_pte_t ivb_pte_encode(dma_addr_t addr,
247 enum i915_cache_level level,
248 bool valid, u32 unused)
Chris Wilson350ec882013-08-06 13:17:02 +0100249{
Michel Thierry07749ef2015-03-16 16:00:54 +0000250 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Chris Wilson350ec882013-08-06 13:17:02 +0100251 pte |= GEN6_PTE_ADDR_ENCODE(addr);
252
253 switch (level) {
254 case I915_CACHE_L3_LLC:
255 pte |= GEN7_PTE_CACHE_L3_LLC;
Ben Widawskye7210c32012-10-19 09:33:22 -0700256 break;
257 case I915_CACHE_LLC:
258 pte |= GEN6_PTE_CACHE_LLC;
259 break;
260 case I915_CACHE_NONE:
Kenneth Graunke91197082013-04-22 00:53:51 -0700261 pte |= GEN6_PTE_UNCACHED;
Ben Widawskye7210c32012-10-19 09:33:22 -0700262 break;
263 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +0100264 MISSING_CASE(level);
Ben Widawskye7210c32012-10-19 09:33:22 -0700265 }
266
Ben Widawsky54d12522012-09-24 16:44:32 -0700267 return pte;
268}
269
Michel Thierry07749ef2015-03-16 16:00:54 +0000270static gen6_pte_t byt_pte_encode(dma_addr_t addr,
271 enum i915_cache_level level,
272 bool valid, u32 flags)
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700273{
Michel Thierry07749ef2015-03-16 16:00:54 +0000274 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700275 pte |= GEN6_PTE_ADDR_ENCODE(addr);
276
Akash Goel24f3a8c2014-06-17 10:59:42 +0530277 if (!(flags & PTE_READ_ONLY))
278 pte |= BYT_PTE_WRITEABLE;
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700279
280 if (level != I915_CACHE_NONE)
281 pte |= BYT_PTE_SNOOPED_BY_CPU_CACHES;
282
283 return pte;
284}
285
Michel Thierry07749ef2015-03-16 16:00:54 +0000286static gen6_pte_t hsw_pte_encode(dma_addr_t addr,
287 enum i915_cache_level level,
288 bool valid, u32 unused)
Kenneth Graunke91197082013-04-22 00:53:51 -0700289{
Michel Thierry07749ef2015-03-16 16:00:54 +0000290 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky0d8ff152013-07-04 11:02:03 -0700291 pte |= HSW_PTE_ADDR_ENCODE(addr);
Kenneth Graunke91197082013-04-22 00:53:51 -0700292
293 if (level != I915_CACHE_NONE)
Ben Widawsky87a6b682013-08-04 23:47:29 -0700294 pte |= HSW_WB_LLC_AGE3;
Kenneth Graunke91197082013-04-22 00:53:51 -0700295
296 return pte;
297}
298
Michel Thierry07749ef2015-03-16 16:00:54 +0000299static gen6_pte_t iris_pte_encode(dma_addr_t addr,
300 enum i915_cache_level level,
301 bool valid, u32 unused)
Ben Widawsky4d15c142013-07-04 11:02:06 -0700302{
Michel Thierry07749ef2015-03-16 16:00:54 +0000303 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky4d15c142013-07-04 11:02:06 -0700304 pte |= HSW_PTE_ADDR_ENCODE(addr);
305
Chris Wilson651d7942013-08-08 14:41:10 +0100306 switch (level) {
307 case I915_CACHE_NONE:
308 break;
309 case I915_CACHE_WT:
Chris Wilsonc51e9702013-11-22 10:37:53 +0000310 pte |= HSW_WT_ELLC_LLC_AGE3;
Chris Wilson651d7942013-08-08 14:41:10 +0100311 break;
312 default:
Chris Wilsonc51e9702013-11-22 10:37:53 +0000313 pte |= HSW_WB_ELLC_LLC_AGE3;
Chris Wilson651d7942013-08-08 14:41:10 +0100314 break;
315 }
Ben Widawsky4d15c142013-07-04 11:02:06 -0700316
317 return pte;
318}
319
Mika Kuoppalac114f762015-06-25 18:35:13 +0300320static int __setup_page_dma(struct drm_device *dev,
321 struct i915_page_dma *p, gfp_t flags)
Ben Widawsky678d96f2015-03-16 16:00:56 +0000322{
323 struct device *device = &dev->pdev->dev;
324
Mika Kuoppalac114f762015-06-25 18:35:13 +0300325 p->page = alloc_page(flags);
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300326 if (!p->page)
Michel Thierry1266cdb2015-03-24 17:06:33 +0000327 return -ENOMEM;
328
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300329 p->daddr = dma_map_page(device,
330 p->page, 0, 4096, PCI_DMA_BIDIRECTIONAL);
331
332 if (dma_mapping_error(device, p->daddr)) {
333 __free_page(p->page);
334 return -EINVAL;
335 }
336
Michel Thierry1266cdb2015-03-24 17:06:33 +0000337 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000338}
339
Mika Kuoppalac114f762015-06-25 18:35:13 +0300340static int setup_page_dma(struct drm_device *dev, struct i915_page_dma *p)
341{
342 return __setup_page_dma(dev, p, GFP_KERNEL);
343}
344
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300345static void cleanup_page_dma(struct drm_device *dev, struct i915_page_dma *p)
346{
347 if (WARN_ON(!p->page))
348 return;
349
350 dma_unmap_page(&dev->pdev->dev, p->daddr, 4096, PCI_DMA_BIDIRECTIONAL);
351 __free_page(p->page);
352 memset(p, 0, sizeof(*p));
353}
354
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300355static void *kmap_page_dma(struct i915_page_dma *p)
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300356{
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300357 return kmap_atomic(p->page);
358}
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300359
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300360/* We use the flushing unmap only with ppgtt structures:
361 * page directories, page tables and scratch pages.
362 */
363static void kunmap_page_dma(struct drm_device *dev, void *vaddr)
364{
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300365 /* There are only few exceptions for gen >=6. chv and bxt.
366 * And we are not sure about the latter so play safe for now.
367 */
368 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
369 drm_clflush_virt_range(vaddr, PAGE_SIZE);
370
371 kunmap_atomic(vaddr);
372}
373
Mika Kuoppala567047b2015-06-25 18:35:12 +0300374#define kmap_px(px) kmap_page_dma(px_base(px))
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300375#define kunmap_px(ppgtt, vaddr) kunmap_page_dma((ppgtt)->base.dev, (vaddr))
376
Mika Kuoppala567047b2015-06-25 18:35:12 +0300377#define setup_px(dev, px) setup_page_dma((dev), px_base(px))
378#define cleanup_px(dev, px) cleanup_page_dma((dev), px_base(px))
379#define fill_px(dev, px, v) fill_page_dma((dev), px_base(px), (v))
380#define fill32_px(dev, px, v) fill_page_dma_32((dev), px_base(px), (v))
381
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300382static void fill_page_dma(struct drm_device *dev, struct i915_page_dma *p,
383 const uint64_t val)
384{
385 int i;
386 uint64_t * const vaddr = kmap_page_dma(p);
387
388 for (i = 0; i < 512; i++)
389 vaddr[i] = val;
390
391 kunmap_page_dma(dev, vaddr);
392}
393
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300394static void fill_page_dma_32(struct drm_device *dev, struct i915_page_dma *p,
395 const uint32_t val32)
396{
397 uint64_t v = val32;
398
399 v = v << 32 | val32;
400
401 fill_page_dma(dev, p, v);
402}
403
Mika Kuoppala4ad2af12015-06-30 18:16:39 +0300404static struct i915_page_scratch *alloc_scratch_page(struct drm_device *dev)
405{
406 struct i915_page_scratch *sp;
407 int ret;
408
409 sp = kzalloc(sizeof(*sp), GFP_KERNEL);
410 if (sp == NULL)
411 return ERR_PTR(-ENOMEM);
412
413 ret = __setup_page_dma(dev, px_base(sp), GFP_DMA32 | __GFP_ZERO);
414 if (ret) {
415 kfree(sp);
416 return ERR_PTR(ret);
417 }
418
419 set_pages_uc(px_page(sp), 1);
420
421 return sp;
422}
423
424static void free_scratch_page(struct drm_device *dev,
425 struct i915_page_scratch *sp)
426{
427 set_pages_wb(px_page(sp), 1);
428
429 cleanup_px(dev, sp);
430 kfree(sp);
431}
432
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +0300433static struct i915_page_table *alloc_pt(struct drm_device *dev)
Ben Widawsky06fda602015-02-24 16:22:36 +0000434{
Michel Thierryec565b32015-04-08 12:13:23 +0100435 struct i915_page_table *pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000436 const size_t count = INTEL_INFO(dev)->gen >= 8 ?
437 GEN8_PTES : GEN6_PTES;
438 int ret = -ENOMEM;
Ben Widawsky06fda602015-02-24 16:22:36 +0000439
440 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
441 if (!pt)
442 return ERR_PTR(-ENOMEM);
443
Ben Widawsky678d96f2015-03-16 16:00:56 +0000444 pt->used_ptes = kcalloc(BITS_TO_LONGS(count), sizeof(*pt->used_ptes),
445 GFP_KERNEL);
446
447 if (!pt->used_ptes)
448 goto fail_bitmap;
449
Mika Kuoppala567047b2015-06-25 18:35:12 +0300450 ret = setup_px(dev, pt);
Ben Widawsky678d96f2015-03-16 16:00:56 +0000451 if (ret)
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300452 goto fail_page_m;
Ben Widawsky06fda602015-02-24 16:22:36 +0000453
454 return pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000455
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300456fail_page_m:
Ben Widawsky678d96f2015-03-16 16:00:56 +0000457 kfree(pt->used_ptes);
458fail_bitmap:
459 kfree(pt);
460
461 return ERR_PTR(ret);
Ben Widawsky06fda602015-02-24 16:22:36 +0000462}
463
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300464static void free_pt(struct drm_device *dev, struct i915_page_table *pt)
Ben Widawsky06fda602015-02-24 16:22:36 +0000465{
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300466 cleanup_px(dev, pt);
467 kfree(pt->used_ptes);
468 kfree(pt);
469}
470
471static void gen8_initialize_pt(struct i915_address_space *vm,
472 struct i915_page_table *pt)
473{
474 gen8_pte_t scratch_pte;
475
476 scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
477 I915_CACHE_LLC, true);
478
479 fill_px(vm->dev, pt, scratch_pte);
480}
481
482static void gen6_initialize_pt(struct i915_address_space *vm,
483 struct i915_page_table *pt)
484{
485 gen6_pte_t scratch_pte;
486
487 WARN_ON(px_dma(vm->scratch_page) == 0);
488
489 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
490 I915_CACHE_LLC, true, 0);
491
492 fill32_px(vm->dev, pt, scratch_pte);
Ben Widawsky06fda602015-02-24 16:22:36 +0000493}
494
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +0300495static struct i915_page_directory *alloc_pd(struct drm_device *dev)
Ben Widawsky06fda602015-02-24 16:22:36 +0000496{
Michel Thierryec565b32015-04-08 12:13:23 +0100497 struct i915_page_directory *pd;
Michel Thierry33c88192015-04-08 12:13:33 +0100498 int ret = -ENOMEM;
Ben Widawsky06fda602015-02-24 16:22:36 +0000499
500 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
501 if (!pd)
502 return ERR_PTR(-ENOMEM);
503
Michel Thierry33c88192015-04-08 12:13:33 +0100504 pd->used_pdes = kcalloc(BITS_TO_LONGS(I915_PDES),
505 sizeof(*pd->used_pdes), GFP_KERNEL);
506 if (!pd->used_pdes)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300507 goto fail_bitmap;
Michel Thierry33c88192015-04-08 12:13:33 +0100508
Mika Kuoppala567047b2015-06-25 18:35:12 +0300509 ret = setup_px(dev, pd);
Michel Thierry33c88192015-04-08 12:13:33 +0100510 if (ret)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300511 goto fail_page_m;
Michel Thierrye5815a22015-04-08 12:13:32 +0100512
Ben Widawsky06fda602015-02-24 16:22:36 +0000513 return pd;
Michel Thierry33c88192015-04-08 12:13:33 +0100514
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300515fail_page_m:
Michel Thierry33c88192015-04-08 12:13:33 +0100516 kfree(pd->used_pdes);
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300517fail_bitmap:
Michel Thierry33c88192015-04-08 12:13:33 +0100518 kfree(pd);
519
520 return ERR_PTR(ret);
Ben Widawsky06fda602015-02-24 16:22:36 +0000521}
522
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300523static void free_pd(struct drm_device *dev, struct i915_page_directory *pd)
524{
525 if (px_page(pd)) {
526 cleanup_px(dev, pd);
527 kfree(pd->used_pdes);
528 kfree(pd);
529 }
530}
531
532static void gen8_initialize_pd(struct i915_address_space *vm,
533 struct i915_page_directory *pd)
534{
535 gen8_pde_t scratch_pde;
536
537 scratch_pde = gen8_pde_encode(px_dma(vm->scratch_pt), I915_CACHE_LLC);
538
539 fill_px(vm->dev, pd, scratch_pde);
540}
541
Michel Thierry6ac18502015-07-29 17:23:46 +0100542static int __pdp_init(struct drm_device *dev,
543 struct i915_page_directory_pointer *pdp)
544{
545 size_t pdpes = I915_PDPES_PER_PDP(dev);
546
547 pdp->used_pdpes = kcalloc(BITS_TO_LONGS(pdpes),
548 sizeof(unsigned long),
549 GFP_KERNEL);
550 if (!pdp->used_pdpes)
551 return -ENOMEM;
552
553 pdp->page_directory = kcalloc(pdpes, sizeof(*pdp->page_directory),
554 GFP_KERNEL);
555 if (!pdp->page_directory) {
556 kfree(pdp->used_pdpes);
557 /* the PDP might be the statically allocated top level. Keep it
558 * as clean as possible */
559 pdp->used_pdpes = NULL;
560 return -ENOMEM;
561 }
562
563 return 0;
564}
565
566static void __pdp_fini(struct i915_page_directory_pointer *pdp)
567{
568 kfree(pdp->used_pdpes);
569 kfree(pdp->page_directory);
570 pdp->page_directory = NULL;
571}
572
Michel Thierry762d9932015-07-30 11:05:29 +0100573static struct
574i915_page_directory_pointer *alloc_pdp(struct drm_device *dev)
575{
576 struct i915_page_directory_pointer *pdp;
577 int ret = -ENOMEM;
578
579 WARN_ON(!USES_FULL_48BIT_PPGTT(dev));
580
581 pdp = kzalloc(sizeof(*pdp), GFP_KERNEL);
582 if (!pdp)
583 return ERR_PTR(-ENOMEM);
584
585 ret = __pdp_init(dev, pdp);
586 if (ret)
587 goto fail_bitmap;
588
589 ret = setup_px(dev, pdp);
590 if (ret)
591 goto fail_page_m;
592
593 return pdp;
594
595fail_page_m:
596 __pdp_fini(pdp);
597fail_bitmap:
598 kfree(pdp);
599
600 return ERR_PTR(ret);
601}
602
Michel Thierry6ac18502015-07-29 17:23:46 +0100603static void free_pdp(struct drm_device *dev,
604 struct i915_page_directory_pointer *pdp)
605{
606 __pdp_fini(pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100607 if (USES_FULL_48BIT_PPGTT(dev)) {
608 cleanup_px(dev, pdp);
609 kfree(pdp);
610 }
611}
612
Michel Thierry69ab76f2015-07-29 17:23:55 +0100613static void gen8_initialize_pdp(struct i915_address_space *vm,
614 struct i915_page_directory_pointer *pdp)
615{
616 gen8_ppgtt_pdpe_t scratch_pdpe;
617
618 scratch_pdpe = gen8_pdpe_encode(px_dma(vm->scratch_pd), I915_CACHE_LLC);
619
620 fill_px(vm->dev, pdp, scratch_pdpe);
621}
622
623static void gen8_initialize_pml4(struct i915_address_space *vm,
624 struct i915_pml4 *pml4)
625{
626 gen8_ppgtt_pml4e_t scratch_pml4e;
627
628 scratch_pml4e = gen8_pml4e_encode(px_dma(vm->scratch_pdp),
629 I915_CACHE_LLC);
630
631 fill_px(vm->dev, pml4, scratch_pml4e);
632}
633
Michel Thierry762d9932015-07-30 11:05:29 +0100634static void
635gen8_setup_page_directory(struct i915_hw_ppgtt *ppgtt,
636 struct i915_page_directory_pointer *pdp,
637 struct i915_page_directory *pd,
638 int index)
639{
640 gen8_ppgtt_pdpe_t *page_directorypo;
641
642 if (!USES_FULL_48BIT_PPGTT(ppgtt->base.dev))
643 return;
644
645 page_directorypo = kmap_px(pdp);
646 page_directorypo[index] = gen8_pdpe_encode(px_dma(pd), I915_CACHE_LLC);
647 kunmap_px(ppgtt, page_directorypo);
648}
649
650static void
651gen8_setup_page_directory_pointer(struct i915_hw_ppgtt *ppgtt,
652 struct i915_pml4 *pml4,
653 struct i915_page_directory_pointer *pdp,
654 int index)
655{
656 gen8_ppgtt_pml4e_t *pagemap = kmap_px(pml4);
657
658 WARN_ON(!USES_FULL_48BIT_PPGTT(ppgtt->base.dev));
659 pagemap[index] = gen8_pml4e_encode(px_dma(pdp), I915_CACHE_LLC);
660 kunmap_px(ppgtt, pagemap);
Michel Thierry6ac18502015-07-29 17:23:46 +0100661}
662
Ben Widawsky94e409c2013-11-04 22:29:36 -0800663/* Broadwell Page Directory Pointer Descriptors */
John Harrisone85b26d2015-05-29 17:43:56 +0100664static int gen8_write_pdp(struct drm_i915_gem_request *req,
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100665 unsigned entry,
666 dma_addr_t addr)
Ben Widawsky94e409c2013-11-04 22:29:36 -0800667{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000668 struct intel_engine_cs *engine = req->engine;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800669 int ret;
670
671 BUG_ON(entry >= 4);
672
John Harrison5fb9de12015-05-29 17:44:07 +0100673 ret = intel_ring_begin(req, 6);
Ben Widawsky94e409c2013-11-04 22:29:36 -0800674 if (ret)
675 return ret;
676
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000677 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(1));
678 intel_ring_emit_reg(engine, GEN8_RING_PDP_UDW(engine, entry));
679 intel_ring_emit(engine, upper_32_bits(addr));
680 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(1));
681 intel_ring_emit_reg(engine, GEN8_RING_PDP_LDW(engine, entry));
682 intel_ring_emit(engine, lower_32_bits(addr));
683 intel_ring_advance(engine);
Ben Widawsky94e409c2013-11-04 22:29:36 -0800684
685 return 0;
686}
687
Michel Thierry2dba3232015-07-30 11:06:23 +0100688static int gen8_legacy_mm_switch(struct i915_hw_ppgtt *ppgtt,
689 struct drm_i915_gem_request *req)
Ben Widawsky94e409c2013-11-04 22:29:36 -0800690{
Ben Widawskyeeb94882013-12-06 14:11:10 -0800691 int i, ret;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800692
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100693 for (i = GEN8_LEGACY_PDPES - 1; i >= 0; i--) {
Mika Kuoppalad852c7b2015-06-25 18:35:06 +0300694 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
695
John Harrisone85b26d2015-05-29 17:43:56 +0100696 ret = gen8_write_pdp(req, i, pd_daddr);
Ben Widawskyeeb94882013-12-06 14:11:10 -0800697 if (ret)
698 return ret;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800699 }
Ben Widawskyd595bd42013-11-25 09:54:32 -0800700
Ben Widawskyeeb94882013-12-06 14:11:10 -0800701 return 0;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800702}
703
Michel Thierry2dba3232015-07-30 11:06:23 +0100704static int gen8_48b_mm_switch(struct i915_hw_ppgtt *ppgtt,
705 struct drm_i915_gem_request *req)
706{
707 return gen8_write_pdp(req, 0, px_dma(&ppgtt->pml4));
708}
709
Michel Thierryf9b5b782015-07-30 11:02:49 +0100710static void gen8_ppgtt_clear_pte_range(struct i915_address_space *vm,
711 struct i915_page_directory_pointer *pdp,
712 uint64_t start,
713 uint64_t length,
714 gen8_pte_t scratch_pte)
Ben Widawsky459108b2013-11-02 21:07:23 -0700715{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300716 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierryf9b5b782015-07-30 11:02:49 +0100717 gen8_pte_t *pt_vaddr;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100718 unsigned pdpe = gen8_pdpe_index(start);
719 unsigned pde = gen8_pde_index(start);
720 unsigned pte = gen8_pte_index(start);
Ben Widawsky782f1492014-02-20 11:50:33 -0800721 unsigned num_entries = length >> PAGE_SHIFT;
Ben Widawsky459108b2013-11-02 21:07:23 -0700722 unsigned last_pte, i;
723
Michel Thierryf9b5b782015-07-30 11:02:49 +0100724 if (WARN_ON(!pdp))
725 return;
Ben Widawsky459108b2013-11-02 21:07:23 -0700726
727 while (num_entries) {
Michel Thierryec565b32015-04-08 12:13:23 +0100728 struct i915_page_directory *pd;
729 struct i915_page_table *pt;
Ben Widawsky06fda602015-02-24 16:22:36 +0000730
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100731 if (WARN_ON(!pdp->page_directory[pdpe]))
Michel Thierry00245262015-06-25 12:59:38 +0100732 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000733
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100734 pd = pdp->page_directory[pdpe];
Ben Widawsky06fda602015-02-24 16:22:36 +0000735
736 if (WARN_ON(!pd->page_table[pde]))
Michel Thierry00245262015-06-25 12:59:38 +0100737 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000738
739 pt = pd->page_table[pde];
740
Mika Kuoppala567047b2015-06-25 18:35:12 +0300741 if (WARN_ON(!px_page(pt)))
Michel Thierry00245262015-06-25 12:59:38 +0100742 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000743
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800744 last_pte = pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +0000745 if (last_pte > GEN8_PTES)
746 last_pte = GEN8_PTES;
Ben Widawsky459108b2013-11-02 21:07:23 -0700747
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300748 pt_vaddr = kmap_px(pt);
Ben Widawsky459108b2013-11-02 21:07:23 -0700749
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800750 for (i = pte; i < last_pte; i++) {
Ben Widawsky459108b2013-11-02 21:07:23 -0700751 pt_vaddr[i] = scratch_pte;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800752 num_entries--;
753 }
Ben Widawsky459108b2013-11-02 21:07:23 -0700754
Matthew Auld44a71022016-04-12 16:57:42 +0100755 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky459108b2013-11-02 21:07:23 -0700756
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800757 pte = 0;
Michel Thierry07749ef2015-03-16 16:00:54 +0000758 if (++pde == I915_PDES) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100759 if (++pdpe == I915_PDPES_PER_PDP(vm->dev))
760 break;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800761 pde = 0;
762 }
Ben Widawsky459108b2013-11-02 21:07:23 -0700763 }
764}
765
Michel Thierryf9b5b782015-07-30 11:02:49 +0100766static void gen8_ppgtt_clear_range(struct i915_address_space *vm,
767 uint64_t start,
768 uint64_t length,
769 bool use_scratch)
Ben Widawsky9df15b42013-11-02 21:07:24 -0700770{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300771 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierryf9b5b782015-07-30 11:02:49 +0100772 gen8_pte_t scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
773 I915_CACHE_LLC, use_scratch);
774
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100775 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
776 gen8_ppgtt_clear_pte_range(vm, &ppgtt->pdp, start, length,
777 scratch_pte);
778 } else {
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000779 uint64_t pml4e;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100780 struct i915_page_directory_pointer *pdp;
781
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000782 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, pml4e) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100783 gen8_ppgtt_clear_pte_range(vm, pdp, start, length,
784 scratch_pte);
785 }
786 }
Michel Thierryf9b5b782015-07-30 11:02:49 +0100787}
788
789static void
790gen8_ppgtt_insert_pte_entries(struct i915_address_space *vm,
791 struct i915_page_directory_pointer *pdp,
Michel Thierry3387d432015-08-03 09:52:47 +0100792 struct sg_page_iter *sg_iter,
Michel Thierryf9b5b782015-07-30 11:02:49 +0100793 uint64_t start,
794 enum i915_cache_level cache_level)
795{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300796 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry07749ef2015-03-16 16:00:54 +0000797 gen8_pte_t *pt_vaddr;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100798 unsigned pdpe = gen8_pdpe_index(start);
799 unsigned pde = gen8_pde_index(start);
800 unsigned pte = gen8_pte_index(start);
Ben Widawsky9df15b42013-11-02 21:07:24 -0700801
Chris Wilson6f1cc992013-12-31 15:50:31 +0000802 pt_vaddr = NULL;
Ben Widawsky9df15b42013-11-02 21:07:24 -0700803
Michel Thierry3387d432015-08-03 09:52:47 +0100804 while (__sg_page_iter_next(sg_iter)) {
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000805 if (pt_vaddr == NULL) {
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100806 struct i915_page_directory *pd = pdp->page_directory[pdpe];
Michel Thierryec565b32015-04-08 12:13:23 +0100807 struct i915_page_table *pt = pd->page_table[pde];
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300808 pt_vaddr = kmap_px(pt);
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000809 }
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800810
811 pt_vaddr[pte] =
Michel Thierry3387d432015-08-03 09:52:47 +0100812 gen8_pte_encode(sg_page_iter_dma_address(sg_iter),
Chris Wilson6f1cc992013-12-31 15:50:31 +0000813 cache_level, true);
Michel Thierry07749ef2015-03-16 16:00:54 +0000814 if (++pte == GEN8_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300815 kunmap_px(ppgtt, pt_vaddr);
Chris Wilson6f1cc992013-12-31 15:50:31 +0000816 pt_vaddr = NULL;
Michel Thierry07749ef2015-03-16 16:00:54 +0000817 if (++pde == I915_PDES) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100818 if (++pdpe == I915_PDPES_PER_PDP(vm->dev))
819 break;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800820 pde = 0;
821 }
822 pte = 0;
Ben Widawsky9df15b42013-11-02 21:07:24 -0700823 }
824 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300825
826 if (pt_vaddr)
827 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky9df15b42013-11-02 21:07:24 -0700828}
829
Michel Thierryf9b5b782015-07-30 11:02:49 +0100830static void gen8_ppgtt_insert_entries(struct i915_address_space *vm,
831 struct sg_table *pages,
832 uint64_t start,
833 enum i915_cache_level cache_level,
834 u32 unused)
835{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300836 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry3387d432015-08-03 09:52:47 +0100837 struct sg_page_iter sg_iter;
Michel Thierryf9b5b782015-07-30 11:02:49 +0100838
Michel Thierry3387d432015-08-03 09:52:47 +0100839 __sg_page_iter_start(&sg_iter, pages->sgl, sg_nents(pages->sgl), 0);
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100840
841 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
842 gen8_ppgtt_insert_pte_entries(vm, &ppgtt->pdp, &sg_iter, start,
843 cache_level);
844 } else {
845 struct i915_page_directory_pointer *pdp;
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000846 uint64_t pml4e;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100847 uint64_t length = (uint64_t)pages->orig_nents << PAGE_SHIFT;
848
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000849 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, pml4e) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100850 gen8_ppgtt_insert_pte_entries(vm, pdp, &sg_iter,
851 start, cache_level);
852 }
853 }
Michel Thierryf9b5b782015-07-30 11:02:49 +0100854}
855
Michel Thierryf37c0502015-06-10 17:46:39 +0100856static void gen8_free_page_tables(struct drm_device *dev,
857 struct i915_page_directory *pd)
Ben Widawskyb45a6712014-02-12 14:28:44 -0800858{
859 int i;
860
Mika Kuoppala567047b2015-06-25 18:35:12 +0300861 if (!px_page(pd))
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800862 return;
Ben Widawskyb45a6712014-02-12 14:28:44 -0800863
Michel Thierry33c88192015-04-08 12:13:33 +0100864 for_each_set_bit(i, pd->used_pdes, I915_PDES) {
Ben Widawsky06fda602015-02-24 16:22:36 +0000865 if (WARN_ON(!pd->page_table[i]))
866 continue;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800867
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300868 free_pt(dev, pd->page_table[i]);
Ben Widawsky06fda602015-02-24 16:22:36 +0000869 pd->page_table[i] = NULL;
870 }
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000871}
872
Mika Kuoppala8776f022015-06-30 18:16:40 +0300873static int gen8_init_scratch(struct i915_address_space *vm)
874{
875 struct drm_device *dev = vm->dev;
Matthew Auld64c050d2016-04-27 13:19:25 +0100876 int ret;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300877
878 vm->scratch_page = alloc_scratch_page(dev);
879 if (IS_ERR(vm->scratch_page))
880 return PTR_ERR(vm->scratch_page);
881
882 vm->scratch_pt = alloc_pt(dev);
883 if (IS_ERR(vm->scratch_pt)) {
Matthew Auld64c050d2016-04-27 13:19:25 +0100884 ret = PTR_ERR(vm->scratch_pt);
885 goto free_scratch_page;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300886 }
887
888 vm->scratch_pd = alloc_pd(dev);
889 if (IS_ERR(vm->scratch_pd)) {
Matthew Auld64c050d2016-04-27 13:19:25 +0100890 ret = PTR_ERR(vm->scratch_pd);
891 goto free_pt;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300892 }
893
Michel Thierry69ab76f2015-07-29 17:23:55 +0100894 if (USES_FULL_48BIT_PPGTT(dev)) {
895 vm->scratch_pdp = alloc_pdp(dev);
896 if (IS_ERR(vm->scratch_pdp)) {
Matthew Auld64c050d2016-04-27 13:19:25 +0100897 ret = PTR_ERR(vm->scratch_pdp);
898 goto free_pd;
Michel Thierry69ab76f2015-07-29 17:23:55 +0100899 }
900 }
901
Mika Kuoppala8776f022015-06-30 18:16:40 +0300902 gen8_initialize_pt(vm, vm->scratch_pt);
903 gen8_initialize_pd(vm, vm->scratch_pd);
Michel Thierry69ab76f2015-07-29 17:23:55 +0100904 if (USES_FULL_48BIT_PPGTT(dev))
905 gen8_initialize_pdp(vm, vm->scratch_pdp);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300906
907 return 0;
Matthew Auld64c050d2016-04-27 13:19:25 +0100908
909free_pd:
910 free_pd(dev, vm->scratch_pd);
911free_pt:
912 free_pt(dev, vm->scratch_pt);
913free_scratch_page:
914 free_scratch_page(dev, vm->scratch_page);
915
916 return ret;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300917}
918
Zhiyuan Lv650da342015-08-28 15:41:18 +0800919static int gen8_ppgtt_notify_vgt(struct i915_hw_ppgtt *ppgtt, bool create)
920{
921 enum vgt_g2v_type msg;
Matthew Aulddf285642016-04-22 12:09:25 +0100922 struct drm_i915_private *dev_priv = to_i915(ppgtt->base.dev);
Zhiyuan Lv650da342015-08-28 15:41:18 +0800923 int i;
924
Matthew Aulddf285642016-04-22 12:09:25 +0100925 if (USES_FULL_48BIT_PPGTT(dev_priv)) {
Zhiyuan Lv650da342015-08-28 15:41:18 +0800926 u64 daddr = px_dma(&ppgtt->pml4);
927
Ville Syrjäläab75bb52015-11-04 23:20:12 +0200928 I915_WRITE(vgtif_reg(pdp[0].lo), lower_32_bits(daddr));
929 I915_WRITE(vgtif_reg(pdp[0].hi), upper_32_bits(daddr));
Zhiyuan Lv650da342015-08-28 15:41:18 +0800930
931 msg = (create ? VGT_G2V_PPGTT_L4_PAGE_TABLE_CREATE :
932 VGT_G2V_PPGTT_L4_PAGE_TABLE_DESTROY);
933 } else {
934 for (i = 0; i < GEN8_LEGACY_PDPES; i++) {
935 u64 daddr = i915_page_dir_dma_addr(ppgtt, i);
936
Ville Syrjäläab75bb52015-11-04 23:20:12 +0200937 I915_WRITE(vgtif_reg(pdp[i].lo), lower_32_bits(daddr));
938 I915_WRITE(vgtif_reg(pdp[i].hi), upper_32_bits(daddr));
Zhiyuan Lv650da342015-08-28 15:41:18 +0800939 }
940
941 msg = (create ? VGT_G2V_PPGTT_L3_PAGE_TABLE_CREATE :
942 VGT_G2V_PPGTT_L3_PAGE_TABLE_DESTROY);
943 }
944
945 I915_WRITE(vgtif_reg(g2v_notify), msg);
946
947 return 0;
948}
949
Mika Kuoppala8776f022015-06-30 18:16:40 +0300950static void gen8_free_scratch(struct i915_address_space *vm)
951{
952 struct drm_device *dev = vm->dev;
953
Michel Thierry69ab76f2015-07-29 17:23:55 +0100954 if (USES_FULL_48BIT_PPGTT(dev))
955 free_pdp(dev, vm->scratch_pdp);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300956 free_pd(dev, vm->scratch_pd);
957 free_pt(dev, vm->scratch_pt);
958 free_scratch_page(dev, vm->scratch_page);
959}
960
Michel Thierry762d9932015-07-30 11:05:29 +0100961static void gen8_ppgtt_cleanup_3lvl(struct drm_device *dev,
962 struct i915_page_directory_pointer *pdp)
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800963{
964 int i;
965
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100966 for_each_set_bit(i, pdp->used_pdpes, I915_PDPES_PER_PDP(dev)) {
967 if (WARN_ON(!pdp->page_directory[i]))
Ben Widawsky06fda602015-02-24 16:22:36 +0000968 continue;
969
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100970 gen8_free_page_tables(dev, pdp->page_directory[i]);
971 free_pd(dev, pdp->page_directory[i]);
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800972 }
Michel Thierry69876be2015-04-08 12:13:27 +0100973
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100974 free_pdp(dev, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100975}
976
977static void gen8_ppgtt_cleanup_4lvl(struct i915_hw_ppgtt *ppgtt)
978{
979 int i;
980
981 for_each_set_bit(i, ppgtt->pml4.used_pml4es, GEN8_PML4ES_PER_PML4) {
982 if (WARN_ON(!ppgtt->pml4.pdps[i]))
983 continue;
984
985 gen8_ppgtt_cleanup_3lvl(ppgtt->base.dev, ppgtt->pml4.pdps[i]);
986 }
987
988 cleanup_px(ppgtt->base.dev, &ppgtt->pml4);
989}
990
991static void gen8_ppgtt_cleanup(struct i915_address_space *vm)
992{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300993 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry762d9932015-07-30 11:05:29 +0100994
Zhiyuan Lv650da342015-08-28 15:41:18 +0800995 if (intel_vgpu_active(vm->dev))
996 gen8_ppgtt_notify_vgt(ppgtt, false);
997
Michel Thierry762d9932015-07-30 11:05:29 +0100998 if (!USES_FULL_48BIT_PPGTT(ppgtt->base.dev))
999 gen8_ppgtt_cleanup_3lvl(ppgtt->base.dev, &ppgtt->pdp);
1000 else
1001 gen8_ppgtt_cleanup_4lvl(ppgtt);
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001002
Mika Kuoppala8776f022015-06-30 18:16:40 +03001003 gen8_free_scratch(vm);
Ben Widawskyb45a6712014-02-12 14:28:44 -08001004}
1005
Michel Thierryd7b26332015-04-08 12:13:34 +01001006/**
1007 * gen8_ppgtt_alloc_pagetabs() - Allocate page tables for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001008 * @vm: Master vm structure.
1009 * @pd: Page directory for this address range.
Michel Thierryd7b26332015-04-08 12:13:34 +01001010 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001011 * @length: Size of the allocations.
Michel Thierryd7b26332015-04-08 12:13:34 +01001012 * @new_pts: Bitmap set by function with new allocations. Likely used by the
1013 * caller to free on error.
1014 *
1015 * Allocate the required number of page tables. Extremely similar to
1016 * gen8_ppgtt_alloc_page_directories(). The main difference is here we are limited by
1017 * the page directory boundary (instead of the page directory pointer). That
1018 * boundary is 1GB virtual. Therefore, unlike gen8_ppgtt_alloc_page_directories(), it is
1019 * possible, and likely that the caller will need to use multiple calls of this
1020 * function to achieve the appropriate allocation.
1021 *
1022 * Return: 0 if success; negative error code otherwise.
1023 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001024static int gen8_ppgtt_alloc_pagetabs(struct i915_address_space *vm,
Michel Thierrye5815a22015-04-08 12:13:32 +01001025 struct i915_page_directory *pd,
Michel Thierry5441f0c2015-04-08 12:13:28 +01001026 uint64_t start,
Michel Thierryd7b26332015-04-08 12:13:34 +01001027 uint64_t length,
1028 unsigned long *new_pts)
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001029{
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001030 struct drm_device *dev = vm->dev;
Michel Thierryd7b26332015-04-08 12:13:34 +01001031 struct i915_page_table *pt;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001032 uint32_t pde;
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001033
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001034 gen8_for_each_pde(pt, pd, start, length, pde) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001035 /* Don't reallocate page tables */
Michel Thierry6ac18502015-07-29 17:23:46 +01001036 if (test_bit(pde, pd->used_pdes)) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001037 /* Scratch is never allocated this way */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001038 WARN_ON(pt == vm->scratch_pt);
Michel Thierryd7b26332015-04-08 12:13:34 +01001039 continue;
1040 }
1041
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001042 pt = alloc_pt(dev);
Michel Thierryd7b26332015-04-08 12:13:34 +01001043 if (IS_ERR(pt))
Ben Widawsky06fda602015-02-24 16:22:36 +00001044 goto unwind_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001045
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001046 gen8_initialize_pt(vm, pt);
Michel Thierryd7b26332015-04-08 12:13:34 +01001047 pd->page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001048 __set_bit(pde, new_pts);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001049 trace_i915_page_table_entry_alloc(vm, pde, start, GEN8_PDE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001050 }
1051
1052 return 0;
1053
1054unwind_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001055 for_each_set_bit(pde, new_pts, I915_PDES)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001056 free_pt(dev, pd->page_table[pde]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001057
1058 return -ENOMEM;
1059}
1060
Michel Thierryd7b26332015-04-08 12:13:34 +01001061/**
1062 * gen8_ppgtt_alloc_page_directories() - Allocate page directories for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001063 * @vm: Master vm structure.
Michel Thierryd7b26332015-04-08 12:13:34 +01001064 * @pdp: Page directory pointer for this address range.
1065 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001066 * @length: Size of the allocations.
1067 * @new_pds: Bitmap set by function with new allocations. Likely used by the
Michel Thierryd7b26332015-04-08 12:13:34 +01001068 * caller to free on error.
1069 *
1070 * Allocate the required number of page directories starting at the pde index of
1071 * @start, and ending at the pde index @start + @length. This function will skip
1072 * over already allocated page directories within the range, and only allocate
1073 * new ones, setting the appropriate pointer within the pdp as well as the
1074 * correct position in the bitmap @new_pds.
1075 *
1076 * The function will only allocate the pages within the range for a give page
1077 * directory pointer. In other words, if @start + @length straddles a virtually
1078 * addressed PDP boundary (512GB for 4k pages), there will be more allocations
1079 * required by the caller, This is not currently possible, and the BUG in the
1080 * code will prevent it.
1081 *
1082 * Return: 0 if success; negative error code otherwise.
1083 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001084static int
1085gen8_ppgtt_alloc_page_directories(struct i915_address_space *vm,
1086 struct i915_page_directory_pointer *pdp,
1087 uint64_t start,
1088 uint64_t length,
1089 unsigned long *new_pds)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001090{
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001091 struct drm_device *dev = vm->dev;
Michel Thierryd7b26332015-04-08 12:13:34 +01001092 struct i915_page_directory *pd;
Michel Thierry69876be2015-04-08 12:13:27 +01001093 uint32_t pdpe;
Michel Thierry6ac18502015-07-29 17:23:46 +01001094 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001095
Michel Thierry6ac18502015-07-29 17:23:46 +01001096 WARN_ON(!bitmap_empty(new_pds, pdpes));
Michel Thierryd7b26332015-04-08 12:13:34 +01001097
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001098 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierry6ac18502015-07-29 17:23:46 +01001099 if (test_bit(pdpe, pdp->used_pdpes))
Michel Thierryd7b26332015-04-08 12:13:34 +01001100 continue;
Michel Thierry33c88192015-04-08 12:13:33 +01001101
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001102 pd = alloc_pd(dev);
Michel Thierryd7b26332015-04-08 12:13:34 +01001103 if (IS_ERR(pd))
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001104 goto unwind_out;
Michel Thierry69876be2015-04-08 12:13:27 +01001105
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001106 gen8_initialize_pd(vm, pd);
Michel Thierryd7b26332015-04-08 12:13:34 +01001107 pdp->page_directory[pdpe] = pd;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001108 __set_bit(pdpe, new_pds);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001109 trace_i915_page_directory_entry_alloc(vm, pdpe, start, GEN8_PDPE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001110 }
1111
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001112 return 0;
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001113
1114unwind_out:
Michel Thierry6ac18502015-07-29 17:23:46 +01001115 for_each_set_bit(pdpe, new_pds, pdpes)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001116 free_pd(dev, pdp->page_directory[pdpe]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001117
1118 return -ENOMEM;
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001119}
1120
Michel Thierry762d9932015-07-30 11:05:29 +01001121/**
1122 * gen8_ppgtt_alloc_page_dirpointers() - Allocate pdps for VA range.
1123 * @vm: Master vm structure.
1124 * @pml4: Page map level 4 for this address range.
1125 * @start: Starting virtual address to begin allocations.
1126 * @length: Size of the allocations.
1127 * @new_pdps: Bitmap set by function with new allocations. Likely used by the
1128 * caller to free on error.
1129 *
1130 * Allocate the required number of page directory pointers. Extremely similar to
1131 * gen8_ppgtt_alloc_page_directories() and gen8_ppgtt_alloc_pagetabs().
1132 * The main difference is here we are limited by the pml4 boundary (instead of
1133 * the page directory pointer).
1134 *
1135 * Return: 0 if success; negative error code otherwise.
1136 */
1137static int
1138gen8_ppgtt_alloc_page_dirpointers(struct i915_address_space *vm,
1139 struct i915_pml4 *pml4,
1140 uint64_t start,
1141 uint64_t length,
1142 unsigned long *new_pdps)
1143{
1144 struct drm_device *dev = vm->dev;
1145 struct i915_page_directory_pointer *pdp;
Michel Thierry762d9932015-07-30 11:05:29 +01001146 uint32_t pml4e;
1147
1148 WARN_ON(!bitmap_empty(new_pdps, GEN8_PML4ES_PER_PML4));
1149
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001150 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierry762d9932015-07-30 11:05:29 +01001151 if (!test_bit(pml4e, pml4->used_pml4es)) {
1152 pdp = alloc_pdp(dev);
1153 if (IS_ERR(pdp))
1154 goto unwind_out;
1155
Michel Thierry69ab76f2015-07-29 17:23:55 +01001156 gen8_initialize_pdp(vm, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +01001157 pml4->pdps[pml4e] = pdp;
1158 __set_bit(pml4e, new_pdps);
1159 trace_i915_page_directory_pointer_entry_alloc(vm,
1160 pml4e,
1161 start,
1162 GEN8_PML4E_SHIFT);
1163 }
1164 }
1165
1166 return 0;
1167
1168unwind_out:
1169 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
1170 free_pdp(dev, pml4->pdps[pml4e]);
1171
1172 return -ENOMEM;
1173}
1174
Michel Thierryd7b26332015-04-08 12:13:34 +01001175static void
Michał Winiarski3a41a052015-09-03 19:22:18 +02001176free_gen8_temp_bitmaps(unsigned long *new_pds, unsigned long *new_pts)
Michel Thierryd7b26332015-04-08 12:13:34 +01001177{
Michel Thierryd7b26332015-04-08 12:13:34 +01001178 kfree(new_pts);
1179 kfree(new_pds);
1180}
1181
1182/* Fills in the page directory bitmap, and the array of page tables bitmap. Both
1183 * of these are based on the number of PDPEs in the system.
1184 */
1185static
1186int __must_check alloc_gen8_temp_bitmaps(unsigned long **new_pds,
Michał Winiarski3a41a052015-09-03 19:22:18 +02001187 unsigned long **new_pts,
Michel Thierry6ac18502015-07-29 17:23:46 +01001188 uint32_t pdpes)
Michel Thierryd7b26332015-04-08 12:13:34 +01001189{
Michel Thierryd7b26332015-04-08 12:13:34 +01001190 unsigned long *pds;
Michał Winiarski3a41a052015-09-03 19:22:18 +02001191 unsigned long *pts;
Michel Thierryd7b26332015-04-08 12:13:34 +01001192
Michał Winiarski3a41a052015-09-03 19:22:18 +02001193 pds = kcalloc(BITS_TO_LONGS(pdpes), sizeof(unsigned long), GFP_TEMPORARY);
Michel Thierryd7b26332015-04-08 12:13:34 +01001194 if (!pds)
1195 return -ENOMEM;
1196
Michał Winiarski3a41a052015-09-03 19:22:18 +02001197 pts = kcalloc(pdpes, BITS_TO_LONGS(I915_PDES) * sizeof(unsigned long),
1198 GFP_TEMPORARY);
1199 if (!pts)
1200 goto err_out;
Michel Thierryd7b26332015-04-08 12:13:34 +01001201
1202 *new_pds = pds;
1203 *new_pts = pts;
1204
1205 return 0;
1206
1207err_out:
Michał Winiarski3a41a052015-09-03 19:22:18 +02001208 free_gen8_temp_bitmaps(pds, pts);
Michel Thierryd7b26332015-04-08 12:13:34 +01001209 return -ENOMEM;
1210}
1211
Mika Kuoppala5b7e4c92015-06-25 18:35:03 +03001212/* PDE TLBs are a pain to invalidate on GEN8+. When we modify
1213 * the page table structures, we mark them dirty so that
1214 * context switching/execlist queuing code takes extra steps
1215 * to ensure that tlbs are flushed.
1216 */
1217static void mark_tlbs_dirty(struct i915_hw_ppgtt *ppgtt)
1218{
1219 ppgtt->pd_dirty_rings = INTEL_INFO(ppgtt->base.dev)->ring_mask;
1220}
1221
Michel Thierry762d9932015-07-30 11:05:29 +01001222static int gen8_alloc_va_range_3lvl(struct i915_address_space *vm,
1223 struct i915_page_directory_pointer *pdp,
1224 uint64_t start,
1225 uint64_t length)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001226{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001227 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michał Winiarski3a41a052015-09-03 19:22:18 +02001228 unsigned long *new_page_dirs, *new_page_tables;
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001229 struct drm_device *dev = vm->dev;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001230 struct i915_page_directory *pd;
Michel Thierry33c88192015-04-08 12:13:33 +01001231 const uint64_t orig_start = start;
1232 const uint64_t orig_length = length;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001233 uint32_t pdpe;
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001234 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001235 int ret;
1236
Michel Thierryd7b26332015-04-08 12:13:34 +01001237 /* Wrap is never okay since we can only represent 48b, and we don't
1238 * actually use the other side of the canonical address space.
1239 */
1240 if (WARN_ON(start + length < start))
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001241 return -ENODEV;
1242
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001243 if (WARN_ON(start + length > vm->total))
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001244 return -ENODEV;
Michel Thierryd7b26332015-04-08 12:13:34 +01001245
Michel Thierry6ac18502015-07-29 17:23:46 +01001246 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001247 if (ret)
1248 return ret;
1249
Michel Thierryd7b26332015-04-08 12:13:34 +01001250 /* Do the allocations first so we can easily bail out */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001251 ret = gen8_ppgtt_alloc_page_directories(vm, pdp, start, length,
1252 new_page_dirs);
Michel Thierryd7b26332015-04-08 12:13:34 +01001253 if (ret) {
Michał Winiarski3a41a052015-09-03 19:22:18 +02001254 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Michel Thierryd7b26332015-04-08 12:13:34 +01001255 return ret;
1256 }
1257
1258 /* For every page directory referenced, allocate page tables */
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001259 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001260 ret = gen8_ppgtt_alloc_pagetabs(vm, pd, start, length,
Michał Winiarski3a41a052015-09-03 19:22:18 +02001261 new_page_tables + pdpe * BITS_TO_LONGS(I915_PDES));
Michel Thierry5441f0c2015-04-08 12:13:28 +01001262 if (ret)
1263 goto err_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001264 }
1265
Michel Thierry33c88192015-04-08 12:13:33 +01001266 start = orig_start;
1267 length = orig_length;
1268
Michel Thierryd7b26332015-04-08 12:13:34 +01001269 /* Allocations have completed successfully, so set the bitmaps, and do
1270 * the mappings. */
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001271 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001272 gen8_pde_t *const page_directory = kmap_px(pd);
Michel Thierry33c88192015-04-08 12:13:33 +01001273 struct i915_page_table *pt;
Michel Thierry09120d42015-07-29 17:23:45 +01001274 uint64_t pd_len = length;
Michel Thierry33c88192015-04-08 12:13:33 +01001275 uint64_t pd_start = start;
1276 uint32_t pde;
1277
Michel Thierryd7b26332015-04-08 12:13:34 +01001278 /* Every pd should be allocated, we just did that above. */
1279 WARN_ON(!pd);
1280
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001281 gen8_for_each_pde(pt, pd, pd_start, pd_len, pde) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001282 /* Same reasoning as pd */
1283 WARN_ON(!pt);
1284 WARN_ON(!pd_len);
1285 WARN_ON(!gen8_pte_count(pd_start, pd_len));
1286
1287 /* Set our used ptes within the page table */
1288 bitmap_set(pt->used_ptes,
1289 gen8_pte_index(pd_start),
1290 gen8_pte_count(pd_start, pd_len));
1291
1292 /* Our pde is now pointing to the pagetable, pt */
Mika Kuoppala966082c2015-06-25 18:35:19 +03001293 __set_bit(pde, pd->used_pdes);
Michel Thierryd7b26332015-04-08 12:13:34 +01001294
1295 /* Map the PDE to the page table */
Mika Kuoppalafe36f552015-06-25 18:35:16 +03001296 page_directory[pde] = gen8_pde_encode(px_dma(pt),
1297 I915_CACHE_LLC);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001298 trace_i915_page_table_entry_map(&ppgtt->base, pde, pt,
1299 gen8_pte_index(start),
1300 gen8_pte_count(start, length),
1301 GEN8_PTES);
Michel Thierryd7b26332015-04-08 12:13:34 +01001302
1303 /* NB: We haven't yet mapped ptes to pages. At this
1304 * point we're still relying on insert_entries() */
Michel Thierry33c88192015-04-08 12:13:33 +01001305 }
Michel Thierryd7b26332015-04-08 12:13:34 +01001306
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001307 kunmap_px(ppgtt, page_directory);
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001308 __set_bit(pdpe, pdp->used_pdpes);
Michel Thierry762d9932015-07-30 11:05:29 +01001309 gen8_setup_page_directory(ppgtt, pdp, pd, pdpe);
Michel Thierry33c88192015-04-08 12:13:33 +01001310 }
1311
Michał Winiarski3a41a052015-09-03 19:22:18 +02001312 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Mika Kuoppala5b7e4c92015-06-25 18:35:03 +03001313 mark_tlbs_dirty(ppgtt);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001314 return 0;
1315
1316err_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001317 while (pdpe--) {
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001318 unsigned long temp;
1319
Michał Winiarski3a41a052015-09-03 19:22:18 +02001320 for_each_set_bit(temp, new_page_tables + pdpe *
1321 BITS_TO_LONGS(I915_PDES), I915_PDES)
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001322 free_pt(dev, pdp->page_directory[pdpe]->page_table[temp]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001323 }
1324
Michel Thierry6ac18502015-07-29 17:23:46 +01001325 for_each_set_bit(pdpe, new_page_dirs, pdpes)
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001326 free_pd(dev, pdp->page_directory[pdpe]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001327
Michał Winiarski3a41a052015-09-03 19:22:18 +02001328 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Mika Kuoppala5b7e4c92015-06-25 18:35:03 +03001329 mark_tlbs_dirty(ppgtt);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001330 return ret;
1331}
1332
Michel Thierry762d9932015-07-30 11:05:29 +01001333static int gen8_alloc_va_range_4lvl(struct i915_address_space *vm,
1334 struct i915_pml4 *pml4,
1335 uint64_t start,
1336 uint64_t length)
1337{
1338 DECLARE_BITMAP(new_pdps, GEN8_PML4ES_PER_PML4);
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001339 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry762d9932015-07-30 11:05:29 +01001340 struct i915_page_directory_pointer *pdp;
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001341 uint64_t pml4e;
Michel Thierry762d9932015-07-30 11:05:29 +01001342 int ret = 0;
1343
1344 /* Do the pml4 allocations first, so we don't need to track the newly
1345 * allocated tables below the pdp */
1346 bitmap_zero(new_pdps, GEN8_PML4ES_PER_PML4);
1347
1348 /* The pagedirectory and pagetable allocations are done in the shared 3
1349 * and 4 level code. Just allocate the pdps.
1350 */
1351 ret = gen8_ppgtt_alloc_page_dirpointers(vm, pml4, start, length,
1352 new_pdps);
1353 if (ret)
1354 return ret;
1355
1356 WARN(bitmap_weight(new_pdps, GEN8_PML4ES_PER_PML4) > 2,
1357 "The allocation has spanned more than 512GB. "
1358 "It is highly likely this is incorrect.");
1359
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001360 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierry762d9932015-07-30 11:05:29 +01001361 WARN_ON(!pdp);
1362
1363 ret = gen8_alloc_va_range_3lvl(vm, pdp, start, length);
1364 if (ret)
1365 goto err_out;
1366
1367 gen8_setup_page_directory_pointer(ppgtt, pml4, pdp, pml4e);
1368 }
1369
1370 bitmap_or(pml4->used_pml4es, new_pdps, pml4->used_pml4es,
1371 GEN8_PML4ES_PER_PML4);
1372
1373 return 0;
1374
1375err_out:
1376 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
1377 gen8_ppgtt_cleanup_3lvl(vm->dev, pml4->pdps[pml4e]);
1378
1379 return ret;
1380}
1381
1382static int gen8_alloc_va_range(struct i915_address_space *vm,
1383 uint64_t start, uint64_t length)
1384{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001385 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry762d9932015-07-30 11:05:29 +01001386
1387 if (USES_FULL_48BIT_PPGTT(vm->dev))
1388 return gen8_alloc_va_range_4lvl(vm, &ppgtt->pml4, start, length);
1389 else
1390 return gen8_alloc_va_range_3lvl(vm, &ppgtt->pdp, start, length);
1391}
1392
Michel Thierryea91e402015-07-29 17:23:57 +01001393static void gen8_dump_pdp(struct i915_page_directory_pointer *pdp,
1394 uint64_t start, uint64_t length,
1395 gen8_pte_t scratch_pte,
1396 struct seq_file *m)
1397{
1398 struct i915_page_directory *pd;
Michel Thierryea91e402015-07-29 17:23:57 +01001399 uint32_t pdpe;
1400
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001401 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierryea91e402015-07-29 17:23:57 +01001402 struct i915_page_table *pt;
1403 uint64_t pd_len = length;
1404 uint64_t pd_start = start;
1405 uint32_t pde;
1406
1407 if (!test_bit(pdpe, pdp->used_pdpes))
1408 continue;
1409
1410 seq_printf(m, "\tPDPE #%d\n", pdpe);
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001411 gen8_for_each_pde(pt, pd, pd_start, pd_len, pde) {
Michel Thierryea91e402015-07-29 17:23:57 +01001412 uint32_t pte;
1413 gen8_pte_t *pt_vaddr;
1414
1415 if (!test_bit(pde, pd->used_pdes))
1416 continue;
1417
1418 pt_vaddr = kmap_px(pt);
1419 for (pte = 0; pte < GEN8_PTES; pte += 4) {
1420 uint64_t va =
1421 (pdpe << GEN8_PDPE_SHIFT) |
1422 (pde << GEN8_PDE_SHIFT) |
1423 (pte << GEN8_PTE_SHIFT);
1424 int i;
1425 bool found = false;
1426
1427 for (i = 0; i < 4; i++)
1428 if (pt_vaddr[pte + i] != scratch_pte)
1429 found = true;
1430 if (!found)
1431 continue;
1432
1433 seq_printf(m, "\t\t0x%llx [%03d,%03d,%04d]: =", va, pdpe, pde, pte);
1434 for (i = 0; i < 4; i++) {
1435 if (pt_vaddr[pte + i] != scratch_pte)
1436 seq_printf(m, " %llx", pt_vaddr[pte + i]);
1437 else
1438 seq_puts(m, " SCRATCH ");
1439 }
1440 seq_puts(m, "\n");
1441 }
1442 /* don't use kunmap_px, it could trigger
1443 * an unnecessary flush.
1444 */
1445 kunmap_atomic(pt_vaddr);
1446 }
1447 }
1448}
1449
1450static void gen8_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1451{
1452 struct i915_address_space *vm = &ppgtt->base;
1453 uint64_t start = ppgtt->base.start;
1454 uint64_t length = ppgtt->base.total;
1455 gen8_pte_t scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
1456 I915_CACHE_LLC, true);
1457
1458 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
1459 gen8_dump_pdp(&ppgtt->pdp, start, length, scratch_pte, m);
1460 } else {
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001461 uint64_t pml4e;
Michel Thierryea91e402015-07-29 17:23:57 +01001462 struct i915_pml4 *pml4 = &ppgtt->pml4;
1463 struct i915_page_directory_pointer *pdp;
1464
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001465 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierryea91e402015-07-29 17:23:57 +01001466 if (!test_bit(pml4e, pml4->used_pml4es))
1467 continue;
1468
1469 seq_printf(m, " PML4E #%llu\n", pml4e);
1470 gen8_dump_pdp(pdp, start, length, scratch_pte, m);
1471 }
1472 }
1473}
1474
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001475static int gen8_preallocate_top_level_pdps(struct i915_hw_ppgtt *ppgtt)
1476{
Michał Winiarski3a41a052015-09-03 19:22:18 +02001477 unsigned long *new_page_dirs, *new_page_tables;
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001478 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
1479 int ret;
1480
1481 /* We allocate temp bitmap for page tables for no gain
1482 * but as this is for init only, lets keep the things simple
1483 */
1484 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
1485 if (ret)
1486 return ret;
1487
1488 /* Allocate for all pdps regardless of how the ppgtt
1489 * was defined.
1490 */
1491 ret = gen8_ppgtt_alloc_page_directories(&ppgtt->base, &ppgtt->pdp,
1492 0, 1ULL << 32,
1493 new_page_dirs);
1494 if (!ret)
1495 *ppgtt->pdp.used_pdpes = *new_page_dirs;
1496
Michał Winiarski3a41a052015-09-03 19:22:18 +02001497 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001498
1499 return ret;
1500}
1501
Daniel Vettereb0b44a2015-03-18 14:47:59 +01001502/*
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001503 * GEN8 legacy ppgtt programming is accomplished through a max 4 PDP registers
1504 * with a net effect resembling a 2-level page table in normal x86 terms. Each
1505 * PDP represents 1GB of memory 4 * 512 * 512 * 4096 = 4GB legacy 32b address
1506 * space.
Ben Widawsky37aca442013-11-04 20:47:32 -08001507 *
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001508 */
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001509static int gen8_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky37aca442013-11-04 20:47:32 -08001510{
Mika Kuoppala8776f022015-06-30 18:16:40 +03001511 int ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001512
Mika Kuoppala8776f022015-06-30 18:16:40 +03001513 ret = gen8_init_scratch(&ppgtt->base);
1514 if (ret)
1515 return ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001516
Michel Thierryd7b26332015-04-08 12:13:34 +01001517 ppgtt->base.start = 0;
Michel Thierryd7b26332015-04-08 12:13:34 +01001518 ppgtt->base.cleanup = gen8_ppgtt_cleanup;
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001519 ppgtt->base.allocate_va_range = gen8_alloc_va_range;
Michel Thierryd7b26332015-04-08 12:13:34 +01001520 ppgtt->base.insert_entries = gen8_ppgtt_insert_entries;
Daniel Vetterc7e16f22015-04-14 17:35:11 +02001521 ppgtt->base.clear_range = gen8_ppgtt_clear_range;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02001522 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
1523 ppgtt->base.bind_vma = ppgtt_bind_vma;
Michel Thierryea91e402015-07-29 17:23:57 +01001524 ppgtt->debug_dump = gen8_dump_ppgtt;
Michel Thierryd7b26332015-04-08 12:13:34 +01001525
Michel Thierry762d9932015-07-30 11:05:29 +01001526 if (USES_FULL_48BIT_PPGTT(ppgtt->base.dev)) {
1527 ret = setup_px(ppgtt->base.dev, &ppgtt->pml4);
1528 if (ret)
1529 goto free_scratch;
Michel Thierry6ac18502015-07-29 17:23:46 +01001530
Michel Thierry69ab76f2015-07-29 17:23:55 +01001531 gen8_initialize_pml4(&ppgtt->base, &ppgtt->pml4);
1532
Michel Thierry762d9932015-07-30 11:05:29 +01001533 ppgtt->base.total = 1ULL << 48;
Michel Thierry2dba3232015-07-30 11:06:23 +01001534 ppgtt->switch_mm = gen8_48b_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001535 } else {
Michel Thierry25f50332015-08-07 17:40:19 +01001536 ret = __pdp_init(ppgtt->base.dev, &ppgtt->pdp);
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001537 if (ret)
1538 goto free_scratch;
1539
1540 ppgtt->base.total = 1ULL << 32;
Michel Thierry2dba3232015-07-30 11:06:23 +01001541 ppgtt->switch_mm = gen8_legacy_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001542 trace_i915_page_directory_pointer_entry_alloc(&ppgtt->base,
1543 0, 0,
1544 GEN8_PML4E_SHIFT);
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001545
1546 if (intel_vgpu_active(ppgtt->base.dev)) {
1547 ret = gen8_preallocate_top_level_pdps(ppgtt);
1548 if (ret)
1549 goto free_scratch;
1550 }
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001551 }
Michel Thierry6ac18502015-07-29 17:23:46 +01001552
Zhiyuan Lv650da342015-08-28 15:41:18 +08001553 if (intel_vgpu_active(ppgtt->base.dev))
1554 gen8_ppgtt_notify_vgt(ppgtt, true);
1555
Michel Thierryd7b26332015-04-08 12:13:34 +01001556 return 0;
Michel Thierry6ac18502015-07-29 17:23:46 +01001557
1558free_scratch:
1559 gen8_free_scratch(&ppgtt->base);
1560 return ret;
Michel Thierryd7b26332015-04-08 12:13:34 +01001561}
1562
Ben Widawsky87d60b62013-12-06 14:11:29 -08001563static void gen6_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1564{
Ben Widawsky87d60b62013-12-06 14:11:29 -08001565 struct i915_address_space *vm = &ppgtt->base;
Michel Thierry09942c62015-04-08 12:13:30 +01001566 struct i915_page_table *unused;
Michel Thierry07749ef2015-03-16 16:00:54 +00001567 gen6_pte_t scratch_pte;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001568 uint32_t pd_entry;
Michel Thierry09942c62015-04-08 12:13:30 +01001569 uint32_t pte, pde, temp;
1570 uint32_t start = ppgtt->base.start, length = ppgtt->base.total;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001571
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001572 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1573 I915_CACHE_LLC, true, 0);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001574
Michel Thierry09942c62015-04-08 12:13:30 +01001575 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001576 u32 expected;
Michel Thierry07749ef2015-03-16 16:00:54 +00001577 gen6_pte_t *pt_vaddr;
Mika Kuoppala567047b2015-06-25 18:35:12 +03001578 const dma_addr_t pt_addr = px_dma(ppgtt->pd.page_table[pde]);
Michel Thierry09942c62015-04-08 12:13:30 +01001579 pd_entry = readl(ppgtt->pd_addr + pde);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001580 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID);
1581
1582 if (pd_entry != expected)
1583 seq_printf(m, "\tPDE #%d mismatch: Actual PDE: %x Expected PDE: %x\n",
1584 pde,
1585 pd_entry,
1586 expected);
1587 seq_printf(m, "\tPDE: %x\n", pd_entry);
1588
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001589 pt_vaddr = kmap_px(ppgtt->pd.page_table[pde]);
1590
Michel Thierry07749ef2015-03-16 16:00:54 +00001591 for (pte = 0; pte < GEN6_PTES; pte+=4) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001592 unsigned long va =
Michel Thierry07749ef2015-03-16 16:00:54 +00001593 (pde * PAGE_SIZE * GEN6_PTES) +
Ben Widawsky87d60b62013-12-06 14:11:29 -08001594 (pte * PAGE_SIZE);
1595 int i;
1596 bool found = false;
1597 for (i = 0; i < 4; i++)
1598 if (pt_vaddr[pte + i] != scratch_pte)
1599 found = true;
1600 if (!found)
1601 continue;
1602
1603 seq_printf(m, "\t\t0x%lx [%03d,%04d]: =", va, pde, pte);
1604 for (i = 0; i < 4; i++) {
1605 if (pt_vaddr[pte + i] != scratch_pte)
1606 seq_printf(m, " %08x", pt_vaddr[pte + i]);
1607 else
1608 seq_puts(m, " SCRATCH ");
1609 }
1610 seq_puts(m, "\n");
1611 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001612 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001613 }
1614}
1615
Ben Widawsky678d96f2015-03-16 16:00:56 +00001616/* Write pde (index) from the page directory @pd to the page table @pt */
Michel Thierryec565b32015-04-08 12:13:23 +01001617static void gen6_write_pde(struct i915_page_directory *pd,
1618 const int pde, struct i915_page_table *pt)
Ben Widawsky61973492013-04-08 18:43:54 -07001619{
Ben Widawsky678d96f2015-03-16 16:00:56 +00001620 /* Caller needs to make sure the write completes if necessary */
1621 struct i915_hw_ppgtt *ppgtt =
1622 container_of(pd, struct i915_hw_ppgtt, pd);
1623 u32 pd_entry;
Ben Widawsky61973492013-04-08 18:43:54 -07001624
Mika Kuoppala567047b2015-06-25 18:35:12 +03001625 pd_entry = GEN6_PDE_ADDR_ENCODE(px_dma(pt));
Ben Widawsky678d96f2015-03-16 16:00:56 +00001626 pd_entry |= GEN6_PDE_VALID;
Ben Widawsky61973492013-04-08 18:43:54 -07001627
Ben Widawsky678d96f2015-03-16 16:00:56 +00001628 writel(pd_entry, ppgtt->pd_addr + pde);
1629}
Ben Widawsky61973492013-04-08 18:43:54 -07001630
Ben Widawsky678d96f2015-03-16 16:00:56 +00001631/* Write all the page tables found in the ppgtt structure to incrementing page
1632 * directories. */
1633static void gen6_write_page_range(struct drm_i915_private *dev_priv,
Michel Thierryec565b32015-04-08 12:13:23 +01001634 struct i915_page_directory *pd,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001635 uint32_t start, uint32_t length)
1636{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001637 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Michel Thierryec565b32015-04-08 12:13:23 +01001638 struct i915_page_table *pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001639 uint32_t pde, temp;
1640
1641 gen6_for_each_pde(pt, pd, start, length, temp, pde)
1642 gen6_write_pde(pd, pde, pt);
1643
1644 /* Make sure write is complete before other code can use this page
1645 * table. Also require for WC mapped PTEs */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001646 readl(ggtt->gsm);
Ben Widawsky3e302542013-04-23 23:15:32 -07001647}
1648
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001649static uint32_t get_pd_offset(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky3e302542013-04-23 23:15:32 -07001650{
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001651 BUG_ON(ppgtt->pd.base.ggtt_offset & 0x3f);
Ben Widawsky3e302542013-04-23 23:15:32 -07001652
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001653 return (ppgtt->pd.base.ggtt_offset / 64) << 16;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001654}
Ben Widawsky61973492013-04-08 18:43:54 -07001655
Ben Widawsky90252e52013-12-06 14:11:12 -08001656static int hsw_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001657 struct drm_i915_gem_request *req)
Ben Widawsky90252e52013-12-06 14:11:12 -08001658{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001659 struct intel_engine_cs *engine = req->engine;
Ben Widawsky90252e52013-12-06 14:11:12 -08001660 int ret;
Ben Widawsky61973492013-04-08 18:43:54 -07001661
Ben Widawsky90252e52013-12-06 14:11:12 -08001662 /* NB: TLBs must be flushed and invalidated before a switch */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001663 ret = engine->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001664 if (ret)
1665 return ret;
1666
John Harrison5fb9de12015-05-29 17:44:07 +01001667 ret = intel_ring_begin(req, 6);
Ben Widawsky90252e52013-12-06 14:11:12 -08001668 if (ret)
1669 return ret;
1670
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001671 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(2));
1672 intel_ring_emit_reg(engine, RING_PP_DIR_DCLV(engine));
1673 intel_ring_emit(engine, PP_DIR_DCLV_2G);
1674 intel_ring_emit_reg(engine, RING_PP_DIR_BASE(engine));
1675 intel_ring_emit(engine, get_pd_offset(ppgtt));
1676 intel_ring_emit(engine, MI_NOOP);
1677 intel_ring_advance(engine);
Ben Widawsky90252e52013-12-06 14:11:12 -08001678
1679 return 0;
1680}
1681
Yu Zhang71ba2d62015-02-10 19:05:54 +08001682static int vgpu_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001683 struct drm_i915_gem_request *req)
Yu Zhang71ba2d62015-02-10 19:05:54 +08001684{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001685 struct intel_engine_cs *engine = req->engine;
Yu Zhang71ba2d62015-02-10 19:05:54 +08001686 struct drm_i915_private *dev_priv = to_i915(ppgtt->base.dev);
1687
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001688 I915_WRITE(RING_PP_DIR_DCLV(engine), PP_DIR_DCLV_2G);
1689 I915_WRITE(RING_PP_DIR_BASE(engine), get_pd_offset(ppgtt));
Yu Zhang71ba2d62015-02-10 19:05:54 +08001690 return 0;
1691}
1692
Ben Widawsky48a10382013-12-06 14:11:11 -08001693static int gen7_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001694 struct drm_i915_gem_request *req)
Ben Widawsky48a10382013-12-06 14:11:11 -08001695{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001696 struct intel_engine_cs *engine = req->engine;
Ben Widawsky48a10382013-12-06 14:11:11 -08001697 int ret;
1698
Ben Widawsky48a10382013-12-06 14:11:11 -08001699 /* NB: TLBs must be flushed and invalidated before a switch */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001700 ret = engine->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky48a10382013-12-06 14:11:11 -08001701 if (ret)
1702 return ret;
1703
John Harrison5fb9de12015-05-29 17:44:07 +01001704 ret = intel_ring_begin(req, 6);
Ben Widawsky48a10382013-12-06 14:11:11 -08001705 if (ret)
1706 return ret;
1707
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001708 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(2));
1709 intel_ring_emit_reg(engine, RING_PP_DIR_DCLV(engine));
1710 intel_ring_emit(engine, PP_DIR_DCLV_2G);
1711 intel_ring_emit_reg(engine, RING_PP_DIR_BASE(engine));
1712 intel_ring_emit(engine, get_pd_offset(ppgtt));
1713 intel_ring_emit(engine, MI_NOOP);
1714 intel_ring_advance(engine);
Ben Widawsky48a10382013-12-06 14:11:11 -08001715
Ben Widawsky90252e52013-12-06 14:11:12 -08001716 /* XXX: RCS is the only one to auto invalidate the TLBs? */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001717 if (engine->id != RCS) {
1718 ret = engine->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001719 if (ret)
1720 return ret;
1721 }
1722
Ben Widawsky48a10382013-12-06 14:11:11 -08001723 return 0;
1724}
1725
Ben Widawskyeeb94882013-12-06 14:11:10 -08001726static int gen6_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001727 struct drm_i915_gem_request *req)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001728{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001729 struct intel_engine_cs *engine = req->engine;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001730 struct drm_device *dev = ppgtt->base.dev;
1731 struct drm_i915_private *dev_priv = dev->dev_private;
1732
Ben Widawsky48a10382013-12-06 14:11:11 -08001733
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001734 I915_WRITE(RING_PP_DIR_DCLV(engine), PP_DIR_DCLV_2G);
1735 I915_WRITE(RING_PP_DIR_BASE(engine), get_pd_offset(ppgtt));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001736
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001737 POSTING_READ(RING_PP_DIR_DCLV(engine));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001738
1739 return 0;
1740}
1741
Daniel Vetter82460d92014-08-06 20:19:53 +02001742static void gen8_ppgtt_enable(struct drm_device *dev)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001743{
Ben Widawskyeeb94882013-12-06 14:11:10 -08001744 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001745 struct intel_engine_cs *engine;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001746
Dave Gordonb4ac5af2016-03-24 11:20:38 +00001747 for_each_engine(engine, dev_priv) {
Michel Thierry2dba3232015-07-30 11:06:23 +01001748 u32 four_level = USES_FULL_48BIT_PPGTT(dev) ? GEN8_GFX_PPGTT_48B : 0;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001749 I915_WRITE(RING_MODE_GEN7(engine),
Michel Thierry2dba3232015-07-30 11:06:23 +01001750 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE | four_level));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001751 }
Ben Widawskyeeb94882013-12-06 14:11:10 -08001752}
1753
Daniel Vetter82460d92014-08-06 20:19:53 +02001754static void gen7_ppgtt_enable(struct drm_device *dev)
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001755{
Jani Nikula50227e12014-03-31 14:27:21 +03001756 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001757 struct intel_engine_cs *engine;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001758 uint32_t ecochk, ecobits;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001759
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001760 ecobits = I915_READ(GAC_ECO_BITS);
1761 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
1762
1763 ecochk = I915_READ(GAM_ECOCHK);
1764 if (IS_HASWELL(dev)) {
1765 ecochk |= ECOCHK_PPGTT_WB_HSW;
1766 } else {
1767 ecochk |= ECOCHK_PPGTT_LLC_IVB;
1768 ecochk &= ~ECOCHK_PPGTT_GFDT_IVB;
1769 }
1770 I915_WRITE(GAM_ECOCHK, ecochk);
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001771
Dave Gordonb4ac5af2016-03-24 11:20:38 +00001772 for_each_engine(engine, dev_priv) {
Ben Widawskyeeb94882013-12-06 14:11:10 -08001773 /* GFX_MODE is per-ring on gen7+ */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001774 I915_WRITE(RING_MODE_GEN7(engine),
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001775 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001776 }
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001777}
1778
Daniel Vetter82460d92014-08-06 20:19:53 +02001779static void gen6_ppgtt_enable(struct drm_device *dev)
Ben Widawsky61973492013-04-08 18:43:54 -07001780{
Jani Nikula50227e12014-03-31 14:27:21 +03001781 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001782 uint32_t ecochk, gab_ctl, ecobits;
Ben Widawsky61973492013-04-08 18:43:54 -07001783
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001784 ecobits = I915_READ(GAC_ECO_BITS);
1785 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_SNB_BIT |
1786 ECOBITS_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001787
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001788 gab_ctl = I915_READ(GAB_CTL);
1789 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
Ben Widawsky61973492013-04-08 18:43:54 -07001790
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001791 ecochk = I915_READ(GAM_ECOCHK);
1792 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT | ECOCHK_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001793
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001794 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001795}
1796
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001797/* PPGTT support for Sandybdrige/Gen6 and later */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001798static void gen6_ppgtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08001799 uint64_t start,
1800 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07001801 bool use_scratch)
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001802{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001803 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry07749ef2015-03-16 16:00:54 +00001804 gen6_pte_t *pt_vaddr, scratch_pte;
Ben Widawsky782f1492014-02-20 11:50:33 -08001805 unsigned first_entry = start >> PAGE_SHIFT;
1806 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001807 unsigned act_pt = first_entry / GEN6_PTES;
1808 unsigned first_pte = first_entry % GEN6_PTES;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001809 unsigned last_pte, i;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001810
Mika Kuoppalac114f762015-06-25 18:35:13 +03001811 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1812 I915_CACHE_LLC, true, 0);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001813
Daniel Vetter7bddb012012-02-09 17:15:47 +01001814 while (num_entries) {
1815 last_pte = first_pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +00001816 if (last_pte > GEN6_PTES)
1817 last_pte = GEN6_PTES;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001818
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001819 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001820
1821 for (i = first_pte; i < last_pte; i++)
1822 pt_vaddr[i] = scratch_pte;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001823
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001824 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001825
Daniel Vetter7bddb012012-02-09 17:15:47 +01001826 num_entries -= last_pte - first_pte;
1827 first_pte = 0;
Daniel Vettera15326a2013-03-19 23:48:39 +01001828 act_pt++;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001829 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001830}
1831
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001832static void gen6_ppgtt_insert_entries(struct i915_address_space *vm,
Daniel Vetterdef886c2013-01-24 14:44:56 -08001833 struct sg_table *pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08001834 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05301835 enum i915_cache_level cache_level, u32 flags)
Daniel Vetterdef886c2013-01-24 14:44:56 -08001836{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001837 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry07749ef2015-03-16 16:00:54 +00001838 gen6_pte_t *pt_vaddr;
Ben Widawsky782f1492014-02-20 11:50:33 -08001839 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001840 unsigned act_pt = first_entry / GEN6_PTES;
1841 unsigned act_pte = first_entry % GEN6_PTES;
Imre Deak6e995e22013-02-18 19:28:04 +02001842 struct sg_page_iter sg_iter;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001843
Chris Wilsoncc797142013-12-31 15:50:30 +00001844 pt_vaddr = NULL;
Imre Deak6e995e22013-02-18 19:28:04 +02001845 for_each_sg_page(pages->sgl, &sg_iter, pages->nents, 0) {
Chris Wilsoncc797142013-12-31 15:50:30 +00001846 if (pt_vaddr == NULL)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001847 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001848
Chris Wilsoncc797142013-12-31 15:50:30 +00001849 pt_vaddr[act_pte] =
1850 vm->pte_encode(sg_page_iter_dma_address(&sg_iter),
Akash Goel24f3a8c2014-06-17 10:59:42 +05301851 cache_level, true, flags);
1852
Michel Thierry07749ef2015-03-16 16:00:54 +00001853 if (++act_pte == GEN6_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001854 kunmap_px(ppgtt, pt_vaddr);
Chris Wilsoncc797142013-12-31 15:50:30 +00001855 pt_vaddr = NULL;
Daniel Vettera15326a2013-03-19 23:48:39 +01001856 act_pt++;
Imre Deak6e995e22013-02-18 19:28:04 +02001857 act_pte = 0;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001858 }
Daniel Vetterdef886c2013-01-24 14:44:56 -08001859 }
Chris Wilsoncc797142013-12-31 15:50:30 +00001860 if (pt_vaddr)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001861 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001862}
1863
Ben Widawsky678d96f2015-03-16 16:00:56 +00001864static int gen6_alloc_va_range(struct i915_address_space *vm,
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001865 uint64_t start_in, uint64_t length_in)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001866{
Michel Thierry4933d512015-03-24 15:46:22 +00001867 DECLARE_BITMAP(new_page_tables, I915_PDES);
1868 struct drm_device *dev = vm->dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001869 struct drm_i915_private *dev_priv = to_i915(dev);
1870 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001871 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierryec565b32015-04-08 12:13:23 +01001872 struct i915_page_table *pt;
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001873 uint32_t start, length, start_save, length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001874 uint32_t pde, temp;
Michel Thierry4933d512015-03-24 15:46:22 +00001875 int ret;
1876
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001877 if (WARN_ON(start_in + length_in > ppgtt->base.total))
1878 return -ENODEV;
1879
1880 start = start_save = start_in;
1881 length = length_save = length_in;
Michel Thierry4933d512015-03-24 15:46:22 +00001882
1883 bitmap_zero(new_page_tables, I915_PDES);
1884
1885 /* The allocation is done in two stages so that we can bail out with
1886 * minimal amount of pain. The first stage finds new page tables that
1887 * need allocation. The second stage marks use ptes within the page
1888 * tables.
1889 */
1890 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001891 if (pt != vm->scratch_pt) {
Michel Thierry4933d512015-03-24 15:46:22 +00001892 WARN_ON(bitmap_empty(pt->used_ptes, GEN6_PTES));
1893 continue;
1894 }
1895
1896 /* We've already allocated a page table */
1897 WARN_ON(!bitmap_empty(pt->used_ptes, GEN6_PTES));
1898
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001899 pt = alloc_pt(dev);
Michel Thierry4933d512015-03-24 15:46:22 +00001900 if (IS_ERR(pt)) {
1901 ret = PTR_ERR(pt);
1902 goto unwind_out;
1903 }
1904
1905 gen6_initialize_pt(vm, pt);
1906
1907 ppgtt->pd.page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001908 __set_bit(pde, new_page_tables);
Michel Thierry72744cb2015-03-24 15:46:23 +00001909 trace_i915_page_table_entry_alloc(vm, pde, start, GEN6_PDE_SHIFT);
Michel Thierry4933d512015-03-24 15:46:22 +00001910 }
1911
1912 start = start_save;
1913 length = length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001914
1915 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
1916 DECLARE_BITMAP(tmp_bitmap, GEN6_PTES);
1917
1918 bitmap_zero(tmp_bitmap, GEN6_PTES);
1919 bitmap_set(tmp_bitmap, gen6_pte_index(start),
1920 gen6_pte_count(start, length));
1921
Mika Kuoppala966082c2015-06-25 18:35:19 +03001922 if (__test_and_clear_bit(pde, new_page_tables))
Michel Thierry4933d512015-03-24 15:46:22 +00001923 gen6_write_pde(&ppgtt->pd, pde, pt);
1924
Michel Thierry72744cb2015-03-24 15:46:23 +00001925 trace_i915_page_table_entry_map(vm, pde, pt,
1926 gen6_pte_index(start),
1927 gen6_pte_count(start, length),
1928 GEN6_PTES);
Michel Thierry4933d512015-03-24 15:46:22 +00001929 bitmap_or(pt->used_ptes, tmp_bitmap, pt->used_ptes,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001930 GEN6_PTES);
1931 }
1932
Michel Thierry4933d512015-03-24 15:46:22 +00001933 WARN_ON(!bitmap_empty(new_page_tables, I915_PDES));
1934
1935 /* Make sure write is complete before other code can use this page
1936 * table. Also require for WC mapped PTEs */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001937 readl(ggtt->gsm);
Michel Thierry4933d512015-03-24 15:46:22 +00001938
Ben Widawsky563222a2015-03-19 12:53:28 +00001939 mark_tlbs_dirty(ppgtt);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001940 return 0;
Michel Thierry4933d512015-03-24 15:46:22 +00001941
1942unwind_out:
1943 for_each_set_bit(pde, new_page_tables, I915_PDES) {
Michel Thierryec565b32015-04-08 12:13:23 +01001944 struct i915_page_table *pt = ppgtt->pd.page_table[pde];
Michel Thierry4933d512015-03-24 15:46:22 +00001945
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001946 ppgtt->pd.page_table[pde] = vm->scratch_pt;
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001947 free_pt(vm->dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001948 }
1949
1950 mark_tlbs_dirty(ppgtt);
1951 return ret;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001952}
1953
Mika Kuoppala8776f022015-06-30 18:16:40 +03001954static int gen6_init_scratch(struct i915_address_space *vm)
1955{
1956 struct drm_device *dev = vm->dev;
1957
1958 vm->scratch_page = alloc_scratch_page(dev);
1959 if (IS_ERR(vm->scratch_page))
1960 return PTR_ERR(vm->scratch_page);
1961
1962 vm->scratch_pt = alloc_pt(dev);
1963 if (IS_ERR(vm->scratch_pt)) {
1964 free_scratch_page(dev, vm->scratch_page);
1965 return PTR_ERR(vm->scratch_pt);
1966 }
1967
1968 gen6_initialize_pt(vm, vm->scratch_pt);
1969
1970 return 0;
1971}
1972
1973static void gen6_free_scratch(struct i915_address_space *vm)
1974{
1975 struct drm_device *dev = vm->dev;
1976
1977 free_pt(dev, vm->scratch_pt);
1978 free_scratch_page(dev, vm->scratch_page);
1979}
1980
Daniel Vetter061dd492015-04-14 17:35:13 +02001981static void gen6_ppgtt_cleanup(struct i915_address_space *vm)
Ben Widawskya00d8252014-02-19 22:05:48 -08001982{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001983 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry09942c62015-04-08 12:13:30 +01001984 struct i915_page_table *pt;
1985 uint32_t pde;
Daniel Vetter3440d262013-01-24 13:49:56 -08001986
Daniel Vetter061dd492015-04-14 17:35:13 +02001987 drm_mm_remove_node(&ppgtt->node);
1988
Michel Thierry09942c62015-04-08 12:13:30 +01001989 gen6_for_all_pdes(pt, ppgtt, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001990 if (pt != vm->scratch_pt)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001991 free_pt(ppgtt->base.dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001992 }
1993
Mika Kuoppala8776f022015-06-30 18:16:40 +03001994 gen6_free_scratch(vm);
Daniel Vetter3440d262013-01-24 13:49:56 -08001995}
1996
Ben Widawskyb1465202014-02-19 22:05:49 -08001997static int gen6_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08001998{
Mika Kuoppala8776f022015-06-30 18:16:40 +03001999 struct i915_address_space *vm = &ppgtt->base;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002000 struct drm_device *dev = ppgtt->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002001 struct drm_i915_private *dev_priv = to_i915(dev);
2002 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskye3cc1992013-12-06 14:11:08 -08002003 bool retried = false;
Ben Widawskyb1465202014-02-19 22:05:49 -08002004 int ret;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002005
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002006 /* PPGTT PDEs reside in the GGTT and consists of 512 entries. The
2007 * allocator works in address space sizes, so it's multiplied by page
2008 * size. We allocate at the top of the GTT to avoid fragmentation.
2009 */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002010 BUG_ON(!drm_mm_initialized(&ggtt->base.mm));
Michel Thierry4933d512015-03-24 15:46:22 +00002011
Mika Kuoppala8776f022015-06-30 18:16:40 +03002012 ret = gen6_init_scratch(vm);
2013 if (ret)
2014 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002015
Ben Widawskye3cc1992013-12-06 14:11:08 -08002016alloc:
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002017 ret = drm_mm_insert_node_in_range_generic(&ggtt->base.mm,
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002018 &ppgtt->node, GEN6_PD_SIZE,
2019 GEN6_PD_ALIGN, 0,
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002020 0, ggtt->base.total,
Ben Widawsky3e8b5ae2014-05-06 22:21:30 -07002021 DRM_MM_TOPDOWN);
Ben Widawskye3cc1992013-12-06 14:11:08 -08002022 if (ret == -ENOSPC && !retried) {
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002023 ret = i915_gem_evict_something(dev, &ggtt->base,
Ben Widawskye3cc1992013-12-06 14:11:08 -08002024 GEN6_PD_SIZE, GEN6_PD_ALIGN,
Chris Wilsond23db882014-05-23 08:48:08 +02002025 I915_CACHE_NONE,
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002026 0, ggtt->base.total,
Chris Wilsond23db882014-05-23 08:48:08 +02002027 0);
Ben Widawskye3cc1992013-12-06 14:11:08 -08002028 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00002029 goto err_out;
Ben Widawskye3cc1992013-12-06 14:11:08 -08002030
2031 retried = true;
2032 goto alloc;
2033 }
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002034
Ben Widawskyc8c26622015-01-22 17:01:25 +00002035 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00002036 goto err_out;
2037
Ben Widawskyc8c26622015-01-22 17:01:25 +00002038
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002039 if (ppgtt->node.start < ggtt->mappable_end)
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002040 DRM_DEBUG("Forced to use aperture for PDEs\n");
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002041
Ben Widawskyc8c26622015-01-22 17:01:25 +00002042 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +00002043
2044err_out:
Mika Kuoppala8776f022015-06-30 18:16:40 +03002045 gen6_free_scratch(vm);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002046 return ret;
Ben Widawskyb1465202014-02-19 22:05:49 -08002047}
2048
Ben Widawskyb1465202014-02-19 22:05:49 -08002049static int gen6_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt)
2050{
kbuild test robot2f2cf682015-03-27 19:26:35 +08002051 return gen6_ppgtt_allocate_page_directories(ppgtt);
Ben Widawskyb1465202014-02-19 22:05:49 -08002052}
2053
Michel Thierry4933d512015-03-24 15:46:22 +00002054static void gen6_scratch_va_range(struct i915_hw_ppgtt *ppgtt,
2055 uint64_t start, uint64_t length)
2056{
Michel Thierryec565b32015-04-08 12:13:23 +01002057 struct i915_page_table *unused;
Michel Thierry4933d512015-03-24 15:46:22 +00002058 uint32_t pde, temp;
2059
2060 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde)
Mika Kuoppala79ab9372015-06-25 18:35:17 +03002061 ppgtt->pd.page_table[pde] = ppgtt->base.scratch_pt;
Michel Thierry4933d512015-03-24 15:46:22 +00002062}
2063
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002064static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawskyb1465202014-02-19 22:05:49 -08002065{
2066 struct drm_device *dev = ppgtt->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002067 struct drm_i915_private *dev_priv = to_i915(dev);
2068 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskyb1465202014-02-19 22:05:49 -08002069 int ret;
2070
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002071 ppgtt->base.pte_encode = ggtt->base.pte_encode;
Ben Widawsky48a10382013-12-06 14:11:11 -08002072 if (IS_GEN6(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002073 ppgtt->switch_mm = gen6_mm_switch;
Ben Widawsky90252e52013-12-06 14:11:12 -08002074 } else if (IS_HASWELL(dev)) {
Ben Widawsky90252e52013-12-06 14:11:12 -08002075 ppgtt->switch_mm = hsw_mm_switch;
Ben Widawsky48a10382013-12-06 14:11:11 -08002076 } else if (IS_GEN7(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002077 ppgtt->switch_mm = gen7_mm_switch;
2078 } else
Ben Widawskyb4a74e32013-12-06 14:11:09 -08002079 BUG();
Ben Widawskyb1465202014-02-19 22:05:49 -08002080
Yu Zhang71ba2d62015-02-10 19:05:54 +08002081 if (intel_vgpu_active(dev))
2082 ppgtt->switch_mm = vgpu_mm_switch;
2083
Ben Widawskyb1465202014-02-19 22:05:49 -08002084 ret = gen6_ppgtt_alloc(ppgtt);
2085 if (ret)
2086 return ret;
2087
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002088 ppgtt->base.allocate_va_range = gen6_alloc_va_range;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002089 ppgtt->base.clear_range = gen6_ppgtt_clear_range;
2090 ppgtt->base.insert_entries = gen6_ppgtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002091 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
2092 ppgtt->base.bind_vma = ppgtt_bind_vma;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002093 ppgtt->base.cleanup = gen6_ppgtt_cleanup;
Ben Widawsky686e1f62013-11-25 09:54:34 -08002094 ppgtt->base.start = 0;
Michel Thierry09942c62015-04-08 12:13:30 +01002095 ppgtt->base.total = I915_PDES * GEN6_PTES * PAGE_SIZE;
Ben Widawskyb1465202014-02-19 22:05:49 -08002096 ppgtt->debug_dump = gen6_dump_ppgtt;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002097
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002098 ppgtt->pd.base.ggtt_offset =
Michel Thierry07749ef2015-03-16 16:00:54 +00002099 ppgtt->node.start / PAGE_SIZE * sizeof(gen6_pte_t);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002100
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002101 ppgtt->pd_addr = (gen6_pte_t __iomem *)ggtt->gsm +
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002102 ppgtt->pd.base.ggtt_offset / sizeof(gen6_pte_t);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002103
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002104 gen6_scratch_va_range(ppgtt, 0, ppgtt->base.total);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002105
Ben Widawsky678d96f2015-03-16 16:00:56 +00002106 gen6_write_page_range(dev_priv, &ppgtt->pd, 0, ppgtt->base.total);
2107
Thierry Reding440fd522015-01-23 09:05:06 +01002108 DRM_DEBUG_DRIVER("Allocated pde space (%lldM) at GTT entry: %llx\n",
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002109 ppgtt->node.size >> 20,
2110 ppgtt->node.start / PAGE_SIZE);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002111
Daniel Vetterfa76da32014-08-06 20:19:54 +02002112 DRM_DEBUG("Adding PPGTT at offset %x\n",
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002113 ppgtt->pd.base.ggtt_offset << 10);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002114
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002115 return 0;
Daniel Vetter3440d262013-01-24 13:49:56 -08002116}
2117
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002118static int __hw_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08002119{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002120 ppgtt->base.dev = dev;
Daniel Vetter3440d262013-01-24 13:49:56 -08002121
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002122 if (INTEL_INFO(dev)->gen < 8)
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002123 return gen6_ppgtt_init(ppgtt);
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002124 else
Michel Thierryd7b26332015-04-08 12:13:34 +01002125 return gen8_ppgtt_init(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002126}
Mika Kuoppalac114f762015-06-25 18:35:13 +03002127
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002128static void i915_address_space_init(struct i915_address_space *vm,
2129 struct drm_i915_private *dev_priv)
2130{
2131 drm_mm_init(&vm->mm, vm->start, vm->total);
2132 vm->dev = dev_priv->dev;
2133 INIT_LIST_HEAD(&vm->active_list);
2134 INIT_LIST_HEAD(&vm->inactive_list);
2135 list_add_tail(&vm->global_link, &dev_priv->vm_list);
2136}
2137
Tim Gored5165eb2016-02-04 11:49:34 +00002138static void gtt_write_workarounds(struct drm_device *dev)
2139{
2140 struct drm_i915_private *dev_priv = dev->dev_private;
2141
2142 /* This function is for gtt related workarounds. This function is
2143 * called on driver load and after a GPU reset, so you can place
2144 * workarounds here even if they get overwritten by GPU reset.
2145 */
2146 /* WaIncreaseDefaultTLBEntries:chv,bdw,skl,bxt */
2147 if (IS_BROADWELL(dev))
2148 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_BDW);
2149 else if (IS_CHERRYVIEW(dev))
2150 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_CHV);
2151 else if (IS_SKYLAKE(dev))
2152 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_SKL);
2153 else if (IS_BROXTON(dev))
2154 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_BXT);
2155}
2156
Daniel Vetterfa76da32014-08-06 20:19:54 +02002157int i915_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
2158{
2159 struct drm_i915_private *dev_priv = dev->dev_private;
2160 int ret = 0;
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002161
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002162 ret = __hw_ppgtt_init(dev, ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002163 if (ret == 0) {
Ben Widawskyc7c48df2013-12-06 14:11:15 -08002164 kref_init(&ppgtt->ref);
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002165 i915_address_space_init(&ppgtt->base, dev_priv);
Ben Widawsky93bd8642013-07-16 16:50:06 -07002166 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002167
2168 return ret;
2169}
2170
Daniel Vetter82460d92014-08-06 20:19:53 +02002171int i915_ppgtt_init_hw(struct drm_device *dev)
2172{
Tim Gored5165eb2016-02-04 11:49:34 +00002173 gtt_write_workarounds(dev);
2174
Thomas Daniel671b50132014-08-20 16:24:50 +01002175 /* In the case of execlists, PPGTT is enabled by the context descriptor
2176 * and the PDPs are contained within the context itself. We don't
2177 * need to do anything here. */
2178 if (i915.enable_execlists)
2179 return 0;
2180
Daniel Vetter82460d92014-08-06 20:19:53 +02002181 if (!USES_PPGTT(dev))
2182 return 0;
2183
2184 if (IS_GEN6(dev))
2185 gen6_ppgtt_enable(dev);
2186 else if (IS_GEN7(dev))
2187 gen7_ppgtt_enable(dev);
2188 else if (INTEL_INFO(dev)->gen >= 8)
2189 gen8_ppgtt_enable(dev);
2190 else
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01002191 MISSING_CASE(INTEL_INFO(dev)->gen);
Daniel Vetter82460d92014-08-06 20:19:53 +02002192
John Harrison4ad2fd82015-06-18 13:11:20 +01002193 return 0;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002194}
John Harrison4ad2fd82015-06-18 13:11:20 +01002195
John Harrisonb3dd6b92015-05-29 17:43:40 +01002196int i915_ppgtt_init_ring(struct drm_i915_gem_request *req)
John Harrison4ad2fd82015-06-18 13:11:20 +01002197{
Tvrtko Ursulin39dabec2016-03-17 13:04:10 +00002198 struct drm_i915_private *dev_priv = req->i915;
John Harrison4ad2fd82015-06-18 13:11:20 +01002199 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2200
2201 if (i915.enable_execlists)
2202 return 0;
2203
2204 if (!ppgtt)
2205 return 0;
2206
John Harrisone85b26d2015-05-29 17:43:56 +01002207 return ppgtt->switch_mm(ppgtt, req);
John Harrison4ad2fd82015-06-18 13:11:20 +01002208}
2209
Daniel Vetter4d884702014-08-06 15:04:47 +02002210struct i915_hw_ppgtt *
2211i915_ppgtt_create(struct drm_device *dev, struct drm_i915_file_private *fpriv)
2212{
2213 struct i915_hw_ppgtt *ppgtt;
2214 int ret;
2215
2216 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2217 if (!ppgtt)
2218 return ERR_PTR(-ENOMEM);
2219
2220 ret = i915_ppgtt_init(dev, ppgtt);
2221 if (ret) {
2222 kfree(ppgtt);
2223 return ERR_PTR(ret);
2224 }
2225
2226 ppgtt->file_priv = fpriv;
2227
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002228 trace_i915_ppgtt_create(&ppgtt->base);
2229
Daniel Vetter4d884702014-08-06 15:04:47 +02002230 return ppgtt;
2231}
2232
Daniel Vetteree960be2014-08-06 15:04:45 +02002233void i915_ppgtt_release(struct kref *kref)
2234{
2235 struct i915_hw_ppgtt *ppgtt =
2236 container_of(kref, struct i915_hw_ppgtt, ref);
2237
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002238 trace_i915_ppgtt_release(&ppgtt->base);
2239
Daniel Vetteree960be2014-08-06 15:04:45 +02002240 /* vmas should already be unbound */
2241 WARN_ON(!list_empty(&ppgtt->base.active_list));
2242 WARN_ON(!list_empty(&ppgtt->base.inactive_list));
2243
Daniel Vetter19dd1202014-08-06 15:04:55 +02002244 list_del(&ppgtt->base.global_link);
2245 drm_mm_takedown(&ppgtt->base.mm);
2246
Daniel Vetteree960be2014-08-06 15:04:45 +02002247 ppgtt->base.cleanup(&ppgtt->base);
2248 kfree(ppgtt);
2249}
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002250
Ben Widawskya81cc002013-01-18 12:30:31 -08002251extern int intel_iommu_gfx_mapped;
2252/* Certain Gen5 chipsets require require idling the GPU before
2253 * unmapping anything from the GTT when VT-d is enabled.
2254 */
Daniel Vetter2c642b02015-04-14 17:35:26 +02002255static bool needs_idle_maps(struct drm_device *dev)
Ben Widawskya81cc002013-01-18 12:30:31 -08002256{
2257#ifdef CONFIG_INTEL_IOMMU
2258 /* Query intel_iommu to see if we need the workaround. Presumably that
2259 * was loaded first.
2260 */
2261 if (IS_GEN5(dev) && IS_MOBILE(dev) && intel_iommu_gfx_mapped)
2262 return true;
2263#endif
2264 return false;
2265}
2266
Ben Widawsky5c042282011-10-17 15:51:55 -07002267static bool do_idling(struct drm_i915_private *dev_priv)
2268{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002269 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawsky5c042282011-10-17 15:51:55 -07002270 bool ret = dev_priv->mm.interruptible;
2271
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002272 if (unlikely(ggtt->do_idle_maps)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002273 dev_priv->mm.interruptible = false;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002274 if (i915_gpu_idle(dev_priv->dev)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002275 DRM_ERROR("Couldn't idle GPU\n");
2276 /* Wait a bit, in hopes it avoids the hang */
2277 udelay(10);
2278 }
2279 }
2280
2281 return ret;
2282}
2283
2284static void undo_idling(struct drm_i915_private *dev_priv, bool interruptible)
2285{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002286 struct i915_ggtt *ggtt = &dev_priv->ggtt;
2287
2288 if (unlikely(ggtt->do_idle_maps))
Ben Widawsky5c042282011-10-17 15:51:55 -07002289 dev_priv->mm.interruptible = interruptible;
2290}
2291
Ben Widawsky828c7902013-10-16 09:21:30 -07002292void i915_check_and_clear_faults(struct drm_device *dev)
2293{
2294 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002295 struct intel_engine_cs *engine;
Ben Widawsky828c7902013-10-16 09:21:30 -07002296
2297 if (INTEL_INFO(dev)->gen < 6)
2298 return;
2299
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002300 for_each_engine(engine, dev_priv) {
Ben Widawsky828c7902013-10-16 09:21:30 -07002301 u32 fault_reg;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002302 fault_reg = I915_READ(RING_FAULT_REG(engine));
Ben Widawsky828c7902013-10-16 09:21:30 -07002303 if (fault_reg & RING_FAULT_VALID) {
2304 DRM_DEBUG_DRIVER("Unexpected fault\n"
Paulo Zanoni59a5d292014-10-30 15:52:45 -02002305 "\tAddr: 0x%08lx\n"
Ben Widawsky828c7902013-10-16 09:21:30 -07002306 "\tAddress space: %s\n"
2307 "\tSource ID: %d\n"
2308 "\tType: %d\n",
2309 fault_reg & PAGE_MASK,
2310 fault_reg & RING_FAULT_GTTSEL_MASK ? "GGTT" : "PPGTT",
2311 RING_FAULT_SRCID(fault_reg),
2312 RING_FAULT_FAULT_TYPE(fault_reg));
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002313 I915_WRITE(RING_FAULT_REG(engine),
Ben Widawsky828c7902013-10-16 09:21:30 -07002314 fault_reg & ~RING_FAULT_VALID);
2315 }
2316 }
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00002317 POSTING_READ(RING_FAULT_REG(&dev_priv->engine[RCS]));
Ben Widawsky828c7902013-10-16 09:21:30 -07002318}
2319
Chris Wilson91e56492014-09-25 10:13:12 +01002320static void i915_ggtt_flush(struct drm_i915_private *dev_priv)
2321{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002322 if (INTEL_INFO(dev_priv)->gen < 6) {
Chris Wilson91e56492014-09-25 10:13:12 +01002323 intel_gtt_chipset_flush();
2324 } else {
2325 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2326 POSTING_READ(GFX_FLSH_CNTL_GEN6);
2327 }
2328}
2329
Ben Widawsky828c7902013-10-16 09:21:30 -07002330void i915_gem_suspend_gtt_mappings(struct drm_device *dev)
2331{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002332 struct drm_i915_private *dev_priv = to_i915(dev);
2333 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawsky828c7902013-10-16 09:21:30 -07002334
2335 /* Don't bother messing with faults pre GEN6 as we have little
2336 * documentation supporting that it's a good idea.
2337 */
2338 if (INTEL_INFO(dev)->gen < 6)
2339 return;
2340
2341 i915_check_and_clear_faults(dev);
2342
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002343 ggtt->base.clear_range(&ggtt->base, ggtt->base.start, ggtt->base.total,
2344 true);
Chris Wilson91e56492014-09-25 10:13:12 +01002345
2346 i915_ggtt_flush(dev_priv);
Ben Widawsky828c7902013-10-16 09:21:30 -07002347}
2348
Daniel Vetter74163902012-02-15 23:50:21 +01002349int i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002350{
Chris Wilson9da3da62012-06-01 15:20:22 +01002351 if (!dma_map_sg(&obj->base.dev->pdev->dev,
2352 obj->pages->sgl, obj->pages->nents,
2353 PCI_DMA_BIDIRECTIONAL))
2354 return -ENOSPC;
2355
2356 return 0;
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002357}
2358
Daniel Vetter2c642b02015-04-14 17:35:26 +02002359static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002360{
2361#ifdef writeq
2362 writeq(pte, addr);
2363#else
2364 iowrite32((u32)pte, addr);
2365 iowrite32(pte >> 32, addr + 4);
2366#endif
2367}
2368
2369static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
2370 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002371 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302372 enum i915_cache_level level, u32 unused)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002373{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002374 struct drm_i915_private *dev_priv = to_i915(vm->dev);
Chris Wilsonce7fda22016-04-28 09:56:38 +01002375 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Ben Widawsky782f1492014-02-20 11:50:33 -08002376 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002377 gen8_pte_t __iomem *gtt_entries =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002378 (gen8_pte_t __iomem *)ggtt->gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002379 int i = 0;
2380 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002381 dma_addr_t addr = 0; /* shut up gcc */
Imre Deakbe694592015-12-15 20:10:38 +02002382 int rpm_atomic_seq;
2383
2384 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002385
2386 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
2387 addr = sg_dma_address(sg_iter.sg) +
2388 (sg_iter.sg_pgoffset << PAGE_SHIFT);
2389 gen8_set_pte(&gtt_entries[i],
2390 gen8_pte_encode(addr, level, true));
2391 i++;
2392 }
2393
2394 /*
2395 * XXX: This serves as a posting read to make sure that the PTE has
2396 * actually been updated. There is some concern that even though
2397 * registers and PTEs are within the same BAR that they are potentially
2398 * of NUMA access patterns. Therefore, even with the way we assume
2399 * hardware should work, we must keep this posting read for paranoia.
2400 */
2401 if (i != 0)
2402 WARN_ON(readq(&gtt_entries[i-1])
2403 != gen8_pte_encode(addr, level, true));
2404
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002405 /* This next bit makes the above posting read even more important. We
2406 * want to flush the TLBs only after we're certain all the PTE updates
2407 * have finished.
2408 */
2409 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2410 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Imre Deakbe694592015-12-15 20:10:38 +02002411
2412 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002413}
2414
Chris Wilsonc1403302015-11-18 15:19:39 +00002415struct insert_entries {
2416 struct i915_address_space *vm;
2417 struct sg_table *st;
2418 uint64_t start;
2419 enum i915_cache_level level;
2420 u32 flags;
2421};
2422
2423static int gen8_ggtt_insert_entries__cb(void *_arg)
2424{
2425 struct insert_entries *arg = _arg;
2426 gen8_ggtt_insert_entries(arg->vm, arg->st,
2427 arg->start, arg->level, arg->flags);
2428 return 0;
2429}
2430
2431static void gen8_ggtt_insert_entries__BKL(struct i915_address_space *vm,
2432 struct sg_table *st,
2433 uint64_t start,
2434 enum i915_cache_level level,
2435 u32 flags)
2436{
2437 struct insert_entries arg = { vm, st, start, level, flags };
2438 stop_machine(gen8_ggtt_insert_entries__cb, &arg, NULL);
2439}
2440
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002441/*
2442 * Binds an object into the global gtt with the specified cache level. The object
2443 * will be accessible to the GPU via commands whose operands reference offsets
2444 * within the global GTT as well as accessible by the GPU through the GMADR
2445 * mapped BAR (dev_priv->mm.gtt->gtt).
2446 */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002447static void gen6_ggtt_insert_entries(struct i915_address_space *vm,
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002448 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002449 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302450 enum i915_cache_level level, u32 flags)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002451{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002452 struct drm_i915_private *dev_priv = to_i915(vm->dev);
Chris Wilsonce7fda22016-04-28 09:56:38 +01002453 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Ben Widawsky782f1492014-02-20 11:50:33 -08002454 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002455 gen6_pte_t __iomem *gtt_entries =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002456 (gen6_pte_t __iomem *)ggtt->gsm + first_entry;
Imre Deak6e995e22013-02-18 19:28:04 +02002457 int i = 0;
2458 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002459 dma_addr_t addr = 0;
Imre Deakbe694592015-12-15 20:10:38 +02002460 int rpm_atomic_seq;
2461
2462 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002463
Imre Deak6e995e22013-02-18 19:28:04 +02002464 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02002465 addr = sg_page_iter_dma_address(&sg_iter);
Akash Goel24f3a8c2014-06-17 10:59:42 +05302466 iowrite32(vm->pte_encode(addr, level, true, flags), &gtt_entries[i]);
Imre Deak6e995e22013-02-18 19:28:04 +02002467 i++;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002468 }
2469
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002470 /* XXX: This serves as a posting read to make sure that the PTE has
2471 * actually been updated. There is some concern that even though
2472 * registers and PTEs are within the same BAR that they are potentially
2473 * of NUMA access patterns. Therefore, even with the way we assume
2474 * hardware should work, we must keep this posting read for paranoia.
2475 */
Pavel Machek57007df2014-07-28 13:20:58 +02002476 if (i != 0) {
2477 unsigned long gtt = readl(&gtt_entries[i-1]);
2478 WARN_ON(gtt != vm->pte_encode(addr, level, true, flags));
2479 }
Ben Widawsky0f9b91c2012-11-04 09:21:30 -08002480
2481 /* This next bit makes the above posting read even more important. We
2482 * want to flush the TLBs only after we're certain all the PTE updates
2483 * have finished.
2484 */
2485 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2486 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Imre Deakbe694592015-12-15 20:10:38 +02002487
2488 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002489}
2490
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002491static void gen8_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002492 uint64_t start,
2493 uint64_t length,
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002494 bool use_scratch)
2495{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002496 struct drm_i915_private *dev_priv = to_i915(vm->dev);
Chris Wilsonce7fda22016-04-28 09:56:38 +01002497 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Ben Widawsky782f1492014-02-20 11:50:33 -08002498 unsigned first_entry = start >> PAGE_SHIFT;
2499 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002500 gen8_pte_t scratch_pte, __iomem *gtt_base =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002501 (gen8_pte_t __iomem *)ggtt->gsm + first_entry;
2502 const int max_entries = ggtt_total_entries(ggtt) - first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002503 int i;
Imre Deakbe694592015-12-15 20:10:38 +02002504 int rpm_atomic_seq;
2505
2506 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002507
2508 if (WARN(num_entries > max_entries,
2509 "First entry = %d; Num entries = %d (max=%d)\n",
2510 first_entry, num_entries, max_entries))
2511 num_entries = max_entries;
2512
Mika Kuoppalac114f762015-06-25 18:35:13 +03002513 scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002514 I915_CACHE_LLC,
2515 use_scratch);
2516 for (i = 0; i < num_entries; i++)
2517 gen8_set_pte(&gtt_base[i], scratch_pte);
2518 readl(gtt_base);
Imre Deakbe694592015-12-15 20:10:38 +02002519
2520 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002521}
2522
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002523static void gen6_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002524 uint64_t start,
2525 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002526 bool use_scratch)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002527{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002528 struct drm_i915_private *dev_priv = to_i915(vm->dev);
Chris Wilsonce7fda22016-04-28 09:56:38 +01002529 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Ben Widawsky782f1492014-02-20 11:50:33 -08002530 unsigned first_entry = start >> PAGE_SHIFT;
2531 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002532 gen6_pte_t scratch_pte, __iomem *gtt_base =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002533 (gen6_pte_t __iomem *)ggtt->gsm + first_entry;
2534 const int max_entries = ggtt_total_entries(ggtt) - first_entry;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002535 int i;
Imre Deakbe694592015-12-15 20:10:38 +02002536 int rpm_atomic_seq;
2537
2538 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002539
2540 if (WARN(num_entries > max_entries,
2541 "First entry = %d; Num entries = %d (max=%d)\n",
2542 first_entry, num_entries, max_entries))
2543 num_entries = max_entries;
2544
Mika Kuoppalac114f762015-06-25 18:35:13 +03002545 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
2546 I915_CACHE_LLC, use_scratch, 0);
Ben Widawsky828c7902013-10-16 09:21:30 -07002547
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002548 for (i = 0; i < num_entries; i++)
2549 iowrite32(scratch_pte, &gtt_base[i]);
2550 readl(gtt_base);
Imre Deakbe694592015-12-15 20:10:38 +02002551
2552 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002553}
2554
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002555static void i915_ggtt_insert_entries(struct i915_address_space *vm,
2556 struct sg_table *pages,
2557 uint64_t start,
2558 enum i915_cache_level cache_level, u32 unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002559{
Imre Deakbe694592015-12-15 20:10:38 +02002560 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002561 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
2562 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
Imre Deakbe694592015-12-15 20:10:38 +02002563 int rpm_atomic_seq;
2564
2565 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002566
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002567 intel_gtt_insert_sg_entries(pages, start >> PAGE_SHIFT, flags);
Daniel Vetter08755462015-04-20 09:04:05 -07002568
Imre Deakbe694592015-12-15 20:10:38 +02002569 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
2570
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002571}
2572
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002573static void i915_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002574 uint64_t start,
2575 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002576 bool unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002577{
Imre Deakbe694592015-12-15 20:10:38 +02002578 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002579 unsigned first_entry = start >> PAGE_SHIFT;
2580 unsigned num_entries = length >> PAGE_SHIFT;
Imre Deakbe694592015-12-15 20:10:38 +02002581 int rpm_atomic_seq;
2582
2583 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
2584
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002585 intel_gtt_clear_range(first_entry, num_entries);
Imre Deakbe694592015-12-15 20:10:38 +02002586
2587 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002588}
2589
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002590static int ggtt_bind_vma(struct i915_vma *vma,
2591 enum i915_cache_level cache_level,
2592 u32 flags)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002593{
Daniel Vetter0a878712015-10-15 14:23:01 +02002594 struct drm_i915_gem_object *obj = vma->obj;
2595 u32 pte_flags = 0;
2596 int ret;
2597
2598 ret = i915_get_ggtt_vma_pages(vma);
2599 if (ret)
2600 return ret;
2601
2602 /* Currently applicable only to VLV */
2603 if (obj->gt_ro)
2604 pte_flags |= PTE_READ_ONLY;
2605
2606 vma->vm->insert_entries(vma->vm, vma->ggtt_view.pages,
2607 vma->node.start,
2608 cache_level, pte_flags);
2609
2610 /*
2611 * Without aliasing PPGTT there's no difference between
2612 * GLOBAL/LOCAL_BIND, it's all the same ptes. Hence unconditionally
2613 * upgrade to both bound if we bind either to avoid double-binding.
2614 */
2615 vma->bound |= GLOBAL_BIND | LOCAL_BIND;
2616
2617 return 0;
2618}
2619
2620static int aliasing_gtt_bind_vma(struct i915_vma *vma,
2621 enum i915_cache_level cache_level,
2622 u32 flags)
2623{
Chris Wilson321d1782015-11-20 10:27:18 +00002624 u32 pte_flags;
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002625 int ret;
2626
2627 ret = i915_get_ggtt_vma_pages(vma);
2628 if (ret)
2629 return ret;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002630
Akash Goel24f3a8c2014-06-17 10:59:42 +05302631 /* Currently applicable only to VLV */
Chris Wilson321d1782015-11-20 10:27:18 +00002632 pte_flags = 0;
2633 if (vma->obj->gt_ro)
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002634 pte_flags |= PTE_READ_ONLY;
Akash Goel24f3a8c2014-06-17 10:59:42 +05302635
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002636
Daniel Vetter0a878712015-10-15 14:23:01 +02002637 if (flags & GLOBAL_BIND) {
Chris Wilson321d1782015-11-20 10:27:18 +00002638 vma->vm->insert_entries(vma->vm,
2639 vma->ggtt_view.pages,
Daniel Vetter08755462015-04-20 09:04:05 -07002640 vma->node.start,
2641 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002642 }
Daniel Vetter74898d72012-02-15 23:50:22 +01002643
Daniel Vetter0a878712015-10-15 14:23:01 +02002644 if (flags & LOCAL_BIND) {
Chris Wilson321d1782015-11-20 10:27:18 +00002645 struct i915_hw_ppgtt *appgtt =
2646 to_i915(vma->vm->dev)->mm.aliasing_ppgtt;
2647 appgtt->base.insert_entries(&appgtt->base,
2648 vma->ggtt_view.pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08002649 vma->node.start,
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002650 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002651 }
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002652
2653 return 0;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002654}
2655
2656static void ggtt_unbind_vma(struct i915_vma *vma)
2657{
2658 struct drm_device *dev = vma->vm->dev;
2659 struct drm_i915_private *dev_priv = dev->dev_private;
2660 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002661 const uint64_t size = min_t(uint64_t,
2662 obj->base.size,
2663 vma->node.size);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002664
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002665 if (vma->bound & GLOBAL_BIND) {
Ben Widawsky782f1492014-02-20 11:50:33 -08002666 vma->vm->clear_range(vma->vm,
2667 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002668 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002669 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002670 }
2671
Daniel Vetter08755462015-04-20 09:04:05 -07002672 if (dev_priv->mm.aliasing_ppgtt && vma->bound & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002673 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002674
Ben Widawsky6f65e292013-12-06 14:10:56 -08002675 appgtt->base.clear_range(&appgtt->base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002676 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002677 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002678 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002679 }
Daniel Vetter74163902012-02-15 23:50:21 +01002680}
2681
2682void i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj)
2683{
Ben Widawsky5c042282011-10-17 15:51:55 -07002684 struct drm_device *dev = obj->base.dev;
2685 struct drm_i915_private *dev_priv = dev->dev_private;
2686 bool interruptible;
2687
2688 interruptible = do_idling(dev_priv);
2689
Imre Deak5ec5b512015-07-08 19:18:59 +03002690 dma_unmap_sg(&dev->pdev->dev, obj->pages->sgl, obj->pages->nents,
2691 PCI_DMA_BIDIRECTIONAL);
Ben Widawsky5c042282011-10-17 15:51:55 -07002692
2693 undo_idling(dev_priv, interruptible);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002694}
Daniel Vetter644ec022012-03-26 09:45:40 +02002695
Chris Wilson42d6ab42012-07-26 11:49:32 +01002696static void i915_gtt_color_adjust(struct drm_mm_node *node,
2697 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +01002698 u64 *start,
2699 u64 *end)
Chris Wilson42d6ab42012-07-26 11:49:32 +01002700{
2701 if (node->color != color)
2702 *start += 4096;
2703
2704 if (!list_empty(&node->node_list)) {
2705 node = list_entry(node->node_list.next,
2706 struct drm_mm_node,
2707 node_list);
2708 if (node->allocated && node->color != color)
2709 *end -= 4096;
2710 }
2711}
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002712
Daniel Vetterf548c0e2014-11-19 21:40:13 +01002713static int i915_gem_setup_global_gtt(struct drm_device *dev,
Michel Thierry088e0df2015-08-07 17:40:17 +01002714 u64 start,
2715 u64 mappable_end,
2716 u64 end)
Daniel Vetter644ec022012-03-26 09:45:40 +02002717{
Ben Widawskye78891c2013-01-25 16:41:04 -08002718 /* Let GEM Manage all of the aperture.
2719 *
2720 * However, leave one page at the end still bound to the scratch page.
2721 * There are a number of places where the hardware apparently prefetches
2722 * past the end of the object, and we've seen multiple hangs with the
2723 * GPU head pointer stuck in a batchbuffer bound at the last page of the
2724 * aperture. One page should be enough to keep any prefetching inside
2725 * of the aperture.
2726 */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002727 struct drm_i915_private *dev_priv = to_i915(dev);
2728 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilsoned2f3452012-11-15 11:32:19 +00002729 struct drm_mm_node *entry;
2730 struct drm_i915_gem_object *obj;
2731 unsigned long hole_start, hole_end;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002732 int ret;
Daniel Vetter644ec022012-03-26 09:45:40 +02002733
Ben Widawsky35451cb2013-01-17 12:45:13 -08002734 BUG_ON(mappable_end > end);
2735
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002736 ggtt->base.start = start;
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002737
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002738 /* Subtract the guard page before address space initialization to
2739 * shrink the range used by drm_mm */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002740 ggtt->base.total = end - start - PAGE_SIZE;
2741 i915_address_space_init(&ggtt->base, dev_priv);
2742 ggtt->base.total += PAGE_SIZE;
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002743
2744 if (intel_vgpu_active(dev)) {
2745 ret = intel_vgt_balloon(dev);
2746 if (ret)
2747 return ret;
2748 }
2749
Chris Wilson42d6ab42012-07-26 11:49:32 +01002750 if (!HAS_LLC(dev))
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002751 ggtt->base.mm.color_adjust = i915_gtt_color_adjust;
Daniel Vetter644ec022012-03-26 09:45:40 +02002752
Chris Wilsoned2f3452012-11-15 11:32:19 +00002753 /* Mark any preallocated objects as occupied */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002754 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002755 struct i915_vma *vma = i915_gem_obj_to_vma(obj, &ggtt->base);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002756
Michel Thierry088e0df2015-08-07 17:40:17 +01002757 DRM_DEBUG_KMS("reserving preallocated space: %llx + %zx\n",
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002758 i915_gem_obj_ggtt_offset(obj), obj->base.size);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002759
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002760 WARN_ON(i915_gem_obj_ggtt_bound(obj));
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002761 ret = drm_mm_reserve_node(&ggtt->base.mm, &vma->node);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002762 if (ret) {
2763 DRM_DEBUG_KMS("Reservation failed: %i\n", ret);
2764 return ret;
2765 }
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002766 vma->bound |= GLOBAL_BIND;
Chris Wilsond0710ab2015-11-20 14:16:39 +00002767 __i915_vma_set_map_and_fenceable(vma);
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002768 list_add_tail(&vma->vm_link, &ggtt->base.inactive_list);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002769 }
2770
Chris Wilsoned2f3452012-11-15 11:32:19 +00002771 /* Clear any non-preallocated blocks */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002772 drm_mm_for_each_hole(entry, &ggtt->base.mm, hole_start, hole_end) {
Chris Wilsoned2f3452012-11-15 11:32:19 +00002773 DRM_DEBUG_KMS("clearing unused GTT space: [%lx, %lx]\n",
2774 hole_start, hole_end);
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002775 ggtt->base.clear_range(&ggtt->base, hole_start,
Ben Widawsky782f1492014-02-20 11:50:33 -08002776 hole_end - hole_start, true);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002777 }
2778
2779 /* And finally clear the reserved guard page */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002780 ggtt->base.clear_range(&ggtt->base, end - PAGE_SIZE, PAGE_SIZE, true);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002781
Daniel Vetterfa76da32014-08-06 20:19:54 +02002782 if (USES_PPGTT(dev) && !USES_FULL_PPGTT(dev)) {
2783 struct i915_hw_ppgtt *ppgtt;
2784
2785 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2786 if (!ppgtt)
2787 return -ENOMEM;
2788
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002789 ret = __hw_ppgtt_init(dev, ppgtt);
Michel Thierry4933d512015-03-24 15:46:22 +00002790 if (ret) {
Daniel Vetter061dd492015-04-14 17:35:13 +02002791 ppgtt->base.cleanup(&ppgtt->base);
Michel Thierry4933d512015-03-24 15:46:22 +00002792 kfree(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002793 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002794 }
Daniel Vetterfa76da32014-08-06 20:19:54 +02002795
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002796 if (ppgtt->base.allocate_va_range)
2797 ret = ppgtt->base.allocate_va_range(&ppgtt->base, 0,
2798 ppgtt->base.total);
2799 if (ret) {
2800 ppgtt->base.cleanup(&ppgtt->base);
2801 kfree(ppgtt);
2802 return ret;
2803 }
2804
2805 ppgtt->base.clear_range(&ppgtt->base,
2806 ppgtt->base.start,
2807 ppgtt->base.total,
2808 true);
2809
Daniel Vetterfa76da32014-08-06 20:19:54 +02002810 dev_priv->mm.aliasing_ppgtt = ppgtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002811 WARN_ON(ggtt->base.bind_vma != ggtt_bind_vma);
2812 ggtt->base.bind_vma = aliasing_gtt_bind_vma;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002813 }
2814
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002815 return 0;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002816}
2817
Joonas Lahtinend85489d2016-03-24 16:47:46 +02002818/**
2819 * i915_gem_init_ggtt - Initialize GEM for Global GTT
2820 * @dev: DRM device
2821 */
2822void i915_gem_init_ggtt(struct drm_device *dev)
Ben Widawskyd7e50082012-12-18 10:31:25 -08002823{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002824 struct drm_i915_private *dev_priv = to_i915(dev);
2825 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002826
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002827 i915_gem_setup_global_gtt(dev, 0, ggtt->mappable_end, ggtt->base.total);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002828}
2829
Joonas Lahtinend85489d2016-03-24 16:47:46 +02002830/**
2831 * i915_ggtt_cleanup_hw - Clean up GGTT hardware initialization
2832 * @dev: DRM device
2833 */
2834void i915_ggtt_cleanup_hw(struct drm_device *dev)
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002835{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002836 struct drm_i915_private *dev_priv = to_i915(dev);
2837 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002838
Daniel Vetter70e32542014-08-06 15:04:57 +02002839 if (dev_priv->mm.aliasing_ppgtt) {
2840 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2841
2842 ppgtt->base.cleanup(&ppgtt->base);
2843 }
2844
Imre Deaka4eba472016-01-19 15:26:32 +02002845 i915_gem_cleanup_stolen(dev);
2846
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002847 if (drm_mm_initialized(&ggtt->base.mm)) {
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002848 if (intel_vgpu_active(dev))
2849 intel_vgt_deballoon();
2850
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002851 drm_mm_takedown(&ggtt->base.mm);
2852 list_del(&ggtt->base.global_link);
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002853 }
2854
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002855 ggtt->base.cleanup(&ggtt->base);
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002856}
Daniel Vetter70e32542014-08-06 15:04:57 +02002857
Daniel Vetter2c642b02015-04-14 17:35:26 +02002858static unsigned int gen6_get_total_gtt_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002859{
2860 snb_gmch_ctl >>= SNB_GMCH_GGMS_SHIFT;
2861 snb_gmch_ctl &= SNB_GMCH_GGMS_MASK;
2862 return snb_gmch_ctl << 20;
2863}
2864
Daniel Vetter2c642b02015-04-14 17:35:26 +02002865static unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002866{
2867 bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
2868 bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
2869 if (bdw_gmch_ctl)
2870 bdw_gmch_ctl = 1 << bdw_gmch_ctl;
Ben Widawsky562d55d2014-05-27 16:53:08 -07002871
2872#ifdef CONFIG_X86_32
2873 /* Limit 32b platforms to a 2GB GGTT: 4 << 20 / pte size * PAGE_SIZE */
2874 if (bdw_gmch_ctl > 4)
2875 bdw_gmch_ctl = 4;
2876#endif
2877
Ben Widawsky9459d252013-11-03 16:53:55 -08002878 return bdw_gmch_ctl << 20;
2879}
2880
Daniel Vetter2c642b02015-04-14 17:35:26 +02002881static unsigned int chv_get_total_gtt_size(u16 gmch_ctrl)
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002882{
2883 gmch_ctrl >>= SNB_GMCH_GGMS_SHIFT;
2884 gmch_ctrl &= SNB_GMCH_GGMS_MASK;
2885
2886 if (gmch_ctrl)
2887 return 1 << (20 + gmch_ctrl);
2888
2889 return 0;
2890}
2891
Daniel Vetter2c642b02015-04-14 17:35:26 +02002892static size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002893{
2894 snb_gmch_ctl >>= SNB_GMCH_GMS_SHIFT;
2895 snb_gmch_ctl &= SNB_GMCH_GMS_MASK;
2896 return snb_gmch_ctl << 25; /* 32 MB units */
2897}
2898
Daniel Vetter2c642b02015-04-14 17:35:26 +02002899static size_t gen8_get_stolen_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002900{
2901 bdw_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2902 bdw_gmch_ctl &= BDW_GMCH_GMS_MASK;
2903 return bdw_gmch_ctl << 25; /* 32 MB units */
2904}
2905
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002906static size_t chv_get_stolen_size(u16 gmch_ctrl)
2907{
2908 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
2909 gmch_ctrl &= SNB_GMCH_GMS_MASK;
2910
2911 /*
2912 * 0x0 to 0x10: 32MB increments starting at 0MB
2913 * 0x11 to 0x16: 4MB increments starting at 8MB
2914 * 0x17 to 0x1d: 4MB increments start at 36MB
2915 */
2916 if (gmch_ctrl < 0x11)
2917 return gmch_ctrl << 25;
2918 else if (gmch_ctrl < 0x17)
2919 return (gmch_ctrl - 0x11 + 2) << 22;
2920 else
2921 return (gmch_ctrl - 0x17 + 9) << 22;
2922}
2923
Damien Lespiau66375012014-01-09 18:02:46 +00002924static size_t gen9_get_stolen_size(u16 gen9_gmch_ctl)
2925{
2926 gen9_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2927 gen9_gmch_ctl &= BDW_GMCH_GMS_MASK;
2928
2929 if (gen9_gmch_ctl < 0xf0)
2930 return gen9_gmch_ctl << 25; /* 32 MB units */
2931 else
2932 /* 4MB increments starting at 0xf0 for 4MB */
2933 return (gen9_gmch_ctl - 0xf0 + 1) << 22;
2934}
2935
Ben Widawsky63340132013-11-04 19:32:22 -08002936static int ggtt_probe_common(struct drm_device *dev,
2937 size_t gtt_size)
2938{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002939 struct drm_i915_private *dev_priv = to_i915(dev);
2940 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002941 struct i915_page_scratch *scratch_page;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002942 phys_addr_t ggtt_phys_addr;
Ben Widawsky63340132013-11-04 19:32:22 -08002943
2944 /* For Modern GENs the PTEs and register space are split in the BAR */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002945 ggtt_phys_addr = pci_resource_start(dev->pdev, 0) +
2946 (pci_resource_len(dev->pdev, 0) / 2);
Ben Widawsky63340132013-11-04 19:32:22 -08002947
Imre Deak2a073f892015-03-27 13:07:33 +02002948 /*
2949 * On BXT writes larger than 64 bit to the GTT pagetable range will be
2950 * dropped. For WC mappings in general we have 64 byte burst writes
2951 * when the WC buffer is flushed, so we can't use it, but have to
2952 * resort to an uncached mapping. The WC issue is easily caught by the
2953 * readback check when writing GTT PTE entries.
2954 */
2955 if (IS_BROXTON(dev))
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002956 ggtt->gsm = ioremap_nocache(ggtt_phys_addr, gtt_size);
Imre Deak2a073f892015-03-27 13:07:33 +02002957 else
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002958 ggtt->gsm = ioremap_wc(ggtt_phys_addr, gtt_size);
2959 if (!ggtt->gsm) {
Ben Widawsky63340132013-11-04 19:32:22 -08002960 DRM_ERROR("Failed to map the gtt page table\n");
2961 return -ENOMEM;
2962 }
2963
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002964 scratch_page = alloc_scratch_page(dev);
2965 if (IS_ERR(scratch_page)) {
Ben Widawsky63340132013-11-04 19:32:22 -08002966 DRM_ERROR("Scratch setup failed\n");
2967 /* iounmap will also get called at remove, but meh */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002968 iounmap(ggtt->gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002969 return PTR_ERR(scratch_page);
Ben Widawsky63340132013-11-04 19:32:22 -08002970 }
2971
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002972 ggtt->base.scratch_page = scratch_page;
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002973
2974 return 0;
Ben Widawsky63340132013-11-04 19:32:22 -08002975}
2976
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002977/* The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
2978 * bits. When using advanced contexts each context stores its own PAT, but
2979 * writing this data shouldn't be harmful even in those cases. */
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002980static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv)
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002981{
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002982 uint64_t pat;
2983
2984 pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) | /* for normal objects, no eLLC */
2985 GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) | /* for something pointing to ptes? */
2986 GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC) | /* for scanout with eLLC */
2987 GEN8_PPAT(3, GEN8_PPAT_UC) | /* Uncached objects, mostly for scanout */
2988 GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
2989 GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
2990 GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
2991 GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
2992
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002993 if (!USES_PPGTT(dev_priv))
Rodrigo Vivid6a8b722014-11-05 16:56:36 -08002994 /* Spec: "For GGTT, there is NO pat_sel[2:0] from the entry,
2995 * so RTL will always use the value corresponding to
2996 * pat_sel = 000".
2997 * So let's disable cache for GGTT to avoid screen corruptions.
2998 * MOCS still can be used though.
2999 * - System agent ggtt writes (i.e. cpu gtt mmaps) already work
3000 * before this patch, i.e. the same uncached + snooping access
3001 * like on gen6/7 seems to be in effect.
3002 * - So this just fixes blitter/render access. Again it looks
3003 * like it's not just uncached access, but uncached + snooping.
3004 * So we can still hold onto all our assumptions wrt cpu
3005 * clflushing on LLC machines.
3006 */
3007 pat = GEN8_PPAT(0, GEN8_PPAT_UC);
3008
Ben Widawskyfbe5d362013-11-04 19:56:49 -08003009 /* XXX: spec defines this as 2 distinct registers. It's unclear if a 64b
3010 * write would work. */
Ville Syrjälä7e435ad2015-09-18 20:03:25 +03003011 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
3012 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08003013}
3014
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003015static void chv_setup_private_ppat(struct drm_i915_private *dev_priv)
3016{
3017 uint64_t pat;
3018
3019 /*
3020 * Map WB on BDW to snooped on CHV.
3021 *
3022 * Only the snoop bit has meaning for CHV, the rest is
3023 * ignored.
3024 *
Ville Syrjäläcf3d2622014-11-14 21:02:44 +02003025 * The hardware will never snoop for certain types of accesses:
3026 * - CPU GTT (GMADR->GGTT->no snoop->memory)
3027 * - PPGTT page tables
3028 * - some other special cycles
3029 *
3030 * As with BDW, we also need to consider the following for GT accesses:
3031 * "For GGTT, there is NO pat_sel[2:0] from the entry,
3032 * so RTL will always use the value corresponding to
3033 * pat_sel = 000".
3034 * Which means we must set the snoop bit in PAT entry 0
3035 * in order to keep the global status page working.
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003036 */
3037 pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
3038 GEN8_PPAT(1, 0) |
3039 GEN8_PPAT(2, 0) |
3040 GEN8_PPAT(3, 0) |
3041 GEN8_PPAT(4, CHV_PPAT_SNOOP) |
3042 GEN8_PPAT(5, CHV_PPAT_SNOOP) |
3043 GEN8_PPAT(6, CHV_PPAT_SNOOP) |
3044 GEN8_PPAT(7, CHV_PPAT_SNOOP);
3045
Ville Syrjälä7e435ad2015-09-18 20:03:25 +03003046 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
3047 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003048}
3049
Joonas Lahtinend507d732016-03-18 10:42:58 +02003050static int gen8_gmch_probe(struct i915_ggtt *ggtt)
Ben Widawsky63340132013-11-04 19:32:22 -08003051{
Joonas Lahtinend507d732016-03-18 10:42:58 +02003052 struct drm_device *dev = ggtt->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003053 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawsky63340132013-11-04 19:32:22 -08003054 u16 snb_gmch_ctl;
3055 int ret;
3056
3057 /* TODO: We're not aware of mappable constraints on gen8 yet */
Joonas Lahtinend507d732016-03-18 10:42:58 +02003058 ggtt->mappable_base = pci_resource_start(dev->pdev, 2);
3059 ggtt->mappable_end = pci_resource_len(dev->pdev, 2);
Ben Widawsky63340132013-11-04 19:32:22 -08003060
3061 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(39)))
3062 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(39));
3063
3064 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
3065
Damien Lespiau66375012014-01-09 18:02:46 +00003066 if (INTEL_INFO(dev)->gen >= 9) {
Joonas Lahtinend507d732016-03-18 10:42:58 +02003067 ggtt->stolen_size = gen9_get_stolen_size(snb_gmch_ctl);
3068 ggtt->size = gen8_get_total_gtt_size(snb_gmch_ctl);
Damien Lespiau66375012014-01-09 18:02:46 +00003069 } else if (IS_CHERRYVIEW(dev)) {
Joonas Lahtinend507d732016-03-18 10:42:58 +02003070 ggtt->stolen_size = chv_get_stolen_size(snb_gmch_ctl);
3071 ggtt->size = chv_get_total_gtt_size(snb_gmch_ctl);
Damien Lespiaud7f25f22014-05-08 22:19:40 +03003072 } else {
Joonas Lahtinend507d732016-03-18 10:42:58 +02003073 ggtt->stolen_size = gen8_get_stolen_size(snb_gmch_ctl);
3074 ggtt->size = gen8_get_total_gtt_size(snb_gmch_ctl);
Damien Lespiaud7f25f22014-05-08 22:19:40 +03003075 }
Ben Widawsky63340132013-11-04 19:32:22 -08003076
Joonas Lahtinend507d732016-03-18 10:42:58 +02003077 ggtt->base.total = (ggtt->size / sizeof(gen8_pte_t)) << PAGE_SHIFT;
Ben Widawsky63340132013-11-04 19:32:22 -08003078
Sumit Singh5a4e33a2015-03-17 11:39:31 +02003079 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003080 chv_setup_private_ppat(dev_priv);
3081 else
3082 bdw_setup_private_ppat(dev_priv);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08003083
Joonas Lahtinend507d732016-03-18 10:42:58 +02003084 ret = ggtt_probe_common(dev, ggtt->size);
Ben Widawsky63340132013-11-04 19:32:22 -08003085
Joonas Lahtinend507d732016-03-18 10:42:58 +02003086 ggtt->base.clear_range = gen8_ggtt_clear_range;
Chris Wilsonc1403302015-11-18 15:19:39 +00003087 if (IS_CHERRYVIEW(dev_priv))
Joonas Lahtinend507d732016-03-18 10:42:58 +02003088 ggtt->base.insert_entries = gen8_ggtt_insert_entries__BKL;
3089 else
3090 ggtt->base.insert_entries = gen8_ggtt_insert_entries;
3091 ggtt->base.bind_vma = ggtt_bind_vma;
3092 ggtt->base.unbind_vma = ggtt_unbind_vma;
3093
Ben Widawsky63340132013-11-04 19:32:22 -08003094 return ret;
3095}
3096
Joonas Lahtinend507d732016-03-18 10:42:58 +02003097static int gen6_gmch_probe(struct i915_ggtt *ggtt)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003098{
Joonas Lahtinend507d732016-03-18 10:42:58 +02003099 struct drm_device *dev = ggtt->base.dev;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003100 u16 snb_gmch_ctl;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003101 int ret;
3102
Joonas Lahtinend507d732016-03-18 10:42:58 +02003103 ggtt->mappable_base = pci_resource_start(dev->pdev, 2);
3104 ggtt->mappable_end = pci_resource_len(dev->pdev, 2);
Ben Widawsky41907dd2013-02-08 11:32:47 -08003105
Ben Widawskybaa09f52013-01-24 13:49:57 -08003106 /* 64/512MB is the current min/max we actually know of, but this is just
3107 * a coarse sanity check.
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003108 */
Joonas Lahtinend507d732016-03-18 10:42:58 +02003109 if ((ggtt->mappable_end < (64<<20) || (ggtt->mappable_end > (512<<20)))) {
3110 DRM_ERROR("Unknown GMADR size (%llx)\n", ggtt->mappable_end);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003111 return -ENXIO;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003112 }
3113
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003114 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(40)))
3115 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(40));
Ben Widawskybaa09f52013-01-24 13:49:57 -08003116 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003117
Joonas Lahtinend507d732016-03-18 10:42:58 +02003118 ggtt->stolen_size = gen6_get_stolen_size(snb_gmch_ctl);
3119 ggtt->size = gen6_get_total_gtt_size(snb_gmch_ctl);
3120 ggtt->base.total = (ggtt->size / sizeof(gen6_pte_t)) << PAGE_SHIFT;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003121
Joonas Lahtinend507d732016-03-18 10:42:58 +02003122 ret = ggtt_probe_common(dev, ggtt->size);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003123
Joonas Lahtinend507d732016-03-18 10:42:58 +02003124 ggtt->base.clear_range = gen6_ggtt_clear_range;
3125 ggtt->base.insert_entries = gen6_ggtt_insert_entries;
3126 ggtt->base.bind_vma = ggtt_bind_vma;
3127 ggtt->base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003128
3129 return ret;
3130}
3131
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003132static void gen6_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003133{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003134 struct i915_ggtt *ggtt = container_of(vm, struct i915_ggtt, base);
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003135
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003136 iounmap(ggtt->gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03003137 free_scratch_page(vm->dev, vm->scratch_page);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003138}
3139
Joonas Lahtinend507d732016-03-18 10:42:58 +02003140static int i915_gmch_probe(struct i915_ggtt *ggtt)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003141{
Joonas Lahtinend507d732016-03-18 10:42:58 +02003142 struct drm_device *dev = ggtt->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003143 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003144 int ret;
3145
Ben Widawskybaa09f52013-01-24 13:49:57 -08003146 ret = intel_gmch_probe(dev_priv->bridge_dev, dev_priv->dev->pdev, NULL);
3147 if (!ret) {
3148 DRM_ERROR("failed to set up gmch\n");
3149 return -EIO;
3150 }
3151
Joonas Lahtinend507d732016-03-18 10:42:58 +02003152 intel_gtt_get(&ggtt->base.total, &ggtt->stolen_size,
3153 &ggtt->mappable_base, &ggtt->mappable_end);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003154
Joonas Lahtinend507d732016-03-18 10:42:58 +02003155 ggtt->do_idle_maps = needs_idle_maps(dev_priv->dev);
3156 ggtt->base.insert_entries = i915_ggtt_insert_entries;
3157 ggtt->base.clear_range = i915_ggtt_clear_range;
3158 ggtt->base.bind_vma = ggtt_bind_vma;
3159 ggtt->base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003160
Joonas Lahtinend507d732016-03-18 10:42:58 +02003161 if (unlikely(ggtt->do_idle_maps))
Chris Wilsonc0a7f812013-12-30 12:16:15 +00003162 DRM_INFO("applying Ironlake quirks for intel_iommu\n");
3163
Ben Widawskybaa09f52013-01-24 13:49:57 -08003164 return 0;
3165}
3166
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003167static void i915_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003168{
3169 intel_gmch_remove();
3170}
3171
Joonas Lahtinend85489d2016-03-24 16:47:46 +02003172/**
3173 * i915_ggtt_init_hw - Initialize GGTT hardware
3174 * @dev: DRM device
3175 */
3176int i915_ggtt_init_hw(struct drm_device *dev)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003177{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003178 struct drm_i915_private *dev_priv = to_i915(dev);
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003179 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003180 int ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003181
Ben Widawskybaa09f52013-01-24 13:49:57 -08003182 if (INTEL_INFO(dev)->gen <= 5) {
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003183 ggtt->probe = i915_gmch_probe;
3184 ggtt->base.cleanup = i915_gmch_remove;
Ben Widawsky63340132013-11-04 19:32:22 -08003185 } else if (INTEL_INFO(dev)->gen < 8) {
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003186 ggtt->probe = gen6_gmch_probe;
3187 ggtt->base.cleanup = gen6_gmch_remove;
Mika Kuoppala3accaf72016-04-13 17:26:43 +03003188
3189 if (HAS_EDRAM(dev))
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003190 ggtt->base.pte_encode = iris_pte_encode;
Ben Widawsky4d15c142013-07-04 11:02:06 -07003191 else if (IS_HASWELL(dev))
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003192 ggtt->base.pte_encode = hsw_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003193 else if (IS_VALLEYVIEW(dev))
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003194 ggtt->base.pte_encode = byt_pte_encode;
Chris Wilson350ec882013-08-06 13:17:02 +01003195 else if (INTEL_INFO(dev)->gen >= 7)
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003196 ggtt->base.pte_encode = ivb_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003197 else
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003198 ggtt->base.pte_encode = snb_pte_encode;
Ben Widawsky63340132013-11-04 19:32:22 -08003199 } else {
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003200 ggtt->probe = gen8_gmch_probe;
3201 ggtt->base.cleanup = gen6_gmch_remove;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003202 }
3203
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003204 ggtt->base.dev = dev;
3205 ggtt->base.is_ggtt = true;
Mika Kuoppalac114f762015-06-25 18:35:13 +03003206
Joonas Lahtinend507d732016-03-18 10:42:58 +02003207 ret = ggtt->probe(ggtt);
Ben Widawskya54c0c22013-01-24 14:45:00 -08003208 if (ret)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003209 return ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003210
Chris Wilsonc890e2d2016-03-18 10:42:59 +02003211 if ((ggtt->base.total - 1) >> 32) {
3212 DRM_ERROR("We never expected a Global GTT with more than 32bits"
3213 "of address space! Found %lldM!\n",
3214 ggtt->base.total >> 20);
3215 ggtt->base.total = 1ULL << 32;
3216 ggtt->mappable_end = min(ggtt->mappable_end, ggtt->base.total);
3217 }
3218
Imre Deaka4eba472016-01-19 15:26:32 +02003219 /*
3220 * Initialise stolen early so that we may reserve preallocated
3221 * objects for the BIOS to KMS transition.
3222 */
3223 ret = i915_gem_init_stolen(dev);
3224 if (ret)
3225 goto out_gtt_cleanup;
3226
Ben Widawskybaa09f52013-01-24 13:49:57 -08003227 /* GMADR is the PCI mmio aperture into the global GTT. */
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003228 DRM_INFO("Memory usable by graphics device = %lluM\n",
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003229 ggtt->base.total >> 20);
3230 DRM_DEBUG_DRIVER("GMADR size = %lldM\n", ggtt->mappable_end >> 20);
3231 DRM_DEBUG_DRIVER("GTT stolen size = %zdM\n", ggtt->stolen_size >> 20);
Daniel Vetter5db6c732014-03-31 16:23:04 +02003232#ifdef CONFIG_INTEL_IOMMU
3233 if (intel_iommu_gfx_mapped)
3234 DRM_INFO("VT-d active for gfx access\n");
3235#endif
Daniel Vettercfa7c862014-04-29 11:53:58 +02003236 /*
3237 * i915.enable_ppgtt is read-only, so do an early pass to validate the
3238 * user's requested state against the hardware/driver capabilities. We
3239 * do this now so that we can print out any log messages once rather
3240 * than every time we check intel_enable_ppgtt().
3241 */
3242 i915.enable_ppgtt = sanitize_enable_ppgtt(dev, i915.enable_ppgtt);
3243 DRM_DEBUG_DRIVER("ppgtt mode: %i\n", i915.enable_ppgtt);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08003244
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003245 return 0;
Imre Deaka4eba472016-01-19 15:26:32 +02003246
3247out_gtt_cleanup:
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003248 ggtt->base.cleanup(&ggtt->base);
Imre Deaka4eba472016-01-19 15:26:32 +02003249
3250 return ret;
Daniel Vetter644ec022012-03-26 09:45:40 +02003251}
Ben Widawsky6f65e292013-12-06 14:10:56 -08003252
Daniel Vetterfa423312015-04-14 17:35:23 +02003253void i915_gem_restore_gtt_mappings(struct drm_device *dev)
3254{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003255 struct drm_i915_private *dev_priv = to_i915(dev);
3256 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Daniel Vetterfa423312015-04-14 17:35:23 +02003257 struct drm_i915_gem_object *obj;
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003258 struct i915_vma *vma;
3259 bool flush;
Daniel Vetterfa423312015-04-14 17:35:23 +02003260
3261 i915_check_and_clear_faults(dev);
3262
3263 /* First fill our portion of the GTT with scratch pages */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003264 ggtt->base.clear_range(&ggtt->base, ggtt->base.start, ggtt->base.total,
3265 true);
Daniel Vetterfa423312015-04-14 17:35:23 +02003266
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003267 /* Cache flush objects bound into GGTT and rebind them. */
Daniel Vetterfa423312015-04-14 17:35:23 +02003268 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003269 flush = false;
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003270 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003271 if (vma->vm != &ggtt->base)
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003272 continue;
Daniel Vetterfa423312015-04-14 17:35:23 +02003273
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003274 WARN_ON(i915_vma_bind(vma, obj->cache_level,
3275 PIN_UPDATE));
3276
3277 flush = true;
3278 }
3279
3280 if (flush)
3281 i915_gem_clflush_object(obj, obj->pin_display);
Daniel Vetterfa423312015-04-14 17:35:23 +02003282 }
3283
Daniel Vetterfa423312015-04-14 17:35:23 +02003284 if (INTEL_INFO(dev)->gen >= 8) {
3285 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
3286 chv_setup_private_ppat(dev_priv);
3287 else
3288 bdw_setup_private_ppat(dev_priv);
3289
3290 return;
3291 }
3292
3293 if (USES_PPGTT(dev)) {
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003294 struct i915_address_space *vm;
3295
Daniel Vetterfa423312015-04-14 17:35:23 +02003296 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
3297 /* TODO: Perhaps it shouldn't be gen6 specific */
3298
Joonas Lahtinene5716f52016-04-07 11:08:03 +03003299 struct i915_hw_ppgtt *ppgtt;
Daniel Vetterfa423312015-04-14 17:35:23 +02003300
Joonas Lahtinene5716f52016-04-07 11:08:03 +03003301 if (vm->is_ggtt)
Daniel Vetterfa423312015-04-14 17:35:23 +02003302 ppgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinene5716f52016-04-07 11:08:03 +03003303 else
3304 ppgtt = i915_vm_to_ppgtt(vm);
Daniel Vetterfa423312015-04-14 17:35:23 +02003305
3306 gen6_write_page_range(dev_priv, &ppgtt->pd,
3307 0, ppgtt->base.total);
3308 }
3309 }
3310
3311 i915_ggtt_flush(dev_priv);
3312}
3313
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003314static struct i915_vma *
3315__i915_gem_vma_create(struct drm_i915_gem_object *obj,
3316 struct i915_address_space *vm,
3317 const struct i915_ggtt_view *ggtt_view)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003318{
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003319 struct i915_vma *vma;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003320
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003321 if (WARN_ON(i915_is_ggtt(vm) != !!ggtt_view))
3322 return ERR_PTR(-EINVAL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01003323
3324 vma = kmem_cache_zalloc(to_i915(obj->base.dev)->vmas, GFP_KERNEL);
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003325 if (vma == NULL)
3326 return ERR_PTR(-ENOMEM);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003327
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003328 INIT_LIST_HEAD(&vma->vm_link);
3329 INIT_LIST_HEAD(&vma->obj_link);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003330 INIT_LIST_HEAD(&vma->exec_list);
3331 vma->vm = vm;
3332 vma->obj = obj;
Chris Wilson596c5922016-02-26 11:03:20 +00003333 vma->is_ggtt = i915_is_ggtt(vm);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003334
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003335 if (i915_is_ggtt(vm))
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003336 vma->ggtt_view = *ggtt_view;
Chris Wilson596c5922016-02-26 11:03:20 +00003337 else
3338 i915_ppgtt_get(i915_vm_to_ppgtt(vm));
Ben Widawsky6f65e292013-12-06 14:10:56 -08003339
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003340 list_add_tail(&vma->obj_link, &obj->vma_list);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003341
3342 return vma;
3343}
3344
3345struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003346i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
3347 struct i915_address_space *vm)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003348{
3349 struct i915_vma *vma;
3350
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003351 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003352 if (!vma)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003353 vma = __i915_gem_vma_create(obj, vm,
3354 i915_is_ggtt(vm) ? &i915_ggtt_view_normal : NULL);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003355
3356 return vma;
3357}
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003358
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003359struct i915_vma *
3360i915_gem_obj_lookup_or_create_ggtt_vma(struct drm_i915_gem_object *obj,
3361 const struct i915_ggtt_view *view)
3362{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003363 struct drm_device *dev = obj->base.dev;
3364 struct drm_i915_private *dev_priv = to_i915(dev);
3365 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Matthew Auldade7daa2016-03-24 15:54:20 +00003366 struct i915_vma *vma = i915_gem_obj_to_ggtt_view(obj, view);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003367
3368 if (!vma)
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003369 vma = __i915_gem_vma_create(obj, &ggtt->base, view);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003370
3371 return vma;
3372
3373}
3374
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003375static struct scatterlist *
Ville Syrjälä2d7f3bd2016-01-14 15:22:11 +02003376rotate_pages(const dma_addr_t *in, unsigned int offset,
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003377 unsigned int width, unsigned int height,
Ville Syrjälä87130252016-01-20 21:05:23 +02003378 unsigned int stride,
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003379 struct sg_table *st, struct scatterlist *sg)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003380{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003381 unsigned int column, row;
3382 unsigned int src_idx;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003383
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003384 for (column = 0; column < width; column++) {
Ville Syrjälä87130252016-01-20 21:05:23 +02003385 src_idx = stride * (height - 1) + column;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003386 for (row = 0; row < height; row++) {
3387 st->nents++;
3388 /* We don't need the pages, but need to initialize
3389 * the entries so the sg list can be happily traversed.
3390 * The only thing we need are DMA addresses.
3391 */
3392 sg_set_page(sg, NULL, PAGE_SIZE, 0);
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003393 sg_dma_address(sg) = in[offset + src_idx];
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003394 sg_dma_len(sg) = PAGE_SIZE;
3395 sg = sg_next(sg);
Ville Syrjälä87130252016-01-20 21:05:23 +02003396 src_idx -= stride;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003397 }
3398 }
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003399
3400 return sg;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003401}
3402
3403static struct sg_table *
Ville Syrjälä11d23e62016-01-20 21:05:24 +02003404intel_rotate_fb_obj_pages(struct intel_rotation_info *rot_info,
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003405 struct drm_i915_gem_object *obj)
3406{
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003407 unsigned int size_pages = rot_info->plane[0].width * rot_info->plane[0].height;
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003408 unsigned int size_pages_uv;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003409 struct sg_page_iter sg_iter;
3410 unsigned long i;
3411 dma_addr_t *page_addr_list;
3412 struct sg_table *st;
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003413 unsigned int uv_start_page;
3414 struct scatterlist *sg;
Tvrtko Ursulin1d00dad2015-03-25 10:15:26 +00003415 int ret = -ENOMEM;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003416
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003417 /* Allocate a temporary list of source pages for random access. */
Chris Wilsonf2a85e12016-04-08 12:11:13 +01003418 page_addr_list = drm_malloc_gfp(obj->base.size / PAGE_SIZE,
3419 sizeof(dma_addr_t),
3420 GFP_TEMPORARY);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003421 if (!page_addr_list)
3422 return ERR_PTR(ret);
3423
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003424 /* Account for UV plane with NV12. */
3425 if (rot_info->pixel_format == DRM_FORMAT_NV12)
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003426 size_pages_uv = rot_info->plane[1].width * rot_info->plane[1].height;
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003427 else
3428 size_pages_uv = 0;
3429
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003430 /* Allocate target SG list. */
3431 st = kmalloc(sizeof(*st), GFP_KERNEL);
3432 if (!st)
3433 goto err_st_alloc;
3434
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003435 ret = sg_alloc_table(st, size_pages + size_pages_uv, GFP_KERNEL);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003436 if (ret)
3437 goto err_sg_alloc;
3438
3439 /* Populate source page list from the object. */
3440 i = 0;
3441 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
3442 page_addr_list[i] = sg_page_iter_dma_address(&sg_iter);
3443 i++;
3444 }
3445
Ville Syrjälä11f20322016-02-15 22:54:46 +02003446 st->nents = 0;
3447 sg = st->sgl;
3448
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003449 /* Rotate the pages. */
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003450 sg = rotate_pages(page_addr_list, 0,
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003451 rot_info->plane[0].width, rot_info->plane[0].height,
3452 rot_info->plane[0].width,
Ville Syrjälä11f20322016-02-15 22:54:46 +02003453 st, sg);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003454
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003455 /* Append the UV plane if NV12. */
3456 if (rot_info->pixel_format == DRM_FORMAT_NV12) {
3457 uv_start_page = size_pages;
3458
3459 /* Check for tile-row un-alignment. */
3460 if (offset_in_page(rot_info->uv_offset))
3461 uv_start_page--;
3462
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01003463 rot_info->uv_start_page = uv_start_page;
3464
Ville Syrjälä11f20322016-02-15 22:54:46 +02003465 sg = rotate_pages(page_addr_list, rot_info->uv_start_page,
3466 rot_info->plane[1].width, rot_info->plane[1].height,
3467 rot_info->plane[1].width,
3468 st, sg);
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003469 }
3470
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003471 DRM_DEBUG_KMS("Created rotated page mapping for object size %zu (%ux%u tiles, %u pages (%u plane 0)).\n",
3472 obj->base.size, rot_info->plane[0].width,
3473 rot_info->plane[0].height, size_pages + size_pages_uv,
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003474 size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003475
3476 drm_free_large(page_addr_list);
3477
3478 return st;
3479
3480err_sg_alloc:
3481 kfree(st);
3482err_st_alloc:
3483 drm_free_large(page_addr_list);
3484
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003485 DRM_DEBUG_KMS("Failed to create rotated mapping for object size %zu! (%d) (%ux%u tiles, %u pages (%u plane 0))\n",
3486 obj->base.size, ret, rot_info->plane[0].width,
3487 rot_info->plane[0].height, size_pages + size_pages_uv,
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003488 size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003489 return ERR_PTR(ret);
3490}
3491
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003492static struct sg_table *
3493intel_partial_pages(const struct i915_ggtt_view *view,
3494 struct drm_i915_gem_object *obj)
3495{
3496 struct sg_table *st;
3497 struct scatterlist *sg;
3498 struct sg_page_iter obj_sg_iter;
3499 int ret = -ENOMEM;
3500
3501 st = kmalloc(sizeof(*st), GFP_KERNEL);
3502 if (!st)
3503 goto err_st_alloc;
3504
3505 ret = sg_alloc_table(st, view->params.partial.size, GFP_KERNEL);
3506 if (ret)
3507 goto err_sg_alloc;
3508
3509 sg = st->sgl;
3510 st->nents = 0;
3511 for_each_sg_page(obj->pages->sgl, &obj_sg_iter, obj->pages->nents,
3512 view->params.partial.offset)
3513 {
3514 if (st->nents >= view->params.partial.size)
3515 break;
3516
3517 sg_set_page(sg, NULL, PAGE_SIZE, 0);
3518 sg_dma_address(sg) = sg_page_iter_dma_address(&obj_sg_iter);
3519 sg_dma_len(sg) = PAGE_SIZE;
3520
3521 sg = sg_next(sg);
3522 st->nents++;
3523 }
3524
3525 return st;
3526
3527err_sg_alloc:
3528 kfree(st);
3529err_st_alloc:
3530 return ERR_PTR(ret);
3531}
3532
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003533static int
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003534i915_get_ggtt_vma_pages(struct i915_vma *vma)
3535{
3536 int ret = 0;
3537
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003538 if (vma->ggtt_view.pages)
3539 return 0;
3540
3541 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
3542 vma->ggtt_view.pages = vma->obj->pages;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003543 else if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED)
3544 vma->ggtt_view.pages =
Ville Syrjälä11d23e62016-01-20 21:05:24 +02003545 intel_rotate_fb_obj_pages(&vma->ggtt_view.params.rotated, vma->obj);
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003546 else if (vma->ggtt_view.type == I915_GGTT_VIEW_PARTIAL)
3547 vma->ggtt_view.pages =
3548 intel_partial_pages(&vma->ggtt_view, vma->obj);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003549 else
3550 WARN_ONCE(1, "GGTT view %u not implemented!\n",
3551 vma->ggtt_view.type);
3552
3553 if (!vma->ggtt_view.pages) {
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003554 DRM_ERROR("Failed to get pages for GGTT view type %u!\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003555 vma->ggtt_view.type);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003556 ret = -EINVAL;
3557 } else if (IS_ERR(vma->ggtt_view.pages)) {
3558 ret = PTR_ERR(vma->ggtt_view.pages);
3559 vma->ggtt_view.pages = NULL;
3560 DRM_ERROR("Failed to get pages for VMA view type %u (%d)!\n",
3561 vma->ggtt_view.type, ret);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003562 }
3563
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003564 return ret;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003565}
3566
3567/**
3568 * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
3569 * @vma: VMA to map
3570 * @cache_level: mapping cache level
3571 * @flags: flags like global or local mapping
3572 *
3573 * DMA addresses are taken from the scatter-gather table of this object (or of
3574 * this VMA in case of non-default GGTT views) and PTE entries set up.
3575 * Note that DMA addresses are also the only part of the SG table we care about.
3576 */
3577int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
3578 u32 flags)
3579{
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003580 int ret;
3581 u32 bind_flags;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003582
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003583 if (WARN_ON(flags == 0))
3584 return -EINVAL;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003585
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003586 bind_flags = 0;
Daniel Vetter08755462015-04-20 09:04:05 -07003587 if (flags & PIN_GLOBAL)
3588 bind_flags |= GLOBAL_BIND;
3589 if (flags & PIN_USER)
3590 bind_flags |= LOCAL_BIND;
3591
3592 if (flags & PIN_UPDATE)
3593 bind_flags |= vma->bound;
3594 else
3595 bind_flags &= ~vma->bound;
3596
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003597 if (bind_flags == 0)
3598 return 0;
3599
3600 if (vma->bound == 0 && vma->vm->allocate_va_range) {
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003601 /* XXX: i915_vma_pin() will fix this +- hack */
3602 vma->pin_count++;
Chris Wilson596c5922016-02-26 11:03:20 +00003603 trace_i915_va_alloc(vma);
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003604 ret = vma->vm->allocate_va_range(vma->vm,
3605 vma->node.start,
3606 vma->node.size);
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003607 vma->pin_count--;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003608 if (ret)
3609 return ret;
3610 }
3611
3612 ret = vma->vm->bind_vma(vma, cache_level, bind_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003613 if (ret)
3614 return ret;
Daniel Vetter08755462015-04-20 09:04:05 -07003615
3616 vma->bound |= bind_flags;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003617
3618 return 0;
3619}
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003620
3621/**
3622 * i915_ggtt_view_size - Get the size of a GGTT view.
3623 * @obj: Object the view is of.
3624 * @view: The view in question.
3625 *
3626 * @return The size of the GGTT view in bytes.
3627 */
3628size_t
3629i915_ggtt_view_size(struct drm_i915_gem_object *obj,
3630 const struct i915_ggtt_view *view)
3631{
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003632 if (view->type == I915_GGTT_VIEW_NORMAL) {
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003633 return obj->base.size;
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003634 } else if (view->type == I915_GGTT_VIEW_ROTATED) {
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003635 return intel_rotation_info_size(&view->params.rotated) << PAGE_SHIFT;
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003636 } else if (view->type == I915_GGTT_VIEW_PARTIAL) {
3637 return view->params.partial.size << PAGE_SHIFT;
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003638 } else {
3639 WARN_ONCE(1, "GGTT view %u not implemented!\n", view->type);
3640 return obj->base.size;
3641 }
3642}