blob: d284b17af4313f2acdf72f7dad178ee49332017d [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
Chris Wilson0e4ca102016-04-29 13:18:22 +0100113int intel_sanitize_enable_ppgtt(struct drm_device *dev, int enable_ppgtt)
Daniel Vettercfa7c862014-04-29 11:53:58 +0200114{
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
Chris Wilson0e4ca102016-04-29 13:18:22 +0100126 if (!has_aliasing_ppgtt)
127 return 0;
128
Damien Lespiau70ee45e2014-11-14 15:05:59 +0000129 /*
130 * We don't allow disabling PPGTT for gen9+ as it's a requirement for
131 * execlists, the sole mechanism available to submit work.
132 */
Chris Wilson0e4ca102016-04-29 13:18:22 +0100133 if (enable_ppgtt == 0 && INTEL_INFO(dev)->gen < 9)
Daniel Vettercfa7c862014-04-29 11:53:58 +0200134 return 0;
135
136 if (enable_ppgtt == 1)
137 return 1;
138
Chris Wilson1893a712014-09-19 11:56:27 +0100139 if (enable_ppgtt == 2 && has_full_ppgtt)
Daniel Vettercfa7c862014-04-29 11:53:58 +0200140 return 2;
141
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100142 if (enable_ppgtt == 3 && has_full_48bit_ppgtt)
143 return 3;
144
Daniel Vetter93a25a92014-03-06 09:40:43 +0100145#ifdef CONFIG_INTEL_IOMMU
146 /* Disable ppgtt on SNB if VT-d is on. */
147 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped) {
148 DRM_INFO("Disabling PPGTT because VT-d is on\n");
Daniel Vettercfa7c862014-04-29 11:53:58 +0200149 return 0;
Daniel Vetter93a25a92014-03-06 09:40:43 +0100150 }
151#endif
152
Jesse Barnes62942ed2014-06-13 09:28:33 -0700153 /* Early VLV doesn't have this */
Wayne Boyer666a4532015-12-09 12:29:35 -0800154 if (IS_VALLEYVIEW(dev) && dev->pdev->revision < 0xb) {
Jesse Barnes62942ed2014-06-13 09:28:33 -0700155 DRM_DEBUG_DRIVER("disabling PPGTT on pre-B3 step VLV\n");
156 return 0;
157 }
158
Michel Thierry2f82bbd2014-12-15 14:58:00 +0000159 if (INTEL_INFO(dev)->gen >= 8 && i915.enable_execlists)
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100160 return has_full_48bit_ppgtt ? 3 : 2;
Michel Thierry2f82bbd2014-12-15 14:58:00 +0000161 else
162 return has_aliasing_ppgtt ? 1 : 0;
Daniel Vetter93a25a92014-03-06 09:40:43 +0100163}
164
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200165static int ppgtt_bind_vma(struct i915_vma *vma,
166 enum i915_cache_level cache_level,
167 u32 unused)
Daniel Vetter47552652015-04-14 17:35:24 +0200168{
169 u32 pte_flags = 0;
170
171 /* Currently applicable only to VLV */
172 if (vma->obj->gt_ro)
173 pte_flags |= PTE_READ_ONLY;
174
175 vma->vm->insert_entries(vma->vm, vma->obj->pages, vma->node.start,
176 cache_level, pte_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200177
178 return 0;
Daniel Vetter47552652015-04-14 17:35:24 +0200179}
180
181static void ppgtt_unbind_vma(struct i915_vma *vma)
182{
183 vma->vm->clear_range(vma->vm,
184 vma->node.start,
185 vma->obj->base.size,
186 true);
187}
Ben Widawsky6f65e292013-12-06 14:10:56 -0800188
Daniel Vetter2c642b02015-04-14 17:35:26 +0200189static gen8_pte_t gen8_pte_encode(dma_addr_t addr,
190 enum i915_cache_level level,
191 bool valid)
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700192{
Michel Thierry07749ef2015-03-16 16:00:54 +0000193 gen8_pte_t pte = valid ? _PAGE_PRESENT | _PAGE_RW : 0;
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700194 pte |= addr;
Ben Widawsky63c42e52014-04-18 18:04:27 -0300195
196 switch (level) {
197 case I915_CACHE_NONE:
Ben Widawskyfbe5d362013-11-04 19:56:49 -0800198 pte |= PPAT_UNCACHED_INDEX;
Ben Widawsky63c42e52014-04-18 18:04:27 -0300199 break;
200 case I915_CACHE_WT:
201 pte |= PPAT_DISPLAY_ELLC_INDEX;
202 break;
203 default:
204 pte |= PPAT_CACHED_INDEX;
205 break;
206 }
207
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700208 return pte;
209}
210
Mika Kuoppalafe36f552015-06-25 18:35:16 +0300211static gen8_pde_t gen8_pde_encode(const dma_addr_t addr,
212 const enum i915_cache_level level)
Ben Widawskyb1fe6672013-11-04 21:20:14 -0800213{
Michel Thierry07749ef2015-03-16 16:00:54 +0000214 gen8_pde_t pde = _PAGE_PRESENT | _PAGE_RW;
Ben Widawskyb1fe6672013-11-04 21:20:14 -0800215 pde |= addr;
216 if (level != I915_CACHE_NONE)
217 pde |= PPAT_CACHED_PDE_INDEX;
218 else
219 pde |= PPAT_UNCACHED_INDEX;
220 return pde;
221}
222
Michel Thierry762d9932015-07-30 11:05:29 +0100223#define gen8_pdpe_encode gen8_pde_encode
224#define gen8_pml4e_encode gen8_pde_encode
225
Michel Thierry07749ef2015-03-16 16:00:54 +0000226static gen6_pte_t snb_pte_encode(dma_addr_t addr,
227 enum i915_cache_level level,
228 bool valid, u32 unused)
Ben Widawsky54d12522012-09-24 16:44:32 -0700229{
Michel Thierry07749ef2015-03-16 16:00:54 +0000230 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky54d12522012-09-24 16:44:32 -0700231 pte |= GEN6_PTE_ADDR_ENCODE(addr);
Ben Widawskye7210c32012-10-19 09:33:22 -0700232
233 switch (level) {
Chris Wilson350ec882013-08-06 13:17:02 +0100234 case I915_CACHE_L3_LLC:
235 case I915_CACHE_LLC:
236 pte |= GEN6_PTE_CACHE_LLC;
237 break;
238 case I915_CACHE_NONE:
239 pte |= GEN6_PTE_UNCACHED;
240 break;
241 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +0100242 MISSING_CASE(level);
Chris Wilson350ec882013-08-06 13:17:02 +0100243 }
244
245 return pte;
246}
247
Michel Thierry07749ef2015-03-16 16:00:54 +0000248static gen6_pte_t ivb_pte_encode(dma_addr_t addr,
249 enum i915_cache_level level,
250 bool valid, u32 unused)
Chris Wilson350ec882013-08-06 13:17:02 +0100251{
Michel Thierry07749ef2015-03-16 16:00:54 +0000252 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Chris Wilson350ec882013-08-06 13:17:02 +0100253 pte |= GEN6_PTE_ADDR_ENCODE(addr);
254
255 switch (level) {
256 case I915_CACHE_L3_LLC:
257 pte |= GEN7_PTE_CACHE_L3_LLC;
Ben Widawskye7210c32012-10-19 09:33:22 -0700258 break;
259 case I915_CACHE_LLC:
260 pte |= GEN6_PTE_CACHE_LLC;
261 break;
262 case I915_CACHE_NONE:
Kenneth Graunke91197082013-04-22 00:53:51 -0700263 pte |= GEN6_PTE_UNCACHED;
Ben Widawskye7210c32012-10-19 09:33:22 -0700264 break;
265 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +0100266 MISSING_CASE(level);
Ben Widawskye7210c32012-10-19 09:33:22 -0700267 }
268
Ben Widawsky54d12522012-09-24 16:44:32 -0700269 return pte;
270}
271
Michel Thierry07749ef2015-03-16 16:00:54 +0000272static gen6_pte_t byt_pte_encode(dma_addr_t addr,
273 enum i915_cache_level level,
274 bool valid, u32 flags)
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700275{
Michel Thierry07749ef2015-03-16 16:00:54 +0000276 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700277 pte |= GEN6_PTE_ADDR_ENCODE(addr);
278
Akash Goel24f3a8c2014-06-17 10:59:42 +0530279 if (!(flags & PTE_READ_ONLY))
280 pte |= BYT_PTE_WRITEABLE;
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700281
282 if (level != I915_CACHE_NONE)
283 pte |= BYT_PTE_SNOOPED_BY_CPU_CACHES;
284
285 return pte;
286}
287
Michel Thierry07749ef2015-03-16 16:00:54 +0000288static gen6_pte_t hsw_pte_encode(dma_addr_t addr,
289 enum i915_cache_level level,
290 bool valid, u32 unused)
Kenneth Graunke91197082013-04-22 00:53:51 -0700291{
Michel Thierry07749ef2015-03-16 16:00:54 +0000292 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky0d8ff152013-07-04 11:02:03 -0700293 pte |= HSW_PTE_ADDR_ENCODE(addr);
Kenneth Graunke91197082013-04-22 00:53:51 -0700294
295 if (level != I915_CACHE_NONE)
Ben Widawsky87a6b682013-08-04 23:47:29 -0700296 pte |= HSW_WB_LLC_AGE3;
Kenneth Graunke91197082013-04-22 00:53:51 -0700297
298 return pte;
299}
300
Michel Thierry07749ef2015-03-16 16:00:54 +0000301static gen6_pte_t iris_pte_encode(dma_addr_t addr,
302 enum i915_cache_level level,
303 bool valid, u32 unused)
Ben Widawsky4d15c142013-07-04 11:02:06 -0700304{
Michel Thierry07749ef2015-03-16 16:00:54 +0000305 gen6_pte_t pte = valid ? GEN6_PTE_VALID : 0;
Ben Widawsky4d15c142013-07-04 11:02:06 -0700306 pte |= HSW_PTE_ADDR_ENCODE(addr);
307
Chris Wilson651d7942013-08-08 14:41:10 +0100308 switch (level) {
309 case I915_CACHE_NONE:
310 break;
311 case I915_CACHE_WT:
Chris Wilsonc51e9702013-11-22 10:37:53 +0000312 pte |= HSW_WT_ELLC_LLC_AGE3;
Chris Wilson651d7942013-08-08 14:41:10 +0100313 break;
314 default:
Chris Wilsonc51e9702013-11-22 10:37:53 +0000315 pte |= HSW_WB_ELLC_LLC_AGE3;
Chris Wilson651d7942013-08-08 14:41:10 +0100316 break;
317 }
Ben Widawsky4d15c142013-07-04 11:02:06 -0700318
319 return pte;
320}
321
Mika Kuoppalac114f762015-06-25 18:35:13 +0300322static int __setup_page_dma(struct drm_device *dev,
323 struct i915_page_dma *p, gfp_t flags)
Ben Widawsky678d96f2015-03-16 16:00:56 +0000324{
325 struct device *device = &dev->pdev->dev;
326
Mika Kuoppalac114f762015-06-25 18:35:13 +0300327 p->page = alloc_page(flags);
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300328 if (!p->page)
Michel Thierry1266cdb2015-03-24 17:06:33 +0000329 return -ENOMEM;
330
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300331 p->daddr = dma_map_page(device,
332 p->page, 0, 4096, PCI_DMA_BIDIRECTIONAL);
333
334 if (dma_mapping_error(device, p->daddr)) {
335 __free_page(p->page);
336 return -EINVAL;
337 }
338
Michel Thierry1266cdb2015-03-24 17:06:33 +0000339 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000340}
341
Mika Kuoppalac114f762015-06-25 18:35:13 +0300342static int setup_page_dma(struct drm_device *dev, struct i915_page_dma *p)
343{
344 return __setup_page_dma(dev, p, GFP_KERNEL);
345}
346
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300347static void cleanup_page_dma(struct drm_device *dev, struct i915_page_dma *p)
348{
349 if (WARN_ON(!p->page))
350 return;
351
352 dma_unmap_page(&dev->pdev->dev, p->daddr, 4096, PCI_DMA_BIDIRECTIONAL);
353 __free_page(p->page);
354 memset(p, 0, sizeof(*p));
355}
356
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300357static void *kmap_page_dma(struct i915_page_dma *p)
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300358{
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300359 return kmap_atomic(p->page);
360}
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300361
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300362/* We use the flushing unmap only with ppgtt structures:
363 * page directories, page tables and scratch pages.
364 */
365static void kunmap_page_dma(struct drm_device *dev, void *vaddr)
366{
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300367 /* There are only few exceptions for gen >=6. chv and bxt.
368 * And we are not sure about the latter so play safe for now.
369 */
370 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
371 drm_clflush_virt_range(vaddr, PAGE_SIZE);
372
373 kunmap_atomic(vaddr);
374}
375
Mika Kuoppala567047b2015-06-25 18:35:12 +0300376#define kmap_px(px) kmap_page_dma(px_base(px))
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300377#define kunmap_px(ppgtt, vaddr) kunmap_page_dma((ppgtt)->base.dev, (vaddr))
378
Mika Kuoppala567047b2015-06-25 18:35:12 +0300379#define setup_px(dev, px) setup_page_dma((dev), px_base(px))
380#define cleanup_px(dev, px) cleanup_page_dma((dev), px_base(px))
381#define fill_px(dev, px, v) fill_page_dma((dev), px_base(px), (v))
382#define fill32_px(dev, px, v) fill_page_dma_32((dev), px_base(px), (v))
383
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300384static void fill_page_dma(struct drm_device *dev, struct i915_page_dma *p,
385 const uint64_t val)
386{
387 int i;
388 uint64_t * const vaddr = kmap_page_dma(p);
389
390 for (i = 0; i < 512; i++)
391 vaddr[i] = val;
392
393 kunmap_page_dma(dev, vaddr);
394}
395
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300396static void fill_page_dma_32(struct drm_device *dev, struct i915_page_dma *p,
397 const uint32_t val32)
398{
399 uint64_t v = val32;
400
401 v = v << 32 | val32;
402
403 fill_page_dma(dev, p, v);
404}
405
Mika Kuoppala4ad2af12015-06-30 18:16:39 +0300406static struct i915_page_scratch *alloc_scratch_page(struct drm_device *dev)
407{
408 struct i915_page_scratch *sp;
409 int ret;
410
411 sp = kzalloc(sizeof(*sp), GFP_KERNEL);
412 if (sp == NULL)
413 return ERR_PTR(-ENOMEM);
414
415 ret = __setup_page_dma(dev, px_base(sp), GFP_DMA32 | __GFP_ZERO);
416 if (ret) {
417 kfree(sp);
418 return ERR_PTR(ret);
419 }
420
421 set_pages_uc(px_page(sp), 1);
422
423 return sp;
424}
425
426static void free_scratch_page(struct drm_device *dev,
427 struct i915_page_scratch *sp)
428{
429 set_pages_wb(px_page(sp), 1);
430
431 cleanup_px(dev, sp);
432 kfree(sp);
433}
434
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +0300435static struct i915_page_table *alloc_pt(struct drm_device *dev)
Ben Widawsky06fda602015-02-24 16:22:36 +0000436{
Michel Thierryec565b32015-04-08 12:13:23 +0100437 struct i915_page_table *pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000438 const size_t count = INTEL_INFO(dev)->gen >= 8 ?
439 GEN8_PTES : GEN6_PTES;
440 int ret = -ENOMEM;
Ben Widawsky06fda602015-02-24 16:22:36 +0000441
442 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
443 if (!pt)
444 return ERR_PTR(-ENOMEM);
445
Ben Widawsky678d96f2015-03-16 16:00:56 +0000446 pt->used_ptes = kcalloc(BITS_TO_LONGS(count), sizeof(*pt->used_ptes),
447 GFP_KERNEL);
448
449 if (!pt->used_ptes)
450 goto fail_bitmap;
451
Mika Kuoppala567047b2015-06-25 18:35:12 +0300452 ret = setup_px(dev, pt);
Ben Widawsky678d96f2015-03-16 16:00:56 +0000453 if (ret)
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300454 goto fail_page_m;
Ben Widawsky06fda602015-02-24 16:22:36 +0000455
456 return pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000457
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300458fail_page_m:
Ben Widawsky678d96f2015-03-16 16:00:56 +0000459 kfree(pt->used_ptes);
460fail_bitmap:
461 kfree(pt);
462
463 return ERR_PTR(ret);
Ben Widawsky06fda602015-02-24 16:22:36 +0000464}
465
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300466static void free_pt(struct drm_device *dev, struct i915_page_table *pt)
Ben Widawsky06fda602015-02-24 16:22:36 +0000467{
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300468 cleanup_px(dev, pt);
469 kfree(pt->used_ptes);
470 kfree(pt);
471}
472
473static void gen8_initialize_pt(struct i915_address_space *vm,
474 struct i915_page_table *pt)
475{
476 gen8_pte_t scratch_pte;
477
478 scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
479 I915_CACHE_LLC, true);
480
481 fill_px(vm->dev, pt, scratch_pte);
482}
483
484static void gen6_initialize_pt(struct i915_address_space *vm,
485 struct i915_page_table *pt)
486{
487 gen6_pte_t scratch_pte;
488
489 WARN_ON(px_dma(vm->scratch_page) == 0);
490
491 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
492 I915_CACHE_LLC, true, 0);
493
494 fill32_px(vm->dev, pt, scratch_pte);
Ben Widawsky06fda602015-02-24 16:22:36 +0000495}
496
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +0300497static struct i915_page_directory *alloc_pd(struct drm_device *dev)
Ben Widawsky06fda602015-02-24 16:22:36 +0000498{
Michel Thierryec565b32015-04-08 12:13:23 +0100499 struct i915_page_directory *pd;
Michel Thierry33c88192015-04-08 12:13:33 +0100500 int ret = -ENOMEM;
Ben Widawsky06fda602015-02-24 16:22:36 +0000501
502 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
503 if (!pd)
504 return ERR_PTR(-ENOMEM);
505
Michel Thierry33c88192015-04-08 12:13:33 +0100506 pd->used_pdes = kcalloc(BITS_TO_LONGS(I915_PDES),
507 sizeof(*pd->used_pdes), GFP_KERNEL);
508 if (!pd->used_pdes)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300509 goto fail_bitmap;
Michel Thierry33c88192015-04-08 12:13:33 +0100510
Mika Kuoppala567047b2015-06-25 18:35:12 +0300511 ret = setup_px(dev, pd);
Michel Thierry33c88192015-04-08 12:13:33 +0100512 if (ret)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300513 goto fail_page_m;
Michel Thierrye5815a22015-04-08 12:13:32 +0100514
Ben Widawsky06fda602015-02-24 16:22:36 +0000515 return pd;
Michel Thierry33c88192015-04-08 12:13:33 +0100516
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300517fail_page_m:
Michel Thierry33c88192015-04-08 12:13:33 +0100518 kfree(pd->used_pdes);
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300519fail_bitmap:
Michel Thierry33c88192015-04-08 12:13:33 +0100520 kfree(pd);
521
522 return ERR_PTR(ret);
Ben Widawsky06fda602015-02-24 16:22:36 +0000523}
524
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300525static void free_pd(struct drm_device *dev, struct i915_page_directory *pd)
526{
527 if (px_page(pd)) {
528 cleanup_px(dev, pd);
529 kfree(pd->used_pdes);
530 kfree(pd);
531 }
532}
533
534static void gen8_initialize_pd(struct i915_address_space *vm,
535 struct i915_page_directory *pd)
536{
537 gen8_pde_t scratch_pde;
538
539 scratch_pde = gen8_pde_encode(px_dma(vm->scratch_pt), I915_CACHE_LLC);
540
541 fill_px(vm->dev, pd, scratch_pde);
542}
543
Michel Thierry6ac18502015-07-29 17:23:46 +0100544static int __pdp_init(struct drm_device *dev,
545 struct i915_page_directory_pointer *pdp)
546{
547 size_t pdpes = I915_PDPES_PER_PDP(dev);
548
549 pdp->used_pdpes = kcalloc(BITS_TO_LONGS(pdpes),
550 sizeof(unsigned long),
551 GFP_KERNEL);
552 if (!pdp->used_pdpes)
553 return -ENOMEM;
554
555 pdp->page_directory = kcalloc(pdpes, sizeof(*pdp->page_directory),
556 GFP_KERNEL);
557 if (!pdp->page_directory) {
558 kfree(pdp->used_pdpes);
559 /* the PDP might be the statically allocated top level. Keep it
560 * as clean as possible */
561 pdp->used_pdpes = NULL;
562 return -ENOMEM;
563 }
564
565 return 0;
566}
567
568static void __pdp_fini(struct i915_page_directory_pointer *pdp)
569{
570 kfree(pdp->used_pdpes);
571 kfree(pdp->page_directory);
572 pdp->page_directory = NULL;
573}
574
Michel Thierry762d9932015-07-30 11:05:29 +0100575static struct
576i915_page_directory_pointer *alloc_pdp(struct drm_device *dev)
577{
578 struct i915_page_directory_pointer *pdp;
579 int ret = -ENOMEM;
580
581 WARN_ON(!USES_FULL_48BIT_PPGTT(dev));
582
583 pdp = kzalloc(sizeof(*pdp), GFP_KERNEL);
584 if (!pdp)
585 return ERR_PTR(-ENOMEM);
586
587 ret = __pdp_init(dev, pdp);
588 if (ret)
589 goto fail_bitmap;
590
591 ret = setup_px(dev, pdp);
592 if (ret)
593 goto fail_page_m;
594
595 return pdp;
596
597fail_page_m:
598 __pdp_fini(pdp);
599fail_bitmap:
600 kfree(pdp);
601
602 return ERR_PTR(ret);
603}
604
Michel Thierry6ac18502015-07-29 17:23:46 +0100605static void free_pdp(struct drm_device *dev,
606 struct i915_page_directory_pointer *pdp)
607{
608 __pdp_fini(pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100609 if (USES_FULL_48BIT_PPGTT(dev)) {
610 cleanup_px(dev, pdp);
611 kfree(pdp);
612 }
613}
614
Michel Thierry69ab76f2015-07-29 17:23:55 +0100615static void gen8_initialize_pdp(struct i915_address_space *vm,
616 struct i915_page_directory_pointer *pdp)
617{
618 gen8_ppgtt_pdpe_t scratch_pdpe;
619
620 scratch_pdpe = gen8_pdpe_encode(px_dma(vm->scratch_pd), I915_CACHE_LLC);
621
622 fill_px(vm->dev, pdp, scratch_pdpe);
623}
624
625static void gen8_initialize_pml4(struct i915_address_space *vm,
626 struct i915_pml4 *pml4)
627{
628 gen8_ppgtt_pml4e_t scratch_pml4e;
629
630 scratch_pml4e = gen8_pml4e_encode(px_dma(vm->scratch_pdp),
631 I915_CACHE_LLC);
632
633 fill_px(vm->dev, pml4, scratch_pml4e);
634}
635
Michel Thierry762d9932015-07-30 11:05:29 +0100636static void
637gen8_setup_page_directory(struct i915_hw_ppgtt *ppgtt,
638 struct i915_page_directory_pointer *pdp,
639 struct i915_page_directory *pd,
640 int index)
641{
642 gen8_ppgtt_pdpe_t *page_directorypo;
643
644 if (!USES_FULL_48BIT_PPGTT(ppgtt->base.dev))
645 return;
646
647 page_directorypo = kmap_px(pdp);
648 page_directorypo[index] = gen8_pdpe_encode(px_dma(pd), I915_CACHE_LLC);
649 kunmap_px(ppgtt, page_directorypo);
650}
651
652static void
653gen8_setup_page_directory_pointer(struct i915_hw_ppgtt *ppgtt,
654 struct i915_pml4 *pml4,
655 struct i915_page_directory_pointer *pdp,
656 int index)
657{
658 gen8_ppgtt_pml4e_t *pagemap = kmap_px(pml4);
659
660 WARN_ON(!USES_FULL_48BIT_PPGTT(ppgtt->base.dev));
661 pagemap[index] = gen8_pml4e_encode(px_dma(pdp), I915_CACHE_LLC);
662 kunmap_px(ppgtt, pagemap);
Michel Thierry6ac18502015-07-29 17:23:46 +0100663}
664
Ben Widawsky94e409c2013-11-04 22:29:36 -0800665/* Broadwell Page Directory Pointer Descriptors */
John Harrisone85b26d2015-05-29 17:43:56 +0100666static int gen8_write_pdp(struct drm_i915_gem_request *req,
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100667 unsigned entry,
668 dma_addr_t addr)
Ben Widawsky94e409c2013-11-04 22:29:36 -0800669{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000670 struct intel_engine_cs *engine = req->engine;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800671 int ret;
672
673 BUG_ON(entry >= 4);
674
John Harrison5fb9de12015-05-29 17:44:07 +0100675 ret = intel_ring_begin(req, 6);
Ben Widawsky94e409c2013-11-04 22:29:36 -0800676 if (ret)
677 return ret;
678
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000679 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(1));
680 intel_ring_emit_reg(engine, GEN8_RING_PDP_UDW(engine, entry));
681 intel_ring_emit(engine, upper_32_bits(addr));
682 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(1));
683 intel_ring_emit_reg(engine, GEN8_RING_PDP_LDW(engine, entry));
684 intel_ring_emit(engine, lower_32_bits(addr));
685 intel_ring_advance(engine);
Ben Widawsky94e409c2013-11-04 22:29:36 -0800686
687 return 0;
688}
689
Michel Thierry2dba3232015-07-30 11:06:23 +0100690static int gen8_legacy_mm_switch(struct i915_hw_ppgtt *ppgtt,
691 struct drm_i915_gem_request *req)
Ben Widawsky94e409c2013-11-04 22:29:36 -0800692{
Ben Widawskyeeb94882013-12-06 14:11:10 -0800693 int i, ret;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800694
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100695 for (i = GEN8_LEGACY_PDPES - 1; i >= 0; i--) {
Mika Kuoppalad852c7b2015-06-25 18:35:06 +0300696 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
697
John Harrisone85b26d2015-05-29 17:43:56 +0100698 ret = gen8_write_pdp(req, i, pd_daddr);
Ben Widawskyeeb94882013-12-06 14:11:10 -0800699 if (ret)
700 return ret;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800701 }
Ben Widawskyd595bd42013-11-25 09:54:32 -0800702
Ben Widawskyeeb94882013-12-06 14:11:10 -0800703 return 0;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800704}
705
Michel Thierry2dba3232015-07-30 11:06:23 +0100706static int gen8_48b_mm_switch(struct i915_hw_ppgtt *ppgtt,
707 struct drm_i915_gem_request *req)
708{
709 return gen8_write_pdp(req, 0, px_dma(&ppgtt->pml4));
710}
711
Michel Thierryf9b5b782015-07-30 11:02:49 +0100712static void gen8_ppgtt_clear_pte_range(struct i915_address_space *vm,
713 struct i915_page_directory_pointer *pdp,
714 uint64_t start,
715 uint64_t length,
716 gen8_pte_t scratch_pte)
Ben Widawsky459108b2013-11-02 21:07:23 -0700717{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300718 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierryf9b5b782015-07-30 11:02:49 +0100719 gen8_pte_t *pt_vaddr;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100720 unsigned pdpe = gen8_pdpe_index(start);
721 unsigned pde = gen8_pde_index(start);
722 unsigned pte = gen8_pte_index(start);
Ben Widawsky782f1492014-02-20 11:50:33 -0800723 unsigned num_entries = length >> PAGE_SHIFT;
Ben Widawsky459108b2013-11-02 21:07:23 -0700724 unsigned last_pte, i;
725
Michel Thierryf9b5b782015-07-30 11:02:49 +0100726 if (WARN_ON(!pdp))
727 return;
Ben Widawsky459108b2013-11-02 21:07:23 -0700728
729 while (num_entries) {
Michel Thierryec565b32015-04-08 12:13:23 +0100730 struct i915_page_directory *pd;
731 struct i915_page_table *pt;
Ben Widawsky06fda602015-02-24 16:22:36 +0000732
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100733 if (WARN_ON(!pdp->page_directory[pdpe]))
Michel Thierry00245262015-06-25 12:59:38 +0100734 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000735
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100736 pd = pdp->page_directory[pdpe];
Ben Widawsky06fda602015-02-24 16:22:36 +0000737
738 if (WARN_ON(!pd->page_table[pde]))
Michel Thierry00245262015-06-25 12:59:38 +0100739 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000740
741 pt = pd->page_table[pde];
742
Mika Kuoppala567047b2015-06-25 18:35:12 +0300743 if (WARN_ON(!px_page(pt)))
Michel Thierry00245262015-06-25 12:59:38 +0100744 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000745
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800746 last_pte = pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +0000747 if (last_pte > GEN8_PTES)
748 last_pte = GEN8_PTES;
Ben Widawsky459108b2013-11-02 21:07:23 -0700749
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300750 pt_vaddr = kmap_px(pt);
Ben Widawsky459108b2013-11-02 21:07:23 -0700751
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800752 for (i = pte; i < last_pte; i++) {
Ben Widawsky459108b2013-11-02 21:07:23 -0700753 pt_vaddr[i] = scratch_pte;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800754 num_entries--;
755 }
Ben Widawsky459108b2013-11-02 21:07:23 -0700756
Matthew Auld44a71022016-04-12 16:57:42 +0100757 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky459108b2013-11-02 21:07:23 -0700758
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800759 pte = 0;
Michel Thierry07749ef2015-03-16 16:00:54 +0000760 if (++pde == I915_PDES) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100761 if (++pdpe == I915_PDPES_PER_PDP(vm->dev))
762 break;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800763 pde = 0;
764 }
Ben Widawsky459108b2013-11-02 21:07:23 -0700765 }
766}
767
Michel Thierryf9b5b782015-07-30 11:02:49 +0100768static void gen8_ppgtt_clear_range(struct i915_address_space *vm,
769 uint64_t start,
770 uint64_t length,
771 bool use_scratch)
Ben Widawsky9df15b42013-11-02 21:07:24 -0700772{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300773 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierryf9b5b782015-07-30 11:02:49 +0100774 gen8_pte_t scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
775 I915_CACHE_LLC, use_scratch);
776
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100777 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
778 gen8_ppgtt_clear_pte_range(vm, &ppgtt->pdp, start, length,
779 scratch_pte);
780 } else {
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000781 uint64_t pml4e;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100782 struct i915_page_directory_pointer *pdp;
783
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000784 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, pml4e) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100785 gen8_ppgtt_clear_pte_range(vm, pdp, start, length,
786 scratch_pte);
787 }
788 }
Michel Thierryf9b5b782015-07-30 11:02:49 +0100789}
790
791static void
792gen8_ppgtt_insert_pte_entries(struct i915_address_space *vm,
793 struct i915_page_directory_pointer *pdp,
Michel Thierry3387d432015-08-03 09:52:47 +0100794 struct sg_page_iter *sg_iter,
Michel Thierryf9b5b782015-07-30 11:02:49 +0100795 uint64_t start,
796 enum i915_cache_level cache_level)
797{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300798 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry07749ef2015-03-16 16:00:54 +0000799 gen8_pte_t *pt_vaddr;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100800 unsigned pdpe = gen8_pdpe_index(start);
801 unsigned pde = gen8_pde_index(start);
802 unsigned pte = gen8_pte_index(start);
Ben Widawsky9df15b42013-11-02 21:07:24 -0700803
Chris Wilson6f1cc992013-12-31 15:50:31 +0000804 pt_vaddr = NULL;
Ben Widawsky9df15b42013-11-02 21:07:24 -0700805
Michel Thierry3387d432015-08-03 09:52:47 +0100806 while (__sg_page_iter_next(sg_iter)) {
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000807 if (pt_vaddr == NULL) {
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100808 struct i915_page_directory *pd = pdp->page_directory[pdpe];
Michel Thierryec565b32015-04-08 12:13:23 +0100809 struct i915_page_table *pt = pd->page_table[pde];
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300810 pt_vaddr = kmap_px(pt);
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000811 }
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800812
813 pt_vaddr[pte] =
Michel Thierry3387d432015-08-03 09:52:47 +0100814 gen8_pte_encode(sg_page_iter_dma_address(sg_iter),
Chris Wilson6f1cc992013-12-31 15:50:31 +0000815 cache_level, true);
Michel Thierry07749ef2015-03-16 16:00:54 +0000816 if (++pte == GEN8_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300817 kunmap_px(ppgtt, pt_vaddr);
Chris Wilson6f1cc992013-12-31 15:50:31 +0000818 pt_vaddr = NULL;
Michel Thierry07749ef2015-03-16 16:00:54 +0000819 if (++pde == I915_PDES) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100820 if (++pdpe == I915_PDPES_PER_PDP(vm->dev))
821 break;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800822 pde = 0;
823 }
824 pte = 0;
Ben Widawsky9df15b42013-11-02 21:07:24 -0700825 }
826 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300827
828 if (pt_vaddr)
829 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky9df15b42013-11-02 21:07:24 -0700830}
831
Michel Thierryf9b5b782015-07-30 11:02:49 +0100832static void gen8_ppgtt_insert_entries(struct i915_address_space *vm,
833 struct sg_table *pages,
834 uint64_t start,
835 enum i915_cache_level cache_level,
836 u32 unused)
837{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300838 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry3387d432015-08-03 09:52:47 +0100839 struct sg_page_iter sg_iter;
Michel Thierryf9b5b782015-07-30 11:02:49 +0100840
Michel Thierry3387d432015-08-03 09:52:47 +0100841 __sg_page_iter_start(&sg_iter, pages->sgl, sg_nents(pages->sgl), 0);
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100842
843 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
844 gen8_ppgtt_insert_pte_entries(vm, &ppgtt->pdp, &sg_iter, start,
845 cache_level);
846 } else {
847 struct i915_page_directory_pointer *pdp;
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000848 uint64_t pml4e;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100849 uint64_t length = (uint64_t)pages->orig_nents << PAGE_SHIFT;
850
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000851 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, pml4e) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100852 gen8_ppgtt_insert_pte_entries(vm, pdp, &sg_iter,
853 start, cache_level);
854 }
855 }
Michel Thierryf9b5b782015-07-30 11:02:49 +0100856}
857
Michel Thierryf37c0502015-06-10 17:46:39 +0100858static void gen8_free_page_tables(struct drm_device *dev,
859 struct i915_page_directory *pd)
Ben Widawskyb45a6712014-02-12 14:28:44 -0800860{
861 int i;
862
Mika Kuoppala567047b2015-06-25 18:35:12 +0300863 if (!px_page(pd))
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800864 return;
Ben Widawskyb45a6712014-02-12 14:28:44 -0800865
Michel Thierry33c88192015-04-08 12:13:33 +0100866 for_each_set_bit(i, pd->used_pdes, I915_PDES) {
Ben Widawsky06fda602015-02-24 16:22:36 +0000867 if (WARN_ON(!pd->page_table[i]))
868 continue;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800869
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300870 free_pt(dev, pd->page_table[i]);
Ben Widawsky06fda602015-02-24 16:22:36 +0000871 pd->page_table[i] = NULL;
872 }
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000873}
874
Mika Kuoppala8776f022015-06-30 18:16:40 +0300875static int gen8_init_scratch(struct i915_address_space *vm)
876{
877 struct drm_device *dev = vm->dev;
Matthew Auld64c050d2016-04-27 13:19:25 +0100878 int ret;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300879
880 vm->scratch_page = alloc_scratch_page(dev);
881 if (IS_ERR(vm->scratch_page))
882 return PTR_ERR(vm->scratch_page);
883
884 vm->scratch_pt = alloc_pt(dev);
885 if (IS_ERR(vm->scratch_pt)) {
Matthew Auld64c050d2016-04-27 13:19:25 +0100886 ret = PTR_ERR(vm->scratch_pt);
887 goto free_scratch_page;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300888 }
889
890 vm->scratch_pd = alloc_pd(dev);
891 if (IS_ERR(vm->scratch_pd)) {
Matthew Auld64c050d2016-04-27 13:19:25 +0100892 ret = PTR_ERR(vm->scratch_pd);
893 goto free_pt;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300894 }
895
Michel Thierry69ab76f2015-07-29 17:23:55 +0100896 if (USES_FULL_48BIT_PPGTT(dev)) {
897 vm->scratch_pdp = alloc_pdp(dev);
898 if (IS_ERR(vm->scratch_pdp)) {
Matthew Auld64c050d2016-04-27 13:19:25 +0100899 ret = PTR_ERR(vm->scratch_pdp);
900 goto free_pd;
Michel Thierry69ab76f2015-07-29 17:23:55 +0100901 }
902 }
903
Mika Kuoppala8776f022015-06-30 18:16:40 +0300904 gen8_initialize_pt(vm, vm->scratch_pt);
905 gen8_initialize_pd(vm, vm->scratch_pd);
Michel Thierry69ab76f2015-07-29 17:23:55 +0100906 if (USES_FULL_48BIT_PPGTT(dev))
907 gen8_initialize_pdp(vm, vm->scratch_pdp);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300908
909 return 0;
Matthew Auld64c050d2016-04-27 13:19:25 +0100910
911free_pd:
912 free_pd(dev, vm->scratch_pd);
913free_pt:
914 free_pt(dev, vm->scratch_pt);
915free_scratch_page:
916 free_scratch_page(dev, vm->scratch_page);
917
918 return ret;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300919}
920
Zhiyuan Lv650da342015-08-28 15:41:18 +0800921static int gen8_ppgtt_notify_vgt(struct i915_hw_ppgtt *ppgtt, bool create)
922{
923 enum vgt_g2v_type msg;
Matthew Aulddf285642016-04-22 12:09:25 +0100924 struct drm_i915_private *dev_priv = to_i915(ppgtt->base.dev);
Zhiyuan Lv650da342015-08-28 15:41:18 +0800925 int i;
926
Matthew Aulddf285642016-04-22 12:09:25 +0100927 if (USES_FULL_48BIT_PPGTT(dev_priv)) {
Zhiyuan Lv650da342015-08-28 15:41:18 +0800928 u64 daddr = px_dma(&ppgtt->pml4);
929
Ville Syrjäläab75bb52015-11-04 23:20:12 +0200930 I915_WRITE(vgtif_reg(pdp[0].lo), lower_32_bits(daddr));
931 I915_WRITE(vgtif_reg(pdp[0].hi), upper_32_bits(daddr));
Zhiyuan Lv650da342015-08-28 15:41:18 +0800932
933 msg = (create ? VGT_G2V_PPGTT_L4_PAGE_TABLE_CREATE :
934 VGT_G2V_PPGTT_L4_PAGE_TABLE_DESTROY);
935 } else {
936 for (i = 0; i < GEN8_LEGACY_PDPES; i++) {
937 u64 daddr = i915_page_dir_dma_addr(ppgtt, i);
938
Ville Syrjäläab75bb52015-11-04 23:20:12 +0200939 I915_WRITE(vgtif_reg(pdp[i].lo), lower_32_bits(daddr));
940 I915_WRITE(vgtif_reg(pdp[i].hi), upper_32_bits(daddr));
Zhiyuan Lv650da342015-08-28 15:41:18 +0800941 }
942
943 msg = (create ? VGT_G2V_PPGTT_L3_PAGE_TABLE_CREATE :
944 VGT_G2V_PPGTT_L3_PAGE_TABLE_DESTROY);
945 }
946
947 I915_WRITE(vgtif_reg(g2v_notify), msg);
948
949 return 0;
950}
951
Mika Kuoppala8776f022015-06-30 18:16:40 +0300952static void gen8_free_scratch(struct i915_address_space *vm)
953{
954 struct drm_device *dev = vm->dev;
955
Michel Thierry69ab76f2015-07-29 17:23:55 +0100956 if (USES_FULL_48BIT_PPGTT(dev))
957 free_pdp(dev, vm->scratch_pdp);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300958 free_pd(dev, vm->scratch_pd);
959 free_pt(dev, vm->scratch_pt);
960 free_scratch_page(dev, vm->scratch_page);
961}
962
Michel Thierry762d9932015-07-30 11:05:29 +0100963static void gen8_ppgtt_cleanup_3lvl(struct drm_device *dev,
964 struct i915_page_directory_pointer *pdp)
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800965{
966 int i;
967
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100968 for_each_set_bit(i, pdp->used_pdpes, I915_PDPES_PER_PDP(dev)) {
969 if (WARN_ON(!pdp->page_directory[i]))
Ben Widawsky06fda602015-02-24 16:22:36 +0000970 continue;
971
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100972 gen8_free_page_tables(dev, pdp->page_directory[i]);
973 free_pd(dev, pdp->page_directory[i]);
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800974 }
Michel Thierry69876be2015-04-08 12:13:27 +0100975
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100976 free_pdp(dev, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100977}
978
979static void gen8_ppgtt_cleanup_4lvl(struct i915_hw_ppgtt *ppgtt)
980{
981 int i;
982
983 for_each_set_bit(i, ppgtt->pml4.used_pml4es, GEN8_PML4ES_PER_PML4) {
984 if (WARN_ON(!ppgtt->pml4.pdps[i]))
985 continue;
986
987 gen8_ppgtt_cleanup_3lvl(ppgtt->base.dev, ppgtt->pml4.pdps[i]);
988 }
989
990 cleanup_px(ppgtt->base.dev, &ppgtt->pml4);
991}
992
993static void gen8_ppgtt_cleanup(struct i915_address_space *vm)
994{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300995 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry762d9932015-07-30 11:05:29 +0100996
Zhiyuan Lv650da342015-08-28 15:41:18 +0800997 if (intel_vgpu_active(vm->dev))
998 gen8_ppgtt_notify_vgt(ppgtt, false);
999
Michel Thierry762d9932015-07-30 11:05:29 +01001000 if (!USES_FULL_48BIT_PPGTT(ppgtt->base.dev))
1001 gen8_ppgtt_cleanup_3lvl(ppgtt->base.dev, &ppgtt->pdp);
1002 else
1003 gen8_ppgtt_cleanup_4lvl(ppgtt);
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001004
Mika Kuoppala8776f022015-06-30 18:16:40 +03001005 gen8_free_scratch(vm);
Ben Widawskyb45a6712014-02-12 14:28:44 -08001006}
1007
Michel Thierryd7b26332015-04-08 12:13:34 +01001008/**
1009 * gen8_ppgtt_alloc_pagetabs() - Allocate page tables for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001010 * @vm: Master vm structure.
1011 * @pd: Page directory for this address range.
Michel Thierryd7b26332015-04-08 12:13:34 +01001012 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001013 * @length: Size of the allocations.
Michel Thierryd7b26332015-04-08 12:13:34 +01001014 * @new_pts: Bitmap set by function with new allocations. Likely used by the
1015 * caller to free on error.
1016 *
1017 * Allocate the required number of page tables. Extremely similar to
1018 * gen8_ppgtt_alloc_page_directories(). The main difference is here we are limited by
1019 * the page directory boundary (instead of the page directory pointer). That
1020 * boundary is 1GB virtual. Therefore, unlike gen8_ppgtt_alloc_page_directories(), it is
1021 * possible, and likely that the caller will need to use multiple calls of this
1022 * function to achieve the appropriate allocation.
1023 *
1024 * Return: 0 if success; negative error code otherwise.
1025 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001026static int gen8_ppgtt_alloc_pagetabs(struct i915_address_space *vm,
Michel Thierrye5815a22015-04-08 12:13:32 +01001027 struct i915_page_directory *pd,
Michel Thierry5441f0c2015-04-08 12:13:28 +01001028 uint64_t start,
Michel Thierryd7b26332015-04-08 12:13:34 +01001029 uint64_t length,
1030 unsigned long *new_pts)
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001031{
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001032 struct drm_device *dev = vm->dev;
Michel Thierryd7b26332015-04-08 12:13:34 +01001033 struct i915_page_table *pt;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001034 uint32_t pde;
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001035
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001036 gen8_for_each_pde(pt, pd, start, length, pde) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001037 /* Don't reallocate page tables */
Michel Thierry6ac18502015-07-29 17:23:46 +01001038 if (test_bit(pde, pd->used_pdes)) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001039 /* Scratch is never allocated this way */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001040 WARN_ON(pt == vm->scratch_pt);
Michel Thierryd7b26332015-04-08 12:13:34 +01001041 continue;
1042 }
1043
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001044 pt = alloc_pt(dev);
Michel Thierryd7b26332015-04-08 12:13:34 +01001045 if (IS_ERR(pt))
Ben Widawsky06fda602015-02-24 16:22:36 +00001046 goto unwind_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001047
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001048 gen8_initialize_pt(vm, pt);
Michel Thierryd7b26332015-04-08 12:13:34 +01001049 pd->page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001050 __set_bit(pde, new_pts);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001051 trace_i915_page_table_entry_alloc(vm, pde, start, GEN8_PDE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001052 }
1053
1054 return 0;
1055
1056unwind_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001057 for_each_set_bit(pde, new_pts, I915_PDES)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001058 free_pt(dev, pd->page_table[pde]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001059
1060 return -ENOMEM;
1061}
1062
Michel Thierryd7b26332015-04-08 12:13:34 +01001063/**
1064 * gen8_ppgtt_alloc_page_directories() - Allocate page directories for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001065 * @vm: Master vm structure.
Michel Thierryd7b26332015-04-08 12:13:34 +01001066 * @pdp: Page directory pointer for this address range.
1067 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001068 * @length: Size of the allocations.
1069 * @new_pds: Bitmap set by function with new allocations. Likely used by the
Michel Thierryd7b26332015-04-08 12:13:34 +01001070 * caller to free on error.
1071 *
1072 * Allocate the required number of page directories starting at the pde index of
1073 * @start, and ending at the pde index @start + @length. This function will skip
1074 * over already allocated page directories within the range, and only allocate
1075 * new ones, setting the appropriate pointer within the pdp as well as the
1076 * correct position in the bitmap @new_pds.
1077 *
1078 * The function will only allocate the pages within the range for a give page
1079 * directory pointer. In other words, if @start + @length straddles a virtually
1080 * addressed PDP boundary (512GB for 4k pages), there will be more allocations
1081 * required by the caller, This is not currently possible, and the BUG in the
1082 * code will prevent it.
1083 *
1084 * Return: 0 if success; negative error code otherwise.
1085 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001086static int
1087gen8_ppgtt_alloc_page_directories(struct i915_address_space *vm,
1088 struct i915_page_directory_pointer *pdp,
1089 uint64_t start,
1090 uint64_t length,
1091 unsigned long *new_pds)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001092{
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001093 struct drm_device *dev = vm->dev;
Michel Thierryd7b26332015-04-08 12:13:34 +01001094 struct i915_page_directory *pd;
Michel Thierry69876be2015-04-08 12:13:27 +01001095 uint32_t pdpe;
Michel Thierry6ac18502015-07-29 17:23:46 +01001096 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001097
Michel Thierry6ac18502015-07-29 17:23:46 +01001098 WARN_ON(!bitmap_empty(new_pds, pdpes));
Michel Thierryd7b26332015-04-08 12:13:34 +01001099
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001100 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierry6ac18502015-07-29 17:23:46 +01001101 if (test_bit(pdpe, pdp->used_pdpes))
Michel Thierryd7b26332015-04-08 12:13:34 +01001102 continue;
Michel Thierry33c88192015-04-08 12:13:33 +01001103
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001104 pd = alloc_pd(dev);
Michel Thierryd7b26332015-04-08 12:13:34 +01001105 if (IS_ERR(pd))
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001106 goto unwind_out;
Michel Thierry69876be2015-04-08 12:13:27 +01001107
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001108 gen8_initialize_pd(vm, pd);
Michel Thierryd7b26332015-04-08 12:13:34 +01001109 pdp->page_directory[pdpe] = pd;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001110 __set_bit(pdpe, new_pds);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001111 trace_i915_page_directory_entry_alloc(vm, pdpe, start, GEN8_PDPE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001112 }
1113
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001114 return 0;
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001115
1116unwind_out:
Michel Thierry6ac18502015-07-29 17:23:46 +01001117 for_each_set_bit(pdpe, new_pds, pdpes)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001118 free_pd(dev, pdp->page_directory[pdpe]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001119
1120 return -ENOMEM;
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001121}
1122
Michel Thierry762d9932015-07-30 11:05:29 +01001123/**
1124 * gen8_ppgtt_alloc_page_dirpointers() - Allocate pdps for VA range.
1125 * @vm: Master vm structure.
1126 * @pml4: Page map level 4 for this address range.
1127 * @start: Starting virtual address to begin allocations.
1128 * @length: Size of the allocations.
1129 * @new_pdps: Bitmap set by function with new allocations. Likely used by the
1130 * caller to free on error.
1131 *
1132 * Allocate the required number of page directory pointers. Extremely similar to
1133 * gen8_ppgtt_alloc_page_directories() and gen8_ppgtt_alloc_pagetabs().
1134 * The main difference is here we are limited by the pml4 boundary (instead of
1135 * the page directory pointer).
1136 *
1137 * Return: 0 if success; negative error code otherwise.
1138 */
1139static int
1140gen8_ppgtt_alloc_page_dirpointers(struct i915_address_space *vm,
1141 struct i915_pml4 *pml4,
1142 uint64_t start,
1143 uint64_t length,
1144 unsigned long *new_pdps)
1145{
1146 struct drm_device *dev = vm->dev;
1147 struct i915_page_directory_pointer *pdp;
Michel Thierry762d9932015-07-30 11:05:29 +01001148 uint32_t pml4e;
1149
1150 WARN_ON(!bitmap_empty(new_pdps, GEN8_PML4ES_PER_PML4));
1151
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001152 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierry762d9932015-07-30 11:05:29 +01001153 if (!test_bit(pml4e, pml4->used_pml4es)) {
1154 pdp = alloc_pdp(dev);
1155 if (IS_ERR(pdp))
1156 goto unwind_out;
1157
Michel Thierry69ab76f2015-07-29 17:23:55 +01001158 gen8_initialize_pdp(vm, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +01001159 pml4->pdps[pml4e] = pdp;
1160 __set_bit(pml4e, new_pdps);
1161 trace_i915_page_directory_pointer_entry_alloc(vm,
1162 pml4e,
1163 start,
1164 GEN8_PML4E_SHIFT);
1165 }
1166 }
1167
1168 return 0;
1169
1170unwind_out:
1171 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
1172 free_pdp(dev, pml4->pdps[pml4e]);
1173
1174 return -ENOMEM;
1175}
1176
Michel Thierryd7b26332015-04-08 12:13:34 +01001177static void
Michał Winiarski3a41a052015-09-03 19:22:18 +02001178free_gen8_temp_bitmaps(unsigned long *new_pds, unsigned long *new_pts)
Michel Thierryd7b26332015-04-08 12:13:34 +01001179{
Michel Thierryd7b26332015-04-08 12:13:34 +01001180 kfree(new_pts);
1181 kfree(new_pds);
1182}
1183
1184/* Fills in the page directory bitmap, and the array of page tables bitmap. Both
1185 * of these are based on the number of PDPEs in the system.
1186 */
1187static
1188int __must_check alloc_gen8_temp_bitmaps(unsigned long **new_pds,
Michał Winiarski3a41a052015-09-03 19:22:18 +02001189 unsigned long **new_pts,
Michel Thierry6ac18502015-07-29 17:23:46 +01001190 uint32_t pdpes)
Michel Thierryd7b26332015-04-08 12:13:34 +01001191{
Michel Thierryd7b26332015-04-08 12:13:34 +01001192 unsigned long *pds;
Michał Winiarski3a41a052015-09-03 19:22:18 +02001193 unsigned long *pts;
Michel Thierryd7b26332015-04-08 12:13:34 +01001194
Michał Winiarski3a41a052015-09-03 19:22:18 +02001195 pds = kcalloc(BITS_TO_LONGS(pdpes), sizeof(unsigned long), GFP_TEMPORARY);
Michel Thierryd7b26332015-04-08 12:13:34 +01001196 if (!pds)
1197 return -ENOMEM;
1198
Michał Winiarski3a41a052015-09-03 19:22:18 +02001199 pts = kcalloc(pdpes, BITS_TO_LONGS(I915_PDES) * sizeof(unsigned long),
1200 GFP_TEMPORARY);
1201 if (!pts)
1202 goto err_out;
Michel Thierryd7b26332015-04-08 12:13:34 +01001203
1204 *new_pds = pds;
1205 *new_pts = pts;
1206
1207 return 0;
1208
1209err_out:
Michał Winiarski3a41a052015-09-03 19:22:18 +02001210 free_gen8_temp_bitmaps(pds, pts);
Michel Thierryd7b26332015-04-08 12:13:34 +01001211 return -ENOMEM;
1212}
1213
Mika Kuoppala5b7e4c92015-06-25 18:35:03 +03001214/* PDE TLBs are a pain to invalidate on GEN8+. When we modify
1215 * the page table structures, we mark them dirty so that
1216 * context switching/execlist queuing code takes extra steps
1217 * to ensure that tlbs are flushed.
1218 */
1219static void mark_tlbs_dirty(struct i915_hw_ppgtt *ppgtt)
1220{
1221 ppgtt->pd_dirty_rings = INTEL_INFO(ppgtt->base.dev)->ring_mask;
1222}
1223
Michel Thierry762d9932015-07-30 11:05:29 +01001224static int gen8_alloc_va_range_3lvl(struct i915_address_space *vm,
1225 struct i915_page_directory_pointer *pdp,
1226 uint64_t start,
1227 uint64_t length)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001228{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001229 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michał Winiarski3a41a052015-09-03 19:22:18 +02001230 unsigned long *new_page_dirs, *new_page_tables;
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001231 struct drm_device *dev = vm->dev;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001232 struct i915_page_directory *pd;
Michel Thierry33c88192015-04-08 12:13:33 +01001233 const uint64_t orig_start = start;
1234 const uint64_t orig_length = length;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001235 uint32_t pdpe;
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001236 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001237 int ret;
1238
Michel Thierryd7b26332015-04-08 12:13:34 +01001239 /* Wrap is never okay since we can only represent 48b, and we don't
1240 * actually use the other side of the canonical address space.
1241 */
1242 if (WARN_ON(start + length < start))
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001243 return -ENODEV;
1244
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001245 if (WARN_ON(start + length > vm->total))
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001246 return -ENODEV;
Michel Thierryd7b26332015-04-08 12:13:34 +01001247
Michel Thierry6ac18502015-07-29 17:23:46 +01001248 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001249 if (ret)
1250 return ret;
1251
Michel Thierryd7b26332015-04-08 12:13:34 +01001252 /* Do the allocations first so we can easily bail out */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001253 ret = gen8_ppgtt_alloc_page_directories(vm, pdp, start, length,
1254 new_page_dirs);
Michel Thierryd7b26332015-04-08 12:13:34 +01001255 if (ret) {
Michał Winiarski3a41a052015-09-03 19:22:18 +02001256 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Michel Thierryd7b26332015-04-08 12:13:34 +01001257 return ret;
1258 }
1259
1260 /* For every page directory referenced, allocate page tables */
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001261 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001262 ret = gen8_ppgtt_alloc_pagetabs(vm, pd, start, length,
Michał Winiarski3a41a052015-09-03 19:22:18 +02001263 new_page_tables + pdpe * BITS_TO_LONGS(I915_PDES));
Michel Thierry5441f0c2015-04-08 12:13:28 +01001264 if (ret)
1265 goto err_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001266 }
1267
Michel Thierry33c88192015-04-08 12:13:33 +01001268 start = orig_start;
1269 length = orig_length;
1270
Michel Thierryd7b26332015-04-08 12:13:34 +01001271 /* Allocations have completed successfully, so set the bitmaps, and do
1272 * the mappings. */
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001273 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001274 gen8_pde_t *const page_directory = kmap_px(pd);
Michel Thierry33c88192015-04-08 12:13:33 +01001275 struct i915_page_table *pt;
Michel Thierry09120d42015-07-29 17:23:45 +01001276 uint64_t pd_len = length;
Michel Thierry33c88192015-04-08 12:13:33 +01001277 uint64_t pd_start = start;
1278 uint32_t pde;
1279
Michel Thierryd7b26332015-04-08 12:13:34 +01001280 /* Every pd should be allocated, we just did that above. */
1281 WARN_ON(!pd);
1282
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001283 gen8_for_each_pde(pt, pd, pd_start, pd_len, pde) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001284 /* Same reasoning as pd */
1285 WARN_ON(!pt);
1286 WARN_ON(!pd_len);
1287 WARN_ON(!gen8_pte_count(pd_start, pd_len));
1288
1289 /* Set our used ptes within the page table */
1290 bitmap_set(pt->used_ptes,
1291 gen8_pte_index(pd_start),
1292 gen8_pte_count(pd_start, pd_len));
1293
1294 /* Our pde is now pointing to the pagetable, pt */
Mika Kuoppala966082c2015-06-25 18:35:19 +03001295 __set_bit(pde, pd->used_pdes);
Michel Thierryd7b26332015-04-08 12:13:34 +01001296
1297 /* Map the PDE to the page table */
Mika Kuoppalafe36f552015-06-25 18:35:16 +03001298 page_directory[pde] = gen8_pde_encode(px_dma(pt),
1299 I915_CACHE_LLC);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001300 trace_i915_page_table_entry_map(&ppgtt->base, pde, pt,
1301 gen8_pte_index(start),
1302 gen8_pte_count(start, length),
1303 GEN8_PTES);
Michel Thierryd7b26332015-04-08 12:13:34 +01001304
1305 /* NB: We haven't yet mapped ptes to pages. At this
1306 * point we're still relying on insert_entries() */
Michel Thierry33c88192015-04-08 12:13:33 +01001307 }
Michel Thierryd7b26332015-04-08 12:13:34 +01001308
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001309 kunmap_px(ppgtt, page_directory);
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001310 __set_bit(pdpe, pdp->used_pdpes);
Michel Thierry762d9932015-07-30 11:05:29 +01001311 gen8_setup_page_directory(ppgtt, pdp, pd, pdpe);
Michel Thierry33c88192015-04-08 12:13:33 +01001312 }
1313
Michał Winiarski3a41a052015-09-03 19:22:18 +02001314 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Mika Kuoppala5b7e4c92015-06-25 18:35:03 +03001315 mark_tlbs_dirty(ppgtt);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001316 return 0;
1317
1318err_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001319 while (pdpe--) {
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001320 unsigned long temp;
1321
Michał Winiarski3a41a052015-09-03 19:22:18 +02001322 for_each_set_bit(temp, new_page_tables + pdpe *
1323 BITS_TO_LONGS(I915_PDES), I915_PDES)
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001324 free_pt(dev, pdp->page_directory[pdpe]->page_table[temp]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001325 }
1326
Michel Thierry6ac18502015-07-29 17:23:46 +01001327 for_each_set_bit(pdpe, new_page_dirs, pdpes)
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001328 free_pd(dev, pdp->page_directory[pdpe]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001329
Michał Winiarski3a41a052015-09-03 19:22:18 +02001330 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Mika Kuoppala5b7e4c92015-06-25 18:35:03 +03001331 mark_tlbs_dirty(ppgtt);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001332 return ret;
1333}
1334
Michel Thierry762d9932015-07-30 11:05:29 +01001335static int gen8_alloc_va_range_4lvl(struct i915_address_space *vm,
1336 struct i915_pml4 *pml4,
1337 uint64_t start,
1338 uint64_t length)
1339{
1340 DECLARE_BITMAP(new_pdps, GEN8_PML4ES_PER_PML4);
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001341 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry762d9932015-07-30 11:05:29 +01001342 struct i915_page_directory_pointer *pdp;
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001343 uint64_t pml4e;
Michel Thierry762d9932015-07-30 11:05:29 +01001344 int ret = 0;
1345
1346 /* Do the pml4 allocations first, so we don't need to track the newly
1347 * allocated tables below the pdp */
1348 bitmap_zero(new_pdps, GEN8_PML4ES_PER_PML4);
1349
1350 /* The pagedirectory and pagetable allocations are done in the shared 3
1351 * and 4 level code. Just allocate the pdps.
1352 */
1353 ret = gen8_ppgtt_alloc_page_dirpointers(vm, pml4, start, length,
1354 new_pdps);
1355 if (ret)
1356 return ret;
1357
1358 WARN(bitmap_weight(new_pdps, GEN8_PML4ES_PER_PML4) > 2,
1359 "The allocation has spanned more than 512GB. "
1360 "It is highly likely this is incorrect.");
1361
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001362 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierry762d9932015-07-30 11:05:29 +01001363 WARN_ON(!pdp);
1364
1365 ret = gen8_alloc_va_range_3lvl(vm, pdp, start, length);
1366 if (ret)
1367 goto err_out;
1368
1369 gen8_setup_page_directory_pointer(ppgtt, pml4, pdp, pml4e);
1370 }
1371
1372 bitmap_or(pml4->used_pml4es, new_pdps, pml4->used_pml4es,
1373 GEN8_PML4ES_PER_PML4);
1374
1375 return 0;
1376
1377err_out:
1378 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
1379 gen8_ppgtt_cleanup_3lvl(vm->dev, pml4->pdps[pml4e]);
1380
1381 return ret;
1382}
1383
1384static int gen8_alloc_va_range(struct i915_address_space *vm,
1385 uint64_t start, uint64_t length)
1386{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001387 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry762d9932015-07-30 11:05:29 +01001388
1389 if (USES_FULL_48BIT_PPGTT(vm->dev))
1390 return gen8_alloc_va_range_4lvl(vm, &ppgtt->pml4, start, length);
1391 else
1392 return gen8_alloc_va_range_3lvl(vm, &ppgtt->pdp, start, length);
1393}
1394
Michel Thierryea91e402015-07-29 17:23:57 +01001395static void gen8_dump_pdp(struct i915_page_directory_pointer *pdp,
1396 uint64_t start, uint64_t length,
1397 gen8_pte_t scratch_pte,
1398 struct seq_file *m)
1399{
1400 struct i915_page_directory *pd;
Michel Thierryea91e402015-07-29 17:23:57 +01001401 uint32_t pdpe;
1402
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001403 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierryea91e402015-07-29 17:23:57 +01001404 struct i915_page_table *pt;
1405 uint64_t pd_len = length;
1406 uint64_t pd_start = start;
1407 uint32_t pde;
1408
1409 if (!test_bit(pdpe, pdp->used_pdpes))
1410 continue;
1411
1412 seq_printf(m, "\tPDPE #%d\n", pdpe);
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001413 gen8_for_each_pde(pt, pd, pd_start, pd_len, pde) {
Michel Thierryea91e402015-07-29 17:23:57 +01001414 uint32_t pte;
1415 gen8_pte_t *pt_vaddr;
1416
1417 if (!test_bit(pde, pd->used_pdes))
1418 continue;
1419
1420 pt_vaddr = kmap_px(pt);
1421 for (pte = 0; pte < GEN8_PTES; pte += 4) {
1422 uint64_t va =
1423 (pdpe << GEN8_PDPE_SHIFT) |
1424 (pde << GEN8_PDE_SHIFT) |
1425 (pte << GEN8_PTE_SHIFT);
1426 int i;
1427 bool found = false;
1428
1429 for (i = 0; i < 4; i++)
1430 if (pt_vaddr[pte + i] != scratch_pte)
1431 found = true;
1432 if (!found)
1433 continue;
1434
1435 seq_printf(m, "\t\t0x%llx [%03d,%03d,%04d]: =", va, pdpe, pde, pte);
1436 for (i = 0; i < 4; i++) {
1437 if (pt_vaddr[pte + i] != scratch_pte)
1438 seq_printf(m, " %llx", pt_vaddr[pte + i]);
1439 else
1440 seq_puts(m, " SCRATCH ");
1441 }
1442 seq_puts(m, "\n");
1443 }
1444 /* don't use kunmap_px, it could trigger
1445 * an unnecessary flush.
1446 */
1447 kunmap_atomic(pt_vaddr);
1448 }
1449 }
1450}
1451
1452static void gen8_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1453{
1454 struct i915_address_space *vm = &ppgtt->base;
1455 uint64_t start = ppgtt->base.start;
1456 uint64_t length = ppgtt->base.total;
1457 gen8_pte_t scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
1458 I915_CACHE_LLC, true);
1459
1460 if (!USES_FULL_48BIT_PPGTT(vm->dev)) {
1461 gen8_dump_pdp(&ppgtt->pdp, start, length, scratch_pte, m);
1462 } else {
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001463 uint64_t pml4e;
Michel Thierryea91e402015-07-29 17:23:57 +01001464 struct i915_pml4 *pml4 = &ppgtt->pml4;
1465 struct i915_page_directory_pointer *pdp;
1466
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001467 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierryea91e402015-07-29 17:23:57 +01001468 if (!test_bit(pml4e, pml4->used_pml4es))
1469 continue;
1470
1471 seq_printf(m, " PML4E #%llu\n", pml4e);
1472 gen8_dump_pdp(pdp, start, length, scratch_pte, m);
1473 }
1474 }
1475}
1476
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001477static int gen8_preallocate_top_level_pdps(struct i915_hw_ppgtt *ppgtt)
1478{
Michał Winiarski3a41a052015-09-03 19:22:18 +02001479 unsigned long *new_page_dirs, *new_page_tables;
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001480 uint32_t pdpes = I915_PDPES_PER_PDP(dev);
1481 int ret;
1482
1483 /* We allocate temp bitmap for page tables for no gain
1484 * but as this is for init only, lets keep the things simple
1485 */
1486 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
1487 if (ret)
1488 return ret;
1489
1490 /* Allocate for all pdps regardless of how the ppgtt
1491 * was defined.
1492 */
1493 ret = gen8_ppgtt_alloc_page_directories(&ppgtt->base, &ppgtt->pdp,
1494 0, 1ULL << 32,
1495 new_page_dirs);
1496 if (!ret)
1497 *ppgtt->pdp.used_pdpes = *new_page_dirs;
1498
Michał Winiarski3a41a052015-09-03 19:22:18 +02001499 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001500
1501 return ret;
1502}
1503
Daniel Vettereb0b44a2015-03-18 14:47:59 +01001504/*
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001505 * GEN8 legacy ppgtt programming is accomplished through a max 4 PDP registers
1506 * with a net effect resembling a 2-level page table in normal x86 terms. Each
1507 * PDP represents 1GB of memory 4 * 512 * 512 * 4096 = 4GB legacy 32b address
1508 * space.
Ben Widawsky37aca442013-11-04 20:47:32 -08001509 *
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001510 */
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001511static int gen8_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky37aca442013-11-04 20:47:32 -08001512{
Mika Kuoppala8776f022015-06-30 18:16:40 +03001513 int ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001514
Mika Kuoppala8776f022015-06-30 18:16:40 +03001515 ret = gen8_init_scratch(&ppgtt->base);
1516 if (ret)
1517 return ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001518
Michel Thierryd7b26332015-04-08 12:13:34 +01001519 ppgtt->base.start = 0;
Michel Thierryd7b26332015-04-08 12:13:34 +01001520 ppgtt->base.cleanup = gen8_ppgtt_cleanup;
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001521 ppgtt->base.allocate_va_range = gen8_alloc_va_range;
Michel Thierryd7b26332015-04-08 12:13:34 +01001522 ppgtt->base.insert_entries = gen8_ppgtt_insert_entries;
Daniel Vetterc7e16f22015-04-14 17:35:11 +02001523 ppgtt->base.clear_range = gen8_ppgtt_clear_range;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02001524 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
1525 ppgtt->base.bind_vma = ppgtt_bind_vma;
Michel Thierryea91e402015-07-29 17:23:57 +01001526 ppgtt->debug_dump = gen8_dump_ppgtt;
Michel Thierryd7b26332015-04-08 12:13:34 +01001527
Michel Thierry762d9932015-07-30 11:05:29 +01001528 if (USES_FULL_48BIT_PPGTT(ppgtt->base.dev)) {
1529 ret = setup_px(ppgtt->base.dev, &ppgtt->pml4);
1530 if (ret)
1531 goto free_scratch;
Michel Thierry6ac18502015-07-29 17:23:46 +01001532
Michel Thierry69ab76f2015-07-29 17:23:55 +01001533 gen8_initialize_pml4(&ppgtt->base, &ppgtt->pml4);
1534
Michel Thierry762d9932015-07-30 11:05:29 +01001535 ppgtt->base.total = 1ULL << 48;
Michel Thierry2dba3232015-07-30 11:06:23 +01001536 ppgtt->switch_mm = gen8_48b_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001537 } else {
Michel Thierry25f50332015-08-07 17:40:19 +01001538 ret = __pdp_init(ppgtt->base.dev, &ppgtt->pdp);
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001539 if (ret)
1540 goto free_scratch;
1541
1542 ppgtt->base.total = 1ULL << 32;
Michel Thierry2dba3232015-07-30 11:06:23 +01001543 ppgtt->switch_mm = gen8_legacy_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001544 trace_i915_page_directory_pointer_entry_alloc(&ppgtt->base,
1545 0, 0,
1546 GEN8_PML4E_SHIFT);
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001547
1548 if (intel_vgpu_active(ppgtt->base.dev)) {
1549 ret = gen8_preallocate_top_level_pdps(ppgtt);
1550 if (ret)
1551 goto free_scratch;
1552 }
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001553 }
Michel Thierry6ac18502015-07-29 17:23:46 +01001554
Zhiyuan Lv650da342015-08-28 15:41:18 +08001555 if (intel_vgpu_active(ppgtt->base.dev))
1556 gen8_ppgtt_notify_vgt(ppgtt, true);
1557
Michel Thierryd7b26332015-04-08 12:13:34 +01001558 return 0;
Michel Thierry6ac18502015-07-29 17:23:46 +01001559
1560free_scratch:
1561 gen8_free_scratch(&ppgtt->base);
1562 return ret;
Michel Thierryd7b26332015-04-08 12:13:34 +01001563}
1564
Ben Widawsky87d60b62013-12-06 14:11:29 -08001565static void gen6_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1566{
Ben Widawsky87d60b62013-12-06 14:11:29 -08001567 struct i915_address_space *vm = &ppgtt->base;
Michel Thierry09942c62015-04-08 12:13:30 +01001568 struct i915_page_table *unused;
Michel Thierry07749ef2015-03-16 16:00:54 +00001569 gen6_pte_t scratch_pte;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001570 uint32_t pd_entry;
Michel Thierry09942c62015-04-08 12:13:30 +01001571 uint32_t pte, pde, temp;
1572 uint32_t start = ppgtt->base.start, length = ppgtt->base.total;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001573
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001574 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1575 I915_CACHE_LLC, true, 0);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001576
Michel Thierry09942c62015-04-08 12:13:30 +01001577 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001578 u32 expected;
Michel Thierry07749ef2015-03-16 16:00:54 +00001579 gen6_pte_t *pt_vaddr;
Mika Kuoppala567047b2015-06-25 18:35:12 +03001580 const dma_addr_t pt_addr = px_dma(ppgtt->pd.page_table[pde]);
Michel Thierry09942c62015-04-08 12:13:30 +01001581 pd_entry = readl(ppgtt->pd_addr + pde);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001582 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID);
1583
1584 if (pd_entry != expected)
1585 seq_printf(m, "\tPDE #%d mismatch: Actual PDE: %x Expected PDE: %x\n",
1586 pde,
1587 pd_entry,
1588 expected);
1589 seq_printf(m, "\tPDE: %x\n", pd_entry);
1590
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001591 pt_vaddr = kmap_px(ppgtt->pd.page_table[pde]);
1592
Michel Thierry07749ef2015-03-16 16:00:54 +00001593 for (pte = 0; pte < GEN6_PTES; pte+=4) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001594 unsigned long va =
Michel Thierry07749ef2015-03-16 16:00:54 +00001595 (pde * PAGE_SIZE * GEN6_PTES) +
Ben Widawsky87d60b62013-12-06 14:11:29 -08001596 (pte * PAGE_SIZE);
1597 int i;
1598 bool found = false;
1599 for (i = 0; i < 4; i++)
1600 if (pt_vaddr[pte + i] != scratch_pte)
1601 found = true;
1602 if (!found)
1603 continue;
1604
1605 seq_printf(m, "\t\t0x%lx [%03d,%04d]: =", va, pde, pte);
1606 for (i = 0; i < 4; i++) {
1607 if (pt_vaddr[pte + i] != scratch_pte)
1608 seq_printf(m, " %08x", pt_vaddr[pte + i]);
1609 else
1610 seq_puts(m, " SCRATCH ");
1611 }
1612 seq_puts(m, "\n");
1613 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001614 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001615 }
1616}
1617
Ben Widawsky678d96f2015-03-16 16:00:56 +00001618/* Write pde (index) from the page directory @pd to the page table @pt */
Michel Thierryec565b32015-04-08 12:13:23 +01001619static void gen6_write_pde(struct i915_page_directory *pd,
1620 const int pde, struct i915_page_table *pt)
Ben Widawsky61973492013-04-08 18:43:54 -07001621{
Ben Widawsky678d96f2015-03-16 16:00:56 +00001622 /* Caller needs to make sure the write completes if necessary */
1623 struct i915_hw_ppgtt *ppgtt =
1624 container_of(pd, struct i915_hw_ppgtt, pd);
1625 u32 pd_entry;
Ben Widawsky61973492013-04-08 18:43:54 -07001626
Mika Kuoppala567047b2015-06-25 18:35:12 +03001627 pd_entry = GEN6_PDE_ADDR_ENCODE(px_dma(pt));
Ben Widawsky678d96f2015-03-16 16:00:56 +00001628 pd_entry |= GEN6_PDE_VALID;
Ben Widawsky61973492013-04-08 18:43:54 -07001629
Ben Widawsky678d96f2015-03-16 16:00:56 +00001630 writel(pd_entry, ppgtt->pd_addr + pde);
1631}
Ben Widawsky61973492013-04-08 18:43:54 -07001632
Ben Widawsky678d96f2015-03-16 16:00:56 +00001633/* Write all the page tables found in the ppgtt structure to incrementing page
1634 * directories. */
1635static void gen6_write_page_range(struct drm_i915_private *dev_priv,
Michel Thierryec565b32015-04-08 12:13:23 +01001636 struct i915_page_directory *pd,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001637 uint32_t start, uint32_t length)
1638{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001639 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Michel Thierryec565b32015-04-08 12:13:23 +01001640 struct i915_page_table *pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001641 uint32_t pde, temp;
1642
1643 gen6_for_each_pde(pt, pd, start, length, temp, pde)
1644 gen6_write_pde(pd, pde, pt);
1645
1646 /* Make sure write is complete before other code can use this page
1647 * table. Also require for WC mapped PTEs */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001648 readl(ggtt->gsm);
Ben Widawsky3e302542013-04-23 23:15:32 -07001649}
1650
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001651static uint32_t get_pd_offset(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky3e302542013-04-23 23:15:32 -07001652{
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001653 BUG_ON(ppgtt->pd.base.ggtt_offset & 0x3f);
Ben Widawsky3e302542013-04-23 23:15:32 -07001654
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001655 return (ppgtt->pd.base.ggtt_offset / 64) << 16;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001656}
Ben Widawsky61973492013-04-08 18:43:54 -07001657
Ben Widawsky90252e52013-12-06 14:11:12 -08001658static int hsw_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001659 struct drm_i915_gem_request *req)
Ben Widawsky90252e52013-12-06 14:11:12 -08001660{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001661 struct intel_engine_cs *engine = req->engine;
Ben Widawsky90252e52013-12-06 14:11:12 -08001662 int ret;
Ben Widawsky61973492013-04-08 18:43:54 -07001663
Ben Widawsky90252e52013-12-06 14:11:12 -08001664 /* NB: TLBs must be flushed and invalidated before a switch */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001665 ret = engine->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001666 if (ret)
1667 return ret;
1668
John Harrison5fb9de12015-05-29 17:44:07 +01001669 ret = intel_ring_begin(req, 6);
Ben Widawsky90252e52013-12-06 14:11:12 -08001670 if (ret)
1671 return ret;
1672
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001673 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(2));
1674 intel_ring_emit_reg(engine, RING_PP_DIR_DCLV(engine));
1675 intel_ring_emit(engine, PP_DIR_DCLV_2G);
1676 intel_ring_emit_reg(engine, RING_PP_DIR_BASE(engine));
1677 intel_ring_emit(engine, get_pd_offset(ppgtt));
1678 intel_ring_emit(engine, MI_NOOP);
1679 intel_ring_advance(engine);
Ben Widawsky90252e52013-12-06 14:11:12 -08001680
1681 return 0;
1682}
1683
Yu Zhang71ba2d62015-02-10 19:05:54 +08001684static int vgpu_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001685 struct drm_i915_gem_request *req)
Yu Zhang71ba2d62015-02-10 19:05:54 +08001686{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001687 struct intel_engine_cs *engine = req->engine;
Yu Zhang71ba2d62015-02-10 19:05:54 +08001688 struct drm_i915_private *dev_priv = to_i915(ppgtt->base.dev);
1689
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001690 I915_WRITE(RING_PP_DIR_DCLV(engine), PP_DIR_DCLV_2G);
1691 I915_WRITE(RING_PP_DIR_BASE(engine), get_pd_offset(ppgtt));
Yu Zhang71ba2d62015-02-10 19:05:54 +08001692 return 0;
1693}
1694
Ben Widawsky48a10382013-12-06 14:11:11 -08001695static int gen7_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001696 struct drm_i915_gem_request *req)
Ben Widawsky48a10382013-12-06 14:11:11 -08001697{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001698 struct intel_engine_cs *engine = req->engine;
Ben Widawsky48a10382013-12-06 14:11:11 -08001699 int ret;
1700
Ben Widawsky48a10382013-12-06 14:11:11 -08001701 /* NB: TLBs must be flushed and invalidated before a switch */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001702 ret = engine->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky48a10382013-12-06 14:11:11 -08001703 if (ret)
1704 return ret;
1705
John Harrison5fb9de12015-05-29 17:44:07 +01001706 ret = intel_ring_begin(req, 6);
Ben Widawsky48a10382013-12-06 14:11:11 -08001707 if (ret)
1708 return ret;
1709
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001710 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(2));
1711 intel_ring_emit_reg(engine, RING_PP_DIR_DCLV(engine));
1712 intel_ring_emit(engine, PP_DIR_DCLV_2G);
1713 intel_ring_emit_reg(engine, RING_PP_DIR_BASE(engine));
1714 intel_ring_emit(engine, get_pd_offset(ppgtt));
1715 intel_ring_emit(engine, MI_NOOP);
1716 intel_ring_advance(engine);
Ben Widawsky48a10382013-12-06 14:11:11 -08001717
Ben Widawsky90252e52013-12-06 14:11:12 -08001718 /* XXX: RCS is the only one to auto invalidate the TLBs? */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001719 if (engine->id != RCS) {
1720 ret = engine->flush(req, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Ben Widawsky90252e52013-12-06 14:11:12 -08001721 if (ret)
1722 return ret;
1723 }
1724
Ben Widawsky48a10382013-12-06 14:11:11 -08001725 return 0;
1726}
1727
Ben Widawskyeeb94882013-12-06 14:11:10 -08001728static int gen6_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001729 struct drm_i915_gem_request *req)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001730{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001731 struct intel_engine_cs *engine = req->engine;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001732 struct drm_device *dev = ppgtt->base.dev;
1733 struct drm_i915_private *dev_priv = dev->dev_private;
1734
Ben Widawsky48a10382013-12-06 14:11:11 -08001735
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001736 I915_WRITE(RING_PP_DIR_DCLV(engine), PP_DIR_DCLV_2G);
1737 I915_WRITE(RING_PP_DIR_BASE(engine), get_pd_offset(ppgtt));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001738
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001739 POSTING_READ(RING_PP_DIR_DCLV(engine));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001740
1741 return 0;
1742}
1743
Daniel Vetter82460d92014-08-06 20:19:53 +02001744static void gen8_ppgtt_enable(struct drm_device *dev)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001745{
Ben Widawskyeeb94882013-12-06 14:11:10 -08001746 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001747 struct intel_engine_cs *engine;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001748
Dave Gordonb4ac5af2016-03-24 11:20:38 +00001749 for_each_engine(engine, dev_priv) {
Michel Thierry2dba3232015-07-30 11:06:23 +01001750 u32 four_level = USES_FULL_48BIT_PPGTT(dev) ? GEN8_GFX_PPGTT_48B : 0;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001751 I915_WRITE(RING_MODE_GEN7(engine),
Michel Thierry2dba3232015-07-30 11:06:23 +01001752 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE | four_level));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001753 }
Ben Widawskyeeb94882013-12-06 14:11:10 -08001754}
1755
Daniel Vetter82460d92014-08-06 20:19:53 +02001756static void gen7_ppgtt_enable(struct drm_device *dev)
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001757{
Jani Nikula50227e12014-03-31 14:27:21 +03001758 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001759 struct intel_engine_cs *engine;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001760 uint32_t ecochk, ecobits;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001761
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001762 ecobits = I915_READ(GAC_ECO_BITS);
1763 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
1764
1765 ecochk = I915_READ(GAM_ECOCHK);
1766 if (IS_HASWELL(dev)) {
1767 ecochk |= ECOCHK_PPGTT_WB_HSW;
1768 } else {
1769 ecochk |= ECOCHK_PPGTT_LLC_IVB;
1770 ecochk &= ~ECOCHK_PPGTT_GFDT_IVB;
1771 }
1772 I915_WRITE(GAM_ECOCHK, ecochk);
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001773
Dave Gordonb4ac5af2016-03-24 11:20:38 +00001774 for_each_engine(engine, dev_priv) {
Ben Widawskyeeb94882013-12-06 14:11:10 -08001775 /* GFX_MODE is per-ring on gen7+ */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001776 I915_WRITE(RING_MODE_GEN7(engine),
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001777 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001778 }
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001779}
1780
Daniel Vetter82460d92014-08-06 20:19:53 +02001781static void gen6_ppgtt_enable(struct drm_device *dev)
Ben Widawsky61973492013-04-08 18:43:54 -07001782{
Jani Nikula50227e12014-03-31 14:27:21 +03001783 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001784 uint32_t ecochk, gab_ctl, ecobits;
Ben Widawsky61973492013-04-08 18:43:54 -07001785
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001786 ecobits = I915_READ(GAC_ECO_BITS);
1787 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_SNB_BIT |
1788 ECOBITS_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001789
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001790 gab_ctl = I915_READ(GAB_CTL);
1791 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
Ben Widawsky61973492013-04-08 18:43:54 -07001792
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001793 ecochk = I915_READ(GAM_ECOCHK);
1794 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT | ECOCHK_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001795
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001796 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001797}
1798
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001799/* PPGTT support for Sandybdrige/Gen6 and later */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001800static void gen6_ppgtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08001801 uint64_t start,
1802 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07001803 bool use_scratch)
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001804{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001805 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry07749ef2015-03-16 16:00:54 +00001806 gen6_pte_t *pt_vaddr, scratch_pte;
Ben Widawsky782f1492014-02-20 11:50:33 -08001807 unsigned first_entry = start >> PAGE_SHIFT;
1808 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001809 unsigned act_pt = first_entry / GEN6_PTES;
1810 unsigned first_pte = first_entry % GEN6_PTES;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001811 unsigned last_pte, i;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001812
Mika Kuoppalac114f762015-06-25 18:35:13 +03001813 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
1814 I915_CACHE_LLC, true, 0);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001815
Daniel Vetter7bddb012012-02-09 17:15:47 +01001816 while (num_entries) {
1817 last_pte = first_pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +00001818 if (last_pte > GEN6_PTES)
1819 last_pte = GEN6_PTES;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001820
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001821 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001822
1823 for (i = first_pte; i < last_pte; i++)
1824 pt_vaddr[i] = scratch_pte;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001825
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001826 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001827
Daniel Vetter7bddb012012-02-09 17:15:47 +01001828 num_entries -= last_pte - first_pte;
1829 first_pte = 0;
Daniel Vettera15326a2013-03-19 23:48:39 +01001830 act_pt++;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001831 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001832}
1833
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001834static void gen6_ppgtt_insert_entries(struct i915_address_space *vm,
Daniel Vetterdef886c2013-01-24 14:44:56 -08001835 struct sg_table *pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08001836 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05301837 enum i915_cache_level cache_level, u32 flags)
Daniel Vetterdef886c2013-01-24 14:44:56 -08001838{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001839 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry07749ef2015-03-16 16:00:54 +00001840 gen6_pte_t *pt_vaddr;
Ben Widawsky782f1492014-02-20 11:50:33 -08001841 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001842 unsigned act_pt = first_entry / GEN6_PTES;
1843 unsigned act_pte = first_entry % GEN6_PTES;
Imre Deak6e995e22013-02-18 19:28:04 +02001844 struct sg_page_iter sg_iter;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001845
Chris Wilsoncc797142013-12-31 15:50:30 +00001846 pt_vaddr = NULL;
Imre Deak6e995e22013-02-18 19:28:04 +02001847 for_each_sg_page(pages->sgl, &sg_iter, pages->nents, 0) {
Chris Wilsoncc797142013-12-31 15:50:30 +00001848 if (pt_vaddr == NULL)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001849 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001850
Chris Wilsoncc797142013-12-31 15:50:30 +00001851 pt_vaddr[act_pte] =
1852 vm->pte_encode(sg_page_iter_dma_address(&sg_iter),
Akash Goel24f3a8c2014-06-17 10:59:42 +05301853 cache_level, true, flags);
1854
Michel Thierry07749ef2015-03-16 16:00:54 +00001855 if (++act_pte == GEN6_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001856 kunmap_px(ppgtt, pt_vaddr);
Chris Wilsoncc797142013-12-31 15:50:30 +00001857 pt_vaddr = NULL;
Daniel Vettera15326a2013-03-19 23:48:39 +01001858 act_pt++;
Imre Deak6e995e22013-02-18 19:28:04 +02001859 act_pte = 0;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001860 }
Daniel Vetterdef886c2013-01-24 14:44:56 -08001861 }
Chris Wilsoncc797142013-12-31 15:50:30 +00001862 if (pt_vaddr)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001863 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001864}
1865
Ben Widawsky678d96f2015-03-16 16:00:56 +00001866static int gen6_alloc_va_range(struct i915_address_space *vm,
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001867 uint64_t start_in, uint64_t length_in)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001868{
Michel Thierry4933d512015-03-24 15:46:22 +00001869 DECLARE_BITMAP(new_page_tables, I915_PDES);
1870 struct drm_device *dev = vm->dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001871 struct drm_i915_private *dev_priv = to_i915(dev);
1872 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001873 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierryec565b32015-04-08 12:13:23 +01001874 struct i915_page_table *pt;
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001875 uint32_t start, length, start_save, length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001876 uint32_t pde, temp;
Michel Thierry4933d512015-03-24 15:46:22 +00001877 int ret;
1878
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001879 if (WARN_ON(start_in + length_in > ppgtt->base.total))
1880 return -ENODEV;
1881
1882 start = start_save = start_in;
1883 length = length_save = length_in;
Michel Thierry4933d512015-03-24 15:46:22 +00001884
1885 bitmap_zero(new_page_tables, I915_PDES);
1886
1887 /* The allocation is done in two stages so that we can bail out with
1888 * minimal amount of pain. The first stage finds new page tables that
1889 * need allocation. The second stage marks use ptes within the page
1890 * tables.
1891 */
1892 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001893 if (pt != vm->scratch_pt) {
Michel Thierry4933d512015-03-24 15:46:22 +00001894 WARN_ON(bitmap_empty(pt->used_ptes, GEN6_PTES));
1895 continue;
1896 }
1897
1898 /* We've already allocated a page table */
1899 WARN_ON(!bitmap_empty(pt->used_ptes, GEN6_PTES));
1900
Mika Kuoppala8a1ebd72015-05-22 20:04:59 +03001901 pt = alloc_pt(dev);
Michel Thierry4933d512015-03-24 15:46:22 +00001902 if (IS_ERR(pt)) {
1903 ret = PTR_ERR(pt);
1904 goto unwind_out;
1905 }
1906
1907 gen6_initialize_pt(vm, pt);
1908
1909 ppgtt->pd.page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001910 __set_bit(pde, new_page_tables);
Michel Thierry72744cb2015-03-24 15:46:23 +00001911 trace_i915_page_table_entry_alloc(vm, pde, start, GEN6_PDE_SHIFT);
Michel Thierry4933d512015-03-24 15:46:22 +00001912 }
1913
1914 start = start_save;
1915 length = length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001916
1917 gen6_for_each_pde(pt, &ppgtt->pd, start, length, temp, pde) {
1918 DECLARE_BITMAP(tmp_bitmap, GEN6_PTES);
1919
1920 bitmap_zero(tmp_bitmap, GEN6_PTES);
1921 bitmap_set(tmp_bitmap, gen6_pte_index(start),
1922 gen6_pte_count(start, length));
1923
Mika Kuoppala966082c2015-06-25 18:35:19 +03001924 if (__test_and_clear_bit(pde, new_page_tables))
Michel Thierry4933d512015-03-24 15:46:22 +00001925 gen6_write_pde(&ppgtt->pd, pde, pt);
1926
Michel Thierry72744cb2015-03-24 15:46:23 +00001927 trace_i915_page_table_entry_map(vm, pde, pt,
1928 gen6_pte_index(start),
1929 gen6_pte_count(start, length),
1930 GEN6_PTES);
Michel Thierry4933d512015-03-24 15:46:22 +00001931 bitmap_or(pt->used_ptes, tmp_bitmap, pt->used_ptes,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001932 GEN6_PTES);
1933 }
1934
Michel Thierry4933d512015-03-24 15:46:22 +00001935 WARN_ON(!bitmap_empty(new_page_tables, I915_PDES));
1936
1937 /* Make sure write is complete before other code can use this page
1938 * table. Also require for WC mapped PTEs */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001939 readl(ggtt->gsm);
Michel Thierry4933d512015-03-24 15:46:22 +00001940
Ben Widawsky563222a2015-03-19 12:53:28 +00001941 mark_tlbs_dirty(ppgtt);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001942 return 0;
Michel Thierry4933d512015-03-24 15:46:22 +00001943
1944unwind_out:
1945 for_each_set_bit(pde, new_page_tables, I915_PDES) {
Michel Thierryec565b32015-04-08 12:13:23 +01001946 struct i915_page_table *pt = ppgtt->pd.page_table[pde];
Michel Thierry4933d512015-03-24 15:46:22 +00001947
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001948 ppgtt->pd.page_table[pde] = vm->scratch_pt;
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001949 free_pt(vm->dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001950 }
1951
1952 mark_tlbs_dirty(ppgtt);
1953 return ret;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001954}
1955
Mika Kuoppala8776f022015-06-30 18:16:40 +03001956static int gen6_init_scratch(struct i915_address_space *vm)
1957{
1958 struct drm_device *dev = vm->dev;
1959
1960 vm->scratch_page = alloc_scratch_page(dev);
1961 if (IS_ERR(vm->scratch_page))
1962 return PTR_ERR(vm->scratch_page);
1963
1964 vm->scratch_pt = alloc_pt(dev);
1965 if (IS_ERR(vm->scratch_pt)) {
1966 free_scratch_page(dev, vm->scratch_page);
1967 return PTR_ERR(vm->scratch_pt);
1968 }
1969
1970 gen6_initialize_pt(vm, vm->scratch_pt);
1971
1972 return 0;
1973}
1974
1975static void gen6_free_scratch(struct i915_address_space *vm)
1976{
1977 struct drm_device *dev = vm->dev;
1978
1979 free_pt(dev, vm->scratch_pt);
1980 free_scratch_page(dev, vm->scratch_page);
1981}
1982
Daniel Vetter061dd492015-04-14 17:35:13 +02001983static void gen6_ppgtt_cleanup(struct i915_address_space *vm)
Ben Widawskya00d8252014-02-19 22:05:48 -08001984{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001985 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry09942c62015-04-08 12:13:30 +01001986 struct i915_page_table *pt;
1987 uint32_t pde;
Daniel Vetter3440d262013-01-24 13:49:56 -08001988
Daniel Vetter061dd492015-04-14 17:35:13 +02001989 drm_mm_remove_node(&ppgtt->node);
1990
Michel Thierry09942c62015-04-08 12:13:30 +01001991 gen6_for_all_pdes(pt, ppgtt, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001992 if (pt != vm->scratch_pt)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +03001993 free_pt(ppgtt->base.dev, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00001994 }
1995
Mika Kuoppala8776f022015-06-30 18:16:40 +03001996 gen6_free_scratch(vm);
Daniel Vetter3440d262013-01-24 13:49:56 -08001997}
1998
Ben Widawskyb1465202014-02-19 22:05:49 -08001999static int gen6_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08002000{
Mika Kuoppala8776f022015-06-30 18:16:40 +03002001 struct i915_address_space *vm = &ppgtt->base;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002002 struct drm_device *dev = ppgtt->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002003 struct drm_i915_private *dev_priv = to_i915(dev);
2004 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskye3cc1992013-12-06 14:11:08 -08002005 bool retried = false;
Ben Widawskyb1465202014-02-19 22:05:49 -08002006 int ret;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002007
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002008 /* PPGTT PDEs reside in the GGTT and consists of 512 entries. The
2009 * allocator works in address space sizes, so it's multiplied by page
2010 * size. We allocate at the top of the GTT to avoid fragmentation.
2011 */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002012 BUG_ON(!drm_mm_initialized(&ggtt->base.mm));
Michel Thierry4933d512015-03-24 15:46:22 +00002013
Mika Kuoppala8776f022015-06-30 18:16:40 +03002014 ret = gen6_init_scratch(vm);
2015 if (ret)
2016 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002017
Ben Widawskye3cc1992013-12-06 14:11:08 -08002018alloc:
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002019 ret = drm_mm_insert_node_in_range_generic(&ggtt->base.mm,
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002020 &ppgtt->node, GEN6_PD_SIZE,
2021 GEN6_PD_ALIGN, 0,
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002022 0, ggtt->base.total,
Ben Widawsky3e8b5ae2014-05-06 22:21:30 -07002023 DRM_MM_TOPDOWN);
Ben Widawskye3cc1992013-12-06 14:11:08 -08002024 if (ret == -ENOSPC && !retried) {
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002025 ret = i915_gem_evict_something(dev, &ggtt->base,
Ben Widawskye3cc1992013-12-06 14:11:08 -08002026 GEN6_PD_SIZE, GEN6_PD_ALIGN,
Chris Wilsond23db882014-05-23 08:48:08 +02002027 I915_CACHE_NONE,
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002028 0, ggtt->base.total,
Chris Wilsond23db882014-05-23 08:48:08 +02002029 0);
Ben Widawskye3cc1992013-12-06 14:11:08 -08002030 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00002031 goto err_out;
Ben Widawskye3cc1992013-12-06 14:11:08 -08002032
2033 retried = true;
2034 goto alloc;
2035 }
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002036
Ben Widawskyc8c26622015-01-22 17:01:25 +00002037 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00002038 goto err_out;
2039
Ben Widawskyc8c26622015-01-22 17:01:25 +00002040
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002041 if (ppgtt->node.start < ggtt->mappable_end)
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002042 DRM_DEBUG("Forced to use aperture for PDEs\n");
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002043
Ben Widawskyc8c26622015-01-22 17:01:25 +00002044 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +00002045
2046err_out:
Mika Kuoppala8776f022015-06-30 18:16:40 +03002047 gen6_free_scratch(vm);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002048 return ret;
Ben Widawskyb1465202014-02-19 22:05:49 -08002049}
2050
Ben Widawskyb1465202014-02-19 22:05:49 -08002051static int gen6_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt)
2052{
kbuild test robot2f2cf682015-03-27 19:26:35 +08002053 return gen6_ppgtt_allocate_page_directories(ppgtt);
Ben Widawskyb1465202014-02-19 22:05:49 -08002054}
2055
Michel Thierry4933d512015-03-24 15:46:22 +00002056static void gen6_scratch_va_range(struct i915_hw_ppgtt *ppgtt,
2057 uint64_t start, uint64_t length)
2058{
Michel Thierryec565b32015-04-08 12:13:23 +01002059 struct i915_page_table *unused;
Michel Thierry4933d512015-03-24 15:46:22 +00002060 uint32_t pde, temp;
2061
2062 gen6_for_each_pde(unused, &ppgtt->pd, start, length, temp, pde)
Mika Kuoppala79ab9372015-06-25 18:35:17 +03002063 ppgtt->pd.page_table[pde] = ppgtt->base.scratch_pt;
Michel Thierry4933d512015-03-24 15:46:22 +00002064}
2065
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002066static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawskyb1465202014-02-19 22:05:49 -08002067{
2068 struct drm_device *dev = ppgtt->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002069 struct drm_i915_private *dev_priv = to_i915(dev);
2070 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskyb1465202014-02-19 22:05:49 -08002071 int ret;
2072
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002073 ppgtt->base.pte_encode = ggtt->base.pte_encode;
Ben Widawsky48a10382013-12-06 14:11:11 -08002074 if (IS_GEN6(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002075 ppgtt->switch_mm = gen6_mm_switch;
Ben Widawsky90252e52013-12-06 14:11:12 -08002076 } else if (IS_HASWELL(dev)) {
Ben Widawsky90252e52013-12-06 14:11:12 -08002077 ppgtt->switch_mm = hsw_mm_switch;
Ben Widawsky48a10382013-12-06 14:11:11 -08002078 } else if (IS_GEN7(dev)) {
Ben Widawsky48a10382013-12-06 14:11:11 -08002079 ppgtt->switch_mm = gen7_mm_switch;
2080 } else
Ben Widawskyb4a74e32013-12-06 14:11:09 -08002081 BUG();
Ben Widawskyb1465202014-02-19 22:05:49 -08002082
Yu Zhang71ba2d62015-02-10 19:05:54 +08002083 if (intel_vgpu_active(dev))
2084 ppgtt->switch_mm = vgpu_mm_switch;
2085
Ben Widawskyb1465202014-02-19 22:05:49 -08002086 ret = gen6_ppgtt_alloc(ppgtt);
2087 if (ret)
2088 return ret;
2089
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002090 ppgtt->base.allocate_va_range = gen6_alloc_va_range;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002091 ppgtt->base.clear_range = gen6_ppgtt_clear_range;
2092 ppgtt->base.insert_entries = gen6_ppgtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002093 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
2094 ppgtt->base.bind_vma = ppgtt_bind_vma;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002095 ppgtt->base.cleanup = gen6_ppgtt_cleanup;
Ben Widawsky686e1f62013-11-25 09:54:34 -08002096 ppgtt->base.start = 0;
Michel Thierry09942c62015-04-08 12:13:30 +01002097 ppgtt->base.total = I915_PDES * GEN6_PTES * PAGE_SIZE;
Ben Widawskyb1465202014-02-19 22:05:49 -08002098 ppgtt->debug_dump = gen6_dump_ppgtt;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002099
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002100 ppgtt->pd.base.ggtt_offset =
Michel Thierry07749ef2015-03-16 16:00:54 +00002101 ppgtt->node.start / PAGE_SIZE * sizeof(gen6_pte_t);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002102
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002103 ppgtt->pd_addr = (gen6_pte_t __iomem *)ggtt->gsm +
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002104 ppgtt->pd.base.ggtt_offset / sizeof(gen6_pte_t);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002105
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002106 gen6_scratch_va_range(ppgtt, 0, ppgtt->base.total);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002107
Ben Widawsky678d96f2015-03-16 16:00:56 +00002108 gen6_write_page_range(dev_priv, &ppgtt->pd, 0, ppgtt->base.total);
2109
Thierry Reding440fd522015-01-23 09:05:06 +01002110 DRM_DEBUG_DRIVER("Allocated pde space (%lldM) at GTT entry: %llx\n",
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002111 ppgtt->node.size >> 20,
2112 ppgtt->node.start / PAGE_SIZE);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002113
Daniel Vetterfa76da32014-08-06 20:19:54 +02002114 DRM_DEBUG("Adding PPGTT at offset %x\n",
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002115 ppgtt->pd.base.ggtt_offset << 10);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002116
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002117 return 0;
Daniel Vetter3440d262013-01-24 13:49:56 -08002118}
2119
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002120static int __hw_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08002121{
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002122 ppgtt->base.dev = dev;
Daniel Vetter3440d262013-01-24 13:49:56 -08002123
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002124 if (INTEL_INFO(dev)->gen < 8)
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002125 return gen6_ppgtt_init(ppgtt);
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002126 else
Michel Thierryd7b26332015-04-08 12:13:34 +01002127 return gen8_ppgtt_init(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002128}
Mika Kuoppalac114f762015-06-25 18:35:13 +03002129
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002130static void i915_address_space_init(struct i915_address_space *vm,
2131 struct drm_i915_private *dev_priv)
2132{
2133 drm_mm_init(&vm->mm, vm->start, vm->total);
2134 vm->dev = dev_priv->dev;
2135 INIT_LIST_HEAD(&vm->active_list);
2136 INIT_LIST_HEAD(&vm->inactive_list);
2137 list_add_tail(&vm->global_link, &dev_priv->vm_list);
2138}
2139
Tim Gored5165eb2016-02-04 11:49:34 +00002140static void gtt_write_workarounds(struct drm_device *dev)
2141{
2142 struct drm_i915_private *dev_priv = dev->dev_private;
2143
2144 /* This function is for gtt related workarounds. This function is
2145 * called on driver load and after a GPU reset, so you can place
2146 * workarounds here even if they get overwritten by GPU reset.
2147 */
2148 /* WaIncreaseDefaultTLBEntries:chv,bdw,skl,bxt */
2149 if (IS_BROADWELL(dev))
2150 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_BDW);
2151 else if (IS_CHERRYVIEW(dev))
2152 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_CHV);
2153 else if (IS_SKYLAKE(dev))
2154 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_SKL);
2155 else if (IS_BROXTON(dev))
2156 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_BXT);
2157}
2158
Chris Wilsoncba6dba2016-05-05 11:22:47 +01002159static int i915_ppgtt_init(struct drm_device *dev, struct i915_hw_ppgtt *ppgtt)
Daniel Vetterfa76da32014-08-06 20:19:54 +02002160{
2161 struct drm_i915_private *dev_priv = dev->dev_private;
2162 int ret = 0;
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002163
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002164 ret = __hw_ppgtt_init(dev, ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002165 if (ret == 0) {
Ben Widawskyc7c48df2013-12-06 14:11:15 -08002166 kref_init(&ppgtt->ref);
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002167 i915_address_space_init(&ppgtt->base, dev_priv);
Ben Widawsky93bd8642013-07-16 16:50:06 -07002168 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002169
2170 return ret;
2171}
2172
Daniel Vetter82460d92014-08-06 20:19:53 +02002173int i915_ppgtt_init_hw(struct drm_device *dev)
2174{
Tim Gored5165eb2016-02-04 11:49:34 +00002175 gtt_write_workarounds(dev);
2176
Thomas Daniel671b50132014-08-20 16:24:50 +01002177 /* In the case of execlists, PPGTT is enabled by the context descriptor
2178 * and the PDPs are contained within the context itself. We don't
2179 * need to do anything here. */
2180 if (i915.enable_execlists)
2181 return 0;
2182
Daniel Vetter82460d92014-08-06 20:19:53 +02002183 if (!USES_PPGTT(dev))
2184 return 0;
2185
2186 if (IS_GEN6(dev))
2187 gen6_ppgtt_enable(dev);
2188 else if (IS_GEN7(dev))
2189 gen7_ppgtt_enable(dev);
2190 else if (INTEL_INFO(dev)->gen >= 8)
2191 gen8_ppgtt_enable(dev);
2192 else
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01002193 MISSING_CASE(INTEL_INFO(dev)->gen);
Daniel Vetter82460d92014-08-06 20:19:53 +02002194
John Harrison4ad2fd82015-06-18 13:11:20 +01002195 return 0;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002196}
John Harrison4ad2fd82015-06-18 13:11:20 +01002197
Daniel Vetter4d884702014-08-06 15:04:47 +02002198struct i915_hw_ppgtt *
2199i915_ppgtt_create(struct drm_device *dev, struct drm_i915_file_private *fpriv)
2200{
2201 struct i915_hw_ppgtt *ppgtt;
2202 int ret;
2203
2204 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2205 if (!ppgtt)
2206 return ERR_PTR(-ENOMEM);
2207
2208 ret = i915_ppgtt_init(dev, ppgtt);
2209 if (ret) {
2210 kfree(ppgtt);
2211 return ERR_PTR(ret);
2212 }
2213
2214 ppgtt->file_priv = fpriv;
2215
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002216 trace_i915_ppgtt_create(&ppgtt->base);
2217
Daniel Vetter4d884702014-08-06 15:04:47 +02002218 return ppgtt;
2219}
2220
Daniel Vetteree960be2014-08-06 15:04:45 +02002221void i915_ppgtt_release(struct kref *kref)
2222{
2223 struct i915_hw_ppgtt *ppgtt =
2224 container_of(kref, struct i915_hw_ppgtt, ref);
2225
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002226 trace_i915_ppgtt_release(&ppgtt->base);
2227
Daniel Vetteree960be2014-08-06 15:04:45 +02002228 /* vmas should already be unbound */
2229 WARN_ON(!list_empty(&ppgtt->base.active_list));
2230 WARN_ON(!list_empty(&ppgtt->base.inactive_list));
2231
Daniel Vetter19dd1202014-08-06 15:04:55 +02002232 list_del(&ppgtt->base.global_link);
2233 drm_mm_takedown(&ppgtt->base.mm);
2234
Daniel Vetteree960be2014-08-06 15:04:45 +02002235 ppgtt->base.cleanup(&ppgtt->base);
2236 kfree(ppgtt);
2237}
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002238
Ben Widawskya81cc002013-01-18 12:30:31 -08002239extern int intel_iommu_gfx_mapped;
2240/* Certain Gen5 chipsets require require idling the GPU before
2241 * unmapping anything from the GTT when VT-d is enabled.
2242 */
Daniel Vetter2c642b02015-04-14 17:35:26 +02002243static bool needs_idle_maps(struct drm_device *dev)
Ben Widawskya81cc002013-01-18 12:30:31 -08002244{
2245#ifdef CONFIG_INTEL_IOMMU
2246 /* Query intel_iommu to see if we need the workaround. Presumably that
2247 * was loaded first.
2248 */
2249 if (IS_GEN5(dev) && IS_MOBILE(dev) && intel_iommu_gfx_mapped)
2250 return true;
2251#endif
2252 return false;
2253}
2254
Ben Widawsky5c042282011-10-17 15:51:55 -07002255static bool do_idling(struct drm_i915_private *dev_priv)
2256{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002257 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawsky5c042282011-10-17 15:51:55 -07002258 bool ret = dev_priv->mm.interruptible;
2259
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002260 if (unlikely(ggtt->do_idle_maps)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002261 dev_priv->mm.interruptible = false;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002262 if (i915_gpu_idle(dev_priv->dev)) {
Ben Widawsky5c042282011-10-17 15:51:55 -07002263 DRM_ERROR("Couldn't idle GPU\n");
2264 /* Wait a bit, in hopes it avoids the hang */
2265 udelay(10);
2266 }
2267 }
2268
2269 return ret;
2270}
2271
2272static void undo_idling(struct drm_i915_private *dev_priv, bool interruptible)
2273{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002274 struct i915_ggtt *ggtt = &dev_priv->ggtt;
2275
2276 if (unlikely(ggtt->do_idle_maps))
Ben Widawsky5c042282011-10-17 15:51:55 -07002277 dev_priv->mm.interruptible = interruptible;
2278}
2279
Ben Widawsky828c7902013-10-16 09:21:30 -07002280void i915_check_and_clear_faults(struct drm_device *dev)
2281{
2282 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002283 struct intel_engine_cs *engine;
Ben Widawsky828c7902013-10-16 09:21:30 -07002284
2285 if (INTEL_INFO(dev)->gen < 6)
2286 return;
2287
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002288 for_each_engine(engine, dev_priv) {
Ben Widawsky828c7902013-10-16 09:21:30 -07002289 u32 fault_reg;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002290 fault_reg = I915_READ(RING_FAULT_REG(engine));
Ben Widawsky828c7902013-10-16 09:21:30 -07002291 if (fault_reg & RING_FAULT_VALID) {
2292 DRM_DEBUG_DRIVER("Unexpected fault\n"
Paulo Zanoni59a5d292014-10-30 15:52:45 -02002293 "\tAddr: 0x%08lx\n"
Ben Widawsky828c7902013-10-16 09:21:30 -07002294 "\tAddress space: %s\n"
2295 "\tSource ID: %d\n"
2296 "\tType: %d\n",
2297 fault_reg & PAGE_MASK,
2298 fault_reg & RING_FAULT_GTTSEL_MASK ? "GGTT" : "PPGTT",
2299 RING_FAULT_SRCID(fault_reg),
2300 RING_FAULT_FAULT_TYPE(fault_reg));
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002301 I915_WRITE(RING_FAULT_REG(engine),
Ben Widawsky828c7902013-10-16 09:21:30 -07002302 fault_reg & ~RING_FAULT_VALID);
2303 }
2304 }
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00002305 POSTING_READ(RING_FAULT_REG(&dev_priv->engine[RCS]));
Ben Widawsky828c7902013-10-16 09:21:30 -07002306}
2307
Chris Wilson91e56492014-09-25 10:13:12 +01002308static void i915_ggtt_flush(struct drm_i915_private *dev_priv)
2309{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002310 if (INTEL_INFO(dev_priv)->gen < 6) {
Chris Wilson91e56492014-09-25 10:13:12 +01002311 intel_gtt_chipset_flush();
2312 } else {
2313 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2314 POSTING_READ(GFX_FLSH_CNTL_GEN6);
2315 }
2316}
2317
Ben Widawsky828c7902013-10-16 09:21:30 -07002318void i915_gem_suspend_gtt_mappings(struct drm_device *dev)
2319{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002320 struct drm_i915_private *dev_priv = to_i915(dev);
2321 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawsky828c7902013-10-16 09:21:30 -07002322
2323 /* Don't bother messing with faults pre GEN6 as we have little
2324 * documentation supporting that it's a good idea.
2325 */
2326 if (INTEL_INFO(dev)->gen < 6)
2327 return;
2328
2329 i915_check_and_clear_faults(dev);
2330
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002331 ggtt->base.clear_range(&ggtt->base, ggtt->base.start, ggtt->base.total,
2332 true);
Chris Wilson91e56492014-09-25 10:13:12 +01002333
2334 i915_ggtt_flush(dev_priv);
Ben Widawsky828c7902013-10-16 09:21:30 -07002335}
2336
Daniel Vetter74163902012-02-15 23:50:21 +01002337int i915_gem_gtt_prepare_object(struct drm_i915_gem_object *obj)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002338{
Chris Wilson9da3da62012-06-01 15:20:22 +01002339 if (!dma_map_sg(&obj->base.dev->pdev->dev,
2340 obj->pages->sgl, obj->pages->nents,
2341 PCI_DMA_BIDIRECTIONAL))
2342 return -ENOSPC;
2343
2344 return 0;
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002345}
2346
Daniel Vetter2c642b02015-04-14 17:35:26 +02002347static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002348{
2349#ifdef writeq
2350 writeq(pte, addr);
2351#else
2352 iowrite32((u32)pte, addr);
2353 iowrite32(pte >> 32, addr + 4);
2354#endif
2355}
2356
2357static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
2358 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002359 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302360 enum i915_cache_level level, u32 unused)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002361{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002362 struct drm_i915_private *dev_priv = to_i915(vm->dev);
Chris Wilsonce7fda22016-04-28 09:56:38 +01002363 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Ben Widawsky782f1492014-02-20 11:50:33 -08002364 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002365 gen8_pte_t __iomem *gtt_entries =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002366 (gen8_pte_t __iomem *)ggtt->gsm + first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002367 int i = 0;
2368 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002369 dma_addr_t addr = 0; /* shut up gcc */
Imre Deakbe694592015-12-15 20:10:38 +02002370 int rpm_atomic_seq;
2371
2372 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002373
2374 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
2375 addr = sg_dma_address(sg_iter.sg) +
2376 (sg_iter.sg_pgoffset << PAGE_SHIFT);
2377 gen8_set_pte(&gtt_entries[i],
2378 gen8_pte_encode(addr, level, true));
2379 i++;
2380 }
2381
2382 /*
2383 * XXX: This serves as a posting read to make sure that the PTE has
2384 * actually been updated. There is some concern that even though
2385 * registers and PTEs are within the same BAR that they are potentially
2386 * of NUMA access patterns. Therefore, even with the way we assume
2387 * hardware should work, we must keep this posting read for paranoia.
2388 */
2389 if (i != 0)
2390 WARN_ON(readq(&gtt_entries[i-1])
2391 != gen8_pte_encode(addr, level, true));
2392
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002393 /* This next bit makes the above posting read even more important. We
2394 * want to flush the TLBs only after we're certain all the PTE updates
2395 * have finished.
2396 */
2397 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2398 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Imre Deakbe694592015-12-15 20:10:38 +02002399
2400 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002401}
2402
Chris Wilsonc1403302015-11-18 15:19:39 +00002403struct insert_entries {
2404 struct i915_address_space *vm;
2405 struct sg_table *st;
2406 uint64_t start;
2407 enum i915_cache_level level;
2408 u32 flags;
2409};
2410
2411static int gen8_ggtt_insert_entries__cb(void *_arg)
2412{
2413 struct insert_entries *arg = _arg;
2414 gen8_ggtt_insert_entries(arg->vm, arg->st,
2415 arg->start, arg->level, arg->flags);
2416 return 0;
2417}
2418
2419static void gen8_ggtt_insert_entries__BKL(struct i915_address_space *vm,
2420 struct sg_table *st,
2421 uint64_t start,
2422 enum i915_cache_level level,
2423 u32 flags)
2424{
2425 struct insert_entries arg = { vm, st, start, level, flags };
2426 stop_machine(gen8_ggtt_insert_entries__cb, &arg, NULL);
2427}
2428
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002429/*
2430 * Binds an object into the global gtt with the specified cache level. The object
2431 * will be accessible to the GPU via commands whose operands reference offsets
2432 * within the global GTT as well as accessible by the GPU through the GMADR
2433 * mapped BAR (dev_priv->mm.gtt->gtt).
2434 */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002435static void gen6_ggtt_insert_entries(struct i915_address_space *vm,
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002436 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002437 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302438 enum i915_cache_level level, u32 flags)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002439{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002440 struct drm_i915_private *dev_priv = to_i915(vm->dev);
Chris Wilsonce7fda22016-04-28 09:56:38 +01002441 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Ben Widawsky782f1492014-02-20 11:50:33 -08002442 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002443 gen6_pte_t __iomem *gtt_entries =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002444 (gen6_pte_t __iomem *)ggtt->gsm + first_entry;
Imre Deak6e995e22013-02-18 19:28:04 +02002445 int i = 0;
2446 struct sg_page_iter sg_iter;
Pavel Machek57007df2014-07-28 13:20:58 +02002447 dma_addr_t addr = 0;
Imre Deakbe694592015-12-15 20:10:38 +02002448 int rpm_atomic_seq;
2449
2450 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002451
Imre Deak6e995e22013-02-18 19:28:04 +02002452 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02002453 addr = sg_page_iter_dma_address(&sg_iter);
Akash Goel24f3a8c2014-06-17 10:59:42 +05302454 iowrite32(vm->pte_encode(addr, level, true, flags), &gtt_entries[i]);
Imre Deak6e995e22013-02-18 19:28:04 +02002455 i++;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002456 }
2457
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002458 /* XXX: This serves as a posting read to make sure that the PTE has
2459 * actually been updated. There is some concern that even though
2460 * registers and PTEs are within the same BAR that they are potentially
2461 * of NUMA access patterns. Therefore, even with the way we assume
2462 * hardware should work, we must keep this posting read for paranoia.
2463 */
Pavel Machek57007df2014-07-28 13:20:58 +02002464 if (i != 0) {
2465 unsigned long gtt = readl(&gtt_entries[i-1]);
2466 WARN_ON(gtt != vm->pte_encode(addr, level, true, flags));
2467 }
Ben Widawsky0f9b91c2012-11-04 09:21:30 -08002468
2469 /* This next bit makes the above posting read even more important. We
2470 * want to flush the TLBs only after we're certain all the PTE updates
2471 * have finished.
2472 */
2473 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
2474 POSTING_READ(GFX_FLSH_CNTL_GEN6);
Imre Deakbe694592015-12-15 20:10:38 +02002475
2476 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002477}
2478
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002479static void gen8_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002480 uint64_t start,
2481 uint64_t length,
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002482 bool use_scratch)
2483{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002484 struct drm_i915_private *dev_priv = to_i915(vm->dev);
Chris Wilsonce7fda22016-04-28 09:56:38 +01002485 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Ben Widawsky782f1492014-02-20 11:50:33 -08002486 unsigned first_entry = start >> PAGE_SHIFT;
2487 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002488 gen8_pte_t scratch_pte, __iomem *gtt_base =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002489 (gen8_pte_t __iomem *)ggtt->gsm + first_entry;
2490 const int max_entries = ggtt_total_entries(ggtt) - first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002491 int i;
Imre Deakbe694592015-12-15 20:10:38 +02002492 int rpm_atomic_seq;
2493
2494 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002495
2496 if (WARN(num_entries > max_entries,
2497 "First entry = %d; Num entries = %d (max=%d)\n",
2498 first_entry, num_entries, max_entries))
2499 num_entries = max_entries;
2500
Mika Kuoppalac114f762015-06-25 18:35:13 +03002501 scratch_pte = gen8_pte_encode(px_dma(vm->scratch_page),
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002502 I915_CACHE_LLC,
2503 use_scratch);
2504 for (i = 0; i < num_entries; i++)
2505 gen8_set_pte(&gtt_base[i], scratch_pte);
2506 readl(gtt_base);
Imre Deakbe694592015-12-15 20:10:38 +02002507
2508 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002509}
2510
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002511static void gen6_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002512 uint64_t start,
2513 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002514 bool use_scratch)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002515{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002516 struct drm_i915_private *dev_priv = to_i915(vm->dev);
Chris Wilsonce7fda22016-04-28 09:56:38 +01002517 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Ben Widawsky782f1492014-02-20 11:50:33 -08002518 unsigned first_entry = start >> PAGE_SHIFT;
2519 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002520 gen6_pte_t scratch_pte, __iomem *gtt_base =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002521 (gen6_pte_t __iomem *)ggtt->gsm + first_entry;
2522 const int max_entries = ggtt_total_entries(ggtt) - first_entry;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002523 int i;
Imre Deakbe694592015-12-15 20:10:38 +02002524 int rpm_atomic_seq;
2525
2526 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002527
2528 if (WARN(num_entries > max_entries,
2529 "First entry = %d; Num entries = %d (max=%d)\n",
2530 first_entry, num_entries, max_entries))
2531 num_entries = max_entries;
2532
Mika Kuoppalac114f762015-06-25 18:35:13 +03002533 scratch_pte = vm->pte_encode(px_dma(vm->scratch_page),
2534 I915_CACHE_LLC, use_scratch, 0);
Ben Widawsky828c7902013-10-16 09:21:30 -07002535
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002536 for (i = 0; i < num_entries; i++)
2537 iowrite32(scratch_pte, &gtt_base[i]);
2538 readl(gtt_base);
Imre Deakbe694592015-12-15 20:10:38 +02002539
2540 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002541}
2542
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002543static void i915_ggtt_insert_entries(struct i915_address_space *vm,
2544 struct sg_table *pages,
2545 uint64_t start,
2546 enum i915_cache_level cache_level, u32 unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002547{
Imre Deakbe694592015-12-15 20:10:38 +02002548 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002549 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
2550 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
Imre Deakbe694592015-12-15 20:10:38 +02002551 int rpm_atomic_seq;
2552
2553 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002554
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002555 intel_gtt_insert_sg_entries(pages, start >> PAGE_SHIFT, flags);
Daniel Vetter08755462015-04-20 09:04:05 -07002556
Imre Deakbe694592015-12-15 20:10:38 +02002557 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
2558
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002559}
2560
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002561static void i915_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002562 uint64_t start,
2563 uint64_t length,
Ben Widawsky828c7902013-10-16 09:21:30 -07002564 bool unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002565{
Imre Deakbe694592015-12-15 20:10:38 +02002566 struct drm_i915_private *dev_priv = vm->dev->dev_private;
Ben Widawsky782f1492014-02-20 11:50:33 -08002567 unsigned first_entry = start >> PAGE_SHIFT;
2568 unsigned num_entries = length >> PAGE_SHIFT;
Imre Deakbe694592015-12-15 20:10:38 +02002569 int rpm_atomic_seq;
2570
2571 rpm_atomic_seq = assert_rpm_atomic_begin(dev_priv);
2572
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002573 intel_gtt_clear_range(first_entry, num_entries);
Imre Deakbe694592015-12-15 20:10:38 +02002574
2575 assert_rpm_atomic_end(dev_priv, rpm_atomic_seq);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002576}
2577
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002578static int ggtt_bind_vma(struct i915_vma *vma,
2579 enum i915_cache_level cache_level,
2580 u32 flags)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002581{
Daniel Vetter0a878712015-10-15 14:23:01 +02002582 struct drm_i915_gem_object *obj = vma->obj;
2583 u32 pte_flags = 0;
2584 int ret;
2585
2586 ret = i915_get_ggtt_vma_pages(vma);
2587 if (ret)
2588 return ret;
2589
2590 /* Currently applicable only to VLV */
2591 if (obj->gt_ro)
2592 pte_flags |= PTE_READ_ONLY;
2593
2594 vma->vm->insert_entries(vma->vm, vma->ggtt_view.pages,
2595 vma->node.start,
2596 cache_level, pte_flags);
2597
2598 /*
2599 * Without aliasing PPGTT there's no difference between
2600 * GLOBAL/LOCAL_BIND, it's all the same ptes. Hence unconditionally
2601 * upgrade to both bound if we bind either to avoid double-binding.
2602 */
2603 vma->bound |= GLOBAL_BIND | LOCAL_BIND;
2604
2605 return 0;
2606}
2607
2608static int aliasing_gtt_bind_vma(struct i915_vma *vma,
2609 enum i915_cache_level cache_level,
2610 u32 flags)
2611{
Chris Wilson321d1782015-11-20 10:27:18 +00002612 u32 pte_flags;
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002613 int ret;
2614
2615 ret = i915_get_ggtt_vma_pages(vma);
2616 if (ret)
2617 return ret;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002618
Akash Goel24f3a8c2014-06-17 10:59:42 +05302619 /* Currently applicable only to VLV */
Chris Wilson321d1782015-11-20 10:27:18 +00002620 pte_flags = 0;
2621 if (vma->obj->gt_ro)
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002622 pte_flags |= PTE_READ_ONLY;
Akash Goel24f3a8c2014-06-17 10:59:42 +05302623
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002624
Daniel Vetter0a878712015-10-15 14:23:01 +02002625 if (flags & GLOBAL_BIND) {
Chris Wilson321d1782015-11-20 10:27:18 +00002626 vma->vm->insert_entries(vma->vm,
2627 vma->ggtt_view.pages,
Daniel Vetter08755462015-04-20 09:04:05 -07002628 vma->node.start,
2629 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002630 }
Daniel Vetter74898d72012-02-15 23:50:22 +01002631
Daniel Vetter0a878712015-10-15 14:23:01 +02002632 if (flags & LOCAL_BIND) {
Chris Wilson321d1782015-11-20 10:27:18 +00002633 struct i915_hw_ppgtt *appgtt =
2634 to_i915(vma->vm->dev)->mm.aliasing_ppgtt;
2635 appgtt->base.insert_entries(&appgtt->base,
2636 vma->ggtt_view.pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08002637 vma->node.start,
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002638 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002639 }
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002640
2641 return 0;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002642}
2643
2644static void ggtt_unbind_vma(struct i915_vma *vma)
2645{
2646 struct drm_device *dev = vma->vm->dev;
2647 struct drm_i915_private *dev_priv = dev->dev_private;
2648 struct drm_i915_gem_object *obj = vma->obj;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002649 const uint64_t size = min_t(uint64_t,
2650 obj->base.size,
2651 vma->node.size);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002652
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002653 if (vma->bound & GLOBAL_BIND) {
Ben Widawsky782f1492014-02-20 11:50:33 -08002654 vma->vm->clear_range(vma->vm,
2655 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002656 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002657 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002658 }
2659
Daniel Vetter08755462015-04-20 09:04:05 -07002660 if (dev_priv->mm.aliasing_ppgtt && vma->bound & LOCAL_BIND) {
Ben Widawsky6f65e292013-12-06 14:10:56 -08002661 struct i915_hw_ppgtt *appgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002662
Ben Widawsky6f65e292013-12-06 14:10:56 -08002663 appgtt->base.clear_range(&appgtt->base,
Ben Widawsky782f1492014-02-20 11:50:33 -08002664 vma->node.start,
Joonas Lahtinen06615ee2015-04-24 15:09:03 +03002665 size,
Ben Widawsky6f65e292013-12-06 14:10:56 -08002666 true);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002667 }
Daniel Vetter74163902012-02-15 23:50:21 +01002668}
2669
2670void i915_gem_gtt_finish_object(struct drm_i915_gem_object *obj)
2671{
Ben Widawsky5c042282011-10-17 15:51:55 -07002672 struct drm_device *dev = obj->base.dev;
2673 struct drm_i915_private *dev_priv = dev->dev_private;
2674 bool interruptible;
2675
2676 interruptible = do_idling(dev_priv);
2677
Imre Deak5ec5b512015-07-08 19:18:59 +03002678 dma_unmap_sg(&dev->pdev->dev, obj->pages->sgl, obj->pages->nents,
2679 PCI_DMA_BIDIRECTIONAL);
Ben Widawsky5c042282011-10-17 15:51:55 -07002680
2681 undo_idling(dev_priv, interruptible);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002682}
Daniel Vetter644ec022012-03-26 09:45:40 +02002683
Chris Wilson42d6ab42012-07-26 11:49:32 +01002684static void i915_gtt_color_adjust(struct drm_mm_node *node,
2685 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +01002686 u64 *start,
2687 u64 *end)
Chris Wilson42d6ab42012-07-26 11:49:32 +01002688{
2689 if (node->color != color)
2690 *start += 4096;
2691
2692 if (!list_empty(&node->node_list)) {
2693 node = list_entry(node->node_list.next,
2694 struct drm_mm_node,
2695 node_list);
2696 if (node->allocated && node->color != color)
2697 *end -= 4096;
2698 }
2699}
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002700
Daniel Vetterf548c0e2014-11-19 21:40:13 +01002701static int i915_gem_setup_global_gtt(struct drm_device *dev,
Michel Thierry088e0df2015-08-07 17:40:17 +01002702 u64 start,
2703 u64 mappable_end,
2704 u64 end)
Daniel Vetter644ec022012-03-26 09:45:40 +02002705{
Ben Widawskye78891c2013-01-25 16:41:04 -08002706 /* Let GEM Manage all of the aperture.
2707 *
2708 * However, leave one page at the end still bound to the scratch page.
2709 * There are a number of places where the hardware apparently prefetches
2710 * past the end of the object, and we've seen multiple hangs with the
2711 * GPU head pointer stuck in a batchbuffer bound at the last page of the
2712 * aperture. One page should be enough to keep any prefetching inside
2713 * of the aperture.
2714 */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002715 struct drm_i915_private *dev_priv = to_i915(dev);
2716 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilsoned2f3452012-11-15 11:32:19 +00002717 struct drm_mm_node *entry;
2718 struct drm_i915_gem_object *obj;
2719 unsigned long hole_start, hole_end;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002720 int ret;
Daniel Vetter644ec022012-03-26 09:45:40 +02002721
Ben Widawsky35451cb2013-01-17 12:45:13 -08002722 BUG_ON(mappable_end > end);
2723
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002724 ggtt->base.start = start;
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002725
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002726 /* Subtract the guard page before address space initialization to
2727 * shrink the range used by drm_mm */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002728 ggtt->base.total = end - start - PAGE_SIZE;
2729 i915_address_space_init(&ggtt->base, dev_priv);
2730 ggtt->base.total += PAGE_SIZE;
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002731
2732 if (intel_vgpu_active(dev)) {
2733 ret = intel_vgt_balloon(dev);
2734 if (ret)
2735 return ret;
2736 }
2737
Chris Wilson42d6ab42012-07-26 11:49:32 +01002738 if (!HAS_LLC(dev))
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002739 ggtt->base.mm.color_adjust = i915_gtt_color_adjust;
Daniel Vetter644ec022012-03-26 09:45:40 +02002740
Chris Wilsoned2f3452012-11-15 11:32:19 +00002741 /* Mark any preallocated objects as occupied */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002742 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002743 struct i915_vma *vma = i915_gem_obj_to_vma(obj, &ggtt->base);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002744
Michel Thierry088e0df2015-08-07 17:40:17 +01002745 DRM_DEBUG_KMS("reserving preallocated space: %llx + %zx\n",
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002746 i915_gem_obj_ggtt_offset(obj), obj->base.size);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002747
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002748 WARN_ON(i915_gem_obj_ggtt_bound(obj));
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002749 ret = drm_mm_reserve_node(&ggtt->base.mm, &vma->node);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002750 if (ret) {
2751 DRM_DEBUG_KMS("Reservation failed: %i\n", ret);
2752 return ret;
2753 }
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01002754 vma->bound |= GLOBAL_BIND;
Chris Wilsond0710ab2015-11-20 14:16:39 +00002755 __i915_vma_set_map_and_fenceable(vma);
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002756 list_add_tail(&vma->vm_link, &ggtt->base.inactive_list);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002757 }
2758
Chris Wilsoned2f3452012-11-15 11:32:19 +00002759 /* Clear any non-preallocated blocks */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002760 drm_mm_for_each_hole(entry, &ggtt->base.mm, hole_start, hole_end) {
Chris Wilsoned2f3452012-11-15 11:32:19 +00002761 DRM_DEBUG_KMS("clearing unused GTT space: [%lx, %lx]\n",
2762 hole_start, hole_end);
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002763 ggtt->base.clear_range(&ggtt->base, hole_start,
Ben Widawsky782f1492014-02-20 11:50:33 -08002764 hole_end - hole_start, true);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002765 }
2766
2767 /* And finally clear the reserved guard page */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002768 ggtt->base.clear_range(&ggtt->base, end - PAGE_SIZE, PAGE_SIZE, true);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002769
Daniel Vetterfa76da32014-08-06 20:19:54 +02002770 if (USES_PPGTT(dev) && !USES_FULL_PPGTT(dev)) {
2771 struct i915_hw_ppgtt *ppgtt;
2772
2773 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2774 if (!ppgtt)
2775 return -ENOMEM;
2776
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002777 ret = __hw_ppgtt_init(dev, ppgtt);
Michel Thierry4933d512015-03-24 15:46:22 +00002778 if (ret) {
Daniel Vetter061dd492015-04-14 17:35:13 +02002779 ppgtt->base.cleanup(&ppgtt->base);
Michel Thierry4933d512015-03-24 15:46:22 +00002780 kfree(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002781 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002782 }
Daniel Vetterfa76da32014-08-06 20:19:54 +02002783
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002784 if (ppgtt->base.allocate_va_range)
2785 ret = ppgtt->base.allocate_va_range(&ppgtt->base, 0,
2786 ppgtt->base.total);
2787 if (ret) {
2788 ppgtt->base.cleanup(&ppgtt->base);
2789 kfree(ppgtt);
2790 return ret;
2791 }
2792
2793 ppgtt->base.clear_range(&ppgtt->base,
2794 ppgtt->base.start,
2795 ppgtt->base.total,
2796 true);
2797
Daniel Vetterfa76da32014-08-06 20:19:54 +02002798 dev_priv->mm.aliasing_ppgtt = ppgtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002799 WARN_ON(ggtt->base.bind_vma != ggtt_bind_vma);
2800 ggtt->base.bind_vma = aliasing_gtt_bind_vma;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002801 }
2802
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002803 return 0;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002804}
2805
Joonas Lahtinend85489d2016-03-24 16:47:46 +02002806/**
2807 * i915_gem_init_ggtt - Initialize GEM for Global GTT
2808 * @dev: DRM device
2809 */
2810void i915_gem_init_ggtt(struct drm_device *dev)
Ben Widawskyd7e50082012-12-18 10:31:25 -08002811{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002812 struct drm_i915_private *dev_priv = to_i915(dev);
2813 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskyd7e50082012-12-18 10:31:25 -08002814
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002815 i915_gem_setup_global_gtt(dev, 0, ggtt->mappable_end, ggtt->base.total);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002816}
2817
Joonas Lahtinend85489d2016-03-24 16:47:46 +02002818/**
2819 * i915_ggtt_cleanup_hw - Clean up GGTT hardware initialization
2820 * @dev: DRM device
2821 */
2822void i915_ggtt_cleanup_hw(struct drm_device *dev)
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002823{
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;
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002826
Daniel Vetter70e32542014-08-06 15:04:57 +02002827 if (dev_priv->mm.aliasing_ppgtt) {
2828 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2829
2830 ppgtt->base.cleanup(&ppgtt->base);
2831 }
2832
Imre Deaka4eba472016-01-19 15:26:32 +02002833 i915_gem_cleanup_stolen(dev);
2834
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002835 if (drm_mm_initialized(&ggtt->base.mm)) {
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002836 if (intel_vgpu_active(dev))
2837 intel_vgt_deballoon();
2838
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002839 drm_mm_takedown(&ggtt->base.mm);
2840 list_del(&ggtt->base.global_link);
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002841 }
2842
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002843 ggtt->base.cleanup(&ggtt->base);
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002844}
Daniel Vetter70e32542014-08-06 15:04:57 +02002845
Daniel Vetter2c642b02015-04-14 17:35:26 +02002846static unsigned int gen6_get_total_gtt_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002847{
2848 snb_gmch_ctl >>= SNB_GMCH_GGMS_SHIFT;
2849 snb_gmch_ctl &= SNB_GMCH_GGMS_MASK;
2850 return snb_gmch_ctl << 20;
2851}
2852
Daniel Vetter2c642b02015-04-14 17:35:26 +02002853static unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002854{
2855 bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
2856 bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
2857 if (bdw_gmch_ctl)
2858 bdw_gmch_ctl = 1 << bdw_gmch_ctl;
Ben Widawsky562d55d2014-05-27 16:53:08 -07002859
2860#ifdef CONFIG_X86_32
2861 /* Limit 32b platforms to a 2GB GGTT: 4 << 20 / pte size * PAGE_SIZE */
2862 if (bdw_gmch_ctl > 4)
2863 bdw_gmch_ctl = 4;
2864#endif
2865
Ben Widawsky9459d252013-11-03 16:53:55 -08002866 return bdw_gmch_ctl << 20;
2867}
2868
Daniel Vetter2c642b02015-04-14 17:35:26 +02002869static unsigned int chv_get_total_gtt_size(u16 gmch_ctrl)
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002870{
2871 gmch_ctrl >>= SNB_GMCH_GGMS_SHIFT;
2872 gmch_ctrl &= SNB_GMCH_GGMS_MASK;
2873
2874 if (gmch_ctrl)
2875 return 1 << (20 + gmch_ctrl);
2876
2877 return 0;
2878}
2879
Daniel Vetter2c642b02015-04-14 17:35:26 +02002880static size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002881{
2882 snb_gmch_ctl >>= SNB_GMCH_GMS_SHIFT;
2883 snb_gmch_ctl &= SNB_GMCH_GMS_MASK;
2884 return snb_gmch_ctl << 25; /* 32 MB units */
2885}
2886
Daniel Vetter2c642b02015-04-14 17:35:26 +02002887static size_t gen8_get_stolen_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002888{
2889 bdw_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2890 bdw_gmch_ctl &= BDW_GMCH_GMS_MASK;
2891 return bdw_gmch_ctl << 25; /* 32 MB units */
2892}
2893
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002894static size_t chv_get_stolen_size(u16 gmch_ctrl)
2895{
2896 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
2897 gmch_ctrl &= SNB_GMCH_GMS_MASK;
2898
2899 /*
2900 * 0x0 to 0x10: 32MB increments starting at 0MB
2901 * 0x11 to 0x16: 4MB increments starting at 8MB
2902 * 0x17 to 0x1d: 4MB increments start at 36MB
2903 */
2904 if (gmch_ctrl < 0x11)
2905 return gmch_ctrl << 25;
2906 else if (gmch_ctrl < 0x17)
2907 return (gmch_ctrl - 0x11 + 2) << 22;
2908 else
2909 return (gmch_ctrl - 0x17 + 9) << 22;
2910}
2911
Damien Lespiau66375012014-01-09 18:02:46 +00002912static size_t gen9_get_stolen_size(u16 gen9_gmch_ctl)
2913{
2914 gen9_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2915 gen9_gmch_ctl &= BDW_GMCH_GMS_MASK;
2916
2917 if (gen9_gmch_ctl < 0xf0)
2918 return gen9_gmch_ctl << 25; /* 32 MB units */
2919 else
2920 /* 4MB increments starting at 0xf0 for 4MB */
2921 return (gen9_gmch_ctl - 0xf0 + 1) << 22;
2922}
2923
Ben Widawsky63340132013-11-04 19:32:22 -08002924static int ggtt_probe_common(struct drm_device *dev,
2925 size_t gtt_size)
2926{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002927 struct drm_i915_private *dev_priv = to_i915(dev);
2928 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002929 struct i915_page_scratch *scratch_page;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002930 phys_addr_t ggtt_phys_addr;
Ben Widawsky63340132013-11-04 19:32:22 -08002931
2932 /* For Modern GENs the PTEs and register space are split in the BAR */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002933 ggtt_phys_addr = pci_resource_start(dev->pdev, 0) +
2934 (pci_resource_len(dev->pdev, 0) / 2);
Ben Widawsky63340132013-11-04 19:32:22 -08002935
Imre Deak2a073f892015-03-27 13:07:33 +02002936 /*
2937 * On BXT writes larger than 64 bit to the GTT pagetable range will be
2938 * dropped. For WC mappings in general we have 64 byte burst writes
2939 * when the WC buffer is flushed, so we can't use it, but have to
2940 * resort to an uncached mapping. The WC issue is easily caught by the
2941 * readback check when writing GTT PTE entries.
2942 */
2943 if (IS_BROXTON(dev))
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002944 ggtt->gsm = ioremap_nocache(ggtt_phys_addr, gtt_size);
Imre Deak2a073f892015-03-27 13:07:33 +02002945 else
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002946 ggtt->gsm = ioremap_wc(ggtt_phys_addr, gtt_size);
2947 if (!ggtt->gsm) {
Ben Widawsky63340132013-11-04 19:32:22 -08002948 DRM_ERROR("Failed to map the gtt page table\n");
2949 return -ENOMEM;
2950 }
2951
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002952 scratch_page = alloc_scratch_page(dev);
2953 if (IS_ERR(scratch_page)) {
Ben Widawsky63340132013-11-04 19:32:22 -08002954 DRM_ERROR("Scratch setup failed\n");
2955 /* iounmap will also get called at remove, but meh */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002956 iounmap(ggtt->gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002957 return PTR_ERR(scratch_page);
Ben Widawsky63340132013-11-04 19:32:22 -08002958 }
2959
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002960 ggtt->base.scratch_page = scratch_page;
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002961
2962 return 0;
Ben Widawsky63340132013-11-04 19:32:22 -08002963}
2964
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002965/* The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
2966 * bits. When using advanced contexts each context stores its own PAT, but
2967 * writing this data shouldn't be harmful even in those cases. */
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002968static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv)
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002969{
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002970 uint64_t pat;
2971
2972 pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) | /* for normal objects, no eLLC */
2973 GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) | /* for something pointing to ptes? */
2974 GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC) | /* for scanout with eLLC */
2975 GEN8_PPAT(3, GEN8_PPAT_UC) | /* Uncached objects, mostly for scanout */
2976 GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
2977 GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
2978 GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
2979 GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
2980
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002981 if (!USES_PPGTT(dev_priv))
Rodrigo Vivid6a8b722014-11-05 16:56:36 -08002982 /* Spec: "For GGTT, there is NO pat_sel[2:0] from the entry,
2983 * so RTL will always use the value corresponding to
2984 * pat_sel = 000".
2985 * So let's disable cache for GGTT to avoid screen corruptions.
2986 * MOCS still can be used though.
2987 * - System agent ggtt writes (i.e. cpu gtt mmaps) already work
2988 * before this patch, i.e. the same uncached + snooping access
2989 * like on gen6/7 seems to be in effect.
2990 * - So this just fixes blitter/render access. Again it looks
2991 * like it's not just uncached access, but uncached + snooping.
2992 * So we can still hold onto all our assumptions wrt cpu
2993 * clflushing on LLC machines.
2994 */
2995 pat = GEN8_PPAT(0, GEN8_PPAT_UC);
2996
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002997 /* XXX: spec defines this as 2 distinct registers. It's unclear if a 64b
2998 * write would work. */
Ville Syrjälä7e435ad2015-09-18 20:03:25 +03002999 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
3000 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08003001}
3002
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003003static void chv_setup_private_ppat(struct drm_i915_private *dev_priv)
3004{
3005 uint64_t pat;
3006
3007 /*
3008 * Map WB on BDW to snooped on CHV.
3009 *
3010 * Only the snoop bit has meaning for CHV, the rest is
3011 * ignored.
3012 *
Ville Syrjäläcf3d2622014-11-14 21:02:44 +02003013 * The hardware will never snoop for certain types of accesses:
3014 * - CPU GTT (GMADR->GGTT->no snoop->memory)
3015 * - PPGTT page tables
3016 * - some other special cycles
3017 *
3018 * As with BDW, we also need to consider the following for GT accesses:
3019 * "For GGTT, there is NO pat_sel[2:0] from the entry,
3020 * so RTL will always use the value corresponding to
3021 * pat_sel = 000".
3022 * Which means we must set the snoop bit in PAT entry 0
3023 * in order to keep the global status page working.
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003024 */
3025 pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
3026 GEN8_PPAT(1, 0) |
3027 GEN8_PPAT(2, 0) |
3028 GEN8_PPAT(3, 0) |
3029 GEN8_PPAT(4, CHV_PPAT_SNOOP) |
3030 GEN8_PPAT(5, CHV_PPAT_SNOOP) |
3031 GEN8_PPAT(6, CHV_PPAT_SNOOP) |
3032 GEN8_PPAT(7, CHV_PPAT_SNOOP);
3033
Ville Syrjälä7e435ad2015-09-18 20:03:25 +03003034 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
3035 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003036}
3037
Joonas Lahtinend507d732016-03-18 10:42:58 +02003038static int gen8_gmch_probe(struct i915_ggtt *ggtt)
Ben Widawsky63340132013-11-04 19:32:22 -08003039{
Joonas Lahtinend507d732016-03-18 10:42:58 +02003040 struct drm_device *dev = ggtt->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003041 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawsky63340132013-11-04 19:32:22 -08003042 u16 snb_gmch_ctl;
3043 int ret;
3044
3045 /* TODO: We're not aware of mappable constraints on gen8 yet */
Joonas Lahtinend507d732016-03-18 10:42:58 +02003046 ggtt->mappable_base = pci_resource_start(dev->pdev, 2);
3047 ggtt->mappable_end = pci_resource_len(dev->pdev, 2);
Ben Widawsky63340132013-11-04 19:32:22 -08003048
3049 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(39)))
3050 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(39));
3051
3052 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
3053
Damien Lespiau66375012014-01-09 18:02:46 +00003054 if (INTEL_INFO(dev)->gen >= 9) {
Joonas Lahtinend507d732016-03-18 10:42:58 +02003055 ggtt->stolen_size = gen9_get_stolen_size(snb_gmch_ctl);
3056 ggtt->size = gen8_get_total_gtt_size(snb_gmch_ctl);
Damien Lespiau66375012014-01-09 18:02:46 +00003057 } else if (IS_CHERRYVIEW(dev)) {
Joonas Lahtinend507d732016-03-18 10:42:58 +02003058 ggtt->stolen_size = chv_get_stolen_size(snb_gmch_ctl);
3059 ggtt->size = chv_get_total_gtt_size(snb_gmch_ctl);
Damien Lespiaud7f25f22014-05-08 22:19:40 +03003060 } else {
Joonas Lahtinend507d732016-03-18 10:42:58 +02003061 ggtt->stolen_size = gen8_get_stolen_size(snb_gmch_ctl);
3062 ggtt->size = gen8_get_total_gtt_size(snb_gmch_ctl);
Damien Lespiaud7f25f22014-05-08 22:19:40 +03003063 }
Ben Widawsky63340132013-11-04 19:32:22 -08003064
Joonas Lahtinend507d732016-03-18 10:42:58 +02003065 ggtt->base.total = (ggtt->size / sizeof(gen8_pte_t)) << PAGE_SHIFT;
Ben Widawsky63340132013-11-04 19:32:22 -08003066
Sumit Singh5a4e33a2015-03-17 11:39:31 +02003067 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003068 chv_setup_private_ppat(dev_priv);
3069 else
3070 bdw_setup_private_ppat(dev_priv);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08003071
Joonas Lahtinend507d732016-03-18 10:42:58 +02003072 ret = ggtt_probe_common(dev, ggtt->size);
Ben Widawsky63340132013-11-04 19:32:22 -08003073
Joonas Lahtinend507d732016-03-18 10:42:58 +02003074 ggtt->base.clear_range = gen8_ggtt_clear_range;
Chris Wilsonc1403302015-11-18 15:19:39 +00003075 if (IS_CHERRYVIEW(dev_priv))
Joonas Lahtinend507d732016-03-18 10:42:58 +02003076 ggtt->base.insert_entries = gen8_ggtt_insert_entries__BKL;
3077 else
3078 ggtt->base.insert_entries = gen8_ggtt_insert_entries;
3079 ggtt->base.bind_vma = ggtt_bind_vma;
3080 ggtt->base.unbind_vma = ggtt_unbind_vma;
3081
Ben Widawsky63340132013-11-04 19:32:22 -08003082 return ret;
3083}
3084
Joonas Lahtinend507d732016-03-18 10:42:58 +02003085static int gen6_gmch_probe(struct i915_ggtt *ggtt)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003086{
Joonas Lahtinend507d732016-03-18 10:42:58 +02003087 struct drm_device *dev = ggtt->base.dev;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003088 u16 snb_gmch_ctl;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003089 int ret;
3090
Joonas Lahtinend507d732016-03-18 10:42:58 +02003091 ggtt->mappable_base = pci_resource_start(dev->pdev, 2);
3092 ggtt->mappable_end = pci_resource_len(dev->pdev, 2);
Ben Widawsky41907dd2013-02-08 11:32:47 -08003093
Ben Widawskybaa09f52013-01-24 13:49:57 -08003094 /* 64/512MB is the current min/max we actually know of, but this is just
3095 * a coarse sanity check.
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003096 */
Joonas Lahtinend507d732016-03-18 10:42:58 +02003097 if ((ggtt->mappable_end < (64<<20) || (ggtt->mappable_end > (512<<20)))) {
3098 DRM_ERROR("Unknown GMADR size (%llx)\n", ggtt->mappable_end);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003099 return -ENXIO;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003100 }
3101
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003102 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(40)))
3103 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(40));
Ben Widawskybaa09f52013-01-24 13:49:57 -08003104 pci_read_config_word(dev->pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003105
Joonas Lahtinend507d732016-03-18 10:42:58 +02003106 ggtt->stolen_size = gen6_get_stolen_size(snb_gmch_ctl);
3107 ggtt->size = gen6_get_total_gtt_size(snb_gmch_ctl);
3108 ggtt->base.total = (ggtt->size / sizeof(gen6_pte_t)) << PAGE_SHIFT;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003109
Joonas Lahtinend507d732016-03-18 10:42:58 +02003110 ret = ggtt_probe_common(dev, ggtt->size);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003111
Joonas Lahtinend507d732016-03-18 10:42:58 +02003112 ggtt->base.clear_range = gen6_ggtt_clear_range;
3113 ggtt->base.insert_entries = gen6_ggtt_insert_entries;
3114 ggtt->base.bind_vma = ggtt_bind_vma;
3115 ggtt->base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003116
3117 return ret;
3118}
3119
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003120static void gen6_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003121{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003122 struct i915_ggtt *ggtt = container_of(vm, struct i915_ggtt, base);
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003123
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003124 iounmap(ggtt->gsm);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03003125 free_scratch_page(vm->dev, vm->scratch_page);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003126}
3127
Joonas Lahtinend507d732016-03-18 10:42:58 +02003128static int i915_gmch_probe(struct i915_ggtt *ggtt)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003129{
Joonas Lahtinend507d732016-03-18 10:42:58 +02003130 struct drm_device *dev = ggtt->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003131 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003132 int ret;
3133
Ben Widawskybaa09f52013-01-24 13:49:57 -08003134 ret = intel_gmch_probe(dev_priv->bridge_dev, dev_priv->dev->pdev, NULL);
3135 if (!ret) {
3136 DRM_ERROR("failed to set up gmch\n");
3137 return -EIO;
3138 }
3139
Joonas Lahtinend507d732016-03-18 10:42:58 +02003140 intel_gtt_get(&ggtt->base.total, &ggtt->stolen_size,
3141 &ggtt->mappable_base, &ggtt->mappable_end);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003142
Joonas Lahtinend507d732016-03-18 10:42:58 +02003143 ggtt->do_idle_maps = needs_idle_maps(dev_priv->dev);
3144 ggtt->base.insert_entries = i915_ggtt_insert_entries;
3145 ggtt->base.clear_range = i915_ggtt_clear_range;
3146 ggtt->base.bind_vma = ggtt_bind_vma;
3147 ggtt->base.unbind_vma = ggtt_unbind_vma;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003148
Joonas Lahtinend507d732016-03-18 10:42:58 +02003149 if (unlikely(ggtt->do_idle_maps))
Chris Wilsonc0a7f812013-12-30 12:16:15 +00003150 DRM_INFO("applying Ironlake quirks for intel_iommu\n");
3151
Ben Widawskybaa09f52013-01-24 13:49:57 -08003152 return 0;
3153}
3154
Ben Widawsky853ba5d2013-07-16 16:50:05 -07003155static void i915_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003156{
3157 intel_gmch_remove();
3158}
3159
Joonas Lahtinend85489d2016-03-24 16:47:46 +02003160/**
3161 * i915_ggtt_init_hw - Initialize GGTT hardware
3162 * @dev: DRM device
3163 */
3164int i915_ggtt_init_hw(struct drm_device *dev)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003165{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003166 struct drm_i915_private *dev_priv = to_i915(dev);
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003167 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003168 int ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003169
Ben Widawskybaa09f52013-01-24 13:49:57 -08003170 if (INTEL_INFO(dev)->gen <= 5) {
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003171 ggtt->probe = i915_gmch_probe;
3172 ggtt->base.cleanup = i915_gmch_remove;
Ben Widawsky63340132013-11-04 19:32:22 -08003173 } else if (INTEL_INFO(dev)->gen < 8) {
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003174 ggtt->probe = gen6_gmch_probe;
3175 ggtt->base.cleanup = gen6_gmch_remove;
Mika Kuoppala3accaf72016-04-13 17:26:43 +03003176
3177 if (HAS_EDRAM(dev))
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003178 ggtt->base.pte_encode = iris_pte_encode;
Ben Widawsky4d15c142013-07-04 11:02:06 -07003179 else if (IS_HASWELL(dev))
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003180 ggtt->base.pte_encode = hsw_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003181 else if (IS_VALLEYVIEW(dev))
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003182 ggtt->base.pte_encode = byt_pte_encode;
Chris Wilson350ec882013-08-06 13:17:02 +01003183 else if (INTEL_INFO(dev)->gen >= 7)
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003184 ggtt->base.pte_encode = ivb_pte_encode;
Ben Widawskyb2f21b42013-06-27 16:30:20 -07003185 else
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003186 ggtt->base.pte_encode = snb_pte_encode;
Ben Widawsky63340132013-11-04 19:32:22 -08003187 } else {
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003188 ggtt->probe = gen8_gmch_probe;
3189 ggtt->base.cleanup = gen6_gmch_remove;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003190 }
3191
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003192 ggtt->base.dev = dev;
3193 ggtt->base.is_ggtt = true;
Mika Kuoppalac114f762015-06-25 18:35:13 +03003194
Joonas Lahtinend507d732016-03-18 10:42:58 +02003195 ret = ggtt->probe(ggtt);
Ben Widawskya54c0c22013-01-24 14:45:00 -08003196 if (ret)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003197 return ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003198
Chris Wilsonc890e2d2016-03-18 10:42:59 +02003199 if ((ggtt->base.total - 1) >> 32) {
3200 DRM_ERROR("We never expected a Global GTT with more than 32bits"
3201 "of address space! Found %lldM!\n",
3202 ggtt->base.total >> 20);
3203 ggtt->base.total = 1ULL << 32;
3204 ggtt->mappable_end = min(ggtt->mappable_end, ggtt->base.total);
3205 }
3206
Imre Deaka4eba472016-01-19 15:26:32 +02003207 /*
3208 * Initialise stolen early so that we may reserve preallocated
3209 * objects for the BIOS to KMS transition.
3210 */
3211 ret = i915_gem_init_stolen(dev);
3212 if (ret)
3213 goto out_gtt_cleanup;
3214
Ben Widawskybaa09f52013-01-24 13:49:57 -08003215 /* GMADR is the PCI mmio aperture into the global GTT. */
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003216 DRM_INFO("Memory usable by graphics device = %lluM\n",
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003217 ggtt->base.total >> 20);
3218 DRM_DEBUG_DRIVER("GMADR size = %lldM\n", ggtt->mappable_end >> 20);
3219 DRM_DEBUG_DRIVER("GTT stolen size = %zdM\n", ggtt->stolen_size >> 20);
Daniel Vetter5db6c732014-03-31 16:23:04 +02003220#ifdef CONFIG_INTEL_IOMMU
3221 if (intel_iommu_gfx_mapped)
3222 DRM_INFO("VT-d active for gfx access\n");
3223#endif
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08003224
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003225 return 0;
Imre Deaka4eba472016-01-19 15:26:32 +02003226
3227out_gtt_cleanup:
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003228 ggtt->base.cleanup(&ggtt->base);
Imre Deaka4eba472016-01-19 15:26:32 +02003229
3230 return ret;
Daniel Vetter644ec022012-03-26 09:45:40 +02003231}
Ben Widawsky6f65e292013-12-06 14:10:56 -08003232
Daniel Vetterfa423312015-04-14 17:35:23 +02003233void i915_gem_restore_gtt_mappings(struct drm_device *dev)
3234{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003235 struct drm_i915_private *dev_priv = to_i915(dev);
3236 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Daniel Vetterfa423312015-04-14 17:35:23 +02003237 struct drm_i915_gem_object *obj;
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003238 struct i915_vma *vma;
3239 bool flush;
Daniel Vetterfa423312015-04-14 17:35:23 +02003240
3241 i915_check_and_clear_faults(dev);
3242
3243 /* First fill our portion of the GTT with scratch pages */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003244 ggtt->base.clear_range(&ggtt->base, ggtt->base.start, ggtt->base.total,
3245 true);
Daniel Vetterfa423312015-04-14 17:35:23 +02003246
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003247 /* Cache flush objects bound into GGTT and rebind them. */
Daniel Vetterfa423312015-04-14 17:35:23 +02003248 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003249 flush = false;
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003250 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003251 if (vma->vm != &ggtt->base)
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003252 continue;
Daniel Vetterfa423312015-04-14 17:35:23 +02003253
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003254 WARN_ON(i915_vma_bind(vma, obj->cache_level,
3255 PIN_UPDATE));
3256
3257 flush = true;
3258 }
3259
3260 if (flush)
3261 i915_gem_clflush_object(obj, obj->pin_display);
Daniel Vetterfa423312015-04-14 17:35:23 +02003262 }
3263
Daniel Vetterfa423312015-04-14 17:35:23 +02003264 if (INTEL_INFO(dev)->gen >= 8) {
3265 if (IS_CHERRYVIEW(dev) || IS_BROXTON(dev))
3266 chv_setup_private_ppat(dev_priv);
3267 else
3268 bdw_setup_private_ppat(dev_priv);
3269
3270 return;
3271 }
3272
3273 if (USES_PPGTT(dev)) {
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003274 struct i915_address_space *vm;
3275
Daniel Vetterfa423312015-04-14 17:35:23 +02003276 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
3277 /* TODO: Perhaps it shouldn't be gen6 specific */
3278
Joonas Lahtinene5716f52016-04-07 11:08:03 +03003279 struct i915_hw_ppgtt *ppgtt;
Daniel Vetterfa423312015-04-14 17:35:23 +02003280
Joonas Lahtinene5716f52016-04-07 11:08:03 +03003281 if (vm->is_ggtt)
Daniel Vetterfa423312015-04-14 17:35:23 +02003282 ppgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinene5716f52016-04-07 11:08:03 +03003283 else
3284 ppgtt = i915_vm_to_ppgtt(vm);
Daniel Vetterfa423312015-04-14 17:35:23 +02003285
3286 gen6_write_page_range(dev_priv, &ppgtt->pd,
3287 0, ppgtt->base.total);
3288 }
3289 }
3290
3291 i915_ggtt_flush(dev_priv);
3292}
3293
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003294static struct i915_vma *
3295__i915_gem_vma_create(struct drm_i915_gem_object *obj,
3296 struct i915_address_space *vm,
3297 const struct i915_ggtt_view *ggtt_view)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003298{
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003299 struct i915_vma *vma;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003300
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003301 if (WARN_ON(i915_is_ggtt(vm) != !!ggtt_view))
3302 return ERR_PTR(-EINVAL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01003303
3304 vma = kmem_cache_zalloc(to_i915(obj->base.dev)->vmas, GFP_KERNEL);
Dan Carpenterdabde5c2015-03-18 11:21:58 +03003305 if (vma == NULL)
3306 return ERR_PTR(-ENOMEM);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003307
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003308 INIT_LIST_HEAD(&vma->vm_link);
3309 INIT_LIST_HEAD(&vma->obj_link);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003310 INIT_LIST_HEAD(&vma->exec_list);
3311 vma->vm = vm;
3312 vma->obj = obj;
Chris Wilson596c5922016-02-26 11:03:20 +00003313 vma->is_ggtt = i915_is_ggtt(vm);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003314
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003315 if (i915_is_ggtt(vm))
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003316 vma->ggtt_view = *ggtt_view;
Chris Wilson596c5922016-02-26 11:03:20 +00003317 else
3318 i915_ppgtt_get(i915_vm_to_ppgtt(vm));
Ben Widawsky6f65e292013-12-06 14:10:56 -08003319
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003320 list_add_tail(&vma->obj_link, &obj->vma_list);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003321
3322 return vma;
3323}
3324
3325struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003326i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
3327 struct i915_address_space *vm)
Ben Widawsky6f65e292013-12-06 14:10:56 -08003328{
3329 struct i915_vma *vma;
3330
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003331 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003332 if (!vma)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003333 vma = __i915_gem_vma_create(obj, vm,
3334 i915_is_ggtt(vm) ? &i915_ggtt_view_normal : NULL);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003335
3336 return vma;
3337}
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003338
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003339struct i915_vma *
3340i915_gem_obj_lookup_or_create_ggtt_vma(struct drm_i915_gem_object *obj,
3341 const struct i915_ggtt_view *view)
3342{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003343 struct drm_device *dev = obj->base.dev;
3344 struct drm_i915_private *dev_priv = to_i915(dev);
3345 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Matthew Auldade7daa2016-03-24 15:54:20 +00003346 struct i915_vma *vma = i915_gem_obj_to_ggtt_view(obj, view);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003347
3348 if (!vma)
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003349 vma = __i915_gem_vma_create(obj, &ggtt->base, view);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003350
3351 return vma;
3352
3353}
3354
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003355static struct scatterlist *
Ville Syrjälä2d7f3bd2016-01-14 15:22:11 +02003356rotate_pages(const dma_addr_t *in, unsigned int offset,
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003357 unsigned int width, unsigned int height,
Ville Syrjälä87130252016-01-20 21:05:23 +02003358 unsigned int stride,
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003359 struct sg_table *st, struct scatterlist *sg)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003360{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003361 unsigned int column, row;
3362 unsigned int src_idx;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003363
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003364 for (column = 0; column < width; column++) {
Ville Syrjälä87130252016-01-20 21:05:23 +02003365 src_idx = stride * (height - 1) + column;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003366 for (row = 0; row < height; row++) {
3367 st->nents++;
3368 /* We don't need the pages, but need to initialize
3369 * the entries so the sg list can be happily traversed.
3370 * The only thing we need are DMA addresses.
3371 */
3372 sg_set_page(sg, NULL, PAGE_SIZE, 0);
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003373 sg_dma_address(sg) = in[offset + src_idx];
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003374 sg_dma_len(sg) = PAGE_SIZE;
3375 sg = sg_next(sg);
Ville Syrjälä87130252016-01-20 21:05:23 +02003376 src_idx -= stride;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003377 }
3378 }
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003379
3380 return sg;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003381}
3382
3383static struct sg_table *
Ville Syrjälä11d23e62016-01-20 21:05:24 +02003384intel_rotate_fb_obj_pages(struct intel_rotation_info *rot_info,
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003385 struct drm_i915_gem_object *obj)
3386{
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003387 unsigned int size_pages = rot_info->plane[0].width * rot_info->plane[0].height;
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003388 unsigned int size_pages_uv;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003389 struct sg_page_iter sg_iter;
3390 unsigned long i;
3391 dma_addr_t *page_addr_list;
3392 struct sg_table *st;
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003393 unsigned int uv_start_page;
3394 struct scatterlist *sg;
Tvrtko Ursulin1d00dad2015-03-25 10:15:26 +00003395 int ret = -ENOMEM;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003396
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003397 /* Allocate a temporary list of source pages for random access. */
Chris Wilsonf2a85e12016-04-08 12:11:13 +01003398 page_addr_list = drm_malloc_gfp(obj->base.size / PAGE_SIZE,
3399 sizeof(dma_addr_t),
3400 GFP_TEMPORARY);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003401 if (!page_addr_list)
3402 return ERR_PTR(ret);
3403
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003404 /* Account for UV plane with NV12. */
3405 if (rot_info->pixel_format == DRM_FORMAT_NV12)
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003406 size_pages_uv = rot_info->plane[1].width * rot_info->plane[1].height;
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003407 else
3408 size_pages_uv = 0;
3409
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003410 /* Allocate target SG list. */
3411 st = kmalloc(sizeof(*st), GFP_KERNEL);
3412 if (!st)
3413 goto err_st_alloc;
3414
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003415 ret = sg_alloc_table(st, size_pages + size_pages_uv, GFP_KERNEL);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003416 if (ret)
3417 goto err_sg_alloc;
3418
3419 /* Populate source page list from the object. */
3420 i = 0;
3421 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
3422 page_addr_list[i] = sg_page_iter_dma_address(&sg_iter);
3423 i++;
3424 }
3425
Ville Syrjälä11f20322016-02-15 22:54:46 +02003426 st->nents = 0;
3427 sg = st->sgl;
3428
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003429 /* Rotate the pages. */
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003430 sg = rotate_pages(page_addr_list, 0,
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003431 rot_info->plane[0].width, rot_info->plane[0].height,
3432 rot_info->plane[0].width,
Ville Syrjälä11f20322016-02-15 22:54:46 +02003433 st, sg);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003434
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003435 /* Append the UV plane if NV12. */
3436 if (rot_info->pixel_format == DRM_FORMAT_NV12) {
3437 uv_start_page = size_pages;
3438
3439 /* Check for tile-row un-alignment. */
3440 if (offset_in_page(rot_info->uv_offset))
3441 uv_start_page--;
3442
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01003443 rot_info->uv_start_page = uv_start_page;
3444
Ville Syrjälä11f20322016-02-15 22:54:46 +02003445 sg = rotate_pages(page_addr_list, rot_info->uv_start_page,
3446 rot_info->plane[1].width, rot_info->plane[1].height,
3447 rot_info->plane[1].width,
3448 st, sg);
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003449 }
3450
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003451 DRM_DEBUG_KMS("Created rotated page mapping for object size %zu (%ux%u tiles, %u pages (%u plane 0)).\n",
3452 obj->base.size, rot_info->plane[0].width,
3453 rot_info->plane[0].height, size_pages + size_pages_uv,
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003454 size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003455
3456 drm_free_large(page_addr_list);
3457
3458 return st;
3459
3460err_sg_alloc:
3461 kfree(st);
3462err_st_alloc:
3463 drm_free_large(page_addr_list);
3464
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003465 DRM_DEBUG_KMS("Failed to create rotated mapping for object size %zu! (%d) (%ux%u tiles, %u pages (%u plane 0))\n",
3466 obj->base.size, ret, rot_info->plane[0].width,
3467 rot_info->plane[0].height, size_pages + size_pages_uv,
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003468 size_pages);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003469 return ERR_PTR(ret);
3470}
3471
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003472static struct sg_table *
3473intel_partial_pages(const struct i915_ggtt_view *view,
3474 struct drm_i915_gem_object *obj)
3475{
3476 struct sg_table *st;
3477 struct scatterlist *sg;
3478 struct sg_page_iter obj_sg_iter;
3479 int ret = -ENOMEM;
3480
3481 st = kmalloc(sizeof(*st), GFP_KERNEL);
3482 if (!st)
3483 goto err_st_alloc;
3484
3485 ret = sg_alloc_table(st, view->params.partial.size, GFP_KERNEL);
3486 if (ret)
3487 goto err_sg_alloc;
3488
3489 sg = st->sgl;
3490 st->nents = 0;
3491 for_each_sg_page(obj->pages->sgl, &obj_sg_iter, obj->pages->nents,
3492 view->params.partial.offset)
3493 {
3494 if (st->nents >= view->params.partial.size)
3495 break;
3496
3497 sg_set_page(sg, NULL, PAGE_SIZE, 0);
3498 sg_dma_address(sg) = sg_page_iter_dma_address(&obj_sg_iter);
3499 sg_dma_len(sg) = PAGE_SIZE;
3500
3501 sg = sg_next(sg);
3502 st->nents++;
3503 }
3504
3505 return st;
3506
3507err_sg_alloc:
3508 kfree(st);
3509err_st_alloc:
3510 return ERR_PTR(ret);
3511}
3512
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003513static int
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003514i915_get_ggtt_vma_pages(struct i915_vma *vma)
3515{
3516 int ret = 0;
3517
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003518 if (vma->ggtt_view.pages)
3519 return 0;
3520
3521 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
3522 vma->ggtt_view.pages = vma->obj->pages;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003523 else if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED)
3524 vma->ggtt_view.pages =
Ville Syrjälä11d23e62016-01-20 21:05:24 +02003525 intel_rotate_fb_obj_pages(&vma->ggtt_view.params.rotated, vma->obj);
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003526 else if (vma->ggtt_view.type == I915_GGTT_VIEW_PARTIAL)
3527 vma->ggtt_view.pages =
3528 intel_partial_pages(&vma->ggtt_view, vma->obj);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003529 else
3530 WARN_ONCE(1, "GGTT view %u not implemented!\n",
3531 vma->ggtt_view.type);
3532
3533 if (!vma->ggtt_view.pages) {
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003534 DRM_ERROR("Failed to get pages for GGTT view type %u!\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003535 vma->ggtt_view.type);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003536 ret = -EINVAL;
3537 } else if (IS_ERR(vma->ggtt_view.pages)) {
3538 ret = PTR_ERR(vma->ggtt_view.pages);
3539 vma->ggtt_view.pages = NULL;
3540 DRM_ERROR("Failed to get pages for VMA view type %u (%d)!\n",
3541 vma->ggtt_view.type, ret);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003542 }
3543
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003544 return ret;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003545}
3546
3547/**
3548 * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
3549 * @vma: VMA to map
3550 * @cache_level: mapping cache level
3551 * @flags: flags like global or local mapping
3552 *
3553 * DMA addresses are taken from the scatter-gather table of this object (or of
3554 * this VMA in case of non-default GGTT views) and PTE entries set up.
3555 * Note that DMA addresses are also the only part of the SG table we care about.
3556 */
3557int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
3558 u32 flags)
3559{
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003560 int ret;
3561 u32 bind_flags;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003562
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003563 if (WARN_ON(flags == 0))
3564 return -EINVAL;
Mika Kuoppala1d335d12015-04-10 15:54:58 +03003565
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003566 bind_flags = 0;
Daniel Vetter08755462015-04-20 09:04:05 -07003567 if (flags & PIN_GLOBAL)
3568 bind_flags |= GLOBAL_BIND;
3569 if (flags & PIN_USER)
3570 bind_flags |= LOCAL_BIND;
3571
3572 if (flags & PIN_UPDATE)
3573 bind_flags |= vma->bound;
3574 else
3575 bind_flags &= ~vma->bound;
3576
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003577 if (bind_flags == 0)
3578 return 0;
3579
3580 if (vma->bound == 0 && vma->vm->allocate_va_range) {
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003581 /* XXX: i915_vma_pin() will fix this +- hack */
3582 vma->pin_count++;
Chris Wilson596c5922016-02-26 11:03:20 +00003583 trace_i915_va_alloc(vma);
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003584 ret = vma->vm->allocate_va_range(vma->vm,
3585 vma->node.start,
3586 vma->node.size);
Mika Kuoppalab2dd4512015-06-25 18:35:15 +03003587 vma->pin_count--;
Mika Kuoppala75d04a32015-04-28 17:56:17 +03003588 if (ret)
3589 return ret;
3590 }
3591
3592 ret = vma->vm->bind_vma(vma, cache_level, bind_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003593 if (ret)
3594 return ret;
Daniel Vetter08755462015-04-20 09:04:05 -07003595
3596 vma->bound |= bind_flags;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003597
3598 return 0;
3599}
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003600
3601/**
3602 * i915_ggtt_view_size - Get the size of a GGTT view.
3603 * @obj: Object the view is of.
3604 * @view: The view in question.
3605 *
3606 * @return The size of the GGTT view in bytes.
3607 */
3608size_t
3609i915_ggtt_view_size(struct drm_i915_gem_object *obj,
3610 const struct i915_ggtt_view *view)
3611{
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003612 if (view->type == I915_GGTT_VIEW_NORMAL) {
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003613 return obj->base.size;
Tvrtko Ursulin9e759ff2015-06-23 12:57:43 +01003614 } else if (view->type == I915_GGTT_VIEW_ROTATED) {
Ville Syrjälä1663b9d2016-02-15 22:54:45 +02003615 return intel_rotation_info_size(&view->params.rotated) << PAGE_SHIFT;
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003616 } else if (view->type == I915_GGTT_VIEW_PARTIAL) {
3617 return view->params.partial.size << PAGE_SHIFT;
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003618 } else {
3619 WARN_ONCE(1, "GGTT view %u not implemented!\n", view->type);
3620 return obj->base.size;
3621 }
3622}
Chris Wilson8ef85612016-04-28 09:56:39 +01003623
3624void __iomem *i915_vma_pin_iomap(struct i915_vma *vma)
3625{
3626 void __iomem *ptr;
3627
3628 lockdep_assert_held(&vma->vm->dev->struct_mutex);
3629 if (WARN_ON(!vma->obj->map_and_fenceable))
3630 return ERR_PTR(-ENODEV);
3631
3632 GEM_BUG_ON(!vma->is_ggtt);
3633 GEM_BUG_ON((vma->bound & GLOBAL_BIND) == 0);
3634
3635 ptr = vma->iomap;
3636 if (ptr == NULL) {
3637 ptr = io_mapping_map_wc(i915_vm_to_ggtt(vma->vm)->mappable,
3638 vma->node.start,
3639 vma->node.size);
3640 if (ptr == NULL)
3641 return ERR_PTR(-ENOMEM);
3642
3643 vma->iomap = ptr;
3644 }
3645
3646 vma->pin_count++;
3647 return ptr;
3648}