Merge drm/drm-next into drm-intel-gt-next
[platform/kernel/linux-rpi.git] / drivers / gpu / drm / i915 / i915_vma.c
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  */
24
25 #include <linux/sched/mm.h>
26 #include <drm/drm_gem.h>
27
28 #include "display/intel_frontbuffer.h"
29
30 #include "gem/i915_gem_lmem.h"
31 #include "gt/intel_engine.h"
32 #include "gt/intel_engine_heartbeat.h"
33 #include "gt/intel_gt.h"
34 #include "gt/intel_gt_requests.h"
35
36 #include "i915_drv.h"
37 #include "i915_sw_fence_work.h"
38 #include "i915_trace.h"
39 #include "i915_vma.h"
40
41 static struct kmem_cache *slab_vmas;
42
43 static struct i915_vma *i915_vma_alloc(void)
44 {
45         return kmem_cache_zalloc(slab_vmas, GFP_KERNEL);
46 }
47
48 static void i915_vma_free(struct i915_vma *vma)
49 {
50         return kmem_cache_free(slab_vmas, vma);
51 }
52
53 #if IS_ENABLED(CONFIG_DRM_I915_ERRLOG_GEM) && IS_ENABLED(CONFIG_DRM_DEBUG_MM)
54
55 #include <linux/stackdepot.h>
56
57 static void vma_print_allocator(struct i915_vma *vma, const char *reason)
58 {
59         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
67         stack_depot_snprint(vma->node.stack, buf, sizeof(buf), 0);
68         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
74 static void vma_print_allocator(struct i915_vma *vma, const char *reason)
75 {
76 }
77
78 #endif
79
80 static inline struct i915_vma *active_to_vma(struct i915_active *ref)
81 {
82         return container_of(ref, typeof(struct i915_vma), active);
83 }
84
85 static int __i915_vma_active(struct i915_active *ref)
86 {
87         return i915_vma_tryget(active_to_vma(ref)) ? 0 : -ENOENT;
88 }
89
90 static void __i915_vma_retire(struct i915_active *ref)
91 {
92         i915_vma_put(active_to_vma(ref));
93 }
94
95 static struct i915_vma *
96 vma_create(struct drm_i915_gem_object *obj,
97            struct i915_address_space *vm,
98            const struct i915_ggtt_view *view)
99 {
100         struct i915_vma *pos = ERR_PTR(-E2BIG);
101         struct i915_vma *vma;
102         struct rb_node *rb, **p;
103
104         /* The aliasing_ppgtt should never be used directly! */
105         GEM_BUG_ON(vm == &vm->gt->ggtt->alias->vm);
106
107         vma = i915_vma_alloc();
108         if (vma == NULL)
109                 return ERR_PTR(-ENOMEM);
110
111         kref_init(&vma->ref);
112         mutex_init(&vma->pages_mutex);
113         vma->vm = i915_vm_get(vm);
114         vma->ops = &vm->vma_ops;
115         vma->obj = obj;
116         vma->size = obj->base.size;
117         vma->display_alignment = I915_GTT_MIN_ALIGNMENT;
118
119         i915_active_init(&vma->active, __i915_vma_active, __i915_vma_retire, 0);
120
121         /* 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
128         INIT_LIST_HEAD(&vma->closed_link);
129
130         if (view && view->type != I915_GGTT_VIEW_NORMAL) {
131                 vma->ggtt_view = *view;
132                 if (view->type == I915_GGTT_VIEW_PARTIAL) {
133                         GEM_BUG_ON(range_overflows_t(u64,
134                                                      view->partial.offset,
135                                                      view->partial.size,
136                                                      obj->base.size >> PAGE_SHIFT));
137                         vma->size = view->partial.size;
138                         vma->size <<= PAGE_SHIFT;
139                         GEM_BUG_ON(vma->size > obj->base.size);
140                 } else if (view->type == I915_GGTT_VIEW_ROTATED) {
141                         vma->size = intel_rotation_info_size(&view->rotated);
142                         vma->size <<= PAGE_SHIFT;
143                 } else if (view->type == I915_GGTT_VIEW_REMAPPED) {
144                         vma->size = intel_remapped_info_size(&view->remapped);
145                         vma->size <<= PAGE_SHIFT;
146                 }
147         }
148
149         if (unlikely(vma->size > vm->total))
150                 goto err_vma;
151
152         GEM_BUG_ON(!IS_ALIGNED(vma->size, I915_GTT_PAGE_SIZE));
153
154         spin_lock(&obj->vma.lock);
155
156         if (i915_is_ggtt(vm)) {
157                 if (unlikely(overflows_type(vma->size, u32)))
158                         goto err_unlock;
159
160                 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));
163                 if (unlikely(vma->fence_size < vma->size || /* overflow */
164                              vma->fence_size > vm->total))
165                         goto err_unlock;
166
167                 GEM_BUG_ON(!IS_ALIGNED(vma->fence_size, I915_GTT_MIN_ALIGNMENT));
168
169                 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));
172                 GEM_BUG_ON(!is_power_of_2(vma->fence_alignment));
173
174                 __set_bit(I915_VMA_GGTT_BIT, __i915_vma_flags(vma));
175         }
176
177         rb = NULL;
178         p = &obj->vma.tree.rb_node;
179         while (*p) {
180                 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);
191                 if (cmp < 0)
192                         p = &rb->rb_right;
193                 else if (cmp > 0)
194                         p = &rb->rb_left;
195                 else
196                         goto err_unlock;
197         }
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))
202                 /*
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                  */
208                 list_add(&vma->obj_link, &obj->vma.list);
209         else
210                 list_add_tail(&vma->obj_link, &obj->vma.list);
211
212         spin_unlock(&obj->vma.lock);
213
214         return vma;
215
216 err_unlock:
217         spin_unlock(&obj->vma.lock);
218 err_vma:
219         i915_vm_put(vm);
220         i915_vma_free(vma);
221         return pos;
222 }
223
224 static struct i915_vma *
225 i915_vma_lookup(struct drm_i915_gem_object *obj,
226            struct i915_address_space *vm,
227            const struct i915_ggtt_view *view)
228 {
229         struct rb_node *rb;
230
231         rb = obj->vma.tree.rb_node;
232         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 /**
250  * 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  *
260  * Returns the vma, or an error pointer.
261  */
262 struct i915_vma *
263 i915_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
269         GEM_BUG_ON(view && !i915_is_ggtt_or_dpt(vm));
270         GEM_BUG_ON(!atomic_read(&vm->open));
271
272         spin_lock(&obj->vma.lock);
273         vma = i915_vma_lookup(obj, vm, view);
274         spin_unlock(&obj->vma.lock);
275
276         /* vma_create() will resolve the race if another creates the vma */
277         if (unlikely(!vma))
278                 vma = vma_create(obj, vm, view);
279
280         GEM_BUG_ON(!IS_ERR(vma) && i915_vma_compare(vma, vm, view));
281         return vma;
282 }
283
284 struct i915_vma_work {
285         struct dma_fence_work base;
286         struct i915_address_space *vm;
287         struct i915_vm_pt_stash stash;
288         struct i915_vma *vma;
289         struct drm_i915_gem_object *pinned;
290         struct i915_sw_dma_fence_cb cb;
291         enum i915_cache_level cache_level;
292         unsigned int flags;
293 };
294
295 static void __vma_bind(struct dma_fence_work *work)
296 {
297         struct i915_vma_work *vw = container_of(work, typeof(*vw), base);
298         struct i915_vma *vma = vw->vma;
299
300         vma->ops->bind_vma(vw->vm, &vw->stash,
301                            vma, vw->cache_level, vw->flags);
302 }
303
304 static void __vma_release(struct dma_fence_work *work)
305 {
306         struct i915_vma_work *vw = container_of(work, typeof(*vw), base);
307
308         if (vw->pinned) {
309                 __i915_gem_object_unpin_pages(vw->pinned);
310                 i915_gem_object_put(vw->pinned);
311         }
312
313         i915_vm_free_pt_stash(vw->vm, &vw->stash);
314         i915_vm_put(vw->vm);
315 }
316
317 static const struct dma_fence_work_ops bind_ops = {
318         .name = "bind",
319         .work = __vma_bind,
320         .release = __vma_release,
321 };
322
323 struct 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
337 int 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) {
348                         err = dma_fence_wait(fence, true);
349                         dma_fence_put(fence);
350                 }
351         }
352
353         return err;
354 }
355
356 /**
357  * 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
361  * @work: preallocated worker for allocating and binding the PTE
362  *
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  */
367 int i915_vma_bind(struct i915_vma *vma,
368                   enum i915_cache_level cache_level,
369                   u32 flags,
370                   struct i915_vma_work *work)
371 {
372         u32 bind_flags;
373         u32 vma_flags;
374
375         GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
376         GEM_BUG_ON(vma->size > vma->node.size);
377
378         if (GEM_DEBUG_WARN_ON(range_overflows(vma->node.start,
379                                               vma->node.size,
380                                               vma->vm->total)))
381                 return -ENODEV;
382
383         if (GEM_DEBUG_WARN_ON(!flags))
384                 return -EINVAL;
385
386         bind_flags = flags;
387         bind_flags &= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND;
388
389         vma_flags = atomic_read(&vma->flags);
390         vma_flags &= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND;
391
392         bind_flags &= ~vma_flags;
393         if (bind_flags == 0)
394                 return 0;
395
396         GEM_BUG_ON(!vma->pages);
397
398         trace_i915_vma_bind(vma, bind_flags);
399         if (work && bind_flags & vma->vm->bind_async_flags) {
400                 struct dma_fence *prev;
401
402                 work->vma = vma;
403                 work->cache_level = cache_level;
404                 work->flags = bind_flags;
405
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                  */
415                 prev = i915_active_set_exclusive(&vma->active, &work->base.dma);
416                 if (prev) {
417                         __i915_sw_fence_await_dma_fence(&work->base.chain,
418                                                         prev,
419                                                         &work->cb);
420                         dma_fence_put(prev);
421                 }
422
423                 work->base.dma.error = 0; /* enable the queue_work() */
424
425                 __i915_gem_object_pin_pages(vma->obj);
426                 work->pinned = i915_gem_object_get(vma->obj);
427         } else {
428                 vma->ops->bind_vma(vma->vm, NULL, vma, cache_level, bind_flags);
429         }
430
431         atomic_or(bind_flags, &vma->flags);
432         return 0;
433 }
434
435 void __iomem *i915_vma_pin_iomap(struct i915_vma *vma)
436 {
437         void __iomem *ptr;
438         int err;
439
440         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                 }
445         }
446
447         GEM_BUG_ON(!i915_vma_is_ggtt(vma));
448         GEM_BUG_ON(!i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND));
449
450         ptr = READ_ONCE(vma->iomap);
451         if (ptr == NULL) {
452                 /*
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);
465                 if (ptr == NULL) {
466                         err = -ENOMEM;
467                         goto err;
468                 }
469
470                 if (unlikely(cmpxchg(&vma->iomap, NULL, ptr))) {
471                         io_mapping_unmap(ptr);
472                         ptr = vma->iomap;
473                 }
474         }
475
476         __i915_vma_pin(vma);
477
478         err = i915_vma_pin_fence(vma);
479         if (err)
480                 goto err_unpin;
481
482         i915_vma_set_ggtt_write(vma);
483
484         /* NB Access through the GTT requires the device to be awake. */
485         return ptr;
486
487 err_unpin:
488         __i915_vma_unpin(vma);
489 err:
490         return IO_ERR_PTR(err);
491 }
492
493 void i915_vma_flush_writes(struct i915_vma *vma)
494 {
495         if (i915_vma_unset_ggtt_write(vma))
496                 intel_gt_flush_ggtt_writes(vma->vm->gt);
497 }
498
499 void i915_vma_unpin_iomap(struct i915_vma *vma)
500 {
501         GEM_BUG_ON(vma->iomap == NULL);
502
503         i915_vma_flush_writes(vma);
504
505         i915_vma_unpin_fence(vma);
506         i915_vma_unpin(vma);
507 }
508
509 void i915_vma_unpin_and_release(struct i915_vma **p_vma, unsigned int flags)
510 {
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;
519         GEM_BUG_ON(!obj);
520
521         i915_vma_unpin(vma);
522
523         if (flags & I915_VMA_RELEASE_MAP)
524                 i915_gem_object_unpin_map(obj);
525
526         i915_gem_object_put(obj);
527 }
528
529 bool i915_vma_misplaced(const struct i915_vma *vma,
530                         u64 size, u64 alignment, u64 flags)
531 {
532         if (!drm_mm_node_allocated(&vma->node))
533                 return false;
534
535         if (test_bit(I915_VMA_ERROR_BIT, __i915_vma_flags(vma)))
536                 return true;
537
538         if (vma->node.size < size)
539                 return true;
540
541         GEM_BUG_ON(alignment && !is_power_of_2(alignment));
542         if (alignment && !IS_ALIGNED(vma->node.start, alignment))
543                 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
559 void __i915_vma_set_map_and_fenceable(struct i915_vma *vma)
560 {
561         bool mappable, fenceable;
562
563         GEM_BUG_ON(!i915_vma_is_ggtt(vma));
564         GEM_BUG_ON(!vma->fence_size);
565
566         fenceable = (vma->node.size >= vma->fence_size &&
567                      IS_ALIGNED(vma->node.start, vma->fence_alignment));
568
569         mappable = vma->node.start + vma->fence_size <= i915_vm_to_ggtt(vma->vm)->mappable_end;
570
571         if (mappable && fenceable)
572                 set_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma));
573         else
574                 clear_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma));
575 }
576
577 bool i915_gem_valid_gtt_space(struct i915_vma *vma, unsigned long color)
578 {
579         struct drm_mm_node *node = &vma->node;
580         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          */
589         if (!i915_vm_has_cache_coloring(vma->vm))
590                 return true;
591
592         /* 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));
595
596         other = list_prev_entry(node, node_list);
597         if (i915_node_color_differs(other, color) &&
598             !drm_mm_hole_follows(other))
599                 return false;
600
601         other = list_next_entry(node, node_list);
602         if (i915_node_color_differs(other, color) &&
603             !drm_mm_hole_follows(node))
604                 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  */
623 static int
624 i915_vma_insert(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
625 {
626         unsigned long color;
627         u64 start, end;
628         int ret;
629
630         GEM_BUG_ON(i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND));
631         GEM_BUG_ON(drm_mm_node_allocated(&vma->node));
632
633         size = max(size, vma->size);
634         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         }
640
641         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
645         start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
646         GEM_BUG_ON(!IS_ALIGNED(start, I915_GTT_PAGE_SIZE));
647
648         end = vma->vm->total;
649         if (flags & PIN_MAPPABLE)
650                 end = min_t(u64, end, i915_vm_to_ggtt(vma->vm)->mappable_end);
651         if (flags & PIN_ZONE_4G)
652                 end = min_t(u64, end, (1ULL << 32) - I915_GTT_PAGE_SIZE);
653         GEM_BUG_ON(!IS_ALIGNED(end, I915_GTT_PAGE_SIZE));
654
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) {
660                 DRM_DEBUG("Attempting to bind an object larger than the aperture: request=%llu > %s aperture=%llu\n",
661                           size, flags & PIN_MAPPABLE ? "mappable" : "total",
662                           end);
663                 return -ENOSPC;
664         }
665
666         color = 0;
667         if (i915_vm_has_cache_coloring(vma->vm))
668                 color = vma->obj->cache_level;
669
670         if (flags & PIN_OFFSET_FIXED) {
671                 u64 offset = flags & PIN_OFFSET_MASK;
672                 if (!IS_ALIGNED(offset, alignment) ||
673                     range_overflows(offset, size, end))
674                         return -EINVAL;
675
676                 ret = i915_gem_gtt_reserve(vma->vm, &vma->node,
677                                            size, offset, color,
678                                            flags);
679                 if (ret)
680                         return ret;
681         } else {
682                 /*
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) {
692                         /*
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                          */
698                         u64 page_alignment =
699                                 rounddown_pow_of_two(vma->page_sizes.sg |
700                                                      I915_GTT_PAGE_SIZE_2M);
701
702                         /*
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
709                         alignment = max(alignment, page_alignment);
710
711                         if (vma->page_sizes.sg & I915_GTT_PAGE_SIZE_64K)
712                                 size = round_up(size, I915_GTT_PAGE_SIZE_2M);
713                 }
714
715                 ret = i915_gem_gtt_insert(vma->vm, &vma->node,
716                                           size, alignment, color,
717                                           start, end, flags);
718                 if (ret)
719                         return ret;
720
721                 GEM_BUG_ON(vma->node.start < start);
722                 GEM_BUG_ON(vma->node.start + vma->node.size > end);
723         }
724         GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
725         GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, color));
726
727         list_add_tail(&vma->vm_link, &vma->vm->bound_list);
728
729         return 0;
730 }
731
732 static void
733 i915_vma_detach(struct i915_vma *vma)
734 {
735         GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
736         GEM_BUG_ON(i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND));
737
738         /*
739          * 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.
742          */
743         list_del(&vma->vm_link);
744 }
745
746 static bool try_qad_pin(struct i915_vma *vma, unsigned int flags)
747 {
748         unsigned int bound;
749         bool pinned = true;
750
751         bound = atomic_read(&vma->flags);
752         do {
753                 if (unlikely(flags & ~bound))
754                         return false;
755
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
767 unpinned:
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
789 static int vma_get_pages(struct i915_vma *vma)
790 {
791         int err = 0;
792         bool pinned_pages = true;
793
794         if (atomic_add_unless(&vma->pages_count, 1, 0))
795                 return 0;
796
797         err = i915_gem_object_pin_pages(vma->obj);
798         if (err)
799                 return err;
800
801         /* Allocations ahoy! */
802         if (mutex_lock_interruptible(&vma->pages_mutex)) {
803                 err = -EINTR;
804                 goto unpin;
805         }
806
807         if (!atomic_read(&vma->pages_count)) {
808                 err = vma->ops->set_pages(vma);
809                 if (err)
810                         goto unlock;
811                 pinned_pages = false;
812         }
813         atomic_inc(&vma->pages_count);
814
815 unlock:
816         mutex_unlock(&vma->pages_mutex);
817 unpin:
818         if (pinned_pages)
819                 __i915_gem_object_unpin_pages(vma->obj);
820
821         return err;
822 }
823
824 static 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);
832
833                 i915_gem_object_unpin_pages(vma->obj);
834         }
835         mutex_unlock(&vma->pages_mutex);
836 }
837
838 static 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
846 static 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
860 int i915_vma_pin_ww(struct i915_vma *vma, struct i915_gem_ww_ctx *ww,
861                     u64 size, u64 alignment, u64 flags)
862 {
863         struct i915_vma_work *work = NULL;
864         intel_wakeref_t wakeref = 0;
865         unsigned int bound;
866         int err;
867
868 #ifdef CONFIG_PROVE_LOCKING
869         if (debug_locks && !WARN_ON(!ww))
870                 assert_vma_held(vma);
871 #endif
872
873         BUILD_BUG_ON(PIN_GLOBAL != I915_VMA_GLOBAL_BIND);
874         BUILD_BUG_ON(PIN_USER != I915_VMA_LOCAL_BIND);
875
876         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
886         if (flags & PIN_GLOBAL)
887                 wakeref = intel_runtime_pm_get(&vma->vm->i915->runtime_pm);
888
889         if (flags & vma->vm->bind_async_flags) {
890                 /* lock VM */
891                 err = i915_vm_lock_objects(vma->vm, ww);
892                 if (err)
893                         goto err_rpm;
894
895                 work = i915_vma_work();
896                 if (!work) {
897                         err = -ENOMEM;
898                         goto err_rpm;
899                 }
900
901                 work->vm = i915_vm_get(vma->vm);
902
903                 /* Allocate enough page directories to used PTE */
904                 if (vma->vm->allocate_va_range) {
905                         err = i915_vm_alloc_pt_stash(vma->vm,
906                                                      &work->stash,
907                                                      vma->size);
908                         if (err)
909                                 goto err_fence;
910
911                         err = i915_vm_map_pt_stash(vma->vm, &work->stash);
912                         if (err)
913                                 goto err_fence;
914                 }
915         }
916
917         /*
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));
936         if (err)
937                 goto err_fence;
938
939         /* No more allocations allowed now we hold vm->mutex */
940
941         if (unlikely(i915_vma_is_closed(vma))) {
942                 err = -ENOENT;
943                 goto err_unlock;
944         }
945
946         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,
977                             vma->obj->cache_level,
978                             flags, work);
979         if (err)
980                 goto err_remove;
981
982         /* 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);
986
987         __i915_vma_pin(vma);
988         GEM_BUG_ON(!i915_vma_is_pinned(vma));
989         GEM_BUG_ON(!i915_vma_is_bound(vma, flags));
990         GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags));
991
992 err_remove:
993         if (!i915_vma_is_bound(vma, I915_VMA_BIND_MASK)) {
994                 i915_vma_detach(vma);
995                 drm_mm_remove_node(&vma->node);
996         }
997 err_active:
998         i915_active_release(&vma->active);
999 err_unlock:
1000         mutex_unlock(&vma->vm->mutex);
1001 err_fence:
1002         if (work)
1003                 dma_fence_work_commit_imm(&work->base);
1004 err_rpm:
1005         if (wakeref)
1006                 intel_runtime_pm_put(&vma->vm->i915->runtime_pm, wakeref);
1007         vma_put_pages(vma);
1008         return err;
1009 }
1010
1011 static 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
1022 int i915_ggtt_pin(struct i915_vma *vma, struct i915_gem_ww_ctx *ww,
1023                   u32 align, unsigned int flags)
1024 {
1025         struct i915_address_space *vm = vma->vm;
1026         int err;
1027
1028         GEM_BUG_ON(!i915_vma_is_ggtt(vma));
1029
1030 #ifdef CONFIG_LOCKDEP
1031         WARN_ON(!ww && dma_resv_held(vma->obj->base.resv));
1032 #endif
1033
1034         do {
1035                 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);
1039                 if (err != -ENOSPC) {
1040                         if (!err) {
1041                                 err = i915_vma_wait_for_bind(vma);
1042                                 if (err)
1043                                         i915_vma_unpin(vma);
1044                         }
1045                         return err;
1046                 }
1047
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
1057 static void __vma_close(struct i915_vma *vma, struct intel_gt *gt)
1058 {
1059         /*
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          */
1071         GEM_BUG_ON(i915_vma_is_closed(vma));
1072         list_add(&vma->closed_link, &gt->closed_vma);
1073 }
1074
1075 void 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         }
1090 }
1091
1092 static void __i915_vma_remove_closed(struct i915_vma *vma)
1093 {
1094         struct intel_gt *gt = vma->vm->gt;
1095
1096         spin_lock_irq(&gt->closed_lock);
1097         list_del_init(&vma->closed_link);
1098         spin_unlock_irq(&gt->closed_lock);
1099 }
1100
1101 void i915_vma_reopen(struct i915_vma *vma)
1102 {
1103         if (i915_vma_is_closed(vma))
1104                 __i915_vma_remove_closed(vma);
1105 }
1106
1107 void i915_vma_release(struct kref *ref)
1108 {
1109         struct i915_vma *vma = container_of(ref, typeof(*vma), ref);
1110         struct drm_i915_gem_object *obj = vma->obj;
1111
1112         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));
1120
1121         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);
1126
1127         __i915_vma_remove_closed(vma);
1128         i915_vm_put(vma->vm);
1129
1130         i915_active_fini(&vma->active);
1131         i915_vma_free(vma);
1132 }
1133
1134 void i915_vma_parked(struct intel_gt *gt)
1135 {
1136         struct i915_vma *vma, *next;
1137         LIST_HEAD(closed);
1138
1139         spin_lock_irq(&gt->closed_lock);
1140         list_for_each_entry_safe(vma, next, &gt->closed_vma, closed_link) {
1141                 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
1149                 if (!i915_vm_tryopen(vm)) {
1150                         i915_gem_object_put(obj);
1151                         continue;
1152                 }
1153
1154                 list_move(&vma->closed_link, &closed);
1155         }
1156         spin_unlock_irq(&gt->closed_lock);
1157
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         }
1169 }
1170
1171 static 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
1182 void i915_vma_revoke_mmap(struct i915_vma *vma)
1183 {
1184         struct drm_vma_offset_node *node;
1185         u64 vma_offset;
1186
1187         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
1193         node = &vma->mmo->vma_node;
1194         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
1205 static 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
1211 int __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! */
1218         err = __i915_request_await_bind(rq, vma);
1219         if (err)
1220                 return err;
1221
1222         return i915_active_add_request(&vma->active, rq);
1223 }
1224
1225 int _i915_vma_move_to_active(struct i915_vma *vma,
1226                              struct i915_request *rq,
1227                              struct dma_fence *fence,
1228                              unsigned int flags)
1229 {
1230         struct drm_i915_gem_object *obj = vma->obj;
1231         int err;
1232
1233         assert_object_held(obj);
1234
1235         err = __i915_vma_move_to_active(vma, rq);
1236         if (unlikely(err))
1237                 return err;
1238
1239         if (flags & EXEC_OBJECT_WRITE) {
1240                 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                 }
1248
1249                 if (fence) {
1250                         dma_resv_add_excl_fence(vma->obj->base.resv, fence);
1251                         obj->write_domain = I915_GEM_DOMAIN_RENDER;
1252                         obj->read_domains = 0;
1253                 }
1254         } else {
1255                 if (!(flags & __EXEC_OBJECT_NO_RESERVE)) {
1256                         err = dma_resv_reserve_shared(vma->obj->base.resv, 1);
1257                         if (unlikely(err))
1258                                 return err;
1259                 }
1260
1261                 if (fence) {
1262                         dma_resv_add_shared_fence(vma->obj->base.resv, fence);
1263                         obj->write_domain = 0;
1264                 }
1265         }
1266
1267         if (flags & EXEC_OBJECT_NEEDS_FENCE && vma->fence)
1268                 i915_active_add_request(&vma->fence->active, rq);
1269
1270         obj->read_domains |= I915_GEM_GPU_DOMAINS;
1271         obj->mm.dirty = true;
1272
1273         GEM_BUG_ON(!i915_vma_is_active(vma));
1274         return 0;
1275 }
1276
1277 void __i915_vma_evict(struct i915_vma *vma)
1278 {
1279         GEM_BUG_ON(i915_vma_is_pinned(vma));
1280
1281         if (i915_vma_is_map_and_fenceable(vma)) {
1282                 /* Force a pagefault for domain tracking on next user access */
1283                 i915_vma_revoke_mmap(vma);
1284
1285                 /*
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.
1290                  *
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.
1297                  */
1298                 i915_vma_flush_writes(vma);
1299
1300                 /* release the fence reg _after_ flushing */
1301                 i915_vma_revoke_fence(vma);
1302
1303                 __i915_vma_iounmap(vma);
1304                 clear_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma));
1305         }
1306         GEM_BUG_ON(vma->fence);
1307         GEM_BUG_ON(i915_vma_has_userfault(vma));
1308
1309         if (likely(atomic_read(&vma->vm->open))) {
1310                 trace_i915_vma_unbind(vma);
1311                 vma->ops->unbind_vma(vma->vm, vma);
1312         }
1313         atomic_and(~(I915_VMA_BIND_MASK | I915_VMA_ERROR | I915_VMA_GGTT_WRITE),
1314                    &vma->flags);
1315
1316         i915_vma_detach(vma);
1317         vma_unbind_pages(vma);
1318 }
1319
1320 int __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);
1345
1346         drm_mm_remove_node(&vma->node); /* pairs with i915_vma_release() */
1347         return 0;
1348 }
1349
1350 int i915_vma_unbind(struct i915_vma *vma)
1351 {
1352         struct i915_address_space *vm = vma->vm;
1353         intel_wakeref_t wakeref = 0;
1354         int err;
1355
1356         /* Optimistic wait before taking the mutex */
1357         err = i915_vma_sync(vma);
1358         if (err)
1359                 return err;
1360
1361         if (!drm_mm_node_allocated(&vma->node))
1362                 return 0;
1363
1364         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
1373         err = mutex_lock_interruptible_nested(&vma->vm->mutex, !wakeref);
1374         if (err)
1375                 goto out_rpm;
1376
1377         err = __i915_vma_unbind(vma);
1378         mutex_unlock(&vm->mutex);
1379
1380 out_rpm:
1381         if (wakeref)
1382                 intel_runtime_pm_put(&vm->i915->runtime_pm, wakeref);
1383         return err;
1384 }
1385
1386 struct i915_vma *i915_vma_make_unshrinkable(struct i915_vma *vma)
1387 {
1388         i915_gem_object_make_unshrinkable(vma->obj);
1389         return vma;
1390 }
1391
1392 void i915_vma_make_shrinkable(struct i915_vma *vma)
1393 {
1394         i915_gem_object_make_shrinkable(vma->obj);
1395 }
1396
1397 void i915_vma_make_purgeable(struct i915_vma *vma)
1398 {
1399         i915_gem_object_make_purgeable(vma->obj);
1400 }
1401
1402 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1403 #include "selftests/i915_vma.c"
1404 #endif
1405
1406 void i915_vma_module_exit(void)
1407 {
1408         kmem_cache_destroy(slab_vmas);
1409 }
1410
1411 int __init i915_vma_module_init(void)
1412 {
1413         slab_vmas = KMEM_CACHE(i915_vma, SLAB_HWCACHE_ALIGN);
1414         if (!slab_vmas)
1415                 return -ENOMEM;
1416
1417         return 0;
1418 }