Merge branch 'core-objtool-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-block.git] / drivers / gpu / drm / i915 / i915_vma.c
CommitLineData
b42fe9ca
JL
1/*
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 */
10195b1e 24
09480072 25#include <linux/sched/mm.h>
df0566a6 26#include <drm/drm_gem.h>
112ed2d3 27
df0566a6
JN
28#include "display/intel_frontbuffer.h"
29
30#include "gt/intel_engine.h"
ccd20945 31#include "gt/intel_engine_heartbeat.h"
a1c8a09e 32#include "gt/intel_gt.h"
ccd20945 33#include "gt/intel_gt_requests.h"
b42fe9ca
JL
34
35#include "i915_drv.h"
103b76ee 36#include "i915_globals.h"
2850748e 37#include "i915_sw_fence_work.h"
a09d9a80 38#include "i915_trace.h"
df0566a6 39#include "i915_vma.h"
b42fe9ca 40
13f1bfd3 41static struct i915_global_vma {
103b76ee 42 struct i915_global base;
13f1bfd3
CW
43 struct kmem_cache *slab_vmas;
44} global;
45
46struct i915_vma *i915_vma_alloc(void)
47{
48 return kmem_cache_zalloc(global.slab_vmas, GFP_KERNEL);
49}
50
51void i915_vma_free(struct i915_vma *vma)
52{
53 return kmem_cache_free(global.slab_vmas, vma);
54}
55
1eca65d9 56#if IS_ENABLED(CONFIG_DRM_I915_ERRLOG_GEM) && IS_ENABLED(CONFIG_DRM_DEBUG_MM)
10195b1e
CW
57
58#include <linux/stackdepot.h>
59
60static void vma_print_allocator(struct i915_vma *vma, const char *reason)
61{
487f3c7f
TG
62 unsigned long *entries;
63 unsigned int nr_entries;
10195b1e
CW
64 char buf[512];
65
66 if (!vma->node.stack) {
67 DRM_DEBUG_DRIVER("vma.node [%08llx + %08llx] %s: unknown owner\n",
68 vma->node.start, vma->node.size, reason);
69 return;
70 }
71
487f3c7f
TG
72 nr_entries = stack_depot_fetch(vma->node.stack, &entries);
73 stack_trace_snprint(buf, sizeof(buf), entries, nr_entries, 0);
10195b1e
CW
74 DRM_DEBUG_DRIVER("vma.node [%08llx + %08llx] %s: inserted at %s\n",
75 vma->node.start, vma->node.size, reason, buf);
76}
77
78#else
79
80static void vma_print_allocator(struct i915_vma *vma, const char *reason)
81{
82}
83
84#endif
85
12c255b5 86static inline struct i915_vma *active_to_vma(struct i915_active *ref)
b42fe9ca 87{
12c255b5
CW
88 return container_of(ref, typeof(struct i915_vma), active);
89}
1ab22356 90
12c255b5
CW
91static int __i915_vma_active(struct i915_active *ref)
92{
2833ddcc 93 return i915_vma_tryget(active_to_vma(ref)) ? 0 : -ENOENT;
12c255b5
CW
94}
95
274cbf20 96__i915_active_call
12c255b5
CW
97static void __i915_vma_retire(struct i915_active *ref)
98{
99 i915_vma_put(active_to_vma(ref));
b42fe9ca
JL
100}
101
b42fe9ca 102static struct i915_vma *
a01cb37a
CW
103vma_create(struct drm_i915_gem_object *obj,
104 struct i915_address_space *vm,
105 const struct i915_ggtt_view *view)
b42fe9ca
JL
106{
107 struct i915_vma *vma;
108 struct rb_node *rb, **p;
b42fe9ca 109
e1cc3db0 110 /* The aliasing_ppgtt should never be used directly! */
71e51ca8 111 GEM_BUG_ON(vm == &vm->gt->ggtt->alias->vm);
e1cc3db0 112
13f1bfd3 113 vma = i915_vma_alloc();
b42fe9ca
JL
114 if (vma == NULL)
115 return ERR_PTR(-ENOMEM);
116
76f9764c 117 kref_init(&vma->ref);
2850748e
CW
118 mutex_init(&vma->pages_mutex);
119 vma->vm = i915_vm_get(vm);
93f2cde2 120 vma->ops = &vm->vma_ops;
b42fe9ca 121 vma->obj = obj;
ef78f7b1 122 vma->resv = obj->base.resv;
b42fe9ca 123 vma->size = obj->base.size;
f51455d4 124 vma->display_alignment = I915_GTT_MIN_ALIGNMENT;
b42fe9ca 125
b1e3177b 126 i915_active_init(&vma->active, __i915_vma_active, __i915_vma_retire);
155ab883 127
09480072
CW
128 /* Declare ourselves safe for use inside shrinkers */
129 if (IS_ENABLED(CONFIG_LOCKDEP)) {
130 fs_reclaim_acquire(GFP_KERNEL);
131 might_lock(&vma->active.mutex);
132 fs_reclaim_release(GFP_KERNEL);
133 }
134
155ab883
CW
135 INIT_LIST_HEAD(&vma->closed_link);
136
7c518460 137 if (view && view->type != I915_GGTT_VIEW_NORMAL) {
b42fe9ca
JL
138 vma->ggtt_view = *view;
139 if (view->type == I915_GGTT_VIEW_PARTIAL) {
07e19ea4 140 GEM_BUG_ON(range_overflows_t(u64,
8bab1193
CW
141 view->partial.offset,
142 view->partial.size,
07e19ea4 143 obj->base.size >> PAGE_SHIFT));
8bab1193 144 vma->size = view->partial.size;
b42fe9ca 145 vma->size <<= PAGE_SHIFT;
7e7367d3 146 GEM_BUG_ON(vma->size > obj->base.size);
b42fe9ca 147 } else if (view->type == I915_GGTT_VIEW_ROTATED) {
8bab1193 148 vma->size = intel_rotation_info_size(&view->rotated);
b42fe9ca 149 vma->size <<= PAGE_SHIFT;
1a74fc0b
VS
150 } else if (view->type == I915_GGTT_VIEW_REMAPPED) {
151 vma->size = intel_remapped_info_size(&view->remapped);
152 vma->size <<= PAGE_SHIFT;
b42fe9ca
JL
153 }
154 }
155
1fcdaa7e
CW
156 if (unlikely(vma->size > vm->total))
157 goto err_vma;
158
b00ddb27
CW
159 GEM_BUG_ON(!IS_ALIGNED(vma->size, I915_GTT_PAGE_SIZE));
160
b42fe9ca 161 if (i915_is_ggtt(vm)) {
1fcdaa7e
CW
162 if (unlikely(overflows_type(vma->size, u32)))
163 goto err_vma;
164
91d4e0aa
CW
165 vma->fence_size = i915_gem_fence_size(vm->i915, vma->size,
166 i915_gem_object_get_tiling(obj),
167 i915_gem_object_get_stride(obj));
1fcdaa7e
CW
168 if (unlikely(vma->fence_size < vma->size || /* overflow */
169 vma->fence_size > vm->total))
170 goto err_vma;
171
f51455d4 172 GEM_BUG_ON(!IS_ALIGNED(vma->fence_size, I915_GTT_MIN_ALIGNMENT));
944397f0 173
91d4e0aa
CW
174 vma->fence_alignment = i915_gem_fence_alignment(vm->i915, vma->size,
175 i915_gem_object_get_tiling(obj),
176 i915_gem_object_get_stride(obj));
944397f0
CW
177 GEM_BUG_ON(!is_power_of_2(vma->fence_alignment));
178
4dd2fbbf 179 __set_bit(I915_VMA_GGTT_BIT, __i915_vma_flags(vma));
b42fe9ca
JL
180 }
181
528cbd17
CW
182 spin_lock(&obj->vma.lock);
183
b42fe9ca 184 rb = NULL;
528cbd17 185 p = &obj->vma.tree.rb_node;
b42fe9ca
JL
186 while (*p) {
187 struct i915_vma *pos;
528cbd17 188 long cmp;
b42fe9ca
JL
189
190 rb = *p;
191 pos = rb_entry(rb, struct i915_vma, obj_node);
528cbd17
CW
192
193 /*
194 * If the view already exists in the tree, another thread
195 * already created a matching vma, so return the older instance
196 * and dispose of ours.
197 */
198 cmp = i915_vma_compare(pos, vm, view);
199 if (cmp == 0) {
200 spin_unlock(&obj->vma.lock);
13f1bfd3 201 i915_vma_free(vma);
528cbd17
CW
202 return pos;
203 }
204
205 if (cmp < 0)
b42fe9ca
JL
206 p = &rb->rb_right;
207 else
208 p = &rb->rb_left;
209 }
210 rb_link_node(&vma->obj_node, rb, p);
528cbd17
CW
211 rb_insert_color(&vma->obj_node, &obj->vma.tree);
212
213 if (i915_vma_is_ggtt(vma))
214 /*
215 * We put the GGTT vma at the start of the vma-list, followed
216 * by the ppGGTT vma. This allows us to break early when
217 * iterating over only the GGTT vma for an object, see
218 * for_each_ggtt_vma()
219 */
220 list_add(&vma->obj_link, &obj->vma.list);
221 else
222 list_add_tail(&vma->obj_link, &obj->vma.list);
223
224 spin_unlock(&obj->vma.lock);
09d7e46b 225
b42fe9ca 226 return vma;
1fcdaa7e
CW
227
228err_vma:
13f1bfd3 229 i915_vma_free(vma);
1fcdaa7e 230 return ERR_PTR(-E2BIG);
b42fe9ca
JL
231}
232
481a6f7d
CW
233static struct i915_vma *
234vma_lookup(struct drm_i915_gem_object *obj,
235 struct i915_address_space *vm,
236 const struct i915_ggtt_view *view)
718659a6
CW
237{
238 struct rb_node *rb;
239
528cbd17 240 rb = obj->vma.tree.rb_node;
718659a6
CW
241 while (rb) {
242 struct i915_vma *vma = rb_entry(rb, struct i915_vma, obj_node);
243 long cmp;
244
245 cmp = i915_vma_compare(vma, vm, view);
246 if (cmp == 0)
247 return vma;
248
249 if (cmp < 0)
250 rb = rb->rb_right;
251 else
252 rb = rb->rb_left;
253 }
254
255 return NULL;
256}
257
718659a6
CW
258/**
259 * i915_vma_instance - return the singleton instance of the VMA
260 * @obj: parent &struct drm_i915_gem_object to be mapped
261 * @vm: address space in which the mapping is located
262 * @view: additional mapping requirements
263 *
264 * i915_vma_instance() looks up an existing VMA of the @obj in the @vm with
265 * the same @view characteristics. If a match is not found, one is created.
266 * Once created, the VMA is kept until either the object is freed, or the
267 * address space is closed.
268 *
718659a6
CW
269 * Returns the vma, or an error pointer.
270 */
271struct i915_vma *
272i915_vma_instance(struct drm_i915_gem_object *obj,
273 struct i915_address_space *vm,
274 const struct i915_ggtt_view *view)
275{
276 struct i915_vma *vma;
277
718659a6 278 GEM_BUG_ON(view && !i915_is_ggtt(vm));
2850748e 279 GEM_BUG_ON(!atomic_read(&vm->open));
718659a6 280
528cbd17 281 spin_lock(&obj->vma.lock);
481a6f7d 282 vma = vma_lookup(obj, vm, view);
528cbd17
CW
283 spin_unlock(&obj->vma.lock);
284
285 /* vma_create() will resolve the race if another creates the vma */
286 if (unlikely(!vma))
a01cb37a 287 vma = vma_create(obj, vm, view);
718659a6 288
4ea9527c 289 GEM_BUG_ON(!IS_ERR(vma) && i915_vma_compare(vma, vm, view));
718659a6
CW
290 return vma;
291}
292
2850748e
CW
293struct i915_vma_work {
294 struct dma_fence_work base;
295 struct i915_vma *vma;
54d7195f 296 struct drm_i915_gem_object *pinned;
2850748e
CW
297 enum i915_cache_level cache_level;
298 unsigned int flags;
299};
300
301static int __vma_bind(struct dma_fence_work *work)
302{
303 struct i915_vma_work *vw = container_of(work, typeof(*vw), base);
304 struct i915_vma *vma = vw->vma;
305 int err;
306
307 err = vma->ops->bind_vma(vma, vw->cache_level, vw->flags);
308 if (err)
309 atomic_or(I915_VMA_ERROR, &vma->flags);
310
2850748e
CW
311 return err;
312}
313
54d7195f
CW
314static void __vma_release(struct dma_fence_work *work)
315{
316 struct i915_vma_work *vw = container_of(work, typeof(*vw), base);
317
318 if (vw->pinned)
319 __i915_gem_object_unpin_pages(vw->pinned);
320}
321
2850748e
CW
322static const struct dma_fence_work_ops bind_ops = {
323 .name = "bind",
324 .work = __vma_bind,
54d7195f 325 .release = __vma_release,
2850748e
CW
326};
327
328struct i915_vma_work *i915_vma_work(void)
329{
330 struct i915_vma_work *vw;
331
332 vw = kzalloc(sizeof(*vw), GFP_KERNEL);
333 if (!vw)
334 return NULL;
335
336 dma_fence_work_init(&vw->base, &bind_ops);
337 vw->base.dma.error = -EAGAIN; /* disable the worker by default */
338
339 return vw;
340}
341
b42fe9ca
JL
342/**
343 * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
344 * @vma: VMA to map
345 * @cache_level: mapping cache level
346 * @flags: flags like global or local mapping
2850748e 347 * @work: preallocated worker for allocating and binding the PTE
b42fe9ca
JL
348 *
349 * DMA addresses are taken from the scatter-gather table of this object (or of
350 * this VMA in case of non-default GGTT views) and PTE entries set up.
351 * Note that DMA addresses are also the only part of the SG table we care about.
352 */
2850748e
CW
353int i915_vma_bind(struct i915_vma *vma,
354 enum i915_cache_level cache_level,
355 u32 flags,
356 struct i915_vma_work *work)
b42fe9ca
JL
357{
358 u32 bind_flags;
359 u32 vma_flags;
360 int ret;
361
aa149431
CW
362 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
363 GEM_BUG_ON(vma->size > vma->node.size);
364
bbb8a9d7
TU
365 if (GEM_DEBUG_WARN_ON(range_overflows(vma->node.start,
366 vma->node.size,
367 vma->vm->total)))
aa149431
CW
368 return -ENODEV;
369
bbb8a9d7 370 if (GEM_DEBUG_WARN_ON(!flags))
b42fe9ca
JL
371 return -EINVAL;
372
2850748e
CW
373 bind_flags = flags;
374 bind_flags &= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND;
b42fe9ca 375
4dd2fbbf
CW
376 vma_flags = atomic_read(&vma->flags);
377 vma_flags &= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND;
b42fe9ca
JL
378 if (flags & PIN_UPDATE)
379 bind_flags |= vma_flags;
380 else
381 bind_flags &= ~vma_flags;
382 if (bind_flags == 0)
383 return 0;
384
fa3f46af
MA
385 GEM_BUG_ON(!vma->pages);
386
6146e6da 387 trace_i915_vma_bind(vma, bind_flags);
2850748e
CW
388 if (work && (bind_flags & ~vma_flags) & vma->vm->bind_async_flags) {
389 work->vma = vma;
390 work->cache_level = cache_level;
391 work->flags = bind_flags | I915_VMA_ALLOC;
392
393 /*
394 * Note we only want to chain up to the migration fence on
395 * the pages (not the object itself). As we don't track that,
396 * yet, we have to use the exclusive fence instead.
397 *
398 * Also note that we do not want to track the async vma as
399 * part of the obj->resv->excl_fence as it only affects
400 * execution and not content or object's backing store lifetime.
401 */
402 GEM_BUG_ON(i915_active_has_exclusive(&vma->active));
403 i915_active_set_exclusive(&vma->active, &work->base.dma);
404 work->base.dma.error = 0; /* enable the queue_work() */
405
54d7195f 406 if (vma->obj) {
2850748e 407 __i915_gem_object_pin_pages(vma->obj);
54d7195f
CW
408 work->pinned = vma->obj;
409 }
2850748e
CW
410 } else {
411 GEM_BUG_ON((bind_flags & ~vma_flags) & vma->vm->bind_async_flags);
412 ret = vma->ops->bind_vma(vma, cache_level, bind_flags);
413 if (ret)
414 return ret;
415 }
b42fe9ca 416
4dd2fbbf 417 atomic_or(bind_flags, &vma->flags);
b42fe9ca
JL
418 return 0;
419}
420
421void __iomem *i915_vma_pin_iomap(struct i915_vma *vma)
422{
423 void __iomem *ptr;
b4563f59 424 int err;
b42fe9ca 425
2850748e 426 if (GEM_WARN_ON(!i915_vma_is_map_and_fenceable(vma))) {
b4563f59
CW
427 err = -ENODEV;
428 goto err;
429 }
b42fe9ca
JL
430
431 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
4dd2fbbf 432 GEM_BUG_ON(!i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND));
b42fe9ca 433
2850748e 434 ptr = READ_ONCE(vma->iomap);
b42fe9ca 435 if (ptr == NULL) {
73ebd503 436 ptr = io_mapping_map_wc(&i915_vm_to_ggtt(vma->vm)->iomap,
b42fe9ca
JL
437 vma->node.start,
438 vma->node.size);
b4563f59
CW
439 if (ptr == NULL) {
440 err = -ENOMEM;
441 goto err;
442 }
b42fe9ca 443
2850748e
CW
444 if (unlikely(cmpxchg(&vma->iomap, NULL, ptr))) {
445 io_mapping_unmap(ptr);
446 ptr = vma->iomap;
447 }
b42fe9ca
JL
448 }
449
450 __i915_vma_pin(vma);
b4563f59 451
3bd40735 452 err = i915_vma_pin_fence(vma);
b4563f59
CW
453 if (err)
454 goto err_unpin;
455
7125397b 456 i915_vma_set_ggtt_write(vma);
a5972e93
CW
457
458 /* NB Access through the GTT requires the device to be awake. */
b42fe9ca 459 return ptr;
b4563f59
CW
460
461err_unpin:
462 __i915_vma_unpin(vma);
463err:
464 return IO_ERR_PTR(err);
465}
466
7125397b
CW
467void i915_vma_flush_writes(struct i915_vma *vma)
468{
2850748e
CW
469 if (i915_vma_unset_ggtt_write(vma))
470 intel_gt_flush_ggtt_writes(vma->vm->gt);
7125397b
CW
471}
472
b4563f59
CW
473void i915_vma_unpin_iomap(struct i915_vma *vma)
474{
b4563f59
CW
475 GEM_BUG_ON(vma->iomap == NULL);
476
7125397b
CW
477 i915_vma_flush_writes(vma);
478
b4563f59
CW
479 i915_vma_unpin_fence(vma);
480 i915_vma_unpin(vma);
b42fe9ca
JL
481}
482
6a2f59e4 483void i915_vma_unpin_and_release(struct i915_vma **p_vma, unsigned int flags)
b42fe9ca
JL
484{
485 struct i915_vma *vma;
486 struct drm_i915_gem_object *obj;
487
488 vma = fetch_and_zero(p_vma);
489 if (!vma)
490 return;
491
492 obj = vma->obj;
520ea7c5 493 GEM_BUG_ON(!obj);
b42fe9ca
JL
494
495 i915_vma_unpin(vma);
496 i915_vma_close(vma);
497
6a2f59e4
CW
498 if (flags & I915_VMA_RELEASE_MAP)
499 i915_gem_object_unpin_map(obj);
500
c017cf6b 501 i915_gem_object_put(obj);
b42fe9ca
JL
502}
503
782a3e9e
CW
504bool i915_vma_misplaced(const struct i915_vma *vma,
505 u64 size, u64 alignment, u64 flags)
b42fe9ca
JL
506{
507 if (!drm_mm_node_allocated(&vma->node))
508 return false;
509
2850748e
CW
510 if (test_bit(I915_VMA_ERROR_BIT, __i915_vma_flags(vma)))
511 return true;
512
b42fe9ca
JL
513 if (vma->node.size < size)
514 return true;
515
f51455d4
CW
516 GEM_BUG_ON(alignment && !is_power_of_2(alignment));
517 if (alignment && !IS_ALIGNED(vma->node.start, alignment))
b42fe9ca
JL
518 return true;
519
520 if (flags & PIN_MAPPABLE && !i915_vma_is_map_and_fenceable(vma))
521 return true;
522
523 if (flags & PIN_OFFSET_BIAS &&
524 vma->node.start < (flags & PIN_OFFSET_MASK))
525 return true;
526
527 if (flags & PIN_OFFSET_FIXED &&
528 vma->node.start != (flags & PIN_OFFSET_MASK))
529 return true;
530
531 return false;
532}
533
534void __i915_vma_set_map_and_fenceable(struct i915_vma *vma)
535{
b42fe9ca 536 bool mappable, fenceable;
b42fe9ca 537
944397f0
CW
538 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
539 GEM_BUG_ON(!vma->fence_size);
b42fe9ca 540
944397f0 541 fenceable = (vma->node.size >= vma->fence_size &&
f51455d4 542 IS_ALIGNED(vma->node.start, vma->fence_alignment));
944397f0
CW
543
544 mappable = vma->node.start + vma->fence_size <= i915_vm_to_ggtt(vma->vm)->mappable_end;
545
546 if (mappable && fenceable)
4dd2fbbf 547 set_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma));
b42fe9ca 548 else
4dd2fbbf 549 clear_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma));
b42fe9ca
JL
550}
551
33dd8899 552bool i915_gem_valid_gtt_space(struct i915_vma *vma, unsigned long color)
7d1d9aea
CW
553{
554 struct drm_mm_node *node = &vma->node;
b42fe9ca
JL
555 struct drm_mm_node *other;
556
557 /*
558 * On some machines we have to be careful when putting differing types
559 * of snoopable memory together to avoid the prefetcher crossing memory
560 * domains and dying. During vm initialisation, we decide whether or not
561 * these constraints apply and set the drm_mm.color_adjust
562 * appropriately.
563 */
33dd8899 564 if (!i915_vm_has_cache_coloring(vma->vm))
b42fe9ca
JL
565 return true;
566
7d1d9aea
CW
567 /* Only valid to be called on an already inserted vma */
568 GEM_BUG_ON(!drm_mm_node_allocated(node));
569 GEM_BUG_ON(list_empty(&node->node_list));
b42fe9ca 570
7d1d9aea 571 other = list_prev_entry(node, node_list);
33dd8899 572 if (i915_node_color_differs(other, color) &&
1e0a96e5 573 !drm_mm_hole_follows(other))
b42fe9ca
JL
574 return false;
575
7d1d9aea 576 other = list_next_entry(node, node_list);
33dd8899 577 if (i915_node_color_differs(other, color) &&
1e0a96e5 578 !drm_mm_hole_follows(node))
b42fe9ca
JL
579 return false;
580
581 return true;
582}
583
83d317ad
CW
584static void assert_bind_count(const struct drm_i915_gem_object *obj)
585{
586 /*
587 * Combine the assertion that the object is bound and that we have
588 * pinned its pages. But we should never have bound the object
589 * more than we have pinned its pages. (For complete accuracy, we
590 * assume that no else is pinning the pages, but as a rough assertion
591 * that we will not run into problems later, this will do!)
592 */
ecab9be1 593 GEM_BUG_ON(atomic_read(&obj->mm.pages_pin_count) < atomic_read(&obj->bind_count));
83d317ad
CW
594}
595
b42fe9ca
JL
596/**
597 * i915_vma_insert - finds a slot for the vma in its address space
598 * @vma: the vma
599 * @size: requested size in bytes (can be larger than the VMA)
600 * @alignment: required alignment
601 * @flags: mask of PIN_* flags to use
602 *
603 * First we try to allocate some free space that meets the requirements for
604 * the VMA. Failiing that, if the flags permit, it will evict an old VMA,
605 * preferrably the oldest idle entry to make room for the new VMA.
606 *
607 * Returns:
608 * 0 on success, negative error code otherwise.
609 */
610static int
611i915_vma_insert(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
612{
33dd8899 613 unsigned long color;
b42fe9ca
JL
614 u64 start, end;
615 int ret;
616
010e3e68 617 GEM_BUG_ON(i915_vma_is_closed(vma));
4dd2fbbf 618 GEM_BUG_ON(i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND));
b42fe9ca
JL
619 GEM_BUG_ON(drm_mm_node_allocated(&vma->node));
620
621 size = max(size, vma->size);
944397f0
CW
622 alignment = max(alignment, vma->display_alignment);
623 if (flags & PIN_MAPPABLE) {
624 size = max_t(typeof(size), size, vma->fence_size);
625 alignment = max_t(typeof(alignment),
626 alignment, vma->fence_alignment);
627 }
b42fe9ca 628
f51455d4
CW
629 GEM_BUG_ON(!IS_ALIGNED(size, I915_GTT_PAGE_SIZE));
630 GEM_BUG_ON(!IS_ALIGNED(alignment, I915_GTT_MIN_ALIGNMENT));
631 GEM_BUG_ON(!is_power_of_2(alignment));
632
b42fe9ca 633 start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
f51455d4 634 GEM_BUG_ON(!IS_ALIGNED(start, I915_GTT_PAGE_SIZE));
b42fe9ca
JL
635
636 end = vma->vm->total;
637 if (flags & PIN_MAPPABLE)
2850748e 638 end = min_t(u64, end, i915_vm_to_ggtt(vma->vm)->mappable_end);
b42fe9ca 639 if (flags & PIN_ZONE_4G)
f51455d4
CW
640 end = min_t(u64, end, (1ULL << 32) - I915_GTT_PAGE_SIZE);
641 GEM_BUG_ON(!IS_ALIGNED(end, I915_GTT_PAGE_SIZE));
b42fe9ca
JL
642
643 /* If binding the object/GGTT view requires more space than the entire
644 * aperture has, reject it early before evicting everything in a vain
645 * attempt to find space.
646 */
647 if (size > end) {
520ea7c5
CW
648 DRM_DEBUG("Attempting to bind an object larger than the aperture: request=%llu > %s aperture=%llu\n",
649 size, flags & PIN_MAPPABLE ? "mappable" : "total",
b42fe9ca 650 end);
2889caa9 651 return -ENOSPC;
b42fe9ca
JL
652 }
653
33dd8899 654 color = 0;
2850748e
CW
655 if (vma->obj && i915_vm_has_cache_coloring(vma->vm))
656 color = vma->obj->cache_level;
fa3f46af 657
b42fe9ca
JL
658 if (flags & PIN_OFFSET_FIXED) {
659 u64 offset = flags & PIN_OFFSET_MASK;
f51455d4 660 if (!IS_ALIGNED(offset, alignment) ||
2850748e
CW
661 range_overflows(offset, size, end))
662 return -EINVAL;
b42fe9ca 663
625d988a 664 ret = i915_gem_gtt_reserve(vma->vm, &vma->node,
33dd8899 665 size, offset, color,
625d988a
CW
666 flags);
667 if (ret)
2850748e 668 return ret;
b42fe9ca 669 } else {
7464284b
MA
670 /*
671 * We only support huge gtt pages through the 48b PPGTT,
672 * however we also don't want to force any alignment for
673 * objects which need to be tightly packed into the low 32bits.
674 *
675 * Note that we assume that GGTT are limited to 4GiB for the
676 * forseeable future. See also i915_ggtt_offset().
677 */
678 if (upper_32_bits(end - 1) &&
679 vma->page_sizes.sg > I915_GTT_PAGE_SIZE) {
855822be
MA
680 /*
681 * We can't mix 64K and 4K PTEs in the same page-table
682 * (2M block), and so to avoid the ugliness and
683 * complexity of coloring we opt for just aligning 64K
684 * objects to 2M.
685 */
7464284b 686 u64 page_alignment =
855822be
MA
687 rounddown_pow_of_two(vma->page_sizes.sg |
688 I915_GTT_PAGE_SIZE_2M);
7464284b 689
bef27bdb
CW
690 /*
691 * Check we don't expand for the limited Global GTT
692 * (mappable aperture is even more precious!). This
693 * also checks that we exclude the aliasing-ppgtt.
694 */
695 GEM_BUG_ON(i915_vma_is_ggtt(vma));
696
7464284b 697 alignment = max(alignment, page_alignment);
855822be
MA
698
699 if (vma->page_sizes.sg & I915_GTT_PAGE_SIZE_64K)
700 size = round_up(size, I915_GTT_PAGE_SIZE_2M);
7464284b
MA
701 }
702
e007b19d 703 ret = i915_gem_gtt_insert(vma->vm, &vma->node,
33dd8899 704 size, alignment, color,
e007b19d
CW
705 start, end, flags);
706 if (ret)
2850748e 707 return ret;
b42fe9ca
JL
708
709 GEM_BUG_ON(vma->node.start < start);
710 GEM_BUG_ON(vma->node.start + vma->node.size > end);
711 }
44a0ec0d 712 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
33dd8899 713 GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, color));
b42fe9ca 714
520ea7c5 715 if (vma->obj) {
dde01d94
CW
716 struct drm_i915_gem_object *obj = vma->obj;
717
718 atomic_inc(&obj->bind_count);
719 assert_bind_count(obj);
520ea7c5 720 }
dde01d94 721 list_add_tail(&vma->vm_link, &vma->vm->bound_list);
b42fe9ca
JL
722
723 return 0;
b42fe9ca
JL
724}
725
31c7effa 726static void
dde01d94 727i915_vma_detach(struct i915_vma *vma)
31c7effa 728{
31c7effa 729 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
4dd2fbbf 730 GEM_BUG_ON(i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND));
31c7effa 731
520ea7c5 732 /*
dde01d94
CW
733 * And finally now the object is completely decoupled from this
734 * vma, we can drop its hold on the backing storage and allow
735 * it to be reaped by the shrinker.
31c7effa 736 */
dde01d94 737 list_del(&vma->vm_link);
520ea7c5
CW
738 if (vma->obj) {
739 struct drm_i915_gem_object *obj = vma->obj;
d82b4b26 740
520ea7c5 741 assert_bind_count(obj);
dde01d94 742 atomic_dec(&obj->bind_count);
520ea7c5 743 }
31c7effa
CW
744}
745
2850748e 746static bool try_qad_pin(struct i915_vma *vma, unsigned int flags)
b42fe9ca 747{
2850748e
CW
748 unsigned int bound;
749 bool pinned = true;
b42fe9ca 750
2850748e
CW
751 bound = atomic_read(&vma->flags);
752 do {
753 if (unlikely(flags & ~bound))
754 return false;
b42fe9ca 755
2850748e
CW
756 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;
792
793 if (atomic_add_unless(&vma->pages_count, 1, 0))
794 return 0;
795
796 /* Allocations ahoy! */
797 if (mutex_lock_interruptible(&vma->pages_mutex))
798 return -EINTR;
799
800 if (!atomic_read(&vma->pages_count)) {
801 if (vma->obj) {
802 err = i915_gem_object_pin_pages(vma->obj);
803 if (err)
804 goto unlock;
805 }
806
807 err = vma->ops->set_pages(vma);
56184a20
CW
808 if (err) {
809 if (vma->obj)
810 i915_gem_object_unpin_pages(vma->obj);
2850748e 811 goto unlock;
56184a20 812 }
b42fe9ca 813 }
2850748e 814 atomic_inc(&vma->pages_count);
b42fe9ca 815
2850748e
CW
816unlock:
817 mutex_unlock(&vma->pages_mutex);
818
819 return err;
820}
821
822static void __vma_put_pages(struct i915_vma *vma, unsigned int count)
823{
824 /* We allocate under vma_get_pages, so beware the shrinker */
825 mutex_lock_nested(&vma->pages_mutex, SINGLE_DEPTH_NESTING);
826 GEM_BUG_ON(atomic_read(&vma->pages_count) < count);
827 if (atomic_sub_return(count, &vma->pages_count) == 0) {
828 vma->ops->clear_pages(vma);
829 GEM_BUG_ON(vma->pages);
830 if (vma->obj)
831 i915_gem_object_unpin_pages(vma->obj);
b42fe9ca 832 }
2850748e
CW
833 mutex_unlock(&vma->pages_mutex);
834}
b42fe9ca 835
2850748e
CW
836static void vma_put_pages(struct i915_vma *vma)
837{
838 if (atomic_add_unless(&vma->pages_count, -1, 1))
839 return;
840
841 __vma_put_pages(vma, 1);
842}
843
844static void vma_unbind_pages(struct i915_vma *vma)
845{
846 unsigned int count;
847
848 lockdep_assert_held(&vma->vm->mutex);
849
850 /* The upper portion of pages_count is the number of bindings */
851 count = atomic_read(&vma->pages_count);
852 count >>= I915_VMA_PAGES_BIAS;
853 GEM_BUG_ON(!count);
854
855 __vma_put_pages(vma, count | count << I915_VMA_PAGES_BIAS);
856}
857
858int i915_vma_pin(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
859{
860 struct i915_vma_work *work = NULL;
c0e60347 861 intel_wakeref_t wakeref = 0;
2850748e
CW
862 unsigned int bound;
863 int err;
864
865 BUILD_BUG_ON(PIN_GLOBAL != I915_VMA_GLOBAL_BIND);
866 BUILD_BUG_ON(PIN_USER != I915_VMA_LOCAL_BIND);
867
868 GEM_BUG_ON(flags & PIN_UPDATE);
869 GEM_BUG_ON(!(flags & (PIN_USER | PIN_GLOBAL)));
870
871 /* First try and grab the pin without rebinding the vma */
872 if (try_qad_pin(vma, flags & I915_VMA_BIND_MASK))
873 return 0;
874
875 err = vma_get_pages(vma);
876 if (err)
877 return err;
878
879 if (flags & vma->vm->bind_async_flags) {
880 work = i915_vma_work();
881 if (!work) {
882 err = -ENOMEM;
883 goto err_pages;
884 }
885 }
886
c0e60347
CW
887 if (flags & PIN_GLOBAL)
888 wakeref = intel_runtime_pm_get(&vma->vm->i915->runtime_pm);
889
2850748e
CW
890 /* No more allocations allowed once we hold vm->mutex */
891 err = mutex_lock_interruptible(&vma->vm->mutex);
892 if (err)
893 goto err_fence;
894
895 bound = atomic_read(&vma->flags);
896 if (unlikely(bound & I915_VMA_ERROR)) {
897 err = -ENOMEM;
898 goto err_unlock;
899 }
900
901 if (unlikely(!((bound + 1) & I915_VMA_PIN_MASK))) {
902 err = -EAGAIN; /* pins are meant to be fairly temporary */
903 goto err_unlock;
904 }
905
906 if (unlikely(!(flags & ~bound & I915_VMA_BIND_MASK))) {
907 __i915_vma_pin(vma);
908 goto err_unlock;
909 }
910
911 err = i915_active_acquire(&vma->active);
912 if (err)
913 goto err_unlock;
914
915 if (!(bound & I915_VMA_BIND_MASK)) {
916 err = i915_vma_insert(vma, size, alignment, flags);
917 if (err)
918 goto err_active;
919
920 if (i915_is_ggtt(vma->vm))
921 __i915_vma_set_map_and_fenceable(vma);
922 }
b42fe9ca 923
2850748e
CW
924 GEM_BUG_ON(!vma->pages);
925 err = i915_vma_bind(vma,
926 vma->obj ? vma->obj->cache_level : 0,
927 flags, work);
928 if (err)
929 goto err_remove;
d36caeea 930
2850748e
CW
931 /* There should only be at most 2 active bindings (user, global) */
932 GEM_BUG_ON(bound + I915_VMA_PAGES_ACTIVE < bound);
933 atomic_add(I915_VMA_PAGES_ACTIVE, &vma->pages_count);
934 list_move_tail(&vma->vm_link, &vma->vm->bound_list);
b42fe9ca 935
2850748e
CW
936 __i915_vma_pin(vma);
937 GEM_BUG_ON(!i915_vma_is_pinned(vma));
938 GEM_BUG_ON(!i915_vma_is_bound(vma, flags));
b42fe9ca 939 GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags));
b42fe9ca 940
31c7effa 941err_remove:
dde01d94
CW
942 if (!i915_vma_is_bound(vma, I915_VMA_BIND_MASK)) {
943 i915_vma_detach(vma);
944 drm_mm_remove_node(&vma->node);
945 }
2850748e
CW
946err_active:
947 i915_active_release(&vma->active);
948err_unlock:
949 mutex_unlock(&vma->vm->mutex);
950err_fence:
951 if (work)
952 dma_fence_work_commit(&work->base);
c0e60347
CW
953 if (wakeref)
954 intel_runtime_pm_put(&vma->vm->i915->runtime_pm, wakeref);
2850748e
CW
955err_pages:
956 vma_put_pages(vma);
957 return err;
b42fe9ca
JL
958}
959
ccd20945
CW
960static void flush_idle_contexts(struct intel_gt *gt)
961{
962 struct intel_engine_cs *engine;
963 enum intel_engine_id id;
964
965 for_each_engine(engine, gt, id)
966 intel_engine_flush_barriers(engine);
967
968 intel_gt_wait_for_idle(gt, MAX_SCHEDULE_TIMEOUT);
969}
970
971int i915_ggtt_pin(struct i915_vma *vma, u32 align, unsigned int flags)
972{
973 struct i915_address_space *vm = vma->vm;
974 int err;
975
976 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
977
978 do {
979 err = i915_vma_pin(vma, 0, align, flags | PIN_GLOBAL);
980 if (err != -ENOSPC)
981 return err;
982
983 /* Unlike i915_vma_pin, we don't take no for an answer! */
984 flush_idle_contexts(vm->gt);
985 if (mutex_lock_interruptible(&vm->mutex) == 0) {
986 i915_gem_evict_vm(vm);
987 mutex_unlock(&vm->mutex);
988 }
989 } while (1);
990}
991
3365e226
CW
992void i915_vma_close(struct i915_vma *vma)
993{
71e51ca8 994 struct intel_gt *gt = vma->vm->gt;
155ab883 995 unsigned long flags;
3365e226
CW
996
997 GEM_BUG_ON(i915_vma_is_closed(vma));
3365e226
CW
998
999 /*
1000 * We defer actually closing, unbinding and destroying the VMA until
1001 * the next idle point, or if the object is freed in the meantime. By
1002 * postponing the unbind, we allow for it to be resurrected by the
1003 * client, avoiding the work required to rebind the VMA. This is
1004 * advantageous for DRI, where the client/server pass objects
1005 * between themselves, temporarily opening a local VMA to the
1006 * object, and then closing it again. The same object is then reused
1007 * on the next frame (or two, depending on the depth of the swap queue)
1008 * causing us to rebind the VMA once more. This ends up being a lot
1009 * of wasted work for the steady state.
1010 */
71e51ca8
CW
1011 spin_lock_irqsave(&gt->closed_lock, flags);
1012 list_add(&vma->closed_link, &gt->closed_vma);
1013 spin_unlock_irqrestore(&gt->closed_lock, flags);
3365e226
CW
1014}
1015
155ab883 1016static void __i915_vma_remove_closed(struct i915_vma *vma)
3365e226 1017{
71e51ca8 1018 struct intel_gt *gt = vma->vm->gt;
3365e226 1019
71e51ca8 1020 spin_lock_irq(&gt->closed_lock);
155ab883 1021 list_del_init(&vma->closed_link);
71e51ca8 1022 spin_unlock_irq(&gt->closed_lock);
155ab883
CW
1023}
1024
1025void i915_vma_reopen(struct i915_vma *vma)
1026{
2850748e
CW
1027 if (i915_vma_is_closed(vma))
1028 __i915_vma_remove_closed(vma);
3365e226
CW
1029}
1030
76f9764c 1031void i915_vma_release(struct kref *ref)
b42fe9ca 1032{
76f9764c
CW
1033 struct i915_vma *vma = container_of(ref, typeof(*vma), ref);
1034
2850748e
CW
1035 if (drm_mm_node_allocated(&vma->node)) {
1036 mutex_lock(&vma->vm->mutex);
1037 atomic_and(~I915_VMA_PIN_MASK, &vma->flags);
1038 WARN_ON(__i915_vma_unbind(vma));
1039 mutex_unlock(&vma->vm->mutex);
1040 GEM_BUG_ON(drm_mm_node_allocated(&vma->node));
1041 }
1042 GEM_BUG_ON(i915_vma_is_active(vma));
b42fe9ca 1043
528cbd17
CW
1044 if (vma->obj) {
1045 struct drm_i915_gem_object *obj = vma->obj;
1046
1047 spin_lock(&obj->vma.lock);
1048 list_del(&vma->obj_link);
2850748e 1049 rb_erase(&vma->obj_node, &obj->vma.tree);
528cbd17
CW
1050 spin_unlock(&obj->vma.lock);
1051 }
010e3e68 1052
155ab883 1053 __i915_vma_remove_closed(vma);
2850748e 1054 i915_vm_put(vma->vm);
3365e226 1055
2850748e
CW
1056 i915_active_fini(&vma->active);
1057 i915_vma_free(vma);
3365e226
CW
1058}
1059
71e51ca8 1060void i915_vma_parked(struct intel_gt *gt)
3365e226
CW
1061{
1062 struct i915_vma *vma, *next;
b42fe9ca 1063
71e51ca8
CW
1064 spin_lock_irq(&gt->closed_lock);
1065 list_for_each_entry_safe(vma, next, &gt->closed_vma, closed_link) {
2850748e
CW
1066 struct drm_i915_gem_object *obj = vma->obj;
1067 struct i915_address_space *vm = vma->vm;
1068
1069 /* XXX All to avoid keeping a reference on i915_vma itself */
1070
1071 if (!kref_get_unless_zero(&obj->base.refcount))
1072 continue;
1073
77853186
CW
1074 if (i915_vm_tryopen(vm)) {
1075 list_del_init(&vma->closed_link);
1076 } else {
2850748e
CW
1077 i915_gem_object_put(obj);
1078 obj = NULL;
1079 }
1080
71e51ca8 1081 spin_unlock_irq(&gt->closed_lock);
155ab883 1082
2850748e 1083 if (obj) {
76f9764c 1084 __i915_vma_put(vma);
2850748e
CW
1085 i915_gem_object_put(obj);
1086 }
3365e226 1087
2850748e
CW
1088 i915_vm_close(vm);
1089
1090 /* Restart after dropping lock */
71e51ca8
CW
1091 spin_lock_irq(&gt->closed_lock);
1092 next = list_first_entry(&gt->closed_vma,
2850748e 1093 typeof(*next), closed_link);
155ab883 1094 }
71e51ca8 1095 spin_unlock_irq(&gt->closed_lock);
b42fe9ca
JL
1096}
1097
1098static void __i915_vma_iounmap(struct i915_vma *vma)
1099{
1100 GEM_BUG_ON(i915_vma_is_pinned(vma));
1101
1102 if (vma->iomap == NULL)
1103 return;
1104
1105 io_mapping_unmap(vma->iomap);
1106 vma->iomap = NULL;
1107}
1108
a65adaf8
CW
1109void i915_vma_revoke_mmap(struct i915_vma *vma)
1110{
cc662126 1111 struct drm_vma_offset_node *node;
a65adaf8
CW
1112 u64 vma_offset;
1113
a65adaf8
CW
1114 if (!i915_vma_has_userfault(vma))
1115 return;
1116
1117 GEM_BUG_ON(!i915_vma_is_map_and_fenceable(vma));
1118 GEM_BUG_ON(!vma->obj->userfault_count);
1119
cc662126 1120 node = &vma->mmo->vma_node;
a65adaf8
CW
1121 vma_offset = vma->ggtt_view.partial.offset << PAGE_SHIFT;
1122 unmap_mapping_range(vma->vm->i915->drm.anon_inode->i_mapping,
1123 drm_vma_node_offset_addr(node) + vma_offset,
1124 vma->size,
1125 1);
1126
1127 i915_vma_unset_userfault(vma);
1128 if (!--vma->obj->userfault_count)
1129 list_del(&vma->obj->userfault_link);
1130}
1131
2850748e
CW
1132int __i915_vma_move_to_active(struct i915_vma *vma, struct i915_request *rq)
1133{
1134 int err;
1135
1136 GEM_BUG_ON(!i915_vma_is_pinned(vma));
1137
1138 /* Wait for the vma to be bound before we start! */
1139 err = i915_request_await_active(rq, &vma->active);
1140 if (err)
1141 return err;
1142
1143 return i915_active_add_request(&vma->active, rq);
1144}
1145
e6bb1d7f
CW
1146int i915_vma_move_to_active(struct i915_vma *vma,
1147 struct i915_request *rq,
1148 unsigned int flags)
1149{
1150 struct drm_i915_gem_object *obj = vma->obj;
a93615f9 1151 int err;
e6bb1d7f 1152
6951e589 1153 assert_object_held(obj);
e6bb1d7f 1154
2850748e 1155 err = __i915_vma_move_to_active(vma, rq);
a93615f9
CW
1156 if (unlikely(err))
1157 return err;
e6bb1d7f 1158
e6bb1d7f 1159 if (flags & EXEC_OBJECT_WRITE) {
da42104f
CW
1160 struct intel_frontbuffer *front;
1161
1162 front = __intel_frontbuffer_get(obj);
1163 if (unlikely(front)) {
1164 if (intel_frontbuffer_invalidate(front, ORIGIN_CS))
1165 i915_active_add_request(&front->write, rq);
1166 intel_frontbuffer_put(front);
1167 }
e6bb1d7f 1168
829e8def 1169 dma_resv_add_excl_fence(vma->resv, &rq->fence);
cd2a4eaf 1170 obj->write_domain = I915_GEM_DOMAIN_RENDER;
e6bb1d7f 1171 obj->read_domains = 0;
cd2a4eaf 1172 } else {
829e8def 1173 err = dma_resv_reserve_shared(vma->resv, 1);
cd2a4eaf
CW
1174 if (unlikely(err))
1175 return err;
1176
829e8def 1177 dma_resv_add_shared_fence(vma->resv, &rq->fence);
cd2a4eaf 1178 obj->write_domain = 0;
e6bb1d7f
CW
1179 }
1180 obj->read_domains |= I915_GEM_GPU_DOMAINS;
a93615f9 1181 obj->mm.dirty = true;
e6bb1d7f 1182
a93615f9 1183 GEM_BUG_ON(!i915_vma_is_active(vma));
e6bb1d7f
CW
1184 return 0;
1185}
1186
2850748e 1187int __i915_vma_unbind(struct i915_vma *vma)
b42fe9ca 1188{
b42fe9ca
JL
1189 int ret;
1190
2850748e 1191 lockdep_assert_held(&vma->vm->mutex);
b42fe9ca 1192
520ea7c5
CW
1193 /*
1194 * First wait upon any activity as retiring the request may
b42fe9ca 1195 * have side-effects such as unpinning or even unbinding this vma.
2850748e
CW
1196 *
1197 * XXX Actually waiting under the vm->mutex is a hinderance and
1198 * should be pipelined wherever possible. In cases where that is
1199 * unavoidable, we should lift the wait to before the mutex.
b42fe9ca 1200 */
2850748e
CW
1201 ret = i915_vma_sync(vma);
1202 if (ret)
1203 return ret;
b42fe9ca 1204
10195b1e
CW
1205 if (i915_vma_is_pinned(vma)) {
1206 vma_print_allocator(vma, "is pinned");
d3e48352 1207 return -EAGAIN;
10195b1e 1208 }
b42fe9ca 1209
e4edd4fc
CW
1210 /*
1211 * After confirming that no one else is pinning this vma, wait for
1212 * any laggards who may have crept in during the wait (through
1213 * a residual pin skipping the vm->mutex) to complete.
1214 */
1215 ret = i915_vma_sync(vma);
1216 if (ret)
1217 return ret;
1218
b42fe9ca 1219 if (!drm_mm_node_allocated(&vma->node))
3365e226 1220 return 0;
b42fe9ca 1221
e4edd4fc
CW
1222 GEM_BUG_ON(i915_vma_is_pinned(vma));
1223 GEM_BUG_ON(i915_vma_is_active(vma));
1224
b42fe9ca 1225 if (i915_vma_is_map_and_fenceable(vma)) {
7125397b
CW
1226 /*
1227 * Check that we have flushed all writes through the GGTT
1228 * before the unbind, other due to non-strict nature of those
1229 * indirect writes they may end up referencing the GGTT PTE
1230 * after the unbind.
1231 */
1232 i915_vma_flush_writes(vma);
1233 GEM_BUG_ON(i915_vma_has_ggtt_write(vma));
1234
b42fe9ca 1235 /* release the fence reg _after_ flushing */
1f7fd484 1236 ret = i915_vma_revoke_fence(vma);
b42fe9ca
JL
1237 if (ret)
1238 return ret;
1239
1240 /* Force a pagefault for domain tracking on next user access */
a65adaf8 1241 i915_vma_revoke_mmap(vma);
b42fe9ca
JL
1242
1243 __i915_vma_iounmap(vma);
4dd2fbbf 1244 clear_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma));
b42fe9ca 1245 }
a65adaf8
CW
1246 GEM_BUG_ON(vma->fence);
1247 GEM_BUG_ON(i915_vma_has_userfault(vma));
b42fe9ca 1248
2850748e 1249 if (likely(atomic_read(&vma->vm->open))) {
b42fe9ca 1250 trace_i915_vma_unbind(vma);
93f2cde2 1251 vma->ops->unbind_vma(vma);
b42fe9ca 1252 }
2850748e 1253 atomic_and(~(I915_VMA_BIND_MASK | I915_VMA_ERROR), &vma->flags);
b42fe9ca 1254
dde01d94 1255 i915_vma_detach(vma);
2850748e 1256 vma_unbind_pages(vma);
b42fe9ca 1257
76f9764c 1258 drm_mm_remove_node(&vma->node); /* pairs with i915_vma_release() */
b42fe9ca
JL
1259 return 0;
1260}
1261
2850748e
CW
1262int i915_vma_unbind(struct i915_vma *vma)
1263{
1264 struct i915_address_space *vm = vma->vm;
c0e60347 1265 intel_wakeref_t wakeref = 0;
2850748e
CW
1266 int err;
1267
e6ba7648
CW
1268 if (!drm_mm_node_allocated(&vma->node))
1269 return 0;
1270
c0e60347
CW
1271 if (i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND))
1272 /* XXX not always required: nop_clear_range */
1273 wakeref = intel_runtime_pm_get(&vm->i915->runtime_pm);
1274
2850748e
CW
1275 err = mutex_lock_interruptible(&vm->mutex);
1276 if (err)
1277 return err;
1278
1279 err = __i915_vma_unbind(vma);
1280 mutex_unlock(&vm->mutex);
1281
c0e60347
CW
1282 if (wakeref)
1283 intel_runtime_pm_put(&vm->i915->runtime_pm, wakeref);
1284
2850748e
CW
1285 return err;
1286}
1287
1aff1903
CW
1288struct i915_vma *i915_vma_make_unshrinkable(struct i915_vma *vma)
1289{
1290 i915_gem_object_make_unshrinkable(vma->obj);
1291 return vma;
1292}
1293
1294void i915_vma_make_shrinkable(struct i915_vma *vma)
1295{
1296 i915_gem_object_make_shrinkable(vma->obj);
1297}
1298
1299void i915_vma_make_purgeable(struct i915_vma *vma)
1300{
1301 i915_gem_object_make_purgeable(vma->obj);
1302}
1303
e3c7a1c5
CW
1304#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1305#include "selftests/i915_vma.c"
1306#endif
13f1bfd3 1307
103b76ee 1308static void i915_global_vma_shrink(void)
13f1bfd3 1309{
103b76ee 1310 kmem_cache_shrink(global.slab_vmas);
13f1bfd3
CW
1311}
1312
103b76ee 1313static void i915_global_vma_exit(void)
13f1bfd3 1314{
103b76ee 1315 kmem_cache_destroy(global.slab_vmas);
13f1bfd3
CW
1316}
1317
103b76ee
CW
1318static struct i915_global_vma global = { {
1319 .shrink = i915_global_vma_shrink,
1320 .exit = i915_global_vma_exit,
1321} };
1322
1323int __init i915_global_vma_init(void)
13f1bfd3 1324{
103b76ee
CW
1325 global.slab_vmas = KMEM_CACHE(i915_vma, SLAB_HWCACHE_ALIGN);
1326 if (!global.slab_vmas)
1327 return -ENOMEM;
1328
1329 i915_global_register(&global.base);
1330 return 0;
13f1bfd3 1331}