xref: /linux/drivers/gpu/drm/i915/gem/i915_gem_object.c (revision e4ae85e364fc652ea15d85b0f3a6da304c9b5ce7)
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/highmem.h>
26 #include <linux/sched/mm.h>
27 
28 #include <drm/drm_cache.h>
29 
30 #include "display/intel_frontbuffer.h"
31 #include "pxp/intel_pxp.h"
32 
33 #include "i915_drv.h"
34 #include "i915_file_private.h"
35 #include "i915_gem_clflush.h"
36 #include "i915_gem_context.h"
37 #include "i915_gem_dmabuf.h"
38 #include "i915_gem_mman.h"
39 #include "i915_gem_object.h"
40 #include "i915_gem_object_frontbuffer.h"
41 #include "i915_gem_ttm.h"
42 #include "i915_memcpy.h"
43 #include "i915_trace.h"
44 
45 static struct kmem_cache *slab_objects;
46 
47 static const struct drm_gem_object_funcs i915_gem_object_funcs;
48 
49 unsigned int i915_gem_get_pat_index(struct drm_i915_private *i915,
50 				    enum i915_cache_level level)
51 {
52 	if (drm_WARN_ON(&i915->drm, level >= I915_MAX_CACHE_LEVEL))
53 		return 0;
54 
55 	return INTEL_INFO(i915)->cachelevel_to_pat[level];
56 }
57 
58 bool i915_gem_object_has_cache_level(const struct drm_i915_gem_object *obj,
59 				     enum i915_cache_level lvl)
60 {
61 	/*
62 	 * In case the pat_index is set by user space, this kernel mode
63 	 * driver should leave the coherency to be managed by user space,
64 	 * simply return true here.
65 	 */
66 	if (obj->pat_set_by_user)
67 		return true;
68 
69 	/*
70 	 * Otherwise the pat_index should have been converted from cache_level
71 	 * so that the following comparison is valid.
72 	 */
73 	return obj->pat_index == i915_gem_get_pat_index(obj_to_i915(obj), lvl);
74 }
75 
76 struct drm_i915_gem_object *i915_gem_object_alloc(void)
77 {
78 	struct drm_i915_gem_object *obj;
79 
80 	obj = kmem_cache_zalloc(slab_objects, GFP_KERNEL);
81 	if (!obj)
82 		return NULL;
83 	obj->base.funcs = &i915_gem_object_funcs;
84 
85 	return obj;
86 }
87 
88 void i915_gem_object_free(struct drm_i915_gem_object *obj)
89 {
90 	return kmem_cache_free(slab_objects, obj);
91 }
92 
93 void i915_gem_object_init(struct drm_i915_gem_object *obj,
94 			  const struct drm_i915_gem_object_ops *ops,
95 			  struct lock_class_key *key, unsigned flags)
96 {
97 	/*
98 	 * A gem object is embedded both in a struct ttm_buffer_object :/ and
99 	 * in a drm_i915_gem_object. Make sure they are aliased.
100 	 */
101 	BUILD_BUG_ON(offsetof(typeof(*obj), base) !=
102 		     offsetof(typeof(*obj), __do_not_access.base));
103 
104 	spin_lock_init(&obj->vma.lock);
105 	INIT_LIST_HEAD(&obj->vma.list);
106 
107 	INIT_LIST_HEAD(&obj->mm.link);
108 
109 #ifdef CONFIG_PROC_FS
110 	INIT_LIST_HEAD(&obj->client_link);
111 #endif
112 
113 	INIT_LIST_HEAD(&obj->lut_list);
114 	spin_lock_init(&obj->lut_lock);
115 
116 	spin_lock_init(&obj->mmo.lock);
117 	obj->mmo.offsets = RB_ROOT;
118 
119 	init_rcu_head(&obj->rcu);
120 
121 	obj->ops = ops;
122 	GEM_BUG_ON(flags & ~I915_BO_ALLOC_FLAGS);
123 	obj->flags = flags;
124 
125 	obj->mm.madv = I915_MADV_WILLNEED;
126 	INIT_RADIX_TREE(&obj->mm.get_page.radix, GFP_KERNEL | __GFP_NOWARN);
127 	mutex_init(&obj->mm.get_page.lock);
128 	INIT_RADIX_TREE(&obj->mm.get_dma_page.radix, GFP_KERNEL | __GFP_NOWARN);
129 	mutex_init(&obj->mm.get_dma_page.lock);
130 }
131 
132 /**
133  * __i915_gem_object_fini - Clean up a GEM object initialization
134  * @obj: The gem object to cleanup
135  *
136  * This function cleans up gem object fields that are set up by
137  * drm_gem_private_object_init() and i915_gem_object_init().
138  * It's primarily intended as a helper for backends that need to
139  * clean up the gem object in separate steps.
140  */
141 void __i915_gem_object_fini(struct drm_i915_gem_object *obj)
142 {
143 	mutex_destroy(&obj->mm.get_page.lock);
144 	mutex_destroy(&obj->mm.get_dma_page.lock);
145 	dma_resv_fini(&obj->base._resv);
146 }
147 
148 /**
149  * i915_gem_object_set_cache_coherency - Mark up the object's coherency levels
150  * for a given cache_level
151  * @obj: #drm_i915_gem_object
152  * @cache_level: cache level
153  */
154 void i915_gem_object_set_cache_coherency(struct drm_i915_gem_object *obj,
155 					 unsigned int cache_level)
156 {
157 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
158 
159 	obj->pat_index = i915_gem_get_pat_index(i915, cache_level);
160 
161 	if (cache_level != I915_CACHE_NONE)
162 		obj->cache_coherent = (I915_BO_CACHE_COHERENT_FOR_READ |
163 				       I915_BO_CACHE_COHERENT_FOR_WRITE);
164 	else if (HAS_LLC(i915))
165 		obj->cache_coherent = I915_BO_CACHE_COHERENT_FOR_READ;
166 	else
167 		obj->cache_coherent = 0;
168 
169 	obj->cache_dirty =
170 		!(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_WRITE) &&
171 		!IS_DGFX(i915);
172 }
173 
174 /**
175  * i915_gem_object_set_pat_index - set PAT index to be used in PTE encode
176  * @obj: #drm_i915_gem_object
177  * @pat_index: PAT index
178  *
179  * This is a clone of i915_gem_object_set_cache_coherency taking pat index
180  * instead of cache_level as its second argument.
181  */
182 void i915_gem_object_set_pat_index(struct drm_i915_gem_object *obj,
183 				   unsigned int pat_index)
184 {
185 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
186 
187 	if (obj->pat_index == pat_index)
188 		return;
189 
190 	obj->pat_index = pat_index;
191 
192 	if (pat_index != i915_gem_get_pat_index(i915, I915_CACHE_NONE))
193 		obj->cache_coherent = (I915_BO_CACHE_COHERENT_FOR_READ |
194 				       I915_BO_CACHE_COHERENT_FOR_WRITE);
195 	else if (HAS_LLC(i915))
196 		obj->cache_coherent = I915_BO_CACHE_COHERENT_FOR_READ;
197 	else
198 		obj->cache_coherent = 0;
199 
200 	obj->cache_dirty =
201 		!(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_WRITE) &&
202 		!IS_DGFX(i915);
203 }
204 
205 bool i915_gem_object_can_bypass_llc(struct drm_i915_gem_object *obj)
206 {
207 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
208 
209 	/*
210 	 * This is purely from a security perspective, so we simply don't care
211 	 * about non-userspace objects being able to bypass the LLC.
212 	 */
213 	if (!(obj->flags & I915_BO_ALLOC_USER))
214 		return false;
215 
216 	/*
217 	 * Always flush cache for UMD objects at creation time.
218 	 */
219 	if (obj->pat_set_by_user)
220 		return true;
221 
222 	/*
223 	 * EHL and JSL add the 'Bypass LLC' MOCS entry, which should make it
224 	 * possible for userspace to bypass the GTT caching bits set by the
225 	 * kernel, as per the given object cache_level. This is troublesome
226 	 * since the heavy flush we apply when first gathering the pages is
227 	 * skipped if the kernel thinks the object is coherent with the GPU. As
228 	 * a result it might be possible to bypass the cache and read the
229 	 * contents of the page directly, which could be stale data. If it's
230 	 * just a case of userspace shooting themselves in the foot then so be
231 	 * it, but since i915 takes the stance of always zeroing memory before
232 	 * handing it to userspace, we need to prevent this.
233 	 */
234 	return (IS_JASPERLAKE(i915) || IS_ELKHARTLAKE(i915));
235 }
236 
237 static void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file)
238 {
239 	struct drm_i915_gem_object *obj = to_intel_bo(gem);
240 	struct drm_i915_file_private *fpriv = file->driver_priv;
241 	struct i915_lut_handle bookmark = {};
242 	struct i915_mmap_offset *mmo, *mn;
243 	struct i915_lut_handle *lut, *ln;
244 	LIST_HEAD(close);
245 
246 	spin_lock(&obj->lut_lock);
247 	list_for_each_entry_safe(lut, ln, &obj->lut_list, obj_link) {
248 		struct i915_gem_context *ctx = lut->ctx;
249 
250 		if (ctx && ctx->file_priv == fpriv) {
251 			i915_gem_context_get(ctx);
252 			list_move(&lut->obj_link, &close);
253 		}
254 
255 		/* Break long locks, and carefully continue on from this spot */
256 		if (&ln->obj_link != &obj->lut_list) {
257 			list_add_tail(&bookmark.obj_link, &ln->obj_link);
258 			if (cond_resched_lock(&obj->lut_lock))
259 				list_safe_reset_next(&bookmark, ln, obj_link);
260 			__list_del_entry(&bookmark.obj_link);
261 		}
262 	}
263 	spin_unlock(&obj->lut_lock);
264 
265 	spin_lock(&obj->mmo.lock);
266 	rbtree_postorder_for_each_entry_safe(mmo, mn, &obj->mmo.offsets, offset)
267 		drm_vma_node_revoke(&mmo->vma_node, file);
268 	spin_unlock(&obj->mmo.lock);
269 
270 	list_for_each_entry_safe(lut, ln, &close, obj_link) {
271 		struct i915_gem_context *ctx = lut->ctx;
272 		struct i915_vma *vma;
273 
274 		/*
275 		 * We allow the process to have multiple handles to the same
276 		 * vma, in the same fd namespace, by virtue of flink/open.
277 		 */
278 
279 		mutex_lock(&ctx->lut_mutex);
280 		vma = radix_tree_delete(&ctx->handles_vma, lut->handle);
281 		if (vma) {
282 			GEM_BUG_ON(vma->obj != obj);
283 			GEM_BUG_ON(!atomic_read(&vma->open_count));
284 			i915_vma_close(vma);
285 		}
286 		mutex_unlock(&ctx->lut_mutex);
287 
288 		i915_gem_context_put(lut->ctx);
289 		i915_lut_handle_free(lut);
290 		i915_gem_object_put(obj);
291 	}
292 }
293 
294 void __i915_gem_free_object_rcu(struct rcu_head *head)
295 {
296 	struct drm_i915_gem_object *obj =
297 		container_of(head, typeof(*obj), rcu);
298 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
299 
300 	/* We need to keep this alive for RCU read access from fdinfo. */
301 	if (obj->mm.n_placements > 1)
302 		kfree(obj->mm.placements);
303 
304 	i915_gem_object_free(obj);
305 
306 	GEM_BUG_ON(!atomic_read(&i915->mm.free_count));
307 	atomic_dec(&i915->mm.free_count);
308 }
309 
310 static void __i915_gem_object_free_mmaps(struct drm_i915_gem_object *obj)
311 {
312 	/* Skip serialisation and waking the device if known to be not used. */
313 
314 	if (obj->userfault_count && !IS_DGFX(to_i915(obj->base.dev)))
315 		i915_gem_object_release_mmap_gtt(obj);
316 
317 	if (!RB_EMPTY_ROOT(&obj->mmo.offsets)) {
318 		struct i915_mmap_offset *mmo, *mn;
319 
320 		i915_gem_object_release_mmap_offset(obj);
321 
322 		rbtree_postorder_for_each_entry_safe(mmo, mn,
323 						     &obj->mmo.offsets,
324 						     offset) {
325 			drm_vma_offset_remove(obj->base.dev->vma_offset_manager,
326 					      &mmo->vma_node);
327 			kfree(mmo);
328 		}
329 		obj->mmo.offsets = RB_ROOT;
330 	}
331 }
332 
333 /**
334  * __i915_gem_object_pages_fini - Clean up pages use of a gem object
335  * @obj: The gem object to clean up
336  *
337  * This function cleans up usage of the object mm.pages member. It
338  * is intended for backends that need to clean up a gem object in
339  * separate steps and needs to be called when the object is idle before
340  * the object's backing memory is freed.
341  */
342 void __i915_gem_object_pages_fini(struct drm_i915_gem_object *obj)
343 {
344 	assert_object_held_shared(obj);
345 
346 	if (!list_empty(&obj->vma.list)) {
347 		struct i915_vma *vma;
348 
349 		spin_lock(&obj->vma.lock);
350 		while ((vma = list_first_entry_or_null(&obj->vma.list,
351 						       struct i915_vma,
352 						       obj_link))) {
353 			GEM_BUG_ON(vma->obj != obj);
354 			spin_unlock(&obj->vma.lock);
355 
356 			i915_vma_destroy(vma);
357 
358 			spin_lock(&obj->vma.lock);
359 		}
360 		spin_unlock(&obj->vma.lock);
361 	}
362 
363 	__i915_gem_object_free_mmaps(obj);
364 
365 	atomic_set(&obj->mm.pages_pin_count, 0);
366 
367 	/*
368 	 * dma_buf_unmap_attachment() requires reservation to be
369 	 * locked. The imported GEM shouldn't share reservation lock
370 	 * and ttm_bo_cleanup_memtype_use() shouldn't be invoked for
371 	 * dma-buf, so it's safe to take the lock.
372 	 */
373 	if (obj->base.import_attach)
374 		i915_gem_object_lock(obj, NULL);
375 
376 	__i915_gem_object_put_pages(obj);
377 
378 	if (obj->base.import_attach)
379 		i915_gem_object_unlock(obj);
380 
381 	GEM_BUG_ON(i915_gem_object_has_pages(obj));
382 }
383 
384 void __i915_gem_free_object(struct drm_i915_gem_object *obj)
385 {
386 	trace_i915_gem_object_destroy(obj);
387 
388 	GEM_BUG_ON(!list_empty(&obj->lut_list));
389 
390 	bitmap_free(obj->bit_17);
391 
392 	if (obj->base.import_attach)
393 		drm_prime_gem_destroy(&obj->base, NULL);
394 
395 	drm_gem_free_mmap_offset(&obj->base);
396 
397 	if (obj->ops->release)
398 		obj->ops->release(obj);
399 
400 	if (obj->shares_resv_from)
401 		i915_vm_resv_put(obj->shares_resv_from);
402 
403 	__i915_gem_object_fini(obj);
404 }
405 
406 static void __i915_gem_free_objects(struct drm_i915_private *i915,
407 				    struct llist_node *freed)
408 {
409 	struct drm_i915_gem_object *obj, *on;
410 
411 	llist_for_each_entry_safe(obj, on, freed, freed) {
412 		might_sleep();
413 		if (obj->ops->delayed_free) {
414 			obj->ops->delayed_free(obj);
415 			continue;
416 		}
417 
418 		__i915_gem_object_pages_fini(obj);
419 		__i915_gem_free_object(obj);
420 
421 		/* But keep the pointer alive for RCU-protected lookups */
422 		call_rcu(&obj->rcu, __i915_gem_free_object_rcu);
423 		cond_resched();
424 	}
425 }
426 
427 void i915_gem_flush_free_objects(struct drm_i915_private *i915)
428 {
429 	struct llist_node *freed = llist_del_all(&i915->mm.free_list);
430 
431 	if (unlikely(freed))
432 		__i915_gem_free_objects(i915, freed);
433 }
434 
435 static void __i915_gem_free_work(struct work_struct *work)
436 {
437 	struct drm_i915_private *i915 =
438 		container_of(work, struct drm_i915_private, mm.free_work);
439 
440 	i915_gem_flush_free_objects(i915);
441 }
442 
443 static void i915_gem_free_object(struct drm_gem_object *gem_obj)
444 {
445 	struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
446 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
447 
448 	GEM_BUG_ON(i915_gem_object_is_framebuffer(obj));
449 
450 	i915_drm_client_remove_object(obj);
451 
452 	/*
453 	 * Before we free the object, make sure any pure RCU-only
454 	 * read-side critical sections are complete, e.g.
455 	 * i915_gem_busy_ioctl(). For the corresponding synchronized
456 	 * lookup see i915_gem_object_lookup_rcu().
457 	 */
458 	atomic_inc(&i915->mm.free_count);
459 
460 	/*
461 	 * Since we require blocking on struct_mutex to unbind the freed
462 	 * object from the GPU before releasing resources back to the
463 	 * system, we can not do that directly from the RCU callback (which may
464 	 * be a softirq context), but must instead then defer that work onto a
465 	 * kthread. We use the RCU callback rather than move the freed object
466 	 * directly onto the work queue so that we can mix between using the
467 	 * worker and performing frees directly from subsequent allocations for
468 	 * crude but effective memory throttling.
469 	 */
470 
471 	if (llist_add(&obj->freed, &i915->mm.free_list))
472 		queue_work(i915->wq, &i915->mm.free_work);
473 }
474 
475 void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object *obj,
476 					 enum fb_op_origin origin)
477 {
478 	struct intel_frontbuffer *front;
479 
480 	front = i915_gem_object_get_frontbuffer(obj);
481 	if (front) {
482 		intel_frontbuffer_flush(front, origin);
483 		intel_frontbuffer_put(front);
484 	}
485 }
486 
487 void __i915_gem_object_invalidate_frontbuffer(struct drm_i915_gem_object *obj,
488 					      enum fb_op_origin origin)
489 {
490 	struct intel_frontbuffer *front;
491 
492 	front = i915_gem_object_get_frontbuffer(obj);
493 	if (front) {
494 		intel_frontbuffer_invalidate(front, origin);
495 		intel_frontbuffer_put(front);
496 	}
497 }
498 
499 static void
500 i915_gem_object_read_from_page_kmap(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size)
501 {
502 	pgoff_t idx = offset >> PAGE_SHIFT;
503 	void *src_map;
504 	void *src_ptr;
505 
506 	src_map = kmap_atomic(i915_gem_object_get_page(obj, idx));
507 
508 	src_ptr = src_map + offset_in_page(offset);
509 	if (!(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_READ))
510 		drm_clflush_virt_range(src_ptr, size);
511 	memcpy(dst, src_ptr, size);
512 
513 	kunmap_atomic(src_map);
514 }
515 
516 static void
517 i915_gem_object_read_from_page_iomap(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size)
518 {
519 	pgoff_t idx = offset >> PAGE_SHIFT;
520 	dma_addr_t dma = i915_gem_object_get_dma_address(obj, idx);
521 	void __iomem *src_map;
522 	void __iomem *src_ptr;
523 
524 	src_map = io_mapping_map_wc(&obj->mm.region->iomap,
525 				    dma - obj->mm.region->region.start,
526 				    PAGE_SIZE);
527 
528 	src_ptr = src_map + offset_in_page(offset);
529 	if (!i915_memcpy_from_wc(dst, (void __force *)src_ptr, size))
530 		memcpy_fromio(dst, src_ptr, size);
531 
532 	io_mapping_unmap(src_map);
533 }
534 
535 static bool object_has_mappable_iomem(struct drm_i915_gem_object *obj)
536 {
537 	GEM_BUG_ON(!i915_gem_object_has_iomem(obj));
538 
539 	if (IS_DGFX(to_i915(obj->base.dev)))
540 		return i915_ttm_resource_mappable(i915_gem_to_ttm(obj)->resource);
541 
542 	return true;
543 }
544 
545 /**
546  * i915_gem_object_read_from_page - read data from the page of a GEM object
547  * @obj: GEM object to read from
548  * @offset: offset within the object
549  * @dst: buffer to store the read data
550  * @size: size to read
551  *
552  * Reads data from @obj at the specified offset. The requested region to read
553  * from can't cross a page boundary. The caller must ensure that @obj pages
554  * are pinned and that @obj is synced wrt. any related writes.
555  *
556  * Return: %0 on success or -ENODEV if the type of @obj's backing store is
557  * unsupported.
558  */
559 int i915_gem_object_read_from_page(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size)
560 {
561 	GEM_BUG_ON(overflows_type(offset >> PAGE_SHIFT, pgoff_t));
562 	GEM_BUG_ON(offset >= obj->base.size);
563 	GEM_BUG_ON(offset_in_page(offset) > PAGE_SIZE - size);
564 	GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj));
565 
566 	if (i915_gem_object_has_struct_page(obj))
567 		i915_gem_object_read_from_page_kmap(obj, offset, dst, size);
568 	else if (i915_gem_object_has_iomem(obj) && object_has_mappable_iomem(obj))
569 		i915_gem_object_read_from_page_iomap(obj, offset, dst, size);
570 	else
571 		return -ENODEV;
572 
573 	return 0;
574 }
575 
576 /**
577  * i915_gem_object_evictable - Whether object is likely evictable after unbind.
578  * @obj: The object to check
579  *
580  * This function checks whether the object is likely unvictable after unbind.
581  * If the object is not locked when checking, the result is only advisory.
582  * If the object is locked when checking, and the function returns true,
583  * then an eviction should indeed be possible. But since unlocked vma
584  * unpinning and unbinding is currently possible, the object can actually
585  * become evictable even if this function returns false.
586  *
587  * Return: true if the object may be evictable. False otherwise.
588  */
589 bool i915_gem_object_evictable(struct drm_i915_gem_object *obj)
590 {
591 	struct i915_vma *vma;
592 	int pin_count = atomic_read(&obj->mm.pages_pin_count);
593 
594 	if (!pin_count)
595 		return true;
596 
597 	spin_lock(&obj->vma.lock);
598 	list_for_each_entry(vma, &obj->vma.list, obj_link) {
599 		if (i915_vma_is_pinned(vma)) {
600 			spin_unlock(&obj->vma.lock);
601 			return false;
602 		}
603 		if (atomic_read(&vma->pages_count))
604 			pin_count--;
605 	}
606 	spin_unlock(&obj->vma.lock);
607 	GEM_WARN_ON(pin_count < 0);
608 
609 	return pin_count == 0;
610 }
611 
612 /**
613  * i915_gem_object_migratable - Whether the object is migratable out of the
614  * current region.
615  * @obj: Pointer to the object.
616  *
617  * Return: Whether the object is allowed to be resident in other
618  * regions than the current while pages are present.
619  */
620 bool i915_gem_object_migratable(struct drm_i915_gem_object *obj)
621 {
622 	struct intel_memory_region *mr = READ_ONCE(obj->mm.region);
623 
624 	if (!mr)
625 		return false;
626 
627 	return obj->mm.n_placements > 1;
628 }
629 
630 /**
631  * i915_gem_object_has_struct_page - Whether the object is page-backed
632  * @obj: The object to query.
633  *
634  * This function should only be called while the object is locked or pinned,
635  * otherwise the page backing may change under the caller.
636  *
637  * Return: True if page-backed, false otherwise.
638  */
639 bool i915_gem_object_has_struct_page(const struct drm_i915_gem_object *obj)
640 {
641 #ifdef CONFIG_LOCKDEP
642 	if (IS_DGFX(to_i915(obj->base.dev)) &&
643 	    i915_gem_object_evictable((void __force *)obj))
644 		assert_object_held_shared(obj);
645 #endif
646 	return obj->mem_flags & I915_BO_FLAG_STRUCT_PAGE;
647 }
648 
649 /**
650  * i915_gem_object_has_iomem - Whether the object is iomem-backed
651  * @obj: The object to query.
652  *
653  * This function should only be called while the object is locked or pinned,
654  * otherwise the iomem backing may change under the caller.
655  *
656  * Return: True if iomem-backed, false otherwise.
657  */
658 bool i915_gem_object_has_iomem(const struct drm_i915_gem_object *obj)
659 {
660 #ifdef CONFIG_LOCKDEP
661 	if (IS_DGFX(to_i915(obj->base.dev)) &&
662 	    i915_gem_object_evictable((void __force *)obj))
663 		assert_object_held_shared(obj);
664 #endif
665 	return obj->mem_flags & I915_BO_FLAG_IOMEM;
666 }
667 
668 /**
669  * i915_gem_object_can_migrate - Whether an object likely can be migrated
670  *
671  * @obj: The object to migrate
672  * @id: The region intended to migrate to
673  *
674  * Check whether the object backend supports migration to the
675  * given region. Note that pinning may affect the ability to migrate as
676  * returned by this function.
677  *
678  * This function is primarily intended as a helper for checking the
679  * possibility to migrate objects and might be slightly less permissive
680  * than i915_gem_object_migrate() when it comes to objects with the
681  * I915_BO_ALLOC_USER flag set.
682  *
683  * Return: true if migration is possible, false otherwise.
684  */
685 bool i915_gem_object_can_migrate(struct drm_i915_gem_object *obj,
686 				 enum intel_region_id id)
687 {
688 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
689 	unsigned int num_allowed = obj->mm.n_placements;
690 	struct intel_memory_region *mr;
691 	unsigned int i;
692 
693 	GEM_BUG_ON(id >= INTEL_REGION_UNKNOWN);
694 	GEM_BUG_ON(obj->mm.madv != I915_MADV_WILLNEED);
695 
696 	mr = i915->mm.regions[id];
697 	if (!mr)
698 		return false;
699 
700 	if (!IS_ALIGNED(obj->base.size, mr->min_page_size))
701 		return false;
702 
703 	if (obj->mm.region == mr)
704 		return true;
705 
706 	if (!i915_gem_object_evictable(obj))
707 		return false;
708 
709 	if (!obj->ops->migrate)
710 		return false;
711 
712 	if (!(obj->flags & I915_BO_ALLOC_USER))
713 		return true;
714 
715 	if (num_allowed == 0)
716 		return false;
717 
718 	for (i = 0; i < num_allowed; ++i) {
719 		if (mr == obj->mm.placements[i])
720 			return true;
721 	}
722 
723 	return false;
724 }
725 
726 /**
727  * i915_gem_object_migrate - Migrate an object to the desired region id
728  * @obj: The object to migrate.
729  * @ww: An optional struct i915_gem_ww_ctx. If NULL, the backend may
730  * not be successful in evicting other objects to make room for this object.
731  * @id: The region id to migrate to.
732  *
733  * Attempt to migrate the object to the desired memory region. The
734  * object backend must support migration and the object may not be
735  * pinned, (explicitly pinned pages or pinned vmas). The object must
736  * be locked.
737  * On successful completion, the object will have pages pointing to
738  * memory in the new region, but an async migration task may not have
739  * completed yet, and to accomplish that, i915_gem_object_wait_migration()
740  * must be called.
741  *
742  * Note: the @ww parameter is not used yet, but included to make sure
743  * callers put some effort into obtaining a valid ww ctx if one is
744  * available.
745  *
746  * Return: 0 on success. Negative error code on failure. In particular may
747  * return -ENXIO on lack of region space, -EDEADLK for deadlock avoidance
748  * if @ww is set, -EINTR or -ERESTARTSYS if signal pending, and
749  * -EBUSY if the object is pinned.
750  */
751 int i915_gem_object_migrate(struct drm_i915_gem_object *obj,
752 			    struct i915_gem_ww_ctx *ww,
753 			    enum intel_region_id id)
754 {
755 	return __i915_gem_object_migrate(obj, ww, id, obj->flags);
756 }
757 
758 /**
759  * __i915_gem_object_migrate - Migrate an object to the desired region id, with
760  * control of the extra flags
761  * @obj: The object to migrate.
762  * @ww: An optional struct i915_gem_ww_ctx. If NULL, the backend may
763  * not be successful in evicting other objects to make room for this object.
764  * @id: The region id to migrate to.
765  * @flags: The object flags. Normally just obj->flags.
766  *
767  * Attempt to migrate the object to the desired memory region. The
768  * object backend must support migration and the object may not be
769  * pinned, (explicitly pinned pages or pinned vmas). The object must
770  * be locked.
771  * On successful completion, the object will have pages pointing to
772  * memory in the new region, but an async migration task may not have
773  * completed yet, and to accomplish that, i915_gem_object_wait_migration()
774  * must be called.
775  *
776  * Note: the @ww parameter is not used yet, but included to make sure
777  * callers put some effort into obtaining a valid ww ctx if one is
778  * available.
779  *
780  * Return: 0 on success. Negative error code on failure. In particular may
781  * return -ENXIO on lack of region space, -EDEADLK for deadlock avoidance
782  * if @ww is set, -EINTR or -ERESTARTSYS if signal pending, and
783  * -EBUSY if the object is pinned.
784  */
785 int __i915_gem_object_migrate(struct drm_i915_gem_object *obj,
786 			      struct i915_gem_ww_ctx *ww,
787 			      enum intel_region_id id,
788 			      unsigned int flags)
789 {
790 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
791 	struct intel_memory_region *mr;
792 
793 	GEM_BUG_ON(id >= INTEL_REGION_UNKNOWN);
794 	GEM_BUG_ON(obj->mm.madv != I915_MADV_WILLNEED);
795 	assert_object_held(obj);
796 
797 	mr = i915->mm.regions[id];
798 	GEM_BUG_ON(!mr);
799 
800 	if (!i915_gem_object_can_migrate(obj, id))
801 		return -EINVAL;
802 
803 	if (!obj->ops->migrate) {
804 		if (GEM_WARN_ON(obj->mm.region != mr))
805 			return -EINVAL;
806 		return 0;
807 	}
808 
809 	return obj->ops->migrate(obj, mr, flags);
810 }
811 
812 /**
813  * i915_gem_object_placement_possible - Check whether the object can be
814  * placed at certain memory type
815  * @obj: Pointer to the object
816  * @type: The memory type to check
817  *
818  * Return: True if the object can be placed in @type. False otherwise.
819  */
820 bool i915_gem_object_placement_possible(struct drm_i915_gem_object *obj,
821 					enum intel_memory_type type)
822 {
823 	unsigned int i;
824 
825 	if (!obj->mm.n_placements) {
826 		switch (type) {
827 		case INTEL_MEMORY_LOCAL:
828 			return i915_gem_object_has_iomem(obj);
829 		case INTEL_MEMORY_SYSTEM:
830 			return i915_gem_object_has_pages(obj);
831 		default:
832 			/* Ignore stolen for now */
833 			GEM_BUG_ON(1);
834 			return false;
835 		}
836 	}
837 
838 	for (i = 0; i < obj->mm.n_placements; i++) {
839 		if (obj->mm.placements[i]->type == type)
840 			return true;
841 	}
842 
843 	return false;
844 }
845 
846 /**
847  * i915_gem_object_needs_ccs_pages - Check whether the object requires extra
848  * pages when placed in system-memory, in order to save and later restore the
849  * flat-CCS aux state when the object is moved between local-memory and
850  * system-memory
851  * @obj: Pointer to the object
852  *
853  * Return: True if the object needs extra ccs pages. False otherwise.
854  */
855 bool i915_gem_object_needs_ccs_pages(struct drm_i915_gem_object *obj)
856 {
857 	bool lmem_placement = false;
858 	int i;
859 
860 	if (!HAS_FLAT_CCS(to_i915(obj->base.dev)))
861 		return false;
862 
863 	if (obj->flags & I915_BO_ALLOC_CCS_AUX)
864 		return true;
865 
866 	for (i = 0; i < obj->mm.n_placements; i++) {
867 		/* Compression is not allowed for the objects with smem placement */
868 		if (obj->mm.placements[i]->type == INTEL_MEMORY_SYSTEM)
869 			return false;
870 		if (!lmem_placement &&
871 		    obj->mm.placements[i]->type == INTEL_MEMORY_LOCAL)
872 			lmem_placement = true;
873 	}
874 
875 	return lmem_placement;
876 }
877 
878 void i915_gem_init__objects(struct drm_i915_private *i915)
879 {
880 	INIT_WORK(&i915->mm.free_work, __i915_gem_free_work);
881 }
882 
883 void i915_objects_module_exit(void)
884 {
885 	kmem_cache_destroy(slab_objects);
886 }
887 
888 int __init i915_objects_module_init(void)
889 {
890 	slab_objects = KMEM_CACHE(drm_i915_gem_object, SLAB_HWCACHE_ALIGN);
891 	if (!slab_objects)
892 		return -ENOMEM;
893 
894 	return 0;
895 }
896 
897 static const struct drm_gem_object_funcs i915_gem_object_funcs = {
898 	.free = i915_gem_free_object,
899 	.close = i915_gem_close_object,
900 	.export = i915_gem_prime_export,
901 };
902 
903 /**
904  * i915_gem_object_get_moving_fence - Get the object's moving fence if any
905  * @obj: The object whose moving fence to get.
906  * @fence: The resulting fence
907  *
908  * A non-signaled moving fence means that there is an async operation
909  * pending on the object that needs to be waited on before setting up
910  * any GPU- or CPU PTEs to the object's pages.
911  *
912  * Return: Negative error code or 0 for success.
913  */
914 int i915_gem_object_get_moving_fence(struct drm_i915_gem_object *obj,
915 				     struct dma_fence **fence)
916 {
917 	return dma_resv_get_singleton(obj->base.resv, DMA_RESV_USAGE_KERNEL,
918 				      fence);
919 }
920 
921 /**
922  * i915_gem_object_wait_moving_fence - Wait for the object's moving fence if any
923  * @obj: The object whose moving fence to wait for.
924  * @intr: Whether to wait interruptible.
925  *
926  * If the moving fence signaled without an error, it is detached from the
927  * object and put.
928  *
929  * Return: 0 if successful, -ERESTARTSYS if the wait was interrupted,
930  * negative error code if the async operation represented by the
931  * moving fence failed.
932  */
933 int i915_gem_object_wait_moving_fence(struct drm_i915_gem_object *obj,
934 				      bool intr)
935 {
936 	long ret;
937 
938 	assert_object_held(obj);
939 
940 	ret = dma_resv_wait_timeout(obj->base. resv, DMA_RESV_USAGE_KERNEL,
941 				    intr, MAX_SCHEDULE_TIMEOUT);
942 	if (!ret)
943 		ret = -ETIME;
944 	else if (ret > 0 && i915_gem_object_has_unknown_state(obj))
945 		ret = -EIO;
946 
947 	return ret < 0 ? ret : 0;
948 }
949 
950 /*
951  * i915_gem_object_has_unknown_state - Return true if the object backing pages are
952  * in an unknown_state. This means that userspace must NEVER be allowed to touch
953  * the pages, with either the GPU or CPU.
954  *
955  * ONLY valid to be called after ensuring that all kernel fences have signalled
956  * (in particular the fence for moving/clearing the object).
957  */
958 bool i915_gem_object_has_unknown_state(struct drm_i915_gem_object *obj)
959 {
960 	/*
961 	 * The below barrier pairs with the dma_fence_signal() in
962 	 * __memcpy_work(). We should only sample the unknown_state after all
963 	 * the kernel fences have signalled.
964 	 */
965 	smp_rmb();
966 	return obj->mm.unknown_state;
967 }
968 
969 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
970 #include "selftests/huge_gem_object.c"
971 #include "selftests/huge_pages.c"
972 #include "selftests/i915_gem_migrate.c"
973 #include "selftests/i915_gem_object.c"
974 #include "selftests/i915_gem_coherency.c"
975 #endif
976