Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 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 | */ |
Chris Wilson | 10195b1 | 2018-06-28 14:22:06 +0100 | [diff] [blame] | 24 | |
Chris Wilson | 0948007 | 2019-07-03 10:17:19 +0100 | [diff] [blame] | 25 | #include <linux/sched/mm.h> |
Jani Nikula | df0566a | 2019-06-13 11:44:16 +0300 | [diff] [blame] | 26 | #include <drm/drm_gem.h> |
Chris Wilson | 112ed2d | 2019-04-24 18:48:39 +0100 | [diff] [blame] | 27 | |
Jani Nikula | df0566a | 2019-06-13 11:44:16 +0300 | [diff] [blame] | 28 | #include "display/intel_frontbuffer.h" |
| 29 | |
Anusha Srivatsa | 4bc91db | 2021-04-27 09:54:16 +0100 | [diff] [blame] | 30 | #include "gem/i915_gem_lmem.h" |
Jani Nikula | df0566a | 2019-06-13 11:44:16 +0300 | [diff] [blame] | 31 | #include "gt/intel_engine.h" |
Chris Wilson | ccd2094 | 2019-12-05 11:37:25 +0000 | [diff] [blame] | 32 | #include "gt/intel_engine_heartbeat.h" |
Tvrtko Ursulin | a1c8a09 | 2019-06-21 08:08:01 +0100 | [diff] [blame] | 33 | #include "gt/intel_gt.h" |
Chris Wilson | ccd2094 | 2019-12-05 11:37:25 +0000 | [diff] [blame] | 34 | #include "gt/intel_gt_requests.h" |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 35 | |
| 36 | #include "i915_drv.h" |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 37 | #include "i915_sw_fence_work.h" |
Jani Nikula | a09d9a8 | 2019-08-06 13:07:28 +0300 | [diff] [blame] | 38 | #include "i915_trace.h" |
Jani Nikula | df0566a | 2019-06-13 11:44:16 +0300 | [diff] [blame] | 39 | #include "i915_vma.h" |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 40 | |
Daniel Vetter | 64fc7cc | 2021-07-27 14:10:35 +0200 | [diff] [blame] | 41 | static struct kmem_cache *slab_vmas; |
Chris Wilson | 13f1bfd | 2019-02-28 10:20:34 +0000 | [diff] [blame] | 42 | |
Maarten Lankhorst | e6e1a30 | 2021-11-17 14:20:22 +0000 | [diff] [blame] | 43 | static struct i915_vma *i915_vma_alloc(void) |
Chris Wilson | 13f1bfd | 2019-02-28 10:20:34 +0000 | [diff] [blame] | 44 | { |
Daniel Vetter | 64fc7cc | 2021-07-27 14:10:35 +0200 | [diff] [blame] | 45 | return kmem_cache_zalloc(slab_vmas, GFP_KERNEL); |
Chris Wilson | 13f1bfd | 2019-02-28 10:20:34 +0000 | [diff] [blame] | 46 | } |
| 47 | |
Maarten Lankhorst | e6e1a30 | 2021-11-17 14:20:22 +0000 | [diff] [blame] | 48 | static void i915_vma_free(struct i915_vma *vma) |
Chris Wilson | 13f1bfd | 2019-02-28 10:20:34 +0000 | [diff] [blame] | 49 | { |
Daniel Vetter | 64fc7cc | 2021-07-27 14:10:35 +0200 | [diff] [blame] | 50 | return kmem_cache_free(slab_vmas, vma); |
Chris Wilson | 13f1bfd | 2019-02-28 10:20:34 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Chris Wilson | 1eca65d | 2018-07-06 07:53:06 +0100 | [diff] [blame] | 53 | #if IS_ENABLED(CONFIG_DRM_I915_ERRLOG_GEM) && IS_ENABLED(CONFIG_DRM_DEBUG_MM) |
Chris Wilson | 10195b1 | 2018-06-28 14:22:06 +0100 | [diff] [blame] | 54 | |
| 55 | #include <linux/stackdepot.h> |
| 56 | |
| 57 | static void vma_print_allocator(struct i915_vma *vma, const char *reason) |
| 58 | { |
Chris Wilson | 10195b1 | 2018-06-28 14:22:06 +0100 | [diff] [blame] | 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 | |
Imran Khan | 0f68d45 | 2021-11-08 18:33:16 -0800 | [diff] [blame] | 67 | stack_depot_snprint(vma->node.stack, buf, sizeof(buf), 0); |
Chris Wilson | 10195b1 | 2018-06-28 14:22:06 +0100 | [diff] [blame] | 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 | |
Chris Wilson | 12c255b | 2019-06-21 19:38:00 +0100 | [diff] [blame] | 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 | { |
Chris Wilson | 2833ddc | 2019-08-20 11:05:31 +0100 | [diff] [blame] | 87 | return i915_vma_tryget(active_to_vma(ref)) ? 0 : -ENOENT; |
Chris Wilson | 12c255b | 2019-06-21 19:38:00 +0100 | [diff] [blame] | 88 | } |
| 89 | |
Chris Wilson | 64d6c50 | 2019-02-05 13:00:02 +0000 | [diff] [blame] | 90 | static void __i915_vma_retire(struct i915_active *ref) |
| 91 | { |
Chris Wilson | 12c255b | 2019-06-21 19:38:00 +0100 | [diff] [blame] | 92 | i915_vma_put(active_to_vma(ref)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 93 | } |
| 94 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 95 | static struct i915_vma * |
Chris Wilson | a01cb37a | 2017-01-16 15:21:30 +0000 | [diff] [blame] | 96 | vma_create(struct drm_i915_gem_object *obj, |
| 97 | struct i915_address_space *vm, |
| 98 | const struct i915_ggtt_view *view) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 99 | { |
Chris Wilson | 03fca66 | 2020-07-02 22:10:15 +0100 | [diff] [blame] | 100 | struct i915_vma *pos = ERR_PTR(-E2BIG); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 101 | struct i915_vma *vma; |
| 102 | struct rb_node *rb, **p; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 103 | |
Chris Wilson | e1cc3db | 2017-02-09 11:19:33 +0000 | [diff] [blame] | 104 | /* The aliasing_ppgtt should never be used directly! */ |
Chris Wilson | 71e51ca | 2019-10-21 19:32:35 +0100 | [diff] [blame] | 105 | GEM_BUG_ON(vm == &vm->gt->ggtt->alias->vm); |
Chris Wilson | e1cc3db | 2017-02-09 11:19:33 +0000 | [diff] [blame] | 106 | |
Chris Wilson | 13f1bfd | 2019-02-28 10:20:34 +0000 | [diff] [blame] | 107 | vma = i915_vma_alloc(); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 108 | if (vma == NULL) |
| 109 | return ERR_PTR(-ENOMEM); |
| 110 | |
Chris Wilson | 76f9764 | 2019-12-22 21:02:55 +0000 | [diff] [blame] | 111 | kref_init(&vma->ref); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 112 | mutex_init(&vma->pages_mutex); |
| 113 | vma->vm = i915_vm_get(vm); |
Chris Wilson | 93f2cde | 2018-06-07 16:40:46 +0100 | [diff] [blame] | 114 | vma->ops = &vm->vma_ops; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 115 | vma->obj = obj; |
| 116 | vma->size = obj->base.size; |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 117 | vma->display_alignment = I915_GTT_MIN_ALIGNMENT; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 118 | |
Matthew Auld | c3b1476 | 2021-05-04 17:41:36 +0100 | [diff] [blame] | 119 | i915_active_init(&vma->active, __i915_vma_active, __i915_vma_retire, 0); |
Chris Wilson | 155ab88 | 2019-06-06 12:23:20 +0100 | [diff] [blame] | 120 | |
Chris Wilson | 0948007 | 2019-07-03 10:17:19 +0100 | [diff] [blame] | 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 | |
Chris Wilson | 155ab88 | 2019-06-06 12:23:20 +0100 | [diff] [blame] | 128 | INIT_LIST_HEAD(&vma->closed_link); |
| 129 | |
Chris Wilson | 7c51846 | 2017-01-23 14:52:45 +0000 | [diff] [blame] | 130 | if (view && view->type != I915_GGTT_VIEW_NORMAL) { |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 131 | vma->ggtt_view = *view; |
| 132 | if (view->type == I915_GGTT_VIEW_PARTIAL) { |
Chris Wilson | 07e19ea | 2016-12-23 14:57:59 +0000 | [diff] [blame] | 133 | GEM_BUG_ON(range_overflows_t(u64, |
Chris Wilson | 8bab1193 | 2017-01-14 00:28:25 +0000 | [diff] [blame] | 134 | view->partial.offset, |
| 135 | view->partial.size, |
Chris Wilson | 07e19ea | 2016-12-23 14:57:59 +0000 | [diff] [blame] | 136 | obj->base.size >> PAGE_SHIFT)); |
Chris Wilson | 8bab1193 | 2017-01-14 00:28:25 +0000 | [diff] [blame] | 137 | vma->size = view->partial.size; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 138 | vma->size <<= PAGE_SHIFT; |
Chris Wilson | 7e7367d | 2018-06-30 10:05:09 +0100 | [diff] [blame] | 139 | GEM_BUG_ON(vma->size > obj->base.size); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 140 | } else if (view->type == I915_GGTT_VIEW_ROTATED) { |
Chris Wilson | 8bab1193 | 2017-01-14 00:28:25 +0000 | [diff] [blame] | 141 | vma->size = intel_rotation_info_size(&view->rotated); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 142 | vma->size <<= PAGE_SHIFT; |
Ville Syrjälä | 1a74fc0 | 2019-05-09 15:21:52 +0300 | [diff] [blame] | 143 | } else if (view->type == I915_GGTT_VIEW_REMAPPED) { |
| 144 | vma->size = intel_remapped_info_size(&view->remapped); |
| 145 | vma->size <<= PAGE_SHIFT; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 146 | } |
| 147 | } |
| 148 | |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 149 | if (unlikely(vma->size > vm->total)) |
| 150 | goto err_vma; |
| 151 | |
Chris Wilson | b00ddb2 | 2017-01-19 19:26:59 +0000 | [diff] [blame] | 152 | GEM_BUG_ON(!IS_ALIGNED(vma->size, I915_GTT_PAGE_SIZE)); |
| 153 | |
Chris Wilson | cb593e5 | 2020-04-22 08:28:05 +0100 | [diff] [blame] | 154 | spin_lock(&obj->vma.lock); |
| 155 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 156 | if (i915_is_ggtt(vm)) { |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 157 | if (unlikely(overflows_type(vma->size, u32))) |
Chris Wilson | cb593e5 | 2020-04-22 08:28:05 +0100 | [diff] [blame] | 158 | goto err_unlock; |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 159 | |
Chris Wilson | 91d4e0aa | 2017-01-09 16:16:13 +0000 | [diff] [blame] | 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)); |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 163 | if (unlikely(vma->fence_size < vma->size || /* overflow */ |
| 164 | vma->fence_size > vm->total)) |
Chris Wilson | cb593e5 | 2020-04-22 08:28:05 +0100 | [diff] [blame] | 165 | goto err_unlock; |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 166 | |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 167 | GEM_BUG_ON(!IS_ALIGNED(vma->fence_size, I915_GTT_MIN_ALIGNMENT)); |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 168 | |
Chris Wilson | 91d4e0aa | 2017-01-09 16:16:13 +0000 | [diff] [blame] | 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)); |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 172 | GEM_BUG_ON(!is_power_of_2(vma->fence_alignment)); |
| 173 | |
Chris Wilson | 4dd2fbb | 2019-09-11 10:02:43 +0100 | [diff] [blame] | 174 | __set_bit(I915_VMA_GGTT_BIT, __i915_vma_flags(vma)); |
Chris Wilson | 528cbd1 | 2019-01-28 10:23:54 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Chris Wilson | 528cbd1 | 2019-01-28 10:23:54 +0000 | [diff] [blame] | 177 | rb = NULL; |
| 178 | p = &obj->vma.tree.rb_node; |
| 179 | while (*p) { |
Chris Wilson | 528cbd1 | 2019-01-28 10:23:54 +0000 | [diff] [blame] | 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); |
Chris Wilson | 528cbd1 | 2019-01-28 10:23:54 +0000 | [diff] [blame] | 191 | if (cmp < 0) |
| 192 | p = &rb->rb_right; |
Chris Wilson | 03fca66 | 2020-07-02 22:10:15 +0100 | [diff] [blame] | 193 | else if (cmp > 0) |
Chris Wilson | 528cbd1 | 2019-01-28 10:23:54 +0000 | [diff] [blame] | 194 | p = &rb->rb_left; |
Chris Wilson | 03fca66 | 2020-07-02 22:10:15 +0100 | [diff] [blame] | 195 | else |
| 196 | goto err_unlock; |
Chris Wilson | 528cbd1 | 2019-01-28 10:23:54 +0000 | [diff] [blame] | 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)) |
Chris Wilson | e2189dd | 2017-12-07 21:14:07 +0000 | [diff] [blame] | 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 | */ |
Chris Wilson | 528cbd1 | 2019-01-28 10:23:54 +0000 | [diff] [blame] | 208 | list_add(&vma->obj_link, &obj->vma.list); |
| 209 | else |
| 210 | list_add_tail(&vma->obj_link, &obj->vma.list); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 211 | |
Chris Wilson | 528cbd1 | 2019-01-28 10:23:54 +0000 | [diff] [blame] | 212 | spin_unlock(&obj->vma.lock); |
Chris Wilson | 09d7e46 | 2019-01-28 10:23:53 +0000 | [diff] [blame] | 213 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 214 | return vma; |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 215 | |
Chris Wilson | cb593e5 | 2020-04-22 08:28:05 +0100 | [diff] [blame] | 216 | err_unlock: |
| 217 | spin_unlock(&obj->vma.lock); |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 218 | err_vma: |
Chris Wilson | 03fca66 | 2020-07-02 22:10:15 +0100 | [diff] [blame] | 219 | i915_vm_put(vm); |
Chris Wilson | 13f1bfd | 2019-02-28 10:20:34 +0000 | [diff] [blame] | 220 | i915_vma_free(vma); |
Chris Wilson | 03fca66 | 2020-07-02 22:10:15 +0100 | [diff] [blame] | 221 | return pos; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 222 | } |
| 223 | |
Chris Wilson | 481a6f7 | 2017-01-16 15:21:31 +0000 | [diff] [blame] | 224 | static struct i915_vma * |
Liam Howlett | 547be6a | 2021-03-23 13:42:21 +0000 | [diff] [blame] | 225 | i915_vma_lookup(struct drm_i915_gem_object *obj, |
Chris Wilson | 481a6f7 | 2017-01-16 15:21:31 +0000 | [diff] [blame] | 226 | struct i915_address_space *vm, |
| 227 | const struct i915_ggtt_view *view) |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 228 | { |
| 229 | struct rb_node *rb; |
| 230 | |
Chris Wilson | 528cbd1 | 2019-01-28 10:23:54 +0000 | [diff] [blame] | 231 | rb = obj->vma.tree.rb_node; |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 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 | /** |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 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 | * |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 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 | |
Imre Deak | 74862d4 | 2021-05-24 20:27:02 +0300 | [diff] [blame] | 269 | GEM_BUG_ON(view && !i915_is_ggtt_or_dpt(vm)); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 270 | GEM_BUG_ON(!atomic_read(&vm->open)); |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 271 | |
Chris Wilson | 528cbd1 | 2019-01-28 10:23:54 +0000 | [diff] [blame] | 272 | spin_lock(&obj->vma.lock); |
Liam Howlett | 547be6a | 2021-03-23 13:42:21 +0000 | [diff] [blame] | 273 | vma = i915_vma_lookup(obj, vm, view); |
Chris Wilson | 528cbd1 | 2019-01-28 10:23:54 +0000 | [diff] [blame] | 274 | spin_unlock(&obj->vma.lock); |
| 275 | |
| 276 | /* vma_create() will resolve the race if another creates the vma */ |
| 277 | if (unlikely(!vma)) |
Chris Wilson | a01cb37a | 2017-01-16 15:21:30 +0000 | [diff] [blame] | 278 | vma = vma_create(obj, vm, view); |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 279 | |
Chris Wilson | 4ea9527 | 2017-01-16 15:21:29 +0000 | [diff] [blame] | 280 | GEM_BUG_ON(!IS_ERR(vma) && i915_vma_compare(vma, vm, view)); |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 281 | return vma; |
| 282 | } |
| 283 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 284 | struct i915_vma_work { |
| 285 | struct dma_fence_work base; |
Chris Wilson | cd0452a | 2020-07-29 17:42:17 +0100 | [diff] [blame] | 286 | struct i915_address_space *vm; |
| 287 | struct i915_vm_pt_stash stash; |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 288 | struct i915_vma *vma; |
Chris Wilson | 54d7195 | 2019-12-16 16:17:16 +0000 | [diff] [blame] | 289 | struct drm_i915_gem_object *pinned; |
Chris Wilson | e379346 | 2020-01-30 18:17:10 +0000 | [diff] [blame] | 290 | struct i915_sw_dma_fence_cb cb; |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 291 | enum i915_cache_level cache_level; |
| 292 | unsigned int flags; |
| 293 | }; |
| 294 | |
Jason Ekstrand | dc19418 | 2021-07-14 14:34:18 -0500 | [diff] [blame] | 295 | static void __vma_bind(struct dma_fence_work *work) |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 296 | { |
| 297 | struct i915_vma_work *vw = container_of(work, typeof(*vw), base); |
| 298 | struct i915_vma *vma = vw->vma; |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 299 | |
Chris Wilson | cd0452a | 2020-07-29 17:42:17 +0100 | [diff] [blame] | 300 | vma->ops->bind_vma(vw->vm, &vw->stash, |
| 301 | vma, vw->cache_level, vw->flags); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 302 | } |
| 303 | |
Chris Wilson | 54d7195 | 2019-12-16 16:17:16 +0000 | [diff] [blame] | 304 | static void __vma_release(struct dma_fence_work *work) |
| 305 | { |
| 306 | struct i915_vma_work *vw = container_of(work, typeof(*vw), base); |
| 307 | |
Chris Wilson | 537457a | 2020-11-02 16:19:31 +0000 | [diff] [blame] | 308 | if (vw->pinned) { |
Chris Wilson | 54d7195 | 2019-12-16 16:17:16 +0000 | [diff] [blame] | 309 | __i915_gem_object_unpin_pages(vw->pinned); |
Chris Wilson | 537457a | 2020-11-02 16:19:31 +0000 | [diff] [blame] | 310 | i915_gem_object_put(vw->pinned); |
| 311 | } |
Chris Wilson | cd0452a | 2020-07-29 17:42:17 +0100 | [diff] [blame] | 312 | |
| 313 | i915_vm_free_pt_stash(vw->vm, &vw->stash); |
| 314 | i915_vm_put(vw->vm); |
Chris Wilson | 54d7195 | 2019-12-16 16:17:16 +0000 | [diff] [blame] | 315 | } |
| 316 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 317 | static const struct dma_fence_work_ops bind_ops = { |
| 318 | .name = "bind", |
| 319 | .work = __vma_bind, |
Chris Wilson | 54d7195 | 2019-12-16 16:17:16 +0000 | [diff] [blame] | 320 | .release = __vma_release, |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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 | |
Chris Wilson | e379346 | 2020-01-30 18:17:10 +0000 | [diff] [blame] | 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) { |
Matthew Auld | fbd4cf3 | 2021-11-02 15:50:55 +0000 | [diff] [blame] | 348 | err = dma_fence_wait(fence, true); |
Chris Wilson | e379346 | 2020-01-30 18:17:10 +0000 | [diff] [blame] | 349 | dma_fence_put(fence); |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | return err; |
| 354 | } |
| 355 | |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 356 | /** |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 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 |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 361 | * @work: preallocated worker for allocating and binding the PTE |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 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 | */ |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 371 | { |
| 372 | u32 bind_flags; |
| 373 | u32 vma_flags; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 374 | |
Chris Wilson | aa14943 | 2017-02-25 18:11:21 +0000 | [diff] [blame] | 375 | GEM_BUG_ON(!drm_mm_node_allocated(&vma->node)); |
| 376 | GEM_BUG_ON(vma->size > vma->node.size); |
| 377 | |
Tvrtko Ursulin | bbb8a9d | 2018-10-12 07:31:42 +0100 | [diff] [blame] | 378 | if (GEM_DEBUG_WARN_ON(range_overflows(vma->node.start, |
| 379 | vma->node.size, |
| 380 | vma->vm->total))) |
Chris Wilson | aa14943 | 2017-02-25 18:11:21 +0000 | [diff] [blame] | 381 | return -ENODEV; |
| 382 | |
Tvrtko Ursulin | bbb8a9d | 2018-10-12 07:31:42 +0100 | [diff] [blame] | 383 | if (GEM_DEBUG_WARN_ON(!flags)) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 384 | return -EINVAL; |
| 385 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 386 | bind_flags = flags; |
| 387 | bind_flags &= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 388 | |
Chris Wilson | 4dd2fbb | 2019-09-11 10:02:43 +0100 | [diff] [blame] | 389 | vma_flags = atomic_read(&vma->flags); |
| 390 | vma_flags &= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND; |
Chris Wilson | aedbe0a | 2020-05-21 15:49:49 +0100 | [diff] [blame] | 391 | |
| 392 | bind_flags &= ~vma_flags; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 393 | if (bind_flags == 0) |
| 394 | return 0; |
| 395 | |
Matthew Auld | fa3f46a | 2017-10-06 23:18:19 +0100 | [diff] [blame] | 396 | GEM_BUG_ON(!vma->pages); |
| 397 | |
Daniele Ceraolo Spurio | 6146e6d | 2017-01-20 13:51:23 -0800 | [diff] [blame] | 398 | trace_i915_vma_bind(vma, bind_flags); |
Chris Wilson | aedbe0a | 2020-05-21 15:49:49 +0100 | [diff] [blame] | 399 | if (work && bind_flags & vma->vm->bind_async_flags) { |
Chris Wilson | e379346 | 2020-01-30 18:17:10 +0000 | [diff] [blame] | 400 | struct dma_fence *prev; |
| 401 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 402 | work->vma = vma; |
| 403 | work->cache_level = cache_level; |
Chris Wilson | 12b0725 | 2020-07-03 11:25:19 +0100 | [diff] [blame] | 404 | work->flags = bind_flags; |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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 | */ |
Chris Wilson | e379346 | 2020-01-30 18:17:10 +0000 | [diff] [blame] | 415 | prev = i915_active_set_exclusive(&vma->active, &work->base.dma); |
Chris Wilson | 30ca04e | 2020-02-03 09:41:47 +0000 | [diff] [blame] | 416 | if (prev) { |
Chris Wilson | e379346 | 2020-01-30 18:17:10 +0000 | [diff] [blame] | 417 | __i915_sw_fence_await_dma_fence(&work->base.chain, |
| 418 | prev, |
| 419 | &work->cb); |
Chris Wilson | 30ca04e | 2020-02-03 09:41:47 +0000 | [diff] [blame] | 420 | dma_fence_put(prev); |
| 421 | } |
Chris Wilson | e379346 | 2020-01-30 18:17:10 +0000 | [diff] [blame] | 422 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 423 | work->base.dma.error = 0; /* enable the queue_work() */ |
| 424 | |
Maarten Lankhorst | e6e1a30 | 2021-11-17 14:20:22 +0000 | [diff] [blame] | 425 | __i915_gem_object_pin_pages(vma->obj); |
| 426 | work->pinned = i915_gem_object_get(vma->obj); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 427 | } else { |
Chris Wilson | cd0452a | 2020-07-29 17:42:17 +0100 | [diff] [blame] | 428 | vma->ops->bind_vma(vma->vm, NULL, vma, cache_level, bind_flags); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 429 | } |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 430 | |
Chris Wilson | 4dd2fbb | 2019-09-11 10:02:43 +0100 | [diff] [blame] | 431 | atomic_or(bind_flags, &vma->flags); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 432 | return 0; |
| 433 | } |
| 434 | |
| 435 | void __iomem *i915_vma_pin_iomap(struct i915_vma *vma) |
| 436 | { |
| 437 | void __iomem *ptr; |
Chris Wilson | b4563f5 | 2017-10-09 09:43:55 +0100 | [diff] [blame] | 438 | int err; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 439 | |
Anusha Srivatsa | 4bc91db | 2021-04-27 09:54:16 +0100 | [diff] [blame] | 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 | } |
Chris Wilson | b4563f5 | 2017-10-09 09:43:55 +0100 | [diff] [blame] | 445 | } |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 446 | |
| 447 | GEM_BUG_ON(!i915_vma_is_ggtt(vma)); |
Chris Wilson | 4dd2fbb | 2019-09-11 10:02:43 +0100 | [diff] [blame] | 448 | GEM_BUG_ON(!i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 449 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 450 | ptr = READ_ONCE(vma->iomap); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 451 | if (ptr == NULL) { |
Anusha Srivatsa | 4bc91db | 2021-04-27 09:54:16 +0100 | [diff] [blame] | 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); |
Chris Wilson | b4563f5 | 2017-10-09 09:43:55 +0100 | [diff] [blame] | 465 | if (ptr == NULL) { |
| 466 | err = -ENOMEM; |
| 467 | goto err; |
| 468 | } |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 469 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 470 | if (unlikely(cmpxchg(&vma->iomap, NULL, ptr))) { |
| 471 | io_mapping_unmap(ptr); |
| 472 | ptr = vma->iomap; |
| 473 | } |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | __i915_vma_pin(vma); |
Chris Wilson | b4563f5 | 2017-10-09 09:43:55 +0100 | [diff] [blame] | 477 | |
Chris Wilson | 3bd4073 | 2017-10-09 09:43:56 +0100 | [diff] [blame] | 478 | err = i915_vma_pin_fence(vma); |
Chris Wilson | b4563f5 | 2017-10-09 09:43:55 +0100 | [diff] [blame] | 479 | if (err) |
| 480 | goto err_unpin; |
| 481 | |
Chris Wilson | 7125397b | 2017-12-06 12:49:14 +0000 | [diff] [blame] | 482 | i915_vma_set_ggtt_write(vma); |
Chris Wilson | a5972e9 | 2020-01-08 15:35:50 +0000 | [diff] [blame] | 483 | |
| 484 | /* NB Access through the GTT requires the device to be awake. */ |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 485 | return ptr; |
Chris Wilson | b4563f5 | 2017-10-09 09:43:55 +0100 | [diff] [blame] | 486 | |
| 487 | err_unpin: |
| 488 | __i915_vma_unpin(vma); |
| 489 | err: |
| 490 | return IO_ERR_PTR(err); |
| 491 | } |
| 492 | |
Chris Wilson | 7125397b | 2017-12-06 12:49:14 +0000 | [diff] [blame] | 493 | void i915_vma_flush_writes(struct i915_vma *vma) |
| 494 | { |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 495 | if (i915_vma_unset_ggtt_write(vma)) |
| 496 | intel_gt_flush_ggtt_writes(vma->vm->gt); |
Chris Wilson | 7125397b | 2017-12-06 12:49:14 +0000 | [diff] [blame] | 497 | } |
| 498 | |
Chris Wilson | b4563f5 | 2017-10-09 09:43:55 +0100 | [diff] [blame] | 499 | void i915_vma_unpin_iomap(struct i915_vma *vma) |
| 500 | { |
Chris Wilson | b4563f5 | 2017-10-09 09:43:55 +0100 | [diff] [blame] | 501 | GEM_BUG_ON(vma->iomap == NULL); |
| 502 | |
Chris Wilson | 7125397b | 2017-12-06 12:49:14 +0000 | [diff] [blame] | 503 | i915_vma_flush_writes(vma); |
| 504 | |
Chris Wilson | b4563f5 | 2017-10-09 09:43:55 +0100 | [diff] [blame] | 505 | i915_vma_unpin_fence(vma); |
| 506 | i915_vma_unpin(vma); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 507 | } |
| 508 | |
Chris Wilson | 6a2f59e | 2018-07-21 13:50:37 +0100 | [diff] [blame] | 509 | void i915_vma_unpin_and_release(struct i915_vma **p_vma, unsigned int flags) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 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; |
Chris Wilson | 520ea7c | 2018-06-07 16:40:45 +0100 | [diff] [blame] | 519 | GEM_BUG_ON(!obj); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 520 | |
| 521 | i915_vma_unpin(vma); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 522 | |
Chris Wilson | 6a2f59e | 2018-07-21 13:50:37 +0100 | [diff] [blame] | 523 | if (flags & I915_VMA_RELEASE_MAP) |
| 524 | i915_gem_object_unpin_map(obj); |
| 525 | |
Chris Wilson | c017cf6 | 2019-05-28 10:29:56 +0100 | [diff] [blame] | 526 | i915_gem_object_put(obj); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 527 | } |
| 528 | |
Chris Wilson | 782a3e9 | 2017-02-13 17:15:46 +0000 | [diff] [blame] | 529 | bool i915_vma_misplaced(const struct i915_vma *vma, |
| 530 | u64 size, u64 alignment, u64 flags) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 531 | { |
| 532 | if (!drm_mm_node_allocated(&vma->node)) |
| 533 | return false; |
| 534 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 535 | if (test_bit(I915_VMA_ERROR_BIT, __i915_vma_flags(vma))) |
| 536 | return true; |
| 537 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 538 | if (vma->node.size < size) |
| 539 | return true; |
| 540 | |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 541 | GEM_BUG_ON(alignment && !is_power_of_2(alignment)); |
| 542 | if (alignment && !IS_ALIGNED(vma->node.start, alignment)) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 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 | { |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 561 | bool mappable, fenceable; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 562 | |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 563 | GEM_BUG_ON(!i915_vma_is_ggtt(vma)); |
| 564 | GEM_BUG_ON(!vma->fence_size); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 565 | |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 566 | fenceable = (vma->node.size >= vma->fence_size && |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 567 | IS_ALIGNED(vma->node.start, vma->fence_alignment)); |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 568 | |
| 569 | mappable = vma->node.start + vma->fence_size <= i915_vm_to_ggtt(vma->vm)->mappable_end; |
| 570 | |
| 571 | if (mappable && fenceable) |
Chris Wilson | 4dd2fbb | 2019-09-11 10:02:43 +0100 | [diff] [blame] | 572 | set_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 573 | else |
Chris Wilson | 4dd2fbb | 2019-09-11 10:02:43 +0100 | [diff] [blame] | 574 | clear_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 575 | } |
| 576 | |
Matthew Auld | 33dd889 | 2019-09-09 13:40:52 +0100 | [diff] [blame] | 577 | bool i915_gem_valid_gtt_space(struct i915_vma *vma, unsigned long color) |
Chris Wilson | 7d1d9ae | 2016-12-05 14:29:38 +0000 | [diff] [blame] | 578 | { |
| 579 | struct drm_mm_node *node = &vma->node; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 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 | */ |
Matthew Auld | 33dd889 | 2019-09-09 13:40:52 +0100 | [diff] [blame] | 589 | if (!i915_vm_has_cache_coloring(vma->vm)) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 590 | return true; |
| 591 | |
Chris Wilson | 7d1d9ae | 2016-12-05 14:29:38 +0000 | [diff] [blame] | 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)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 595 | |
Chris Wilson | 7d1d9ae | 2016-12-05 14:29:38 +0000 | [diff] [blame] | 596 | other = list_prev_entry(node, node_list); |
Matthew Auld | 33dd889 | 2019-09-09 13:40:52 +0100 | [diff] [blame] | 597 | if (i915_node_color_differs(other, color) && |
Matthew Auld | 1e0a96e | 2019-09-09 13:40:50 +0100 | [diff] [blame] | 598 | !drm_mm_hole_follows(other)) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 599 | return false; |
| 600 | |
Chris Wilson | 7d1d9ae | 2016-12-05 14:29:38 +0000 | [diff] [blame] | 601 | other = list_next_entry(node, node_list); |
Matthew Auld | 33dd889 | 2019-09-09 13:40:52 +0100 | [diff] [blame] | 602 | if (i915_node_color_differs(other, color) && |
Matthew Auld | 1e0a96e | 2019-09-09 13:40:50 +0100 | [diff] [blame] | 603 | !drm_mm_hole_follows(node)) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 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 | { |
Matthew Auld | 33dd889 | 2019-09-09 13:40:52 +0100 | [diff] [blame] | 626 | unsigned long color; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 627 | u64 start, end; |
| 628 | int ret; |
| 629 | |
Chris Wilson | 4dd2fbb | 2019-09-11 10:02:43 +0100 | [diff] [blame] | 630 | GEM_BUG_ON(i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 631 | GEM_BUG_ON(drm_mm_node_allocated(&vma->node)); |
| 632 | |
| 633 | size = max(size, vma->size); |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 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 | } |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 640 | |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 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 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 645 | start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0; |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 646 | GEM_BUG_ON(!IS_ALIGNED(start, I915_GTT_PAGE_SIZE)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 647 | |
| 648 | end = vma->vm->total; |
| 649 | if (flags & PIN_MAPPABLE) |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 650 | end = min_t(u64, end, i915_vm_to_ggtt(vma->vm)->mappable_end); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 651 | if (flags & PIN_ZONE_4G) |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 652 | end = min_t(u64, end, (1ULL << 32) - I915_GTT_PAGE_SIZE); |
| 653 | GEM_BUG_ON(!IS_ALIGNED(end, I915_GTT_PAGE_SIZE)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 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) { |
Chris Wilson | 520ea7c | 2018-06-07 16:40:45 +0100 | [diff] [blame] | 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", |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 662 | end); |
Chris Wilson | 2889caa | 2017-06-16 15:05:19 +0100 | [diff] [blame] | 663 | return -ENOSPC; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 664 | } |
| 665 | |
Matthew Auld | 33dd889 | 2019-09-09 13:40:52 +0100 | [diff] [blame] | 666 | color = 0; |
Maarten Lankhorst | e6e1a30 | 2021-11-17 14:20:22 +0000 | [diff] [blame] | 667 | if (i915_vm_has_cache_coloring(vma->vm)) |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 668 | color = vma->obj->cache_level; |
Matthew Auld | fa3f46a | 2017-10-06 23:18:19 +0100 | [diff] [blame] | 669 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 670 | if (flags & PIN_OFFSET_FIXED) { |
| 671 | u64 offset = flags & PIN_OFFSET_MASK; |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 672 | if (!IS_ALIGNED(offset, alignment) || |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 673 | range_overflows(offset, size, end)) |
| 674 | return -EINVAL; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 675 | |
Chris Wilson | 625d988 | 2017-01-11 11:23:11 +0000 | [diff] [blame] | 676 | ret = i915_gem_gtt_reserve(vma->vm, &vma->node, |
Matthew Auld | 33dd889 | 2019-09-09 13:40:52 +0100 | [diff] [blame] | 677 | size, offset, color, |
Chris Wilson | 625d988 | 2017-01-11 11:23:11 +0000 | [diff] [blame] | 678 | flags); |
| 679 | if (ret) |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 680 | return ret; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 681 | } else { |
Matthew Auld | 7464284 | 2017-10-06 23:18:20 +0100 | [diff] [blame] | 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) { |
Matthew Auld | 855822b | 2017-10-06 23:18:21 +0100 | [diff] [blame] | 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 | */ |
Matthew Auld | 7464284 | 2017-10-06 23:18:20 +0100 | [diff] [blame] | 698 | u64 page_alignment = |
Matthew Auld | 855822b | 2017-10-06 23:18:21 +0100 | [diff] [blame] | 699 | rounddown_pow_of_two(vma->page_sizes.sg | |
| 700 | I915_GTT_PAGE_SIZE_2M); |
Matthew Auld | 7464284 | 2017-10-06 23:18:20 +0100 | [diff] [blame] | 701 | |
Chris Wilson | bef27bdb | 2017-10-09 10:20:19 +0100 | [diff] [blame] | 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 | |
Matthew Auld | 7464284 | 2017-10-06 23:18:20 +0100 | [diff] [blame] | 709 | alignment = max(alignment, page_alignment); |
Matthew Auld | 855822b | 2017-10-06 23:18:21 +0100 | [diff] [blame] | 710 | |
| 711 | if (vma->page_sizes.sg & I915_GTT_PAGE_SIZE_64K) |
| 712 | size = round_up(size, I915_GTT_PAGE_SIZE_2M); |
Matthew Auld | 7464284 | 2017-10-06 23:18:20 +0100 | [diff] [blame] | 713 | } |
| 714 | |
Chris Wilson | e007b19 | 2017-01-11 11:23:10 +0000 | [diff] [blame] | 715 | ret = i915_gem_gtt_insert(vma->vm, &vma->node, |
Matthew Auld | 33dd889 | 2019-09-09 13:40:52 +0100 | [diff] [blame] | 716 | size, alignment, color, |
Chris Wilson | e007b19 | 2017-01-11 11:23:10 +0000 | [diff] [blame] | 717 | start, end, flags); |
| 718 | if (ret) |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 719 | return ret; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 720 | |
| 721 | GEM_BUG_ON(vma->node.start < start); |
| 722 | GEM_BUG_ON(vma->node.start + vma->node.size > end); |
| 723 | } |
Chris Wilson | 44a0ec0 | 2017-01-19 19:26:58 +0000 | [diff] [blame] | 724 | GEM_BUG_ON(!drm_mm_node_allocated(&vma->node)); |
Matthew Auld | 33dd889 | 2019-09-09 13:40:52 +0100 | [diff] [blame] | 725 | GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, color)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 726 | |
Chris Wilson | dde01d9 | 2019-10-30 19:21:49 +0000 | [diff] [blame] | 727 | list_add_tail(&vma->vm_link, &vma->vm->bound_list); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 728 | |
| 729 | return 0; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 730 | } |
| 731 | |
Chris Wilson | 31c7eff | 2017-02-27 12:26:54 +0000 | [diff] [blame] | 732 | static void |
Chris Wilson | dde01d9 | 2019-10-30 19:21:49 +0000 | [diff] [blame] | 733 | i915_vma_detach(struct i915_vma *vma) |
Chris Wilson | 31c7eff | 2017-02-27 12:26:54 +0000 | [diff] [blame] | 734 | { |
Chris Wilson | 31c7eff | 2017-02-27 12:26:54 +0000 | [diff] [blame] | 735 | GEM_BUG_ON(!drm_mm_node_allocated(&vma->node)); |
Chris Wilson | 4dd2fbb | 2019-09-11 10:02:43 +0100 | [diff] [blame] | 736 | GEM_BUG_ON(i915_vma_is_bound(vma, I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND)); |
Chris Wilson | 31c7eff | 2017-02-27 12:26:54 +0000 | [diff] [blame] | 737 | |
Chris Wilson | 520ea7c | 2018-06-07 16:40:45 +0100 | [diff] [blame] | 738 | /* |
Chris Wilson | dde01d9 | 2019-10-30 19:21:49 +0000 | [diff] [blame] | 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. |
Chris Wilson | 31c7eff | 2017-02-27 12:26:54 +0000 | [diff] [blame] | 742 | */ |
Chris Wilson | dde01d9 | 2019-10-30 19:21:49 +0000 | [diff] [blame] | 743 | list_del(&vma->vm_link); |
Chris Wilson | 31c7eff | 2017-02-27 12:26:54 +0000 | [diff] [blame] | 744 | } |
| 745 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 746 | static bool try_qad_pin(struct i915_vma *vma, unsigned int flags) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 747 | { |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 748 | unsigned int bound; |
| 749 | bool pinned = true; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 750 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 751 | bound = atomic_read(&vma->flags); |
| 752 | do { |
| 753 | if (unlikely(flags & ~bound)) |
| 754 | return false; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 755 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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; |
Maarten Lankhorst | e6e1a30 | 2021-11-17 14:20:22 +0000 | [diff] [blame] | 792 | bool pinned_pages = true; |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 793 | |
| 794 | if (atomic_add_unless(&vma->pages_count, 1, 0)) |
| 795 | return 0; |
| 796 | |
Maarten Lankhorst | e6e1a30 | 2021-11-17 14:20:22 +0000 | [diff] [blame] | 797 | err = i915_gem_object_pin_pages(vma->obj); |
| 798 | if (err) |
| 799 | return err; |
Thomas Hellström | 0f4308d | 2021-06-01 09:46:40 +0200 | [diff] [blame] | 800 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 801 | /* Allocations ahoy! */ |
Thomas Hellström | 0f4308d | 2021-06-01 09:46:40 +0200 | [diff] [blame] | 802 | if (mutex_lock_interruptible(&vma->pages_mutex)) { |
| 803 | err = -EINTR; |
| 804 | goto unpin; |
| 805 | } |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 806 | |
| 807 | if (!atomic_read(&vma->pages_count)) { |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 808 | err = vma->ops->set_pages(vma); |
Thomas Hellström | 0f4308d | 2021-06-01 09:46:40 +0200 | [diff] [blame] | 809 | if (err) |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 810 | goto unlock; |
Thomas Hellström | 0f4308d | 2021-06-01 09:46:40 +0200 | [diff] [blame] | 811 | pinned_pages = false; |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 812 | } |
| 813 | atomic_inc(&vma->pages_count); |
| 814 | |
| 815 | unlock: |
| 816 | mutex_unlock(&vma->pages_mutex); |
Thomas Hellström | 0f4308d | 2021-06-01 09:46:40 +0200 | [diff] [blame] | 817 | unpin: |
| 818 | if (pinned_pages) |
| 819 | __i915_gem_object_unpin_pages(vma->obj); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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); |
Maarten Lankhorst | e6e1a30 | 2021-11-17 14:20:22 +0000 | [diff] [blame] | 832 | |
| 833 | i915_gem_object_unpin_pages(vma->obj); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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 | |
Maarten Lankhorst | 47b0869 | 2020-08-19 16:08:54 +0200 | [diff] [blame] | 860 | int i915_vma_pin_ww(struct i915_vma *vma, struct i915_gem_ww_ctx *ww, |
| 861 | u64 size, u64 alignment, u64 flags) |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 862 | { |
| 863 | struct i915_vma_work *work = NULL; |
Chris Wilson | c0e6034 | 2020-01-10 14:44:18 +0000 | [diff] [blame] | 864 | intel_wakeref_t wakeref = 0; |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 865 | unsigned int bound; |
| 866 | int err; |
| 867 | |
Maarten Lankhorst | 47b0869 | 2020-08-19 16:08:54 +0200 | [diff] [blame] | 868 | #ifdef CONFIG_PROVE_LOCKING |
Maarten Lankhorst | e6e1a30 | 2021-11-17 14:20:22 +0000 | [diff] [blame] | 869 | if (debug_locks && !WARN_ON(!ww)) |
Maarten Lankhorst | 1eef0de1 | 2021-03-23 16:49:54 +0100 | [diff] [blame] | 870 | assert_vma_held(vma); |
Maarten Lankhorst | 47b0869 | 2020-08-19 16:08:54 +0200 | [diff] [blame] | 871 | #endif |
| 872 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 873 | BUILD_BUG_ON(PIN_GLOBAL != I915_VMA_GLOBAL_BIND); |
| 874 | BUILD_BUG_ON(PIN_USER != I915_VMA_LOCAL_BIND); |
| 875 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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 | |
Chris Wilson | 8935192 | 2020-07-29 17:42:18 +0100 | [diff] [blame] | 886 | if (flags & PIN_GLOBAL) |
| 887 | wakeref = intel_runtime_pm_get(&vma->vm->i915->runtime_pm); |
| 888 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 889 | if (flags & vma->vm->bind_async_flags) { |
Maarten Lankhorst | 26ad4f8 | 2021-03-23 16:50:29 +0100 | [diff] [blame] | 890 | /* lock VM */ |
| 891 | err = i915_vm_lock_objects(vma->vm, ww); |
| 892 | if (err) |
| 893 | goto err_rpm; |
| 894 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 895 | work = i915_vma_work(); |
| 896 | if (!work) { |
| 897 | err = -ENOMEM; |
Chris Wilson | 8935192 | 2020-07-29 17:42:18 +0100 | [diff] [blame] | 898 | goto err_rpm; |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 899 | } |
Chris Wilson | cd0452a | 2020-07-29 17:42:17 +0100 | [diff] [blame] | 900 | |
| 901 | work->vm = i915_vm_get(vma->vm); |
| 902 | |
| 903 | /* Allocate enough page directories to used PTE */ |
Chris Wilson | 8935192 | 2020-07-29 17:42:18 +0100 | [diff] [blame] | 904 | if (vma->vm->allocate_va_range) { |
Matthew Auld | cef8ce5 | 2020-09-21 17:08:44 +0100 | [diff] [blame] | 905 | err = i915_vm_alloc_pt_stash(vma->vm, |
| 906 | &work->stash, |
| 907 | vma->size); |
| 908 | if (err) |
| 909 | goto err_fence; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 910 | |
Matthew Auld | 529b9ec | 2021-04-27 09:54:13 +0100 | [diff] [blame] | 911 | err = i915_vm_map_pt_stash(vma->vm, &work->stash); |
Chris Wilson | 8935192 | 2020-07-29 17:42:18 +0100 | [diff] [blame] | 912 | if (err) |
| 913 | goto err_fence; |
| 914 | } |
| 915 | } |
Chris Wilson | c0e6034 | 2020-01-10 14:44:18 +0000 | [diff] [blame] | 916 | |
Chris Wilson | d002491 | 2020-03-26 14:27:27 +0000 | [diff] [blame] | 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)); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 936 | if (err) |
| 937 | goto err_fence; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 938 | |
Chris Wilson | d002491 | 2020-03-26 14:27:27 +0000 | [diff] [blame] | 939 | /* No more allocations allowed now we hold vm->mutex */ |
| 940 | |
Chris Wilson | 00de702 | 2020-02-21 12:19:40 +0000 | [diff] [blame] | 941 | if (unlikely(i915_vma_is_closed(vma))) { |
| 942 | err = -ENOENT; |
| 943 | goto err_unlock; |
| 944 | } |
| 945 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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, |
Maarten Lankhorst | e6e1a30 | 2021-11-17 14:20:22 +0000 | [diff] [blame] | 977 | vma->obj->cache_level, |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 978 | flags, work); |
| 979 | if (err) |
Chris Wilson | 31c7eff | 2017-02-27 12:26:54 +0000 | [diff] [blame] | 980 | goto err_remove; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 981 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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); |
Chris Wilson | d36caee | 2017-11-05 12:45:50 +0000 | [diff] [blame] | 986 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 987 | __i915_vma_pin(vma); |
| 988 | GEM_BUG_ON(!i915_vma_is_pinned(vma)); |
| 989 | GEM_BUG_ON(!i915_vma_is_bound(vma, flags)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 990 | GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 991 | |
Chris Wilson | 31c7eff | 2017-02-27 12:26:54 +0000 | [diff] [blame] | 992 | err_remove: |
Chris Wilson | dde01d9 | 2019-10-30 19:21:49 +0000 | [diff] [blame] | 993 | if (!i915_vma_is_bound(vma, I915_VMA_BIND_MASK)) { |
| 994 | i915_vma_detach(vma); |
| 995 | drm_mm_remove_node(&vma->node); |
| 996 | } |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 997 | err_active: |
| 998 | i915_active_release(&vma->active); |
| 999 | err_unlock: |
| 1000 | mutex_unlock(&vma->vm->mutex); |
| 1001 | err_fence: |
| 1002 | if (work) |
Chris Wilson | 92581f9 | 2020-03-25 12:02:27 +0000 | [diff] [blame] | 1003 | dma_fence_work_commit_imm(&work->base); |
Chris Wilson | 8935192 | 2020-07-29 17:42:18 +0100 | [diff] [blame] | 1004 | err_rpm: |
Chris Wilson | c0e6034 | 2020-01-10 14:44:18 +0000 | [diff] [blame] | 1005 | if (wakeref) |
| 1006 | intel_runtime_pm_put(&vma->vm->i915->runtime_pm, wakeref); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1007 | vma_put_pages(vma); |
| 1008 | return err; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1009 | } |
| 1010 | |
Chris Wilson | ccd2094 | 2019-12-05 11:37:25 +0000 | [diff] [blame] | 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 | |
Maarten Lankhorst | 47b0869 | 2020-08-19 16:08:54 +0200 | [diff] [blame] | 1022 | int i915_ggtt_pin(struct i915_vma *vma, struct i915_gem_ww_ctx *ww, |
| 1023 | u32 align, unsigned int flags) |
Chris Wilson | ccd2094 | 2019-12-05 11:37:25 +0000 | [diff] [blame] | 1024 | { |
| 1025 | struct i915_address_space *vm = vma->vm; |
| 1026 | int err; |
| 1027 | |
| 1028 | GEM_BUG_ON(!i915_vma_is_ggtt(vma)); |
| 1029 | |
Maarten Lankhorst | 1eef0de1 | 2021-03-23 16:49:54 +0100 | [diff] [blame] | 1030 | #ifdef CONFIG_LOCKDEP |
Maarten Lankhorst | 95c3d27 | 2021-11-17 14:20:23 +0000 | [diff] [blame] | 1031 | WARN_ON(!ww && dma_resv_held(vma->obj->base.resv)); |
Maarten Lankhorst | 1eef0de1 | 2021-03-23 16:49:54 +0100 | [diff] [blame] | 1032 | #endif |
| 1033 | |
Chris Wilson | ccd2094 | 2019-12-05 11:37:25 +0000 | [diff] [blame] | 1034 | do { |
Maarten Lankhorst | 1eef0de1 | 2021-03-23 16:49:54 +0100 | [diff] [blame] | 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); |
Chris Wilson | e379346 | 2020-01-30 18:17:10 +0000 | [diff] [blame] | 1039 | if (err != -ENOSPC) { |
| 1040 | if (!err) { |
| 1041 | err = i915_vma_wait_for_bind(vma); |
| 1042 | if (err) |
| 1043 | i915_vma_unpin(vma); |
| 1044 | } |
Chris Wilson | ccd2094 | 2019-12-05 11:37:25 +0000 | [diff] [blame] | 1045 | return err; |
Chris Wilson | e379346 | 2020-01-30 18:17:10 +0000 | [diff] [blame] | 1046 | } |
Chris Wilson | ccd2094 | 2019-12-05 11:37:25 +0000 | [diff] [blame] | 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 | |
Chris Wilson | 5068977 | 2020-04-22 20:05:58 +0100 | [diff] [blame] | 1057 | static void __vma_close(struct i915_vma *vma, struct intel_gt *gt) |
Chris Wilson | 3365e22 | 2018-05-03 20:51:14 +0100 | [diff] [blame] | 1058 | { |
Chris Wilson | 3365e22 | 2018-05-03 20:51:14 +0100 | [diff] [blame] | 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 | */ |
Chris Wilson | 5068977 | 2020-04-22 20:05:58 +0100 | [diff] [blame] | 1071 | GEM_BUG_ON(i915_vma_is_closed(vma)); |
Chris Wilson | 71e51ca | 2019-10-21 19:32:35 +0100 | [diff] [blame] | 1072 | list_add(&vma->closed_link, >->closed_vma); |
Chris Wilson | 5068977 | 2020-04-22 20:05:58 +0100 | [diff] [blame] | 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 | >->closed_lock, |
| 1086 | flags)) { |
| 1087 | __vma_close(vma, gt); |
| 1088 | spin_unlock_irqrestore(>->closed_lock, flags); |
| 1089 | } |
Chris Wilson | 155ab88 | 2019-06-06 12:23:20 +0100 | [diff] [blame] | 1090 | } |
| 1091 | |
| 1092 | static void __i915_vma_remove_closed(struct i915_vma *vma) |
| 1093 | { |
Chris Wilson | 71e51ca | 2019-10-21 19:32:35 +0100 | [diff] [blame] | 1094 | struct intel_gt *gt = vma->vm->gt; |
Chris Wilson | 155ab88 | 2019-06-06 12:23:20 +0100 | [diff] [blame] | 1095 | |
Chris Wilson | 71e51ca | 2019-10-21 19:32:35 +0100 | [diff] [blame] | 1096 | spin_lock_irq(>->closed_lock); |
Chris Wilson | 155ab88 | 2019-06-06 12:23:20 +0100 | [diff] [blame] | 1097 | list_del_init(&vma->closed_link); |
Chris Wilson | 71e51ca | 2019-10-21 19:32:35 +0100 | [diff] [blame] | 1098 | spin_unlock_irq(>->closed_lock); |
Chris Wilson | 3365e22 | 2018-05-03 20:51:14 +0100 | [diff] [blame] | 1099 | } |
| 1100 | |
| 1101 | void i915_vma_reopen(struct i915_vma *vma) |
| 1102 | { |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1103 | if (i915_vma_is_closed(vma)) |
| 1104 | __i915_vma_remove_closed(vma); |
Chris Wilson | 3365e22 | 2018-05-03 20:51:14 +0100 | [diff] [blame] | 1105 | } |
| 1106 | |
Chris Wilson | 76f9764 | 2019-12-22 21:02:55 +0000 | [diff] [blame] | 1107 | void i915_vma_release(struct kref *ref) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1108 | { |
Chris Wilson | 76f9764 | 2019-12-22 21:02:55 +0000 | [diff] [blame] | 1109 | struct i915_vma *vma = container_of(ref, typeof(*vma), ref); |
Maarten Lankhorst | e6e1a30 | 2021-11-17 14:20:22 +0000 | [diff] [blame] | 1110 | struct drm_i915_gem_object *obj = vma->obj; |
Chris Wilson | 76f9764 | 2019-12-22 21:02:55 +0000 | [diff] [blame] | 1111 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1120 | |
Maarten Lankhorst | e6e1a30 | 2021-11-17 14:20:22 +0000 | [diff] [blame] | 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); |
Chris Wilson | 010e3e6 | 2017-12-06 12:49:13 +0000 | [diff] [blame] | 1126 | |
Chris Wilson | 155ab88 | 2019-06-06 12:23:20 +0100 | [diff] [blame] | 1127 | __i915_vma_remove_closed(vma); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1128 | i915_vm_put(vma->vm); |
Chris Wilson | 3365e22 | 2018-05-03 20:51:14 +0100 | [diff] [blame] | 1129 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1130 | i915_active_fini(&vma->active); |
| 1131 | i915_vma_free(vma); |
Chris Wilson | 3365e22 | 2018-05-03 20:51:14 +0100 | [diff] [blame] | 1132 | } |
| 1133 | |
Chris Wilson | 71e51ca | 2019-10-21 19:32:35 +0100 | [diff] [blame] | 1134 | void i915_vma_parked(struct intel_gt *gt) |
Chris Wilson | 3365e22 | 2018-05-03 20:51:14 +0100 | [diff] [blame] | 1135 | { |
| 1136 | struct i915_vma *vma, *next; |
Chris Wilson | 3447c4c | 2020-03-23 09:28:35 +0000 | [diff] [blame] | 1137 | LIST_HEAD(closed); |
Chris Wilson | 3365e22 | 2018-05-03 20:51:14 +0100 | [diff] [blame] | 1138 | |
Chris Wilson | 71e51ca | 2019-10-21 19:32:35 +0100 | [diff] [blame] | 1139 | spin_lock_irq(>->closed_lock); |
| 1140 | list_for_each_entry_safe(vma, next, >->closed_vma, closed_link) { |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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 | |
Chris Wilson | 3447c4c | 2020-03-23 09:28:35 +0000 | [diff] [blame] | 1149 | if (!i915_vm_tryopen(vm)) { |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1150 | i915_gem_object_put(obj); |
Chris Wilson | 3447c4c | 2020-03-23 09:28:35 +0000 | [diff] [blame] | 1151 | continue; |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1152 | } |
| 1153 | |
Chris Wilson | 3447c4c | 2020-03-23 09:28:35 +0000 | [diff] [blame] | 1154 | list_move(&vma->closed_link, &closed); |
Chris Wilson | 155ab88 | 2019-06-06 12:23:20 +0100 | [diff] [blame] | 1155 | } |
Chris Wilson | 71e51ca | 2019-10-21 19:32:35 +0100 | [diff] [blame] | 1156 | spin_unlock_irq(>->closed_lock); |
Chris Wilson | 3447c4c | 2020-03-23 09:28:35 +0000 | [diff] [blame] | 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 | } |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 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 | |
Chris Wilson | a65adaf | 2017-10-09 09:43:57 +0100 | [diff] [blame] | 1182 | void i915_vma_revoke_mmap(struct i915_vma *vma) |
| 1183 | { |
Abdiel Janulgue | cc66212 | 2019-12-04 12:00:32 +0000 | [diff] [blame] | 1184 | struct drm_vma_offset_node *node; |
Chris Wilson | a65adaf | 2017-10-09 09:43:57 +0100 | [diff] [blame] | 1185 | u64 vma_offset; |
| 1186 | |
Chris Wilson | a65adaf | 2017-10-09 09:43:57 +0100 | [diff] [blame] | 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 | |
Abdiel Janulgue | cc66212 | 2019-12-04 12:00:32 +0000 | [diff] [blame] | 1193 | node = &vma->mmo->vma_node; |
Chris Wilson | a65adaf | 2017-10-09 09:43:57 +0100 | [diff] [blame] | 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 | |
Chris Wilson | af5c6fc | 2020-07-31 09:50:15 +0100 | [diff] [blame] | 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 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 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! */ |
Chris Wilson | af5c6fc | 2020-07-31 09:50:15 +0100 | [diff] [blame] | 1218 | err = __i915_request_await_bind(rq, vma); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1219 | if (err) |
| 1220 | return err; |
| 1221 | |
| 1222 | return i915_active_add_request(&vma->active, rq); |
| 1223 | } |
| 1224 | |
Matthew Brost | 544460c | 2021-10-14 10:20:00 -0700 | [diff] [blame] | 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) |
Chris Wilson | e6bb1d7 | 2018-07-06 11:39:45 +0100 | [diff] [blame] | 1229 | { |
| 1230 | struct drm_i915_gem_object *obj = vma->obj; |
Chris Wilson | a93615f | 2019-06-21 19:37:59 +0100 | [diff] [blame] | 1231 | int err; |
Chris Wilson | e6bb1d7 | 2018-07-06 11:39:45 +0100 | [diff] [blame] | 1232 | |
Chris Wilson | 6951e58 | 2019-05-28 10:29:51 +0100 | [diff] [blame] | 1233 | assert_object_held(obj); |
Chris Wilson | e6bb1d7 | 2018-07-06 11:39:45 +0100 | [diff] [blame] | 1234 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1235 | err = __i915_vma_move_to_active(vma, rq); |
Chris Wilson | a93615f | 2019-06-21 19:37:59 +0100 | [diff] [blame] | 1236 | if (unlikely(err)) |
| 1237 | return err; |
Chris Wilson | e6bb1d7 | 2018-07-06 11:39:45 +0100 | [diff] [blame] | 1238 | |
Chris Wilson | e6bb1d7 | 2018-07-06 11:39:45 +0100 | [diff] [blame] | 1239 | if (flags & EXEC_OBJECT_WRITE) { |
Chris Wilson | da42104 | 2019-12-18 10:40:43 +0000 | [diff] [blame] | 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 | } |
Chris Wilson | e6bb1d7 | 2018-07-06 11:39:45 +0100 | [diff] [blame] | 1248 | |
Matthew Brost | 544460c | 2021-10-14 10:20:00 -0700 | [diff] [blame] | 1249 | if (fence) { |
Maarten Lankhorst | 95c3d27 | 2021-11-17 14:20:23 +0000 | [diff] [blame] | 1250 | dma_resv_add_excl_fence(vma->obj->base.resv, fence); |
Matthew Brost | 544460c | 2021-10-14 10:20:00 -0700 | [diff] [blame] | 1251 | obj->write_domain = I915_GEM_DOMAIN_RENDER; |
| 1252 | obj->read_domains = 0; |
| 1253 | } |
Chris Wilson | cd2a4ea | 2019-07-30 21:58:05 +0100 | [diff] [blame] | 1254 | } else { |
Maarten Lankhorst | bfaae47 | 2021-03-23 16:49:59 +0100 | [diff] [blame] | 1255 | if (!(flags & __EXEC_OBJECT_NO_RESERVE)) { |
Maarten Lankhorst | 95c3d27 | 2021-11-17 14:20:23 +0000 | [diff] [blame] | 1256 | err = dma_resv_reserve_shared(vma->obj->base.resv, 1); |
Maarten Lankhorst | bfaae47 | 2021-03-23 16:49:59 +0100 | [diff] [blame] | 1257 | if (unlikely(err)) |
| 1258 | return err; |
| 1259 | } |
Chris Wilson | cd2a4ea | 2019-07-30 21:58:05 +0100 | [diff] [blame] | 1260 | |
Matthew Brost | 544460c | 2021-10-14 10:20:00 -0700 | [diff] [blame] | 1261 | if (fence) { |
Maarten Lankhorst | 95c3d27 | 2021-11-17 14:20:23 +0000 | [diff] [blame] | 1262 | dma_resv_add_shared_fence(vma->obj->base.resv, fence); |
Matthew Brost | 544460c | 2021-10-14 10:20:00 -0700 | [diff] [blame] | 1263 | obj->write_domain = 0; |
| 1264 | } |
Chris Wilson | e6bb1d7 | 2018-07-06 11:39:45 +0100 | [diff] [blame] | 1265 | } |
Chris Wilson | 63baf4f | 2020-04-01 22:01:02 +0100 | [diff] [blame] | 1266 | |
| 1267 | if (flags & EXEC_OBJECT_NEEDS_FENCE && vma->fence) |
| 1268 | i915_active_add_request(&vma->fence->active, rq); |
| 1269 | |
Chris Wilson | e6bb1d7 | 2018-07-06 11:39:45 +0100 | [diff] [blame] | 1270 | obj->read_domains |= I915_GEM_GPU_DOMAINS; |
Chris Wilson | a93615f | 2019-06-21 19:37:59 +0100 | [diff] [blame] | 1271 | obj->mm.dirty = true; |
Chris Wilson | e6bb1d7 | 2018-07-06 11:39:45 +0100 | [diff] [blame] | 1272 | |
Chris Wilson | a93615f | 2019-06-21 19:37:59 +0100 | [diff] [blame] | 1273 | GEM_BUG_ON(!i915_vma_is_active(vma)); |
Chris Wilson | e6bb1d7 | 2018-07-06 11:39:45 +0100 | [diff] [blame] | 1274 | return 0; |
| 1275 | } |
| 1276 | |
Chris Wilson | bffa18d | 2020-05-28 09:24:27 +0100 | [diff] [blame] | 1277 | void __i915_vma_evict(struct i915_vma *vma) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1278 | { |
Chris Wilson | 60e9455 | 2020-01-23 22:44:58 +0000 | [diff] [blame] | 1279 | GEM_BUG_ON(i915_vma_is_pinned(vma)); |
Chris Wilson | 60e9455 | 2020-01-23 22:44:58 +0000 | [diff] [blame] | 1280 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1281 | if (i915_vma_is_map_and_fenceable(vma)) { |
Chris Wilson | 9657aaa | 2020-04-03 17:09:51 +0100 | [diff] [blame] | 1282 | /* Force a pagefault for domain tracking on next user access */ |
| 1283 | i915_vma_revoke_mmap(vma); |
| 1284 | |
Chris Wilson | 7125397b | 2017-12-06 12:49:14 +0000 | [diff] [blame] | 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. |
Chris Wilson | 5424f5d | 2020-01-21 22:24:41 +0000 | [diff] [blame] | 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. |
Chris Wilson | 7125397b | 2017-12-06 12:49:14 +0000 | [diff] [blame] | 1297 | */ |
| 1298 | i915_vma_flush_writes(vma); |
Chris Wilson | 7125397b | 2017-12-06 12:49:14 +0000 | [diff] [blame] | 1299 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1300 | /* release the fence reg _after_ flushing */ |
Chris Wilson | 0d86ee3 | 2020-04-01 22:01:04 +0100 | [diff] [blame] | 1301 | i915_vma_revoke_fence(vma); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1302 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1303 | __i915_vma_iounmap(vma); |
Chris Wilson | 4dd2fbb | 2019-09-11 10:02:43 +0100 | [diff] [blame] | 1304 | clear_bit(I915_VMA_CAN_FENCE_BIT, __i915_vma_flags(vma)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1305 | } |
Chris Wilson | a65adaf | 2017-10-09 09:43:57 +0100 | [diff] [blame] | 1306 | GEM_BUG_ON(vma->fence); |
| 1307 | GEM_BUG_ON(i915_vma_has_userfault(vma)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1308 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1309 | if (likely(atomic_read(&vma->vm->open))) { |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1310 | trace_i915_vma_unbind(vma); |
Chris Wilson | 12b0725 | 2020-07-03 11:25:19 +0100 | [diff] [blame] | 1311 | vma->ops->unbind_vma(vma->vm, vma); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1312 | } |
Chris Wilson | 5424f5d | 2020-01-21 22:24:41 +0000 | [diff] [blame] | 1313 | atomic_and(~(I915_VMA_BIND_MASK | I915_VMA_ERROR | I915_VMA_GGTT_WRITE), |
| 1314 | &vma->flags); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1315 | |
Chris Wilson | dde01d9 | 2019-10-30 19:21:49 +0000 | [diff] [blame] | 1316 | i915_vma_detach(vma); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1317 | vma_unbind_pages(vma); |
Chris Wilson | bffa18d | 2020-05-28 09:24:27 +0100 | [diff] [blame] | 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); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1345 | |
Chris Wilson | 76f9764 | 2019-12-22 21:02:55 +0000 | [diff] [blame] | 1346 | drm_mm_remove_node(&vma->node); /* pairs with i915_vma_release() */ |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 1347 | return 0; |
| 1348 | } |
| 1349 | |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1350 | int i915_vma_unbind(struct i915_vma *vma) |
| 1351 | { |
| 1352 | struct i915_address_space *vm = vma->vm; |
Chris Wilson | c0e6034 | 2020-01-10 14:44:18 +0000 | [diff] [blame] | 1353 | intel_wakeref_t wakeref = 0; |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1354 | int err; |
| 1355 | |
Chris Wilson | d62f416f | 2020-01-23 22:44:59 +0000 | [diff] [blame] | 1356 | /* Optimistic wait before taking the mutex */ |
| 1357 | err = i915_vma_sync(vma); |
| 1358 | if (err) |
Chris Wilson | bffa18d | 2020-05-28 09:24:27 +0100 | [diff] [blame] | 1359 | return err; |
| 1360 | |
| 1361 | if (!drm_mm_node_allocated(&vma->node)) |
| 1362 | return 0; |
Chris Wilson | d62f416f | 2020-01-23 22:44:59 +0000 | [diff] [blame] | 1363 | |
Chris Wilson | 614654a | 2020-04-03 13:01:50 +0100 | [diff] [blame] | 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 | |
Chris Wilson | d002491 | 2020-03-26 14:27:27 +0000 | [diff] [blame] | 1373 | err = mutex_lock_interruptible_nested(&vma->vm->mutex, !wakeref); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1374 | if (err) |
Chris Wilson | d62f416f | 2020-01-23 22:44:59 +0000 | [diff] [blame] | 1375 | goto out_rpm; |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1376 | |
| 1377 | err = __i915_vma_unbind(vma); |
| 1378 | mutex_unlock(&vm->mutex); |
| 1379 | |
Chris Wilson | d62f416f | 2020-01-23 22:44:59 +0000 | [diff] [blame] | 1380 | out_rpm: |
Chris Wilson | c0e6034 | 2020-01-10 14:44:18 +0000 | [diff] [blame] | 1381 | if (wakeref) |
| 1382 | intel_runtime_pm_put(&vm->i915->runtime_pm, wakeref); |
Chris Wilson | 2850748 | 2019-10-04 14:39:58 +0100 | [diff] [blame] | 1383 | return err; |
| 1384 | } |
| 1385 | |
Chris Wilson | 1aff190 | 2019-08-02 22:21:36 +0100 | [diff] [blame] | 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 | |
Chris Wilson | e3c7a1c | 2017-02-13 17:15:45 +0000 | [diff] [blame] | 1402 | #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST) |
| 1403 | #include "selftests/i915_vma.c" |
| 1404 | #endif |
Chris Wilson | 13f1bfd | 2019-02-28 10:20:34 +0000 | [diff] [blame] | 1405 | |
Daniel Vetter | 64fc7cc | 2021-07-27 14:10:35 +0200 | [diff] [blame] | 1406 | void i915_vma_module_exit(void) |
Chris Wilson | 103b76ee | 2019-03-05 21:38:30 +0000 | [diff] [blame] | 1407 | { |
Daniel Vetter | 64fc7cc | 2021-07-27 14:10:35 +0200 | [diff] [blame] | 1408 | kmem_cache_destroy(slab_vmas); |
Chris Wilson | 103b76ee | 2019-03-05 21:38:30 +0000 | [diff] [blame] | 1409 | } |
| 1410 | |
Daniel Vetter | 64fc7cc | 2021-07-27 14:10:35 +0200 | [diff] [blame] | 1411 | int __init i915_vma_module_init(void) |
Chris Wilson | 13f1bfd | 2019-02-28 10:20:34 +0000 | [diff] [blame] | 1412 | { |
Daniel Vetter | 64fc7cc | 2021-07-27 14:10:35 +0200 | [diff] [blame] | 1413 | slab_vmas = KMEM_CACHE(i915_vma, SLAB_HWCACHE_ALIGN); |
| 1414 | if (!slab_vmas) |
Chris Wilson | 13f1bfd | 2019-02-28 10:20:34 +0000 | [diff] [blame] | 1415 | return -ENOMEM; |
| 1416 | |
| 1417 | return 0; |
| 1418 | } |