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 | */ |
| 24 | |
| 25 | #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 | |
| 33 | static void |
| 34 | i915_vma_retire(struct i915_gem_active *active, |
| 35 | struct drm_i915_gem_request *rq) |
| 36 | { |
| 37 | const unsigned int idx = rq->engine->id; |
| 38 | struct i915_vma *vma = |
| 39 | container_of(active, struct i915_vma, last_read[idx]); |
| 40 | struct drm_i915_gem_object *obj = vma->obj; |
| 41 | |
| 42 | GEM_BUG_ON(!i915_vma_has_active_engine(vma, idx)); |
| 43 | |
| 44 | i915_vma_clear_active(vma, idx); |
| 45 | if (i915_vma_is_active(vma)) |
| 46 | return; |
| 47 | |
Chris Wilson | 44a0ec0 | 2017-01-19 19:26:58 +0000 | [diff] [blame] | 48 | GEM_BUG_ON(!drm_mm_node_allocated(&vma->node)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 49 | list_move_tail(&vma->vm_link, &vma->vm->inactive_list); |
| 50 | if (unlikely(i915_vma_is_closed(vma) && !i915_vma_is_pinned(vma))) |
| 51 | WARN_ON(i915_vma_unbind(vma)); |
| 52 | |
| 53 | GEM_BUG_ON(!i915_gem_object_is_active(obj)); |
| 54 | if (--obj->active_count) |
| 55 | return; |
| 56 | |
| 57 | /* Bump our place on the bound list to keep it roughly in LRU order |
| 58 | * so that we don't steal from recently used but inactive objects |
| 59 | * (unless we are forced to ofc!) |
| 60 | */ |
| 61 | if (obj->bind_count) |
| 62 | list_move_tail(&obj->global_link, &rq->i915->mm.bound_list); |
| 63 | |
| 64 | obj->mm.dirty = true; /* be paranoid */ |
| 65 | |
| 66 | if (i915_gem_object_has_active_reference(obj)) { |
| 67 | i915_gem_object_clear_active_reference(obj); |
| 68 | i915_gem_object_put(obj); |
| 69 | } |
| 70 | } |
| 71 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 72 | static struct i915_vma * |
Chris Wilson | a01cb37a | 2017-01-16 15:21:30 +0000 | [diff] [blame] | 73 | vma_create(struct drm_i915_gem_object *obj, |
| 74 | struct i915_address_space *vm, |
| 75 | const struct i915_ggtt_view *view) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 76 | { |
| 77 | struct i915_vma *vma; |
| 78 | struct rb_node *rb, **p; |
| 79 | int i; |
| 80 | |
Chris Wilson | e1cc3db | 2017-02-09 11:19:33 +0000 | [diff] [blame] | 81 | /* The aliasing_ppgtt should never be used directly! */ |
| 82 | GEM_BUG_ON(vm == &vm->i915->mm.aliasing_ppgtt->base); |
| 83 | |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 84 | vma = kmem_cache_zalloc(vm->i915->vmas, GFP_KERNEL); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 85 | if (vma == NULL) |
| 86 | return ERR_PTR(-ENOMEM); |
| 87 | |
| 88 | INIT_LIST_HEAD(&vma->exec_list); |
| 89 | for (i = 0; i < ARRAY_SIZE(vma->last_read); i++) |
| 90 | init_request_active(&vma->last_read[i], i915_vma_retire); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 91 | init_request_active(&vma->last_fence, NULL); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 92 | vma->vm = vm; |
| 93 | vma->obj = obj; |
| 94 | vma->size = obj->base.size; |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 95 | vma->display_alignment = I915_GTT_MIN_ALIGNMENT; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 96 | |
Chris Wilson | 7c51846 | 2017-01-23 14:52:45 +0000 | [diff] [blame] | 97 | if (view && view->type != I915_GGTT_VIEW_NORMAL) { |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 98 | vma->ggtt_view = *view; |
| 99 | if (view->type == I915_GGTT_VIEW_PARTIAL) { |
Chris Wilson | 07e19ea | 2016-12-23 14:57:59 +0000 | [diff] [blame] | 100 | GEM_BUG_ON(range_overflows_t(u64, |
Chris Wilson | 8bab1193 | 2017-01-14 00:28:25 +0000 | [diff] [blame] | 101 | view->partial.offset, |
| 102 | view->partial.size, |
Chris Wilson | 07e19ea | 2016-12-23 14:57:59 +0000 | [diff] [blame] | 103 | obj->base.size >> PAGE_SHIFT)); |
Chris Wilson | 8bab1193 | 2017-01-14 00:28:25 +0000 | [diff] [blame] | 104 | vma->size = view->partial.size; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 105 | vma->size <<= PAGE_SHIFT; |
Chris Wilson | 07e19ea | 2016-12-23 14:57:59 +0000 | [diff] [blame] | 106 | GEM_BUG_ON(vma->size >= obj->base.size); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 107 | } else if (view->type == I915_GGTT_VIEW_ROTATED) { |
Chris Wilson | 8bab1193 | 2017-01-14 00:28:25 +0000 | [diff] [blame] | 108 | vma->size = intel_rotation_info_size(&view->rotated); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 109 | vma->size <<= PAGE_SHIFT; |
| 110 | } |
| 111 | } |
| 112 | |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 113 | if (unlikely(vma->size > vm->total)) |
| 114 | goto err_vma; |
| 115 | |
Chris Wilson | b00ddb2 | 2017-01-19 19:26:59 +0000 | [diff] [blame] | 116 | GEM_BUG_ON(!IS_ALIGNED(vma->size, I915_GTT_PAGE_SIZE)); |
| 117 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 118 | if (i915_is_ggtt(vm)) { |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 119 | if (unlikely(overflows_type(vma->size, u32))) |
| 120 | goto err_vma; |
| 121 | |
Chris Wilson | 91d4e0aa | 2017-01-09 16:16:13 +0000 | [diff] [blame] | 122 | vma->fence_size = i915_gem_fence_size(vm->i915, vma->size, |
| 123 | i915_gem_object_get_tiling(obj), |
| 124 | i915_gem_object_get_stride(obj)); |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 125 | if (unlikely(vma->fence_size < vma->size || /* overflow */ |
| 126 | vma->fence_size > vm->total)) |
| 127 | goto err_vma; |
| 128 | |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 129 | GEM_BUG_ON(!IS_ALIGNED(vma->fence_size, I915_GTT_MIN_ALIGNMENT)); |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 130 | |
Chris Wilson | 91d4e0aa | 2017-01-09 16:16:13 +0000 | [diff] [blame] | 131 | vma->fence_alignment = i915_gem_fence_alignment(vm->i915, vma->size, |
| 132 | i915_gem_object_get_tiling(obj), |
| 133 | i915_gem_object_get_stride(obj)); |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 134 | GEM_BUG_ON(!is_power_of_2(vma->fence_alignment)); |
| 135 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 136 | vma->flags |= I915_VMA_GGTT; |
| 137 | list_add(&vma->obj_link, &obj->vma_list); |
| 138 | } else { |
| 139 | i915_ppgtt_get(i915_vm_to_ppgtt(vm)); |
| 140 | list_add_tail(&vma->obj_link, &obj->vma_list); |
| 141 | } |
| 142 | |
| 143 | rb = NULL; |
| 144 | p = &obj->vma_tree.rb_node; |
| 145 | while (*p) { |
| 146 | struct i915_vma *pos; |
| 147 | |
| 148 | rb = *p; |
| 149 | pos = rb_entry(rb, struct i915_vma, obj_node); |
| 150 | if (i915_vma_compare(pos, vm, view) < 0) |
| 151 | p = &rb->rb_right; |
| 152 | else |
| 153 | p = &rb->rb_left; |
| 154 | } |
| 155 | rb_link_node(&vma->obj_node, rb, p); |
| 156 | rb_insert_color(&vma->obj_node, &obj->vma_tree); |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 157 | list_add(&vma->vm_link, &vm->unbound_list); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 158 | |
| 159 | return vma; |
Chris Wilson | 1fcdaa7 | 2017-01-19 19:26:56 +0000 | [diff] [blame] | 160 | |
| 161 | err_vma: |
| 162 | kmem_cache_free(vm->i915->vmas, vma); |
| 163 | return ERR_PTR(-E2BIG); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 164 | } |
| 165 | |
Chris Wilson | 481a6f7 | 2017-01-16 15:21:31 +0000 | [diff] [blame] | 166 | static struct i915_vma * |
| 167 | vma_lookup(struct drm_i915_gem_object *obj, |
| 168 | struct i915_address_space *vm, |
| 169 | const struct i915_ggtt_view *view) |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 170 | { |
| 171 | struct rb_node *rb; |
| 172 | |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 173 | rb = obj->vma_tree.rb_node; |
| 174 | while (rb) { |
| 175 | struct i915_vma *vma = rb_entry(rb, struct i915_vma, obj_node); |
| 176 | long cmp; |
| 177 | |
| 178 | cmp = i915_vma_compare(vma, vm, view); |
| 179 | if (cmp == 0) |
| 180 | return vma; |
| 181 | |
| 182 | if (cmp < 0) |
| 183 | rb = rb->rb_right; |
| 184 | else |
| 185 | rb = rb->rb_left; |
| 186 | } |
| 187 | |
| 188 | return NULL; |
| 189 | } |
| 190 | |
| 191 | /** |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 192 | * i915_vma_instance - return the singleton instance of the VMA |
| 193 | * @obj: parent &struct drm_i915_gem_object to be mapped |
| 194 | * @vm: address space in which the mapping is located |
| 195 | * @view: additional mapping requirements |
| 196 | * |
| 197 | * i915_vma_instance() looks up an existing VMA of the @obj in the @vm with |
| 198 | * the same @view characteristics. If a match is not found, one is created. |
| 199 | * Once created, the VMA is kept until either the object is freed, or the |
| 200 | * address space is closed. |
| 201 | * |
| 202 | * Must be called with struct_mutex held. |
| 203 | * |
| 204 | * Returns the vma, or an error pointer. |
| 205 | */ |
| 206 | struct i915_vma * |
| 207 | i915_vma_instance(struct drm_i915_gem_object *obj, |
| 208 | struct i915_address_space *vm, |
| 209 | const struct i915_ggtt_view *view) |
| 210 | { |
| 211 | struct i915_vma *vma; |
| 212 | |
| 213 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 214 | GEM_BUG_ON(view && !i915_is_ggtt(vm)); |
| 215 | GEM_BUG_ON(vm->closed); |
| 216 | |
Chris Wilson | 481a6f7 | 2017-01-16 15:21:31 +0000 | [diff] [blame] | 217 | vma = vma_lookup(obj, vm, view); |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 218 | if (!vma) |
Chris Wilson | a01cb37a | 2017-01-16 15:21:30 +0000 | [diff] [blame] | 219 | vma = vma_create(obj, vm, view); |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 220 | |
| 221 | GEM_BUG_ON(!IS_ERR(vma) && i915_vma_is_closed(vma)); |
Chris Wilson | 4ea9527 | 2017-01-16 15:21:29 +0000 | [diff] [blame] | 222 | GEM_BUG_ON(!IS_ERR(vma) && i915_vma_compare(vma, vm, view)); |
Chris Wilson | 481a6f7 | 2017-01-16 15:21:31 +0000 | [diff] [blame] | 223 | GEM_BUG_ON(!IS_ERR(vma) && vma_lookup(obj, vm, view) != vma); |
Chris Wilson | 718659a | 2017-01-16 15:21:28 +0000 | [diff] [blame] | 224 | return vma; |
| 225 | } |
| 226 | |
| 227 | /** |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 228 | * i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space. |
| 229 | * @vma: VMA to map |
| 230 | * @cache_level: mapping cache level |
| 231 | * @flags: flags like global or local mapping |
| 232 | * |
| 233 | * DMA addresses are taken from the scatter-gather table of this object (or of |
| 234 | * this VMA in case of non-default GGTT views) and PTE entries set up. |
| 235 | * Note that DMA addresses are also the only part of the SG table we care about. |
| 236 | */ |
| 237 | int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level, |
| 238 | u32 flags) |
| 239 | { |
| 240 | u32 bind_flags; |
| 241 | u32 vma_flags; |
| 242 | int ret; |
| 243 | |
Chris Wilson | aa14943 | 2017-02-25 18:11:21 +0000 | [diff] [blame^] | 244 | GEM_BUG_ON(!drm_mm_node_allocated(&vma->node)); |
| 245 | GEM_BUG_ON(vma->size > vma->node.size); |
| 246 | |
| 247 | if (GEM_WARN_ON(range_overflows(vma->node.start, |
| 248 | vma->node.size, |
| 249 | vma->vm->total))) |
| 250 | return -ENODEV; |
| 251 | |
| 252 | if (GEM_WARN_ON(!flags)) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 253 | return -EINVAL; |
| 254 | |
| 255 | bind_flags = 0; |
| 256 | if (flags & PIN_GLOBAL) |
| 257 | bind_flags |= I915_VMA_GLOBAL_BIND; |
| 258 | if (flags & PIN_USER) |
| 259 | bind_flags |= I915_VMA_LOCAL_BIND; |
| 260 | |
| 261 | vma_flags = vma->flags & (I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND); |
| 262 | if (flags & PIN_UPDATE) |
| 263 | bind_flags |= vma_flags; |
| 264 | else |
| 265 | bind_flags &= ~vma_flags; |
| 266 | if (bind_flags == 0) |
| 267 | return 0; |
| 268 | |
Daniele Ceraolo Spurio | 6146e6d | 2017-01-20 13:51:23 -0800 | [diff] [blame] | 269 | trace_i915_vma_bind(vma, bind_flags); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 270 | ret = vma->vm->bind_vma(vma, cache_level, bind_flags); |
| 271 | if (ret) |
| 272 | return ret; |
| 273 | |
| 274 | vma->flags |= bind_flags; |
| 275 | return 0; |
| 276 | } |
| 277 | |
| 278 | void __iomem *i915_vma_pin_iomap(struct i915_vma *vma) |
| 279 | { |
| 280 | void __iomem *ptr; |
| 281 | |
| 282 | /* Access through the GTT requires the device to be awake. */ |
Chris Wilson | 49d7391 | 2016-11-29 09:50:08 +0000 | [diff] [blame] | 283 | assert_rpm_wakelock_held(vma->vm->i915); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 284 | |
Chris Wilson | 49d7391 | 2016-11-29 09:50:08 +0000 | [diff] [blame] | 285 | lockdep_assert_held(&vma->vm->i915->drm.struct_mutex); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 286 | if (WARN_ON(!i915_vma_is_map_and_fenceable(vma))) |
| 287 | return IO_ERR_PTR(-ENODEV); |
| 288 | |
| 289 | GEM_BUG_ON(!i915_vma_is_ggtt(vma)); |
| 290 | GEM_BUG_ON((vma->flags & I915_VMA_GLOBAL_BIND) == 0); |
| 291 | |
| 292 | ptr = vma->iomap; |
| 293 | if (ptr == NULL) { |
| 294 | ptr = io_mapping_map_wc(&i915_vm_to_ggtt(vma->vm)->mappable, |
| 295 | vma->node.start, |
| 296 | vma->node.size); |
| 297 | if (ptr == NULL) |
| 298 | return IO_ERR_PTR(-ENOMEM); |
| 299 | |
| 300 | vma->iomap = ptr; |
| 301 | } |
| 302 | |
| 303 | __i915_vma_pin(vma); |
| 304 | return ptr; |
| 305 | } |
| 306 | |
| 307 | void i915_vma_unpin_and_release(struct i915_vma **p_vma) |
| 308 | { |
| 309 | struct i915_vma *vma; |
| 310 | struct drm_i915_gem_object *obj; |
| 311 | |
| 312 | vma = fetch_and_zero(p_vma); |
| 313 | if (!vma) |
| 314 | return; |
| 315 | |
| 316 | obj = vma->obj; |
| 317 | |
| 318 | i915_vma_unpin(vma); |
| 319 | i915_vma_close(vma); |
| 320 | |
| 321 | __i915_gem_object_release_unless_active(obj); |
| 322 | } |
| 323 | |
Chris Wilson | 782a3e9 | 2017-02-13 17:15:46 +0000 | [diff] [blame] | 324 | bool i915_vma_misplaced(const struct i915_vma *vma, |
| 325 | u64 size, u64 alignment, u64 flags) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 326 | { |
| 327 | if (!drm_mm_node_allocated(&vma->node)) |
| 328 | return false; |
| 329 | |
| 330 | if (vma->node.size < size) |
| 331 | return true; |
| 332 | |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 333 | GEM_BUG_ON(alignment && !is_power_of_2(alignment)); |
| 334 | if (alignment && !IS_ALIGNED(vma->node.start, alignment)) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 335 | return true; |
| 336 | |
| 337 | if (flags & PIN_MAPPABLE && !i915_vma_is_map_and_fenceable(vma)) |
| 338 | return true; |
| 339 | |
| 340 | if (flags & PIN_OFFSET_BIAS && |
| 341 | vma->node.start < (flags & PIN_OFFSET_MASK)) |
| 342 | return true; |
| 343 | |
| 344 | if (flags & PIN_OFFSET_FIXED && |
| 345 | vma->node.start != (flags & PIN_OFFSET_MASK)) |
| 346 | return true; |
| 347 | |
| 348 | return false; |
| 349 | } |
| 350 | |
| 351 | void __i915_vma_set_map_and_fenceable(struct i915_vma *vma) |
| 352 | { |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 353 | bool mappable, fenceable; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 354 | |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 355 | GEM_BUG_ON(!i915_vma_is_ggtt(vma)); |
| 356 | GEM_BUG_ON(!vma->fence_size); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 357 | |
| 358 | /* |
| 359 | * Explicitly disable for rotated VMA since the display does not |
| 360 | * need the fence and the VMA is not accessible to other users. |
| 361 | */ |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 362 | if (vma->ggtt_view.type == I915_GGTT_VIEW_ROTATED) |
| 363 | return; |
| 364 | |
| 365 | fenceable = (vma->node.size >= vma->fence_size && |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 366 | IS_ALIGNED(vma->node.start, vma->fence_alignment)); |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 367 | |
| 368 | mappable = vma->node.start + vma->fence_size <= i915_vm_to_ggtt(vma->vm)->mappable_end; |
| 369 | |
| 370 | if (mappable && fenceable) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 371 | vma->flags |= I915_VMA_CAN_FENCE; |
| 372 | else |
| 373 | vma->flags &= ~I915_VMA_CAN_FENCE; |
| 374 | } |
| 375 | |
Chris Wilson | 7d1d9ae | 2016-12-05 14:29:38 +0000 | [diff] [blame] | 376 | static bool color_differs(struct drm_mm_node *node, unsigned long color) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 377 | { |
Chris Wilson | 7d1d9ae | 2016-12-05 14:29:38 +0000 | [diff] [blame] | 378 | return node->allocated && node->color != color; |
| 379 | } |
| 380 | |
| 381 | bool i915_gem_valid_gtt_space(struct i915_vma *vma, unsigned long cache_level) |
| 382 | { |
| 383 | struct drm_mm_node *node = &vma->node; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 384 | struct drm_mm_node *other; |
| 385 | |
| 386 | /* |
| 387 | * On some machines we have to be careful when putting differing types |
| 388 | * of snoopable memory together to avoid the prefetcher crossing memory |
| 389 | * domains and dying. During vm initialisation, we decide whether or not |
| 390 | * these constraints apply and set the drm_mm.color_adjust |
| 391 | * appropriately. |
| 392 | */ |
| 393 | if (vma->vm->mm.color_adjust == NULL) |
| 394 | return true; |
| 395 | |
Chris Wilson | 7d1d9ae | 2016-12-05 14:29:38 +0000 | [diff] [blame] | 396 | /* Only valid to be called on an already inserted vma */ |
| 397 | GEM_BUG_ON(!drm_mm_node_allocated(node)); |
| 398 | GEM_BUG_ON(list_empty(&node->node_list)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 399 | |
Chris Wilson | 7d1d9ae | 2016-12-05 14:29:38 +0000 | [diff] [blame] | 400 | other = list_prev_entry(node, node_list); |
Daniel Vetter | ef426c1 | 2017-01-04 11:41:10 +0100 | [diff] [blame] | 401 | if (color_differs(other, cache_level) && !drm_mm_hole_follows(other)) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 402 | return false; |
| 403 | |
Chris Wilson | 7d1d9ae | 2016-12-05 14:29:38 +0000 | [diff] [blame] | 404 | other = list_next_entry(node, node_list); |
Daniel Vetter | ef426c1 | 2017-01-04 11:41:10 +0100 | [diff] [blame] | 405 | if (color_differs(other, cache_level) && !drm_mm_hole_follows(node)) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 406 | return false; |
| 407 | |
| 408 | return true; |
| 409 | } |
| 410 | |
| 411 | /** |
| 412 | * i915_vma_insert - finds a slot for the vma in its address space |
| 413 | * @vma: the vma |
| 414 | * @size: requested size in bytes (can be larger than the VMA) |
| 415 | * @alignment: required alignment |
| 416 | * @flags: mask of PIN_* flags to use |
| 417 | * |
| 418 | * First we try to allocate some free space that meets the requirements for |
| 419 | * the VMA. Failiing that, if the flags permit, it will evict an old VMA, |
| 420 | * preferrably the oldest idle entry to make room for the new VMA. |
| 421 | * |
| 422 | * Returns: |
| 423 | * 0 on success, negative error code otherwise. |
| 424 | */ |
| 425 | static int |
| 426 | i915_vma_insert(struct i915_vma *vma, u64 size, u64 alignment, u64 flags) |
| 427 | { |
Chris Wilson | 49d7391 | 2016-11-29 09:50:08 +0000 | [diff] [blame] | 428 | struct drm_i915_private *dev_priv = vma->vm->i915; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 429 | struct drm_i915_gem_object *obj = vma->obj; |
| 430 | u64 start, end; |
| 431 | int ret; |
| 432 | |
| 433 | GEM_BUG_ON(vma->flags & (I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND)); |
| 434 | GEM_BUG_ON(drm_mm_node_allocated(&vma->node)); |
| 435 | |
| 436 | size = max(size, vma->size); |
Chris Wilson | 944397f | 2017-01-09 16:16:11 +0000 | [diff] [blame] | 437 | alignment = max(alignment, vma->display_alignment); |
| 438 | if (flags & PIN_MAPPABLE) { |
| 439 | size = max_t(typeof(size), size, vma->fence_size); |
| 440 | alignment = max_t(typeof(alignment), |
| 441 | alignment, vma->fence_alignment); |
| 442 | } |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 443 | |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 444 | GEM_BUG_ON(!IS_ALIGNED(size, I915_GTT_PAGE_SIZE)); |
| 445 | GEM_BUG_ON(!IS_ALIGNED(alignment, I915_GTT_MIN_ALIGNMENT)); |
| 446 | GEM_BUG_ON(!is_power_of_2(alignment)); |
| 447 | |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 448 | start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0; |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 449 | GEM_BUG_ON(!IS_ALIGNED(start, I915_GTT_PAGE_SIZE)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 450 | |
| 451 | end = vma->vm->total; |
| 452 | if (flags & PIN_MAPPABLE) |
| 453 | end = min_t(u64, end, dev_priv->ggtt.mappable_end); |
| 454 | if (flags & PIN_ZONE_4G) |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 455 | end = min_t(u64, end, (1ULL << 32) - I915_GTT_PAGE_SIZE); |
| 456 | GEM_BUG_ON(!IS_ALIGNED(end, I915_GTT_PAGE_SIZE)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 457 | |
| 458 | /* If binding the object/GGTT view requires more space than the entire |
| 459 | * aperture has, reject it early before evicting everything in a vain |
| 460 | * attempt to find space. |
| 461 | */ |
| 462 | if (size > end) { |
| 463 | DRM_DEBUG("Attempting to bind an object larger than the aperture: request=%llu [object=%zd] > %s aperture=%llu\n", |
| 464 | size, obj->base.size, |
| 465 | flags & PIN_MAPPABLE ? "mappable" : "total", |
| 466 | end); |
| 467 | return -E2BIG; |
| 468 | } |
| 469 | |
| 470 | ret = i915_gem_object_pin_pages(obj); |
| 471 | if (ret) |
| 472 | return ret; |
| 473 | |
| 474 | if (flags & PIN_OFFSET_FIXED) { |
| 475 | u64 offset = flags & PIN_OFFSET_MASK; |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 476 | if (!IS_ALIGNED(offset, alignment) || |
Chris Wilson | e8f9ae9 | 2017-01-06 15:20:12 +0000 | [diff] [blame] | 477 | range_overflows(offset, size, end)) { |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 478 | ret = -EINVAL; |
| 479 | goto err_unpin; |
| 480 | } |
| 481 | |
Chris Wilson | 625d988 | 2017-01-11 11:23:11 +0000 | [diff] [blame] | 482 | ret = i915_gem_gtt_reserve(vma->vm, &vma->node, |
| 483 | size, offset, obj->cache_level, |
| 484 | flags); |
| 485 | if (ret) |
| 486 | goto err_unpin; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 487 | } else { |
Chris Wilson | e007b19 | 2017-01-11 11:23:10 +0000 | [diff] [blame] | 488 | ret = i915_gem_gtt_insert(vma->vm, &vma->node, |
| 489 | size, alignment, obj->cache_level, |
| 490 | start, end, flags); |
| 491 | if (ret) |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 492 | goto err_unpin; |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 493 | |
| 494 | GEM_BUG_ON(vma->node.start < start); |
| 495 | GEM_BUG_ON(vma->node.start + vma->node.size > end); |
| 496 | } |
Chris Wilson | 44a0ec0 | 2017-01-19 19:26:58 +0000 | [diff] [blame] | 497 | GEM_BUG_ON(!drm_mm_node_allocated(&vma->node)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 498 | GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level)); |
| 499 | |
| 500 | list_move_tail(&obj->global_link, &dev_priv->mm.bound_list); |
| 501 | list_move_tail(&vma->vm_link, &vma->vm->inactive_list); |
| 502 | obj->bind_count++; |
| 503 | GEM_BUG_ON(atomic_read(&obj->mm.pages_pin_count) < obj->bind_count); |
| 504 | |
| 505 | return 0; |
| 506 | |
| 507 | err_unpin: |
| 508 | i915_gem_object_unpin_pages(obj); |
| 509 | return ret; |
| 510 | } |
| 511 | |
| 512 | int __i915_vma_do_pin(struct i915_vma *vma, |
| 513 | u64 size, u64 alignment, u64 flags) |
| 514 | { |
| 515 | unsigned int bound = vma->flags; |
| 516 | int ret; |
| 517 | |
Chris Wilson | 49d7391 | 2016-11-29 09:50:08 +0000 | [diff] [blame] | 518 | lockdep_assert_held(&vma->vm->i915->drm.struct_mutex); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 519 | GEM_BUG_ON((flags & (PIN_GLOBAL | PIN_USER)) == 0); |
| 520 | GEM_BUG_ON((flags & PIN_GLOBAL) && !i915_vma_is_ggtt(vma)); |
| 521 | |
| 522 | if (WARN_ON(bound & I915_VMA_PIN_OVERFLOW)) { |
| 523 | ret = -EBUSY; |
| 524 | goto err; |
| 525 | } |
| 526 | |
| 527 | if ((bound & I915_VMA_BIND_MASK) == 0) { |
| 528 | ret = i915_vma_insert(vma, size, alignment, flags); |
| 529 | if (ret) |
| 530 | goto err; |
| 531 | } |
| 532 | |
| 533 | ret = i915_vma_bind(vma, vma->obj->cache_level, flags); |
| 534 | if (ret) |
| 535 | goto err; |
| 536 | |
| 537 | if ((bound ^ vma->flags) & I915_VMA_GLOBAL_BIND) |
| 538 | __i915_vma_set_map_and_fenceable(vma); |
| 539 | |
Chris Wilson | 0325701 | 2017-01-11 21:09:26 +0000 | [diff] [blame] | 540 | GEM_BUG_ON(!drm_mm_node_allocated(&vma->node)); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 541 | GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags)); |
| 542 | return 0; |
| 543 | |
| 544 | err: |
| 545 | __i915_vma_unpin(vma); |
| 546 | return ret; |
| 547 | } |
| 548 | |
| 549 | void i915_vma_destroy(struct i915_vma *vma) |
| 550 | { |
| 551 | GEM_BUG_ON(vma->node.allocated); |
| 552 | GEM_BUG_ON(i915_vma_is_active(vma)); |
| 553 | GEM_BUG_ON(!i915_vma_is_closed(vma)); |
| 554 | GEM_BUG_ON(vma->fence); |
| 555 | |
| 556 | list_del(&vma->vm_link); |
| 557 | if (!i915_vma_is_ggtt(vma)) |
| 558 | i915_ppgtt_put(i915_vm_to_ppgtt(vma->vm)); |
| 559 | |
| 560 | kmem_cache_free(to_i915(vma->obj->base.dev)->vmas, vma); |
| 561 | } |
| 562 | |
| 563 | void i915_vma_close(struct i915_vma *vma) |
| 564 | { |
| 565 | GEM_BUG_ON(i915_vma_is_closed(vma)); |
| 566 | vma->flags |= I915_VMA_CLOSED; |
| 567 | |
| 568 | list_del(&vma->obj_link); |
| 569 | rb_erase(&vma->obj_node, &vma->obj->vma_tree); |
| 570 | |
| 571 | if (!i915_vma_is_active(vma) && !i915_vma_is_pinned(vma)) |
| 572 | WARN_ON(i915_vma_unbind(vma)); |
| 573 | } |
| 574 | |
| 575 | static void __i915_vma_iounmap(struct i915_vma *vma) |
| 576 | { |
| 577 | GEM_BUG_ON(i915_vma_is_pinned(vma)); |
| 578 | |
| 579 | if (vma->iomap == NULL) |
| 580 | return; |
| 581 | |
| 582 | io_mapping_unmap(vma->iomap); |
| 583 | vma->iomap = NULL; |
| 584 | } |
| 585 | |
| 586 | int i915_vma_unbind(struct i915_vma *vma) |
| 587 | { |
| 588 | struct drm_i915_gem_object *obj = vma->obj; |
| 589 | unsigned long active; |
| 590 | int ret; |
| 591 | |
| 592 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 593 | |
| 594 | /* First wait upon any activity as retiring the request may |
| 595 | * have side-effects such as unpinning or even unbinding this vma. |
| 596 | */ |
| 597 | active = i915_vma_get_active(vma); |
| 598 | if (active) { |
| 599 | int idx; |
| 600 | |
| 601 | /* When a closed VMA is retired, it is unbound - eek. |
| 602 | * In order to prevent it from being recursively closed, |
| 603 | * take a pin on the vma so that the second unbind is |
| 604 | * aborted. |
| 605 | * |
| 606 | * Even more scary is that the retire callback may free |
| 607 | * the object (last active vma). To prevent the explosion |
| 608 | * we defer the actual object free to a worker that can |
| 609 | * only proceed once it acquires the struct_mutex (which |
| 610 | * we currently hold, therefore it cannot free this object |
| 611 | * before we are finished). |
| 612 | */ |
| 613 | __i915_vma_pin(vma); |
| 614 | |
| 615 | for_each_active(active, idx) { |
| 616 | ret = i915_gem_active_retire(&vma->last_read[idx], |
Chris Wilson | 49d7391 | 2016-11-29 09:50:08 +0000 | [diff] [blame] | 617 | &vma->vm->i915->drm.struct_mutex); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 618 | if (ret) |
| 619 | break; |
| 620 | } |
| 621 | |
| 622 | __i915_vma_unpin(vma); |
| 623 | if (ret) |
| 624 | return ret; |
| 625 | |
| 626 | GEM_BUG_ON(i915_vma_is_active(vma)); |
| 627 | } |
| 628 | |
| 629 | if (i915_vma_is_pinned(vma)) |
| 630 | return -EBUSY; |
| 631 | |
| 632 | if (!drm_mm_node_allocated(&vma->node)) |
| 633 | goto destroy; |
| 634 | |
| 635 | GEM_BUG_ON(obj->bind_count == 0); |
| 636 | GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj)); |
| 637 | |
| 638 | if (i915_vma_is_map_and_fenceable(vma)) { |
| 639 | /* release the fence reg _after_ flushing */ |
| 640 | ret = i915_vma_put_fence(vma); |
| 641 | if (ret) |
| 642 | return ret; |
| 643 | |
| 644 | /* Force a pagefault for domain tracking on next user access */ |
| 645 | i915_gem_release_mmap(obj); |
| 646 | |
| 647 | __i915_vma_iounmap(vma); |
| 648 | vma->flags &= ~I915_VMA_CAN_FENCE; |
| 649 | } |
| 650 | |
| 651 | if (likely(!vma->vm->closed)) { |
| 652 | trace_i915_vma_unbind(vma); |
| 653 | vma->vm->unbind_vma(vma); |
| 654 | } |
| 655 | vma->flags &= ~(I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND); |
| 656 | |
| 657 | drm_mm_remove_node(&vma->node); |
| 658 | list_move_tail(&vma->vm_link, &vma->vm->unbound_list); |
| 659 | |
| 660 | if (vma->pages != obj->mm.pages) { |
| 661 | GEM_BUG_ON(!vma->pages); |
| 662 | sg_free_table(vma->pages); |
| 663 | kfree(vma->pages); |
| 664 | } |
| 665 | vma->pages = NULL; |
| 666 | |
| 667 | /* Since the unbound list is global, only move to that list if |
| 668 | * no more VMAs exist. */ |
| 669 | if (--obj->bind_count == 0) |
| 670 | list_move_tail(&obj->global_link, |
| 671 | &to_i915(obj->base.dev)->mm.unbound_list); |
| 672 | |
| 673 | /* And finally now the object is completely decoupled from this vma, |
| 674 | * we can drop its hold on the backing storage and allow it to be |
| 675 | * reaped by the shrinker. |
| 676 | */ |
| 677 | i915_gem_object_unpin_pages(obj); |
Chris Wilson | 7a5580a | 2016-12-31 11:20:09 +0000 | [diff] [blame] | 678 | GEM_BUG_ON(atomic_read(&obj->mm.pages_pin_count) < obj->bind_count); |
Joonas Lahtinen | b42fe9c | 2016-11-11 12:43:54 +0200 | [diff] [blame] | 679 | |
| 680 | destroy: |
| 681 | if (unlikely(i915_vma_is_closed(vma))) |
| 682 | i915_vma_destroy(vma); |
| 683 | |
| 684 | return 0; |
| 685 | } |
| 686 | |
Chris Wilson | e3c7a1c | 2017-02-13 17:15:45 +0000 | [diff] [blame] | 687 | #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST) |
| 688 | #include "selftests/i915_vma.c" |
| 689 | #endif |