xref: /linux/drivers/gpu/drm/i915/gem/i915_gem_object.c (revision 0a95fab36a660021c3127476a8df6518fe47a23e)
1 /*
2  * Copyright © 2017 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21  * IN THE SOFTWARE.
22  *
23  */
24 
25 #include <linux/sched/mm.h>
26 
27 #include "display/intel_frontbuffer.h"
28 #include "i915_drv.h"
29 #include "i915_gem_clflush.h"
30 #include "i915_gem_context.h"
31 #include "i915_gem_mman.h"
32 #include "i915_gem_object.h"
33 #include "i915_globals.h"
34 #include "i915_memcpy.h"
35 #include "i915_trace.h"
36 
37 static struct i915_global_object {
38 	struct i915_global base;
39 	struct kmem_cache *slab_objects;
40 } global;
41 
42 static const struct drm_gem_object_funcs i915_gem_object_funcs;
43 
44 struct drm_i915_gem_object *i915_gem_object_alloc(void)
45 {
46 	struct drm_i915_gem_object *obj;
47 
48 	obj = kmem_cache_zalloc(global.slab_objects, GFP_KERNEL);
49 	if (!obj)
50 		return NULL;
51 	obj->base.funcs = &i915_gem_object_funcs;
52 
53 	return obj;
54 }
55 
56 void i915_gem_object_free(struct drm_i915_gem_object *obj)
57 {
58 	return kmem_cache_free(global.slab_objects, obj);
59 }
60 
61 void i915_gem_object_init(struct drm_i915_gem_object *obj,
62 			  const struct drm_i915_gem_object_ops *ops,
63 			  struct lock_class_key *key, unsigned flags)
64 {
65 	/*
66 	 * A gem object is embedded both in a struct ttm_buffer_object :/ and
67 	 * in a drm_i915_gem_object. Make sure they are aliased.
68 	 */
69 	BUILD_BUG_ON(offsetof(typeof(*obj), base) !=
70 		     offsetof(typeof(*obj), __do_not_access.base));
71 
72 	spin_lock_init(&obj->vma.lock);
73 	INIT_LIST_HEAD(&obj->vma.list);
74 
75 	INIT_LIST_HEAD(&obj->mm.link);
76 
77 	INIT_LIST_HEAD(&obj->lut_list);
78 	spin_lock_init(&obj->lut_lock);
79 
80 	spin_lock_init(&obj->mmo.lock);
81 	obj->mmo.offsets = RB_ROOT;
82 
83 	init_rcu_head(&obj->rcu);
84 
85 	obj->ops = ops;
86 	GEM_BUG_ON(flags & ~I915_BO_ALLOC_FLAGS);
87 	obj->flags = flags;
88 
89 	obj->mm.madv = I915_MADV_WILLNEED;
90 	INIT_RADIX_TREE(&obj->mm.get_page.radix, GFP_KERNEL | __GFP_NOWARN);
91 	mutex_init(&obj->mm.get_page.lock);
92 	INIT_RADIX_TREE(&obj->mm.get_dma_page.radix, GFP_KERNEL | __GFP_NOWARN);
93 	mutex_init(&obj->mm.get_dma_page.lock);
94 }
95 
96 /**
97  * Mark up the object's coherency levels for a given cache_level
98  * @obj: #drm_i915_gem_object
99  * @cache_level: cache level
100  */
101 void i915_gem_object_set_cache_coherency(struct drm_i915_gem_object *obj,
102 					 unsigned int cache_level)
103 {
104 	obj->cache_level = cache_level;
105 
106 	if (cache_level != I915_CACHE_NONE)
107 		obj->cache_coherent = (I915_BO_CACHE_COHERENT_FOR_READ |
108 				       I915_BO_CACHE_COHERENT_FOR_WRITE);
109 	else if (HAS_LLC(to_i915(obj->base.dev)))
110 		obj->cache_coherent = I915_BO_CACHE_COHERENT_FOR_READ;
111 	else
112 		obj->cache_coherent = 0;
113 
114 	obj->cache_dirty =
115 		!(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_WRITE);
116 }
117 
118 static void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file)
119 {
120 	struct drm_i915_gem_object *obj = to_intel_bo(gem);
121 	struct drm_i915_file_private *fpriv = file->driver_priv;
122 	struct i915_lut_handle bookmark = {};
123 	struct i915_mmap_offset *mmo, *mn;
124 	struct i915_lut_handle *lut, *ln;
125 	LIST_HEAD(close);
126 
127 	spin_lock(&obj->lut_lock);
128 	list_for_each_entry_safe(lut, ln, &obj->lut_list, obj_link) {
129 		struct i915_gem_context *ctx = lut->ctx;
130 
131 		if (ctx && ctx->file_priv == fpriv) {
132 			i915_gem_context_get(ctx);
133 			list_move(&lut->obj_link, &close);
134 		}
135 
136 		/* Break long locks, and carefully continue on from this spot */
137 		if (&ln->obj_link != &obj->lut_list) {
138 			list_add_tail(&bookmark.obj_link, &ln->obj_link);
139 			if (cond_resched_lock(&obj->lut_lock))
140 				list_safe_reset_next(&bookmark, ln, obj_link);
141 			__list_del_entry(&bookmark.obj_link);
142 		}
143 	}
144 	spin_unlock(&obj->lut_lock);
145 
146 	spin_lock(&obj->mmo.lock);
147 	rbtree_postorder_for_each_entry_safe(mmo, mn, &obj->mmo.offsets, offset)
148 		drm_vma_node_revoke(&mmo->vma_node, file);
149 	spin_unlock(&obj->mmo.lock);
150 
151 	list_for_each_entry_safe(lut, ln, &close, obj_link) {
152 		struct i915_gem_context *ctx = lut->ctx;
153 		struct i915_vma *vma;
154 
155 		/*
156 		 * We allow the process to have multiple handles to the same
157 		 * vma, in the same fd namespace, by virtue of flink/open.
158 		 */
159 
160 		mutex_lock(&ctx->lut_mutex);
161 		vma = radix_tree_delete(&ctx->handles_vma, lut->handle);
162 		if (vma) {
163 			GEM_BUG_ON(vma->obj != obj);
164 			GEM_BUG_ON(!atomic_read(&vma->open_count));
165 			i915_vma_close(vma);
166 		}
167 		mutex_unlock(&ctx->lut_mutex);
168 
169 		i915_gem_context_put(lut->ctx);
170 		i915_lut_handle_free(lut);
171 		i915_gem_object_put(obj);
172 	}
173 }
174 
175 void __i915_gem_free_object_rcu(struct rcu_head *head)
176 {
177 	struct drm_i915_gem_object *obj =
178 		container_of(head, typeof(*obj), rcu);
179 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
180 
181 	dma_resv_fini(&obj->base._resv);
182 	i915_gem_object_free(obj);
183 
184 	GEM_BUG_ON(!atomic_read(&i915->mm.free_count));
185 	atomic_dec(&i915->mm.free_count);
186 }
187 
188 static void __i915_gem_object_free_mmaps(struct drm_i915_gem_object *obj)
189 {
190 	/* Skip serialisation and waking the device if known to be not used. */
191 
192 	if (obj->userfault_count)
193 		i915_gem_object_release_mmap_gtt(obj);
194 
195 	if (!RB_EMPTY_ROOT(&obj->mmo.offsets)) {
196 		struct i915_mmap_offset *mmo, *mn;
197 
198 		i915_gem_object_release_mmap_offset(obj);
199 
200 		rbtree_postorder_for_each_entry_safe(mmo, mn,
201 						     &obj->mmo.offsets,
202 						     offset) {
203 			drm_vma_offset_remove(obj->base.dev->vma_offset_manager,
204 					      &mmo->vma_node);
205 			kfree(mmo);
206 		}
207 		obj->mmo.offsets = RB_ROOT;
208 	}
209 }
210 
211 void __i915_gem_free_object(struct drm_i915_gem_object *obj)
212 {
213 	trace_i915_gem_object_destroy(obj);
214 
215 	if (!list_empty(&obj->vma.list)) {
216 		struct i915_vma *vma;
217 
218 		/*
219 		 * Note that the vma keeps an object reference while
220 		 * it is active, so it *should* not sleep while we
221 		 * destroy it. Our debug code errs insits it *might*.
222 		 * For the moment, play along.
223 		 */
224 		spin_lock(&obj->vma.lock);
225 		while ((vma = list_first_entry_or_null(&obj->vma.list,
226 						       struct i915_vma,
227 						       obj_link))) {
228 			GEM_BUG_ON(vma->obj != obj);
229 			spin_unlock(&obj->vma.lock);
230 
231 			__i915_vma_put(vma);
232 
233 			spin_lock(&obj->vma.lock);
234 		}
235 		spin_unlock(&obj->vma.lock);
236 	}
237 
238 	__i915_gem_object_free_mmaps(obj);
239 
240 	GEM_BUG_ON(!list_empty(&obj->lut_list));
241 
242 	atomic_set(&obj->mm.pages_pin_count, 0);
243 	__i915_gem_object_put_pages(obj);
244 	GEM_BUG_ON(i915_gem_object_has_pages(obj));
245 	bitmap_free(obj->bit_17);
246 
247 	if (obj->base.import_attach)
248 		drm_prime_gem_destroy(&obj->base, NULL);
249 
250 	drm_gem_free_mmap_offset(&obj->base);
251 
252 	if (obj->ops->release)
253 		obj->ops->release(obj);
254 
255 	if (obj->mm.n_placements > 1)
256 		kfree(obj->mm.placements);
257 
258 	if (obj->shares_resv_from)
259 		i915_vm_resv_put(obj->shares_resv_from);
260 }
261 
262 static void __i915_gem_free_objects(struct drm_i915_private *i915,
263 				    struct llist_node *freed)
264 {
265 	struct drm_i915_gem_object *obj, *on;
266 
267 	llist_for_each_entry_safe(obj, on, freed, freed) {
268 		might_sleep();
269 		if (obj->ops->delayed_free) {
270 			obj->ops->delayed_free(obj);
271 			continue;
272 		}
273 		__i915_gem_free_object(obj);
274 
275 		/* But keep the pointer alive for RCU-protected lookups */
276 		call_rcu(&obj->rcu, __i915_gem_free_object_rcu);
277 		cond_resched();
278 	}
279 }
280 
281 void i915_gem_flush_free_objects(struct drm_i915_private *i915)
282 {
283 	struct llist_node *freed = llist_del_all(&i915->mm.free_list);
284 
285 	if (unlikely(freed))
286 		__i915_gem_free_objects(i915, freed);
287 }
288 
289 static void __i915_gem_free_work(struct work_struct *work)
290 {
291 	struct drm_i915_private *i915 =
292 		container_of(work, struct drm_i915_private, mm.free_work);
293 
294 	i915_gem_flush_free_objects(i915);
295 }
296 
297 static void i915_gem_free_object(struct drm_gem_object *gem_obj)
298 {
299 	struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
300 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
301 
302 	GEM_BUG_ON(i915_gem_object_is_framebuffer(obj));
303 
304 	/*
305 	 * Before we free the object, make sure any pure RCU-only
306 	 * read-side critical sections are complete, e.g.
307 	 * i915_gem_busy_ioctl(). For the corresponding synchronized
308 	 * lookup see i915_gem_object_lookup_rcu().
309 	 */
310 	atomic_inc(&i915->mm.free_count);
311 
312 	/*
313 	 * This serializes freeing with the shrinker. Since the free
314 	 * is delayed, first by RCU then by the workqueue, we want the
315 	 * shrinker to be able to free pages of unreferenced objects,
316 	 * or else we may oom whilst there are plenty of deferred
317 	 * freed objects.
318 	 */
319 	i915_gem_object_make_unshrinkable(obj);
320 
321 	/*
322 	 * Since we require blocking on struct_mutex to unbind the freed
323 	 * object from the GPU before releasing resources back to the
324 	 * system, we can not do that directly from the RCU callback (which may
325 	 * be a softirq context), but must instead then defer that work onto a
326 	 * kthread. We use the RCU callback rather than move the freed object
327 	 * directly onto the work queue so that we can mix between using the
328 	 * worker and performing frees directly from subsequent allocations for
329 	 * crude but effective memory throttling.
330 	 */
331 
332 	if (llist_add(&obj->freed, &i915->mm.free_list))
333 		queue_work(i915->wq, &i915->mm.free_work);
334 }
335 
336 void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object *obj,
337 					 enum fb_op_origin origin)
338 {
339 	struct intel_frontbuffer *front;
340 
341 	front = __intel_frontbuffer_get(obj);
342 	if (front) {
343 		intel_frontbuffer_flush(front, origin);
344 		intel_frontbuffer_put(front);
345 	}
346 }
347 
348 void __i915_gem_object_invalidate_frontbuffer(struct drm_i915_gem_object *obj,
349 					      enum fb_op_origin origin)
350 {
351 	struct intel_frontbuffer *front;
352 
353 	front = __intel_frontbuffer_get(obj);
354 	if (front) {
355 		intel_frontbuffer_invalidate(front, origin);
356 		intel_frontbuffer_put(front);
357 	}
358 }
359 
360 static void
361 i915_gem_object_read_from_page_kmap(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size)
362 {
363 	void *src_map;
364 	void *src_ptr;
365 
366 	src_map = kmap_atomic(i915_gem_object_get_page(obj, offset >> PAGE_SHIFT));
367 
368 	src_ptr = src_map + offset_in_page(offset);
369 	if (!(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_READ))
370 		drm_clflush_virt_range(src_ptr, size);
371 	memcpy(dst, src_ptr, size);
372 
373 	kunmap_atomic(src_map);
374 }
375 
376 static void
377 i915_gem_object_read_from_page_iomap(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size)
378 {
379 	void __iomem *src_map;
380 	void __iomem *src_ptr;
381 	dma_addr_t dma = i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT);
382 
383 	src_map = io_mapping_map_wc(&obj->mm.region->iomap,
384 				    dma - obj->mm.region->region.start,
385 				    PAGE_SIZE);
386 
387 	src_ptr = src_map + offset_in_page(offset);
388 	if (!i915_memcpy_from_wc(dst, (void __force *)src_ptr, size))
389 		memcpy_fromio(dst, src_ptr, size);
390 
391 	io_mapping_unmap(src_map);
392 }
393 
394 /**
395  * i915_gem_object_read_from_page - read data from the page of a GEM object
396  * @obj: GEM object to read from
397  * @offset: offset within the object
398  * @dst: buffer to store the read data
399  * @size: size to read
400  *
401  * Reads data from @obj at the specified offset. The requested region to read
402  * from can't cross a page boundary. The caller must ensure that @obj pages
403  * are pinned and that @obj is synced wrt. any related writes.
404  *
405  * Returns 0 on success or -ENODEV if the type of @obj's backing store is
406  * unsupported.
407  */
408 int i915_gem_object_read_from_page(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size)
409 {
410 	GEM_BUG_ON(offset >= obj->base.size);
411 	GEM_BUG_ON(offset_in_page(offset) > PAGE_SIZE - size);
412 	GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj));
413 
414 	if (i915_gem_object_has_struct_page(obj))
415 		i915_gem_object_read_from_page_kmap(obj, offset, dst, size);
416 	else if (i915_gem_object_has_iomem(obj))
417 		i915_gem_object_read_from_page_iomap(obj, offset, dst, size);
418 	else
419 		return -ENODEV;
420 
421 	return 0;
422 }
423 
424 /**
425  * i915_gem_object_evictable - Whether object is likely evictable after unbind.
426  * @obj: The object to check
427  *
428  * This function checks whether the object is likely unvictable after unbind.
429  * If the object is not locked when checking, the result is only advisory.
430  * If the object is locked when checking, and the function returns true,
431  * then an eviction should indeed be possible. But since unlocked vma
432  * unpinning and unbinding is currently possible, the object can actually
433  * become evictable even if this function returns false.
434  *
435  * Return: true if the object may be evictable. False otherwise.
436  */
437 bool i915_gem_object_evictable(struct drm_i915_gem_object *obj)
438 {
439 	struct i915_vma *vma;
440 	int pin_count = atomic_read(&obj->mm.pages_pin_count);
441 
442 	if (!pin_count)
443 		return true;
444 
445 	spin_lock(&obj->vma.lock);
446 	list_for_each_entry(vma, &obj->vma.list, obj_link) {
447 		if (i915_vma_is_pinned(vma)) {
448 			spin_unlock(&obj->vma.lock);
449 			return false;
450 		}
451 		if (atomic_read(&vma->pages_count))
452 			pin_count--;
453 	}
454 	spin_unlock(&obj->vma.lock);
455 	GEM_WARN_ON(pin_count < 0);
456 
457 	return pin_count == 0;
458 }
459 
460 /**
461  * i915_gem_object_migratable - Whether the object is migratable out of the
462  * current region.
463  * @obj: Pointer to the object.
464  *
465  * Return: Whether the object is allowed to be resident in other
466  * regions than the current while pages are present.
467  */
468 bool i915_gem_object_migratable(struct drm_i915_gem_object *obj)
469 {
470 	struct intel_memory_region *mr = READ_ONCE(obj->mm.region);
471 
472 	if (!mr)
473 		return false;
474 
475 	return obj->mm.n_placements > 1;
476 }
477 
478 void i915_gem_init__objects(struct drm_i915_private *i915)
479 {
480 	INIT_WORK(&i915->mm.free_work, __i915_gem_free_work);
481 }
482 
483 static void i915_global_objects_shrink(void)
484 {
485 	kmem_cache_shrink(global.slab_objects);
486 }
487 
488 static void i915_global_objects_exit(void)
489 {
490 	kmem_cache_destroy(global.slab_objects);
491 }
492 
493 static struct i915_global_object global = { {
494 	.shrink = i915_global_objects_shrink,
495 	.exit = i915_global_objects_exit,
496 } };
497 
498 int __init i915_global_objects_init(void)
499 {
500 	global.slab_objects =
501 		KMEM_CACHE(drm_i915_gem_object, SLAB_HWCACHE_ALIGN);
502 	if (!global.slab_objects)
503 		return -ENOMEM;
504 
505 	i915_global_register(&global.base);
506 	return 0;
507 }
508 
509 static const struct drm_gem_object_funcs i915_gem_object_funcs = {
510 	.free = i915_gem_free_object,
511 	.close = i915_gem_close_object,
512 	.export = i915_gem_prime_export,
513 };
514 
515 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
516 #include "selftests/huge_gem_object.c"
517 #include "selftests/huge_pages.c"
518 #include "selftests/i915_gem_object.c"
519 #include "selftests/i915_gem_coherency.c"
520 #endif
521