blob: 048040efc3f026d06331639cbbcc74c5af393192 [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
Chris Wilsone007b192017-01-11 11:23:10 +000026#include <linux/log2.h>
Chris Wilson606fec92017-01-11 11:23:12 +000027#include <linux/random.h>
Daniel Vetter0e46ce22014-01-08 16:10:27 +010028#include <linux/seq_file.h>
Chris Wilson5bab6f62015-10-23 18:43:32 +010029#include <linux/stop_machine.h>
Chris Wilsone007b192017-01-11 11:23:10 +000030
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
32#include <drm/i915_drm.h>
Chris Wilsone007b192017-01-11 11:23:10 +000033
Daniel Vetter76aaf222010-11-05 22:23:30 +010034#include "i915_drv.h"
Yu Zhang5dda8fa2015-02-10 19:05:48 +080035#include "i915_vgpu.h"
Daniel Vetter76aaf222010-11-05 22:23:30 +010036#include "i915_trace.h"
37#include "intel_drv.h"
Chris Wilsond07f0e52016-10-28 13:58:44 +010038#include "intel_frontbuffer.h"
Daniel Vetter76aaf222010-11-05 22:23:30 +010039
Chris Wilsonbb8f9cf2016-08-22 08:44:31 +010040#define I915_GFP_DMA (GFP_KERNEL | __GFP_HIGHMEM)
41
Tvrtko Ursulin45f8f692014-12-10 17:27:59 +000042/**
43 * DOC: Global GTT views
44 *
45 * Background and previous state
46 *
47 * Historically objects could exists (be bound) in global GTT space only as
48 * singular instances with a view representing all of the object's backing pages
49 * in a linear fashion. This view will be called a normal view.
50 *
51 * To support multiple views of the same object, where the number of mapped
52 * pages is not equal to the backing store, or where the layout of the pages
53 * is not linear, concept of a GGTT view was added.
54 *
55 * One example of an alternative view is a stereo display driven by a single
56 * image. In this case we would have a framebuffer looking like this
57 * (2x2 pages):
58 *
59 * 12
60 * 34
61 *
62 * Above would represent a normal GGTT view as normally mapped for GPU or CPU
63 * rendering. In contrast, fed to the display engine would be an alternative
64 * view which could look something like this:
65 *
66 * 1212
67 * 3434
68 *
69 * In this example both the size and layout of pages in the alternative view is
70 * different from the normal view.
71 *
72 * Implementation and usage
73 *
74 * GGTT views are implemented using VMAs and are distinguished via enum
75 * i915_ggtt_view_type and struct i915_ggtt_view.
76 *
77 * A new flavour of core GEM functions which work with GGTT bound objects were
Joonas Lahtinenec7adb62015-03-16 14:11:13 +020078 * added with the _ggtt_ infix, and sometimes with _view postfix to avoid
79 * renaming in large amounts of code. They take the struct i915_ggtt_view
80 * parameter encapsulating all metadata required to implement a view.
Tvrtko Ursulin45f8f692014-12-10 17:27:59 +000081 *
82 * As a helper for callers which are only interested in the normal view,
83 * globally const i915_ggtt_view_normal singleton instance exists. All old core
84 * GEM API functions, the ones not taking the view parameter, are operating on,
85 * or with the normal GGTT view.
86 *
87 * Code wanting to add or use a new GGTT view needs to:
88 *
89 * 1. Add a new enum with a suitable name.
90 * 2. Extend the metadata in the i915_ggtt_view structure if required.
91 * 3. Add support to i915_get_vma_pages().
92 *
93 * New views are required to build a scatter-gather table from within the
94 * i915_get_vma_pages function. This table is stored in the vma.ggtt_view and
95 * exists for the lifetime of an VMA.
96 *
97 * Core API is designed to have copy semantics which means that passed in
98 * struct i915_ggtt_view does not need to be persistent (left around after
99 * calling the core API functions).
100 *
101 */
102
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200103static int
104i915_get_ggtt_vma_pages(struct i915_vma *vma);
105
Chris Wilson7c3f86b2017-01-12 11:00:49 +0000106static void gen6_ggtt_invalidate(struct drm_i915_private *dev_priv)
107{
108 /* Note that as an uncached mmio write, this should flush the
109 * WCB of the writes into the GGTT before it triggers the invalidate.
110 */
111 I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
112}
113
114static void guc_ggtt_invalidate(struct drm_i915_private *dev_priv)
115{
116 gen6_ggtt_invalidate(dev_priv);
117 I915_WRITE(GEN8_GTCR, GEN8_GTCR_INVALIDATE);
118}
119
120static void gmch_ggtt_invalidate(struct drm_i915_private *dev_priv)
121{
122 intel_gtt_chipset_flush();
123}
124
125static inline void i915_ggtt_invalidate(struct drm_i915_private *i915)
126{
127 i915->ggtt.invalidate(i915);
128}
129
Chris Wilsonc0336662016-05-06 15:40:21 +0100130int intel_sanitize_enable_ppgtt(struct drm_i915_private *dev_priv,
131 int enable_ppgtt)
Daniel Vettercfa7c862014-04-29 11:53:58 +0200132{
Chris Wilson1893a712014-09-19 11:56:27 +0100133 bool has_aliasing_ppgtt;
134 bool has_full_ppgtt;
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100135 bool has_full_48bit_ppgtt;
Chris Wilson1893a712014-09-19 11:56:27 +0100136
Michel Thierry9e1d0e62016-12-05 17:57:03 -0800137 has_aliasing_ppgtt = dev_priv->info.has_aliasing_ppgtt;
138 has_full_ppgtt = dev_priv->info.has_full_ppgtt;
139 has_full_48bit_ppgtt = dev_priv->info.has_full_48bit_ppgtt;
Chris Wilson1893a712014-09-19 11:56:27 +0100140
Zhi Wange320d402016-09-06 12:04:12 +0800141 if (intel_vgpu_active(dev_priv)) {
142 /* emulation is too hard */
143 has_full_ppgtt = false;
144 has_full_48bit_ppgtt = false;
145 }
Yu Zhang71ba2d62015-02-10 19:05:54 +0800146
Chris Wilson0e4ca102016-04-29 13:18:22 +0100147 if (!has_aliasing_ppgtt)
148 return 0;
149
Damien Lespiau70ee45e2014-11-14 15:05:59 +0000150 /*
151 * We don't allow disabling PPGTT for gen9+ as it's a requirement for
152 * execlists, the sole mechanism available to submit work.
153 */
Chris Wilsonc0336662016-05-06 15:40:21 +0100154 if (enable_ppgtt == 0 && INTEL_GEN(dev_priv) < 9)
Daniel Vettercfa7c862014-04-29 11:53:58 +0200155 return 0;
156
157 if (enable_ppgtt == 1)
158 return 1;
159
Chris Wilson1893a712014-09-19 11:56:27 +0100160 if (enable_ppgtt == 2 && has_full_ppgtt)
Daniel Vettercfa7c862014-04-29 11:53:58 +0200161 return 2;
162
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100163 if (enable_ppgtt == 3 && has_full_48bit_ppgtt)
164 return 3;
165
Daniel Vetter93a25a92014-03-06 09:40:43 +0100166#ifdef CONFIG_INTEL_IOMMU
167 /* Disable ppgtt on SNB if VT-d is on. */
Chris Wilsonc0336662016-05-06 15:40:21 +0100168 if (IS_GEN6(dev_priv) && intel_iommu_gfx_mapped) {
Daniel Vetter93a25a92014-03-06 09:40:43 +0100169 DRM_INFO("Disabling PPGTT because VT-d is on\n");
Daniel Vettercfa7c862014-04-29 11:53:58 +0200170 return 0;
Daniel Vetter93a25a92014-03-06 09:40:43 +0100171 }
172#endif
173
Jesse Barnes62942ed2014-06-13 09:28:33 -0700174 /* Early VLV doesn't have this */
Chris Wilson91c8a322016-07-05 10:40:23 +0100175 if (IS_VALLEYVIEW(dev_priv) && dev_priv->drm.pdev->revision < 0xb) {
Jesse Barnes62942ed2014-06-13 09:28:33 -0700176 DRM_DEBUG_DRIVER("disabling PPGTT on pre-B3 step VLV\n");
177 return 0;
178 }
179
Zhi Wange320d402016-09-06 12:04:12 +0800180 if (INTEL_GEN(dev_priv) >= 8 && i915.enable_execlists && has_full_ppgtt)
Michel Thierry1f9a99e2015-09-30 15:36:19 +0100181 return has_full_48bit_ppgtt ? 3 : 2;
Michel Thierry2f82bbd2014-12-15 14:58:00 +0000182 else
183 return has_aliasing_ppgtt ? 1 : 0;
Daniel Vetter93a25a92014-03-06 09:40:43 +0100184}
185
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200186static int ppgtt_bind_vma(struct i915_vma *vma,
187 enum i915_cache_level cache_level,
188 u32 unused)
Daniel Vetter47552652015-04-14 17:35:24 +0200189{
190 u32 pte_flags = 0;
191
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100192 vma->pages = vma->obj->mm.pages;
Chris Wilson247177d2016-08-15 10:48:47 +0100193
Daniel Vetter47552652015-04-14 17:35:24 +0200194 /* Currently applicable only to VLV */
195 if (vma->obj->gt_ro)
196 pte_flags |= PTE_READ_ONLY;
197
Chris Wilson247177d2016-08-15 10:48:47 +0100198 vma->vm->insert_entries(vma->vm, vma->pages, vma->node.start,
Daniel Vetter47552652015-04-14 17:35:24 +0200199 cache_level, pte_flags);
Daniel Vetter70b9f6f2015-04-14 17:35:27 +0200200
201 return 0;
Daniel Vetter47552652015-04-14 17:35:24 +0200202}
203
204static void ppgtt_unbind_vma(struct i915_vma *vma)
205{
206 vma->vm->clear_range(vma->vm,
207 vma->node.start,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200208 vma->size);
Daniel Vetter47552652015-04-14 17:35:24 +0200209}
Ben Widawsky6f65e292013-12-06 14:10:56 -0800210
Daniel Vetter2c642b02015-04-14 17:35:26 +0200211static gen8_pte_t gen8_pte_encode(dma_addr_t addr,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200212 enum i915_cache_level level)
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700213{
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200214 gen8_pte_t pte = _PAGE_PRESENT | _PAGE_RW;
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700215 pte |= addr;
Ben Widawsky63c42e52014-04-18 18:04:27 -0300216
217 switch (level) {
218 case I915_CACHE_NONE:
Ben Widawskyfbe5d362013-11-04 19:56:49 -0800219 pte |= PPAT_UNCACHED_INDEX;
Ben Widawsky63c42e52014-04-18 18:04:27 -0300220 break;
221 case I915_CACHE_WT:
222 pte |= PPAT_DISPLAY_ELLC_INDEX;
223 break;
224 default:
225 pte |= PPAT_CACHED_INDEX;
226 break;
227 }
228
Ben Widawsky94ec8f62013-11-02 21:07:18 -0700229 return pte;
230}
231
Mika Kuoppalafe36f552015-06-25 18:35:16 +0300232static gen8_pde_t gen8_pde_encode(const dma_addr_t addr,
233 const enum i915_cache_level level)
Ben Widawskyb1fe6672013-11-04 21:20:14 -0800234{
Michel Thierry07749ef2015-03-16 16:00:54 +0000235 gen8_pde_t pde = _PAGE_PRESENT | _PAGE_RW;
Ben Widawskyb1fe6672013-11-04 21:20:14 -0800236 pde |= addr;
237 if (level != I915_CACHE_NONE)
238 pde |= PPAT_CACHED_PDE_INDEX;
239 else
240 pde |= PPAT_UNCACHED_INDEX;
241 return pde;
242}
243
Michel Thierry762d9932015-07-30 11:05:29 +0100244#define gen8_pdpe_encode gen8_pde_encode
245#define gen8_pml4e_encode gen8_pde_encode
246
Michel Thierry07749ef2015-03-16 16:00:54 +0000247static gen6_pte_t snb_pte_encode(dma_addr_t addr,
248 enum i915_cache_level level,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200249 u32 unused)
Ben Widawsky54d12522012-09-24 16:44:32 -0700250{
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200251 gen6_pte_t pte = GEN6_PTE_VALID;
Ben Widawsky54d12522012-09-24 16:44:32 -0700252 pte |= GEN6_PTE_ADDR_ENCODE(addr);
Ben Widawskye7210c32012-10-19 09:33:22 -0700253
254 switch (level) {
Chris Wilson350ec882013-08-06 13:17:02 +0100255 case I915_CACHE_L3_LLC:
256 case I915_CACHE_LLC:
257 pte |= GEN6_PTE_CACHE_LLC;
258 break;
259 case I915_CACHE_NONE:
260 pte |= GEN6_PTE_UNCACHED;
261 break;
262 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +0100263 MISSING_CASE(level);
Chris Wilson350ec882013-08-06 13:17:02 +0100264 }
265
266 return pte;
267}
268
Michel Thierry07749ef2015-03-16 16:00:54 +0000269static gen6_pte_t ivb_pte_encode(dma_addr_t addr,
270 enum i915_cache_level level,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200271 u32 unused)
Chris Wilson350ec882013-08-06 13:17:02 +0100272{
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200273 gen6_pte_t pte = GEN6_PTE_VALID;
Chris Wilson350ec882013-08-06 13:17:02 +0100274 pte |= GEN6_PTE_ADDR_ENCODE(addr);
275
276 switch (level) {
277 case I915_CACHE_L3_LLC:
278 pte |= GEN7_PTE_CACHE_L3_LLC;
Ben Widawskye7210c32012-10-19 09:33:22 -0700279 break;
280 case I915_CACHE_LLC:
281 pte |= GEN6_PTE_CACHE_LLC;
282 break;
283 case I915_CACHE_NONE:
Kenneth Graunke91197082013-04-22 00:53:51 -0700284 pte |= GEN6_PTE_UNCACHED;
Ben Widawskye7210c32012-10-19 09:33:22 -0700285 break;
286 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +0100287 MISSING_CASE(level);
Ben Widawskye7210c32012-10-19 09:33:22 -0700288 }
289
Ben Widawsky54d12522012-09-24 16:44:32 -0700290 return pte;
291}
292
Michel Thierry07749ef2015-03-16 16:00:54 +0000293static gen6_pte_t byt_pte_encode(dma_addr_t addr,
294 enum i915_cache_level level,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200295 u32 flags)
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700296{
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200297 gen6_pte_t pte = GEN6_PTE_VALID;
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700298 pte |= GEN6_PTE_ADDR_ENCODE(addr);
299
Akash Goel24f3a8c2014-06-17 10:59:42 +0530300 if (!(flags & PTE_READ_ONLY))
301 pte |= BYT_PTE_WRITEABLE;
Kenneth Graunke93c34e72013-04-22 00:53:50 -0700302
303 if (level != I915_CACHE_NONE)
304 pte |= BYT_PTE_SNOOPED_BY_CPU_CACHES;
305
306 return pte;
307}
308
Michel Thierry07749ef2015-03-16 16:00:54 +0000309static gen6_pte_t hsw_pte_encode(dma_addr_t addr,
310 enum i915_cache_level level,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200311 u32 unused)
Kenneth Graunke91197082013-04-22 00:53:51 -0700312{
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200313 gen6_pte_t pte = GEN6_PTE_VALID;
Ben Widawsky0d8ff152013-07-04 11:02:03 -0700314 pte |= HSW_PTE_ADDR_ENCODE(addr);
Kenneth Graunke91197082013-04-22 00:53:51 -0700315
316 if (level != I915_CACHE_NONE)
Ben Widawsky87a6b682013-08-04 23:47:29 -0700317 pte |= HSW_WB_LLC_AGE3;
Kenneth Graunke91197082013-04-22 00:53:51 -0700318
319 return pte;
320}
321
Michel Thierry07749ef2015-03-16 16:00:54 +0000322static gen6_pte_t iris_pte_encode(dma_addr_t addr,
323 enum i915_cache_level level,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200324 u32 unused)
Ben Widawsky4d15c142013-07-04 11:02:06 -0700325{
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200326 gen6_pte_t pte = GEN6_PTE_VALID;
Ben Widawsky4d15c142013-07-04 11:02:06 -0700327 pte |= HSW_PTE_ADDR_ENCODE(addr);
328
Chris Wilson651d7942013-08-08 14:41:10 +0100329 switch (level) {
330 case I915_CACHE_NONE:
331 break;
332 case I915_CACHE_WT:
Chris Wilsonc51e9702013-11-22 10:37:53 +0000333 pte |= HSW_WT_ELLC_LLC_AGE3;
Chris Wilson651d7942013-08-08 14:41:10 +0100334 break;
335 default:
Chris Wilsonc51e9702013-11-22 10:37:53 +0000336 pte |= HSW_WB_ELLC_LLC_AGE3;
Chris Wilson651d7942013-08-08 14:41:10 +0100337 break;
338 }
Ben Widawsky4d15c142013-07-04 11:02:06 -0700339
340 return pte;
341}
342
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000343static int __setup_page_dma(struct drm_i915_private *dev_priv,
Mika Kuoppalac114f762015-06-25 18:35:13 +0300344 struct i915_page_dma *p, gfp_t flags)
Ben Widawsky678d96f2015-03-16 16:00:56 +0000345{
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000346 struct device *kdev = &dev_priv->drm.pdev->dev;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000347
Mika Kuoppalac114f762015-06-25 18:35:13 +0300348 p->page = alloc_page(flags);
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300349 if (!p->page)
Michel Thierry1266cdb2015-03-24 17:06:33 +0000350 return -ENOMEM;
351
David Weinehallc49d13e2016-08-22 13:32:42 +0300352 p->daddr = dma_map_page(kdev,
Chris Wilsonf51455d2017-01-10 14:47:34 +0000353 p->page, 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300354
David Weinehallc49d13e2016-08-22 13:32:42 +0300355 if (dma_mapping_error(kdev, p->daddr)) {
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300356 __free_page(p->page);
357 return -EINVAL;
358 }
359
Michel Thierry1266cdb2015-03-24 17:06:33 +0000360 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000361}
362
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000363static int setup_page_dma(struct drm_i915_private *dev_priv,
364 struct i915_page_dma *p)
Mika Kuoppalac114f762015-06-25 18:35:13 +0300365{
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000366 return __setup_page_dma(dev_priv, p, I915_GFP_DMA);
Mika Kuoppalac114f762015-06-25 18:35:13 +0300367}
368
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000369static void cleanup_page_dma(struct drm_i915_private *dev_priv,
370 struct i915_page_dma *p)
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300371{
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000372 struct pci_dev *pdev = dev_priv->drm.pdev;
David Weinehall52a05c32016-08-22 13:32:44 +0300373
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300374 if (WARN_ON(!p->page))
375 return;
376
Chris Wilsonf51455d2017-01-10 14:47:34 +0000377 dma_unmap_page(&pdev->dev, p->daddr, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300378 __free_page(p->page);
379 memset(p, 0, sizeof(*p));
380}
381
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300382static void *kmap_page_dma(struct i915_page_dma *p)
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300383{
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300384 return kmap_atomic(p->page);
385}
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300386
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300387/* We use the flushing unmap only with ppgtt structures:
388 * page directories, page tables and scratch pages.
389 */
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100390static void kunmap_page_dma(struct drm_i915_private *dev_priv, void *vaddr)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300391{
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300392 /* There are only few exceptions for gen >=6. chv and bxt.
393 * And we are not sure about the latter so play safe for now.
394 */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +0200395 if (IS_CHERRYVIEW(dev_priv) || IS_GEN9_LP(dev_priv))
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300396 drm_clflush_virt_range(vaddr, PAGE_SIZE);
397
398 kunmap_atomic(vaddr);
399}
400
Mika Kuoppala567047b2015-06-25 18:35:12 +0300401#define kmap_px(px) kmap_page_dma(px_base(px))
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100402#define kunmap_px(ppgtt, vaddr) \
Chris Wilson49d73912016-11-29 09:50:08 +0000403 kunmap_page_dma((ppgtt)->base.i915, (vaddr))
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300404
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000405#define setup_px(dev_priv, px) setup_page_dma((dev_priv), px_base(px))
406#define cleanup_px(dev_priv, px) cleanup_page_dma((dev_priv), px_base(px))
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100407#define fill_px(dev_priv, px, v) fill_page_dma((dev_priv), px_base(px), (v))
408#define fill32_px(dev_priv, px, v) \
409 fill_page_dma_32((dev_priv), px_base(px), (v))
Mika Kuoppala567047b2015-06-25 18:35:12 +0300410
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100411static void fill_page_dma(struct drm_i915_private *dev_priv,
412 struct i915_page_dma *p, const uint64_t val)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300413{
414 int i;
415 uint64_t * const vaddr = kmap_page_dma(p);
416
417 for (i = 0; i < 512; i++)
418 vaddr[i] = val;
419
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100420 kunmap_page_dma(dev_priv, vaddr);
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300421}
422
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100423static void fill_page_dma_32(struct drm_i915_private *dev_priv,
424 struct i915_page_dma *p, const uint32_t val32)
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300425{
426 uint64_t v = val32;
427
428 v = v << 32 | val32;
429
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100430 fill_page_dma(dev_priv, p, v);
Mika Kuoppala73eeea52015-06-25 18:35:10 +0300431}
432
Chris Wilson8bcdd0f72016-08-22 08:44:30 +0100433static int
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000434setup_scratch_page(struct drm_i915_private *dev_priv,
Chris Wilsonbb8f9cf2016-08-22 08:44:31 +0100435 struct i915_page_dma *scratch,
436 gfp_t gfp)
Mika Kuoppala4ad2af12015-06-30 18:16:39 +0300437{
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000438 return __setup_page_dma(dev_priv, scratch, gfp | __GFP_ZERO);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +0300439}
440
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000441static void cleanup_scratch_page(struct drm_i915_private *dev_priv,
Chris Wilson8bcdd0f72016-08-22 08:44:30 +0100442 struct i915_page_dma *scratch)
Mika Kuoppala4ad2af12015-06-30 18:16:39 +0300443{
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000444 cleanup_page_dma(dev_priv, scratch);
Mika Kuoppala4ad2af12015-06-30 18:16:39 +0300445}
446
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000447static struct i915_page_table *alloc_pt(struct drm_i915_private *dev_priv)
Ben Widawsky06fda602015-02-24 16:22:36 +0000448{
Michel Thierryec565b32015-04-08 12:13:23 +0100449 struct i915_page_table *pt;
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000450 const size_t count = INTEL_GEN(dev_priv) >= 8 ? GEN8_PTES : GEN6_PTES;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000451 int ret = -ENOMEM;
Ben Widawsky06fda602015-02-24 16:22:36 +0000452
453 pt = kzalloc(sizeof(*pt), GFP_KERNEL);
454 if (!pt)
455 return ERR_PTR(-ENOMEM);
456
Ben Widawsky678d96f2015-03-16 16:00:56 +0000457 pt->used_ptes = kcalloc(BITS_TO_LONGS(count), sizeof(*pt->used_ptes),
458 GFP_KERNEL);
459
460 if (!pt->used_ptes)
461 goto fail_bitmap;
462
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000463 ret = setup_px(dev_priv, pt);
Ben Widawsky678d96f2015-03-16 16:00:56 +0000464 if (ret)
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300465 goto fail_page_m;
Ben Widawsky06fda602015-02-24 16:22:36 +0000466
467 return pt;
Ben Widawsky678d96f2015-03-16 16:00:56 +0000468
Mika Kuoppala44159dd2015-06-25 18:35:07 +0300469fail_page_m:
Ben Widawsky678d96f2015-03-16 16:00:56 +0000470 kfree(pt->used_ptes);
471fail_bitmap:
472 kfree(pt);
473
474 return ERR_PTR(ret);
Ben Widawsky06fda602015-02-24 16:22:36 +0000475}
476
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000477static void free_pt(struct drm_i915_private *dev_priv,
478 struct i915_page_table *pt)
Ben Widawsky06fda602015-02-24 16:22:36 +0000479{
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000480 cleanup_px(dev_priv, pt);
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300481 kfree(pt->used_ptes);
482 kfree(pt);
483}
484
485static void gen8_initialize_pt(struct i915_address_space *vm,
486 struct i915_page_table *pt)
487{
488 gen8_pte_t scratch_pte;
489
Chris Wilson8bcdd0f72016-08-22 08:44:30 +0100490 scratch_pte = gen8_pte_encode(vm->scratch_page.daddr,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200491 I915_CACHE_LLC);
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300492
Chris Wilson49d73912016-11-29 09:50:08 +0000493 fill_px(vm->i915, pt, scratch_pte);
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300494}
495
496static void gen6_initialize_pt(struct i915_address_space *vm,
497 struct i915_page_table *pt)
498{
499 gen6_pte_t scratch_pte;
500
Chris Wilson8bcdd0f72016-08-22 08:44:30 +0100501 WARN_ON(vm->scratch_page.daddr == 0);
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300502
Chris Wilson8bcdd0f72016-08-22 08:44:30 +0100503 scratch_pte = vm->pte_encode(vm->scratch_page.daddr,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200504 I915_CACHE_LLC, 0);
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300505
Chris Wilson49d73912016-11-29 09:50:08 +0000506 fill32_px(vm->i915, pt, scratch_pte);
Ben Widawsky06fda602015-02-24 16:22:36 +0000507}
508
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000509static struct i915_page_directory *alloc_pd(struct drm_i915_private *dev_priv)
Ben Widawsky06fda602015-02-24 16:22:36 +0000510{
Michel Thierryec565b32015-04-08 12:13:23 +0100511 struct i915_page_directory *pd;
Michel Thierry33c88192015-04-08 12:13:33 +0100512 int ret = -ENOMEM;
Ben Widawsky06fda602015-02-24 16:22:36 +0000513
514 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
515 if (!pd)
516 return ERR_PTR(-ENOMEM);
517
Michel Thierry33c88192015-04-08 12:13:33 +0100518 pd->used_pdes = kcalloc(BITS_TO_LONGS(I915_PDES),
519 sizeof(*pd->used_pdes), GFP_KERNEL);
520 if (!pd->used_pdes)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300521 goto fail_bitmap;
Michel Thierry33c88192015-04-08 12:13:33 +0100522
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000523 ret = setup_px(dev_priv, pd);
Michel Thierry33c88192015-04-08 12:13:33 +0100524 if (ret)
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300525 goto fail_page_m;
Michel Thierrye5815a22015-04-08 12:13:32 +0100526
Ben Widawsky06fda602015-02-24 16:22:36 +0000527 return pd;
Michel Thierry33c88192015-04-08 12:13:33 +0100528
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300529fail_page_m:
Michel Thierry33c88192015-04-08 12:13:33 +0100530 kfree(pd->used_pdes);
Mika Kuoppalaa08e1112015-06-25 18:35:08 +0300531fail_bitmap:
Michel Thierry33c88192015-04-08 12:13:33 +0100532 kfree(pd);
533
534 return ERR_PTR(ret);
Ben Widawsky06fda602015-02-24 16:22:36 +0000535}
536
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000537static void free_pd(struct drm_i915_private *dev_priv,
538 struct i915_page_directory *pd)
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300539{
540 if (px_page(pd)) {
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000541 cleanup_px(dev_priv, pd);
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300542 kfree(pd->used_pdes);
543 kfree(pd);
544 }
545}
546
547static void gen8_initialize_pd(struct i915_address_space *vm,
548 struct i915_page_directory *pd)
549{
550 gen8_pde_t scratch_pde;
551
552 scratch_pde = gen8_pde_encode(px_dma(vm->scratch_pt), I915_CACHE_LLC);
553
Chris Wilson49d73912016-11-29 09:50:08 +0000554 fill_px(vm->i915, pd, scratch_pde);
Mika Kuoppala2e906be2015-06-30 18:16:37 +0300555}
556
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000557static int __pdp_init(struct drm_i915_private *dev_priv,
Michel Thierry6ac18502015-07-29 17:23:46 +0100558 struct i915_page_directory_pointer *pdp)
559{
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000560 size_t pdpes = I915_PDPES_PER_PDP(dev_priv);
Michel Thierry6ac18502015-07-29 17:23:46 +0100561
562 pdp->used_pdpes = kcalloc(BITS_TO_LONGS(pdpes),
563 sizeof(unsigned long),
564 GFP_KERNEL);
565 if (!pdp->used_pdpes)
566 return -ENOMEM;
567
568 pdp->page_directory = kcalloc(pdpes, sizeof(*pdp->page_directory),
569 GFP_KERNEL);
570 if (!pdp->page_directory) {
571 kfree(pdp->used_pdpes);
572 /* the PDP might be the statically allocated top level. Keep it
573 * as clean as possible */
574 pdp->used_pdpes = NULL;
575 return -ENOMEM;
576 }
577
578 return 0;
579}
580
581static void __pdp_fini(struct i915_page_directory_pointer *pdp)
582{
583 kfree(pdp->used_pdpes);
584 kfree(pdp->page_directory);
585 pdp->page_directory = NULL;
586}
587
Michel Thierry762d9932015-07-30 11:05:29 +0100588static struct
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000589i915_page_directory_pointer *alloc_pdp(struct drm_i915_private *dev_priv)
Michel Thierry762d9932015-07-30 11:05:29 +0100590{
591 struct i915_page_directory_pointer *pdp;
592 int ret = -ENOMEM;
593
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000594 WARN_ON(!USES_FULL_48BIT_PPGTT(dev_priv));
Michel Thierry762d9932015-07-30 11:05:29 +0100595
596 pdp = kzalloc(sizeof(*pdp), GFP_KERNEL);
597 if (!pdp)
598 return ERR_PTR(-ENOMEM);
599
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000600 ret = __pdp_init(dev_priv, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100601 if (ret)
602 goto fail_bitmap;
603
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000604 ret = setup_px(dev_priv, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100605 if (ret)
606 goto fail_page_m;
607
608 return pdp;
609
610fail_page_m:
611 __pdp_fini(pdp);
612fail_bitmap:
613 kfree(pdp);
614
615 return ERR_PTR(ret);
616}
617
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000618static void free_pdp(struct drm_i915_private *dev_priv,
Michel Thierry6ac18502015-07-29 17:23:46 +0100619 struct i915_page_directory_pointer *pdp)
620{
621 __pdp_fini(pdp);
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000622 if (USES_FULL_48BIT_PPGTT(dev_priv)) {
623 cleanup_px(dev_priv, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +0100624 kfree(pdp);
625 }
626}
627
Michel Thierry69ab76f2015-07-29 17:23:55 +0100628static void gen8_initialize_pdp(struct i915_address_space *vm,
629 struct i915_page_directory_pointer *pdp)
630{
631 gen8_ppgtt_pdpe_t scratch_pdpe;
632
633 scratch_pdpe = gen8_pdpe_encode(px_dma(vm->scratch_pd), I915_CACHE_LLC);
634
Chris Wilson49d73912016-11-29 09:50:08 +0000635 fill_px(vm->i915, pdp, scratch_pdpe);
Michel Thierry69ab76f2015-07-29 17:23:55 +0100636}
637
638static void gen8_initialize_pml4(struct i915_address_space *vm,
639 struct i915_pml4 *pml4)
640{
641 gen8_ppgtt_pml4e_t scratch_pml4e;
642
643 scratch_pml4e = gen8_pml4e_encode(px_dma(vm->scratch_pdp),
644 I915_CACHE_LLC);
645
Chris Wilson49d73912016-11-29 09:50:08 +0000646 fill_px(vm->i915, pml4, scratch_pml4e);
Michel Thierry69ab76f2015-07-29 17:23:55 +0100647}
648
Michel Thierry762d9932015-07-30 11:05:29 +0100649static void
Matthew Auld5c693b22016-12-13 16:05:10 +0000650gen8_setup_pdpe(struct i915_hw_ppgtt *ppgtt,
651 struct i915_page_directory_pointer *pdp,
652 struct i915_page_directory *pd,
653 int index)
Michel Thierry762d9932015-07-30 11:05:29 +0100654{
655 gen8_ppgtt_pdpe_t *page_directorypo;
656
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000657 if (!USES_FULL_48BIT_PPGTT(to_i915(ppgtt->base.dev)))
Michel Thierry762d9932015-07-30 11:05:29 +0100658 return;
659
660 page_directorypo = kmap_px(pdp);
661 page_directorypo[index] = gen8_pdpe_encode(px_dma(pd), I915_CACHE_LLC);
662 kunmap_px(ppgtt, page_directorypo);
663}
664
665static void
Matthew Auld56843102016-12-13 16:05:11 +0000666gen8_setup_pml4e(struct i915_hw_ppgtt *ppgtt,
667 struct i915_pml4 *pml4,
668 struct i915_page_directory_pointer *pdp,
669 int index)
Michel Thierry762d9932015-07-30 11:05:29 +0100670{
671 gen8_ppgtt_pml4e_t *pagemap = kmap_px(pml4);
672
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000673 WARN_ON(!USES_FULL_48BIT_PPGTT(to_i915(ppgtt->base.dev)));
Michel Thierry762d9932015-07-30 11:05:29 +0100674 pagemap[index] = gen8_pml4e_encode(px_dma(pdp), I915_CACHE_LLC);
675 kunmap_px(ppgtt, pagemap);
Michel Thierry6ac18502015-07-29 17:23:46 +0100676}
677
Ben Widawsky94e409c2013-11-04 22:29:36 -0800678/* Broadwell Page Directory Pointer Descriptors */
John Harrisone85b26d2015-05-29 17:43:56 +0100679static int gen8_write_pdp(struct drm_i915_gem_request *req,
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100680 unsigned entry,
681 dma_addr_t addr)
Ben Widawsky94e409c2013-11-04 22:29:36 -0800682{
Chris Wilson7e37f882016-08-02 22:50:21 +0100683 struct intel_ring *ring = req->ring;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000684 struct intel_engine_cs *engine = req->engine;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800685 int ret;
686
687 BUG_ON(entry >= 4);
688
John Harrison5fb9de12015-05-29 17:44:07 +0100689 ret = intel_ring_begin(req, 6);
Ben Widawsky94e409c2013-11-04 22:29:36 -0800690 if (ret)
691 return ret;
692
Chris Wilsonb5321f32016-08-02 22:50:18 +0100693 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
694 intel_ring_emit_reg(ring, GEN8_RING_PDP_UDW(engine, entry));
695 intel_ring_emit(ring, upper_32_bits(addr));
696 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
697 intel_ring_emit_reg(ring, GEN8_RING_PDP_LDW(engine, entry));
698 intel_ring_emit(ring, lower_32_bits(addr));
699 intel_ring_advance(ring);
Ben Widawsky94e409c2013-11-04 22:29:36 -0800700
701 return 0;
702}
703
Michel Thierry2dba3232015-07-30 11:06:23 +0100704static int gen8_legacy_mm_switch(struct i915_hw_ppgtt *ppgtt,
705 struct drm_i915_gem_request *req)
Ben Widawsky94e409c2013-11-04 22:29:36 -0800706{
Ben Widawskyeeb94882013-12-06 14:11:10 -0800707 int i, ret;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800708
Michel Thierry7cb6d7a2015-04-08 12:13:29 +0100709 for (i = GEN8_LEGACY_PDPES - 1; i >= 0; i--) {
Mika Kuoppalad852c7b2015-06-25 18:35:06 +0300710 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
711
John Harrisone85b26d2015-05-29 17:43:56 +0100712 ret = gen8_write_pdp(req, i, pd_daddr);
Ben Widawskyeeb94882013-12-06 14:11:10 -0800713 if (ret)
714 return ret;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800715 }
Ben Widawskyd595bd42013-11-25 09:54:32 -0800716
Ben Widawskyeeb94882013-12-06 14:11:10 -0800717 return 0;
Ben Widawsky94e409c2013-11-04 22:29:36 -0800718}
719
Michel Thierry2dba3232015-07-30 11:06:23 +0100720static int gen8_48b_mm_switch(struct i915_hw_ppgtt *ppgtt,
721 struct drm_i915_gem_request *req)
722{
723 return gen8_write_pdp(req, 0, px_dma(&ppgtt->pml4));
724}
725
Mika Kuoppalafce93752016-10-31 17:24:46 +0200726/* PDE TLBs are a pain to invalidate on GEN8+. When we modify
727 * the page table structures, we mark them dirty so that
728 * context switching/execlist queuing code takes extra steps
729 * to ensure that tlbs are flushed.
730 */
731static void mark_tlbs_dirty(struct i915_hw_ppgtt *ppgtt)
732{
Chris Wilson49d73912016-11-29 09:50:08 +0000733 ppgtt->pd_dirty_rings = INTEL_INFO(ppgtt->base.i915)->ring_mask;
Mika Kuoppalafce93752016-10-31 17:24:46 +0200734}
735
Michał Winiarski2ce51792016-10-13 14:02:42 +0200736/* Removes entries from a single page table, releasing it if it's empty.
737 * Caller can use the return value to update higher-level entries.
738 */
739static bool gen8_ppgtt_clear_pt(struct i915_address_space *vm,
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200740 struct i915_page_table *pt,
741 uint64_t start,
742 uint64_t length)
Ben Widawsky459108b2013-11-02 21:07:23 -0700743{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300744 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200745 unsigned int num_entries = gen8_pte_count(start, length);
Mika Kuoppala37c63932016-11-01 15:27:36 +0200746 unsigned int pte = gen8_pte_index(start);
747 unsigned int pte_end = pte + num_entries;
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200748 gen8_pte_t *pt_vaddr;
749 gen8_pte_t scratch_pte = gen8_pte_encode(vm->scratch_page.daddr,
750 I915_CACHE_LLC);
751
752 if (WARN_ON(!px_page(pt)))
Michał Winiarski2ce51792016-10-13 14:02:42 +0200753 return false;
Ben Widawsky459108b2013-11-02 21:07:23 -0700754
Mika Kuoppala37c63932016-11-01 15:27:36 +0200755 GEM_BUG_ON(pte_end > GEN8_PTES);
756
757 bitmap_clear(pt->used_ptes, pte, num_entries);
Ben Widawsky06fda602015-02-24 16:22:36 +0000758
Zhi Wanga18dbba2016-11-29 14:55:16 +0800759 if (bitmap_empty(pt->used_ptes, GEN8_PTES))
Michał Winiarski2ce51792016-10-13 14:02:42 +0200760 return true;
Michał Winiarski2ce51792016-10-13 14:02:42 +0200761
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200762 pt_vaddr = kmap_px(pt);
Ben Widawsky06fda602015-02-24 16:22:36 +0000763
Mika Kuoppala37c63932016-11-01 15:27:36 +0200764 while (pte < pte_end)
765 pt_vaddr[pte++] = scratch_pte;
Ben Widawsky06fda602015-02-24 16:22:36 +0000766
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200767 kunmap_px(ppgtt, pt_vaddr);
Michał Winiarski2ce51792016-10-13 14:02:42 +0200768
769 return false;
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200770}
771
Michał Winiarski2ce51792016-10-13 14:02:42 +0200772/* Removes entries from a single page dir, releasing it if it's empty.
773 * Caller can use the return value to update higher-level entries
774 */
775static bool gen8_ppgtt_clear_pd(struct i915_address_space *vm,
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200776 struct i915_page_directory *pd,
777 uint64_t start,
778 uint64_t length)
779{
Michał Winiarski2ce51792016-10-13 14:02:42 +0200780 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200781 struct i915_page_table *pt;
782 uint64_t pde;
Michał Winiarski2ce51792016-10-13 14:02:42 +0200783 gen8_pde_t *pde_vaddr;
784 gen8_pde_t scratch_pde = gen8_pde_encode(px_dma(vm->scratch_pt),
785 I915_CACHE_LLC);
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200786
787 gen8_for_each_pde(pt, pd, start, length, pde) {
Ben Widawsky06fda602015-02-24 16:22:36 +0000788 if (WARN_ON(!pd->page_table[pde]))
Michel Thierry00245262015-06-25 12:59:38 +0100789 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000790
Michał Winiarski2ce51792016-10-13 14:02:42 +0200791 if (gen8_ppgtt_clear_pt(vm, pt, start, length)) {
792 __clear_bit(pde, pd->used_pdes);
793 pde_vaddr = kmap_px(pd);
794 pde_vaddr[pde] = scratch_pde;
795 kunmap_px(ppgtt, pde_vaddr);
Chris Wilson49d73912016-11-29 09:50:08 +0000796 free_pt(vm->i915, pt);
Michał Winiarski2ce51792016-10-13 14:02:42 +0200797 }
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200798 }
Michał Winiarski2ce51792016-10-13 14:02:42 +0200799
Zhi Wanga18dbba2016-11-29 14:55:16 +0800800 if (bitmap_empty(pd->used_pdes, I915_PDES))
Michał Winiarski2ce51792016-10-13 14:02:42 +0200801 return true;
Michał Winiarski2ce51792016-10-13 14:02:42 +0200802
803 return false;
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200804}
Ben Widawsky06fda602015-02-24 16:22:36 +0000805
Michał Winiarski2ce51792016-10-13 14:02:42 +0200806/* Removes entries from a single page dir pointer, releasing it if it's empty.
807 * Caller can use the return value to update higher-level entries
808 */
809static bool gen8_ppgtt_clear_pdp(struct i915_address_space *vm,
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200810 struct i915_page_directory_pointer *pdp,
811 uint64_t start,
812 uint64_t length)
813{
Michał Winiarski2ce51792016-10-13 14:02:42 +0200814 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200815 struct i915_page_directory *pd;
816 uint64_t pdpe;
817
818 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
819 if (WARN_ON(!pdp->page_directory[pdpe]))
Michel Thierry00245262015-06-25 12:59:38 +0100820 break;
Ben Widawsky06fda602015-02-24 16:22:36 +0000821
Michał Winiarski2ce51792016-10-13 14:02:42 +0200822 if (gen8_ppgtt_clear_pd(vm, pd, start, length)) {
823 __clear_bit(pdpe, pdp->used_pdpes);
Matthew Auld9e65a372016-12-13 16:05:12 +0000824 gen8_setup_pdpe(ppgtt, pdp, vm->scratch_pd, pdpe);
Chris Wilson49d73912016-11-29 09:50:08 +0000825 free_pd(vm->i915, pd);
Michał Winiarski2ce51792016-10-13 14:02:42 +0200826 }
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200827 }
Michał Winiarski2ce51792016-10-13 14:02:42 +0200828
Mika Kuoppalafce93752016-10-31 17:24:46 +0200829 mark_tlbs_dirty(ppgtt);
830
Zhi Wanga18dbba2016-11-29 14:55:16 +0800831 if (bitmap_empty(pdp->used_pdpes, I915_PDPES_PER_PDP(dev_priv)))
Michał Winiarski2ce51792016-10-13 14:02:42 +0200832 return true;
Michał Winiarski2ce51792016-10-13 14:02:42 +0200833
834 return false;
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200835}
Ben Widawsky459108b2013-11-02 21:07:23 -0700836
Michał Winiarski2ce51792016-10-13 14:02:42 +0200837/* Removes entries from a single pml4.
838 * This is the top-level structure in 4-level page tables used on gen8+.
839 * Empty entries are always scratch pml4e.
840 */
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200841static void gen8_ppgtt_clear_pml4(struct i915_address_space *vm,
842 struct i915_pml4 *pml4,
843 uint64_t start,
844 uint64_t length)
845{
Michał Winiarski2ce51792016-10-13 14:02:42 +0200846 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200847 struct i915_page_directory_pointer *pdp;
848 uint64_t pml4e;
Michał Winiarski2ce51792016-10-13 14:02:42 +0200849
Chris Wilson49d73912016-11-29 09:50:08 +0000850 GEM_BUG_ON(!USES_FULL_48BIT_PPGTT(vm->i915));
Ben Widawsky459108b2013-11-02 21:07:23 -0700851
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200852 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
853 if (WARN_ON(!pml4->pdps[pml4e]))
854 break;
Ben Widawsky459108b2013-11-02 21:07:23 -0700855
Michał Winiarski2ce51792016-10-13 14:02:42 +0200856 if (gen8_ppgtt_clear_pdp(vm, pdp, start, length)) {
857 __clear_bit(pml4e, pml4->used_pml4es);
Matthew Auld9e65a372016-12-13 16:05:12 +0000858 gen8_setup_pml4e(ppgtt, pml4, vm->scratch_pdp, pml4e);
Chris Wilson49d73912016-11-29 09:50:08 +0000859 free_pdp(vm->i915, pdp);
Michał Winiarski2ce51792016-10-13 14:02:42 +0200860 }
Ben Widawsky459108b2013-11-02 21:07:23 -0700861 }
862}
863
Michel Thierryf9b5b782015-07-30 11:02:49 +0100864static void gen8_ppgtt_clear_range(struct i915_address_space *vm,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200865 uint64_t start, uint64_t length)
Ben Widawsky9df15b42013-11-02 21:07:24 -0700866{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300867 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierryf9b5b782015-07-30 11:02:49 +0100868
Chris Wilsonc6385c92016-11-29 12:42:05 +0000869 if (USES_FULL_48BIT_PPGTT(vm->i915))
Michał Winiarskid209b9c2016-10-13 14:02:41 +0200870 gen8_ppgtt_clear_pml4(vm, &ppgtt->pml4, start, length);
871 else
872 gen8_ppgtt_clear_pdp(vm, &ppgtt->pdp, start, length);
Michel Thierryf9b5b782015-07-30 11:02:49 +0100873}
874
875static void
876gen8_ppgtt_insert_pte_entries(struct i915_address_space *vm,
877 struct i915_page_directory_pointer *pdp,
Michel Thierry3387d432015-08-03 09:52:47 +0100878 struct sg_page_iter *sg_iter,
Michel Thierryf9b5b782015-07-30 11:02:49 +0100879 uint64_t start,
880 enum i915_cache_level cache_level)
881{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300882 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry07749ef2015-03-16 16:00:54 +0000883 gen8_pte_t *pt_vaddr;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100884 unsigned pdpe = gen8_pdpe_index(start);
885 unsigned pde = gen8_pde_index(start);
886 unsigned pte = gen8_pte_index(start);
Ben Widawsky9df15b42013-11-02 21:07:24 -0700887
Chris Wilson6f1cc992013-12-31 15:50:31 +0000888 pt_vaddr = NULL;
Ben Widawsky9df15b42013-11-02 21:07:24 -0700889
Michel Thierry3387d432015-08-03 09:52:47 +0100890 while (__sg_page_iter_next(sg_iter)) {
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000891 if (pt_vaddr == NULL) {
Michel Thierryd4ec9da2015-07-30 11:02:03 +0100892 struct i915_page_directory *pd = pdp->page_directory[pdpe];
Michel Thierryec565b32015-04-08 12:13:23 +0100893 struct i915_page_table *pt = pd->page_table[pde];
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300894 pt_vaddr = kmap_px(pt);
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000895 }
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800896
897 pt_vaddr[pte] =
Michel Thierry3387d432015-08-03 09:52:47 +0100898 gen8_pte_encode(sg_page_iter_dma_address(sg_iter),
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200899 cache_level);
Michel Thierry07749ef2015-03-16 16:00:54 +0000900 if (++pte == GEN8_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300901 kunmap_px(ppgtt, pt_vaddr);
Chris Wilson6f1cc992013-12-31 15:50:31 +0000902 pt_vaddr = NULL;
Michel Thierry07749ef2015-03-16 16:00:54 +0000903 if (++pde == I915_PDES) {
Chris Wilsonc6385c92016-11-29 12:42:05 +0000904 if (++pdpe == I915_PDPES_PER_PDP(vm->i915))
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100905 break;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800906 pde = 0;
907 }
908 pte = 0;
Ben Widawsky9df15b42013-11-02 21:07:24 -0700909 }
910 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +0300911
912 if (pt_vaddr)
913 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky9df15b42013-11-02 21:07:24 -0700914}
915
Michel Thierryf9b5b782015-07-30 11:02:49 +0100916static void gen8_ppgtt_insert_entries(struct i915_address_space *vm,
917 struct sg_table *pages,
918 uint64_t start,
919 enum i915_cache_level cache_level,
920 u32 unused)
921{
Joonas Lahtinene5716f52016-04-07 11:08:03 +0300922 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry3387d432015-08-03 09:52:47 +0100923 struct sg_page_iter sg_iter;
Michel Thierryf9b5b782015-07-30 11:02:49 +0100924
Michel Thierry3387d432015-08-03 09:52:47 +0100925 __sg_page_iter_start(&sg_iter, pages->sgl, sg_nents(pages->sgl), 0);
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100926
Chris Wilsonc6385c92016-11-29 12:42:05 +0000927 if (!USES_FULL_48BIT_PPGTT(vm->i915)) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100928 gen8_ppgtt_insert_pte_entries(vm, &ppgtt->pdp, &sg_iter, start,
929 cache_level);
930 } else {
931 struct i915_page_directory_pointer *pdp;
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000932 uint64_t pml4e;
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100933 uint64_t length = (uint64_t)pages->orig_nents << PAGE_SHIFT;
934
Dave Gordone8ebd8e2015-12-08 13:30:51 +0000935 gen8_for_each_pml4e(pdp, &ppgtt->pml4, start, length, pml4e) {
Michel Thierryde5ba8e2015-08-03 09:53:27 +0100936 gen8_ppgtt_insert_pte_entries(vm, pdp, &sg_iter,
937 start, cache_level);
938 }
939 }
Michel Thierryf9b5b782015-07-30 11:02:49 +0100940}
941
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000942static void gen8_free_page_tables(struct drm_i915_private *dev_priv,
Michel Thierryf37c0502015-06-10 17:46:39 +0100943 struct i915_page_directory *pd)
Ben Widawskyb45a6712014-02-12 14:28:44 -0800944{
945 int i;
946
Mika Kuoppala567047b2015-06-25 18:35:12 +0300947 if (!px_page(pd))
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800948 return;
Ben Widawskyb45a6712014-02-12 14:28:44 -0800949
Michel Thierry33c88192015-04-08 12:13:33 +0100950 for_each_set_bit(i, pd->used_pdes, I915_PDES) {
Ben Widawsky06fda602015-02-24 16:22:36 +0000951 if (WARN_ON(!pd->page_table[i]))
952 continue;
Ben Widawsky7ad47cf2014-02-20 11:51:21 -0800953
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000954 free_pt(dev_priv, pd->page_table[i]);
Ben Widawsky06fda602015-02-24 16:22:36 +0000955 pd->page_table[i] = NULL;
956 }
Ben Widawskyd7b3de92015-02-24 16:22:34 +0000957}
958
Mika Kuoppala8776f022015-06-30 18:16:40 +0300959static int gen8_init_scratch(struct i915_address_space *vm)
960{
Chris Wilson49d73912016-11-29 09:50:08 +0000961 struct drm_i915_private *dev_priv = vm->i915;
Matthew Auld64c050d2016-04-27 13:19:25 +0100962 int ret;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300963
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000964 ret = setup_scratch_page(dev_priv, &vm->scratch_page, I915_GFP_DMA);
Chris Wilson8bcdd0f72016-08-22 08:44:30 +0100965 if (ret)
966 return ret;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300967
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000968 vm->scratch_pt = alloc_pt(dev_priv);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300969 if (IS_ERR(vm->scratch_pt)) {
Matthew Auld64c050d2016-04-27 13:19:25 +0100970 ret = PTR_ERR(vm->scratch_pt);
971 goto free_scratch_page;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300972 }
973
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000974 vm->scratch_pd = alloc_pd(dev_priv);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300975 if (IS_ERR(vm->scratch_pd)) {
Matthew Auld64c050d2016-04-27 13:19:25 +0100976 ret = PTR_ERR(vm->scratch_pd);
977 goto free_pt;
Mika Kuoppala8776f022015-06-30 18:16:40 +0300978 }
979
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000980 if (USES_FULL_48BIT_PPGTT(dev_priv)) {
981 vm->scratch_pdp = alloc_pdp(dev_priv);
Michel Thierry69ab76f2015-07-29 17:23:55 +0100982 if (IS_ERR(vm->scratch_pdp)) {
Matthew Auld64c050d2016-04-27 13:19:25 +0100983 ret = PTR_ERR(vm->scratch_pdp);
984 goto free_pd;
Michel Thierry69ab76f2015-07-29 17:23:55 +0100985 }
986 }
987
Mika Kuoppala8776f022015-06-30 18:16:40 +0300988 gen8_initialize_pt(vm, vm->scratch_pt);
989 gen8_initialize_pd(vm, vm->scratch_pd);
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000990 if (USES_FULL_48BIT_PPGTT(dev_priv))
Michel Thierry69ab76f2015-07-29 17:23:55 +0100991 gen8_initialize_pdp(vm, vm->scratch_pdp);
Mika Kuoppala8776f022015-06-30 18:16:40 +0300992
993 return 0;
Matthew Auld64c050d2016-04-27 13:19:25 +0100994
995free_pd:
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000996 free_pd(dev_priv, vm->scratch_pd);
Matthew Auld64c050d2016-04-27 13:19:25 +0100997free_pt:
Tvrtko Ursulin275a9912016-11-16 08:55:34 +0000998 free_pt(dev_priv, vm->scratch_pt);
Matthew Auld64c050d2016-04-27 13:19:25 +0100999free_scratch_page:
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001000 cleanup_scratch_page(dev_priv, &vm->scratch_page);
Matthew Auld64c050d2016-04-27 13:19:25 +01001001
1002 return ret;
Mika Kuoppala8776f022015-06-30 18:16:40 +03001003}
1004
Zhiyuan Lv650da342015-08-28 15:41:18 +08001005static int gen8_ppgtt_notify_vgt(struct i915_hw_ppgtt *ppgtt, bool create)
1006{
1007 enum vgt_g2v_type msg;
Chris Wilson49d73912016-11-29 09:50:08 +00001008 struct drm_i915_private *dev_priv = ppgtt->base.i915;
Zhiyuan Lv650da342015-08-28 15:41:18 +08001009 int i;
1010
Matthew Aulddf285642016-04-22 12:09:25 +01001011 if (USES_FULL_48BIT_PPGTT(dev_priv)) {
Zhiyuan Lv650da342015-08-28 15:41:18 +08001012 u64 daddr = px_dma(&ppgtt->pml4);
1013
Ville Syrjäläab75bb52015-11-04 23:20:12 +02001014 I915_WRITE(vgtif_reg(pdp[0].lo), lower_32_bits(daddr));
1015 I915_WRITE(vgtif_reg(pdp[0].hi), upper_32_bits(daddr));
Zhiyuan Lv650da342015-08-28 15:41:18 +08001016
1017 msg = (create ? VGT_G2V_PPGTT_L4_PAGE_TABLE_CREATE :
1018 VGT_G2V_PPGTT_L4_PAGE_TABLE_DESTROY);
1019 } else {
1020 for (i = 0; i < GEN8_LEGACY_PDPES; i++) {
1021 u64 daddr = i915_page_dir_dma_addr(ppgtt, i);
1022
Ville Syrjäläab75bb52015-11-04 23:20:12 +02001023 I915_WRITE(vgtif_reg(pdp[i].lo), lower_32_bits(daddr));
1024 I915_WRITE(vgtif_reg(pdp[i].hi), upper_32_bits(daddr));
Zhiyuan Lv650da342015-08-28 15:41:18 +08001025 }
1026
1027 msg = (create ? VGT_G2V_PPGTT_L3_PAGE_TABLE_CREATE :
1028 VGT_G2V_PPGTT_L3_PAGE_TABLE_DESTROY);
1029 }
1030
1031 I915_WRITE(vgtif_reg(g2v_notify), msg);
1032
1033 return 0;
1034}
1035
Mika Kuoppala8776f022015-06-30 18:16:40 +03001036static void gen8_free_scratch(struct i915_address_space *vm)
1037{
Chris Wilson49d73912016-11-29 09:50:08 +00001038 struct drm_i915_private *dev_priv = vm->i915;
Mika Kuoppala8776f022015-06-30 18:16:40 +03001039
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001040 if (USES_FULL_48BIT_PPGTT(dev_priv))
1041 free_pdp(dev_priv, vm->scratch_pdp);
1042 free_pd(dev_priv, vm->scratch_pd);
1043 free_pt(dev_priv, vm->scratch_pt);
1044 cleanup_scratch_page(dev_priv, &vm->scratch_page);
Mika Kuoppala8776f022015-06-30 18:16:40 +03001045}
1046
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001047static void gen8_ppgtt_cleanup_3lvl(struct drm_i915_private *dev_priv,
Michel Thierry762d9932015-07-30 11:05:29 +01001048 struct i915_page_directory_pointer *pdp)
Ben Widawsky7ad47cf2014-02-20 11:51:21 -08001049{
1050 int i;
1051
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001052 for_each_set_bit(i, pdp->used_pdpes, I915_PDPES_PER_PDP(dev_priv)) {
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001053 if (WARN_ON(!pdp->page_directory[i]))
Ben Widawsky06fda602015-02-24 16:22:36 +00001054 continue;
1055
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001056 gen8_free_page_tables(dev_priv, pdp->page_directory[i]);
1057 free_pd(dev_priv, pdp->page_directory[i]);
Ben Widawsky7ad47cf2014-02-20 11:51:21 -08001058 }
Michel Thierry69876be2015-04-08 12:13:27 +01001059
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001060 free_pdp(dev_priv, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +01001061}
1062
1063static void gen8_ppgtt_cleanup_4lvl(struct i915_hw_ppgtt *ppgtt)
1064{
Chris Wilson49d73912016-11-29 09:50:08 +00001065 struct drm_i915_private *dev_priv = ppgtt->base.i915;
Michel Thierry762d9932015-07-30 11:05:29 +01001066 int i;
1067
1068 for_each_set_bit(i, ppgtt->pml4.used_pml4es, GEN8_PML4ES_PER_PML4) {
1069 if (WARN_ON(!ppgtt->pml4.pdps[i]))
1070 continue;
1071
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001072 gen8_ppgtt_cleanup_3lvl(dev_priv, ppgtt->pml4.pdps[i]);
Michel Thierry762d9932015-07-30 11:05:29 +01001073 }
1074
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001075 cleanup_px(dev_priv, &ppgtt->pml4);
Michel Thierry762d9932015-07-30 11:05:29 +01001076}
1077
1078static void gen8_ppgtt_cleanup(struct i915_address_space *vm)
1079{
Chris Wilson49d73912016-11-29 09:50:08 +00001080 struct drm_i915_private *dev_priv = vm->i915;
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001081 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry762d9932015-07-30 11:05:29 +01001082
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001083 if (intel_vgpu_active(dev_priv))
Zhiyuan Lv650da342015-08-28 15:41:18 +08001084 gen8_ppgtt_notify_vgt(ppgtt, false);
1085
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001086 if (!USES_FULL_48BIT_PPGTT(dev_priv))
1087 gen8_ppgtt_cleanup_3lvl(dev_priv, &ppgtt->pdp);
Michel Thierry762d9932015-07-30 11:05:29 +01001088 else
1089 gen8_ppgtt_cleanup_4lvl(ppgtt);
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001090
Mika Kuoppala8776f022015-06-30 18:16:40 +03001091 gen8_free_scratch(vm);
Ben Widawskyb45a6712014-02-12 14:28:44 -08001092}
1093
Michel Thierryd7b26332015-04-08 12:13:34 +01001094/**
1095 * gen8_ppgtt_alloc_pagetabs() - Allocate page tables for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001096 * @vm: Master vm structure.
1097 * @pd: Page directory for this address range.
Michel Thierryd7b26332015-04-08 12:13:34 +01001098 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001099 * @length: Size of the allocations.
Michel Thierryd7b26332015-04-08 12:13:34 +01001100 * @new_pts: Bitmap set by function with new allocations. Likely used by the
1101 * caller to free on error.
1102 *
1103 * Allocate the required number of page tables. Extremely similar to
1104 * gen8_ppgtt_alloc_page_directories(). The main difference is here we are limited by
1105 * the page directory boundary (instead of the page directory pointer). That
1106 * boundary is 1GB virtual. Therefore, unlike gen8_ppgtt_alloc_page_directories(), it is
1107 * possible, and likely that the caller will need to use multiple calls of this
1108 * function to achieve the appropriate allocation.
1109 *
1110 * Return: 0 if success; negative error code otherwise.
1111 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001112static int gen8_ppgtt_alloc_pagetabs(struct i915_address_space *vm,
Michel Thierrye5815a22015-04-08 12:13:32 +01001113 struct i915_page_directory *pd,
Michel Thierry5441f0c2015-04-08 12:13:28 +01001114 uint64_t start,
Michel Thierryd7b26332015-04-08 12:13:34 +01001115 uint64_t length,
1116 unsigned long *new_pts)
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001117{
Chris Wilson49d73912016-11-29 09:50:08 +00001118 struct drm_i915_private *dev_priv = vm->i915;
Michel Thierryd7b26332015-04-08 12:13:34 +01001119 struct i915_page_table *pt;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001120 uint32_t pde;
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001121
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001122 gen8_for_each_pde(pt, pd, start, length, pde) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001123 /* Don't reallocate page tables */
Michel Thierry6ac18502015-07-29 17:23:46 +01001124 if (test_bit(pde, pd->used_pdes)) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001125 /* Scratch is never allocated this way */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001126 WARN_ON(pt == vm->scratch_pt);
Michel Thierryd7b26332015-04-08 12:13:34 +01001127 continue;
1128 }
1129
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001130 pt = alloc_pt(dev_priv);
Michel Thierryd7b26332015-04-08 12:13:34 +01001131 if (IS_ERR(pt))
Ben Widawsky06fda602015-02-24 16:22:36 +00001132 goto unwind_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001133
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001134 gen8_initialize_pt(vm, pt);
Michel Thierryd7b26332015-04-08 12:13:34 +01001135 pd->page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001136 __set_bit(pde, new_pts);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001137 trace_i915_page_table_entry_alloc(vm, pde, start, GEN8_PDE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001138 }
1139
1140 return 0;
1141
1142unwind_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001143 for_each_set_bit(pde, new_pts, I915_PDES)
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001144 free_pt(dev_priv, pd->page_table[pde]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001145
1146 return -ENOMEM;
1147}
1148
Michel Thierryd7b26332015-04-08 12:13:34 +01001149/**
1150 * gen8_ppgtt_alloc_page_directories() - Allocate page directories for VA range.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001151 * @vm: Master vm structure.
Michel Thierryd7b26332015-04-08 12:13:34 +01001152 * @pdp: Page directory pointer for this address range.
1153 * @start: Starting virtual address to begin allocations.
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001154 * @length: Size of the allocations.
1155 * @new_pds: Bitmap set by function with new allocations. Likely used by the
Michel Thierryd7b26332015-04-08 12:13:34 +01001156 * caller to free on error.
1157 *
1158 * Allocate the required number of page directories starting at the pde index of
1159 * @start, and ending at the pde index @start + @length. This function will skip
1160 * over already allocated page directories within the range, and only allocate
1161 * new ones, setting the appropriate pointer within the pdp as well as the
1162 * correct position in the bitmap @new_pds.
1163 *
1164 * The function will only allocate the pages within the range for a give page
1165 * directory pointer. In other words, if @start + @length straddles a virtually
1166 * addressed PDP boundary (512GB for 4k pages), there will be more allocations
1167 * required by the caller, This is not currently possible, and the BUG in the
1168 * code will prevent it.
1169 *
1170 * Return: 0 if success; negative error code otherwise.
1171 */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001172static int
1173gen8_ppgtt_alloc_page_directories(struct i915_address_space *vm,
1174 struct i915_page_directory_pointer *pdp,
1175 uint64_t start,
1176 uint64_t length,
1177 unsigned long *new_pds)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001178{
Chris Wilson49d73912016-11-29 09:50:08 +00001179 struct drm_i915_private *dev_priv = vm->i915;
Michel Thierryd7b26332015-04-08 12:13:34 +01001180 struct i915_page_directory *pd;
Michel Thierry69876be2015-04-08 12:13:27 +01001181 uint32_t pdpe;
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001182 uint32_t pdpes = I915_PDPES_PER_PDP(dev_priv);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001183
Michel Thierry6ac18502015-07-29 17:23:46 +01001184 WARN_ON(!bitmap_empty(new_pds, pdpes));
Michel Thierryd7b26332015-04-08 12:13:34 +01001185
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001186 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierry6ac18502015-07-29 17:23:46 +01001187 if (test_bit(pdpe, pdp->used_pdpes))
Michel Thierryd7b26332015-04-08 12:13:34 +01001188 continue;
Michel Thierry33c88192015-04-08 12:13:33 +01001189
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001190 pd = alloc_pd(dev_priv);
Michel Thierryd7b26332015-04-08 12:13:34 +01001191 if (IS_ERR(pd))
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001192 goto unwind_out;
Michel Thierry69876be2015-04-08 12:13:27 +01001193
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001194 gen8_initialize_pd(vm, pd);
Michel Thierryd7b26332015-04-08 12:13:34 +01001195 pdp->page_directory[pdpe] = pd;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001196 __set_bit(pdpe, new_pds);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001197 trace_i915_page_directory_entry_alloc(vm, pdpe, start, GEN8_PDPE_SHIFT);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001198 }
1199
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001200 return 0;
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001201
1202unwind_out:
Michel Thierry6ac18502015-07-29 17:23:46 +01001203 for_each_set_bit(pdpe, new_pds, pdpes)
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001204 free_pd(dev_priv, pdp->page_directory[pdpe]);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001205
1206 return -ENOMEM;
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001207}
1208
Michel Thierry762d9932015-07-30 11:05:29 +01001209/**
1210 * gen8_ppgtt_alloc_page_dirpointers() - Allocate pdps for VA range.
1211 * @vm: Master vm structure.
1212 * @pml4: Page map level 4 for this address range.
1213 * @start: Starting virtual address to begin allocations.
1214 * @length: Size of the allocations.
1215 * @new_pdps: Bitmap set by function with new allocations. Likely used by the
1216 * caller to free on error.
1217 *
1218 * Allocate the required number of page directory pointers. Extremely similar to
1219 * gen8_ppgtt_alloc_page_directories() and gen8_ppgtt_alloc_pagetabs().
1220 * The main difference is here we are limited by the pml4 boundary (instead of
1221 * the page directory pointer).
1222 *
1223 * Return: 0 if success; negative error code otherwise.
1224 */
1225static int
1226gen8_ppgtt_alloc_page_dirpointers(struct i915_address_space *vm,
1227 struct i915_pml4 *pml4,
1228 uint64_t start,
1229 uint64_t length,
1230 unsigned long *new_pdps)
1231{
Chris Wilson49d73912016-11-29 09:50:08 +00001232 struct drm_i915_private *dev_priv = vm->i915;
Michel Thierry762d9932015-07-30 11:05:29 +01001233 struct i915_page_directory_pointer *pdp;
Michel Thierry762d9932015-07-30 11:05:29 +01001234 uint32_t pml4e;
1235
1236 WARN_ON(!bitmap_empty(new_pdps, GEN8_PML4ES_PER_PML4));
1237
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001238 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierry762d9932015-07-30 11:05:29 +01001239 if (!test_bit(pml4e, pml4->used_pml4es)) {
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001240 pdp = alloc_pdp(dev_priv);
Michel Thierry762d9932015-07-30 11:05:29 +01001241 if (IS_ERR(pdp))
1242 goto unwind_out;
1243
Michel Thierry69ab76f2015-07-29 17:23:55 +01001244 gen8_initialize_pdp(vm, pdp);
Michel Thierry762d9932015-07-30 11:05:29 +01001245 pml4->pdps[pml4e] = pdp;
1246 __set_bit(pml4e, new_pdps);
1247 trace_i915_page_directory_pointer_entry_alloc(vm,
1248 pml4e,
1249 start,
1250 GEN8_PML4E_SHIFT);
1251 }
1252 }
1253
1254 return 0;
1255
1256unwind_out:
1257 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001258 free_pdp(dev_priv, pml4->pdps[pml4e]);
Michel Thierry762d9932015-07-30 11:05:29 +01001259
1260 return -ENOMEM;
1261}
1262
Michel Thierryd7b26332015-04-08 12:13:34 +01001263static void
Michał Winiarski3a41a052015-09-03 19:22:18 +02001264free_gen8_temp_bitmaps(unsigned long *new_pds, unsigned long *new_pts)
Michel Thierryd7b26332015-04-08 12:13:34 +01001265{
Michel Thierryd7b26332015-04-08 12:13:34 +01001266 kfree(new_pts);
1267 kfree(new_pds);
1268}
1269
1270/* Fills in the page directory bitmap, and the array of page tables bitmap. Both
1271 * of these are based on the number of PDPEs in the system.
1272 */
1273static
1274int __must_check alloc_gen8_temp_bitmaps(unsigned long **new_pds,
Michał Winiarski3a41a052015-09-03 19:22:18 +02001275 unsigned long **new_pts,
Michel Thierry6ac18502015-07-29 17:23:46 +01001276 uint32_t pdpes)
Michel Thierryd7b26332015-04-08 12:13:34 +01001277{
Michel Thierryd7b26332015-04-08 12:13:34 +01001278 unsigned long *pds;
Michał Winiarski3a41a052015-09-03 19:22:18 +02001279 unsigned long *pts;
Michel Thierryd7b26332015-04-08 12:13:34 +01001280
Michał Winiarski3a41a052015-09-03 19:22:18 +02001281 pds = kcalloc(BITS_TO_LONGS(pdpes), sizeof(unsigned long), GFP_TEMPORARY);
Michel Thierryd7b26332015-04-08 12:13:34 +01001282 if (!pds)
1283 return -ENOMEM;
1284
Michał Winiarski3a41a052015-09-03 19:22:18 +02001285 pts = kcalloc(pdpes, BITS_TO_LONGS(I915_PDES) * sizeof(unsigned long),
1286 GFP_TEMPORARY);
1287 if (!pts)
1288 goto err_out;
Michel Thierryd7b26332015-04-08 12:13:34 +01001289
1290 *new_pds = pds;
1291 *new_pts = pts;
1292
1293 return 0;
1294
1295err_out:
Michał Winiarski3a41a052015-09-03 19:22:18 +02001296 free_gen8_temp_bitmaps(pds, pts);
Michel Thierryd7b26332015-04-08 12:13:34 +01001297 return -ENOMEM;
1298}
1299
Michel Thierry762d9932015-07-30 11:05:29 +01001300static int gen8_alloc_va_range_3lvl(struct i915_address_space *vm,
1301 struct i915_page_directory_pointer *pdp,
1302 uint64_t start,
1303 uint64_t length)
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001304{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001305 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michał Winiarski3a41a052015-09-03 19:22:18 +02001306 unsigned long *new_page_dirs, *new_page_tables;
Chris Wilson49d73912016-11-29 09:50:08 +00001307 struct drm_i915_private *dev_priv = vm->i915;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001308 struct i915_page_directory *pd;
Michel Thierry33c88192015-04-08 12:13:33 +01001309 const uint64_t orig_start = start;
1310 const uint64_t orig_length = length;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001311 uint32_t pdpe;
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001312 uint32_t pdpes = I915_PDPES_PER_PDP(dev_priv);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001313 int ret;
1314
Michel Thierry6ac18502015-07-29 17:23:46 +01001315 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001316 if (ret)
1317 return ret;
1318
Michel Thierryd7b26332015-04-08 12:13:34 +01001319 /* Do the allocations first so we can easily bail out */
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001320 ret = gen8_ppgtt_alloc_page_directories(vm, pdp, start, length,
1321 new_page_dirs);
Michel Thierryd7b26332015-04-08 12:13:34 +01001322 if (ret) {
Michał Winiarski3a41a052015-09-03 19:22:18 +02001323 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Michel Thierryd7b26332015-04-08 12:13:34 +01001324 return ret;
1325 }
1326
1327 /* For every page directory referenced, allocate page tables */
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001328 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001329 ret = gen8_ppgtt_alloc_pagetabs(vm, pd, start, length,
Michał Winiarski3a41a052015-09-03 19:22:18 +02001330 new_page_tables + pdpe * BITS_TO_LONGS(I915_PDES));
Michel Thierry5441f0c2015-04-08 12:13:28 +01001331 if (ret)
1332 goto err_out;
Michel Thierry5441f0c2015-04-08 12:13:28 +01001333 }
1334
Michel Thierry33c88192015-04-08 12:13:33 +01001335 start = orig_start;
1336 length = orig_length;
1337
Michel Thierryd7b26332015-04-08 12:13:34 +01001338 /* Allocations have completed successfully, so set the bitmaps, and do
1339 * the mappings. */
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001340 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001341 gen8_pde_t *const page_directory = kmap_px(pd);
Michel Thierry33c88192015-04-08 12:13:33 +01001342 struct i915_page_table *pt;
Michel Thierry09120d42015-07-29 17:23:45 +01001343 uint64_t pd_len = length;
Michel Thierry33c88192015-04-08 12:13:33 +01001344 uint64_t pd_start = start;
1345 uint32_t pde;
1346
Michel Thierryd7b26332015-04-08 12:13:34 +01001347 /* Every pd should be allocated, we just did that above. */
1348 WARN_ON(!pd);
1349
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001350 gen8_for_each_pde(pt, pd, pd_start, pd_len, pde) {
Michel Thierryd7b26332015-04-08 12:13:34 +01001351 /* Same reasoning as pd */
1352 WARN_ON(!pt);
1353 WARN_ON(!pd_len);
1354 WARN_ON(!gen8_pte_count(pd_start, pd_len));
1355
1356 /* Set our used ptes within the page table */
1357 bitmap_set(pt->used_ptes,
1358 gen8_pte_index(pd_start),
1359 gen8_pte_count(pd_start, pd_len));
1360
1361 /* Our pde is now pointing to the pagetable, pt */
Mika Kuoppala966082c2015-06-25 18:35:19 +03001362 __set_bit(pde, pd->used_pdes);
Michel Thierryd7b26332015-04-08 12:13:34 +01001363
1364 /* Map the PDE to the page table */
Mika Kuoppalafe36f552015-06-25 18:35:16 +03001365 page_directory[pde] = gen8_pde_encode(px_dma(pt),
1366 I915_CACHE_LLC);
Michel Thierry4c06ec82015-07-29 17:23:49 +01001367 trace_i915_page_table_entry_map(&ppgtt->base, pde, pt,
1368 gen8_pte_index(start),
1369 gen8_pte_count(start, length),
1370 GEN8_PTES);
Michel Thierryd7b26332015-04-08 12:13:34 +01001371
1372 /* NB: We haven't yet mapped ptes to pages. At this
1373 * point we're still relying on insert_entries() */
Michel Thierry33c88192015-04-08 12:13:33 +01001374 }
Michel Thierryd7b26332015-04-08 12:13:34 +01001375
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001376 kunmap_px(ppgtt, page_directory);
Michel Thierryd4ec9da2015-07-30 11:02:03 +01001377 __set_bit(pdpe, pdp->used_pdpes);
Matthew Auld5c693b22016-12-13 16:05:10 +00001378 gen8_setup_pdpe(ppgtt, pdp, pd, pdpe);
Michel Thierry33c88192015-04-08 12:13:33 +01001379 }
1380
Michał Winiarski3a41a052015-09-03 19:22:18 +02001381 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Mika Kuoppala5b7e4c9c2015-06-25 18:35:03 +03001382 mark_tlbs_dirty(ppgtt);
Ben Widawskyd7b3de92015-02-24 16:22:34 +00001383 return 0;
1384
1385err_out:
Michel Thierryd7b26332015-04-08 12:13:34 +01001386 while (pdpe--) {
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001387 unsigned long temp;
1388
Michał Winiarski3a41a052015-09-03 19:22:18 +02001389 for_each_set_bit(temp, new_page_tables + pdpe *
1390 BITS_TO_LONGS(I915_PDES), I915_PDES)
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001391 free_pt(dev_priv,
1392 pdp->page_directory[pdpe]->page_table[temp]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001393 }
1394
Michel Thierry6ac18502015-07-29 17:23:46 +01001395 for_each_set_bit(pdpe, new_page_dirs, pdpes)
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001396 free_pd(dev_priv, pdp->page_directory[pdpe]);
Michel Thierryd7b26332015-04-08 12:13:34 +01001397
Michał Winiarski3a41a052015-09-03 19:22:18 +02001398 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Mika Kuoppala5b7e4c9c2015-06-25 18:35:03 +03001399 mark_tlbs_dirty(ppgtt);
Ben Widawskybf2b4ed2014-02-19 22:05:43 -08001400 return ret;
1401}
1402
Michel Thierry762d9932015-07-30 11:05:29 +01001403static int gen8_alloc_va_range_4lvl(struct i915_address_space *vm,
1404 struct i915_pml4 *pml4,
1405 uint64_t start,
1406 uint64_t length)
1407{
1408 DECLARE_BITMAP(new_pdps, GEN8_PML4ES_PER_PML4);
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001409 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry762d9932015-07-30 11:05:29 +01001410 struct i915_page_directory_pointer *pdp;
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001411 uint64_t pml4e;
Michel Thierry762d9932015-07-30 11:05:29 +01001412 int ret = 0;
1413
1414 /* Do the pml4 allocations first, so we don't need to track the newly
1415 * allocated tables below the pdp */
1416 bitmap_zero(new_pdps, GEN8_PML4ES_PER_PML4);
1417
1418 /* The pagedirectory and pagetable allocations are done in the shared 3
1419 * and 4 level code. Just allocate the pdps.
1420 */
1421 ret = gen8_ppgtt_alloc_page_dirpointers(vm, pml4, start, length,
1422 new_pdps);
1423 if (ret)
1424 return ret;
1425
1426 WARN(bitmap_weight(new_pdps, GEN8_PML4ES_PER_PML4) > 2,
1427 "The allocation has spanned more than 512GB. "
1428 "It is highly likely this is incorrect.");
1429
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001430 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierry762d9932015-07-30 11:05:29 +01001431 WARN_ON(!pdp);
1432
1433 ret = gen8_alloc_va_range_3lvl(vm, pdp, start, length);
1434 if (ret)
1435 goto err_out;
1436
Matthew Auld56843102016-12-13 16:05:11 +00001437 gen8_setup_pml4e(ppgtt, pml4, pdp, pml4e);
Michel Thierry762d9932015-07-30 11:05:29 +01001438 }
1439
1440 bitmap_or(pml4->used_pml4es, new_pdps, pml4->used_pml4es,
1441 GEN8_PML4ES_PER_PML4);
1442
1443 return 0;
1444
1445err_out:
1446 for_each_set_bit(pml4e, new_pdps, GEN8_PML4ES_PER_PML4)
Chris Wilson49d73912016-11-29 09:50:08 +00001447 gen8_ppgtt_cleanup_3lvl(vm->i915, pml4->pdps[pml4e]);
Michel Thierry762d9932015-07-30 11:05:29 +01001448
1449 return ret;
1450}
1451
1452static int gen8_alloc_va_range(struct i915_address_space *vm,
1453 uint64_t start, uint64_t length)
1454{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001455 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry762d9932015-07-30 11:05:29 +01001456
Chris Wilsonc6385c92016-11-29 12:42:05 +00001457 if (USES_FULL_48BIT_PPGTT(vm->i915))
Michel Thierry762d9932015-07-30 11:05:29 +01001458 return gen8_alloc_va_range_4lvl(vm, &ppgtt->pml4, start, length);
1459 else
1460 return gen8_alloc_va_range_3lvl(vm, &ppgtt->pdp, start, length);
1461}
1462
Michel Thierryea91e402015-07-29 17:23:57 +01001463static void gen8_dump_pdp(struct i915_page_directory_pointer *pdp,
1464 uint64_t start, uint64_t length,
1465 gen8_pte_t scratch_pte,
1466 struct seq_file *m)
1467{
1468 struct i915_page_directory *pd;
Michel Thierryea91e402015-07-29 17:23:57 +01001469 uint32_t pdpe;
1470
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001471 gen8_for_each_pdpe(pd, pdp, start, length, pdpe) {
Michel Thierryea91e402015-07-29 17:23:57 +01001472 struct i915_page_table *pt;
1473 uint64_t pd_len = length;
1474 uint64_t pd_start = start;
1475 uint32_t pde;
1476
1477 if (!test_bit(pdpe, pdp->used_pdpes))
1478 continue;
1479
1480 seq_printf(m, "\tPDPE #%d\n", pdpe);
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001481 gen8_for_each_pde(pt, pd, pd_start, pd_len, pde) {
Michel Thierryea91e402015-07-29 17:23:57 +01001482 uint32_t pte;
1483 gen8_pte_t *pt_vaddr;
1484
1485 if (!test_bit(pde, pd->used_pdes))
1486 continue;
1487
1488 pt_vaddr = kmap_px(pt);
1489 for (pte = 0; pte < GEN8_PTES; pte += 4) {
1490 uint64_t va =
1491 (pdpe << GEN8_PDPE_SHIFT) |
1492 (pde << GEN8_PDE_SHIFT) |
1493 (pte << GEN8_PTE_SHIFT);
1494 int i;
1495 bool found = false;
1496
1497 for (i = 0; i < 4; i++)
1498 if (pt_vaddr[pte + i] != scratch_pte)
1499 found = true;
1500 if (!found)
1501 continue;
1502
1503 seq_printf(m, "\t\t0x%llx [%03d,%03d,%04d]: =", va, pdpe, pde, pte);
1504 for (i = 0; i < 4; i++) {
1505 if (pt_vaddr[pte + i] != scratch_pte)
1506 seq_printf(m, " %llx", pt_vaddr[pte + i]);
1507 else
1508 seq_puts(m, " SCRATCH ");
1509 }
1510 seq_puts(m, "\n");
1511 }
1512 /* don't use kunmap_px, it could trigger
1513 * an unnecessary flush.
1514 */
1515 kunmap_atomic(pt_vaddr);
1516 }
1517 }
1518}
1519
1520static void gen8_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1521{
1522 struct i915_address_space *vm = &ppgtt->base;
1523 uint64_t start = ppgtt->base.start;
1524 uint64_t length = ppgtt->base.total;
Chris Wilson8bcdd0f72016-08-22 08:44:30 +01001525 gen8_pte_t scratch_pte = gen8_pte_encode(vm->scratch_page.daddr,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001526 I915_CACHE_LLC);
Michel Thierryea91e402015-07-29 17:23:57 +01001527
Chris Wilsonc6385c92016-11-29 12:42:05 +00001528 if (!USES_FULL_48BIT_PPGTT(vm->i915)) {
Michel Thierryea91e402015-07-29 17:23:57 +01001529 gen8_dump_pdp(&ppgtt->pdp, start, length, scratch_pte, m);
1530 } else {
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001531 uint64_t pml4e;
Michel Thierryea91e402015-07-29 17:23:57 +01001532 struct i915_pml4 *pml4 = &ppgtt->pml4;
1533 struct i915_page_directory_pointer *pdp;
1534
Dave Gordone8ebd8e2015-12-08 13:30:51 +00001535 gen8_for_each_pml4e(pdp, pml4, start, length, pml4e) {
Michel Thierryea91e402015-07-29 17:23:57 +01001536 if (!test_bit(pml4e, pml4->used_pml4es))
1537 continue;
1538
1539 seq_printf(m, " PML4E #%llu\n", pml4e);
1540 gen8_dump_pdp(pdp, start, length, scratch_pte, m);
1541 }
1542 }
1543}
1544
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001545static int gen8_preallocate_top_level_pdps(struct i915_hw_ppgtt *ppgtt)
1546{
Michał Winiarski3a41a052015-09-03 19:22:18 +02001547 unsigned long *new_page_dirs, *new_page_tables;
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001548 uint32_t pdpes = I915_PDPES_PER_PDP(to_i915(ppgtt->base.dev));
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001549 int ret;
1550
1551 /* We allocate temp bitmap for page tables for no gain
1552 * but as this is for init only, lets keep the things simple
1553 */
1554 ret = alloc_gen8_temp_bitmaps(&new_page_dirs, &new_page_tables, pdpes);
1555 if (ret)
1556 return ret;
1557
1558 /* Allocate for all pdps regardless of how the ppgtt
1559 * was defined.
1560 */
1561 ret = gen8_ppgtt_alloc_page_directories(&ppgtt->base, &ppgtt->pdp,
1562 0, 1ULL << 32,
1563 new_page_dirs);
1564 if (!ret)
1565 *ppgtt->pdp.used_pdpes = *new_page_dirs;
1566
Michał Winiarski3a41a052015-09-03 19:22:18 +02001567 free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001568
1569 return ret;
1570}
1571
Daniel Vettereb0b44a2015-03-18 14:47:59 +01001572/*
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001573 * GEN8 legacy ppgtt programming is accomplished through a max 4 PDP registers
1574 * with a net effect resembling a 2-level page table in normal x86 terms. Each
1575 * PDP represents 1GB of memory 4 * 512 * 512 * 4096 = 4GB legacy 32b address
1576 * space.
Ben Widawsky37aca442013-11-04 20:47:32 -08001577 *
Ben Widawskyf3a964b2014-02-19 22:05:42 -08001578 */
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001579static int gen8_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky37aca442013-11-04 20:47:32 -08001580{
Chris Wilson49d73912016-11-29 09:50:08 +00001581 struct drm_i915_private *dev_priv = ppgtt->base.i915;
Mika Kuoppala8776f022015-06-30 18:16:40 +03001582 int ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001583
Mika Kuoppala8776f022015-06-30 18:16:40 +03001584 ret = gen8_init_scratch(&ppgtt->base);
1585 if (ret)
1586 return ret;
Michel Thierry69876be2015-04-08 12:13:27 +01001587
Michel Thierryd7b26332015-04-08 12:13:34 +01001588 ppgtt->base.start = 0;
Michel Thierryd7b26332015-04-08 12:13:34 +01001589 ppgtt->base.cleanup = gen8_ppgtt_cleanup;
Daniel Vetter5c5f6452015-04-14 17:35:14 +02001590 ppgtt->base.allocate_va_range = gen8_alloc_va_range;
Michel Thierryd7b26332015-04-08 12:13:34 +01001591 ppgtt->base.insert_entries = gen8_ppgtt_insert_entries;
Daniel Vetterc7e16f22015-04-14 17:35:11 +02001592 ppgtt->base.clear_range = gen8_ppgtt_clear_range;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02001593 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
1594 ppgtt->base.bind_vma = ppgtt_bind_vma;
Michel Thierryea91e402015-07-29 17:23:57 +01001595 ppgtt->debug_dump = gen8_dump_ppgtt;
Michel Thierryd7b26332015-04-08 12:13:34 +01001596
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001597 if (USES_FULL_48BIT_PPGTT(dev_priv)) {
1598 ret = setup_px(dev_priv, &ppgtt->pml4);
Michel Thierry762d9932015-07-30 11:05:29 +01001599 if (ret)
1600 goto free_scratch;
Michel Thierry6ac18502015-07-29 17:23:46 +01001601
Michel Thierry69ab76f2015-07-29 17:23:55 +01001602 gen8_initialize_pml4(&ppgtt->base, &ppgtt->pml4);
1603
Michel Thierry762d9932015-07-30 11:05:29 +01001604 ppgtt->base.total = 1ULL << 48;
Michel Thierry2dba3232015-07-30 11:06:23 +01001605 ppgtt->switch_mm = gen8_48b_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001606 } else {
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001607 ret = __pdp_init(dev_priv, &ppgtt->pdp);
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001608 if (ret)
1609 goto free_scratch;
1610
1611 ppgtt->base.total = 1ULL << 32;
Michel Thierry2dba3232015-07-30 11:06:23 +01001612 ppgtt->switch_mm = gen8_legacy_mm_switch;
Michel Thierry762d9932015-07-30 11:05:29 +01001613 trace_i915_page_directory_pointer_entry_alloc(&ppgtt->base,
1614 0, 0,
1615 GEN8_PML4E_SHIFT);
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001616
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001617 if (intel_vgpu_active(dev_priv)) {
Zhiyuan Lv331f38e2015-08-28 15:41:14 +08001618 ret = gen8_preallocate_top_level_pdps(ppgtt);
1619 if (ret)
1620 goto free_scratch;
1621 }
Michel Thierry81ba8aef2015-08-03 09:52:01 +01001622 }
Michel Thierry6ac18502015-07-29 17:23:46 +01001623
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001624 if (intel_vgpu_active(dev_priv))
Zhiyuan Lv650da342015-08-28 15:41:18 +08001625 gen8_ppgtt_notify_vgt(ppgtt, true);
1626
Michel Thierryd7b26332015-04-08 12:13:34 +01001627 return 0;
Michel Thierry6ac18502015-07-29 17:23:46 +01001628
1629free_scratch:
1630 gen8_free_scratch(&ppgtt->base);
1631 return ret;
Michel Thierryd7b26332015-04-08 12:13:34 +01001632}
1633
Ben Widawsky87d60b62013-12-06 14:11:29 -08001634static void gen6_dump_ppgtt(struct i915_hw_ppgtt *ppgtt, struct seq_file *m)
1635{
Ben Widawsky87d60b62013-12-06 14:11:29 -08001636 struct i915_address_space *vm = &ppgtt->base;
Michel Thierry09942c62015-04-08 12:13:30 +01001637 struct i915_page_table *unused;
Michel Thierry07749ef2015-03-16 16:00:54 +00001638 gen6_pte_t scratch_pte;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001639 uint32_t pd_entry;
Dave Gordon731f74c2016-06-24 19:37:46 +01001640 uint32_t pte, pde;
Michel Thierry09942c62015-04-08 12:13:30 +01001641 uint32_t start = ppgtt->base.start, length = ppgtt->base.total;
Ben Widawsky87d60b62013-12-06 14:11:29 -08001642
Chris Wilson8bcdd0f72016-08-22 08:44:30 +01001643 scratch_pte = vm->pte_encode(vm->scratch_page.daddr,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001644 I915_CACHE_LLC, 0);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001645
Dave Gordon731f74c2016-06-24 19:37:46 +01001646 gen6_for_each_pde(unused, &ppgtt->pd, start, length, pde) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001647 u32 expected;
Michel Thierry07749ef2015-03-16 16:00:54 +00001648 gen6_pte_t *pt_vaddr;
Mika Kuoppala567047b2015-06-25 18:35:12 +03001649 const dma_addr_t pt_addr = px_dma(ppgtt->pd.page_table[pde]);
Michel Thierry09942c62015-04-08 12:13:30 +01001650 pd_entry = readl(ppgtt->pd_addr + pde);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001651 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID);
1652
1653 if (pd_entry != expected)
1654 seq_printf(m, "\tPDE #%d mismatch: Actual PDE: %x Expected PDE: %x\n",
1655 pde,
1656 pd_entry,
1657 expected);
1658 seq_printf(m, "\tPDE: %x\n", pd_entry);
1659
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001660 pt_vaddr = kmap_px(ppgtt->pd.page_table[pde]);
1661
Michel Thierry07749ef2015-03-16 16:00:54 +00001662 for (pte = 0; pte < GEN6_PTES; pte+=4) {
Ben Widawsky87d60b62013-12-06 14:11:29 -08001663 unsigned long va =
Michel Thierry07749ef2015-03-16 16:00:54 +00001664 (pde * PAGE_SIZE * GEN6_PTES) +
Ben Widawsky87d60b62013-12-06 14:11:29 -08001665 (pte * PAGE_SIZE);
1666 int i;
1667 bool found = false;
1668 for (i = 0; i < 4; i++)
1669 if (pt_vaddr[pte + i] != scratch_pte)
1670 found = true;
1671 if (!found)
1672 continue;
1673
1674 seq_printf(m, "\t\t0x%lx [%03d,%04d]: =", va, pde, pte);
1675 for (i = 0; i < 4; i++) {
1676 if (pt_vaddr[pte + i] != scratch_pte)
1677 seq_printf(m, " %08x", pt_vaddr[pte + i]);
1678 else
1679 seq_puts(m, " SCRATCH ");
1680 }
1681 seq_puts(m, "\n");
1682 }
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001683 kunmap_px(ppgtt, pt_vaddr);
Ben Widawsky87d60b62013-12-06 14:11:29 -08001684 }
1685}
1686
Ben Widawsky678d96f2015-03-16 16:00:56 +00001687/* Write pde (index) from the page directory @pd to the page table @pt */
Michel Thierryec565b32015-04-08 12:13:23 +01001688static void gen6_write_pde(struct i915_page_directory *pd,
1689 const int pde, struct i915_page_table *pt)
Ben Widawsky61973492013-04-08 18:43:54 -07001690{
Ben Widawsky678d96f2015-03-16 16:00:56 +00001691 /* Caller needs to make sure the write completes if necessary */
1692 struct i915_hw_ppgtt *ppgtt =
1693 container_of(pd, struct i915_hw_ppgtt, pd);
1694 u32 pd_entry;
Ben Widawsky61973492013-04-08 18:43:54 -07001695
Mika Kuoppala567047b2015-06-25 18:35:12 +03001696 pd_entry = GEN6_PDE_ADDR_ENCODE(px_dma(pt));
Ben Widawsky678d96f2015-03-16 16:00:56 +00001697 pd_entry |= GEN6_PDE_VALID;
Ben Widawsky61973492013-04-08 18:43:54 -07001698
Ben Widawsky678d96f2015-03-16 16:00:56 +00001699 writel(pd_entry, ppgtt->pd_addr + pde);
1700}
Ben Widawsky61973492013-04-08 18:43:54 -07001701
Ben Widawsky678d96f2015-03-16 16:00:56 +00001702/* Write all the page tables found in the ppgtt structure to incrementing page
1703 * directories. */
1704static void gen6_write_page_range(struct drm_i915_private *dev_priv,
Michel Thierryec565b32015-04-08 12:13:23 +01001705 struct i915_page_directory *pd,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001706 uint32_t start, uint32_t length)
1707{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001708 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Michel Thierryec565b32015-04-08 12:13:23 +01001709 struct i915_page_table *pt;
Dave Gordon731f74c2016-06-24 19:37:46 +01001710 uint32_t pde;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001711
Dave Gordon731f74c2016-06-24 19:37:46 +01001712 gen6_for_each_pde(pt, pd, start, length, pde)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001713 gen6_write_pde(pd, pde, pt);
1714
1715 /* Make sure write is complete before other code can use this page
1716 * table. Also require for WC mapped PTEs */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001717 readl(ggtt->gsm);
Ben Widawsky3e302542013-04-23 23:15:32 -07001718}
1719
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001720static uint32_t get_pd_offset(struct i915_hw_ppgtt *ppgtt)
Ben Widawsky3e302542013-04-23 23:15:32 -07001721{
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001722 BUG_ON(ppgtt->pd.base.ggtt_offset & 0x3f);
Ben Widawsky3e302542013-04-23 23:15:32 -07001723
Mika Kuoppala44159dd2015-06-25 18:35:07 +03001724 return (ppgtt->pd.base.ggtt_offset / 64) << 16;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001725}
Ben Widawsky61973492013-04-08 18:43:54 -07001726
Ben Widawsky90252e52013-12-06 14:11:12 -08001727static int hsw_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001728 struct drm_i915_gem_request *req)
Ben Widawsky90252e52013-12-06 14:11:12 -08001729{
Chris Wilson7e37f882016-08-02 22:50:21 +01001730 struct intel_ring *ring = req->ring;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001731 struct intel_engine_cs *engine = req->engine;
Ben Widawsky90252e52013-12-06 14:11:12 -08001732 int ret;
Ben Widawsky61973492013-04-08 18:43:54 -07001733
Ben Widawsky90252e52013-12-06 14:11:12 -08001734 /* NB: TLBs must be flushed and invalidated before a switch */
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001735 ret = engine->emit_flush(req, EMIT_INVALIDATE | EMIT_FLUSH);
Ben Widawsky90252e52013-12-06 14:11:12 -08001736 if (ret)
1737 return ret;
1738
John Harrison5fb9de12015-05-29 17:44:07 +01001739 ret = intel_ring_begin(req, 6);
Ben Widawsky90252e52013-12-06 14:11:12 -08001740 if (ret)
1741 return ret;
1742
Chris Wilsonb5321f32016-08-02 22:50:18 +01001743 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1744 intel_ring_emit_reg(ring, RING_PP_DIR_DCLV(engine));
1745 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1746 intel_ring_emit_reg(ring, RING_PP_DIR_BASE(engine));
1747 intel_ring_emit(ring, get_pd_offset(ppgtt));
1748 intel_ring_emit(ring, MI_NOOP);
1749 intel_ring_advance(ring);
Ben Widawsky90252e52013-12-06 14:11:12 -08001750
1751 return 0;
1752}
1753
Ben Widawsky48a10382013-12-06 14:11:11 -08001754static int gen7_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001755 struct drm_i915_gem_request *req)
Ben Widawsky48a10382013-12-06 14:11:11 -08001756{
Chris Wilson7e37f882016-08-02 22:50:21 +01001757 struct intel_ring *ring = req->ring;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001758 struct intel_engine_cs *engine = req->engine;
Ben Widawsky48a10382013-12-06 14:11:11 -08001759 int ret;
1760
Ben Widawsky48a10382013-12-06 14:11:11 -08001761 /* NB: TLBs must be flushed and invalidated before a switch */
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001762 ret = engine->emit_flush(req, EMIT_INVALIDATE | EMIT_FLUSH);
Ben Widawsky48a10382013-12-06 14:11:11 -08001763 if (ret)
1764 return ret;
1765
John Harrison5fb9de12015-05-29 17:44:07 +01001766 ret = intel_ring_begin(req, 6);
Ben Widawsky48a10382013-12-06 14:11:11 -08001767 if (ret)
1768 return ret;
1769
Chris Wilsonb5321f32016-08-02 22:50:18 +01001770 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(2));
1771 intel_ring_emit_reg(ring, RING_PP_DIR_DCLV(engine));
1772 intel_ring_emit(ring, PP_DIR_DCLV_2G);
1773 intel_ring_emit_reg(ring, RING_PP_DIR_BASE(engine));
1774 intel_ring_emit(ring, get_pd_offset(ppgtt));
1775 intel_ring_emit(ring, MI_NOOP);
1776 intel_ring_advance(ring);
Ben Widawsky48a10382013-12-06 14:11:11 -08001777
Ben Widawsky90252e52013-12-06 14:11:12 -08001778 /* XXX: RCS is the only one to auto invalidate the TLBs? */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001779 if (engine->id != RCS) {
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001780 ret = engine->emit_flush(req, EMIT_INVALIDATE | EMIT_FLUSH);
Ben Widawsky90252e52013-12-06 14:11:12 -08001781 if (ret)
1782 return ret;
1783 }
1784
Ben Widawsky48a10382013-12-06 14:11:11 -08001785 return 0;
1786}
1787
Ben Widawskyeeb94882013-12-06 14:11:10 -08001788static int gen6_mm_switch(struct i915_hw_ppgtt *ppgtt,
John Harrisone85b26d2015-05-29 17:43:56 +01001789 struct drm_i915_gem_request *req)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001790{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001791 struct intel_engine_cs *engine = req->engine;
Chris Wilson8eb95202016-07-04 08:48:31 +01001792 struct drm_i915_private *dev_priv = req->i915;
Ben Widawsky48a10382013-12-06 14:11:11 -08001793
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001794 I915_WRITE(RING_PP_DIR_DCLV(engine), PP_DIR_DCLV_2G);
1795 I915_WRITE(RING_PP_DIR_BASE(engine), get_pd_offset(ppgtt));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001796 return 0;
1797}
1798
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00001799static void gen8_ppgtt_enable(struct drm_i915_private *dev_priv)
Ben Widawskyeeb94882013-12-06 14:11:10 -08001800{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001801 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05301802 enum intel_engine_id id;
Ben Widawskyeeb94882013-12-06 14:11:10 -08001803
Akash Goel3b3f1652016-10-13 22:44:48 +05301804 for_each_engine(engine, dev_priv, id) {
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00001805 u32 four_level = USES_FULL_48BIT_PPGTT(dev_priv) ?
1806 GEN8_GFX_PPGTT_48B : 0;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001807 I915_WRITE(RING_MODE_GEN7(engine),
Michel Thierry2dba3232015-07-30 11:06:23 +01001808 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE | four_level));
Ben Widawskyeeb94882013-12-06 14:11:10 -08001809 }
Ben Widawskyeeb94882013-12-06 14:11:10 -08001810}
1811
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00001812static void gen7_ppgtt_enable(struct drm_i915_private *dev_priv)
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001813{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001814 struct intel_engine_cs *engine;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001815 uint32_t ecochk, ecobits;
Akash Goel3b3f1652016-10-13 22:44:48 +05301816 enum intel_engine_id id;
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001817
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001818 ecobits = I915_READ(GAC_ECO_BITS);
1819 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
1820
1821 ecochk = I915_READ(GAM_ECOCHK);
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01001822 if (IS_HASWELL(dev_priv)) {
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001823 ecochk |= ECOCHK_PPGTT_WB_HSW;
1824 } else {
1825 ecochk |= ECOCHK_PPGTT_LLC_IVB;
1826 ecochk &= ~ECOCHK_PPGTT_GFDT_IVB;
1827 }
1828 I915_WRITE(GAM_ECOCHK, ecochk);
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001829
Akash Goel3b3f1652016-10-13 22:44:48 +05301830 for_each_engine(engine, dev_priv, id) {
Ben Widawskyeeb94882013-12-06 14:11:10 -08001831 /* GFX_MODE is per-ring on gen7+ */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001832 I915_WRITE(RING_MODE_GEN7(engine),
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001833 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001834 }
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001835}
1836
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00001837static void gen6_ppgtt_enable(struct drm_i915_private *dev_priv)
Ben Widawsky61973492013-04-08 18:43:54 -07001838{
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001839 uint32_t ecochk, gab_ctl, ecobits;
Ben Widawsky61973492013-04-08 18:43:54 -07001840
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001841 ecobits = I915_READ(GAC_ECO_BITS);
1842 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_SNB_BIT |
1843 ECOBITS_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001844
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001845 gab_ctl = I915_READ(GAB_CTL);
1846 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
Ben Widawsky61973492013-04-08 18:43:54 -07001847
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001848 ecochk = I915_READ(GAM_ECOCHK);
1849 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT | ECOCHK_PPGTT_CACHE64B);
Ben Widawsky61973492013-04-08 18:43:54 -07001850
Ben Widawskyb4a74e32013-12-06 14:11:09 -08001851 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Ben Widawsky61973492013-04-08 18:43:54 -07001852}
1853
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001854/* PPGTT support for Sandybdrige/Gen6 and later */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001855static void gen6_ppgtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08001856 uint64_t start,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001857 uint64_t length)
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001858{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001859 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierry07749ef2015-03-16 16:00:54 +00001860 gen6_pte_t *pt_vaddr, scratch_pte;
Ben Widawsky782f1492014-02-20 11:50:33 -08001861 unsigned first_entry = start >> PAGE_SHIFT;
1862 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001863 unsigned act_pt = first_entry / GEN6_PTES;
1864 unsigned first_pte = first_entry % GEN6_PTES;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001865 unsigned last_pte, i;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001866
Chris Wilson8bcdd0f72016-08-22 08:44:30 +01001867 scratch_pte = vm->pte_encode(vm->scratch_page.daddr,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001868 I915_CACHE_LLC, 0);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001869
Daniel Vetter7bddb012012-02-09 17:15:47 +01001870 while (num_entries) {
1871 last_pte = first_pte + num_entries;
Michel Thierry07749ef2015-03-16 16:00:54 +00001872 if (last_pte > GEN6_PTES)
1873 last_pte = GEN6_PTES;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001874
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001875 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001876
1877 for (i = first_pte; i < last_pte; i++)
1878 pt_vaddr[i] = scratch_pte;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001879
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001880 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001881
Daniel Vetter7bddb012012-02-09 17:15:47 +01001882 num_entries -= last_pte - first_pte;
1883 first_pte = 0;
Daniel Vettera15326a2013-03-19 23:48:39 +01001884 act_pt++;
Daniel Vetter7bddb012012-02-09 17:15:47 +01001885 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01001886}
1887
Ben Widawsky853ba5d2013-07-16 16:50:05 -07001888static void gen6_ppgtt_insert_entries(struct i915_address_space *vm,
Daniel Vetterdef886c2013-01-24 14:44:56 -08001889 struct sg_table *pages,
Ben Widawsky782f1492014-02-20 11:50:33 -08001890 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05301891 enum i915_cache_level cache_level, u32 flags)
Daniel Vetterdef886c2013-01-24 14:44:56 -08001892{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001893 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Ben Widawsky782f1492014-02-20 11:50:33 -08001894 unsigned first_entry = start >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00001895 unsigned act_pt = first_entry / GEN6_PTES;
1896 unsigned act_pte = first_entry % GEN6_PTES;
Dave Gordon85d12252016-05-20 11:54:06 +01001897 gen6_pte_t *pt_vaddr = NULL;
1898 struct sgt_iter sgt_iter;
1899 dma_addr_t addr;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001900
Dave Gordon85d12252016-05-20 11:54:06 +01001901 for_each_sgt_dma(addr, sgt_iter, pages) {
Chris Wilsoncc797142013-12-31 15:50:30 +00001902 if (pt_vaddr == NULL)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001903 pt_vaddr = kmap_px(ppgtt->pd.page_table[act_pt]);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001904
Chris Wilsoncc797142013-12-31 15:50:30 +00001905 pt_vaddr[act_pte] =
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001906 vm->pte_encode(addr, cache_level, flags);
Akash Goel24f3a8c2014-06-17 10:59:42 +05301907
Michel Thierry07749ef2015-03-16 16:00:54 +00001908 if (++act_pte == GEN6_PTES) {
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001909 kunmap_px(ppgtt, pt_vaddr);
Chris Wilsoncc797142013-12-31 15:50:30 +00001910 pt_vaddr = NULL;
Daniel Vettera15326a2013-03-19 23:48:39 +01001911 act_pt++;
Imre Deak6e995e22013-02-18 19:28:04 +02001912 act_pte = 0;
Daniel Vetterdef886c2013-01-24 14:44:56 -08001913 }
Daniel Vetterdef886c2013-01-24 14:44:56 -08001914 }
Dave Gordon85d12252016-05-20 11:54:06 +01001915
Chris Wilsoncc797142013-12-31 15:50:30 +00001916 if (pt_vaddr)
Mika Kuoppalad1c54ac2015-06-25 18:35:11 +03001917 kunmap_px(ppgtt, pt_vaddr);
Daniel Vetterdef886c2013-01-24 14:44:56 -08001918}
1919
Ben Widawsky678d96f2015-03-16 16:00:56 +00001920static int gen6_alloc_va_range(struct i915_address_space *vm,
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001921 uint64_t start_in, uint64_t length_in)
Ben Widawsky678d96f2015-03-16 16:00:56 +00001922{
Michel Thierry4933d512015-03-24 15:46:22 +00001923 DECLARE_BITMAP(new_page_tables, I915_PDES);
Chris Wilson49d73912016-11-29 09:50:08 +00001924 struct drm_i915_private *dev_priv = vm->i915;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001925 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinene5716f52016-04-07 11:08:03 +03001926 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Michel Thierryec565b32015-04-08 12:13:23 +01001927 struct i915_page_table *pt;
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001928 uint32_t start, length, start_save, length_save;
Dave Gordon731f74c2016-06-24 19:37:46 +01001929 uint32_t pde;
Michel Thierry4933d512015-03-24 15:46:22 +00001930 int ret;
1931
Mika Kuoppalaa05d80e2015-06-25 18:35:04 +03001932 start = start_save = start_in;
1933 length = length_save = length_in;
Michel Thierry4933d512015-03-24 15:46:22 +00001934
1935 bitmap_zero(new_page_tables, I915_PDES);
1936
1937 /* The allocation is done in two stages so that we can bail out with
1938 * minimal amount of pain. The first stage finds new page tables that
1939 * need allocation. The second stage marks use ptes within the page
1940 * tables.
1941 */
Dave Gordon731f74c2016-06-24 19:37:46 +01001942 gen6_for_each_pde(pt, &ppgtt->pd, start, length, pde) {
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001943 if (pt != vm->scratch_pt) {
Michel Thierry4933d512015-03-24 15:46:22 +00001944 WARN_ON(bitmap_empty(pt->used_ptes, GEN6_PTES));
1945 continue;
1946 }
1947
1948 /* We've already allocated a page table */
1949 WARN_ON(!bitmap_empty(pt->used_ptes, GEN6_PTES));
1950
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001951 pt = alloc_pt(dev_priv);
Michel Thierry4933d512015-03-24 15:46:22 +00001952 if (IS_ERR(pt)) {
1953 ret = PTR_ERR(pt);
1954 goto unwind_out;
1955 }
1956
1957 gen6_initialize_pt(vm, pt);
1958
1959 ppgtt->pd.page_table[pde] = pt;
Mika Kuoppala966082c2015-06-25 18:35:19 +03001960 __set_bit(pde, new_page_tables);
Michel Thierry72744cb2015-03-24 15:46:23 +00001961 trace_i915_page_table_entry_alloc(vm, pde, start, GEN6_PDE_SHIFT);
Michel Thierry4933d512015-03-24 15:46:22 +00001962 }
1963
1964 start = start_save;
1965 length = length_save;
Ben Widawsky678d96f2015-03-16 16:00:56 +00001966
Dave Gordon731f74c2016-06-24 19:37:46 +01001967 gen6_for_each_pde(pt, &ppgtt->pd, start, length, pde) {
Ben Widawsky678d96f2015-03-16 16:00:56 +00001968 DECLARE_BITMAP(tmp_bitmap, GEN6_PTES);
1969
1970 bitmap_zero(tmp_bitmap, GEN6_PTES);
1971 bitmap_set(tmp_bitmap, gen6_pte_index(start),
1972 gen6_pte_count(start, length));
1973
Mika Kuoppala966082c2015-06-25 18:35:19 +03001974 if (__test_and_clear_bit(pde, new_page_tables))
Michel Thierry4933d512015-03-24 15:46:22 +00001975 gen6_write_pde(&ppgtt->pd, pde, pt);
1976
Michel Thierry72744cb2015-03-24 15:46:23 +00001977 trace_i915_page_table_entry_map(vm, pde, pt,
1978 gen6_pte_index(start),
1979 gen6_pte_count(start, length),
1980 GEN6_PTES);
Michel Thierry4933d512015-03-24 15:46:22 +00001981 bitmap_or(pt->used_ptes, tmp_bitmap, pt->used_ptes,
Ben Widawsky678d96f2015-03-16 16:00:56 +00001982 GEN6_PTES);
1983 }
1984
Michel Thierry4933d512015-03-24 15:46:22 +00001985 WARN_ON(!bitmap_empty(new_page_tables, I915_PDES));
1986
1987 /* Make sure write is complete before other code can use this page
1988 * table. Also require for WC mapped PTEs */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001989 readl(ggtt->gsm);
Michel Thierry4933d512015-03-24 15:46:22 +00001990
Ben Widawsky563222a2015-03-19 12:53:28 +00001991 mark_tlbs_dirty(ppgtt);
Ben Widawsky678d96f2015-03-16 16:00:56 +00001992 return 0;
Michel Thierry4933d512015-03-24 15:46:22 +00001993
1994unwind_out:
1995 for_each_set_bit(pde, new_page_tables, I915_PDES) {
Michel Thierryec565b32015-04-08 12:13:23 +01001996 struct i915_page_table *pt = ppgtt->pd.page_table[pde];
Michel Thierry4933d512015-03-24 15:46:22 +00001997
Mika Kuoppala79ab9372015-06-25 18:35:17 +03001998 ppgtt->pd.page_table[pde] = vm->scratch_pt;
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00001999 free_pt(dev_priv, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00002000 }
2001
2002 mark_tlbs_dirty(ppgtt);
2003 return ret;
Ben Widawsky678d96f2015-03-16 16:00:56 +00002004}
2005
Mika Kuoppala8776f022015-06-30 18:16:40 +03002006static int gen6_init_scratch(struct i915_address_space *vm)
2007{
Chris Wilson49d73912016-11-29 09:50:08 +00002008 struct drm_i915_private *dev_priv = vm->i915;
Chris Wilson8bcdd0f72016-08-22 08:44:30 +01002009 int ret;
Mika Kuoppala8776f022015-06-30 18:16:40 +03002010
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00002011 ret = setup_scratch_page(dev_priv, &vm->scratch_page, I915_GFP_DMA);
Chris Wilson8bcdd0f72016-08-22 08:44:30 +01002012 if (ret)
2013 return ret;
Mika Kuoppala8776f022015-06-30 18:16:40 +03002014
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00002015 vm->scratch_pt = alloc_pt(dev_priv);
Mika Kuoppala8776f022015-06-30 18:16:40 +03002016 if (IS_ERR(vm->scratch_pt)) {
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00002017 cleanup_scratch_page(dev_priv, &vm->scratch_page);
Mika Kuoppala8776f022015-06-30 18:16:40 +03002018 return PTR_ERR(vm->scratch_pt);
2019 }
2020
2021 gen6_initialize_pt(vm, vm->scratch_pt);
2022
2023 return 0;
2024}
2025
2026static void gen6_free_scratch(struct i915_address_space *vm)
2027{
Chris Wilson49d73912016-11-29 09:50:08 +00002028 struct drm_i915_private *dev_priv = vm->i915;
Mika Kuoppala8776f022015-06-30 18:16:40 +03002029
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00002030 free_pt(dev_priv, vm->scratch_pt);
2031 cleanup_scratch_page(dev_priv, &vm->scratch_page);
Mika Kuoppala8776f022015-06-30 18:16:40 +03002032}
2033
Daniel Vetter061dd492015-04-14 17:35:13 +02002034static void gen6_ppgtt_cleanup(struct i915_address_space *vm)
Ben Widawskya00d8252014-02-19 22:05:48 -08002035{
Joonas Lahtinene5716f52016-04-07 11:08:03 +03002036 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
Dave Gordon731f74c2016-06-24 19:37:46 +01002037 struct i915_page_directory *pd = &ppgtt->pd;
Chris Wilson49d73912016-11-29 09:50:08 +00002038 struct drm_i915_private *dev_priv = vm->i915;
Michel Thierry09942c62015-04-08 12:13:30 +01002039 struct i915_page_table *pt;
2040 uint32_t pde;
Daniel Vetter3440d262013-01-24 13:49:56 -08002041
Daniel Vetter061dd492015-04-14 17:35:13 +02002042 drm_mm_remove_node(&ppgtt->node);
2043
Dave Gordon731f74c2016-06-24 19:37:46 +01002044 gen6_for_all_pdes(pt, pd, pde)
Mika Kuoppala79ab9372015-06-25 18:35:17 +03002045 if (pt != vm->scratch_pt)
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00002046 free_pt(dev_priv, pt);
Michel Thierry4933d512015-03-24 15:46:22 +00002047
Mika Kuoppala8776f022015-06-30 18:16:40 +03002048 gen6_free_scratch(vm);
Daniel Vetter3440d262013-01-24 13:49:56 -08002049}
2050
Ben Widawskyb1465202014-02-19 22:05:49 -08002051static int gen6_ppgtt_allocate_page_directories(struct i915_hw_ppgtt *ppgtt)
Daniel Vetter3440d262013-01-24 13:49:56 -08002052{
Mika Kuoppala8776f022015-06-30 18:16:40 +03002053 struct i915_address_space *vm = &ppgtt->base;
Chris Wilson49d73912016-11-29 09:50:08 +00002054 struct drm_i915_private *dev_priv = ppgtt->base.i915;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002055 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskyb1465202014-02-19 22:05:49 -08002056 int ret;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002057
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002058 /* PPGTT PDEs reside in the GGTT and consists of 512 entries. The
2059 * allocator works in address space sizes, so it's multiplied by page
2060 * size. We allocate at the top of the GTT to avoid fragmentation.
2061 */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002062 BUG_ON(!drm_mm_initialized(&ggtt->base.mm));
Michel Thierry4933d512015-03-24 15:46:22 +00002063
Mika Kuoppala8776f022015-06-30 18:16:40 +03002064 ret = gen6_init_scratch(vm);
2065 if (ret)
2066 return ret;
Michel Thierry4933d512015-03-24 15:46:22 +00002067
Chris Wilsone007b192017-01-11 11:23:10 +00002068 ret = i915_gem_gtt_insert(&ggtt->base, &ppgtt->node,
2069 GEN6_PD_SIZE, GEN6_PD_ALIGN,
2070 I915_COLOR_UNEVICTABLE,
2071 0, ggtt->base.total,
2072 PIN_HIGH);
Ben Widawskyc8c26622015-01-22 17:01:25 +00002073 if (ret)
Ben Widawsky678d96f2015-03-16 16:00:56 +00002074 goto err_out;
2075
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002076 if (ppgtt->node.start < ggtt->mappable_end)
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002077 DRM_DEBUG("Forced to use aperture for PDEs\n");
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002078
Ben Widawskyc8c26622015-01-22 17:01:25 +00002079 return 0;
Ben Widawsky678d96f2015-03-16 16:00:56 +00002080
2081err_out:
Mika Kuoppala8776f022015-06-30 18:16:40 +03002082 gen6_free_scratch(vm);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002083 return ret;
Ben Widawskyb1465202014-02-19 22:05:49 -08002084}
2085
Ben Widawskyb1465202014-02-19 22:05:49 -08002086static int gen6_ppgtt_alloc(struct i915_hw_ppgtt *ppgtt)
2087{
kbuild test robot2f2cf682015-03-27 19:26:35 +08002088 return gen6_ppgtt_allocate_page_directories(ppgtt);
Ben Widawskyb1465202014-02-19 22:05:49 -08002089}
2090
Michel Thierry4933d512015-03-24 15:46:22 +00002091static void gen6_scratch_va_range(struct i915_hw_ppgtt *ppgtt,
2092 uint64_t start, uint64_t length)
2093{
Michel Thierryec565b32015-04-08 12:13:23 +01002094 struct i915_page_table *unused;
Dave Gordon731f74c2016-06-24 19:37:46 +01002095 uint32_t pde;
Michel Thierry4933d512015-03-24 15:46:22 +00002096
Dave Gordon731f74c2016-06-24 19:37:46 +01002097 gen6_for_each_pde(unused, &ppgtt->pd, start, length, pde)
Mika Kuoppala79ab9372015-06-25 18:35:17 +03002098 ppgtt->pd.page_table[pde] = ppgtt->base.scratch_pt;
Michel Thierry4933d512015-03-24 15:46:22 +00002099}
2100
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002101static int gen6_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
Ben Widawskyb1465202014-02-19 22:05:49 -08002102{
Chris Wilson49d73912016-11-29 09:50:08 +00002103 struct drm_i915_private *dev_priv = ppgtt->base.i915;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002104 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskyb1465202014-02-19 22:05:49 -08002105 int ret;
2106
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002107 ppgtt->base.pte_encode = ggtt->base.pte_encode;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002108 if (intel_vgpu_active(dev_priv) || IS_GEN6(dev_priv))
Ben Widawsky48a10382013-12-06 14:11:11 -08002109 ppgtt->switch_mm = gen6_mm_switch;
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01002110 else if (IS_HASWELL(dev_priv))
Ben Widawsky90252e52013-12-06 14:11:12 -08002111 ppgtt->switch_mm = hsw_mm_switch;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002112 else if (IS_GEN7(dev_priv))
Ben Widawsky48a10382013-12-06 14:11:11 -08002113 ppgtt->switch_mm = gen7_mm_switch;
Chris Wilson8eb95202016-07-04 08:48:31 +01002114 else
Ben Widawskyb4a74e32013-12-06 14:11:09 -08002115 BUG();
Ben Widawskyb1465202014-02-19 22:05:49 -08002116
2117 ret = gen6_ppgtt_alloc(ppgtt);
2118 if (ret)
2119 return ret;
2120
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002121 ppgtt->base.allocate_va_range = gen6_alloc_va_range;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002122 ppgtt->base.clear_range = gen6_ppgtt_clear_range;
2123 ppgtt->base.insert_entries = gen6_ppgtt_insert_entries;
Daniel Vetter777dc5b2015-04-14 17:35:12 +02002124 ppgtt->base.unbind_vma = ppgtt_unbind_vma;
2125 ppgtt->base.bind_vma = ppgtt_bind_vma;
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002126 ppgtt->base.cleanup = gen6_ppgtt_cleanup;
Ben Widawsky686e1f62013-11-25 09:54:34 -08002127 ppgtt->base.start = 0;
Michel Thierry09942c62015-04-08 12:13:30 +01002128 ppgtt->base.total = I915_PDES * GEN6_PTES * PAGE_SIZE;
Ben Widawskyb1465202014-02-19 22:05:49 -08002129 ppgtt->debug_dump = gen6_dump_ppgtt;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002130
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002131 ppgtt->pd.base.ggtt_offset =
Michel Thierry07749ef2015-03-16 16:00:54 +00002132 ppgtt->node.start / PAGE_SIZE * sizeof(gen6_pte_t);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002133
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002134 ppgtt->pd_addr = (gen6_pte_t __iomem *)ggtt->gsm +
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002135 ppgtt->pd.base.ggtt_offset / sizeof(gen6_pte_t);
Ben Widawsky678d96f2015-03-16 16:00:56 +00002136
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002137 gen6_scratch_va_range(ppgtt, 0, ppgtt->base.total);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002138
Ben Widawsky678d96f2015-03-16 16:00:56 +00002139 gen6_write_page_range(dev_priv, &ppgtt->pd, 0, ppgtt->base.total);
2140
Thierry Reding440fd522015-01-23 09:05:06 +01002141 DRM_DEBUG_DRIVER("Allocated pde space (%lldM) at GTT entry: %llx\n",
Ben Widawskyc8d4c0d2013-12-06 14:11:07 -08002142 ppgtt->node.size >> 20,
2143 ppgtt->node.start / PAGE_SIZE);
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002144
Daniel Vetterfa76da32014-08-06 20:19:54 +02002145 DRM_DEBUG("Adding PPGTT at offset %x\n",
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002146 ppgtt->pd.base.ggtt_offset << 10);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002147
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002148 return 0;
Daniel Vetter3440d262013-01-24 13:49:56 -08002149}
2150
Chris Wilson2bfa9962016-08-04 07:52:25 +01002151static int __hw_ppgtt_init(struct i915_hw_ppgtt *ppgtt,
2152 struct drm_i915_private *dev_priv)
Daniel Vetter3440d262013-01-24 13:49:56 -08002153{
Chris Wilson49d73912016-11-29 09:50:08 +00002154 ppgtt->base.i915 = dev_priv;
Daniel Vetter3440d262013-01-24 13:49:56 -08002155
Chris Wilson2bfa9962016-08-04 07:52:25 +01002156 if (INTEL_INFO(dev_priv)->gen < 8)
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002157 return gen6_ppgtt_init(ppgtt);
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002158 else
Michel Thierryd7b26332015-04-08 12:13:34 +01002159 return gen8_ppgtt_init(ppgtt);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002160}
Mika Kuoppalac114f762015-06-25 18:35:13 +03002161
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002162static void i915_address_space_init(struct i915_address_space *vm,
Chris Wilson80b204b2016-10-28 13:58:58 +01002163 struct drm_i915_private *dev_priv,
2164 const char *name)
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002165{
Chris Wilson80b204b2016-10-28 13:58:58 +01002166 i915_gem_timeline_init(dev_priv, &vm->timeline, name);
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002167 drm_mm_init(&vm->mm, vm->start, vm->total);
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002168 INIT_LIST_HEAD(&vm->active_list);
2169 INIT_LIST_HEAD(&vm->inactive_list);
Chris Wilson50e046b2016-08-04 07:52:46 +01002170 INIT_LIST_HEAD(&vm->unbound_list);
Michał Winiarskia2cad9d2015-09-16 11:49:00 +02002171 list_add_tail(&vm->global_link, &dev_priv->vm_list);
2172}
2173
Matthew Aulded9724d2016-11-17 21:04:10 +00002174static void i915_address_space_fini(struct i915_address_space *vm)
2175{
2176 i915_gem_timeline_fini(&vm->timeline);
2177 drm_mm_takedown(&vm->mm);
2178 list_del(&vm->global_link);
2179}
2180
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00002181static void gtt_write_workarounds(struct drm_i915_private *dev_priv)
Tim Gored5165eb2016-02-04 11:49:34 +00002182{
Tim Gored5165eb2016-02-04 11:49:34 +00002183 /* This function is for gtt related workarounds. This function is
2184 * called on driver load and after a GPU reset, so you can place
2185 * workarounds here even if they get overwritten by GPU reset.
2186 */
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02002187 /* WaIncreaseDefaultTLBEntries:chv,bdw,skl,bxt,kbl,glk */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002188 if (IS_BROADWELL(dev_priv))
Tim Gored5165eb2016-02-04 11:49:34 +00002189 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_BDW);
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01002190 else if (IS_CHERRYVIEW(dev_priv))
Tim Gored5165eb2016-02-04 11:49:34 +00002191 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_CHV);
Rodrigo Vivib976dc52017-01-23 10:32:37 -08002192 else if (IS_GEN9_BC(dev_priv))
Tim Gored5165eb2016-02-04 11:49:34 +00002193 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_SKL);
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02002194 else if (IS_GEN9_LP(dev_priv))
Tim Gored5165eb2016-02-04 11:49:34 +00002195 I915_WRITE(GEN8_L3_LRA_1_GPGPU, GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_BXT);
2196}
2197
Chris Wilson2bfa9962016-08-04 07:52:25 +01002198static int i915_ppgtt_init(struct i915_hw_ppgtt *ppgtt,
2199 struct drm_i915_private *dev_priv,
Chris Wilson80b204b2016-10-28 13:58:58 +01002200 struct drm_i915_file_private *file_priv,
2201 const char *name)
Daniel Vetterfa76da32014-08-06 20:19:54 +02002202{
Chris Wilson2bfa9962016-08-04 07:52:25 +01002203 int ret;
Ben Widawsky3ed124b2013-04-08 18:43:53 -07002204
Chris Wilson2bfa9962016-08-04 07:52:25 +01002205 ret = __hw_ppgtt_init(ppgtt, dev_priv);
Daniel Vetterfa76da32014-08-06 20:19:54 +02002206 if (ret == 0) {
Ben Widawskyc7c48df2013-12-06 14:11:15 -08002207 kref_init(&ppgtt->ref);
Chris Wilson80b204b2016-10-28 13:58:58 +01002208 i915_address_space_init(&ppgtt->base, dev_priv, name);
Chris Wilson2bfa9962016-08-04 07:52:25 +01002209 ppgtt->base.file = file_priv;
Ben Widawsky93bd8642013-07-16 16:50:06 -07002210 }
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002211
2212 return ret;
2213}
2214
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00002215int i915_ppgtt_init_hw(struct drm_i915_private *dev_priv)
Daniel Vetter82460d92014-08-06 20:19:53 +02002216{
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00002217 gtt_write_workarounds(dev_priv);
Tim Gored5165eb2016-02-04 11:49:34 +00002218
Thomas Daniel671b50132014-08-20 16:24:50 +01002219 /* In the case of execlists, PPGTT is enabled by the context descriptor
2220 * and the PDPs are contained within the context itself. We don't
2221 * need to do anything here. */
2222 if (i915.enable_execlists)
2223 return 0;
2224
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00002225 if (!USES_PPGTT(dev_priv))
Daniel Vetter82460d92014-08-06 20:19:53 +02002226 return 0;
2227
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002228 if (IS_GEN6(dev_priv))
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00002229 gen6_ppgtt_enable(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002230 else if (IS_GEN7(dev_priv))
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00002231 gen7_ppgtt_enable(dev_priv);
2232 else if (INTEL_GEN(dev_priv) >= 8)
2233 gen8_ppgtt_enable(dev_priv);
Daniel Vetter82460d92014-08-06 20:19:53 +02002234 else
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00002235 MISSING_CASE(INTEL_GEN(dev_priv));
Daniel Vetter82460d92014-08-06 20:19:53 +02002236
John Harrison4ad2fd82015-06-18 13:11:20 +01002237 return 0;
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002238}
John Harrison4ad2fd82015-06-18 13:11:20 +01002239
Daniel Vetter4d884702014-08-06 15:04:47 +02002240struct i915_hw_ppgtt *
Chris Wilson2bfa9962016-08-04 07:52:25 +01002241i915_ppgtt_create(struct drm_i915_private *dev_priv,
Chris Wilson80b204b2016-10-28 13:58:58 +01002242 struct drm_i915_file_private *fpriv,
2243 const char *name)
Daniel Vetter4d884702014-08-06 15:04:47 +02002244{
2245 struct i915_hw_ppgtt *ppgtt;
2246 int ret;
2247
2248 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
2249 if (!ppgtt)
2250 return ERR_PTR(-ENOMEM);
2251
Chris Wilson80b204b2016-10-28 13:58:58 +01002252 ret = i915_ppgtt_init(ppgtt, dev_priv, fpriv, name);
Daniel Vetter4d884702014-08-06 15:04:47 +02002253 if (ret) {
2254 kfree(ppgtt);
2255 return ERR_PTR(ret);
2256 }
2257
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002258 trace_i915_ppgtt_create(&ppgtt->base);
2259
Daniel Vetter4d884702014-08-06 15:04:47 +02002260 return ppgtt;
2261}
2262
Chris Wilson0c7eeda2017-01-11 21:09:25 +00002263void i915_ppgtt_close(struct i915_address_space *vm)
2264{
2265 struct list_head *phases[] = {
2266 &vm->active_list,
2267 &vm->inactive_list,
2268 &vm->unbound_list,
2269 NULL,
2270 }, **phase;
2271
2272 GEM_BUG_ON(vm->closed);
2273 vm->closed = true;
2274
2275 for (phase = phases; *phase; phase++) {
2276 struct i915_vma *vma, *vn;
2277
2278 list_for_each_entry_safe(vma, vn, *phase, vm_link)
2279 if (!i915_vma_is_closed(vma))
2280 i915_vma_close(vma);
2281 }
2282}
2283
Matthew Aulded9724d2016-11-17 21:04:10 +00002284void i915_ppgtt_release(struct kref *kref)
Daniel Vetteree960be2014-08-06 15:04:45 +02002285{
2286 struct i915_hw_ppgtt *ppgtt =
2287 container_of(kref, struct i915_hw_ppgtt, ref);
2288
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +00002289 trace_i915_ppgtt_release(&ppgtt->base);
2290
Chris Wilson50e046b2016-08-04 07:52:46 +01002291 /* vmas should already be unbound and destroyed */
Daniel Vetteree960be2014-08-06 15:04:45 +02002292 WARN_ON(!list_empty(&ppgtt->base.active_list));
2293 WARN_ON(!list_empty(&ppgtt->base.inactive_list));
Chris Wilson50e046b2016-08-04 07:52:46 +01002294 WARN_ON(!list_empty(&ppgtt->base.unbound_list));
Daniel Vetteree960be2014-08-06 15:04:45 +02002295
Matthew Aulded9724d2016-11-17 21:04:10 +00002296 i915_address_space_fini(&ppgtt->base);
Daniel Vetter19dd1202014-08-06 15:04:55 +02002297
Daniel Vetteree960be2014-08-06 15:04:45 +02002298 ppgtt->base.cleanup(&ppgtt->base);
2299 kfree(ppgtt);
2300}
Daniel Vetter1d2a3142012-02-09 17:15:46 +01002301
Ben Widawskya81cc002013-01-18 12:30:31 -08002302/* Certain Gen5 chipsets require require idling the GPU before
2303 * unmapping anything from the GTT when VT-d is enabled.
2304 */
Chris Wilson97d6d7a2016-08-04 07:52:22 +01002305static bool needs_idle_maps(struct drm_i915_private *dev_priv)
Ben Widawskya81cc002013-01-18 12:30:31 -08002306{
2307#ifdef CONFIG_INTEL_IOMMU
2308 /* Query intel_iommu to see if we need the workaround. Presumably that
2309 * was loaded first.
2310 */
Chris Wilson97d6d7a2016-08-04 07:52:22 +01002311 if (IS_GEN5(dev_priv) && IS_MOBILE(dev_priv) && intel_iommu_gfx_mapped)
Ben Widawskya81cc002013-01-18 12:30:31 -08002312 return true;
2313#endif
2314 return false;
2315}
2316
Chris Wilsondc979972016-05-10 14:10:04 +01002317void i915_check_and_clear_faults(struct drm_i915_private *dev_priv)
Ben Widawsky828c7902013-10-16 09:21:30 -07002318{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002319 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302320 enum intel_engine_id id;
Ben Widawsky828c7902013-10-16 09:21:30 -07002321
Chris Wilsondc979972016-05-10 14:10:04 +01002322 if (INTEL_INFO(dev_priv)->gen < 6)
Ben Widawsky828c7902013-10-16 09:21:30 -07002323 return;
2324
Akash Goel3b3f1652016-10-13 22:44:48 +05302325 for_each_engine(engine, dev_priv, id) {
Ben Widawsky828c7902013-10-16 09:21:30 -07002326 u32 fault_reg;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002327 fault_reg = I915_READ(RING_FAULT_REG(engine));
Ben Widawsky828c7902013-10-16 09:21:30 -07002328 if (fault_reg & RING_FAULT_VALID) {
2329 DRM_DEBUG_DRIVER("Unexpected fault\n"
Paulo Zanoni59a5d292014-10-30 15:52:45 -02002330 "\tAddr: 0x%08lx\n"
Ben Widawsky828c7902013-10-16 09:21:30 -07002331 "\tAddress space: %s\n"
2332 "\tSource ID: %d\n"
2333 "\tType: %d\n",
2334 fault_reg & PAGE_MASK,
2335 fault_reg & RING_FAULT_GTTSEL_MASK ? "GGTT" : "PPGTT",
2336 RING_FAULT_SRCID(fault_reg),
2337 RING_FAULT_FAULT_TYPE(fault_reg));
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002338 I915_WRITE(RING_FAULT_REG(engine),
Ben Widawsky828c7902013-10-16 09:21:30 -07002339 fault_reg & ~RING_FAULT_VALID);
2340 }
2341 }
Akash Goel3b3f1652016-10-13 22:44:48 +05302342
2343 /* Engine specific init may not have been done till this point. */
2344 if (dev_priv->engine[RCS])
2345 POSTING_READ(RING_FAULT_REG(dev_priv->engine[RCS]));
Ben Widawsky828c7902013-10-16 09:21:30 -07002346}
2347
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00002348void i915_gem_suspend_gtt_mappings(struct drm_i915_private *dev_priv)
Ben Widawsky828c7902013-10-16 09:21:30 -07002349{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002350 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawsky828c7902013-10-16 09:21:30 -07002351
2352 /* Don't bother messing with faults pre GEN6 as we have little
2353 * documentation supporting that it's a good idea.
2354 */
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00002355 if (INTEL_GEN(dev_priv) < 6)
Ben Widawsky828c7902013-10-16 09:21:30 -07002356 return;
2357
Chris Wilsondc979972016-05-10 14:10:04 +01002358 i915_check_and_clear_faults(dev_priv);
Ben Widawsky828c7902013-10-16 09:21:30 -07002359
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002360 ggtt->base.clear_range(&ggtt->base, ggtt->base.start, ggtt->base.total);
Chris Wilson91e56492014-09-25 10:13:12 +01002361
Chris Wilson7c3f86b2017-01-12 11:00:49 +00002362 i915_ggtt_invalidate(dev_priv);
Ben Widawsky828c7902013-10-16 09:21:30 -07002363}
2364
Chris Wilson03ac84f2016-10-28 13:58:36 +01002365int i915_gem_gtt_prepare_pages(struct drm_i915_gem_object *obj,
2366 struct sg_table *pages)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002367{
Chris Wilson1a292fa2017-01-06 15:22:39 +00002368 do {
2369 if (dma_map_sg(&obj->base.dev->pdev->dev,
2370 pages->sgl, pages->nents,
2371 PCI_DMA_BIDIRECTIONAL))
2372 return 0;
2373
2374 /* If the DMA remap fails, one cause can be that we have
2375 * too many objects pinned in a small remapping table,
2376 * such as swiotlb. Incrementally purge all other objects and
2377 * try again - if there are no more pages to remove from
2378 * the DMA remapper, i915_gem_shrink will return 0.
2379 */
2380 GEM_BUG_ON(obj->mm.pages == pages);
2381 } while (i915_gem_shrink(to_i915(obj->base.dev),
2382 obj->base.size >> PAGE_SHIFT,
2383 I915_SHRINK_BOUND |
2384 I915_SHRINK_UNBOUND |
2385 I915_SHRINK_ACTIVE));
Chris Wilson9da3da62012-06-01 15:20:22 +01002386
Chris Wilson03ac84f2016-10-28 13:58:36 +01002387 return -ENOSPC;
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002388}
2389
Daniel Vetter2c642b02015-04-14 17:35:26 +02002390static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002391{
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002392 writeq(pte, addr);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002393}
2394
Chris Wilsond6473f52016-06-10 14:22:59 +05302395static void gen8_ggtt_insert_page(struct i915_address_space *vm,
2396 dma_addr_t addr,
2397 uint64_t offset,
2398 enum i915_cache_level level,
2399 u32 unused)
2400{
Chris Wilson7c3f86b2017-01-12 11:00:49 +00002401 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Chris Wilsond6473f52016-06-10 14:22:59 +05302402 gen8_pte_t __iomem *pte =
Chris Wilson7c3f86b2017-01-12 11:00:49 +00002403 (gen8_pte_t __iomem *)ggtt->gsm + (offset >> PAGE_SHIFT);
Chris Wilsond6473f52016-06-10 14:22:59 +05302404
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002405 gen8_set_pte(pte, gen8_pte_encode(addr, level));
Chris Wilsond6473f52016-06-10 14:22:59 +05302406
Chris Wilson7c3f86b2017-01-12 11:00:49 +00002407 ggtt->invalidate(vm->i915);
Chris Wilsond6473f52016-06-10 14:22:59 +05302408}
2409
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002410static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
2411 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002412 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302413 enum i915_cache_level level, u32 unused)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002414{
Chris Wilsonce7fda22016-04-28 09:56:38 +01002415 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Dave Gordon85d12252016-05-20 11:54:06 +01002416 struct sgt_iter sgt_iter;
2417 gen8_pte_t __iomem *gtt_entries;
2418 gen8_pte_t gtt_entry;
2419 dma_addr_t addr;
Dave Gordon85d12252016-05-20 11:54:06 +01002420 int i = 0;
Imre Deakbe694592015-12-15 20:10:38 +02002421
Dave Gordon85d12252016-05-20 11:54:06 +01002422 gtt_entries = (gen8_pte_t __iomem *)ggtt->gsm + (start >> PAGE_SHIFT);
2423
2424 for_each_sgt_dma(addr, sgt_iter, st) {
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002425 gtt_entry = gen8_pte_encode(addr, level);
Dave Gordon85d12252016-05-20 11:54:06 +01002426 gen8_set_pte(&gtt_entries[i++], gtt_entry);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002427 }
2428
2429 /*
2430 * XXX: This serves as a posting read to make sure that the PTE has
2431 * actually been updated. There is some concern that even though
2432 * registers and PTEs are within the same BAR that they are potentially
2433 * of NUMA access patterns. Therefore, even with the way we assume
2434 * hardware should work, we must keep this posting read for paranoia.
2435 */
2436 if (i != 0)
Dave Gordon85d12252016-05-20 11:54:06 +01002437 WARN_ON(readq(&gtt_entries[i-1]) != gtt_entry);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002438
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002439 /* This next bit makes the above posting read even more important. We
2440 * want to flush the TLBs only after we're certain all the PTE updates
2441 * have finished.
2442 */
Chris Wilson7c3f86b2017-01-12 11:00:49 +00002443 ggtt->invalidate(vm->i915);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002444}
2445
Chris Wilsonc1403302015-11-18 15:19:39 +00002446struct insert_entries {
2447 struct i915_address_space *vm;
2448 struct sg_table *st;
2449 uint64_t start;
2450 enum i915_cache_level level;
2451 u32 flags;
2452};
2453
2454static int gen8_ggtt_insert_entries__cb(void *_arg)
2455{
2456 struct insert_entries *arg = _arg;
2457 gen8_ggtt_insert_entries(arg->vm, arg->st,
2458 arg->start, arg->level, arg->flags);
2459 return 0;
2460}
2461
2462static void gen8_ggtt_insert_entries__BKL(struct i915_address_space *vm,
2463 struct sg_table *st,
2464 uint64_t start,
2465 enum i915_cache_level level,
2466 u32 flags)
2467{
2468 struct insert_entries arg = { vm, st, start, level, flags };
2469 stop_machine(gen8_ggtt_insert_entries__cb, &arg, NULL);
2470}
2471
Chris Wilsond6473f52016-06-10 14:22:59 +05302472static void gen6_ggtt_insert_page(struct i915_address_space *vm,
2473 dma_addr_t addr,
2474 uint64_t offset,
2475 enum i915_cache_level level,
2476 u32 flags)
2477{
Chris Wilson7c3f86b2017-01-12 11:00:49 +00002478 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Chris Wilsond6473f52016-06-10 14:22:59 +05302479 gen6_pte_t __iomem *pte =
Chris Wilson7c3f86b2017-01-12 11:00:49 +00002480 (gen6_pte_t __iomem *)ggtt->gsm + (offset >> PAGE_SHIFT);
Chris Wilsond6473f52016-06-10 14:22:59 +05302481
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002482 iowrite32(vm->pte_encode(addr, level, flags), pte);
Chris Wilsond6473f52016-06-10 14:22:59 +05302483
Chris Wilson7c3f86b2017-01-12 11:00:49 +00002484 ggtt->invalidate(vm->i915);
Chris Wilsond6473f52016-06-10 14:22:59 +05302485}
2486
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002487/*
2488 * Binds an object into the global gtt with the specified cache level. The object
2489 * will be accessible to the GPU via commands whose operands reference offsets
2490 * within the global GTT as well as accessible by the GPU through the GMADR
2491 * mapped BAR (dev_priv->mm.gtt->gtt).
2492 */
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002493static void gen6_ggtt_insert_entries(struct i915_address_space *vm,
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002494 struct sg_table *st,
Ben Widawsky782f1492014-02-20 11:50:33 -08002495 uint64_t start,
Akash Goel24f3a8c2014-06-17 10:59:42 +05302496 enum i915_cache_level level, u32 flags)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002497{
Chris Wilsonce7fda22016-04-28 09:56:38 +01002498 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Dave Gordon85d12252016-05-20 11:54:06 +01002499 struct sgt_iter sgt_iter;
2500 gen6_pte_t __iomem *gtt_entries;
2501 gen6_pte_t gtt_entry;
2502 dma_addr_t addr;
Dave Gordon85d12252016-05-20 11:54:06 +01002503 int i = 0;
Imre Deakbe694592015-12-15 20:10:38 +02002504
Dave Gordon85d12252016-05-20 11:54:06 +01002505 gtt_entries = (gen6_pte_t __iomem *)ggtt->gsm + (start >> PAGE_SHIFT);
2506
2507 for_each_sgt_dma(addr, sgt_iter, st) {
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002508 gtt_entry = vm->pte_encode(addr, level, flags);
Dave Gordon85d12252016-05-20 11:54:06 +01002509 iowrite32(gtt_entry, &gtt_entries[i++]);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002510 }
2511
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002512 /* XXX: This serves as a posting read to make sure that the PTE has
2513 * actually been updated. There is some concern that even though
2514 * registers and PTEs are within the same BAR that they are potentially
2515 * of NUMA access patterns. Therefore, even with the way we assume
2516 * hardware should work, we must keep this posting read for paranoia.
2517 */
Dave Gordon85d12252016-05-20 11:54:06 +01002518 if (i != 0)
2519 WARN_ON(readl(&gtt_entries[i-1]) != gtt_entry);
Ben Widawsky0f9b91c2012-11-04 09:21:30 -08002520
2521 /* This next bit makes the above posting read even more important. We
2522 * want to flush the TLBs only after we're certain all the PTE updates
2523 * have finished.
2524 */
Chris Wilson7c3f86b2017-01-12 11:00:49 +00002525 ggtt->invalidate(vm->i915);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002526}
2527
Chris Wilsonf7770bf2016-05-14 07:26:35 +01002528static void nop_clear_range(struct i915_address_space *vm,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002529 uint64_t start, uint64_t length)
Chris Wilsonf7770bf2016-05-14 07:26:35 +01002530{
2531}
2532
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002533static void gen8_ggtt_clear_range(struct i915_address_space *vm,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002534 uint64_t start, uint64_t length)
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002535{
Chris Wilsonce7fda22016-04-28 09:56:38 +01002536 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Ben Widawsky782f1492014-02-20 11:50:33 -08002537 unsigned first_entry = start >> PAGE_SHIFT;
2538 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002539 gen8_pte_t scratch_pte, __iomem *gtt_base =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002540 (gen8_pte_t __iomem *)ggtt->gsm + first_entry;
2541 const int max_entries = ggtt_total_entries(ggtt) - first_entry;
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002542 int i;
2543
2544 if (WARN(num_entries > max_entries,
2545 "First entry = %d; Num entries = %d (max=%d)\n",
2546 first_entry, num_entries, max_entries))
2547 num_entries = max_entries;
2548
Chris Wilson8bcdd0f72016-08-22 08:44:30 +01002549 scratch_pte = gen8_pte_encode(vm->scratch_page.daddr,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002550 I915_CACHE_LLC);
Ben Widawsky94ec8f62013-11-02 21:07:18 -07002551 for (i = 0; i < num_entries; i++)
2552 gen8_set_pte(&gtt_base[i], scratch_pte);
2553 readl(gtt_base);
2554}
2555
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002556static void gen6_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002557 uint64_t start,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002558 uint64_t length)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002559{
Chris Wilsonce7fda22016-04-28 09:56:38 +01002560 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
Ben Widawsky782f1492014-02-20 11:50:33 -08002561 unsigned first_entry = start >> PAGE_SHIFT;
2562 unsigned num_entries = length >> PAGE_SHIFT;
Michel Thierry07749ef2015-03-16 16:00:54 +00002563 gen6_pte_t scratch_pte, __iomem *gtt_base =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002564 (gen6_pte_t __iomem *)ggtt->gsm + first_entry;
2565 const int max_entries = ggtt_total_entries(ggtt) - first_entry;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002566 int i;
2567
2568 if (WARN(num_entries > max_entries,
2569 "First entry = %d; Num entries = %d (max=%d)\n",
2570 first_entry, num_entries, max_entries))
2571 num_entries = max_entries;
2572
Chris Wilson8bcdd0f72016-08-22 08:44:30 +01002573 scratch_pte = vm->pte_encode(vm->scratch_page.daddr,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002574 I915_CACHE_LLC, 0);
Ben Widawsky828c7902013-10-16 09:21:30 -07002575
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002576 for (i = 0; i < num_entries; i++)
2577 iowrite32(scratch_pte, &gtt_base[i]);
2578 readl(gtt_base);
2579}
2580
Chris Wilsond6473f52016-06-10 14:22:59 +05302581static void i915_ggtt_insert_page(struct i915_address_space *vm,
2582 dma_addr_t addr,
2583 uint64_t offset,
2584 enum i915_cache_level cache_level,
2585 u32 unused)
2586{
Chris Wilsond6473f52016-06-10 14:22:59 +05302587 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
2588 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
Chris Wilsond6473f52016-06-10 14:22:59 +05302589
2590 intel_gtt_insert_page(addr, offset >> PAGE_SHIFT, flags);
Chris Wilsond6473f52016-06-10 14:22:59 +05302591}
2592
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002593static void i915_ggtt_insert_entries(struct i915_address_space *vm,
2594 struct sg_table *pages,
2595 uint64_t start,
2596 enum i915_cache_level cache_level, u32 unused)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002597{
2598 unsigned int flags = (cache_level == I915_CACHE_NONE) ?
2599 AGP_USER_MEMORY : AGP_USER_CACHED_MEMORY;
2600
Daniel Vetterd369d2d2015-04-14 17:35:25 +02002601 intel_gtt_insert_sg_entries(pages, start >> PAGE_SHIFT, flags);
Daniel Vetter08755462015-04-20 09:04:05 -07002602
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002603}
2604
Ben Widawsky853ba5d2013-07-16 16:50:05 -07002605static void i915_ggtt_clear_range(struct i915_address_space *vm,
Ben Widawsky782f1492014-02-20 11:50:33 -08002606 uint64_t start,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002607 uint64_t length)
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002608{
Chris Wilson2eedfc72016-10-24 13:42:17 +01002609 intel_gtt_clear_range(start >> PAGE_SHIFT, length >> PAGE_SHIFT);
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002610}
2611
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002612static int ggtt_bind_vma(struct i915_vma *vma,
2613 enum i915_cache_level cache_level,
2614 u32 flags)
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002615{
Chris Wilson49d73912016-11-29 09:50:08 +00002616 struct drm_i915_private *i915 = vma->vm->i915;
Daniel Vetter0a878712015-10-15 14:23:01 +02002617 struct drm_i915_gem_object *obj = vma->obj;
2618 u32 pte_flags = 0;
2619 int ret;
2620
2621 ret = i915_get_ggtt_vma_pages(vma);
2622 if (ret)
2623 return ret;
2624
2625 /* Currently applicable only to VLV */
2626 if (obj->gt_ro)
2627 pte_flags |= PTE_READ_ONLY;
2628
Chris Wilson9c870d02016-10-24 13:42:15 +01002629 intel_runtime_pm_get(i915);
Chris Wilson247177d2016-08-15 10:48:47 +01002630 vma->vm->insert_entries(vma->vm, vma->pages, vma->node.start,
Daniel Vetter0a878712015-10-15 14:23:01 +02002631 cache_level, pte_flags);
Chris Wilson9c870d02016-10-24 13:42:15 +01002632 intel_runtime_pm_put(i915);
Daniel Vetter0a878712015-10-15 14:23:01 +02002633
2634 /*
2635 * Without aliasing PPGTT there's no difference between
2636 * GLOBAL/LOCAL_BIND, it's all the same ptes. Hence unconditionally
2637 * upgrade to both bound if we bind either to avoid double-binding.
2638 */
Chris Wilson3272db52016-08-04 16:32:32 +01002639 vma->flags |= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND;
Daniel Vetter0a878712015-10-15 14:23:01 +02002640
2641 return 0;
2642}
2643
2644static int aliasing_gtt_bind_vma(struct i915_vma *vma,
2645 enum i915_cache_level cache_level,
2646 u32 flags)
2647{
Chris Wilson49d73912016-11-29 09:50:08 +00002648 struct drm_i915_private *i915 = vma->vm->i915;
Chris Wilson321d1782015-11-20 10:27:18 +00002649 u32 pte_flags;
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002650 int ret;
2651
2652 ret = i915_get_ggtt_vma_pages(vma);
2653 if (ret)
2654 return ret;
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08002655
Akash Goel24f3a8c2014-06-17 10:59:42 +05302656 /* Currently applicable only to VLV */
Chris Wilson321d1782015-11-20 10:27:18 +00002657 pte_flags = 0;
2658 if (vma->obj->gt_ro)
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002659 pte_flags |= PTE_READ_ONLY;
Akash Goel24f3a8c2014-06-17 10:59:42 +05302660
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02002661
Chris Wilson3272db52016-08-04 16:32:32 +01002662 if (flags & I915_VMA_GLOBAL_BIND) {
Chris Wilson9c870d02016-10-24 13:42:15 +01002663 intel_runtime_pm_get(i915);
Chris Wilson321d1782015-11-20 10:27:18 +00002664 vma->vm->insert_entries(vma->vm,
Chris Wilson247177d2016-08-15 10:48:47 +01002665 vma->pages, vma->node.start,
Daniel Vetter08755462015-04-20 09:04:05 -07002666 cache_level, pte_flags);
Chris Wilson9c870d02016-10-24 13:42:15 +01002667 intel_runtime_pm_put(i915);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002668 }
Daniel Vetter74898d72012-02-15 23:50:22 +01002669
Chris Wilson3272db52016-08-04 16:32:32 +01002670 if (flags & I915_VMA_LOCAL_BIND) {
Chris Wilson9c870d02016-10-24 13:42:15 +01002671 struct i915_hw_ppgtt *appgtt = i915->mm.aliasing_ppgtt;
Chris Wilson321d1782015-11-20 10:27:18 +00002672 appgtt->base.insert_entries(&appgtt->base,
Chris Wilson247177d2016-08-15 10:48:47 +01002673 vma->pages, vma->node.start,
Daniel Vetterf329f5f2015-04-14 17:35:15 +02002674 cache_level, pte_flags);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002675 }
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02002676
2677 return 0;
Ben Widawsky6f65e292013-12-06 14:10:56 -08002678}
2679
2680static void ggtt_unbind_vma(struct i915_vma *vma)
2681{
Chris Wilson49d73912016-11-29 09:50:08 +00002682 struct drm_i915_private *i915 = vma->vm->i915;
Chris Wilson9c870d02016-10-24 13:42:15 +01002683 struct i915_hw_ppgtt *appgtt = i915->mm.aliasing_ppgtt;
Chris Wilsonde180032016-08-04 16:32:29 +01002684 const u64 size = min(vma->size, vma->node.size);
Ben Widawsky6f65e292013-12-06 14:10:56 -08002685
Chris Wilson9c870d02016-10-24 13:42:15 +01002686 if (vma->flags & I915_VMA_GLOBAL_BIND) {
2687 intel_runtime_pm_get(i915);
Ben Widawsky782f1492014-02-20 11:50:33 -08002688 vma->vm->clear_range(vma->vm,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002689 vma->node.start, size);
Chris Wilson9c870d02016-10-24 13:42:15 +01002690 intel_runtime_pm_put(i915);
2691 }
Ben Widawsky6f65e292013-12-06 14:10:56 -08002692
Chris Wilson3272db52016-08-04 16:32:32 +01002693 if (vma->flags & I915_VMA_LOCAL_BIND && appgtt)
Ben Widawsky6f65e292013-12-06 14:10:56 -08002694 appgtt->base.clear_range(&appgtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002695 vma->node.start, size);
Daniel Vetter74163902012-02-15 23:50:21 +01002696}
2697
Chris Wilson03ac84f2016-10-28 13:58:36 +01002698void i915_gem_gtt_finish_pages(struct drm_i915_gem_object *obj,
2699 struct sg_table *pages)
Daniel Vetter74163902012-02-15 23:50:21 +01002700{
David Weinehall52a05c32016-08-22 13:32:44 +03002701 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
2702 struct device *kdev = &dev_priv->drm.pdev->dev;
Chris Wilson307dc252016-08-05 10:14:12 +01002703 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawsky5c042282011-10-17 15:51:55 -07002704
Chris Wilson307dc252016-08-05 10:14:12 +01002705 if (unlikely(ggtt->do_idle_maps)) {
Chris Wilson22dd3bb2016-09-09 14:11:50 +01002706 if (i915_gem_wait_for_idle(dev_priv, I915_WAIT_LOCKED)) {
Chris Wilson307dc252016-08-05 10:14:12 +01002707 DRM_ERROR("Failed to wait for idle; VT'd may hang.\n");
2708 /* Wait a bit, in hopes it avoids the hang */
2709 udelay(10);
2710 }
2711 }
Ben Widawsky5c042282011-10-17 15:51:55 -07002712
Chris Wilson03ac84f2016-10-28 13:58:36 +01002713 dma_unmap_sg(kdev, pages->sgl, pages->nents, PCI_DMA_BIDIRECTIONAL);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002714}
Daniel Vetter644ec022012-03-26 09:45:40 +02002715
Chris Wilson45b186f2016-12-16 07:46:42 +00002716static void i915_gtt_color_adjust(const struct drm_mm_node *node,
Chris Wilson42d6ab42012-07-26 11:49:32 +01002717 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +01002718 u64 *start,
2719 u64 *end)
Chris Wilson42d6ab42012-07-26 11:49:32 +01002720{
2721 if (node->color != color)
Chris Wilsonf51455d2017-01-10 14:47:34 +00002722 *start += I915_GTT_PAGE_SIZE;
Chris Wilson42d6ab42012-07-26 11:49:32 +01002723
Chris Wilsonb44f97f2016-12-16 07:46:40 +00002724 node = list_next_entry(node, node_list);
2725 if (node->allocated && node->color != color)
Chris Wilsonf51455d2017-01-10 14:47:34 +00002726 *end -= I915_GTT_PAGE_SIZE;
Chris Wilson42d6ab42012-07-26 11:49:32 +01002727}
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002728
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01002729int i915_gem_init_ggtt(struct drm_i915_private *dev_priv)
Daniel Vetter644ec022012-03-26 09:45:40 +02002730{
Ben Widawskye78891c2013-01-25 16:41:04 -08002731 /* Let GEM Manage all of the aperture.
2732 *
2733 * However, leave one page at the end still bound to the scratch page.
2734 * There are a number of places where the hardware apparently prefetches
2735 * past the end of the object, and we've seen multiple hangs with the
2736 * GPU head pointer stuck in a batchbuffer bound at the last page of the
2737 * aperture. One page should be enough to keep any prefetching inside
2738 * of the aperture.
2739 */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002740 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilsoned2f3452012-11-15 11:32:19 +00002741 unsigned long hole_start, hole_end;
Chris Wilson95374d72016-10-12 10:05:20 +01002742 struct i915_hw_ppgtt *ppgtt;
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01002743 struct drm_mm_node *entry;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002744 int ret;
Daniel Vetter644ec022012-03-26 09:45:40 +02002745
Zhi Wangb02d22a2016-06-16 08:06:59 -04002746 ret = intel_vgt_balloon(dev_priv);
2747 if (ret)
2748 return ret;
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002749
Chris Wilson95374d72016-10-12 10:05:20 +01002750 /* Reserve a mappable slot for our lockless error capture */
2751 ret = drm_mm_insert_node_in_range_generic(&ggtt->base.mm,
2752 &ggtt->error_capture,
Chris Wilsonf51455d2017-01-10 14:47:34 +00002753 PAGE_SIZE, 0,
Chris Wilson85fd4f52016-12-05 14:29:36 +00002754 I915_COLOR_UNEVICTABLE,
Chris Wilson95374d72016-10-12 10:05:20 +01002755 0, ggtt->mappable_end,
2756 0, 0);
2757 if (ret)
2758 return ret;
2759
Chris Wilsoned2f3452012-11-15 11:32:19 +00002760 /* Clear any non-preallocated blocks */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002761 drm_mm_for_each_hole(entry, &ggtt->base.mm, hole_start, hole_end) {
Chris Wilsoned2f3452012-11-15 11:32:19 +00002762 DRM_DEBUG_KMS("clearing unused GTT space: [%lx, %lx]\n",
2763 hole_start, hole_end);
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002764 ggtt->base.clear_range(&ggtt->base, hole_start,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002765 hole_end - hole_start);
Chris Wilsoned2f3452012-11-15 11:32:19 +00002766 }
2767
2768 /* And finally clear the reserved guard page */
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01002769 ggtt->base.clear_range(&ggtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002770 ggtt->base.total - PAGE_SIZE, PAGE_SIZE);
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002771
Chris Wilson97d6d7a2016-08-04 07:52:22 +01002772 if (USES_PPGTT(dev_priv) && !USES_FULL_PPGTT(dev_priv)) {
Daniel Vetterfa76da32014-08-06 20:19:54 +02002773 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
Chris Wilson95374d72016-10-12 10:05:20 +01002774 if (!ppgtt) {
2775 ret = -ENOMEM;
2776 goto err;
Michel Thierry4933d512015-03-24 15:46:22 +00002777 }
Daniel Vetterfa76da32014-08-06 20:19:54 +02002778
Chris Wilson95374d72016-10-12 10:05:20 +01002779 ret = __hw_ppgtt_init(ppgtt, dev_priv);
2780 if (ret)
2781 goto err_ppgtt;
2782
2783 if (ppgtt->base.allocate_va_range) {
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002784 ret = ppgtt->base.allocate_va_range(&ppgtt->base, 0,
2785 ppgtt->base.total);
Chris Wilson95374d72016-10-12 10:05:20 +01002786 if (ret)
2787 goto err_ppgtt_cleanup;
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002788 }
2789
2790 ppgtt->base.clear_range(&ppgtt->base,
2791 ppgtt->base.start,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02002792 ppgtt->base.total);
Daniel Vetter5c5f6452015-04-14 17:35:14 +02002793
Daniel Vetterfa76da32014-08-06 20:19:54 +02002794 dev_priv->mm.aliasing_ppgtt = ppgtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002795 WARN_ON(ggtt->base.bind_vma != ggtt_bind_vma);
2796 ggtt->base.bind_vma = aliasing_gtt_bind_vma;
Daniel Vetterfa76da32014-08-06 20:19:54 +02002797 }
2798
Daniel Vetter6c5566a2014-08-06 15:04:50 +02002799 return 0;
Chris Wilson95374d72016-10-12 10:05:20 +01002800
2801err_ppgtt_cleanup:
2802 ppgtt->base.cleanup(&ppgtt->base);
2803err_ppgtt:
2804 kfree(ppgtt);
2805err:
2806 drm_mm_remove_node(&ggtt->error_capture);
2807 return ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002808}
2809
Joonas Lahtinend85489d2016-03-24 16:47:46 +02002810/**
Joonas Lahtinend85489d2016-03-24 16:47:46 +02002811 * i915_ggtt_cleanup_hw - Clean up GGTT hardware initialization
Chris Wilson97d6d7a2016-08-04 07:52:22 +01002812 * @dev_priv: i915 device
Joonas Lahtinend85489d2016-03-24 16:47:46 +02002813 */
Chris Wilson97d6d7a2016-08-04 07:52:22 +01002814void i915_ggtt_cleanup_hw(struct drm_i915_private *dev_priv)
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002815{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002816 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002817
Daniel Vetter70e32542014-08-06 15:04:57 +02002818 if (dev_priv->mm.aliasing_ppgtt) {
2819 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
Daniel Vetter70e32542014-08-06 15:04:57 +02002820 ppgtt->base.cleanup(&ppgtt->base);
Matthew Auldcb7f2762016-08-05 19:04:40 +01002821 kfree(ppgtt);
Daniel Vetter70e32542014-08-06 15:04:57 +02002822 }
2823
Chris Wilson97d6d7a2016-08-04 07:52:22 +01002824 i915_gem_cleanup_stolen(&dev_priv->drm);
Imre Deaka4eba472016-01-19 15:26:32 +02002825
Chris Wilson95374d72016-10-12 10:05:20 +01002826 if (drm_mm_node_allocated(&ggtt->error_capture))
2827 drm_mm_remove_node(&ggtt->error_capture);
2828
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002829 if (drm_mm_initialized(&ggtt->base.mm)) {
Zhi Wangb02d22a2016-06-16 08:06:59 -04002830 intel_vgt_deballoon(dev_priv);
Yu Zhang5dda8fa2015-02-10 19:05:48 +08002831
Matthew Aulded9724d2016-11-17 21:04:10 +00002832 mutex_lock(&dev_priv->drm.struct_mutex);
2833 i915_address_space_fini(&ggtt->base);
2834 mutex_unlock(&dev_priv->drm.struct_mutex);
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002835 }
2836
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002837 ggtt->base.cleanup(&ggtt->base);
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01002838
2839 arch_phys_wc_del(ggtt->mtrr);
Chris Wilsonf7bbe782016-08-19 16:54:27 +01002840 io_mapping_fini(&ggtt->mappable);
Daniel Vetter90d0a0e2014-08-06 15:04:56 +02002841}
Daniel Vetter70e32542014-08-06 15:04:57 +02002842
Daniel Vetter2c642b02015-04-14 17:35:26 +02002843static unsigned int gen6_get_total_gtt_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002844{
2845 snb_gmch_ctl >>= SNB_GMCH_GGMS_SHIFT;
2846 snb_gmch_ctl &= SNB_GMCH_GGMS_MASK;
2847 return snb_gmch_ctl << 20;
2848}
2849
Daniel Vetter2c642b02015-04-14 17:35:26 +02002850static unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002851{
2852 bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
2853 bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
2854 if (bdw_gmch_ctl)
2855 bdw_gmch_ctl = 1 << bdw_gmch_ctl;
Ben Widawsky562d55d2014-05-27 16:53:08 -07002856
2857#ifdef CONFIG_X86_32
2858 /* Limit 32b platforms to a 2GB GGTT: 4 << 20 / pte size * PAGE_SIZE */
2859 if (bdw_gmch_ctl > 4)
2860 bdw_gmch_ctl = 4;
2861#endif
2862
Ben Widawsky9459d252013-11-03 16:53:55 -08002863 return bdw_gmch_ctl << 20;
2864}
2865
Daniel Vetter2c642b02015-04-14 17:35:26 +02002866static unsigned int chv_get_total_gtt_size(u16 gmch_ctrl)
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002867{
2868 gmch_ctrl >>= SNB_GMCH_GGMS_SHIFT;
2869 gmch_ctrl &= SNB_GMCH_GGMS_MASK;
2870
2871 if (gmch_ctrl)
2872 return 1 << (20 + gmch_ctrl);
2873
2874 return 0;
2875}
2876
Daniel Vetter2c642b02015-04-14 17:35:26 +02002877static size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08002878{
2879 snb_gmch_ctl >>= SNB_GMCH_GMS_SHIFT;
2880 snb_gmch_ctl &= SNB_GMCH_GMS_MASK;
2881 return snb_gmch_ctl << 25; /* 32 MB units */
2882}
2883
Daniel Vetter2c642b02015-04-14 17:35:26 +02002884static size_t gen8_get_stolen_size(u16 bdw_gmch_ctl)
Ben Widawsky9459d252013-11-03 16:53:55 -08002885{
2886 bdw_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2887 bdw_gmch_ctl &= BDW_GMCH_GMS_MASK;
2888 return bdw_gmch_ctl << 25; /* 32 MB units */
2889}
2890
Damien Lespiaud7f25f22014-05-08 22:19:40 +03002891static size_t chv_get_stolen_size(u16 gmch_ctrl)
2892{
2893 gmch_ctrl >>= SNB_GMCH_GMS_SHIFT;
2894 gmch_ctrl &= SNB_GMCH_GMS_MASK;
2895
2896 /*
2897 * 0x0 to 0x10: 32MB increments starting at 0MB
2898 * 0x11 to 0x16: 4MB increments starting at 8MB
2899 * 0x17 to 0x1d: 4MB increments start at 36MB
2900 */
2901 if (gmch_ctrl < 0x11)
2902 return gmch_ctrl << 25;
2903 else if (gmch_ctrl < 0x17)
2904 return (gmch_ctrl - 0x11 + 2) << 22;
2905 else
2906 return (gmch_ctrl - 0x17 + 9) << 22;
2907}
2908
Damien Lespiau66375012014-01-09 18:02:46 +00002909static size_t gen9_get_stolen_size(u16 gen9_gmch_ctl)
2910{
2911 gen9_gmch_ctl >>= BDW_GMCH_GMS_SHIFT;
2912 gen9_gmch_ctl &= BDW_GMCH_GMS_MASK;
2913
2914 if (gen9_gmch_ctl < 0xf0)
2915 return gen9_gmch_ctl << 25; /* 32 MB units */
2916 else
2917 /* 4MB increments starting at 0xf0 for 4MB */
2918 return (gen9_gmch_ctl - 0xf0 + 1) << 22;
2919}
2920
Chris Wilson34c998b2016-08-04 07:52:24 +01002921static int ggtt_probe_common(struct i915_ggtt *ggtt, u64 size)
Ben Widawsky63340132013-11-04 19:32:22 -08002922{
Chris Wilson49d73912016-11-29 09:50:08 +00002923 struct drm_i915_private *dev_priv = ggtt->base.i915;
2924 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson34c998b2016-08-04 07:52:24 +01002925 phys_addr_t phys_addr;
Chris Wilson8bcdd0f72016-08-22 08:44:30 +01002926 int ret;
Ben Widawsky63340132013-11-04 19:32:22 -08002927
2928 /* For Modern GENs the PTEs and register space are split in the BAR */
Chris Wilson34c998b2016-08-04 07:52:24 +01002929 phys_addr = pci_resource_start(pdev, 0) + pci_resource_len(pdev, 0) / 2;
Ben Widawsky63340132013-11-04 19:32:22 -08002930
Imre Deak2a073f892015-03-27 13:07:33 +02002931 /*
2932 * On BXT writes larger than 64 bit to the GTT pagetable range will be
2933 * dropped. For WC mappings in general we have 64 byte burst writes
2934 * when the WC buffer is flushed, so we can't use it, but have to
2935 * resort to an uncached mapping. The WC issue is easily caught by the
2936 * readback check when writing GTT PTE entries.
2937 */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02002938 if (IS_GEN9_LP(dev_priv))
Chris Wilson34c998b2016-08-04 07:52:24 +01002939 ggtt->gsm = ioremap_nocache(phys_addr, size);
Imre Deak2a073f892015-03-27 13:07:33 +02002940 else
Chris Wilson34c998b2016-08-04 07:52:24 +01002941 ggtt->gsm = ioremap_wc(phys_addr, size);
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002942 if (!ggtt->gsm) {
Chris Wilson34c998b2016-08-04 07:52:24 +01002943 DRM_ERROR("Failed to map the ggtt page table\n");
Ben Widawsky63340132013-11-04 19:32:22 -08002944 return -ENOMEM;
2945 }
2946
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00002947 ret = setup_scratch_page(dev_priv, &ggtt->base.scratch_page, GFP_DMA32);
Chris Wilson8bcdd0f72016-08-22 08:44:30 +01002948 if (ret) {
Ben Widawsky63340132013-11-04 19:32:22 -08002949 DRM_ERROR("Scratch setup failed\n");
2950 /* iounmap will also get called at remove, but meh */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03002951 iounmap(ggtt->gsm);
Chris Wilson8bcdd0f72016-08-22 08:44:30 +01002952 return ret;
Ben Widawsky63340132013-11-04 19:32:22 -08002953 }
2954
Mika Kuoppala4ad2af12015-06-30 18:16:39 +03002955 return 0;
Ben Widawsky63340132013-11-04 19:32:22 -08002956}
2957
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002958/* The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
2959 * bits. When using advanced contexts each context stores its own PAT, but
2960 * writing this data shouldn't be harmful even in those cases. */
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002961static void bdw_setup_private_ppat(struct drm_i915_private *dev_priv)
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002962{
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002963 uint64_t pat;
2964
2965 pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) | /* for normal objects, no eLLC */
2966 GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) | /* for something pointing to ptes? */
2967 GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC) | /* for scanout with eLLC */
2968 GEN8_PPAT(3, GEN8_PPAT_UC) | /* Uncached objects, mostly for scanout */
2969 GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
2970 GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
2971 GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
2972 GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
2973
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002974 if (!USES_PPGTT(dev_priv))
Rodrigo Vivid6a8b722014-11-05 16:56:36 -08002975 /* Spec: "For GGTT, there is NO pat_sel[2:0] from the entry,
2976 * so RTL will always use the value corresponding to
2977 * pat_sel = 000".
2978 * So let's disable cache for GGTT to avoid screen corruptions.
2979 * MOCS still can be used though.
2980 * - System agent ggtt writes (i.e. cpu gtt mmaps) already work
2981 * before this patch, i.e. the same uncached + snooping access
2982 * like on gen6/7 seems to be in effect.
2983 * - So this just fixes blitter/render access. Again it looks
2984 * like it's not just uncached access, but uncached + snooping.
2985 * So we can still hold onto all our assumptions wrt cpu
2986 * clflushing on LLC machines.
2987 */
2988 pat = GEN8_PPAT(0, GEN8_PPAT_UC);
2989
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002990 /* XXX: spec defines this as 2 distinct registers. It's unclear if a 64b
2991 * write would work. */
Ville Syrjälä7e435ad2015-09-18 20:03:25 +03002992 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
2993 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08002994}
2995
Ville Syrjäläee0ce472014-04-09 13:28:01 +03002996static void chv_setup_private_ppat(struct drm_i915_private *dev_priv)
2997{
2998 uint64_t pat;
2999
3000 /*
3001 * Map WB on BDW to snooped on CHV.
3002 *
3003 * Only the snoop bit has meaning for CHV, the rest is
3004 * ignored.
3005 *
Ville Syrjäläcf3d2622014-11-14 21:02:44 +02003006 * The hardware will never snoop for certain types of accesses:
3007 * - CPU GTT (GMADR->GGTT->no snoop->memory)
3008 * - PPGTT page tables
3009 * - some other special cycles
3010 *
3011 * As with BDW, we also need to consider the following for GT accesses:
3012 * "For GGTT, there is NO pat_sel[2:0] from the entry,
3013 * so RTL will always use the value corresponding to
3014 * pat_sel = 000".
3015 * Which means we must set the snoop bit in PAT entry 0
3016 * in order to keep the global status page working.
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003017 */
3018 pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
3019 GEN8_PPAT(1, 0) |
3020 GEN8_PPAT(2, 0) |
3021 GEN8_PPAT(3, 0) |
3022 GEN8_PPAT(4, CHV_PPAT_SNOOP) |
3023 GEN8_PPAT(5, CHV_PPAT_SNOOP) |
3024 GEN8_PPAT(6, CHV_PPAT_SNOOP) |
3025 GEN8_PPAT(7, CHV_PPAT_SNOOP);
3026
Ville Syrjälä7e435ad2015-09-18 20:03:25 +03003027 I915_WRITE(GEN8_PRIVATE_PAT_LO, pat);
3028 I915_WRITE(GEN8_PRIVATE_PAT_HI, pat >> 32);
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003029}
3030
Chris Wilson34c998b2016-08-04 07:52:24 +01003031static void gen6_gmch_remove(struct i915_address_space *vm)
3032{
3033 struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
3034
3035 iounmap(ggtt->gsm);
Chris Wilson49d73912016-11-29 09:50:08 +00003036 cleanup_scratch_page(vm->i915, &vm->scratch_page);
Chris Wilson34c998b2016-08-04 07:52:24 +01003037}
3038
Joonas Lahtinend507d732016-03-18 10:42:58 +02003039static int gen8_gmch_probe(struct i915_ggtt *ggtt)
Ben Widawsky63340132013-11-04 19:32:22 -08003040{
Chris Wilson49d73912016-11-29 09:50:08 +00003041 struct drm_i915_private *dev_priv = ggtt->base.i915;
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003042 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson34c998b2016-08-04 07:52:24 +01003043 unsigned int size;
Ben Widawsky63340132013-11-04 19:32:22 -08003044 u16 snb_gmch_ctl;
Ben Widawsky63340132013-11-04 19:32:22 -08003045
3046 /* TODO: We're not aware of mappable constraints on gen8 yet */
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003047 ggtt->mappable_base = pci_resource_start(pdev, 2);
3048 ggtt->mappable_end = pci_resource_len(pdev, 2);
Ben Widawsky63340132013-11-04 19:32:22 -08003049
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003050 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(39)))
3051 pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(39));
Ben Widawsky63340132013-11-04 19:32:22 -08003052
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003053 pci_read_config_word(pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
Ben Widawsky63340132013-11-04 19:32:22 -08003054
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003055 if (INTEL_GEN(dev_priv) >= 9) {
Joonas Lahtinend507d732016-03-18 10:42:58 +02003056 ggtt->stolen_size = gen9_get_stolen_size(snb_gmch_ctl);
Chris Wilson34c998b2016-08-04 07:52:24 +01003057 size = gen8_get_total_gtt_size(snb_gmch_ctl);
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003058 } else if (IS_CHERRYVIEW(dev_priv)) {
Joonas Lahtinend507d732016-03-18 10:42:58 +02003059 ggtt->stolen_size = chv_get_stolen_size(snb_gmch_ctl);
Chris Wilson34c998b2016-08-04 07:52:24 +01003060 size = chv_get_total_gtt_size(snb_gmch_ctl);
Damien Lespiaud7f25f22014-05-08 22:19:40 +03003061 } else {
Joonas Lahtinend507d732016-03-18 10:42:58 +02003062 ggtt->stolen_size = gen8_get_stolen_size(snb_gmch_ctl);
Chris Wilson34c998b2016-08-04 07:52:24 +01003063 size = gen8_get_total_gtt_size(snb_gmch_ctl);
Damien Lespiaud7f25f22014-05-08 22:19:40 +03003064 }
Ben Widawsky63340132013-11-04 19:32:22 -08003065
Chris Wilson34c998b2016-08-04 07:52:24 +01003066 ggtt->base.total = (size / sizeof(gen8_pte_t)) << PAGE_SHIFT;
Ben Widawsky63340132013-11-04 19:32:22 -08003067
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02003068 if (IS_CHERRYVIEW(dev_priv) || IS_GEN9_LP(dev_priv))
Ville Syrjäläee0ce472014-04-09 13:28:01 +03003069 chv_setup_private_ppat(dev_priv);
3070 else
3071 bdw_setup_private_ppat(dev_priv);
Ben Widawskyfbe5d362013-11-04 19:56:49 -08003072
Chris Wilson34c998b2016-08-04 07:52:24 +01003073 ggtt->base.cleanup = gen6_gmch_remove;
Joonas Lahtinend507d732016-03-18 10:42:58 +02003074 ggtt->base.bind_vma = ggtt_bind_vma;
3075 ggtt->base.unbind_vma = ggtt_unbind_vma;
Chris Wilsond6473f52016-06-10 14:22:59 +05303076 ggtt->base.insert_page = gen8_ggtt_insert_page;
Chris Wilsonf7770bf2016-05-14 07:26:35 +01003077 ggtt->base.clear_range = nop_clear_range;
Chris Wilson48f112f2016-06-24 14:07:14 +01003078 if (!USES_FULL_PPGTT(dev_priv) || intel_scanout_needs_vtd_wa(dev_priv))
Chris Wilsonf7770bf2016-05-14 07:26:35 +01003079 ggtt->base.clear_range = gen8_ggtt_clear_range;
3080
3081 ggtt->base.insert_entries = gen8_ggtt_insert_entries;
3082 if (IS_CHERRYVIEW(dev_priv))
3083 ggtt->base.insert_entries = gen8_ggtt_insert_entries__BKL;
3084
Chris Wilson7c3f86b2017-01-12 11:00:49 +00003085 ggtt->invalidate = gen6_ggtt_invalidate;
3086
Chris Wilson34c998b2016-08-04 07:52:24 +01003087 return ggtt_probe_common(ggtt, size);
Ben Widawsky63340132013-11-04 19:32:22 -08003088}
3089
Joonas Lahtinend507d732016-03-18 10:42:58 +02003090static int gen6_gmch_probe(struct i915_ggtt *ggtt)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003091{
Chris Wilson49d73912016-11-29 09:50:08 +00003092 struct drm_i915_private *dev_priv = ggtt->base.i915;
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003093 struct pci_dev *pdev = dev_priv->drm.pdev;
Chris Wilson34c998b2016-08-04 07:52:24 +01003094 unsigned int size;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003095 u16 snb_gmch_ctl;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003096
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003097 ggtt->mappable_base = pci_resource_start(pdev, 2);
3098 ggtt->mappable_end = pci_resource_len(pdev, 2);
Ben Widawsky41907dd2013-02-08 11:32:47 -08003099
Ben Widawskybaa09f52013-01-24 13:49:57 -08003100 /* 64/512MB is the current min/max we actually know of, but this is just
3101 * a coarse sanity check.
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003102 */
Chris Wilson34c998b2016-08-04 07:52:24 +01003103 if (ggtt->mappable_end < (64<<20) || ggtt->mappable_end > (512<<20)) {
Joonas Lahtinend507d732016-03-18 10:42:58 +02003104 DRM_ERROR("Unknown GMADR size (%llx)\n", ggtt->mappable_end);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003105 return -ENXIO;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003106 }
3107
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003108 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(40)))
3109 pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(40));
3110 pci_read_config_word(pdev, SNB_GMCH_CTRL, &snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003111
Joonas Lahtinend507d732016-03-18 10:42:58 +02003112 ggtt->stolen_size = gen6_get_stolen_size(snb_gmch_ctl);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003113
Chris Wilson34c998b2016-08-04 07:52:24 +01003114 size = gen6_get_total_gtt_size(snb_gmch_ctl);
3115 ggtt->base.total = (size / sizeof(gen6_pte_t)) << PAGE_SHIFT;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003116
Joonas Lahtinend507d732016-03-18 10:42:58 +02003117 ggtt->base.clear_range = gen6_ggtt_clear_range;
Chris Wilsond6473f52016-06-10 14:22:59 +05303118 ggtt->base.insert_page = gen6_ggtt_insert_page;
Joonas Lahtinend507d732016-03-18 10:42:58 +02003119 ggtt->base.insert_entries = gen6_ggtt_insert_entries;
3120 ggtt->base.bind_vma = ggtt_bind_vma;
3121 ggtt->base.unbind_vma = ggtt_unbind_vma;
Chris Wilson34c998b2016-08-04 07:52:24 +01003122 ggtt->base.cleanup = gen6_gmch_remove;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003123
Chris Wilson7c3f86b2017-01-12 11:00:49 +00003124 ggtt->invalidate = gen6_ggtt_invalidate;
3125
Chris Wilson34c998b2016-08-04 07:52:24 +01003126 if (HAS_EDRAM(dev_priv))
3127 ggtt->base.pte_encode = iris_pte_encode;
3128 else if (IS_HASWELL(dev_priv))
3129 ggtt->base.pte_encode = hsw_pte_encode;
3130 else if (IS_VALLEYVIEW(dev_priv))
3131 ggtt->base.pte_encode = byt_pte_encode;
3132 else if (INTEL_GEN(dev_priv) >= 7)
3133 ggtt->base.pte_encode = ivb_pte_encode;
3134 else
3135 ggtt->base.pte_encode = snb_pte_encode;
3136
3137 return ggtt_probe_common(ggtt, size);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003138}
3139
Chris Wilson34c998b2016-08-04 07:52:24 +01003140static void i915_gmch_remove(struct i915_address_space *vm)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003141{
Chris Wilson34c998b2016-08-04 07:52:24 +01003142 intel_gmch_remove();
Ben Widawskybaa09f52013-01-24 13:49:57 -08003143}
3144
Joonas Lahtinend507d732016-03-18 10:42:58 +02003145static int i915_gmch_probe(struct i915_ggtt *ggtt)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003146{
Chris Wilson49d73912016-11-29 09:50:08 +00003147 struct drm_i915_private *dev_priv = ggtt->base.i915;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003148 int ret;
3149
Chris Wilson91c8a322016-07-05 10:40:23 +01003150 ret = intel_gmch_probe(dev_priv->bridge_dev, dev_priv->drm.pdev, NULL);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003151 if (!ret) {
3152 DRM_ERROR("failed to set up gmch\n");
3153 return -EIO;
3154 }
3155
Chris Wilsonedd1f2f2017-01-06 15:20:11 +00003156 intel_gtt_get(&ggtt->base.total,
3157 &ggtt->stolen_size,
3158 &ggtt->mappable_base,
3159 &ggtt->mappable_end);
Ben Widawskybaa09f52013-01-24 13:49:57 -08003160
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003161 ggtt->do_idle_maps = needs_idle_maps(dev_priv);
Chris Wilsond6473f52016-06-10 14:22:59 +05303162 ggtt->base.insert_page = i915_ggtt_insert_page;
Joonas Lahtinend507d732016-03-18 10:42:58 +02003163 ggtt->base.insert_entries = i915_ggtt_insert_entries;
3164 ggtt->base.clear_range = i915_ggtt_clear_range;
3165 ggtt->base.bind_vma = ggtt_bind_vma;
3166 ggtt->base.unbind_vma = ggtt_unbind_vma;
Chris Wilson34c998b2016-08-04 07:52:24 +01003167 ggtt->base.cleanup = i915_gmch_remove;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003168
Chris Wilson7c3f86b2017-01-12 11:00:49 +00003169 ggtt->invalidate = gmch_ggtt_invalidate;
3170
Joonas Lahtinend507d732016-03-18 10:42:58 +02003171 if (unlikely(ggtt->do_idle_maps))
Chris Wilsonc0a7f812013-12-30 12:16:15 +00003172 DRM_INFO("applying Ironlake quirks for intel_iommu\n");
3173
Ben Widawskybaa09f52013-01-24 13:49:57 -08003174 return 0;
3175}
3176
Joonas Lahtinend85489d2016-03-24 16:47:46 +02003177/**
Chris Wilson0088e522016-08-04 07:52:21 +01003178 * i915_ggtt_probe_hw - Probe GGTT hardware location
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003179 * @dev_priv: i915 device
Joonas Lahtinend85489d2016-03-24 16:47:46 +02003180 */
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003181int i915_ggtt_probe_hw(struct drm_i915_private *dev_priv)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003182{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003183 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskybaa09f52013-01-24 13:49:57 -08003184 int ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003185
Chris Wilson49d73912016-11-29 09:50:08 +00003186 ggtt->base.i915 = dev_priv;
Mika Kuoppalac114f762015-06-25 18:35:13 +03003187
Chris Wilson34c998b2016-08-04 07:52:24 +01003188 if (INTEL_GEN(dev_priv) <= 5)
3189 ret = i915_gmch_probe(ggtt);
3190 else if (INTEL_GEN(dev_priv) < 8)
3191 ret = gen6_gmch_probe(ggtt);
3192 else
3193 ret = gen8_gmch_probe(ggtt);
Ben Widawskya54c0c22013-01-24 14:45:00 -08003194 if (ret)
Ben Widawskybaa09f52013-01-24 13:49:57 -08003195 return ret;
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003196
Chris Wilsondb9309a2017-01-05 15:30:23 +00003197 /* Trim the GGTT to fit the GuC mappable upper range (when enabled).
3198 * This is easier than doing range restriction on the fly, as we
3199 * currently don't have any bits spare to pass in this upper
3200 * restriction!
3201 */
3202 if (HAS_GUC(dev_priv) && i915.enable_guc_loading) {
3203 ggtt->base.total = min_t(u64, ggtt->base.total, GUC_GGTT_TOP);
3204 ggtt->mappable_end = min(ggtt->mappable_end, ggtt->base.total);
3205 }
3206
Chris Wilsonc890e2d2016-03-18 10:42:59 +02003207 if ((ggtt->base.total - 1) >> 32) {
3208 DRM_ERROR("We never expected a Global GTT with more than 32bits"
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01003209 " of address space! Found %lldM!\n",
Chris Wilsonc890e2d2016-03-18 10:42:59 +02003210 ggtt->base.total >> 20);
3211 ggtt->base.total = 1ULL << 32;
3212 ggtt->mappable_end = min(ggtt->mappable_end, ggtt->base.total);
3213 }
3214
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01003215 if (ggtt->mappable_end > ggtt->base.total) {
3216 DRM_ERROR("mappable aperture extends past end of GGTT,"
3217 " aperture=%llx, total=%llx\n",
3218 ggtt->mappable_end, ggtt->base.total);
3219 ggtt->mappable_end = ggtt->base.total;
3220 }
3221
Ben Widawskybaa09f52013-01-24 13:49:57 -08003222 /* GMADR is the PCI mmio aperture into the global GTT. */
Mika Kuoppalac44ef602015-06-25 18:35:05 +03003223 DRM_INFO("Memory usable by graphics device = %lluM\n",
Joonas Lahtinen62106b42016-03-18 10:42:57 +02003224 ggtt->base.total >> 20);
3225 DRM_DEBUG_DRIVER("GMADR size = %lldM\n", ggtt->mappable_end >> 20);
Chris Wilsonedd1f2f2017-01-06 15:20:11 +00003226 DRM_DEBUG_DRIVER("GTT stolen size = %uM\n", ggtt->stolen_size >> 20);
Daniel Vetter5db6c732014-03-31 16:23:04 +02003227#ifdef CONFIG_INTEL_IOMMU
3228 if (intel_iommu_gfx_mapped)
3229 DRM_INFO("VT-d active for gfx access\n");
3230#endif
Daniel Vetter7faf1ab2013-01-24 14:44:55 -08003231
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003232 return 0;
Chris Wilson0088e522016-08-04 07:52:21 +01003233}
3234
3235/**
3236 * i915_ggtt_init_hw - Initialize GGTT hardware
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003237 * @dev_priv: i915 device
Chris Wilson0088e522016-08-04 07:52:21 +01003238 */
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003239int i915_ggtt_init_hw(struct drm_i915_private *dev_priv)
Chris Wilson0088e522016-08-04 07:52:21 +01003240{
Chris Wilson0088e522016-08-04 07:52:21 +01003241 struct i915_ggtt *ggtt = &dev_priv->ggtt;
3242 int ret;
3243
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01003244 INIT_LIST_HEAD(&dev_priv->vm_list);
3245
3246 /* Subtract the guard page before address space initialization to
3247 * shrink the range used by drm_mm.
3248 */
Chris Wilson80b204b2016-10-28 13:58:58 +01003249 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01003250 ggtt->base.total -= PAGE_SIZE;
Chris Wilson80b204b2016-10-28 13:58:58 +01003251 i915_address_space_init(&ggtt->base, dev_priv, "[global]");
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01003252 ggtt->base.total += PAGE_SIZE;
3253 if (!HAS_LLC(dev_priv))
3254 ggtt->base.mm.color_adjust = i915_gtt_color_adjust;
Chris Wilson80b204b2016-10-28 13:58:58 +01003255 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01003256
Chris Wilsonf7bbe782016-08-19 16:54:27 +01003257 if (!io_mapping_init_wc(&dev_priv->ggtt.mappable,
3258 dev_priv->ggtt.mappable_base,
3259 dev_priv->ggtt.mappable_end)) {
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01003260 ret = -EIO;
3261 goto out_gtt_cleanup;
3262 }
3263
3264 ggtt->mtrr = arch_phys_wc_add(ggtt->mappable_base, ggtt->mappable_end);
3265
Chris Wilson0088e522016-08-04 07:52:21 +01003266 /*
3267 * Initialise stolen early so that we may reserve preallocated
3268 * objects for the BIOS to KMS transition.
3269 */
Tvrtko Ursulin7ace3d32016-11-16 08:55:35 +00003270 ret = i915_gem_init_stolen(dev_priv);
Chris Wilson0088e522016-08-04 07:52:21 +01003271 if (ret)
3272 goto out_gtt_cleanup;
3273
3274 return 0;
Imre Deaka4eba472016-01-19 15:26:32 +02003275
3276out_gtt_cleanup:
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003277 ggtt->base.cleanup(&ggtt->base);
Imre Deaka4eba472016-01-19 15:26:32 +02003278 return ret;
Daniel Vetter644ec022012-03-26 09:45:40 +02003279}
Ben Widawsky6f65e292013-12-06 14:10:56 -08003280
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003281int i915_ggtt_enable_hw(struct drm_i915_private *dev_priv)
Ville Syrjäläac840ae2016-05-06 21:35:55 +03003282{
Chris Wilson97d6d7a2016-08-04 07:52:22 +01003283 if (INTEL_GEN(dev_priv) < 6 && !intel_enable_gtt())
Ville Syrjäläac840ae2016-05-06 21:35:55 +03003284 return -EIO;
3285
3286 return 0;
3287}
3288
Chris Wilson7c3f86b2017-01-12 11:00:49 +00003289void i915_ggtt_enable_guc(struct drm_i915_private *i915)
3290{
3291 i915->ggtt.invalidate = guc_ggtt_invalidate;
3292}
3293
3294void i915_ggtt_disable_guc(struct drm_i915_private *i915)
3295{
3296 i915->ggtt.invalidate = gen6_ggtt_invalidate;
3297}
3298
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00003299void i915_gem_restore_gtt_mappings(struct drm_i915_private *dev_priv)
Daniel Vetterfa423312015-04-14 17:35:23 +02003300{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003301 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilsonfbb30a5c2016-09-09 21:19:57 +01003302 struct drm_i915_gem_object *obj, *on;
Daniel Vetterfa423312015-04-14 17:35:23 +02003303
Chris Wilsondc979972016-05-10 14:10:04 +01003304 i915_check_and_clear_faults(dev_priv);
Daniel Vetterfa423312015-04-14 17:35:23 +02003305
3306 /* First fill our portion of the GTT with scratch pages */
Michał Winiarski4fb84d92016-10-13 14:02:40 +02003307 ggtt->base.clear_range(&ggtt->base, ggtt->base.start, ggtt->base.total);
Daniel Vetterfa423312015-04-14 17:35:23 +02003308
Chris Wilsonfbb30a5c2016-09-09 21:19:57 +01003309 ggtt->base.closed = true; /* skip rewriting PTE on VMA unbind */
3310
3311 /* clflush objects bound into the GGTT and rebind them. */
3312 list_for_each_entry_safe(obj, on,
Joonas Lahtinen56cea322016-11-02 12:16:04 +02003313 &dev_priv->mm.bound_list, global_link) {
Chris Wilsonfbb30a5c2016-09-09 21:19:57 +01003314 bool ggtt_bound = false;
3315 struct i915_vma *vma;
3316
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003317 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003318 if (vma->vm != &ggtt->base)
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003319 continue;
Daniel Vetterfa423312015-04-14 17:35:23 +02003320
Chris Wilsonfbb30a5c2016-09-09 21:19:57 +01003321 if (!i915_vma_unbind(vma))
3322 continue;
3323
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003324 WARN_ON(i915_vma_bind(vma, obj->cache_level,
3325 PIN_UPDATE));
Chris Wilsonfbb30a5c2016-09-09 21:19:57 +01003326 ggtt_bound = true;
Tvrtko Ursulin2c3d9982015-07-06 15:15:01 +01003327 }
3328
Chris Wilsonfbb30a5c2016-09-09 21:19:57 +01003329 if (ggtt_bound)
Chris Wilson975f7ff2016-05-14 07:26:34 +01003330 WARN_ON(i915_gem_object_set_to_gtt_domain(obj, false));
Daniel Vetterfa423312015-04-14 17:35:23 +02003331 }
3332
Chris Wilsonfbb30a5c2016-09-09 21:19:57 +01003333 ggtt->base.closed = false;
3334
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00003335 if (INTEL_GEN(dev_priv) >= 8) {
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02003336 if (IS_CHERRYVIEW(dev_priv) || IS_GEN9_LP(dev_priv))
Daniel Vetterfa423312015-04-14 17:35:23 +02003337 chv_setup_private_ppat(dev_priv);
3338 else
3339 bdw_setup_private_ppat(dev_priv);
3340
3341 return;
3342 }
3343
Tvrtko Ursulin275a9912016-11-16 08:55:34 +00003344 if (USES_PPGTT(dev_priv)) {
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003345 struct i915_address_space *vm;
3346
Daniel Vetterfa423312015-04-14 17:35:23 +02003347 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
3348 /* TODO: Perhaps it shouldn't be gen6 specific */
3349
Joonas Lahtinene5716f52016-04-07 11:08:03 +03003350 struct i915_hw_ppgtt *ppgtt;
Daniel Vetterfa423312015-04-14 17:35:23 +02003351
Chris Wilson2bfa9962016-08-04 07:52:25 +01003352 if (i915_is_ggtt(vm))
Daniel Vetterfa423312015-04-14 17:35:23 +02003353 ppgtt = dev_priv->mm.aliasing_ppgtt;
Joonas Lahtinene5716f52016-04-07 11:08:03 +03003354 else
3355 ppgtt = i915_vm_to_ppgtt(vm);
Daniel Vetterfa423312015-04-14 17:35:23 +02003356
3357 gen6_write_page_range(dev_priv, &ppgtt->pd,
3358 0, ppgtt->base.total);
3359 }
3360 }
3361
Chris Wilson7c3f86b2017-01-12 11:00:49 +00003362 i915_ggtt_invalidate(dev_priv);
Daniel Vetterfa423312015-04-14 17:35:23 +02003363}
3364
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003365static struct scatterlist *
Ville Syrjälä2d7f3bd2016-01-14 15:22:11 +02003366rotate_pages(const dma_addr_t *in, unsigned int offset,
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003367 unsigned int width, unsigned int height,
Ville Syrjälä87130252016-01-20 21:05:23 +02003368 unsigned int stride,
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003369 struct sg_table *st, struct scatterlist *sg)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003370{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003371 unsigned int column, row;
3372 unsigned int src_idx;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003373
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003374 for (column = 0; column < width; column++) {
Ville Syrjälä87130252016-01-20 21:05:23 +02003375 src_idx = stride * (height - 1) + column;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003376 for (row = 0; row < height; row++) {
3377 st->nents++;
3378 /* We don't need the pages, but need to initialize
3379 * the entries so the sg list can be happily traversed.
3380 * The only thing we need are DMA addresses.
3381 */
3382 sg_set_page(sg, NULL, PAGE_SIZE, 0);
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003383 sg_dma_address(sg) = in[offset + src_idx];
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003384 sg_dma_len(sg) = PAGE_SIZE;
3385 sg = sg_next(sg);
Ville Syrjälä87130252016-01-20 21:05:23 +02003386 src_idx -= stride;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003387 }
3388 }
Tvrtko Ursulin804beb42015-09-21 10:45:33 +01003389
3390 return sg;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003391}
3392
3393static struct sg_table *
Ville Syrjälä6687c902015-09-15 13:16:41 +03003394intel_rotate_fb_obj_pages(const struct intel_rotation_info *rot_info,
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003395 struct drm_i915_gem_object *obj)
3396{
Dave Gordon85d12252016-05-20 11:54:06 +01003397 const size_t n_pages = obj->base.size / PAGE_SIZE;
Ville Syrjälä6687c902015-09-15 13:16:41 +03003398 unsigned int size = intel_rotation_info_size(rot_info);
Dave Gordon85d12252016-05-20 11:54:06 +01003399 struct sgt_iter sgt_iter;
3400 dma_addr_t dma_addr;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003401 unsigned long i;
3402 dma_addr_t *page_addr_list;
3403 struct sg_table *st;
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003404 struct scatterlist *sg;
Tvrtko Ursulin1d00dad2015-03-25 10:15:26 +00003405 int ret = -ENOMEM;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003406
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003407 /* Allocate a temporary list of source pages for random access. */
Dave Gordon85d12252016-05-20 11:54:06 +01003408 page_addr_list = drm_malloc_gfp(n_pages,
Chris Wilsonf2a85e12016-04-08 12:11:13 +01003409 sizeof(dma_addr_t),
3410 GFP_TEMPORARY);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003411 if (!page_addr_list)
3412 return ERR_PTR(ret);
3413
3414 /* Allocate target SG list. */
3415 st = kmalloc(sizeof(*st), GFP_KERNEL);
3416 if (!st)
3417 goto err_st_alloc;
3418
Ville Syrjälä6687c902015-09-15 13:16:41 +03003419 ret = sg_alloc_table(st, size, GFP_KERNEL);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003420 if (ret)
3421 goto err_sg_alloc;
3422
3423 /* Populate source page list from the object. */
3424 i = 0;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003425 for_each_sgt_dma(dma_addr, sgt_iter, obj->mm.pages)
Dave Gordon85d12252016-05-20 11:54:06 +01003426 page_addr_list[i++] = dma_addr;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003427
Dave Gordon85d12252016-05-20 11:54:06 +01003428 GEM_BUG_ON(i != n_pages);
Ville Syrjälä11f20322016-02-15 22:54:46 +02003429 st->nents = 0;
3430 sg = st->sgl;
3431
Ville Syrjälä6687c902015-09-15 13:16:41 +03003432 for (i = 0 ; i < ARRAY_SIZE(rot_info->plane); i++) {
3433 sg = rotate_pages(page_addr_list, rot_info->plane[i].offset,
3434 rot_info->plane[i].width, rot_info->plane[i].height,
3435 rot_info->plane[i].stride, st, sg);
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01003436 }
3437
Ville Syrjälä6687c902015-09-15 13:16:41 +03003438 DRM_DEBUG_KMS("Created rotated page mapping for object size %zu (%ux%u tiles, %u pages)\n",
3439 obj->base.size, rot_info->plane[0].width, rot_info->plane[0].height, size);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003440
3441 drm_free_large(page_addr_list);
3442
3443 return st;
3444
3445err_sg_alloc:
3446 kfree(st);
3447err_st_alloc:
3448 drm_free_large(page_addr_list);
3449
Ville Syrjälä6687c902015-09-15 13:16:41 +03003450 DRM_DEBUG_KMS("Failed to create rotated mapping for object size %zu! (%ux%u tiles, %u pages)\n",
3451 obj->base.size, rot_info->plane[0].width, rot_info->plane[0].height, size);
3452
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003453 return ERR_PTR(ret);
3454}
3455
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003456static struct sg_table *
3457intel_partial_pages(const struct i915_ggtt_view *view,
3458 struct drm_i915_gem_object *obj)
3459{
3460 struct sg_table *st;
Chris Wilsond2a84a72016-10-28 13:58:34 +01003461 struct scatterlist *sg, *iter;
Chris Wilson8bab11932017-01-14 00:28:25 +00003462 unsigned int count = view->partial.size;
Chris Wilsond2a84a72016-10-28 13:58:34 +01003463 unsigned int offset;
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003464 int ret = -ENOMEM;
3465
3466 st = kmalloc(sizeof(*st), GFP_KERNEL);
3467 if (!st)
3468 goto err_st_alloc;
3469
Chris Wilsond2a84a72016-10-28 13:58:34 +01003470 ret = sg_alloc_table(st, count, GFP_KERNEL);
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003471 if (ret)
3472 goto err_sg_alloc;
3473
Chris Wilson8bab11932017-01-14 00:28:25 +00003474 iter = i915_gem_object_get_sg(obj, view->partial.offset, &offset);
Chris Wilsond2a84a72016-10-28 13:58:34 +01003475 GEM_BUG_ON(!iter);
3476
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003477 sg = st->sgl;
3478 st->nents = 0;
Chris Wilsond2a84a72016-10-28 13:58:34 +01003479 do {
3480 unsigned int len;
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003481
Chris Wilsond2a84a72016-10-28 13:58:34 +01003482 len = min(iter->length - (offset << PAGE_SHIFT),
3483 count << PAGE_SHIFT);
3484 sg_set_page(sg, NULL, len, 0);
3485 sg_dma_address(sg) =
3486 sg_dma_address(iter) + (offset << PAGE_SHIFT);
3487 sg_dma_len(sg) = len;
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003488
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003489 st->nents++;
Chris Wilsond2a84a72016-10-28 13:58:34 +01003490 count -= len >> PAGE_SHIFT;
3491 if (count == 0) {
3492 sg_mark_end(sg);
3493 return st;
3494 }
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003495
Chris Wilsond2a84a72016-10-28 13:58:34 +01003496 sg = __sg_next(sg);
3497 iter = __sg_next(iter);
3498 offset = 0;
3499 } while (1);
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003500
3501err_sg_alloc:
3502 kfree(st);
3503err_st_alloc:
3504 return ERR_PTR(ret);
3505}
3506
Daniel Vetter70b9f6f2015-04-14 17:35:27 +02003507static int
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003508i915_get_ggtt_vma_pages(struct i915_vma *vma)
3509{
3510 int ret = 0;
3511
Chris Wilson2c3a3f42016-11-04 10:30:01 +00003512 /* The vma->pages are only valid within the lifespan of the borrowed
3513 * obj->mm.pages. When the obj->mm.pages sg_table is regenerated, so
3514 * must be the vma->pages. A simple rule is that vma->pages must only
3515 * be accessed when the obj->mm.pages are pinned.
3516 */
3517 GEM_BUG_ON(!i915_gem_object_has_pinned_pages(vma->obj));
3518
Chris Wilson247177d2016-08-15 10:48:47 +01003519 if (vma->pages)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003520 return 0;
3521
3522 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003523 vma->pages = vma->obj->mm.pages;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003524 else if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED)
Chris Wilson247177d2016-08-15 10:48:47 +01003525 vma->pages =
Chris Wilson8bab11932017-01-14 00:28:25 +00003526 intel_rotate_fb_obj_pages(&vma->ggtt_view.rotated,
3527 vma->obj);
Joonas Lahtinen8bd7ef12015-05-06 14:35:38 +03003528 else if (vma->ggtt_view.type == I915_GGTT_VIEW_PARTIAL)
Chris Wilson247177d2016-08-15 10:48:47 +01003529 vma->pages = intel_partial_pages(&vma->ggtt_view, vma->obj);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003530 else
3531 WARN_ONCE(1, "GGTT view %u not implemented!\n",
3532 vma->ggtt_view.type);
3533
Chris Wilson247177d2016-08-15 10:48:47 +01003534 if (!vma->pages) {
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003535 DRM_ERROR("Failed to get pages for GGTT view type %u!\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003536 vma->ggtt_view.type);
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003537 ret = -EINVAL;
Chris Wilson247177d2016-08-15 10:48:47 +01003538 } else if (IS_ERR(vma->pages)) {
3539 ret = PTR_ERR(vma->pages);
3540 vma->pages = NULL;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003541 DRM_ERROR("Failed to get pages for VMA view type %u (%d)!\n",
3542 vma->ggtt_view.type, ret);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003543 }
3544
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00003545 return ret;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003546}
3547
Chris Wilsone007b192017-01-11 11:23:10 +00003548/**
Chris Wilson625d9882017-01-11 11:23:11 +00003549 * i915_gem_gtt_reserve - reserve a node in an address_space (GTT)
Chris Wilsona4dbf7c2017-01-12 16:45:59 +00003550 * @vm: the &struct i915_address_space
3551 * @node: the &struct drm_mm_node (typically i915_vma.mode)
3552 * @size: how much space to allocate inside the GTT,
3553 * must be #I915_GTT_PAGE_SIZE aligned
3554 * @offset: where to insert inside the GTT,
3555 * must be #I915_GTT_MIN_ALIGNMENT aligned, and the node
3556 * (@offset + @size) must fit within the address space
3557 * @color: color to apply to node, if this node is not from a VMA,
3558 * color must be #I915_COLOR_UNEVICTABLE
3559 * @flags: control search and eviction behaviour
Chris Wilson625d9882017-01-11 11:23:11 +00003560 *
3561 * i915_gem_gtt_reserve() tries to insert the @node at the exact @offset inside
3562 * the address space (using @size and @color). If the @node does not fit, it
3563 * tries to evict any overlapping nodes from the GTT, including any
3564 * neighbouring nodes if the colors do not match (to ensure guard pages between
3565 * differing domains). See i915_gem_evict_for_node() for the gory details
3566 * on the eviction algorithm. #PIN_NONBLOCK may used to prevent waiting on
3567 * evicting active overlapping objects, and any overlapping node that is pinned
3568 * or marked as unevictable will also result in failure.
3569 *
3570 * Returns: 0 on success, -ENOSPC if no suitable hole is found, -EINTR if
3571 * asked to wait for eviction and interrupted.
3572 */
3573int i915_gem_gtt_reserve(struct i915_address_space *vm,
3574 struct drm_mm_node *node,
3575 u64 size, u64 offset, unsigned long color,
3576 unsigned int flags)
3577{
3578 int err;
3579
3580 GEM_BUG_ON(!size);
3581 GEM_BUG_ON(!IS_ALIGNED(size, I915_GTT_PAGE_SIZE));
3582 GEM_BUG_ON(!IS_ALIGNED(offset, I915_GTT_MIN_ALIGNMENT));
3583 GEM_BUG_ON(range_overflows(offset, size, vm->total));
Chris Wilson3fec7ec2017-01-15 13:47:46 +00003584 GEM_BUG_ON(vm == &vm->i915->mm.aliasing_ppgtt->base);
Chris Wilson9734ad12017-01-15 17:27:40 +00003585 GEM_BUG_ON(drm_mm_node_allocated(node));
Chris Wilson625d9882017-01-11 11:23:11 +00003586
3587 node->size = size;
3588 node->start = offset;
3589 node->color = color;
3590
3591 err = drm_mm_reserve_node(&vm->mm, node);
3592 if (err != -ENOSPC)
3593 return err;
3594
3595 err = i915_gem_evict_for_node(vm, node, flags);
3596 if (err == 0)
3597 err = drm_mm_reserve_node(&vm->mm, node);
3598
3599 return err;
3600}
3601
Chris Wilson606fec92017-01-11 11:23:12 +00003602static u64 random_offset(u64 start, u64 end, u64 len, u64 align)
3603{
3604 u64 range, addr;
3605
3606 GEM_BUG_ON(range_overflows(start, len, end));
3607 GEM_BUG_ON(round_up(start, align) > round_down(end - len, align));
3608
3609 range = round_down(end - len, align) - round_up(start, align);
3610 if (range) {
3611 if (sizeof(unsigned long) == sizeof(u64)) {
3612 addr = get_random_long();
3613 } else {
3614 addr = get_random_int();
3615 if (range > U32_MAX) {
3616 addr <<= 32;
3617 addr |= get_random_int();
3618 }
3619 }
3620 div64_u64_rem(addr, range, &addr);
3621 start += addr;
3622 }
3623
3624 return round_up(start, align);
3625}
3626
Chris Wilson625d9882017-01-11 11:23:11 +00003627/**
Chris Wilsone007b192017-01-11 11:23:10 +00003628 * i915_gem_gtt_insert - insert a node into an address_space (GTT)
Chris Wilsona4dbf7c2017-01-12 16:45:59 +00003629 * @vm: the &struct i915_address_space
3630 * @node: the &struct drm_mm_node (typically i915_vma.node)
3631 * @size: how much space to allocate inside the GTT,
3632 * must be #I915_GTT_PAGE_SIZE aligned
3633 * @alignment: required alignment of starting offset, may be 0 but
3634 * if specified, this must be a power-of-two and at least
3635 * #I915_GTT_MIN_ALIGNMENT
3636 * @color: color to apply to node
3637 * @start: start of any range restriction inside GTT (0 for all),
Chris Wilsone007b192017-01-11 11:23:10 +00003638 * must be #I915_GTT_PAGE_SIZE aligned
Chris Wilsona4dbf7c2017-01-12 16:45:59 +00003639 * @end: end of any range restriction inside GTT (U64_MAX for all),
3640 * must be #I915_GTT_PAGE_SIZE aligned if not U64_MAX
3641 * @flags: control search and eviction behaviour
Chris Wilsone007b192017-01-11 11:23:10 +00003642 *
3643 * i915_gem_gtt_insert() first searches for an available hole into which
3644 * is can insert the node. The hole address is aligned to @alignment and
3645 * its @size must then fit entirely within the [@start, @end] bounds. The
3646 * nodes on either side of the hole must match @color, or else a guard page
3647 * will be inserted between the two nodes (or the node evicted). If no
Chris Wilson606fec92017-01-11 11:23:12 +00003648 * suitable hole is found, first a victim is randomly selected and tested
3649 * for eviction, otherwise then the LRU list of objects within the GTT
Chris Wilsone007b192017-01-11 11:23:10 +00003650 * is scanned to find the first set of replacement nodes to create the hole.
3651 * Those old overlapping nodes are evicted from the GTT (and so must be
3652 * rebound before any future use). Any node that is currently pinned cannot
3653 * be evicted (see i915_vma_pin()). Similar if the node's VMA is currently
3654 * active and #PIN_NONBLOCK is specified, that node is also skipped when
3655 * searching for an eviction candidate. See i915_gem_evict_something() for
3656 * the gory details on the eviction algorithm.
3657 *
3658 * Returns: 0 on success, -ENOSPC if no suitable hole is found, -EINTR if
3659 * asked to wait for eviction and interrupted.
3660 */
3661int i915_gem_gtt_insert(struct i915_address_space *vm,
3662 struct drm_mm_node *node,
3663 u64 size, u64 alignment, unsigned long color,
3664 u64 start, u64 end, unsigned int flags)
3665{
3666 u32 search_flag, alloc_flag;
Chris Wilson606fec92017-01-11 11:23:12 +00003667 u64 offset;
Chris Wilsone007b192017-01-11 11:23:10 +00003668 int err;
3669
3670 lockdep_assert_held(&vm->i915->drm.struct_mutex);
3671 GEM_BUG_ON(!size);
3672 GEM_BUG_ON(!IS_ALIGNED(size, I915_GTT_PAGE_SIZE));
3673 GEM_BUG_ON(alignment && !is_power_of_2(alignment));
3674 GEM_BUG_ON(alignment && !IS_ALIGNED(alignment, I915_GTT_MIN_ALIGNMENT));
3675 GEM_BUG_ON(start >= end);
3676 GEM_BUG_ON(start > 0 && !IS_ALIGNED(start, I915_GTT_PAGE_SIZE));
3677 GEM_BUG_ON(end < U64_MAX && !IS_ALIGNED(end, I915_GTT_PAGE_SIZE));
Chris Wilson3fec7ec2017-01-15 13:47:46 +00003678 GEM_BUG_ON(vm == &vm->i915->mm.aliasing_ppgtt->base);
Chris Wilson9734ad12017-01-15 17:27:40 +00003679 GEM_BUG_ON(drm_mm_node_allocated(node));
Chris Wilsone007b192017-01-11 11:23:10 +00003680
3681 if (unlikely(range_overflows(start, size, end)))
3682 return -ENOSPC;
3683
3684 if (unlikely(round_up(start, alignment) > round_down(end - size, alignment)))
3685 return -ENOSPC;
3686
3687 if (flags & PIN_HIGH) {
3688 search_flag = DRM_MM_SEARCH_BELOW;
3689 alloc_flag = DRM_MM_CREATE_TOP;
3690 } else {
3691 search_flag = DRM_MM_SEARCH_DEFAULT;
3692 alloc_flag = DRM_MM_CREATE_DEFAULT;
3693 }
3694
3695 /* We only allocate in PAGE_SIZE/GTT_PAGE_SIZE (4096) chunks,
3696 * so we know that we always have a minimum alignment of 4096.
3697 * The drm_mm range manager is optimised to return results
3698 * with zero alignment, so where possible use the optimal
3699 * path.
3700 */
3701 BUILD_BUG_ON(I915_GTT_MIN_ALIGNMENT > I915_GTT_PAGE_SIZE);
3702 if (alignment <= I915_GTT_MIN_ALIGNMENT)
3703 alignment = 0;
3704
3705 err = drm_mm_insert_node_in_range_generic(&vm->mm, node,
3706 size, alignment, color,
3707 start, end,
3708 search_flag, alloc_flag);
3709 if (err != -ENOSPC)
3710 return err;
3711
Chris Wilson606fec92017-01-11 11:23:12 +00003712 /* No free space, pick a slot at random.
3713 *
3714 * There is a pathological case here using a GTT shared between
3715 * mmap and GPU (i.e. ggtt/aliasing_ppgtt but not full-ppgtt):
3716 *
3717 * |<-- 256 MiB aperture -->||<-- 1792 MiB unmappable -->|
3718 * (64k objects) (448k objects)
3719 *
3720 * Now imagine that the eviction LRU is ordered top-down (just because
3721 * pathology meets real life), and that we need to evict an object to
3722 * make room inside the aperture. The eviction scan then has to walk
3723 * the 448k list before it finds one within range. And now imagine that
3724 * it has to search for a new hole between every byte inside the memcpy,
3725 * for several simultaneous clients.
3726 *
3727 * On a full-ppgtt system, if we have run out of available space, there
3728 * will be lots and lots of objects in the eviction list! Again,
3729 * searching that LRU list may be slow if we are also applying any
3730 * range restrictions (e.g. restriction to low 4GiB) and so, for
3731 * simplicity and similarilty between different GTT, try the single
3732 * random replacement first.
3733 */
3734 offset = random_offset(start, end,
3735 size, alignment ?: I915_GTT_MIN_ALIGNMENT);
3736 err = i915_gem_gtt_reserve(vm, node, size, offset, color, flags);
3737 if (err != -ENOSPC)
3738 return err;
3739
3740 /* Randomly selected placement is pinned, do a search */
Chris Wilsone007b192017-01-11 11:23:10 +00003741 err = i915_gem_evict_something(vm, size, alignment, color,
3742 start, end, flags);
3743 if (err)
3744 return err;
3745
3746 search_flag = DRM_MM_SEARCH_DEFAULT;
3747 return drm_mm_insert_node_in_range_generic(&vm->mm, node,
3748 size, alignment, color,
3749 start, end,
3750 search_flag, alloc_flag);
3751}