blob: e2f2c4c52009545f92a6cc64d92563c285d5dbed [file] [log] [blame]
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001/*
2 * Copyright © 2016 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
Chris Wilson10195b12018-06-28 14:22:06 +010024
Chris Wilson09480072019-07-03 10:17:19 +010025#include <linux/sched/mm.h>
Jani Nikuladf0566a2019-06-13 11:44:16 +030026#include <drm/drm_gem.h>
Chris Wilson112ed2d2019-04-24 18:48:39 +010027
Jani Nikuladf0566a2019-06-13 11:44:16 +030028#include "display/intel_frontbuffer.h"
29
Anusha Srivatsa4bc91db2021-04-27 09:54:16 +010030#include "gem/i915_gem_lmem.h"
Jani Nikuladf0566a2019-06-13 11:44:16 +030031#include "gt/intel_engine.h"
Chris Wilsonccd20942019-12-05 11:37:25 +000032#include "gt/intel_engine_heartbeat.h"
Tvrtko Ursulina1c8a092019-06-21 08:08:01 +010033#include "gt/intel_gt.h"
Chris Wilsonccd20942019-12-05 11:37:25 +000034#include "gt/intel_gt_requests.h"
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020035
36#include "i915_drv.h"
Chris Wilson28507482019-10-04 14:39:58 +010037#include "i915_sw_fence_work.h"
Jani Nikulaa09d9a82019-08-06 13:07:28 +030038#include "i915_trace.h"
Jani Nikuladf0566a2019-06-13 11:44:16 +030039#include "i915_vma.h"
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020040
Daniel Vetter64fc7cc2021-07-27 14:10:35 +020041static struct kmem_cache *slab_vmas;
Chris Wilson13f1bfd2019-02-28 10:20:34 +000042
Maarten Lankhorste6e1a302021-11-17 14:20:22 +000043static struct i915_vma *i915_vma_alloc(void)
Chris Wilson13f1bfd2019-02-28 10:20:34 +000044{
Daniel Vetter64fc7cc2021-07-27 14:10:35 +020045 return kmem_cache_zalloc(slab_vmas, GFP_KERNEL);
Chris Wilson13f1bfd2019-02-28 10:20:34 +000046}
47
Maarten Lankhorste6e1a302021-11-17 14:20:22 +000048static void i915_vma_free(struct i915_vma *vma)
Chris Wilson13f1bfd2019-02-28 10:20:34 +000049{
Daniel Vetter64fc7cc2021-07-27 14:10:35 +020050 return kmem_cache_free(slab_vmas, vma);
Chris Wilson13f1bfd2019-02-28 10:20:34 +000051}
52
Chris Wilson1eca65d2018-07-06 07:53:06 +010053#if IS_ENABLED(CONFIG_DRM_I915_ERRLOG_GEM) && IS_ENABLED(CONFIG_DRM_DEBUG_MM)
Chris Wilson10195b12018-06-28 14:22:06 +010054
55#include <linux/stackdepot.h>
56
57static void vma_print_allocator(struct i915_vma *vma, const char *reason)
58{
Chris Wilson10195b12018-06-28 14:22:06 +010059 char buf[512];
60
61 if (!vma->node.stack) {
62 DRM_DEBUG_DRIVER("vma.node [%08llx + %08llx] %s: unknown owner\n",
63 vma->node.start, vma->node.size, reason);
64 return;
65 }
66
Imran Khan0f68d452021-11-08 18:33:16 -080067 stack_depot_snprint(vma->node.stack, buf, sizeof(buf), 0);
Chris Wilson10195b12018-06-28 14:22:06 +010068 DRM_DEBUG_DRIVER("vma.node [%08llx + %08llx] %s: inserted at %s\n",
69 vma->node.start, vma->node.size, reason, buf);
70}
71
72#else
73
74static void vma_print_allocator(struct i915_vma *vma, const char *reason)
75{
76}
77
78#endif
79
Chris Wilson12c255b2019-06-21 19:38:00 +010080static inline struct i915_vma *active_to_vma(struct i915_active *ref)
81{
82 return container_of(ref, typeof(struct i915_vma), active);
83}
84
85static int __i915_vma_active(struct i915_active *ref)
86{
Chris Wilson2833ddc2019-08-20 11:05:31 +010087 return i915_vma_tryget(active_to_vma(ref)) ? 0 : -ENOENT;
Chris Wilson12c255b2019-06-21 19:38:00 +010088}
89
Chris Wilson64d6c502019-02-05 13:00:02 +000090static void __i915_vma_retire(struct i915_active *ref)
91{
Chris Wilson12c255b2019-06-21 19:38:00 +010092 i915_vma_put(active_to_vma(ref));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020093}
94
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020095static struct i915_vma *
Chris Wilsona01cb37a2017-01-16 15:21:30 +000096vma_create(struct drm_i915_gem_object *obj,
97 struct i915_address_space *vm,
98 const struct i915_ggtt_view *view)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020099{
Chris Wilson03fca662020-07-02 22:10:15 +0100100 struct i915_vma *pos = ERR_PTR(-E2BIG);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200101 struct i915_vma *vma;
102 struct rb_node *rb, **p;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200103
Chris Wilsone1cc3db2017-02-09 11:19:33 +0000104 /* The aliasing_ppgtt should never be used directly! */
Chris Wilson71e51ca2019-10-21 19:32:35 +0100105 GEM_BUG_ON(vm == &vm->gt->ggtt->alias->vm);
Chris Wilsone1cc3db2017-02-09 11:19:33 +0000106
Chris Wilson13f1bfd2019-02-28 10:20:34 +0000107 vma = i915_vma_alloc();
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200108 if (vma == NULL)
109 return ERR_PTR(-ENOMEM);
110
Chris Wilson76f97642019-12-22 21:02:55 +0000111 kref_init(&vma->ref);
Chris Wilson28507482019-10-04 14:39:58 +0100112 mutex_init(&vma->pages_mutex);
113 vma->vm = i915_vm_get(vm);
Chris Wilson93f2cde2018-06-07 16:40:46 +0100114 vma->ops = &vm->vma_ops;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200115 vma->obj = obj;
116 vma->size = obj->base.size;
Chris Wilsonf51455d2017-01-10 14:47:34 +0000117 vma->display_alignment = I915_GTT_MIN_ALIGNMENT;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200118
Matthew Auldc3b14762021-05-04 17:41:36 +0100119 i915_active_init(&vma->active, __i915_vma_active, __i915_vma_retire, 0);
Chris Wilson155ab882019-06-06 12:23:20 +0100120
Chris Wilson09480072019-07-03 10:17:19 +0100121 /* Declare ourselves safe for use inside shrinkers */
122 if (IS_ENABLED(CONFIG_LOCKDEP)) {
123 fs_reclaim_acquire(GFP_KERNEL);
124 might_lock(&vma->active.mutex);
125 fs_reclaim_release(GFP_KERNEL);
126 }
127
Chris Wilson155ab882019-06-06 12:23:20 +0100128 INIT_LIST_HEAD(&vma->closed_link);
129
Chris Wilson7c518462017-01-23 14:52:45 +0000130 if (view && view->type != I915_GGTT_VIEW_NORMAL) {
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200131 vma->ggtt_view = *view;
132 if (view->type == I915_GGTT_VIEW_PARTIAL) {
Chris Wilson07e19ea2016-12-23 14:57:59 +0000133 GEM_BUG_ON(range_overflows_t(u64,
Chris Wilson8bab11932017-01-14 00:28:25 +0000134 view->partial.offset,
135 view->partial.size,
Chris Wilson07e19ea2016-12-23 14:57:59 +0000136 obj->base.size >> PAGE_SHIFT));
Chris Wilson8bab11932017-01-14 00:28:25 +0000137 vma->size = view->partial.size;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200138 vma->size <<= PAGE_SHIFT;
Chris Wilson7e7367d2018-06-30 10:05:09 +0100139 GEM_BUG_ON(vma->size > obj->base.size);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200140 } else if (view->type == I915_GGTT_VIEW_ROTATED) {
Chris Wilson8bab11932017-01-14 00:28:25 +0000141 vma->size = intel_rotation_info_size(&view->rotated);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200142 vma->size <<= PAGE_SHIFT;
Ville Syrjälä1a74fc02019-05-09 15:21:52 +0300143 } else if (view->type == I915_GGTT_VIEW_REMAPPED) {
144 vma->size = intel_remapped_info_size(&view->remapped);
145 vma->size <<= PAGE_SHIFT;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200146 }
147 }
148
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000149 if (unlikely(vma->size > vm->total))
150 goto err_vma;
151
Chris Wilsonb00ddb22017-01-19 19:26:59 +0000152 GEM_BUG_ON(!IS_ALIGNED(vma->size, I915_GTT_PAGE_SIZE));
153
Chris Wilsoncb593e52020-04-22 08:28:05 +0100154 spin_lock(&obj->vma.lock);
155
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200156 if (i915_is_ggtt(vm)) {
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000157 if (unlikely(overflows_type(vma->size, u32)))
Chris Wilsoncb593e52020-04-22 08:28:05 +0100158 goto err_unlock;
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000159
Chris Wilson91d4e0aa2017-01-09 16:16:13 +0000160 vma->fence_size = i915_gem_fence_size(vm->i915, vma->size,
161 i915_gem_object_get_tiling(obj),
162 i915_gem_object_get_stride(obj));
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000163 if (unlikely(vma->fence_size < vma->size || /* overflow */
164 vma->fence_size > vm->total))
Chris Wilsoncb593e52020-04-22 08:28:05 +0100165 goto err_unlock;
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000166
Chris Wilsonf51455d2017-01-10 14:47:34 +0000167 GEM_BUG_ON(!IS_ALIGNED(vma->fence_size, I915_GTT_MIN_ALIGNMENT));
Chris Wilson944397f2017-01-09 16:16:11 +0000168
Chris Wilson91d4e0aa2017-01-09 16:16:13 +0000169 vma->fence_alignment = i915_gem_fence_alignment(vm->i915, vma->size,
170 i915_gem_object_get_tiling(obj),
171 i915_gem_object_get_stride(obj));
Chris Wilson944397f2017-01-09 16:16:11 +0000172 GEM_BUG_ON(!is_power_of_2(vma->fence_alignment));
173
Chris Wilson4dd2fbb2019-09-11 10:02:43 +0100174 __set_bit(I915_VMA_GGTT_BIT, __i915_vma_flags(vma));
Chris Wilson528cbd12019-01-28 10:23:54 +0000175 }
176
Chris Wilson528cbd12019-01-28 10:23:54 +0000177 rb = NULL;
178 p = &obj->vma.tree.rb_node;
179 while (*p) {
Chris Wilson528cbd12019-01-28 10:23:54 +0000180 long cmp;
181
182 rb = *p;
183 pos = rb_entry(rb, struct i915_vma, obj_node);
184
185 /*
186 * If the view already exists in the tree, another thread
187 * already created a matching vma, so return the older instance
188 * and dispose of ours.
189 */
190 cmp = i915_vma_compare(pos, vm, view);
Chris Wilson528cbd12019-01-28 10:23:54 +0000191 if (cmp < 0)
192 p = &rb->rb_right;
Chris Wilson03fca662020-07-02 22:10:15 +0100193 else if (cmp > 0)
Chris Wilson528cbd12019-01-28 10:23:54 +0000194 p = &rb->rb_left;
Chris Wilson03fca662020-07-02 22:10:15 +0100195 else
196 goto err_unlock;
Chris Wilson528cbd12019-01-28 10:23:54 +0000197 }
198 rb_link_node(&vma->obj_node, rb, p);
199 rb_insert_color(&vma->obj_node, &obj->vma.tree);
200
201 if (i915_vma_is_ggtt(vma))
Chris Wilsone2189dd2017-12-07 21:14:07 +0000202 /*
203 * We put the GGTT vma at the start of the vma-list, followed
204 * by the ppGGTT vma. This allows us to break early when
205 * iterating over only the GGTT vma for an object, see
206 * for_each_ggtt_vma()
207 */
Chris Wilson528cbd12019-01-28 10:23:54 +0000208 list_add(&vma->obj_link, &obj->vma.list);
209 else
210 list_add_tail(&vma->obj_link, &obj->vma.list);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200211
Chris Wilson528cbd12019-01-28 10:23:54 +0000212 spin_unlock(&obj->vma.lock);
Chris Wilson09d7e462019-01-28 10:23:53 +0000213
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200214 return vma;
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000215
Chris Wilsoncb593e52020-04-22 08:28:05 +0100216err_unlock:
217 spin_unlock(&obj->vma.lock);
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000218err_vma:
Chris Wilson03fca662020-07-02 22:10:15 +0100219 i915_vm_put(vm);
Chris Wilson13f1bfd2019-02-28 10:20:34 +0000220 i915_vma_free(vma);
Chris Wilson03fca662020-07-02 22:10:15 +0100221 return pos;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200222}
223
Chris Wilson481a6f72017-01-16 15:21:31 +0000224static struct i915_vma *
Liam Howlett547be6a2021-03-23 13:42:21 +0000225i915_vma_lookup(struct drm_i915_gem_object *obj,
Chris Wilson481a6f72017-01-16 15:21:31 +0000226 struct i915_address_space *vm,
227 const struct i915_ggtt_view *view)
Chris Wilson718659a2017-01-16 15:21:28 +0000228{
229 struct rb_node *rb;
230
Chris Wilson528cbd12019-01-28 10:23:54 +0000231 rb = obj->vma.tree.rb_node;
Chris Wilson718659a2017-01-16 15:21:28 +0000232 while (rb) {
233 struct i915_vma *vma = rb_entry(rb, struct i915_vma, obj_node);
234 long cmp;
235
236 cmp = i915_vma_compare(vma, vm, view);
237 if (cmp == 0)
238 return vma;
239
240 if (cmp < 0)
241 rb = rb->rb_right;
242 else
243 rb = rb->rb_left;
244 }
245
246 return NULL;
247}
248
249/**
Chris Wilson718659a2017-01-16 15:21:28 +0000250 * i915_vma_instance - return the singleton instance of the VMA
251 * @obj: parent &struct drm_i915_gem_object to be mapped
252 * @vm: address space in which the mapping is located
253 * @view: additional mapping requirements
254 *
255 * i915_vma_instance() looks up an existing VMA of the @obj in the @vm with
256 * the same @view characteristics. If a match is not found, one is created.
257 * Once created, the VMA is kept until either the object is freed, or the
258 * address space is closed.
259 *
Chris Wilson718659a2017-01-16 15:21:28 +0000260 * Returns the vma, or an error pointer.
261 */
262struct i915_vma *
263i915_vma_instance(struct drm_i915_gem_object *obj,
264 struct i915_address_space *vm,
265 const struct i915_ggtt_view *view)
266{
267 struct i915_vma *vma;
268
Imre Deak74862d42021-05-24 20:27:02 +0300269 GEM_BUG_ON(view && !i915_is_ggtt_or_dpt(vm));
Chris Wilson28507482019-10-04 14:39:58 +0100270 GEM_BUG_ON(!atomic_read(&vm->open));
Chris Wilson718659a2017-01-16 15:21:28 +0000271
Chris Wilson528cbd12019-01-28 10:23:54 +0000272 spin_lock(&obj->vma.lock);
Liam Howlett547be6a2021-03-23 13:42:21 +0000273 vma = i915_vma_lookup(obj, vm, view);
Chris Wilson528cbd12019-01-28 10:23:54 +0000274 spin_unlock(&obj->vma.lock);
275
276 /* vma_create() will resolve the race if another creates the vma */
277 if (unlikely(!vma))
Chris Wilsona01cb37a2017-01-16 15:21:30 +0000278 vma = vma_create(obj, vm, view);
Chris Wilson718659a2017-01-16 15:21:28 +0000279
Chris Wilson4ea95272017-01-16 15:21:29 +0000280 GEM_BUG_ON(!IS_ERR(vma) && i915_vma_compare(vma, vm, view));
Chris Wilson718659a2017-01-16 15:21:28 +0000281 return vma;
282}
283
Chris Wilson28507482019-10-04 14:39:58 +0100284struct i915_vma_work {
285 struct dma_fence_work base;
Chris Wilsoncd0452a2020-07-29 17:42:17 +0100286 struct i915_address_space *vm;
287 struct i915_vm_pt_stash stash;
Chris Wilson28507482019-10-04 14:39:58 +0100288 struct i915_vma *vma;
Chris Wilson54d71952019-12-16 16:17:16 +0000289 struct drm_i915_gem_object *pinned;
Chris Wilsone3793462020-01-30 18:17:10 +0000290 struct i915_sw_dma_fence_cb cb;
Chris Wilson28507482019-10-04 14:39:58 +0100291 enum i915_cache_level cache_level;
292 unsigned int flags;
293};
294
Jason Ekstranddc194182021-07-14 14:34:18 -0500295static void __vma_bind(struct dma_fence_work *work)
Chris Wilson28507482019-10-04 14:39:58 +0100296{
297 struct i915_vma_work *vw = container_of(work, typeof(*vw), base);
298 struct i915_vma *vma = vw->vma;
Chris Wilson28507482019-10-04 14:39:58 +0100299
Chris Wilsoncd0452a2020-07-29 17:42:17 +0100300 vma->ops->bind_vma(vw->vm, &vw->stash,
301 vma, vw->cache_level, vw->flags);
Chris Wilson28507482019-10-04 14:39:58 +0100302}
303
Chris Wilson54d71952019-12-16 16:17:16 +0000304static void __vma_release(struct dma_fence_work *work)
305{
306 struct i915_vma_work *vw = container_of(work, typeof(*vw), base);
307
Chris Wilson537457a2020-11-02 16:19:31 +0000308 if (vw->pinned) {
Chris Wilson54d71952019-12-16 16:17:16 +0000309 __i915_gem_object_unpin_pages(vw->pinned);
Chris Wilson537457a2020-11-02 16:19:31 +0000310 i915_gem_object_put(vw->pinned);
311 }
Chris Wilsoncd0452a2020-07-29 17:42:17 +0100312
313 i915_vm_free_pt_stash(vw->vm, &vw->stash);
314 i915_vm_put(vw->vm);
Chris Wilson54d71952019-12-16 16:17:16 +0000315}
316
Chris Wilson28507482019-10-04 14:39:58 +0100317static const struct dma_fence_work_ops bind_ops = {
318 .name = "bind",
319 .work = __vma_bind,
Chris Wilson54d71952019-12-16 16:17:16 +0000320 .release = __vma_release,
Chris Wilson28507482019-10-04 14:39:58 +0100321};
322
323struct i915_vma_work *i915_vma_work(void)
324{
325 struct i915_vma_work *vw;
326
327 vw = kzalloc(sizeof(*vw), GFP_KERNEL);
328 if (!vw)
329 return NULL;
330
331 dma_fence_work_init(&vw->base, &bind_ops);
332 vw->base.dma.error = -EAGAIN; /* disable the worker by default */
333
334 return vw;
335}
336
Chris Wilsone3793462020-01-30 18:17:10 +0000337int i915_vma_wait_for_bind(struct i915_vma *vma)
338{
339 int err = 0;
340
341 if (rcu_access_pointer(vma->active.excl.fence)) {
342 struct dma_fence *fence;
343
344 rcu_read_lock();
345 fence = dma_fence_get_rcu_safe(&vma->active.excl.fence);
346 rcu_read_unlock();
347 if (fence) {
Matthew Auldfbd4cf32021-11-02 15:50:55 +0000348 err = dma_fence_wait(fence, true);
Chris Wilsone3793462020-01-30 18:17:10 +0000349 dma_fence_put(fence);
350 }
351 }
352
353 return err;
354}
355
Chris Wilson718659a2017-01-16 15:21:28 +0000356/**
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200357 * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
358 * @vma: VMA to map
359 * @cache_level: mapping cache level
360 * @flags: flags like global or local mapping
Chris Wilson28507482019-10-04 14:39:58 +0100361 * @work: preallocated worker for allocating and binding the PTE
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200362 *
363 * DMA addresses are taken from the scatter-gather table of this object (or of
364 * this VMA in case of non-default GGTT views) and PTE entries set up.
365 * Note that DMA addresses are also the only part of the SG table we care about.
366 */
Chris Wilson28507482019-10-04 14:39:58 +0100367int i915_vma_bind(struct i915_vma *vma,
368 enum i915_cache_level cache_level,
369 u32 flags,
370 struct i915_vma_work *work)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200371{
372 u32 bind_flags;
373 u32 vma_flags;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200374
Chris Wilsonaa149432017-02-25 18:11:21 +0000375 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
376 GEM_BUG_ON(vma->size > vma->node.size);
377
Tvrtko Ursulinbbb8a9d2018-10-12 07:31:42 +0100378 if (GEM_DEBUG_WARN_ON(range_overflows(vma->node.start,
379 vma->node.size,
380 vma->vm->total)))
Chris Wilsonaa149432017-02-25 18:11:21 +0000381 return -ENODEV;
382
Tvrtko Ursulinbbb8a9d2018-10-12 07:31:42 +0100383 if (GEM_DEBUG_WARN_ON(!flags))
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200384 return -EINVAL;
385
Chris Wilson28507482019-10-04 14:39:58 +0100386 bind_flags = flags;
387 bind_flags &= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200388
Chris Wilson4dd2fbb2019-09-11 10:02:43 +0100389 vma_flags = atomic_read(&vma->flags);
390 vma_flags &= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND;
Chris Wilsonaedbe0a2020-05-21 15:49:49 +0100391
392 bind_flags &= ~vma_flags;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200393 if (bind_flags == 0)
394 return 0;
395
Matthew Auldfa3f46a2017-10-06 23:18:19 +0100396 GEM_BUG_ON(!vma->pages);
397
Daniele Ceraolo Spurio6146e6d2017-01-20 13:51:23 -0800398 trace_i915_vma_bind(vma, bind_flags);
Chris Wilsonaedbe0a2020-05-21 15:49:49 +0100399 if (work && bind_flags & vma->vm->bind_async_flags) {
Chris Wilsone3793462020-01-30 18:17:10 +0000400 struct dma_fence *prev;
401
Chris Wilson28507482019-10-04 14:39:58 +0100402 work->vma = vma;
403 work->cache_level = cache_level;
Chris Wilson12b07252020-07-03 11:25:19 +0100404 work->flags = bind_flags;
Chris Wilson28507482019-10-04 14:39:58 +0100405
406 /*
407 * Note we only want to chain up to the migration fence on
408 * the pages (not the object itself). As we don't track that,
409 * yet, we have to use the exclusive fence instead.
410 *
411 * Also note that we do not want to track the async vma as
412 * part of the obj->resv->excl_fence as it only affects
413 * execution and not content or object's backing store lifetime.
414 */
Chris Wilsone3793462020-01-30 18:17:10 +0000415 prev = i915_active_set_exclusive(&vma->active, &work->base.dma);
Chris Wilson30ca04e2020-02-03 09:41:47 +0000416 if (prev) {
Chris Wilsone3793462020-01-30 18:17:10 +0000417 __i915_sw_fence_await_dma_fence(&work->base.chain,
418 prev,
419 &work->cb);
Chris Wilson30ca04e2020-02-03 09:41:47 +0000420 dma_fence_put(prev);
421 }
Chris Wilsone3793462020-01-30 18:17:10 +0000422
Chris Wilson28507482019-10-04 14:39:58 +0100423 work->base.dma.error = 0; /* enable the queue_work() */
424
Maarten Lankhorste6e1a302021-11-17 14:20:22 +0000425 __i915_gem_object_pin_pages(vma->obj);
426 work->pinned = i915_gem_object_get(vma->obj);
Chris Wilson28507482019-10-04 14:39:58 +0100427 } else {
Chris Wilsoncd0452a2020-07-29 17:42:17 +0100428 vma->ops->bind_vma(vma->vm, NULL, vma, cache_level, bind_flags);
Chris Wilson28507482019-10-04 14:39:58 +0100429 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200430
Chris Wilson4dd2fbb2019-09-11 10:02:43 +0100431 atomic_or(bind_flags, &vma->flags);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200432 return 0;
433}
434
435void __iomem *i915_vma_pin_iomap(struct i915_vma *vma)
436{
437 void __iomem *ptr;
Chris Wilsonb4563f52017-10-09 09:43:55 +0100438 int err;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200439
Anusha Srivatsa4bc91db2021-04-27 09:54:16 +0100440 if (!i915_gem_object_is_lmem(vma->obj)) {
441 if (GEM_WARN_ON(!i915_vma_is_map_and_fenceable(vma))) {
442 err = -ENODEV;
443 goto err;
444 }
Chris Wilsonb4563f52017-10-09 09:43:55 +0100445 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200446
447 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
Chris Wilson4dd2fbb2019-09-11 10:02:43 +0100448 GEM_BUG_ON(!i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200449
Chris Wilson28507482019-10-04 14:39:58 +0100450 ptr = READ_ONCE(vma->iomap);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200451 if (ptr == NULL) {
Anusha Srivatsa4bc91db2021-04-27 09:54:16 +0100452 /*
453 * TODO: consider just using i915_gem_object_pin_map() for lmem
454 * instead, which already supports mapping non-contiguous chunks
455 * of pages, that way we can also drop the
456 * I915_BO_ALLOC_CONTIGUOUS when allocating the object.
457 */
458 if (i915_gem_object_is_lmem(vma->obj))
459 ptr = i915_gem_object_lmem_io_map(vma->obj, 0,
460 vma->obj->base.size);
461 else
462 ptr = io_mapping_map_wc(&i915_vm_to_ggtt(vma->vm)->iomap,
463 vma->node.start,
464 vma->node.size);
Chris Wilsonb4563f52017-10-09 09:43:55 +0100465 if (ptr == NULL) {
466 err = -ENOMEM;
467 goto err;
468 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200469
Chris Wilson28507482019-10-04 14:39:58 +0100470 if (unlikely(cmpxchg(&vma->iomap, NULL, ptr))) {
471 io_mapping_unmap(ptr);
472 ptr = vma->iomap;
473 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200474 }
475
476 __i915_vma_pin(vma);
Chris Wilsonb4563f52017-10-09 09:43:55 +0100477
Chris Wilson3bd40732017-10-09 09:43:56 +0100478 err = i915_vma_pin_fence(vma);
Chris Wilsonb4563f52017-10-09 09:43:55 +0100479 if (err)
480 goto err_unpin;
481
Chris Wilson7125397b2017-12-06 12:49:14 +0000482 i915_vma_set_ggtt_write(vma);
Chris Wilsona5972e92020-01-08 15:35:50 +0000483
484 /* NB Access through the GTT requires the device to be awake. */
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200485 return ptr;
Chris Wilsonb4563f52017-10-09 09:43:55 +0100486
487err_unpin:
488 __i915_vma_unpin(vma);
489err:
490 return IO_ERR_PTR(err);
491}
492
Chris Wilson7125397b2017-12-06 12:49:14 +0000493void i915_vma_flush_writes(struct i915_vma *vma)
494{
Chris Wilson28507482019-10-04 14:39:58 +0100495 if (i915_vma_unset_ggtt_write(vma))
496 intel_gt_flush_ggtt_writes(vma->vm->gt);
Chris Wilson7125397b2017-12-06 12:49:14 +0000497}
498
Chris Wilsonb4563f52017-10-09 09:43:55 +0100499void i915_vma_unpin_iomap(struct i915_vma *vma)
500{
Chris Wilsonb4563f52017-10-09 09:43:55 +0100501 GEM_BUG_ON(vma->iomap == NULL);
502
Chris Wilson7125397b2017-12-06 12:49:14 +0000503 i915_vma_flush_writes(vma);
504
Chris Wilsonb4563f52017-10-09 09:43:55 +0100505 i915_vma_unpin_fence(vma);
506 i915_vma_unpin(vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200507}
508
Chris Wilson6a2f59e2018-07-21 13:50:37 +0100509void i915_vma_unpin_and_release(struct i915_vma **p_vma, unsigned int flags)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200510{
511 struct i915_vma *vma;
512 struct drm_i915_gem_object *obj;
513
514 vma = fetch_and_zero(p_vma);
515 if (!vma)
516 return;
517
518 obj = vma->obj;
Chris Wilson520ea7c2018-06-07 16:40:45 +0100519 GEM_BUG_ON(!obj);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200520
521 i915_vma_unpin(vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200522
Chris Wilson6a2f59e2018-07-21 13:50:37 +0100523 if (flags & I915_VMA_RELEASE_MAP)
524 i915_gem_object_unpin_map(obj);
525
Chris Wilsonc017cf62019-05-28 10:29:56 +0100526 i915_gem_object_put(obj);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200527}
528
Chris Wilson782a3e92017-02-13 17:15:46 +0000529bool i915_vma_misplaced(const struct i915_vma *vma,
530 u64 size, u64 alignment, u64 flags)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200531{
532 if (!drm_mm_node_allocated(&vma->node))
533 return false;
534
Chris Wilson28507482019-10-04 14:39:58 +0100535 if (test_bit(I915_VMA_ERROR_BIT, __i915_vma_flags(vma)))
536 return true;
537
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200538 if (vma->node.size < size)
539 return true;
540
Chris Wilsonf51455d2017-01-10 14:47:34 +0000541 GEM_BUG_ON(alignment && !is_power_of_2(alignment));
542 if (alignment && !IS_ALIGNED(vma->node.start, alignment))
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200543 return true;
544
545 if (flags & PIN_MAPPABLE && !i915_vma_is_map_and_fenceable(vma))
546 return true;
547
548 if (flags & PIN_OFFSET_BIAS &&
549 vma->node.start < (flags & PIN_OFFSET_MASK))
550 return true;
551
552 if (flags & PIN_OFFSET_FIXED &&
553 vma->node.start != (flags & PIN_OFFSET_MASK))
554 return true;
555
556 return false;
557}
558
559void __i915_vma_set_map_and_fenceable(struct i915_vma *vma)
560{
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200561 bool mappable, fenceable;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200562
Chris Wilson944397f2017-01-09 16:16:11 +0000563 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
564 GEM_BUG_ON(!vma->fence_size);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200565
Chris Wilson944397f2017-01-09 16:16:11 +0000566 fenceable = (vma->node.size >= vma->fence_size &&
Chris Wilsonf51455d2017-01-10 14:47:34 +0000567 IS_ALIGNED(vma->node.start, vma->fence_alignment));
Chris Wilson944397f2017-01-09 16:16:11 +0000568
569 mappable = vma->node.start + vma->fence_size <= i915_vm_to_ggtt(vma->vm)->mappable_end;
570
571 if (mappable && fenceable)
Chris Wilson4dd2fbb2019-09-11 10:02:43 +0100572 set_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200573 else
Chris Wilson4dd2fbb2019-09-11 10:02:43 +0100574 clear_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200575}
576
Matthew Auld33dd8892019-09-09 13:40:52 +0100577bool i915_gem_valid_gtt_space(struct i915_vma *vma, unsigned long color)
Chris Wilson7d1d9ae2016-12-05 14:29:38 +0000578{
579 struct drm_mm_node *node = &vma->node;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200580 struct drm_mm_node *other;
581
582 /*
583 * On some machines we have to be careful when putting differing types
584 * of snoopable memory together to avoid the prefetcher crossing memory
585 * domains and dying. During vm initialisation, we decide whether or not
586 * these constraints apply and set the drm_mm.color_adjust
587 * appropriately.
588 */
Matthew Auld33dd8892019-09-09 13:40:52 +0100589 if (!i915_vm_has_cache_coloring(vma->vm))
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200590 return true;
591
Chris Wilson7d1d9ae2016-12-05 14:29:38 +0000592 /* Only valid to be called on an already inserted vma */
593 GEM_BUG_ON(!drm_mm_node_allocated(node));
594 GEM_BUG_ON(list_empty(&node->node_list));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200595
Chris Wilson7d1d9ae2016-12-05 14:29:38 +0000596 other = list_prev_entry(node, node_list);
Matthew Auld33dd8892019-09-09 13:40:52 +0100597 if (i915_node_color_differs(other, color) &&
Matthew Auld1e0a96e2019-09-09 13:40:50 +0100598 !drm_mm_hole_follows(other))
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200599 return false;
600
Chris Wilson7d1d9ae2016-12-05 14:29:38 +0000601 other = list_next_entry(node, node_list);
Matthew Auld33dd8892019-09-09 13:40:52 +0100602 if (i915_node_color_differs(other, color) &&
Matthew Auld1e0a96e2019-09-09 13:40:50 +0100603 !drm_mm_hole_follows(node))
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200604 return false;
605
606 return true;
607}
608
609/**
610 * i915_vma_insert - finds a slot for the vma in its address space
611 * @vma: the vma
612 * @size: requested size in bytes (can be larger than the VMA)
613 * @alignment: required alignment
614 * @flags: mask of PIN_* flags to use
615 *
616 * First we try to allocate some free space that meets the requirements for
617 * the VMA. Failiing that, if the flags permit, it will evict an old VMA,
618 * preferrably the oldest idle entry to make room for the new VMA.
619 *
620 * Returns:
621 * 0 on success, negative error code otherwise.
622 */
623static int
624i915_vma_insert(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
625{
Matthew Auld33dd8892019-09-09 13:40:52 +0100626 unsigned long color;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200627 u64 start, end;
628 int ret;
629
Chris Wilson4dd2fbb2019-09-11 10:02:43 +0100630 GEM_BUG_ON(i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200631 GEM_BUG_ON(drm_mm_node_allocated(&vma->node));
632
633 size = max(size, vma->size);
Chris Wilson944397f2017-01-09 16:16:11 +0000634 alignment = max(alignment, vma->display_alignment);
635 if (flags & PIN_MAPPABLE) {
636 size = max_t(typeof(size), size, vma->fence_size);
637 alignment = max_t(typeof(alignment),
638 alignment, vma->fence_alignment);
639 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200640
Chris Wilsonf51455d2017-01-10 14:47:34 +0000641 GEM_BUG_ON(!IS_ALIGNED(size, I915_GTT_PAGE_SIZE));
642 GEM_BUG_ON(!IS_ALIGNED(alignment, I915_GTT_MIN_ALIGNMENT));
643 GEM_BUG_ON(!is_power_of_2(alignment));
644
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200645 start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
Chris Wilsonf51455d2017-01-10 14:47:34 +0000646 GEM_BUG_ON(!IS_ALIGNED(start, I915_GTT_PAGE_SIZE));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200647
648 end = vma->vm->total;
649 if (flags & PIN_MAPPABLE)
Chris Wilson28507482019-10-04 14:39:58 +0100650 end = min_t(u64, end, i915_vm_to_ggtt(vma->vm)->mappable_end);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200651 if (flags & PIN_ZONE_4G)
Chris Wilsonf51455d2017-01-10 14:47:34 +0000652 end = min_t(u64, end, (1ULL << 32) - I915_GTT_PAGE_SIZE);
653 GEM_BUG_ON(!IS_ALIGNED(end, I915_GTT_PAGE_SIZE));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200654
655 /* If binding the object/GGTT view requires more space than the entire
656 * aperture has, reject it early before evicting everything in a vain
657 * attempt to find space.
658 */
659 if (size > end) {
Chris Wilson520ea7c2018-06-07 16:40:45 +0100660 DRM_DEBUG("Attempting to bind an object larger than the aperture: request=%llu > %s aperture=%llu\n",
661 size, flags & PIN_MAPPABLE ? "mappable" : "total",
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200662 end);
Chris Wilson2889caa2017-06-16 15:05:19 +0100663 return -ENOSPC;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200664 }
665
Matthew Auld33dd8892019-09-09 13:40:52 +0100666 color = 0;
Maarten Lankhorste6e1a302021-11-17 14:20:22 +0000667 if (i915_vm_has_cache_coloring(vma->vm))
Chris Wilson28507482019-10-04 14:39:58 +0100668 color = vma->obj->cache_level;
Matthew Auldfa3f46a2017-10-06 23:18:19 +0100669
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200670 if (flags & PIN_OFFSET_FIXED) {
671 u64 offset = flags & PIN_OFFSET_MASK;
Chris Wilsonf51455d2017-01-10 14:47:34 +0000672 if (!IS_ALIGNED(offset, alignment) ||
Chris Wilson28507482019-10-04 14:39:58 +0100673 range_overflows(offset, size, end))
674 return -EINVAL;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200675
Chris Wilson625d9882017-01-11 11:23:11 +0000676 ret = i915_gem_gtt_reserve(vma->vm, &vma->node,
Matthew Auld33dd8892019-09-09 13:40:52 +0100677 size, offset, color,
Chris Wilson625d9882017-01-11 11:23:11 +0000678 flags);
679 if (ret)
Chris Wilson28507482019-10-04 14:39:58 +0100680 return ret;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200681 } else {
Matthew Auld74642842017-10-06 23:18:20 +0100682 /*
683 * We only support huge gtt pages through the 48b PPGTT,
684 * however we also don't want to force any alignment for
685 * objects which need to be tightly packed into the low 32bits.
686 *
687 * Note that we assume that GGTT are limited to 4GiB for the
688 * forseeable future. See also i915_ggtt_offset().
689 */
690 if (upper_32_bits(end - 1) &&
691 vma->page_sizes.sg > I915_GTT_PAGE_SIZE) {
Matthew Auld855822b2017-10-06 23:18:21 +0100692 /*
693 * We can't mix 64K and 4K PTEs in the same page-table
694 * (2M block), and so to avoid the ugliness and
695 * complexity of coloring we opt for just aligning 64K
696 * objects to 2M.
697 */
Matthew Auld74642842017-10-06 23:18:20 +0100698 u64 page_alignment =
Matthew Auld855822b2017-10-06 23:18:21 +0100699 rounddown_pow_of_two(vma->page_sizes.sg |
700 I915_GTT_PAGE_SIZE_2M);
Matthew Auld74642842017-10-06 23:18:20 +0100701
Chris Wilsonbef27bdb2017-10-09 10:20:19 +0100702 /*
703 * Check we don't expand for the limited Global GTT
704 * (mappable aperture is even more precious!). This
705 * also checks that we exclude the aliasing-ppgtt.
706 */
707 GEM_BUG_ON(i915_vma_is_ggtt(vma));
708
Matthew Auld74642842017-10-06 23:18:20 +0100709 alignment = max(alignment, page_alignment);
Matthew Auld855822b2017-10-06 23:18:21 +0100710
711 if (vma->page_sizes.sg & I915_GTT_PAGE_SIZE_64K)
712 size = round_up(size, I915_GTT_PAGE_SIZE_2M);
Matthew Auld74642842017-10-06 23:18:20 +0100713 }
714
Chris Wilsone007b192017-01-11 11:23:10 +0000715 ret = i915_gem_gtt_insert(vma->vm, &vma->node,
Matthew Auld33dd8892019-09-09 13:40:52 +0100716 size, alignment, color,
Chris Wilsone007b192017-01-11 11:23:10 +0000717 start, end, flags);
718 if (ret)
Chris Wilson28507482019-10-04 14:39:58 +0100719 return ret;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200720
721 GEM_BUG_ON(vma->node.start < start);
722 GEM_BUG_ON(vma->node.start + vma->node.size > end);
723 }
Chris Wilson44a0ec02017-01-19 19:26:58 +0000724 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
Matthew Auld33dd8892019-09-09 13:40:52 +0100725 GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, color));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200726
Chris Wilsondde01d92019-10-30 19:21:49 +0000727 list_add_tail(&vma->vm_link, &vma->vm->bound_list);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200728
729 return 0;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200730}
731
Chris Wilson31c7eff2017-02-27 12:26:54 +0000732static void
Chris Wilsondde01d92019-10-30 19:21:49 +0000733i915_vma_detach(struct i915_vma *vma)
Chris Wilson31c7eff2017-02-27 12:26:54 +0000734{
Chris Wilson31c7eff2017-02-27 12:26:54 +0000735 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
Chris Wilson4dd2fbb2019-09-11 10:02:43 +0100736 GEM_BUG_ON(i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND));
Chris Wilson31c7eff2017-02-27 12:26:54 +0000737
Chris Wilson520ea7c2018-06-07 16:40:45 +0100738 /*
Chris Wilsondde01d92019-10-30 19:21:49 +0000739 * And finally now the object is completely decoupled from this
740 * vma, we can drop its hold on the backing storage and allow
741 * it to be reaped by the shrinker.
Chris Wilson31c7eff2017-02-27 12:26:54 +0000742 */
Chris Wilsondde01d92019-10-30 19:21:49 +0000743 list_del(&vma->vm_link);
Chris Wilson31c7eff2017-02-27 12:26:54 +0000744}
745
Chris Wilson28507482019-10-04 14:39:58 +0100746static bool try_qad_pin(struct i915_vma *vma, unsigned int flags)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200747{
Chris Wilson28507482019-10-04 14:39:58 +0100748 unsigned int bound;
749 bool pinned = true;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200750
Chris Wilson28507482019-10-04 14:39:58 +0100751 bound = atomic_read(&vma->flags);
752 do {
753 if (unlikely(flags & ~bound))
754 return false;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200755
Chris Wilson28507482019-10-04 14:39:58 +0100756 if (unlikely(bound & (I915_VMA_OVERFLOW | I915_VMA_ERROR)))
757 return false;
758
759 if (!(bound & I915_VMA_PIN_MASK))
760 goto unpinned;
761
762 GEM_BUG_ON(((bound + 1) & I915_VMA_PIN_MASK) == 0);
763 } while (!atomic_try_cmpxchg(&vma->flags, &bound, bound + 1));
764
765 return true;
766
767unpinned:
768 /*
769 * If pin_count==0, but we are bound, check under the lock to avoid
770 * racing with a concurrent i915_vma_unbind().
771 */
772 mutex_lock(&vma->vm->mutex);
773 do {
774 if (unlikely(bound & (I915_VMA_OVERFLOW | I915_VMA_ERROR))) {
775 pinned = false;
776 break;
777 }
778
779 if (unlikely(flags & ~bound)) {
780 pinned = false;
781 break;
782 }
783 } while (!atomic_try_cmpxchg(&vma->flags, &bound, bound + 1));
784 mutex_unlock(&vma->vm->mutex);
785
786 return pinned;
787}
788
789static int vma_get_pages(struct i915_vma *vma)
790{
791 int err = 0;
Maarten Lankhorste6e1a302021-11-17 14:20:22 +0000792 bool pinned_pages = true;
Chris Wilson28507482019-10-04 14:39:58 +0100793
794 if (atomic_add_unless(&vma->pages_count, 1, 0))
795 return 0;
796
Maarten Lankhorste6e1a302021-11-17 14:20:22 +0000797 err = i915_gem_object_pin_pages(vma->obj);
798 if (err)
799 return err;
Thomas Hellström0f4308d2021-06-01 09:46:40 +0200800
Chris Wilson28507482019-10-04 14:39:58 +0100801 /* Allocations ahoy! */
Thomas Hellström0f4308d2021-06-01 09:46:40 +0200802 if (mutex_lock_interruptible(&vma->pages_mutex)) {
803 err = -EINTR;
804 goto unpin;
805 }
Chris Wilson28507482019-10-04 14:39:58 +0100806
807 if (!atomic_read(&vma->pages_count)) {
Chris Wilson28507482019-10-04 14:39:58 +0100808 err = vma->ops->set_pages(vma);
Thomas Hellström0f4308d2021-06-01 09:46:40 +0200809 if (err)
Chris Wilson28507482019-10-04 14:39:58 +0100810 goto unlock;
Thomas Hellström0f4308d2021-06-01 09:46:40 +0200811 pinned_pages = false;
Chris Wilson28507482019-10-04 14:39:58 +0100812 }
813 atomic_inc(&vma->pages_count);
814
815unlock:
816 mutex_unlock(&vma->pages_mutex);
Thomas Hellström0f4308d2021-06-01 09:46:40 +0200817unpin:
818 if (pinned_pages)
819 __i915_gem_object_unpin_pages(vma->obj);
Chris Wilson28507482019-10-04 14:39:58 +0100820
821 return err;
822}
823
824static void __vma_put_pages(struct i915_vma *vma, unsigned int count)
825{
826 /* We allocate under vma_get_pages, so beware the shrinker */
827 mutex_lock_nested(&vma->pages_mutex, SINGLE_DEPTH_NESTING);
828 GEM_BUG_ON(atomic_read(&vma->pages_count) < count);
829 if (atomic_sub_return(count, &vma->pages_count) == 0) {
830 vma->ops->clear_pages(vma);
831 GEM_BUG_ON(vma->pages);
Maarten Lankhorste6e1a302021-11-17 14:20:22 +0000832
833 i915_gem_object_unpin_pages(vma->obj);
Chris Wilson28507482019-10-04 14:39:58 +0100834 }
835 mutex_unlock(&vma->pages_mutex);
836}
837
838static void vma_put_pages(struct i915_vma *vma)
839{
840 if (atomic_add_unless(&vma->pages_count, -1, 1))
841 return;
842
843 __vma_put_pages(vma, 1);
844}
845
846static void vma_unbind_pages(struct i915_vma *vma)
847{
848 unsigned int count;
849
850 lockdep_assert_held(&vma->vm->mutex);
851
852 /* The upper portion of pages_count is the number of bindings */
853 count = atomic_read(&vma->pages_count);
854 count >>= I915_VMA_PAGES_BIAS;
855 GEM_BUG_ON(!count);
856
857 __vma_put_pages(vma, count | count << I915_VMA_PAGES_BIAS);
858}
859
Maarten Lankhorst47b08692020-08-19 16:08:54 +0200860int i915_vma_pin_ww(struct i915_vma *vma, struct i915_gem_ww_ctx *ww,
861 u64 size, u64 alignment, u64 flags)
Chris Wilson28507482019-10-04 14:39:58 +0100862{
863 struct i915_vma_work *work = NULL;
Chris Wilsonc0e60342020-01-10 14:44:18 +0000864 intel_wakeref_t wakeref = 0;
Chris Wilson28507482019-10-04 14:39:58 +0100865 unsigned int bound;
866 int err;
867
Maarten Lankhorst47b08692020-08-19 16:08:54 +0200868#ifdef CONFIG_PROVE_LOCKING
Maarten Lankhorste6e1a302021-11-17 14:20:22 +0000869 if (debug_locks && !WARN_ON(!ww))
Maarten Lankhorst1eef0de12021-03-23 16:49:54 +0100870 assert_vma_held(vma);
Maarten Lankhorst47b08692020-08-19 16:08:54 +0200871#endif
872
Chris Wilson28507482019-10-04 14:39:58 +0100873 BUILD_BUG_ON(PIN_GLOBAL != I915_VMA_GLOBAL_BIND);
874 BUILD_BUG_ON(PIN_USER != I915_VMA_LOCAL_BIND);
875
Chris Wilson28507482019-10-04 14:39:58 +0100876 GEM_BUG_ON(!(flags & (PIN_USER | PIN_GLOBAL)));
877
878 /* First try and grab the pin without rebinding the vma */
879 if (try_qad_pin(vma, flags & I915_VMA_BIND_MASK))
880 return 0;
881
882 err = vma_get_pages(vma);
883 if (err)
884 return err;
885
Chris Wilson89351922020-07-29 17:42:18 +0100886 if (flags & PIN_GLOBAL)
887 wakeref = intel_runtime_pm_get(&vma->vm->i915->runtime_pm);
888
Chris Wilson28507482019-10-04 14:39:58 +0100889 if (flags & vma->vm->bind_async_flags) {
Maarten Lankhorst26ad4f82021-03-23 16:50:29 +0100890 /* lock VM */
891 err = i915_vm_lock_objects(vma->vm, ww);
892 if (err)
893 goto err_rpm;
894
Chris Wilson28507482019-10-04 14:39:58 +0100895 work = i915_vma_work();
896 if (!work) {
897 err = -ENOMEM;
Chris Wilson89351922020-07-29 17:42:18 +0100898 goto err_rpm;
Chris Wilson28507482019-10-04 14:39:58 +0100899 }
Chris Wilsoncd0452a2020-07-29 17:42:17 +0100900
901 work->vm = i915_vm_get(vma->vm);
902
903 /* Allocate enough page directories to used PTE */
Chris Wilson89351922020-07-29 17:42:18 +0100904 if (vma->vm->allocate_va_range) {
Matthew Auldcef8ce52020-09-21 17:08:44 +0100905 err = i915_vm_alloc_pt_stash(vma->vm,
906 &work->stash,
907 vma->size);
908 if (err)
909 goto err_fence;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200910
Matthew Auld529b9ec2021-04-27 09:54:13 +0100911 err = i915_vm_map_pt_stash(vma->vm, &work->stash);
Chris Wilson89351922020-07-29 17:42:18 +0100912 if (err)
913 goto err_fence;
914 }
915 }
Chris Wilsonc0e60342020-01-10 14:44:18 +0000916
Chris Wilsond0024912020-03-26 14:27:27 +0000917 /*
918 * Differentiate between user/kernel vma inside the aliasing-ppgtt.
919 *
920 * We conflate the Global GTT with the user's vma when using the
921 * aliasing-ppgtt, but it is still vitally important to try and
922 * keep the use cases distinct. For example, userptr objects are
923 * not allowed inside the Global GTT as that will cause lock
924 * inversions when we have to evict them the mmu_notifier callbacks -
925 * but they are allowed to be part of the user ppGTT which can never
926 * be mapped. As such we try to give the distinct users of the same
927 * mutex, distinct lockclasses [equivalent to how we keep i915_ggtt
928 * and i915_ppgtt separate].
929 *
930 * NB this may cause us to mask real lock inversions -- while the
931 * code is safe today, lockdep may not be able to spot future
932 * transgressions.
933 */
934 err = mutex_lock_interruptible_nested(&vma->vm->mutex,
935 !(flags & PIN_GLOBAL));
Chris Wilson28507482019-10-04 14:39:58 +0100936 if (err)
937 goto err_fence;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200938
Chris Wilsond0024912020-03-26 14:27:27 +0000939 /* No more allocations allowed now we hold vm->mutex */
940
Chris Wilson00de7022020-02-21 12:19:40 +0000941 if (unlikely(i915_vma_is_closed(vma))) {
942 err = -ENOENT;
943 goto err_unlock;
944 }
945
Chris Wilson28507482019-10-04 14:39:58 +0100946 bound = atomic_read(&vma->flags);
947 if (unlikely(bound & I915_VMA_ERROR)) {
948 err = -ENOMEM;
949 goto err_unlock;
950 }
951
952 if (unlikely(!((bound + 1) & I915_VMA_PIN_MASK))) {
953 err = -EAGAIN; /* pins are meant to be fairly temporary */
954 goto err_unlock;
955 }
956
957 if (unlikely(!(flags & ~bound & I915_VMA_BIND_MASK))) {
958 __i915_vma_pin(vma);
959 goto err_unlock;
960 }
961
962 err = i915_active_acquire(&vma->active);
963 if (err)
964 goto err_unlock;
965
966 if (!(bound & I915_VMA_BIND_MASK)) {
967 err = i915_vma_insert(vma, size, alignment, flags);
968 if (err)
969 goto err_active;
970
971 if (i915_is_ggtt(vma->vm))
972 __i915_vma_set_map_and_fenceable(vma);
973 }
974
975 GEM_BUG_ON(!vma->pages);
976 err = i915_vma_bind(vma,
Maarten Lankhorste6e1a302021-11-17 14:20:22 +0000977 vma->obj->cache_level,
Chris Wilson28507482019-10-04 14:39:58 +0100978 flags, work);
979 if (err)
Chris Wilson31c7eff2017-02-27 12:26:54 +0000980 goto err_remove;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200981
Chris Wilson28507482019-10-04 14:39:58 +0100982 /* There should only be at most 2 active bindings (user, global) */
983 GEM_BUG_ON(bound + I915_VMA_PAGES_ACTIVE < bound);
984 atomic_add(I915_VMA_PAGES_ACTIVE, &vma->pages_count);
985 list_move_tail(&vma->vm_link, &vma->vm->bound_list);
Chris Wilsond36caee2017-11-05 12:45:50 +0000986
Chris Wilson28507482019-10-04 14:39:58 +0100987 __i915_vma_pin(vma);
988 GEM_BUG_ON(!i915_vma_is_pinned(vma));
989 GEM_BUG_ON(!i915_vma_is_bound(vma, flags));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200990 GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200991
Chris Wilson31c7eff2017-02-27 12:26:54 +0000992err_remove:
Chris Wilsondde01d92019-10-30 19:21:49 +0000993 if (!i915_vma_is_bound(vma, I915_VMA_BIND_MASK)) {
994 i915_vma_detach(vma);
995 drm_mm_remove_node(&vma->node);
996 }
Chris Wilson28507482019-10-04 14:39:58 +0100997err_active:
998 i915_active_release(&vma->active);
999err_unlock:
1000 mutex_unlock(&vma->vm->mutex);
1001err_fence:
1002 if (work)
Chris Wilson92581f92020-03-25 12:02:27 +00001003 dma_fence_work_commit_imm(&work->base);
Chris Wilson89351922020-07-29 17:42:18 +01001004err_rpm:
Chris Wilsonc0e60342020-01-10 14:44:18 +00001005 if (wakeref)
1006 intel_runtime_pm_put(&vma->vm->i915->runtime_pm, wakeref);
Chris Wilson28507482019-10-04 14:39:58 +01001007 vma_put_pages(vma);
1008 return err;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001009}
1010
Chris Wilsonccd20942019-12-05 11:37:25 +00001011static void flush_idle_contexts(struct intel_gt *gt)
1012{
1013 struct intel_engine_cs *engine;
1014 enum intel_engine_id id;
1015
1016 for_each_engine(engine, gt, id)
1017 intel_engine_flush_barriers(engine);
1018
1019 intel_gt_wait_for_idle(gt, MAX_SCHEDULE_TIMEOUT);
1020}
1021
Maarten Lankhorst47b08692020-08-19 16:08:54 +02001022int i915_ggtt_pin(struct i915_vma *vma, struct i915_gem_ww_ctx *ww,
1023 u32 align, unsigned int flags)
Chris Wilsonccd20942019-12-05 11:37:25 +00001024{
1025 struct i915_address_space *vm = vma->vm;
1026 int err;
1027
1028 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
1029
Maarten Lankhorst1eef0de12021-03-23 16:49:54 +01001030#ifdef CONFIG_LOCKDEP
Maarten Lankhorst95c3d272021-11-17 14:20:23 +00001031 WARN_ON(!ww && dma_resv_held(vma->obj->base.resv));
Maarten Lankhorst1eef0de12021-03-23 16:49:54 +01001032#endif
1033
Chris Wilsonccd20942019-12-05 11:37:25 +00001034 do {
Maarten Lankhorst1eef0de12021-03-23 16:49:54 +01001035 if (ww)
1036 err = i915_vma_pin_ww(vma, ww, 0, align, flags | PIN_GLOBAL);
1037 else
1038 err = i915_vma_pin(vma, 0, align, flags | PIN_GLOBAL);
Chris Wilsone3793462020-01-30 18:17:10 +00001039 if (err != -ENOSPC) {
1040 if (!err) {
1041 err = i915_vma_wait_for_bind(vma);
1042 if (err)
1043 i915_vma_unpin(vma);
1044 }
Chris Wilsonccd20942019-12-05 11:37:25 +00001045 return err;
Chris Wilsone3793462020-01-30 18:17:10 +00001046 }
Chris Wilsonccd20942019-12-05 11:37:25 +00001047
1048 /* Unlike i915_vma_pin, we don't take no for an answer! */
1049 flush_idle_contexts(vm->gt);
1050 if (mutex_lock_interruptible(&vm->mutex) == 0) {
1051 i915_gem_evict_vm(vm);
1052 mutex_unlock(&vm->mutex);
1053 }
1054 } while (1);
1055}
1056
Chris Wilson50689772020-04-22 20:05:58 +01001057static void __vma_close(struct i915_vma *vma, struct intel_gt *gt)
Chris Wilson3365e222018-05-03 20:51:14 +01001058{
Chris Wilson3365e222018-05-03 20:51:14 +01001059 /*
1060 * We defer actually closing, unbinding and destroying the VMA until
1061 * the next idle point, or if the object is freed in the meantime. By
1062 * postponing the unbind, we allow for it to be resurrected by the
1063 * client, avoiding the work required to rebind the VMA. This is
1064 * advantageous for DRI, where the client/server pass objects
1065 * between themselves, temporarily opening a local VMA to the
1066 * object, and then closing it again. The same object is then reused
1067 * on the next frame (or two, depending on the depth of the swap queue)
1068 * causing us to rebind the VMA once more. This ends up being a lot
1069 * of wasted work for the steady state.
1070 */
Chris Wilson50689772020-04-22 20:05:58 +01001071 GEM_BUG_ON(i915_vma_is_closed(vma));
Chris Wilson71e51ca2019-10-21 19:32:35 +01001072 list_add(&vma->closed_link, &gt->closed_vma);
Chris Wilson50689772020-04-22 20:05:58 +01001073}
1074
1075void i915_vma_close(struct i915_vma *vma)
1076{
1077 struct intel_gt *gt = vma->vm->gt;
1078 unsigned long flags;
1079
1080 if (i915_vma_is_ggtt(vma))
1081 return;
1082
1083 GEM_BUG_ON(!atomic_read(&vma->open_count));
1084 if (atomic_dec_and_lock_irqsave(&vma->open_count,
1085 &gt->closed_lock,
1086 flags)) {
1087 __vma_close(vma, gt);
1088 spin_unlock_irqrestore(&gt->closed_lock, flags);
1089 }
Chris Wilson155ab882019-06-06 12:23:20 +01001090}
1091
1092static void __i915_vma_remove_closed(struct i915_vma *vma)
1093{
Chris Wilson71e51ca2019-10-21 19:32:35 +01001094 struct intel_gt *gt = vma->vm->gt;
Chris Wilson155ab882019-06-06 12:23:20 +01001095
Chris Wilson71e51ca2019-10-21 19:32:35 +01001096 spin_lock_irq(&gt->closed_lock);
Chris Wilson155ab882019-06-06 12:23:20 +01001097 list_del_init(&vma->closed_link);
Chris Wilson71e51ca2019-10-21 19:32:35 +01001098 spin_unlock_irq(&gt->closed_lock);
Chris Wilson3365e222018-05-03 20:51:14 +01001099}
1100
1101void i915_vma_reopen(struct i915_vma *vma)
1102{
Chris Wilson28507482019-10-04 14:39:58 +01001103 if (i915_vma_is_closed(vma))
1104 __i915_vma_remove_closed(vma);
Chris Wilson3365e222018-05-03 20:51:14 +01001105}
1106
Chris Wilson76f97642019-12-22 21:02:55 +00001107void i915_vma_release(struct kref *ref)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001108{
Chris Wilson76f97642019-12-22 21:02:55 +00001109 struct i915_vma *vma = container_of(ref, typeof(*vma), ref);
Maarten Lankhorste6e1a302021-11-17 14:20:22 +00001110 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson76f97642019-12-22 21:02:55 +00001111
Chris Wilson28507482019-10-04 14:39:58 +01001112 if (drm_mm_node_allocated(&vma->node)) {
1113 mutex_lock(&vma->vm->mutex);
1114 atomic_and(~I915_VMA_PIN_MASK, &vma->flags);
1115 WARN_ON(__i915_vma_unbind(vma));
1116 mutex_unlock(&vma->vm->mutex);
1117 GEM_BUG_ON(drm_mm_node_allocated(&vma->node));
1118 }
1119 GEM_BUG_ON(i915_vma_is_active(vma));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001120
Maarten Lankhorste6e1a302021-11-17 14:20:22 +00001121 spin_lock(&obj->vma.lock);
1122 list_del(&vma->obj_link);
1123 if (!RB_EMPTY_NODE(&vma->obj_node))
1124 rb_erase(&vma->obj_node, &obj->vma.tree);
1125 spin_unlock(&obj->vma.lock);
Chris Wilson010e3e62017-12-06 12:49:13 +00001126
Chris Wilson155ab882019-06-06 12:23:20 +01001127 __i915_vma_remove_closed(vma);
Chris Wilson28507482019-10-04 14:39:58 +01001128 i915_vm_put(vma->vm);
Chris Wilson3365e222018-05-03 20:51:14 +01001129
Chris Wilson28507482019-10-04 14:39:58 +01001130 i915_active_fini(&vma->active);
1131 i915_vma_free(vma);
Chris Wilson3365e222018-05-03 20:51:14 +01001132}
1133
Chris Wilson71e51ca2019-10-21 19:32:35 +01001134void i915_vma_parked(struct intel_gt *gt)
Chris Wilson3365e222018-05-03 20:51:14 +01001135{
1136 struct i915_vma *vma, *next;
Chris Wilson3447c4c2020-03-23 09:28:35 +00001137 LIST_HEAD(closed);
Chris Wilson3365e222018-05-03 20:51:14 +01001138
Chris Wilson71e51ca2019-10-21 19:32:35 +01001139 spin_lock_irq(&gt->closed_lock);
1140 list_for_each_entry_safe(vma, next, &gt->closed_vma, closed_link) {
Chris Wilson28507482019-10-04 14:39:58 +01001141 struct drm_i915_gem_object *obj = vma->obj;
1142 struct i915_address_space *vm = vma->vm;
1143
1144 /* XXX All to avoid keeping a reference on i915_vma itself */
1145
1146 if (!kref_get_unless_zero(&obj->base.refcount))
1147 continue;
1148
Chris Wilson3447c4c2020-03-23 09:28:35 +00001149 if (!i915_vm_tryopen(vm)) {
Chris Wilson28507482019-10-04 14:39:58 +01001150 i915_gem_object_put(obj);
Chris Wilson3447c4c2020-03-23 09:28:35 +00001151 continue;
Chris Wilson28507482019-10-04 14:39:58 +01001152 }
1153
Chris Wilson3447c4c2020-03-23 09:28:35 +00001154 list_move(&vma->closed_link, &closed);
Chris Wilson155ab882019-06-06 12:23:20 +01001155 }
Chris Wilson71e51ca2019-10-21 19:32:35 +01001156 spin_unlock_irq(&gt->closed_lock);
Chris Wilson3447c4c2020-03-23 09:28:35 +00001157
1158 /* As the GT is held idle, no vma can be reopened as we destroy them */
1159 list_for_each_entry_safe(vma, next, &closed, closed_link) {
1160 struct drm_i915_gem_object *obj = vma->obj;
1161 struct i915_address_space *vm = vma->vm;
1162
1163 INIT_LIST_HEAD(&vma->closed_link);
1164 __i915_vma_put(vma);
1165
1166 i915_gem_object_put(obj);
1167 i915_vm_close(vm);
1168 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001169}
1170
1171static void __i915_vma_iounmap(struct i915_vma *vma)
1172{
1173 GEM_BUG_ON(i915_vma_is_pinned(vma));
1174
1175 if (vma->iomap == NULL)
1176 return;
1177
1178 io_mapping_unmap(vma->iomap);
1179 vma->iomap = NULL;
1180}
1181
Chris Wilsona65adaf2017-10-09 09:43:57 +01001182void i915_vma_revoke_mmap(struct i915_vma *vma)
1183{
Abdiel Janulguecc662122019-12-04 12:00:32 +00001184 struct drm_vma_offset_node *node;
Chris Wilsona65adaf2017-10-09 09:43:57 +01001185 u64 vma_offset;
1186
Chris Wilsona65adaf2017-10-09 09:43:57 +01001187 if (!i915_vma_has_userfault(vma))
1188 return;
1189
1190 GEM_BUG_ON(!i915_vma_is_map_and_fenceable(vma));
1191 GEM_BUG_ON(!vma->obj->userfault_count);
1192
Abdiel Janulguecc662122019-12-04 12:00:32 +00001193 node = &vma->mmo->vma_node;
Chris Wilsona65adaf2017-10-09 09:43:57 +01001194 vma_offset = vma->ggtt_view.partial.offset << PAGE_SHIFT;
1195 unmap_mapping_range(vma->vm->i915->drm.anon_inode->i_mapping,
1196 drm_vma_node_offset_addr(node) + vma_offset,
1197 vma->size,
1198 1);
1199
1200 i915_vma_unset_userfault(vma);
1201 if (!--vma->obj->userfault_count)
1202 list_del(&vma->obj->userfault_link);
1203}
1204
Chris Wilsonaf5c6fc2020-07-31 09:50:15 +01001205static int
1206__i915_request_await_bind(struct i915_request *rq, struct i915_vma *vma)
1207{
1208 return __i915_request_await_exclusive(rq, &vma->active);
1209}
1210
Chris Wilson28507482019-10-04 14:39:58 +01001211int __i915_vma_move_to_active(struct i915_vma *vma, struct i915_request *rq)
1212{
1213 int err;
1214
1215 GEM_BUG_ON(!i915_vma_is_pinned(vma));
1216
1217 /* Wait for the vma to be bound before we start! */
Chris Wilsonaf5c6fc2020-07-31 09:50:15 +01001218 err = __i915_request_await_bind(rq, vma);
Chris Wilson28507482019-10-04 14:39:58 +01001219 if (err)
1220 return err;
1221
1222 return i915_active_add_request(&vma->active, rq);
1223}
1224
Matthew Brost544460c2021-10-14 10:20:00 -07001225int _i915_vma_move_to_active(struct i915_vma *vma,
1226 struct i915_request *rq,
1227 struct dma_fence *fence,
1228 unsigned int flags)
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001229{
1230 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsona93615f2019-06-21 19:37:59 +01001231 int err;
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001232
Chris Wilson6951e582019-05-28 10:29:51 +01001233 assert_object_held(obj);
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001234
Chris Wilson28507482019-10-04 14:39:58 +01001235 err = __i915_vma_move_to_active(vma, rq);
Chris Wilsona93615f2019-06-21 19:37:59 +01001236 if (unlikely(err))
1237 return err;
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001238
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001239 if (flags & EXEC_OBJECT_WRITE) {
Chris Wilsonda421042019-12-18 10:40:43 +00001240 struct intel_frontbuffer *front;
1241
1242 front = __intel_frontbuffer_get(obj);
1243 if (unlikely(front)) {
1244 if (intel_frontbuffer_invalidate(front, ORIGIN_CS))
1245 i915_active_add_request(&front->write, rq);
1246 intel_frontbuffer_put(front);
1247 }
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001248
Matthew Brost544460c2021-10-14 10:20:00 -07001249 if (fence) {
Maarten Lankhorst95c3d272021-11-17 14:20:23 +00001250 dma_resv_add_excl_fence(vma->obj->base.resv, fence);
Matthew Brost544460c2021-10-14 10:20:00 -07001251 obj->write_domain = I915_GEM_DOMAIN_RENDER;
1252 obj->read_domains = 0;
1253 }
Chris Wilsoncd2a4ea2019-07-30 21:58:05 +01001254 } else {
Maarten Lankhorstbfaae472021-03-23 16:49:59 +01001255 if (!(flags & __EXEC_OBJECT_NO_RESERVE)) {
Maarten Lankhorst95c3d272021-11-17 14:20:23 +00001256 err = dma_resv_reserve_shared(vma->obj->base.resv, 1);
Maarten Lankhorstbfaae472021-03-23 16:49:59 +01001257 if (unlikely(err))
1258 return err;
1259 }
Chris Wilsoncd2a4ea2019-07-30 21:58:05 +01001260
Matthew Brost544460c2021-10-14 10:20:00 -07001261 if (fence) {
Maarten Lankhorst95c3d272021-11-17 14:20:23 +00001262 dma_resv_add_shared_fence(vma->obj->base.resv, fence);
Matthew Brost544460c2021-10-14 10:20:00 -07001263 obj->write_domain = 0;
1264 }
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001265 }
Chris Wilson63baf4f2020-04-01 22:01:02 +01001266
1267 if (flags & EXEC_OBJECT_NEEDS_FENCE && vma->fence)
1268 i915_active_add_request(&vma->fence->active, rq);
1269
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001270 obj->read_domains |= I915_GEM_GPU_DOMAINS;
Chris Wilsona93615f2019-06-21 19:37:59 +01001271 obj->mm.dirty = true;
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001272
Chris Wilsona93615f2019-06-21 19:37:59 +01001273 GEM_BUG_ON(!i915_vma_is_active(vma));
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001274 return 0;
1275}
1276
Chris Wilsonbffa18d2020-05-28 09:24:27 +01001277void __i915_vma_evict(struct i915_vma *vma)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001278{
Chris Wilson60e94552020-01-23 22:44:58 +00001279 GEM_BUG_ON(i915_vma_is_pinned(vma));
Chris Wilson60e94552020-01-23 22:44:58 +00001280
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001281 if (i915_vma_is_map_and_fenceable(vma)) {
Chris Wilson9657aaa2020-04-03 17:09:51 +01001282 /* Force a pagefault for domain tracking on next user access */
1283 i915_vma_revoke_mmap(vma);
1284
Chris Wilson7125397b2017-12-06 12:49:14 +00001285 /*
1286 * Check that we have flushed all writes through the GGTT
1287 * before the unbind, other due to non-strict nature of those
1288 * indirect writes they may end up referencing the GGTT PTE
1289 * after the unbind.
Chris Wilson5424f5d2020-01-21 22:24:41 +00001290 *
1291 * Note that we may be concurrently poking at the GGTT_WRITE
1292 * bit from set-domain, as we mark all GGTT vma associated
1293 * with an object. We know this is for another vma, as we
1294 * are currently unbinding this one -- so if this vma will be
1295 * reused, it will be refaulted and have its dirty bit set
1296 * before the next write.
Chris Wilson7125397b2017-12-06 12:49:14 +00001297 */
1298 i915_vma_flush_writes(vma);
Chris Wilson7125397b2017-12-06 12:49:14 +00001299
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001300 /* release the fence reg _after_ flushing */
Chris Wilson0d86ee32020-04-01 22:01:04 +01001301 i915_vma_revoke_fence(vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001302
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001303 __i915_vma_iounmap(vma);
Chris Wilson4dd2fbb2019-09-11 10:02:43 +01001304 clear_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001305 }
Chris Wilsona65adaf2017-10-09 09:43:57 +01001306 GEM_BUG_ON(vma->fence);
1307 GEM_BUG_ON(i915_vma_has_userfault(vma));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001308
Chris Wilson28507482019-10-04 14:39:58 +01001309 if (likely(atomic_read(&vma->vm->open))) {
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001310 trace_i915_vma_unbind(vma);
Chris Wilson12b07252020-07-03 11:25:19 +01001311 vma->ops->unbind_vma(vma->vm, vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001312 }
Chris Wilson5424f5d2020-01-21 22:24:41 +00001313 atomic_and(~(I915_VMA_BIND_MASK | I915_VMA_ERROR | I915_VMA_GGTT_WRITE),
1314 &vma->flags);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001315
Chris Wilsondde01d92019-10-30 19:21:49 +00001316 i915_vma_detach(vma);
Chris Wilson28507482019-10-04 14:39:58 +01001317 vma_unbind_pages(vma);
Chris Wilsonbffa18d2020-05-28 09:24:27 +01001318}
1319
1320int __i915_vma_unbind(struct i915_vma *vma)
1321{
1322 int ret;
1323
1324 lockdep_assert_held(&vma->vm->mutex);
1325
1326 if (!drm_mm_node_allocated(&vma->node))
1327 return 0;
1328
1329 if (i915_vma_is_pinned(vma)) {
1330 vma_print_allocator(vma, "is pinned");
1331 return -EAGAIN;
1332 }
1333
1334 /*
1335 * After confirming that no one else is pinning this vma, wait for
1336 * any laggards who may have crept in during the wait (through
1337 * a residual pin skipping the vm->mutex) to complete.
1338 */
1339 ret = i915_vma_sync(vma);
1340 if (ret)
1341 return ret;
1342
1343 GEM_BUG_ON(i915_vma_is_active(vma));
1344 __i915_vma_evict(vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001345
Chris Wilson76f97642019-12-22 21:02:55 +00001346 drm_mm_remove_node(&vma->node); /* pairs with i915_vma_release() */
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001347 return 0;
1348}
1349
Chris Wilson28507482019-10-04 14:39:58 +01001350int i915_vma_unbind(struct i915_vma *vma)
1351{
1352 struct i915_address_space *vm = vma->vm;
Chris Wilsonc0e60342020-01-10 14:44:18 +00001353 intel_wakeref_t wakeref = 0;
Chris Wilson28507482019-10-04 14:39:58 +01001354 int err;
1355
Chris Wilsond62f416f2020-01-23 22:44:59 +00001356 /* Optimistic wait before taking the mutex */
1357 err = i915_vma_sync(vma);
1358 if (err)
Chris Wilsonbffa18d2020-05-28 09:24:27 +01001359 return err;
1360
1361 if (!drm_mm_node_allocated(&vma->node))
1362 return 0;
Chris Wilsond62f416f2020-01-23 22:44:59 +00001363
Chris Wilson614654a2020-04-03 13:01:50 +01001364 if (i915_vma_is_pinned(vma)) {
1365 vma_print_allocator(vma, "is pinned");
1366 return -EAGAIN;
1367 }
1368
1369 if (i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND))
1370 /* XXX not always required: nop_clear_range */
1371 wakeref = intel_runtime_pm_get(&vm->i915->runtime_pm);
1372
Chris Wilsond0024912020-03-26 14:27:27 +00001373 err = mutex_lock_interruptible_nested(&vma->vm->mutex, !wakeref);
Chris Wilson28507482019-10-04 14:39:58 +01001374 if (err)
Chris Wilsond62f416f2020-01-23 22:44:59 +00001375 goto out_rpm;
Chris Wilson28507482019-10-04 14:39:58 +01001376
1377 err = __i915_vma_unbind(vma);
1378 mutex_unlock(&vm->mutex);
1379
Chris Wilsond62f416f2020-01-23 22:44:59 +00001380out_rpm:
Chris Wilsonc0e60342020-01-10 14:44:18 +00001381 if (wakeref)
1382 intel_runtime_pm_put(&vm->i915->runtime_pm, wakeref);
Chris Wilson28507482019-10-04 14:39:58 +01001383 return err;
1384}
1385
Chris Wilson1aff1902019-08-02 22:21:36 +01001386struct i915_vma *i915_vma_make_unshrinkable(struct i915_vma *vma)
1387{
1388 i915_gem_object_make_unshrinkable(vma->obj);
1389 return vma;
1390}
1391
1392void i915_vma_make_shrinkable(struct i915_vma *vma)
1393{
1394 i915_gem_object_make_shrinkable(vma->obj);
1395}
1396
1397void i915_vma_make_purgeable(struct i915_vma *vma)
1398{
1399 i915_gem_object_make_purgeable(vma->obj);
1400}
1401
Chris Wilsone3c7a1c2017-02-13 17:15:45 +00001402#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1403#include "selftests/i915_vma.c"
1404#endif
Chris Wilson13f1bfd2019-02-28 10:20:34 +00001405
Daniel Vetter64fc7cc2021-07-27 14:10:35 +02001406void i915_vma_module_exit(void)
Chris Wilson103b76ee2019-03-05 21:38:30 +00001407{
Daniel Vetter64fc7cc2021-07-27 14:10:35 +02001408 kmem_cache_destroy(slab_vmas);
Chris Wilson103b76ee2019-03-05 21:38:30 +00001409}
1410
Daniel Vetter64fc7cc2021-07-27 14:10:35 +02001411int __init i915_vma_module_init(void)
Chris Wilson13f1bfd2019-02-28 10:20:34 +00001412{
Daniel Vetter64fc7cc2021-07-27 14:10:35 +02001413 slab_vmas = KMEM_CACHE(i915_vma, SLAB_HWCACHE_ALIGN);
1414 if (!slab_vmas)
Chris Wilson13f1bfd2019-02-28 10:20:34 +00001415 return -ENOMEM;
1416
1417 return 0;
1418}