blob: 5b4d78cdb4ca32c4162322b4750e2dec80fe99d1 [file] [log] [blame]
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001/*
2 * Copyright © 2016 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
Chris Wilson10195b12018-06-28 14:22:06 +010024
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020025#include "i915_vma.h"
26
27#include "i915_drv.h"
28#include "intel_ringbuffer.h"
29#include "intel_frontbuffer.h"
30
31#include <drm/drm_gem.h>
32
Chris Wilson1eca65d2018-07-06 07:53:06 +010033#if IS_ENABLED(CONFIG_DRM_I915_ERRLOG_GEM) && IS_ENABLED(CONFIG_DRM_DEBUG_MM)
Chris Wilson10195b12018-06-28 14:22:06 +010034
35#include <linux/stackdepot.h>
36
37static void vma_print_allocator(struct i915_vma *vma, const char *reason)
38{
39 unsigned long entries[12];
40 struct stack_trace trace = {
41 .entries = entries,
42 .max_entries = ARRAY_SIZE(entries),
43 };
44 char buf[512];
45
46 if (!vma->node.stack) {
47 DRM_DEBUG_DRIVER("vma.node [%08llx + %08llx] %s: unknown owner\n",
48 vma->node.start, vma->node.size, reason);
49 return;
50 }
51
52 depot_fetch_stack(vma->node.stack, &trace);
53 snprint_stack_trace(buf, sizeof(buf), &trace, 0);
54 DRM_DEBUG_DRIVER("vma.node [%08llx + %08llx] %s: inserted at %s\n",
55 vma->node.start, vma->node.size, reason, buf);
56}
57
58#else
59
60static void vma_print_allocator(struct i915_vma *vma, const char *reason)
61{
62}
63
64#endif
65
Chris Wilson5c3f8c22018-07-06 11:39:46 +010066struct i915_vma_active {
67 struct i915_gem_active base;
68 struct i915_vma *vma;
69 struct rb_node node;
70 u64 timeline;
71};
72
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020073static void
Chris Wilson5c3f8c22018-07-06 11:39:46 +010074__i915_vma_retire(struct i915_vma *vma, struct i915_request *rq)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020075{
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020076 struct drm_i915_gem_object *obj = vma->obj;
77
Chris Wilson5c3f8c22018-07-06 11:39:46 +010078 GEM_BUG_ON(!i915_vma_is_active(vma));
79 if (--vma->active_count)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020080 return;
81
Chris Wilson44a0ec02017-01-19 19:26:58 +000082 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020083 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020084
85 GEM_BUG_ON(!i915_gem_object_is_active(obj));
86 if (--obj->active_count)
87 return;
88
Chris Wilson1ab22352017-11-07 22:06:56 +000089 /* Prune the shared fence arrays iff completely idle (inc. external) */
90 if (reservation_object_trylock(obj->resv)) {
91 if (reservation_object_test_signaled_rcu(obj->resv, true))
92 reservation_object_add_excl_fence(obj->resv, NULL);
93 reservation_object_unlock(obj->resv);
94 }
95
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020096 /* Bump our place on the bound list to keep it roughly in LRU order
97 * so that we don't steal from recently used but inactive objects
98 * (unless we are forced to ofc!)
99 */
Chris Wilsonf2123812017-10-16 12:40:37 +0100100 spin_lock(&rq->i915->mm.obj_lock);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200101 if (obj->bind_count)
Chris Wilsonf2123812017-10-16 12:40:37 +0100102 list_move_tail(&obj->mm.link, &rq->i915->mm.bound_list);
103 spin_unlock(&rq->i915->mm.obj_lock);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200104
105 obj->mm.dirty = true; /* be paranoid */
106
107 if (i915_gem_object_has_active_reference(obj)) {
108 i915_gem_object_clear_active_reference(obj);
109 i915_gem_object_put(obj);
110 }
111}
112
Chris Wilson5c3f8c22018-07-06 11:39:46 +0100113static void
114i915_vma_retire(struct i915_gem_active *base, struct i915_request *rq)
115{
116 struct i915_vma_active *active =
117 container_of(base, typeof(*active), base);
118
119 __i915_vma_retire(active->vma, rq);
120}
121
Chris Wilson8b293eb2018-07-06 13:31:57 +0100122static void
123i915_vma_last_retire(struct i915_gem_active *base, struct i915_request *rq)
124{
125 __i915_vma_retire(container_of(base, struct i915_vma, last_active), rq);
126}
127
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200128static struct i915_vma *
Chris Wilsona01cb37a2017-01-16 15:21:30 +0000129vma_create(struct drm_i915_gem_object *obj,
130 struct i915_address_space *vm,
131 const struct i915_ggtt_view *view)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200132{
133 struct i915_vma *vma;
134 struct rb_node *rb, **p;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200135
Chris Wilsone1cc3db2017-02-09 11:19:33 +0000136 /* The aliasing_ppgtt should never be used directly! */
Chris Wilson82ad6442018-06-05 16:37:58 +0100137 GEM_BUG_ON(vm == &vm->i915->mm.aliasing_ppgtt->vm);
Chris Wilsone1cc3db2017-02-09 11:19:33 +0000138
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000139 vma = kmem_cache_zalloc(vm->i915->vmas, GFP_KERNEL);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200140 if (vma == NULL)
141 return ERR_PTR(-ENOMEM);
142
Chris Wilson5c3f8c22018-07-06 11:39:46 +0100143 vma->active = RB_ROOT;
144
Chris Wilson8b293eb2018-07-06 13:31:57 +0100145 init_request_active(&vma->last_active, i915_vma_last_retire);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200146 init_request_active(&vma->last_fence, NULL);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200147 vma->vm = vm;
Chris Wilson93f2cde2018-06-07 16:40:46 +0100148 vma->ops = &vm->vma_ops;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200149 vma->obj = obj;
Chris Wilson95ff7c72017-06-16 15:05:25 +0100150 vma->resv = obj->resv;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200151 vma->size = obj->base.size;
Chris Wilsonf51455d2017-01-10 14:47:34 +0000152 vma->display_alignment = I915_GTT_MIN_ALIGNMENT;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200153
Chris Wilson7c518462017-01-23 14:52:45 +0000154 if (view && view->type != I915_GGTT_VIEW_NORMAL) {
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200155 vma->ggtt_view = *view;
156 if (view->type == I915_GGTT_VIEW_PARTIAL) {
Chris Wilson07e19ea2016-12-23 14:57:59 +0000157 GEM_BUG_ON(range_overflows_t(u64,
Chris Wilson8bab11932017-01-14 00:28:25 +0000158 view->partial.offset,
159 view->partial.size,
Chris Wilson07e19ea2016-12-23 14:57:59 +0000160 obj->base.size >> PAGE_SHIFT));
Chris Wilson8bab11932017-01-14 00:28:25 +0000161 vma->size = view->partial.size;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200162 vma->size <<= PAGE_SHIFT;
Chris Wilson7e7367d2018-06-30 10:05:09 +0100163 GEM_BUG_ON(vma->size > obj->base.size);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200164 } else if (view->type == I915_GGTT_VIEW_ROTATED) {
Chris Wilson8bab11932017-01-14 00:28:25 +0000165 vma->size = intel_rotation_info_size(&view->rotated);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200166 vma->size <<= PAGE_SHIFT;
167 }
168 }
169
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000170 if (unlikely(vma->size > vm->total))
171 goto err_vma;
172
Chris Wilsonb00ddb22017-01-19 19:26:59 +0000173 GEM_BUG_ON(!IS_ALIGNED(vma->size, I915_GTT_PAGE_SIZE));
174
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200175 if (i915_is_ggtt(vm)) {
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000176 if (unlikely(overflows_type(vma->size, u32)))
177 goto err_vma;
178
Chris Wilson91d4e0aa2017-01-09 16:16:13 +0000179 vma->fence_size = i915_gem_fence_size(vm->i915, vma->size,
180 i915_gem_object_get_tiling(obj),
181 i915_gem_object_get_stride(obj));
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000182 if (unlikely(vma->fence_size < vma->size || /* overflow */
183 vma->fence_size > vm->total))
184 goto err_vma;
185
Chris Wilsonf51455d2017-01-10 14:47:34 +0000186 GEM_BUG_ON(!IS_ALIGNED(vma->fence_size, I915_GTT_MIN_ALIGNMENT));
Chris Wilson944397f2017-01-09 16:16:11 +0000187
Chris Wilson91d4e0aa2017-01-09 16:16:13 +0000188 vma->fence_alignment = i915_gem_fence_alignment(vm->i915, vma->size,
189 i915_gem_object_get_tiling(obj),
190 i915_gem_object_get_stride(obj));
Chris Wilson944397f2017-01-09 16:16:11 +0000191 GEM_BUG_ON(!is_power_of_2(vma->fence_alignment));
192
Chris Wilsone2189dd2017-12-07 21:14:07 +0000193 /*
194 * We put the GGTT vma at the start of the vma-list, followed
195 * by the ppGGTT vma. This allows us to break early when
196 * iterating over only the GGTT vma for an object, see
197 * for_each_ggtt_vma()
198 */
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200199 vma->flags |= I915_VMA_GGTT;
200 list_add(&vma->obj_link, &obj->vma_list);
201 } else {
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200202 list_add_tail(&vma->obj_link, &obj->vma_list);
203 }
204
205 rb = NULL;
206 p = &obj->vma_tree.rb_node;
207 while (*p) {
208 struct i915_vma *pos;
209
210 rb = *p;
211 pos = rb_entry(rb, struct i915_vma, obj_node);
212 if (i915_vma_compare(pos, vm, view) < 0)
213 p = &rb->rb_right;
214 else
215 p = &rb->rb_left;
216 }
217 rb_link_node(&vma->obj_node, rb, p);
218 rb_insert_color(&vma->obj_node, &obj->vma_tree);
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000219 list_add(&vma->vm_link, &vm->unbound_list);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200220
221 return vma;
Chris Wilson1fcdaa72017-01-19 19:26:56 +0000222
223err_vma:
224 kmem_cache_free(vm->i915->vmas, vma);
225 return ERR_PTR(-E2BIG);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200226}
227
Chris Wilson481a6f72017-01-16 15:21:31 +0000228static struct i915_vma *
229vma_lookup(struct drm_i915_gem_object *obj,
230 struct i915_address_space *vm,
231 const struct i915_ggtt_view *view)
Chris Wilson718659a2017-01-16 15:21:28 +0000232{
233 struct rb_node *rb;
234
Chris Wilson718659a2017-01-16 15:21:28 +0000235 rb = obj->vma_tree.rb_node;
236 while (rb) {
237 struct i915_vma *vma = rb_entry(rb, struct i915_vma, obj_node);
238 long cmp;
239
240 cmp = i915_vma_compare(vma, vm, view);
241 if (cmp == 0)
242 return vma;
243
244 if (cmp < 0)
245 rb = rb->rb_right;
246 else
247 rb = rb->rb_left;
248 }
249
250 return NULL;
251}
252
253/**
Chris Wilson718659a2017-01-16 15:21:28 +0000254 * i915_vma_instance - return the singleton instance of the VMA
255 * @obj: parent &struct drm_i915_gem_object to be mapped
256 * @vm: address space in which the mapping is located
257 * @view: additional mapping requirements
258 *
259 * i915_vma_instance() looks up an existing VMA of the @obj in the @vm with
260 * the same @view characteristics. If a match is not found, one is created.
261 * Once created, the VMA is kept until either the object is freed, or the
262 * address space is closed.
263 *
264 * Must be called with struct_mutex held.
265 *
266 * Returns the vma, or an error pointer.
267 */
268struct i915_vma *
269i915_vma_instance(struct drm_i915_gem_object *obj,
270 struct i915_address_space *vm,
271 const struct i915_ggtt_view *view)
272{
273 struct i915_vma *vma;
274
275 lockdep_assert_held(&obj->base.dev->struct_mutex);
276 GEM_BUG_ON(view && !i915_is_ggtt(vm));
277 GEM_BUG_ON(vm->closed);
278
Chris Wilson481a6f72017-01-16 15:21:31 +0000279 vma = vma_lookup(obj, vm, view);
Chris Wilson718659a2017-01-16 15:21:28 +0000280 if (!vma)
Chris Wilsona01cb37a2017-01-16 15:21:30 +0000281 vma = vma_create(obj, vm, view);
Chris Wilson718659a2017-01-16 15:21:28 +0000282
Chris Wilson4ea95272017-01-16 15:21:29 +0000283 GEM_BUG_ON(!IS_ERR(vma) && i915_vma_compare(vma, vm, view));
Chris Wilson481a6f72017-01-16 15:21:31 +0000284 GEM_BUG_ON(!IS_ERR(vma) && vma_lookup(obj, vm, view) != vma);
Chris Wilson718659a2017-01-16 15:21:28 +0000285 return vma;
286}
287
288/**
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200289 * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
290 * @vma: VMA to map
291 * @cache_level: mapping cache level
292 * @flags: flags like global or local mapping
293 *
294 * DMA addresses are taken from the scatter-gather table of this object (or of
295 * this VMA in case of non-default GGTT views) and PTE entries set up.
296 * Note that DMA addresses are also the only part of the SG table we care about.
297 */
298int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
299 u32 flags)
300{
301 u32 bind_flags;
302 u32 vma_flags;
303 int ret;
304
Chris Wilsonaa149432017-02-25 18:11:21 +0000305 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
306 GEM_BUG_ON(vma->size > vma->node.size);
307
Tvrtko Ursulinbbb8a9d2018-10-12 07:31:42 +0100308 if (GEM_DEBUG_WARN_ON(range_overflows(vma->node.start,
309 vma->node.size,
310 vma->vm->total)))
Chris Wilsonaa149432017-02-25 18:11:21 +0000311 return -ENODEV;
312
Tvrtko Ursulinbbb8a9d2018-10-12 07:31:42 +0100313 if (GEM_DEBUG_WARN_ON(!flags))
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200314 return -EINVAL;
315
316 bind_flags = 0;
317 if (flags & PIN_GLOBAL)
318 bind_flags |= I915_VMA_GLOBAL_BIND;
319 if (flags & PIN_USER)
320 bind_flags |= I915_VMA_LOCAL_BIND;
321
322 vma_flags = vma->flags & (I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND);
323 if (flags & PIN_UPDATE)
324 bind_flags |= vma_flags;
325 else
326 bind_flags &= ~vma_flags;
327 if (bind_flags == 0)
328 return 0;
329
Matthew Auldfa3f46a2017-10-06 23:18:19 +0100330 GEM_BUG_ON(!vma->pages);
331
Daniele Ceraolo Spurio6146e6d2017-01-20 13:51:23 -0800332 trace_i915_vma_bind(vma, bind_flags);
Chris Wilson93f2cde2018-06-07 16:40:46 +0100333 ret = vma->ops->bind_vma(vma, cache_level, bind_flags);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200334 if (ret)
335 return ret;
336
337 vma->flags |= bind_flags;
338 return 0;
339}
340
341void __iomem *i915_vma_pin_iomap(struct i915_vma *vma)
342{
343 void __iomem *ptr;
Chris Wilsonb4563f52017-10-09 09:43:55 +0100344 int err;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200345
346 /* Access through the GTT requires the device to be awake. */
Chris Wilson49d73912016-11-29 09:50:08 +0000347 assert_rpm_wakelock_held(vma->vm->i915);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200348
Chris Wilson49d73912016-11-29 09:50:08 +0000349 lockdep_assert_held(&vma->vm->i915->drm.struct_mutex);
Chris Wilsonb4563f52017-10-09 09:43:55 +0100350 if (WARN_ON(!i915_vma_is_map_and_fenceable(vma))) {
351 err = -ENODEV;
352 goto err;
353 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200354
355 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
356 GEM_BUG_ON((vma->flags & I915_VMA_GLOBAL_BIND) == 0);
357
358 ptr = vma->iomap;
359 if (ptr == NULL) {
Matthew Auld73ebd502017-12-11 15:18:20 +0000360 ptr = io_mapping_map_wc(&i915_vm_to_ggtt(vma->vm)->iomap,
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200361 vma->node.start,
362 vma->node.size);
Chris Wilsonb4563f52017-10-09 09:43:55 +0100363 if (ptr == NULL) {
364 err = -ENOMEM;
365 goto err;
366 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200367
368 vma->iomap = ptr;
369 }
370
371 __i915_vma_pin(vma);
Chris Wilsonb4563f52017-10-09 09:43:55 +0100372
Chris Wilson3bd40732017-10-09 09:43:56 +0100373 err = i915_vma_pin_fence(vma);
Chris Wilsonb4563f52017-10-09 09:43:55 +0100374 if (err)
375 goto err_unpin;
376
Chris Wilson7125397b2017-12-06 12:49:14 +0000377 i915_vma_set_ggtt_write(vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200378 return ptr;
Chris Wilsonb4563f52017-10-09 09:43:55 +0100379
380err_unpin:
381 __i915_vma_unpin(vma);
382err:
383 return IO_ERR_PTR(err);
384}
385
Chris Wilson7125397b2017-12-06 12:49:14 +0000386void i915_vma_flush_writes(struct i915_vma *vma)
387{
388 if (!i915_vma_has_ggtt_write(vma))
389 return;
390
391 i915_gem_flush_ggtt_writes(vma->vm->i915);
392
393 i915_vma_unset_ggtt_write(vma);
394}
395
Chris Wilsonb4563f52017-10-09 09:43:55 +0100396void i915_vma_unpin_iomap(struct i915_vma *vma)
397{
Chris Wilson520ea7c2018-06-07 16:40:45 +0100398 lockdep_assert_held(&vma->vm->i915->drm.struct_mutex);
Chris Wilsonb4563f52017-10-09 09:43:55 +0100399
400 GEM_BUG_ON(vma->iomap == NULL);
401
Chris Wilson7125397b2017-12-06 12:49:14 +0000402 i915_vma_flush_writes(vma);
403
Chris Wilsonb4563f52017-10-09 09:43:55 +0100404 i915_vma_unpin_fence(vma);
405 i915_vma_unpin(vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200406}
407
Chris Wilson6a2f59e2018-07-21 13:50:37 +0100408void i915_vma_unpin_and_release(struct i915_vma **p_vma, unsigned int flags)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200409{
410 struct i915_vma *vma;
411 struct drm_i915_gem_object *obj;
412
413 vma = fetch_and_zero(p_vma);
414 if (!vma)
415 return;
416
417 obj = vma->obj;
Chris Wilson520ea7c2018-06-07 16:40:45 +0100418 GEM_BUG_ON(!obj);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200419
420 i915_vma_unpin(vma);
421 i915_vma_close(vma);
422
Chris Wilson6a2f59e2018-07-21 13:50:37 +0100423 if (flags & I915_VMA_RELEASE_MAP)
424 i915_gem_object_unpin_map(obj);
425
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200426 __i915_gem_object_release_unless_active(obj);
427}
428
Chris Wilson782a3e92017-02-13 17:15:46 +0000429bool i915_vma_misplaced(const struct i915_vma *vma,
430 u64 size, u64 alignment, u64 flags)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200431{
432 if (!drm_mm_node_allocated(&vma->node))
433 return false;
434
435 if (vma->node.size < size)
436 return true;
437
Chris Wilsonf51455d2017-01-10 14:47:34 +0000438 GEM_BUG_ON(alignment && !is_power_of_2(alignment));
439 if (alignment && !IS_ALIGNED(vma->node.start, alignment))
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200440 return true;
441
442 if (flags & PIN_MAPPABLE && !i915_vma_is_map_and_fenceable(vma))
443 return true;
444
445 if (flags & PIN_OFFSET_BIAS &&
446 vma->node.start < (flags & PIN_OFFSET_MASK))
447 return true;
448
449 if (flags & PIN_OFFSET_FIXED &&
450 vma->node.start != (flags & PIN_OFFSET_MASK))
451 return true;
452
453 return false;
454}
455
456void __i915_vma_set_map_and_fenceable(struct i915_vma *vma)
457{
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200458 bool mappable, fenceable;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200459
Chris Wilson944397f2017-01-09 16:16:11 +0000460 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
461 GEM_BUG_ON(!vma->fence_size);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200462
463 /*
464 * Explicitly disable for rotated VMA since the display does not
465 * need the fence and the VMA is not accessible to other users.
466 */
Chris Wilson944397f2017-01-09 16:16:11 +0000467 if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED)
468 return;
469
470 fenceable = (vma->node.size >= vma->fence_size &&
Chris Wilsonf51455d2017-01-10 14:47:34 +0000471 IS_ALIGNED(vma->node.start, vma->fence_alignment));
Chris Wilson944397f2017-01-09 16:16:11 +0000472
473 mappable = vma->node.start + vma->fence_size <= i915_vm_to_ggtt(vma->vm)->mappable_end;
474
475 if (mappable && fenceable)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200476 vma->flags |= I915_VMA_CAN_FENCE;
477 else
478 vma->flags &= ~I915_VMA_CAN_FENCE;
479}
480
Chris Wilson7d1d9ae2016-12-05 14:29:38 +0000481static bool color_differs(struct drm_mm_node *node, unsigned long color)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200482{
Chris Wilson7d1d9ae2016-12-05 14:29:38 +0000483 return node->allocated && node->color != color;
484}
485
486bool i915_gem_valid_gtt_space(struct i915_vma *vma, unsigned long cache_level)
487{
488 struct drm_mm_node *node = &vma->node;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200489 struct drm_mm_node *other;
490
491 /*
492 * On some machines we have to be careful when putting differing types
493 * of snoopable memory together to avoid the prefetcher crossing memory
494 * domains and dying. During vm initialisation, we decide whether or not
495 * these constraints apply and set the drm_mm.color_adjust
496 * appropriately.
497 */
498 if (vma->vm->mm.color_adjust == NULL)
499 return true;
500
Chris Wilson7d1d9ae2016-12-05 14:29:38 +0000501 /* Only valid to be called on an already inserted vma */
502 GEM_BUG_ON(!drm_mm_node_allocated(node));
503 GEM_BUG_ON(list_empty(&node->node_list));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200504
Chris Wilson7d1d9ae2016-12-05 14:29:38 +0000505 other = list_prev_entry(node, node_list);
Daniel Vetteref426c12017-01-04 11:41:10 +0100506 if (color_differs(other, cache_level) && !drm_mm_hole_follows(other))
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200507 return false;
508
Chris Wilson7d1d9ae2016-12-05 14:29:38 +0000509 other = list_next_entry(node, node_list);
Daniel Vetteref426c12017-01-04 11:41:10 +0100510 if (color_differs(other, cache_level) && !drm_mm_hole_follows(node))
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200511 return false;
512
513 return true;
514}
515
Chris Wilson83d317a2018-06-05 10:41:07 +0100516static void assert_bind_count(const struct drm_i915_gem_object *obj)
517{
518 /*
519 * Combine the assertion that the object is bound and that we have
520 * pinned its pages. But we should never have bound the object
521 * more than we have pinned its pages. (For complete accuracy, we
522 * assume that no else is pinning the pages, but as a rough assertion
523 * that we will not run into problems later, this will do!)
524 */
525 GEM_BUG_ON(atomic_read(&obj->mm.pages_pin_count) < obj->bind_count);
526}
527
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200528/**
529 * i915_vma_insert - finds a slot for the vma in its address space
530 * @vma: the vma
531 * @size: requested size in bytes (can be larger than the VMA)
532 * @alignment: required alignment
533 * @flags: mask of PIN_* flags to use
534 *
535 * First we try to allocate some free space that meets the requirements for
536 * the VMA. Failiing that, if the flags permit, it will evict an old VMA,
537 * preferrably the oldest idle entry to make room for the new VMA.
538 *
539 * Returns:
540 * 0 on success, negative error code otherwise.
541 */
542static int
543i915_vma_insert(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
544{
Chris Wilson49d73912016-11-29 09:50:08 +0000545 struct drm_i915_private *dev_priv = vma->vm->i915;
Chris Wilson520ea7c2018-06-07 16:40:45 +0100546 unsigned int cache_level;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200547 u64 start, end;
548 int ret;
549
Chris Wilson010e3e62017-12-06 12:49:13 +0000550 GEM_BUG_ON(i915_vma_is_closed(vma));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200551 GEM_BUG_ON(vma->flags & (I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND));
552 GEM_BUG_ON(drm_mm_node_allocated(&vma->node));
553
554 size = max(size, vma->size);
Chris Wilson944397f2017-01-09 16:16:11 +0000555 alignment = max(alignment, vma->display_alignment);
556 if (flags & PIN_MAPPABLE) {
557 size = max_t(typeof(size), size, vma->fence_size);
558 alignment = max_t(typeof(alignment),
559 alignment, vma->fence_alignment);
560 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200561
Chris Wilsonf51455d2017-01-10 14:47:34 +0000562 GEM_BUG_ON(!IS_ALIGNED(size, I915_GTT_PAGE_SIZE));
563 GEM_BUG_ON(!IS_ALIGNED(alignment, I915_GTT_MIN_ALIGNMENT));
564 GEM_BUG_ON(!is_power_of_2(alignment));
565
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200566 start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
Chris Wilsonf51455d2017-01-10 14:47:34 +0000567 GEM_BUG_ON(!IS_ALIGNED(start, I915_GTT_PAGE_SIZE));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200568
569 end = vma->vm->total;
570 if (flags & PIN_MAPPABLE)
571 end = min_t(u64, end, dev_priv->ggtt.mappable_end);
572 if (flags & PIN_ZONE_4G)
Chris Wilsonf51455d2017-01-10 14:47:34 +0000573 end = min_t(u64, end, (1ULL << 32) - I915_GTT_PAGE_SIZE);
574 GEM_BUG_ON(!IS_ALIGNED(end, I915_GTT_PAGE_SIZE));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200575
576 /* If binding the object/GGTT view requires more space than the entire
577 * aperture has, reject it early before evicting everything in a vain
578 * attempt to find space.
579 */
580 if (size > end) {
Chris Wilson520ea7c2018-06-07 16:40:45 +0100581 DRM_DEBUG("Attempting to bind an object larger than the aperture: request=%llu > %s aperture=%llu\n",
582 size, flags & PIN_MAPPABLE ? "mappable" : "total",
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200583 end);
Chris Wilson2889caa2017-06-16 15:05:19 +0100584 return -ENOSPC;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200585 }
586
Chris Wilson520ea7c2018-06-07 16:40:45 +0100587 if (vma->obj) {
588 ret = i915_gem_object_pin_pages(vma->obj);
589 if (ret)
590 return ret;
591
592 cache_level = vma->obj->cache_level;
593 } else {
594 cache_level = 0;
595 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200596
Matthew Auldfa3f46a2017-10-06 23:18:19 +0100597 GEM_BUG_ON(vma->pages);
598
Chris Wilson93f2cde2018-06-07 16:40:46 +0100599 ret = vma->ops->set_pages(vma);
Matthew Auldfa3f46a2017-10-06 23:18:19 +0100600 if (ret)
601 goto err_unpin;
602
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200603 if (flags & PIN_OFFSET_FIXED) {
604 u64 offset = flags & PIN_OFFSET_MASK;
Chris Wilsonf51455d2017-01-10 14:47:34 +0000605 if (!IS_ALIGNED(offset, alignment) ||
Chris Wilsone8f9ae92017-01-06 15:20:12 +0000606 range_overflows(offset, size, end)) {
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200607 ret = -EINVAL;
Matthew Auldfa3f46a2017-10-06 23:18:19 +0100608 goto err_clear;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200609 }
610
Chris Wilson625d9882017-01-11 11:23:11 +0000611 ret = i915_gem_gtt_reserve(vma->vm, &vma->node,
Chris Wilson520ea7c2018-06-07 16:40:45 +0100612 size, offset, cache_level,
Chris Wilson625d9882017-01-11 11:23:11 +0000613 flags);
614 if (ret)
Matthew Auldfa3f46a2017-10-06 23:18:19 +0100615 goto err_clear;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200616 } else {
Matthew Auld74642842017-10-06 23:18:20 +0100617 /*
618 * We only support huge gtt pages through the 48b PPGTT,
619 * however we also don't want to force any alignment for
620 * objects which need to be tightly packed into the low 32bits.
621 *
622 * Note that we assume that GGTT are limited to 4GiB for the
623 * forseeable future. See also i915_ggtt_offset().
624 */
625 if (upper_32_bits(end - 1) &&
626 vma->page_sizes.sg > I915_GTT_PAGE_SIZE) {
Matthew Auld855822b2017-10-06 23:18:21 +0100627 /*
628 * We can't mix 64K and 4K PTEs in the same page-table
629 * (2M block), and so to avoid the ugliness and
630 * complexity of coloring we opt for just aligning 64K
631 * objects to 2M.
632 */
Matthew Auld74642842017-10-06 23:18:20 +0100633 u64 page_alignment =
Matthew Auld855822b2017-10-06 23:18:21 +0100634 rounddown_pow_of_two(vma->page_sizes.sg |
635 I915_GTT_PAGE_SIZE_2M);
Matthew Auld74642842017-10-06 23:18:20 +0100636
Chris Wilsonbef27bdb2017-10-09 10:20:19 +0100637 /*
638 * Check we don't expand for the limited Global GTT
639 * (mappable aperture is even more precious!). This
640 * also checks that we exclude the aliasing-ppgtt.
641 */
642 GEM_BUG_ON(i915_vma_is_ggtt(vma));
643
Matthew Auld74642842017-10-06 23:18:20 +0100644 alignment = max(alignment, page_alignment);
Matthew Auld855822b2017-10-06 23:18:21 +0100645
646 if (vma->page_sizes.sg & I915_GTT_PAGE_SIZE_64K)
647 size = round_up(size, I915_GTT_PAGE_SIZE_2M);
Matthew Auld74642842017-10-06 23:18:20 +0100648 }
649
Chris Wilsone007b192017-01-11 11:23:10 +0000650 ret = i915_gem_gtt_insert(vma->vm, &vma->node,
Chris Wilson520ea7c2018-06-07 16:40:45 +0100651 size, alignment, cache_level,
Chris Wilsone007b192017-01-11 11:23:10 +0000652 start, end, flags);
653 if (ret)
Matthew Auldfa3f46a2017-10-06 23:18:19 +0100654 goto err_clear;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200655
656 GEM_BUG_ON(vma->node.start < start);
657 GEM_BUG_ON(vma->node.start + vma->node.size > end);
658 }
Chris Wilson44a0ec02017-01-19 19:26:58 +0000659 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
Chris Wilson520ea7c2018-06-07 16:40:45 +0100660 GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, cache_level));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200661
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200662 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
Chris Wilsonf2123812017-10-16 12:40:37 +0100663
Chris Wilson520ea7c2018-06-07 16:40:45 +0100664 if (vma->obj) {
665 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsonf2123812017-10-16 12:40:37 +0100666
Chris Wilson520ea7c2018-06-07 16:40:45 +0100667 spin_lock(&dev_priv->mm.obj_lock);
668 list_move_tail(&obj->mm.link, &dev_priv->mm.bound_list);
669 obj->bind_count++;
670 spin_unlock(&dev_priv->mm.obj_lock);
671
672 assert_bind_count(obj);
673 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200674
675 return 0;
676
Matthew Auldfa3f46a2017-10-06 23:18:19 +0100677err_clear:
Chris Wilson93f2cde2018-06-07 16:40:46 +0100678 vma->ops->clear_pages(vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200679err_unpin:
Chris Wilson520ea7c2018-06-07 16:40:45 +0100680 if (vma->obj)
681 i915_gem_object_unpin_pages(vma->obj);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200682 return ret;
683}
684
Chris Wilson31c7eff2017-02-27 12:26:54 +0000685static void
686i915_vma_remove(struct i915_vma *vma)
687{
Chris Wilsonf2123812017-10-16 12:40:37 +0100688 struct drm_i915_private *i915 = vma->vm->i915;
Chris Wilson31c7eff2017-02-27 12:26:54 +0000689
690 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
691 GEM_BUG_ON(vma->flags & (I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND));
692
Chris Wilson93f2cde2018-06-07 16:40:46 +0100693 vma->ops->clear_pages(vma);
Matthew Auldfa3f46a2017-10-06 23:18:19 +0100694
Chris Wilson31c7eff2017-02-27 12:26:54 +0000695 drm_mm_remove_node(&vma->node);
696 list_move_tail(&vma->vm_link, &vma->vm->unbound_list);
697
Chris Wilson520ea7c2018-06-07 16:40:45 +0100698 /*
699 * Since the unbound list is global, only move to that list if
Chris Wilson31c7eff2017-02-27 12:26:54 +0000700 * no more VMAs exist.
701 */
Chris Wilson520ea7c2018-06-07 16:40:45 +0100702 if (vma->obj) {
703 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson31c7eff2017-02-27 12:26:54 +0000704
Chris Wilson520ea7c2018-06-07 16:40:45 +0100705 spin_lock(&i915->mm.obj_lock);
706 if (--obj->bind_count == 0)
707 list_move_tail(&obj->mm.link, &i915->mm.unbound_list);
708 spin_unlock(&i915->mm.obj_lock);
709
710 /*
711 * And finally now the object is completely decoupled from this
712 * vma, we can drop its hold on the backing storage and allow
713 * it to be reaped by the shrinker.
714 */
715 i915_gem_object_unpin_pages(obj);
716 assert_bind_count(obj);
717 }
Chris Wilson31c7eff2017-02-27 12:26:54 +0000718}
719
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200720int __i915_vma_do_pin(struct i915_vma *vma,
721 u64 size, u64 alignment, u64 flags)
722{
Chris Wilson31c7eff2017-02-27 12:26:54 +0000723 const unsigned int bound = vma->flags;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200724 int ret;
725
Chris Wilson49d73912016-11-29 09:50:08 +0000726 lockdep_assert_held(&vma->vm->i915->drm.struct_mutex);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200727 GEM_BUG_ON((flags & (PIN_GLOBAL | PIN_USER)) == 0);
728 GEM_BUG_ON((flags & PIN_GLOBAL) && !i915_vma_is_ggtt(vma));
729
730 if (WARN_ON(bound & I915_VMA_PIN_OVERFLOW)) {
731 ret = -EBUSY;
Chris Wilson31c7eff2017-02-27 12:26:54 +0000732 goto err_unpin;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200733 }
734
735 if ((bound & I915_VMA_BIND_MASK) == 0) {
736 ret = i915_vma_insert(vma, size, alignment, flags);
737 if (ret)
Chris Wilson31c7eff2017-02-27 12:26:54 +0000738 goto err_unpin;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200739 }
Chris Wilsond36caee2017-11-05 12:45:50 +0000740 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200741
Chris Wilson520ea7c2018-06-07 16:40:45 +0100742 ret = i915_vma_bind(vma, vma->obj ? vma->obj->cache_level : 0, flags);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200743 if (ret)
Chris Wilson31c7eff2017-02-27 12:26:54 +0000744 goto err_remove;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200745
Chris Wilsond36caee2017-11-05 12:45:50 +0000746 GEM_BUG_ON((vma->flags & I915_VMA_BIND_MASK) == 0);
747
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200748 if ((bound ^ vma->flags) & I915_VMA_GLOBAL_BIND)
749 __i915_vma_set_map_and_fenceable(vma);
750
751 GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags));
752 return 0;
753
Chris Wilson31c7eff2017-02-27 12:26:54 +0000754err_remove:
755 if ((bound & I915_VMA_BIND_MASK) == 0) {
Chris Wilson31c7eff2017-02-27 12:26:54 +0000756 i915_vma_remove(vma);
Matthew Auldfa3f46a2017-10-06 23:18:19 +0100757 GEM_BUG_ON(vma->pages);
Chris Wilsond36caee2017-11-05 12:45:50 +0000758 GEM_BUG_ON(vma->flags & I915_VMA_BIND_MASK);
Chris Wilson31c7eff2017-02-27 12:26:54 +0000759 }
760err_unpin:
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200761 __i915_vma_unpin(vma);
762 return ret;
763}
764
Chris Wilson3365e222018-05-03 20:51:14 +0100765void i915_vma_close(struct i915_vma *vma)
766{
767 lockdep_assert_held(&vma->vm->i915->drm.struct_mutex);
768
769 GEM_BUG_ON(i915_vma_is_closed(vma));
770 vma->flags |= I915_VMA_CLOSED;
771
772 /*
773 * We defer actually closing, unbinding and destroying the VMA until
774 * the next idle point, or if the object is freed in the meantime. By
775 * postponing the unbind, we allow for it to be resurrected by the
776 * client, avoiding the work required to rebind the VMA. This is
777 * advantageous for DRI, where the client/server pass objects
778 * between themselves, temporarily opening a local VMA to the
779 * object, and then closing it again. The same object is then reused
780 * on the next frame (or two, depending on the depth of the swap queue)
781 * causing us to rebind the VMA once more. This ends up being a lot
782 * of wasted work for the steady state.
783 */
784 list_add_tail(&vma->closed_link, &vma->vm->i915->gt.closed_vma);
785}
786
787void i915_vma_reopen(struct i915_vma *vma)
788{
789 lockdep_assert_held(&vma->vm->i915->drm.struct_mutex);
790
791 if (vma->flags & I915_VMA_CLOSED) {
792 vma->flags &= ~I915_VMA_CLOSED;
793 list_del(&vma->closed_link);
794 }
795}
796
797static void __i915_vma_destroy(struct i915_vma *vma)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200798{
Chris Wilson520ea7c2018-06-07 16:40:45 +0100799 struct drm_i915_private *i915 = vma->vm->i915;
Chris Wilson5c3f8c22018-07-06 11:39:46 +0100800 struct i915_vma_active *iter, *n;
Chris Wilson7a3bc032017-06-20 13:43:21 +0100801
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200802 GEM_BUG_ON(vma->node.allocated);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200803 GEM_BUG_ON(vma->fence);
804
Chris Wilson7a3bc032017-06-20 13:43:21 +0100805 GEM_BUG_ON(i915_gem_active_isset(&vma->last_fence));
806
Chris Wilson010e3e62017-12-06 12:49:13 +0000807 list_del(&vma->obj_link);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200808 list_del(&vma->vm_link);
Chris Wilson520ea7c2018-06-07 16:40:45 +0100809 if (vma->obj)
810 rb_erase(&vma->obj_node, &vma->obj->vma_tree);
Chris Wilson010e3e62017-12-06 12:49:13 +0000811
Chris Wilson5c3f8c22018-07-06 11:39:46 +0100812 rbtree_postorder_for_each_entry_safe(iter, n, &vma->active, node) {
813 GEM_BUG_ON(i915_gem_active_isset(&iter->base));
814 kfree(iter);
815 }
816
Chris Wilson520ea7c2018-06-07 16:40:45 +0100817 kmem_cache_free(i915->vmas, vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200818}
819
Chris Wilson3365e222018-05-03 20:51:14 +0100820void i915_vma_destroy(struct i915_vma *vma)
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200821{
Chris Wilson3365e222018-05-03 20:51:14 +0100822 lockdep_assert_held(&vma->vm->i915->drm.struct_mutex);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200823
Chris Wilson3365e222018-05-03 20:51:14 +0100824 GEM_BUG_ON(i915_vma_is_active(vma));
825 GEM_BUG_ON(i915_vma_is_pinned(vma));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200826
Chris Wilson3365e222018-05-03 20:51:14 +0100827 if (i915_vma_is_closed(vma))
828 list_del(&vma->closed_link);
829
830 WARN_ON(i915_vma_unbind(vma));
831 __i915_vma_destroy(vma);
832}
833
834void i915_vma_parked(struct drm_i915_private *i915)
835{
836 struct i915_vma *vma, *next;
837
838 list_for_each_entry_safe(vma, next, &i915->gt.closed_vma, closed_link) {
839 GEM_BUG_ON(!i915_vma_is_closed(vma));
840 i915_vma_destroy(vma);
841 }
842
843 GEM_BUG_ON(!list_empty(&i915->gt.closed_vma));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200844}
845
846static void __i915_vma_iounmap(struct i915_vma *vma)
847{
848 GEM_BUG_ON(i915_vma_is_pinned(vma));
849
850 if (vma->iomap == NULL)
851 return;
852
853 io_mapping_unmap(vma->iomap);
854 vma->iomap = NULL;
855}
856
Chris Wilsona65adaf2017-10-09 09:43:57 +0100857void i915_vma_revoke_mmap(struct i915_vma *vma)
858{
859 struct drm_vma_offset_node *node = &vma->obj->base.vma_node;
860 u64 vma_offset;
861
862 lockdep_assert_held(&vma->vm->i915->drm.struct_mutex);
863
864 if (!i915_vma_has_userfault(vma))
865 return;
866
867 GEM_BUG_ON(!i915_vma_is_map_and_fenceable(vma));
868 GEM_BUG_ON(!vma->obj->userfault_count);
869
870 vma_offset = vma->ggtt_view.partial.offset << PAGE_SHIFT;
871 unmap_mapping_range(vma->vm->i915->drm.anon_inode->i_mapping,
872 drm_vma_node_offset_addr(node) + vma_offset,
873 vma->size,
874 1);
875
876 i915_vma_unset_userfault(vma);
877 if (!--vma->obj->userfault_count)
878 list_del(&vma->obj->userfault_link);
879}
880
Chris Wilsone6bb1d72018-07-06 11:39:45 +0100881static void export_fence(struct i915_vma *vma,
882 struct i915_request *rq,
883 unsigned int flags)
884{
885 struct reservation_object *resv = vma->resv;
886
887 /*
888 * Ignore errors from failing to allocate the new fence, we can't
889 * handle an error right now. Worst case should be missed
890 * synchronisation leading to rendering corruption.
891 */
892 reservation_object_lock(resv, NULL);
893 if (flags & EXEC_OBJECT_WRITE)
894 reservation_object_add_excl_fence(resv, &rq->fence);
Christian Königca053592018-09-19 16:12:25 +0200895 else if (reservation_object_reserve_shared(resv, 1) == 0)
Chris Wilsone6bb1d72018-07-06 11:39:45 +0100896 reservation_object_add_shared_fence(resv, &rq->fence);
897 reservation_object_unlock(resv);
898}
899
Chris Wilson5c3f8c22018-07-06 11:39:46 +0100900static struct i915_gem_active *active_instance(struct i915_vma *vma, u64 idx)
901{
902 struct i915_vma_active *active;
903 struct rb_node **p, *parent;
Chris Wilson8b293eb2018-07-06 13:31:57 +0100904 struct i915_request *old;
905
906 /*
907 * We track the most recently used timeline to skip a rbtree search
908 * for the common case, under typical loads we never need the rbtree
909 * at all. We can reuse the last_active slot if it is empty, that is
910 * after the previous activity has been retired, or if the active
911 * matches the current timeline.
912 *
913 * Note that we allow the timeline to be active simultaneously in
914 * the rbtree and the last_active cache. We do this to avoid having
915 * to search and replace the rbtree element for a new timeline, with
916 * the cost being that we must be aware that the vma may be retired
917 * twice for the same timeline (as the older rbtree element will be
918 * retired before the new request added to last_active).
919 */
920 old = i915_gem_active_raw(&vma->last_active,
921 &vma->vm->i915->drm.struct_mutex);
922 if (!old || old->fence.context == idx)
923 goto out;
924
925 /* Move the currently active fence into the rbtree */
926 idx = old->fence.context;
Chris Wilson5c3f8c22018-07-06 11:39:46 +0100927
928 parent = NULL;
929 p = &vma->active.rb_node;
930 while (*p) {
931 parent = *p;
932
933 active = rb_entry(parent, struct i915_vma_active, node);
934 if (active->timeline == idx)
Chris Wilson8b293eb2018-07-06 13:31:57 +0100935 goto replace;
Chris Wilson5c3f8c22018-07-06 11:39:46 +0100936
937 if (active->timeline < idx)
938 p = &parent->rb_right;
939 else
940 p = &parent->rb_left;
941 }
942
943 active = kmalloc(sizeof(*active), GFP_KERNEL);
Chris Wilson46b10632018-07-19 08:22:06 +0100944
945 /* kmalloc may retire the vma->last_active request (thanks shrinker)! */
946 if (unlikely(!i915_gem_active_raw(&vma->last_active,
947 &vma->vm->i915->drm.struct_mutex))) {
948 kfree(active);
949 goto out;
950 }
951
Chris Wilson5c3f8c22018-07-06 11:39:46 +0100952 if (unlikely(!active))
953 return ERR_PTR(-ENOMEM);
954
955 init_request_active(&active->base, i915_vma_retire);
956 active->vma = vma;
957 active->timeline = idx;
958
959 rb_link_node(&active->node, parent, p);
960 rb_insert_color(&active->node, &vma->active);
961
Chris Wilson8b293eb2018-07-06 13:31:57 +0100962replace:
963 /*
964 * Overwrite the previous active slot in the rbtree with last_active,
965 * leaving last_active zeroed. If the previous slot is still active,
966 * we must be careful as we now only expect to receive one retire
967 * callback not two, and so much undo the active counting for the
968 * overwritten slot.
969 */
970 if (i915_gem_active_isset(&active->base)) {
971 /* Retire ourselves from the old rq->active_list */
972 __list_del_entry(&active->base.link);
973 vma->active_count--;
974 GEM_BUG_ON(!vma->active_count);
975 }
976 GEM_BUG_ON(list_empty(&vma->last_active.link));
977 list_replace_init(&vma->last_active.link, &active->base.link);
978 active->base.request = fetch_and_zero(&vma->last_active.request);
979
980out:
981 return &vma->last_active;
Chris Wilson5c3f8c22018-07-06 11:39:46 +0100982}
983
Chris Wilsone6bb1d72018-07-06 11:39:45 +0100984int i915_vma_move_to_active(struct i915_vma *vma,
985 struct i915_request *rq,
986 unsigned int flags)
987{
988 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson5c3f8c22018-07-06 11:39:46 +0100989 struct i915_gem_active *active;
Chris Wilsone6bb1d72018-07-06 11:39:45 +0100990
991 lockdep_assert_held(&rq->i915->drm.struct_mutex);
992 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
993
Chris Wilson5c3f8c22018-07-06 11:39:46 +0100994 active = active_instance(vma, rq->fence.context);
995 if (IS_ERR(active))
996 return PTR_ERR(active);
997
Chris Wilsone6bb1d72018-07-06 11:39:45 +0100998 /*
999 * Add a reference if we're newly entering the active list.
1000 * The order in which we add operations to the retirement queue is
1001 * vital here: mark_active adds to the start of the callback list,
1002 * such that subsequent callbacks are called first. Therefore we
1003 * add the active reference first and queue for it to be dropped
1004 * *last*.
1005 */
Chris Wilson5c3f8c22018-07-06 11:39:46 +01001006 if (!i915_gem_active_isset(active) && !vma->active_count++) {
1007 list_move_tail(&vma->vm_link, &vma->vm->active_list);
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001008 obj->active_count++;
Chris Wilson5c3f8c22018-07-06 11:39:46 +01001009 }
1010 i915_gem_active_set(active, rq);
1011 GEM_BUG_ON(!i915_vma_is_active(vma));
1012 GEM_BUG_ON(!obj->active_count);
Chris Wilsone6bb1d72018-07-06 11:39:45 +01001013
1014 obj->write_domain = 0;
1015 if (flags & EXEC_OBJECT_WRITE) {
1016 obj->write_domain = I915_GEM_DOMAIN_RENDER;
1017
1018 if (intel_fb_obj_invalidate(obj, ORIGIN_CS))
1019 i915_gem_active_set(&obj->frontbuffer_write, rq);
1020
1021 obj->read_domains = 0;
1022 }
1023 obj->read_domains |= I915_GEM_GPU_DOMAINS;
1024
1025 if (flags & EXEC_OBJECT_NEEDS_FENCE)
1026 i915_gem_active_set(&vma->last_fence, rq);
1027
1028 export_fence(vma, rq, flags);
1029 return 0;
1030}
1031
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001032int i915_vma_unbind(struct i915_vma *vma)
1033{
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001034 int ret;
1035
Chris Wilson520ea7c2018-06-07 16:40:45 +01001036 lockdep_assert_held(&vma->vm->i915->drm.struct_mutex);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001037
Chris Wilson520ea7c2018-06-07 16:40:45 +01001038 /*
1039 * First wait upon any activity as retiring the request may
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001040 * have side-effects such as unpinning or even unbinding this vma.
1041 */
Chris Wilson7f017b12017-11-09 21:34:50 +00001042 might_sleep();
Chris Wilson5c3f8c22018-07-06 11:39:46 +01001043 if (i915_vma_is_active(vma)) {
1044 struct i915_vma_active *active, *n;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001045
Chris Wilson520ea7c2018-06-07 16:40:45 +01001046 /*
1047 * When a closed VMA is retired, it is unbound - eek.
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001048 * In order to prevent it from being recursively closed,
1049 * take a pin on the vma so that the second unbind is
1050 * aborted.
1051 *
1052 * Even more scary is that the retire callback may free
1053 * the object (last active vma). To prevent the explosion
1054 * we defer the actual object free to a worker that can
1055 * only proceed once it acquires the struct_mutex (which
1056 * we currently hold, therefore it cannot free this object
1057 * before we are finished).
1058 */
1059 __i915_vma_pin(vma);
1060
Chris Wilson8b293eb2018-07-06 13:31:57 +01001061 ret = i915_gem_active_retire(&vma->last_active,
1062 &vma->vm->i915->drm.struct_mutex);
1063 if (ret)
1064 goto unpin;
1065
Chris Wilson5c3f8c22018-07-06 11:39:46 +01001066 rbtree_postorder_for_each_entry_safe(active, n,
1067 &vma->active, node) {
1068 ret = i915_gem_active_retire(&active->base,
Chris Wilson49d73912016-11-29 09:50:08 +00001069 &vma->vm->i915->drm.struct_mutex);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001070 if (ret)
Chris Wilson5c3f8c22018-07-06 11:39:46 +01001071 goto unpin;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001072 }
1073
Chris Wilson5c3f8c22018-07-06 11:39:46 +01001074 ret = i915_gem_active_retire(&vma->last_fence,
1075 &vma->vm->i915->drm.struct_mutex);
1076unpin:
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001077 __i915_vma_unpin(vma);
1078 if (ret)
1079 return ret;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001080 }
Chris Wilson7a3bc032017-06-20 13:43:21 +01001081 GEM_BUG_ON(i915_vma_is_active(vma));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001082
Chris Wilson10195b12018-06-28 14:22:06 +01001083 if (i915_vma_is_pinned(vma)) {
1084 vma_print_allocator(vma, "is pinned");
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001085 return -EBUSY;
Chris Wilson10195b12018-06-28 14:22:06 +01001086 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001087
1088 if (!drm_mm_node_allocated(&vma->node))
Chris Wilson3365e222018-05-03 20:51:14 +01001089 return 0;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001090
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001091 if (i915_vma_is_map_and_fenceable(vma)) {
Chris Wilson7125397b2017-12-06 12:49:14 +00001092 /*
1093 * Check that we have flushed all writes through the GGTT
1094 * before the unbind, other due to non-strict nature of those
1095 * indirect writes they may end up referencing the GGTT PTE
1096 * after the unbind.
1097 */
1098 i915_vma_flush_writes(vma);
1099 GEM_BUG_ON(i915_vma_has_ggtt_write(vma));
1100
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001101 /* release the fence reg _after_ flushing */
1102 ret = i915_vma_put_fence(vma);
1103 if (ret)
1104 return ret;
1105
1106 /* Force a pagefault for domain tracking on next user access */
Chris Wilsona65adaf2017-10-09 09:43:57 +01001107 i915_vma_revoke_mmap(vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001108
1109 __i915_vma_iounmap(vma);
1110 vma->flags &= ~I915_VMA_CAN_FENCE;
1111 }
Chris Wilsona65adaf2017-10-09 09:43:57 +01001112 GEM_BUG_ON(vma->fence);
1113 GEM_BUG_ON(i915_vma_has_userfault(vma));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001114
1115 if (likely(!vma->vm->closed)) {
1116 trace_i915_vma_unbind(vma);
Chris Wilson93f2cde2018-06-07 16:40:46 +01001117 vma->ops->unbind_vma(vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001118 }
1119 vma->flags &= ~(I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND);
1120
Chris Wilson31c7eff2017-02-27 12:26:54 +00001121 i915_vma_remove(vma);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001122
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001123 return 0;
1124}
1125
Chris Wilsone3c7a1c2017-02-13 17:15:45 +00001126#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1127#include "selftests/i915_vma.c"
1128#endif