xref: /openbmc/linux/drivers/gpu/drm/i915/gem/i915_gem_object.c (revision c900529f3d9161bfde5cca0754f83b4d3c3e0220)
198932149SChris Wilson /*
298932149SChris Wilson  * Copyright © 2017 Intel Corporation
398932149SChris Wilson  *
498932149SChris Wilson  * Permission is hereby granted, free of charge, to any person obtaining a
598932149SChris Wilson  * copy of this software and associated documentation files (the "Software"),
698932149SChris Wilson  * to deal in the Software without restriction, including without limitation
798932149SChris Wilson  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
898932149SChris Wilson  * and/or sell copies of the Software, and to permit persons to whom the
998932149SChris Wilson  * Software is furnished to do so, subject to the following conditions:
1098932149SChris Wilson  *
1198932149SChris Wilson  * The above copyright notice and this permission notice (including the next
1298932149SChris Wilson  * paragraph) shall be included in all copies or substantial portions of the
1398932149SChris Wilson  * Software.
1498932149SChris Wilson  *
1598932149SChris Wilson  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1698932149SChris Wilson  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1798932149SChris Wilson  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
1898932149SChris Wilson  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1998932149SChris Wilson  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2098932149SChris Wilson  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
2198932149SChris Wilson  * IN THE SOFTWARE.
2298932149SChris Wilson  *
2398932149SChris Wilson  */
2498932149SChris Wilson 
25e9b67ec2SJani Nikula #include <linux/highmem.h>
26f86dbacbSDaniel Vetter #include <linux/sched/mm.h>
27f86dbacbSDaniel Vetter 
285f2ec909SJani Nikula #include <drm/drm_cache.h>
295f2ec909SJani Nikula 
30df0566a6SJani Nikula #include "display/intel_frontbuffer.h"
31d3ac8d42SDaniele Ceraolo Spurio #include "pxp/intel_pxp.h"
32c8eb426dSJani Nikula 
3398932149SChris Wilson #include "i915_drv.h"
345472b3f2SJani Nikula #include "i915_file_private.h"
35b414fcd5SChris Wilson #include "i915_gem_clflush.h"
3610be98a7SChris Wilson #include "i915_gem_context.h"
37c8eb426dSJani Nikula #include "i915_gem_dmabuf.h"
38cc662126SAbdiel Janulgue #include "i915_gem_mman.h"
3910be98a7SChris Wilson #include "i915_gem_object.h"
40f6c466b8SMaarten Lankhorst #include "i915_gem_ttm.h"
415fbc2c2bSImre Deak #include "i915_memcpy.h"
42a09d9a80SJani Nikula #include "i915_trace.h"
4398932149SChris Wilson 
44c8ad09afSDaniel Vetter static struct kmem_cache *slab_objects;
4598932149SChris Wilson 
4610012620SThomas Zimmermann static const struct drm_gem_object_funcs i915_gem_object_funcs;
4710012620SThomas Zimmermann 
i915_gem_get_pat_index(struct drm_i915_private * i915,enum i915_cache_level level)485e352e32SFei Yang unsigned int i915_gem_get_pat_index(struct drm_i915_private *i915,
495e352e32SFei Yang 				    enum i915_cache_level level)
505e352e32SFei Yang {
515e352e32SFei Yang 	if (drm_WARN_ON(&i915->drm, level >= I915_MAX_CACHE_LEVEL))
525e352e32SFei Yang 		return 0;
535e352e32SFei Yang 
545e352e32SFei Yang 	return INTEL_INFO(i915)->cachelevel_to_pat[level];
555e352e32SFei Yang }
565e352e32SFei Yang 
i915_gem_object_has_cache_level(const struct drm_i915_gem_object * obj,enum i915_cache_level lvl)579275277dSFei Yang bool i915_gem_object_has_cache_level(const struct drm_i915_gem_object *obj,
589275277dSFei Yang 				     enum i915_cache_level lvl)
599275277dSFei Yang {
609275277dSFei Yang 	/*
619275277dSFei Yang 	 * In case the pat_index is set by user space, this kernel mode
629275277dSFei Yang 	 * driver should leave the coherency to be managed by user space,
639275277dSFei Yang 	 * simply return true here.
649275277dSFei Yang 	 */
659275277dSFei Yang 	if (obj->pat_set_by_user)
669275277dSFei Yang 		return true;
679275277dSFei Yang 
689275277dSFei Yang 	/*
699275277dSFei Yang 	 * Otherwise the pat_index should have been converted from cache_level
709275277dSFei Yang 	 * so that the following comparison is valid.
719275277dSFei Yang 	 */
729275277dSFei Yang 	return obj->pat_index == i915_gem_get_pat_index(obj_to_i915(obj), lvl);
739275277dSFei Yang }
749275277dSFei Yang 
i915_gem_object_alloc(void)7598932149SChris Wilson struct drm_i915_gem_object *i915_gem_object_alloc(void)
7698932149SChris Wilson {
7710012620SThomas Zimmermann 	struct drm_i915_gem_object *obj;
7810012620SThomas Zimmermann 
79c8ad09afSDaniel Vetter 	obj = kmem_cache_zalloc(slab_objects, GFP_KERNEL);
8010012620SThomas Zimmermann 	if (!obj)
8110012620SThomas Zimmermann 		return NULL;
8210012620SThomas Zimmermann 	obj->base.funcs = &i915_gem_object_funcs;
8310012620SThomas Zimmermann 
8410012620SThomas Zimmermann 	return obj;
8598932149SChris Wilson }
8698932149SChris Wilson 
i915_gem_object_free(struct drm_i915_gem_object * obj)8798932149SChris Wilson void i915_gem_object_free(struct drm_i915_gem_object *obj)
8898932149SChris Wilson {
89c8ad09afSDaniel Vetter 	return kmem_cache_free(slab_objects, obj);
9098932149SChris Wilson }
9198932149SChris Wilson 
i915_gem_object_init(struct drm_i915_gem_object * obj,const struct drm_i915_gem_object_ops * ops,struct lock_class_key * key,unsigned flags)928475355fSChris Wilson void i915_gem_object_init(struct drm_i915_gem_object *obj,
937867d709SChris Wilson 			  const struct drm_i915_gem_object_ops *ops,
94c471748dSMaarten Lankhorst 			  struct lock_class_key *key, unsigned flags)
958475355fSChris Wilson {
96f4db23f2SThomas Hellström 	/*
97f4db23f2SThomas Hellström 	 * A gem object is embedded both in a struct ttm_buffer_object :/ and
98f4db23f2SThomas Hellström 	 * in a drm_i915_gem_object. Make sure they are aliased.
99f4db23f2SThomas Hellström 	 */
100f4db23f2SThomas Hellström 	BUILD_BUG_ON(offsetof(typeof(*obj), base) !=
101f4db23f2SThomas Hellström 		     offsetof(typeof(*obj), __do_not_access.base));
102f4db23f2SThomas Hellström 
1038475355fSChris Wilson 	spin_lock_init(&obj->vma.lock);
1048475355fSChris Wilson 	INIT_LIST_HEAD(&obj->vma.list);
1058475355fSChris Wilson 
1061aff1903SChris Wilson 	INIT_LIST_HEAD(&obj->mm.link);
1071aff1903SChris Wilson 
1088475355fSChris Wilson 	INIT_LIST_HEAD(&obj->lut_list);
109096a42ddSChris Wilson 	spin_lock_init(&obj->lut_lock);
1108475355fSChris Wilson 
111cc662126SAbdiel Janulgue 	spin_lock_init(&obj->mmo.lock);
11278655598SChris Wilson 	obj->mmo.offsets = RB_ROOT;
113cc662126SAbdiel Janulgue 
1148475355fSChris Wilson 	init_rcu_head(&obj->rcu);
1158475355fSChris Wilson 
1168475355fSChris Wilson 	obj->ops = ops;
117c471748dSMaarten Lankhorst 	GEM_BUG_ON(flags & ~I915_BO_ALLOC_FLAGS);
118c471748dSMaarten Lankhorst 	obj->flags = flags;
1198475355fSChris Wilson 
1208475355fSChris Wilson 	obj->mm.madv = I915_MADV_WILLNEED;
1218475355fSChris Wilson 	INIT_RADIX_TREE(&obj->mm.get_page.radix, GFP_KERNEL | __GFP_NOWARN);
1228475355fSChris Wilson 	mutex_init(&obj->mm.get_page.lock);
123934941edSTvrtko Ursulin 	INIT_RADIX_TREE(&obj->mm.get_dma_page.radix, GFP_KERNEL | __GFP_NOWARN);
124934941edSTvrtko Ursulin 	mutex_init(&obj->mm.get_dma_page.lock);
1258475355fSChris Wilson }
1268475355fSChris Wilson 
12798932149SChris Wilson /**
1280af4cbfaSRandy Dunlap  * __i915_gem_object_fini - Clean up a GEM object initialization
129068396bbSThomas Hellström  * @obj: The gem object to cleanup
130068396bbSThomas Hellström  *
131068396bbSThomas Hellström  * This function cleans up gem object fields that are set up by
132068396bbSThomas Hellström  * drm_gem_private_object_init() and i915_gem_object_init().
133068396bbSThomas Hellström  * It's primarily intended as a helper for backends that need to
134068396bbSThomas Hellström  * clean up the gem object in separate steps.
135068396bbSThomas Hellström  */
__i915_gem_object_fini(struct drm_i915_gem_object * obj)136068396bbSThomas Hellström void __i915_gem_object_fini(struct drm_i915_gem_object *obj)
137068396bbSThomas Hellström {
138068396bbSThomas Hellström 	mutex_destroy(&obj->mm.get_page.lock);
139068396bbSThomas Hellström 	mutex_destroy(&obj->mm.get_dma_page.lock);
140068396bbSThomas Hellström 	dma_resv_fini(&obj->base._resv);
141068396bbSThomas Hellström }
142068396bbSThomas Hellström 
143068396bbSThomas Hellström /**
1440af4cbfaSRandy Dunlap  * i915_gem_object_set_cache_coherency - Mark up the object's coherency levels
1450af4cbfaSRandy Dunlap  * for a given cache_level
14698932149SChris Wilson  * @obj: #drm_i915_gem_object
14798932149SChris Wilson  * @cache_level: cache level
14898932149SChris Wilson  */
i915_gem_object_set_cache_coherency(struct drm_i915_gem_object * obj,unsigned int cache_level)14998932149SChris Wilson void i915_gem_object_set_cache_coherency(struct drm_i915_gem_object *obj,
15098932149SChris Wilson 					 unsigned int cache_level)
15198932149SChris Wilson {
152068b1bd0SMatthew Auld 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
153068b1bd0SMatthew Auld 
1549275277dSFei Yang 	obj->pat_index = i915_gem_get_pat_index(i915, cache_level);
15598932149SChris Wilson 
15698932149SChris Wilson 	if (cache_level != I915_CACHE_NONE)
15798932149SChris Wilson 		obj->cache_coherent = (I915_BO_CACHE_COHERENT_FOR_READ |
15898932149SChris Wilson 				       I915_BO_CACHE_COHERENT_FOR_WRITE);
159068b1bd0SMatthew Auld 	else if (HAS_LLC(i915))
16098932149SChris Wilson 		obj->cache_coherent = I915_BO_CACHE_COHERENT_FOR_READ;
16198932149SChris Wilson 	else
16298932149SChris Wilson 		obj->cache_coherent = 0;
16398932149SChris Wilson 
16498932149SChris Wilson 	obj->cache_dirty =
165068b1bd0SMatthew Auld 		!(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_WRITE) &&
166068b1bd0SMatthew Auld 		!IS_DGFX(i915);
16798932149SChris Wilson }
16898932149SChris Wilson 
1699275277dSFei Yang /**
1709275277dSFei Yang  * i915_gem_object_set_pat_index - set PAT index to be used in PTE encode
1719275277dSFei Yang  * @obj: #drm_i915_gem_object
1729275277dSFei Yang  * @pat_index: PAT index
1739275277dSFei Yang  *
1749275277dSFei Yang  * This is a clone of i915_gem_object_set_cache_coherency taking pat index
1759275277dSFei Yang  * instead of cache_level as its second argument.
1769275277dSFei Yang  */
i915_gem_object_set_pat_index(struct drm_i915_gem_object * obj,unsigned int pat_index)1779275277dSFei Yang void i915_gem_object_set_pat_index(struct drm_i915_gem_object *obj,
1789275277dSFei Yang 				   unsigned int pat_index)
1799275277dSFei Yang {
1809275277dSFei Yang 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
1819275277dSFei Yang 
1829275277dSFei Yang 	if (obj->pat_index == pat_index)
1839275277dSFei Yang 		return;
1849275277dSFei Yang 
1859275277dSFei Yang 	obj->pat_index = pat_index;
1869275277dSFei Yang 
1879275277dSFei Yang 	if (pat_index != i915_gem_get_pat_index(i915, I915_CACHE_NONE))
1889275277dSFei Yang 		obj->cache_coherent = (I915_BO_CACHE_COHERENT_FOR_READ |
1899275277dSFei Yang 				       I915_BO_CACHE_COHERENT_FOR_WRITE);
1909275277dSFei Yang 	else if (HAS_LLC(i915))
1919275277dSFei Yang 		obj->cache_coherent = I915_BO_CACHE_COHERENT_FOR_READ;
1929275277dSFei Yang 	else
1939275277dSFei Yang 		obj->cache_coherent = 0;
1949275277dSFei Yang 
1959275277dSFei Yang 	obj->cache_dirty =
1969275277dSFei Yang 		!(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_WRITE) &&
1979275277dSFei Yang 		!IS_DGFX(i915);
1989275277dSFei Yang }
1999275277dSFei Yang 
i915_gem_object_can_bypass_llc(struct drm_i915_gem_object * obj)20030f1dccdSMatthew Auld bool i915_gem_object_can_bypass_llc(struct drm_i915_gem_object *obj)
20130f1dccdSMatthew Auld {
20230f1dccdSMatthew Auld 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
20330f1dccdSMatthew Auld 
20430f1dccdSMatthew Auld 	/*
20530f1dccdSMatthew Auld 	 * This is purely from a security perspective, so we simply don't care
20630f1dccdSMatthew Auld 	 * about non-userspace objects being able to bypass the LLC.
20730f1dccdSMatthew Auld 	 */
20830f1dccdSMatthew Auld 	if (!(obj->flags & I915_BO_ALLOC_USER))
20930f1dccdSMatthew Auld 		return false;
21030f1dccdSMatthew Auld 
21130f1dccdSMatthew Auld 	/*
21281b1b599SFei Yang 	 * Always flush cache for UMD objects at creation time.
21381b1b599SFei Yang 	 */
21481b1b599SFei Yang 	if (obj->pat_set_by_user)
21581b1b599SFei Yang 		return true;
21681b1b599SFei Yang 
21781b1b599SFei Yang 	/*
21830f1dccdSMatthew Auld 	 * EHL and JSL add the 'Bypass LLC' MOCS entry, which should make it
21930f1dccdSMatthew Auld 	 * possible for userspace to bypass the GTT caching bits set by the
22030f1dccdSMatthew Auld 	 * kernel, as per the given object cache_level. This is troublesome
22130f1dccdSMatthew Auld 	 * since the heavy flush we apply when first gathering the pages is
22230f1dccdSMatthew Auld 	 * skipped if the kernel thinks the object is coherent with the GPU. As
22330f1dccdSMatthew Auld 	 * a result it might be possible to bypass the cache and read the
22430f1dccdSMatthew Auld 	 * contents of the page directly, which could be stale data. If it's
22530f1dccdSMatthew Auld 	 * just a case of userspace shooting themselves in the foot then so be
22630f1dccdSMatthew Auld 	 * it, but since i915 takes the stance of always zeroing memory before
22730f1dccdSMatthew Auld 	 * handing it to userspace, we need to prevent this.
22830f1dccdSMatthew Auld 	 */
229*0c65dc06SDnyaneshwar Bhadane 	return (IS_JASPERLAKE(i915) || IS_ELKHARTLAKE(i915));
23030f1dccdSMatthew Auld }
23130f1dccdSMatthew Auld 
i915_gem_close_object(struct drm_gem_object * gem,struct drm_file * file)23210012620SThomas Zimmermann static void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file)
2338475355fSChris Wilson {
2348475355fSChris Wilson 	struct drm_i915_gem_object *obj = to_intel_bo(gem);
2358475355fSChris Wilson 	struct drm_i915_file_private *fpriv = file->driver_priv;
236096a42ddSChris Wilson 	struct i915_lut_handle bookmark = {};
23778655598SChris Wilson 	struct i915_mmap_offset *mmo, *mn;
2388475355fSChris Wilson 	struct i915_lut_handle *lut, *ln;
239155ab883SChris Wilson 	LIST_HEAD(close);
2408475355fSChris Wilson 
241096a42ddSChris Wilson 	spin_lock(&obj->lut_lock);
2428475355fSChris Wilson 	list_for_each_entry_safe(lut, ln, &obj->lut_list, obj_link) {
2438475355fSChris Wilson 		struct i915_gem_context *ctx = lut->ctx;
2448475355fSChris Wilson 
245096a42ddSChris Wilson 		if (ctx && ctx->file_priv == fpriv) {
246155ab883SChris Wilson 			i915_gem_context_get(ctx);
247155ab883SChris Wilson 			list_move(&lut->obj_link, &close);
248155ab883SChris Wilson 		}
249096a42ddSChris Wilson 
250096a42ddSChris Wilson 		/* Break long locks, and carefully continue on from this spot */
251096a42ddSChris Wilson 		if (&ln->obj_link != &obj->lut_list) {
252096a42ddSChris Wilson 			list_add_tail(&bookmark.obj_link, &ln->obj_link);
253096a42ddSChris Wilson 			if (cond_resched_lock(&obj->lut_lock))
254096a42ddSChris Wilson 				list_safe_reset_next(&bookmark, ln, obj_link);
255096a42ddSChris Wilson 			__list_del_entry(&bookmark.obj_link);
256096a42ddSChris Wilson 		}
257096a42ddSChris Wilson 	}
258096a42ddSChris Wilson 	spin_unlock(&obj->lut_lock);
2598475355fSChris Wilson 
260cc662126SAbdiel Janulgue 	spin_lock(&obj->mmo.lock);
26178655598SChris Wilson 	rbtree_postorder_for_each_entry_safe(mmo, mn, &obj->mmo.offsets, offset)
262cc662126SAbdiel Janulgue 		drm_vma_node_revoke(&mmo->vma_node, file);
263cc662126SAbdiel Janulgue 	spin_unlock(&obj->mmo.lock);
264cc662126SAbdiel Janulgue 
265155ab883SChris Wilson 	list_for_each_entry_safe(lut, ln, &close, obj_link) {
266155ab883SChris Wilson 		struct i915_gem_context *ctx = lut->ctx;
267155ab883SChris Wilson 		struct i915_vma *vma;
268155ab883SChris Wilson 
269155ab883SChris Wilson 		/*
270155ab883SChris Wilson 		 * We allow the process to have multiple handles to the same
2718475355fSChris Wilson 		 * vma, in the same fd namespace, by virtue of flink/open.
2728475355fSChris Wilson 		 */
273155ab883SChris Wilson 
274f7ce8639SChris Wilson 		mutex_lock(&ctx->lut_mutex);
275155ab883SChris Wilson 		vma = radix_tree_delete(&ctx->handles_vma, lut->handle);
276155ab883SChris Wilson 		if (vma) {
277155ab883SChris Wilson 			GEM_BUG_ON(vma->obj != obj);
278155ab883SChris Wilson 			GEM_BUG_ON(!atomic_read(&vma->open_count));
2798475355fSChris Wilson 			i915_vma_close(vma);
280155ab883SChris Wilson 		}
281f7ce8639SChris Wilson 		mutex_unlock(&ctx->lut_mutex);
2828475355fSChris Wilson 
283155ab883SChris Wilson 		i915_gem_context_put(lut->ctx);
2848475355fSChris Wilson 		i915_lut_handle_free(lut);
285c017cf6bSChris Wilson 		i915_gem_object_put(obj);
2868475355fSChris Wilson 	}
2878475355fSChris Wilson }
2888475355fSChris Wilson 
__i915_gem_free_object_rcu(struct rcu_head * head)289213d5092SThomas Hellström void __i915_gem_free_object_rcu(struct rcu_head *head)
290c03467baSChris Wilson {
291c03467baSChris Wilson 	struct drm_i915_gem_object *obj =
292c03467baSChris Wilson 		container_of(head, typeof(*obj), rcu);
293c03467baSChris Wilson 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
294c03467baSChris Wilson 
295c03467baSChris Wilson 	i915_gem_object_free(obj);
296c03467baSChris Wilson 
297c03467baSChris Wilson 	GEM_BUG_ON(!atomic_read(&i915->mm.free_count));
298c03467baSChris Wilson 	atomic_dec(&i915->mm.free_count);
299c03467baSChris Wilson }
300c03467baSChris Wilson 
__i915_gem_object_free_mmaps(struct drm_i915_gem_object * obj)301db833785SChris Wilson static void __i915_gem_object_free_mmaps(struct drm_i915_gem_object *obj)
302db833785SChris Wilson {
303db833785SChris Wilson 	/* Skip serialisation and waking the device if known to be not used. */
304db833785SChris Wilson 
305ad74457aSAnshuman Gupta 	if (obj->userfault_count && !IS_DGFX(to_i915(obj->base.dev)))
306db833785SChris Wilson 		i915_gem_object_release_mmap_gtt(obj);
307db833785SChris Wilson 
308db833785SChris Wilson 	if (!RB_EMPTY_ROOT(&obj->mmo.offsets)) {
309db833785SChris Wilson 		struct i915_mmap_offset *mmo, *mn;
310db833785SChris Wilson 
311db833785SChris Wilson 		i915_gem_object_release_mmap_offset(obj);
312db833785SChris Wilson 
313db833785SChris Wilson 		rbtree_postorder_for_each_entry_safe(mmo, mn,
314db833785SChris Wilson 						     &obj->mmo.offsets,
315db833785SChris Wilson 						     offset) {
316db833785SChris Wilson 			drm_vma_offset_remove(obj->base.dev->vma_offset_manager,
317db833785SChris Wilson 					      &mmo->vma_node);
318db833785SChris Wilson 			kfree(mmo);
319db833785SChris Wilson 		}
320db833785SChris Wilson 		obj->mmo.offsets = RB_ROOT;
321db833785SChris Wilson 	}
322db833785SChris Wilson }
323db833785SChris Wilson 
324068396bbSThomas Hellström /**
325068396bbSThomas Hellström  * __i915_gem_object_pages_fini - Clean up pages use of a gem object
326068396bbSThomas Hellström  * @obj: The gem object to clean up
327068396bbSThomas Hellström  *
328068396bbSThomas Hellström  * This function cleans up usage of the object mm.pages member. It
329068396bbSThomas Hellström  * is intended for backends that need to clean up a gem object in
330068396bbSThomas Hellström  * separate steps and needs to be called when the object is idle before
331068396bbSThomas Hellström  * the object's backing memory is freed.
332068396bbSThomas Hellström  */
__i915_gem_object_pages_fini(struct drm_i915_gem_object * obj)333068396bbSThomas Hellström void __i915_gem_object_pages_fini(struct drm_i915_gem_object *obj)
3348475355fSChris Wilson {
3357dd5c565SChris Wilson 	assert_object_held_shared(obj);
336be7612fdSMaarten Lankhorst 
3372850748eSChris Wilson 	if (!list_empty(&obj->vma.list)) {
3382850748eSChris Wilson 		struct i915_vma *vma;
3398475355fSChris Wilson 
3402850748eSChris Wilson 		spin_lock(&obj->vma.lock);
3412850748eSChris Wilson 		while ((vma = list_first_entry_or_null(&obj->vma.list,
3422850748eSChris Wilson 						       struct i915_vma,
3432850748eSChris Wilson 						       obj_link))) {
3442850748eSChris Wilson 			GEM_BUG_ON(vma->obj != obj);
3452850748eSChris Wilson 			spin_unlock(&obj->vma.lock);
3462850748eSChris Wilson 
347c03d9826SThomas Hellström 			i915_vma_destroy(vma);
3488475355fSChris Wilson 
3492850748eSChris Wilson 			spin_lock(&obj->vma.lock);
3502850748eSChris Wilson 		}
3512850748eSChris Wilson 		spin_unlock(&obj->vma.lock);
3522850748eSChris Wilson 	}
3538475355fSChris Wilson 
354db833785SChris Wilson 	__i915_gem_object_free_mmaps(obj);
355cc662126SAbdiel Janulgue 
3568475355fSChris Wilson 	atomic_set(&obj->mm.pages_pin_count, 0);
357f2d8e15bSDmitry Osipenko 
358f2d8e15bSDmitry Osipenko 	/*
359f2d8e15bSDmitry Osipenko 	 * dma_buf_unmap_attachment() requires reservation to be
360f2d8e15bSDmitry Osipenko 	 * locked. The imported GEM shouldn't share reservation lock
361f2d8e15bSDmitry Osipenko 	 * and ttm_bo_cleanup_memtype_use() shouldn't be invoked for
362f2d8e15bSDmitry Osipenko 	 * dma-buf, so it's safe to take the lock.
363f2d8e15bSDmitry Osipenko 	 */
364f2d8e15bSDmitry Osipenko 	if (obj->base.import_attach)
365f2d8e15bSDmitry Osipenko 		i915_gem_object_lock(obj, NULL);
366f2d8e15bSDmitry Osipenko 
367f86dbacbSDaniel Vetter 	__i915_gem_object_put_pages(obj);
368f2d8e15bSDmitry Osipenko 
369f2d8e15bSDmitry Osipenko 	if (obj->base.import_attach)
370f2d8e15bSDmitry Osipenko 		i915_gem_object_unlock(obj);
371f2d8e15bSDmitry Osipenko 
3728475355fSChris Wilson 	GEM_BUG_ON(i915_gem_object_has_pages(obj));
373068396bbSThomas Hellström }
374068396bbSThomas Hellström 
__i915_gem_free_object(struct drm_i915_gem_object * obj)375068396bbSThomas Hellström void __i915_gem_free_object(struct drm_i915_gem_object *obj)
376068396bbSThomas Hellström {
377068396bbSThomas Hellström 	trace_i915_gem_object_destroy(obj);
378068396bbSThomas Hellström 
379068396bbSThomas Hellström 	GEM_BUG_ON(!list_empty(&obj->lut_list));
380068396bbSThomas Hellström 
381c03467baSChris Wilson 	bitmap_free(obj->bit_17);
3828475355fSChris Wilson 
3838475355fSChris Wilson 	if (obj->base.import_attach)
3848475355fSChris Wilson 		drm_prime_gem_destroy(&obj->base, NULL);
3858475355fSChris Wilson 
3860c159ffeSChris Wilson 	drm_gem_free_mmap_offset(&obj->base);
3870c159ffeSChris Wilson 
3880c159ffeSChris Wilson 	if (obj->ops->release)
3890c159ffeSChris Wilson 		obj->ops->release(obj);
3908475355fSChris Wilson 
3912459e56fSMatthew Auld 	if (obj->mm.n_placements > 1)
3922459e56fSMatthew Auld 		kfree(obj->mm.placements);
3932459e56fSMatthew Auld 
3944d8151aeSThomas Hellström 	if (obj->shares_resv_from)
3954d8151aeSThomas Hellström 		i915_vm_resv_put(obj->shares_resv_from);
396068396bbSThomas Hellström 
397068396bbSThomas Hellström 	__i915_gem_object_fini(obj);
398213d5092SThomas Hellström }
399213d5092SThomas Hellström 
__i915_gem_free_objects(struct drm_i915_private * i915,struct llist_node * freed)400213d5092SThomas Hellström static void __i915_gem_free_objects(struct drm_i915_private *i915,
401213d5092SThomas Hellström 				    struct llist_node *freed)
402213d5092SThomas Hellström {
403213d5092SThomas Hellström 	struct drm_i915_gem_object *obj, *on;
404213d5092SThomas Hellström 
405213d5092SThomas Hellström 	llist_for_each_entry_safe(obj, on, freed, freed) {
406213d5092SThomas Hellström 		might_sleep();
407213d5092SThomas Hellström 		if (obj->ops->delayed_free) {
408213d5092SThomas Hellström 			obj->ops->delayed_free(obj);
409213d5092SThomas Hellström 			continue;
410213d5092SThomas Hellström 		}
411be7612fdSMaarten Lankhorst 
412068396bbSThomas Hellström 		__i915_gem_object_pages_fini(obj);
413213d5092SThomas Hellström 		__i915_gem_free_object(obj);
4144d8151aeSThomas Hellström 
415c03467baSChris Wilson 		/* But keep the pointer alive for RCU-protected lookups */
416c03467baSChris Wilson 		call_rcu(&obj->rcu, __i915_gem_free_object_rcu);
417deeee411SChris Wilson 		cond_resched();
4188475355fSChris Wilson 	}
4198475355fSChris Wilson }
4208475355fSChris Wilson 
i915_gem_flush_free_objects(struct drm_i915_private * i915)4218475355fSChris Wilson void i915_gem_flush_free_objects(struct drm_i915_private *i915)
4228475355fSChris Wilson {
423515b8b7eSChris Wilson 	struct llist_node *freed = llist_del_all(&i915->mm.free_list);
4248475355fSChris Wilson 
425515b8b7eSChris Wilson 	if (unlikely(freed))
4268475355fSChris Wilson 		__i915_gem_free_objects(i915, freed);
4278475355fSChris Wilson }
4288475355fSChris Wilson 
__i915_gem_free_work(struct work_struct * work)4298475355fSChris Wilson static void __i915_gem_free_work(struct work_struct *work)
4308475355fSChris Wilson {
4318475355fSChris Wilson 	struct drm_i915_private *i915 =
4327dd5c565SChris Wilson 		container_of(work, struct drm_i915_private, mm.free_work);
4338475355fSChris Wilson 
434515b8b7eSChris Wilson 	i915_gem_flush_free_objects(i915);
4358475355fSChris Wilson }
4368475355fSChris Wilson 
i915_gem_free_object(struct drm_gem_object * gem_obj)43710012620SThomas Zimmermann static void i915_gem_free_object(struct drm_gem_object *gem_obj)
4388475355fSChris Wilson {
439c03467baSChris Wilson 	struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
4408475355fSChris Wilson 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
4418475355fSChris Wilson 
4428e7cb179SChris Wilson 	GEM_BUG_ON(i915_gem_object_is_framebuffer(obj));
4438e7cb179SChris Wilson 
4448475355fSChris Wilson 	/*
445c03467baSChris Wilson 	 * Before we free the object, make sure any pure RCU-only
446c03467baSChris Wilson 	 * read-side critical sections are complete, e.g.
447c03467baSChris Wilson 	 * i915_gem_busy_ioctl(). For the corresponding synchronized
448c03467baSChris Wilson 	 * lookup see i915_gem_object_lookup_rcu().
4498475355fSChris Wilson 	 */
450c03467baSChris Wilson 	atomic_inc(&i915->mm.free_count);
451c03467baSChris Wilson 
452c03467baSChris Wilson 	/*
4538475355fSChris Wilson 	 * Since we require blocking on struct_mutex to unbind the freed
4548475355fSChris Wilson 	 * object from the GPU before releasing resources back to the
4558475355fSChris Wilson 	 * system, we can not do that directly from the RCU callback (which may
4568475355fSChris Wilson 	 * be a softirq context), but must instead then defer that work onto a
4578475355fSChris Wilson 	 * kthread. We use the RCU callback rather than move the freed object
4588475355fSChris Wilson 	 * directly onto the work queue so that we can mix between using the
4598475355fSChris Wilson 	 * worker and performing frees directly from subsequent allocations for
4608475355fSChris Wilson 	 * crude but effective memory throttling.
4618475355fSChris Wilson 	 */
462213d5092SThomas Hellström 
4638475355fSChris Wilson 	if (llist_add(&obj->freed, &i915->mm.free_list))
4647dd5c565SChris Wilson 		queue_work(i915->wq, &i915->mm.free_work);
4658475355fSChris Wilson }
4668475355fSChris Wilson 
__i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object * obj,enum fb_op_origin origin)467da42104fSChris Wilson void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object *obj,
468da42104fSChris Wilson 					 enum fb_op_origin origin)
469da42104fSChris Wilson {
470da42104fSChris Wilson 	struct intel_frontbuffer *front;
471da42104fSChris Wilson 
4727b574550SJouni Högander 	front = i915_gem_object_get_frontbuffer(obj);
473da42104fSChris Wilson 	if (front) {
474da42104fSChris Wilson 		intel_frontbuffer_flush(front, origin);
475da42104fSChris Wilson 		intel_frontbuffer_put(front);
476da42104fSChris Wilson 	}
477da42104fSChris Wilson }
478da42104fSChris Wilson 
__i915_gem_object_invalidate_frontbuffer(struct drm_i915_gem_object * obj,enum fb_op_origin origin)479da42104fSChris Wilson void __i915_gem_object_invalidate_frontbuffer(struct drm_i915_gem_object *obj,
480da42104fSChris Wilson 					      enum fb_op_origin origin)
481da42104fSChris Wilson {
482da42104fSChris Wilson 	struct intel_frontbuffer *front;
483da42104fSChris Wilson 
4847b574550SJouni Högander 	front = i915_gem_object_get_frontbuffer(obj);
485da42104fSChris Wilson 	if (front) {
486da42104fSChris Wilson 		intel_frontbuffer_invalidate(front, origin);
487da42104fSChris Wilson 		intel_frontbuffer_put(front);
488da42104fSChris Wilson 	}
489da42104fSChris Wilson }
490da42104fSChris Wilson 
4915fbc2c2bSImre Deak static void
i915_gem_object_read_from_page_kmap(struct drm_i915_gem_object * obj,u64 offset,void * dst,int size)4925fbc2c2bSImre Deak i915_gem_object_read_from_page_kmap(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size)
4935fbc2c2bSImre Deak {
494f47e6306SChris Wilson 	pgoff_t idx = offset >> PAGE_SHIFT;
4955fbc2c2bSImre Deak 	void *src_map;
4965fbc2c2bSImre Deak 	void *src_ptr;
4975fbc2c2bSImre Deak 
498f47e6306SChris Wilson 	src_map = kmap_atomic(i915_gem_object_get_page(obj, idx));
4995fbc2c2bSImre Deak 
5005fbc2c2bSImre Deak 	src_ptr = src_map + offset_in_page(offset);
5015fbc2c2bSImre Deak 	if (!(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_READ))
5025fbc2c2bSImre Deak 		drm_clflush_virt_range(src_ptr, size);
5035fbc2c2bSImre Deak 	memcpy(dst, src_ptr, size);
5045fbc2c2bSImre Deak 
5055fbc2c2bSImre Deak 	kunmap_atomic(src_map);
5065fbc2c2bSImre Deak }
5075fbc2c2bSImre Deak 
5085fbc2c2bSImre Deak static void
i915_gem_object_read_from_page_iomap(struct drm_i915_gem_object * obj,u64 offset,void * dst,int size)5095fbc2c2bSImre Deak i915_gem_object_read_from_page_iomap(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size)
5105fbc2c2bSImre Deak {
511f47e6306SChris Wilson 	pgoff_t idx = offset >> PAGE_SHIFT;
512f47e6306SChris Wilson 	dma_addr_t dma = i915_gem_object_get_dma_address(obj, idx);
5135fbc2c2bSImre Deak 	void __iomem *src_map;
5145fbc2c2bSImre Deak 	void __iomem *src_ptr;
5155fbc2c2bSImre Deak 
5165fbc2c2bSImre Deak 	src_map = io_mapping_map_wc(&obj->mm.region->iomap,
5175fbc2c2bSImre Deak 				    dma - obj->mm.region->region.start,
5185fbc2c2bSImre Deak 				    PAGE_SIZE);
5195fbc2c2bSImre Deak 
5205fbc2c2bSImre Deak 	src_ptr = src_map + offset_in_page(offset);
5215fbc2c2bSImre Deak 	if (!i915_memcpy_from_wc(dst, (void __force *)src_ptr, size))
5225fbc2c2bSImre Deak 		memcpy_fromio(dst, src_ptr, size);
5235fbc2c2bSImre Deak 
5245fbc2c2bSImre Deak 	io_mapping_unmap(src_map);
5255fbc2c2bSImre Deak }
5265fbc2c2bSImre Deak 
object_has_mappable_iomem(struct drm_i915_gem_object * obj)5277024f80eSMatthew Auld static bool object_has_mappable_iomem(struct drm_i915_gem_object *obj)
5287024f80eSMatthew Auld {
5297024f80eSMatthew Auld 	GEM_BUG_ON(!i915_gem_object_has_iomem(obj));
5307024f80eSMatthew Auld 
5317024f80eSMatthew Auld 	if (IS_DGFX(to_i915(obj->base.dev)))
5327024f80eSMatthew Auld 		return i915_ttm_resource_mappable(i915_gem_to_ttm(obj)->resource);
5337024f80eSMatthew Auld 
5347024f80eSMatthew Auld 	return true;
5357024f80eSMatthew Auld }
5367024f80eSMatthew Auld 
5375fbc2c2bSImre Deak /**
5385fbc2c2bSImre Deak  * i915_gem_object_read_from_page - read data from the page of a GEM object
5395fbc2c2bSImre Deak  * @obj: GEM object to read from
5405fbc2c2bSImre Deak  * @offset: offset within the object
5415fbc2c2bSImre Deak  * @dst: buffer to store the read data
5425fbc2c2bSImre Deak  * @size: size to read
5435fbc2c2bSImre Deak  *
5445fbc2c2bSImre Deak  * Reads data from @obj at the specified offset. The requested region to read
5455fbc2c2bSImre Deak  * from can't cross a page boundary. The caller must ensure that @obj pages
5465fbc2c2bSImre Deak  * are pinned and that @obj is synced wrt. any related writes.
5475fbc2c2bSImre Deak  *
5480af4cbfaSRandy Dunlap  * Return: %0 on success or -ENODEV if the type of @obj's backing store is
5495fbc2c2bSImre Deak  * unsupported.
5505fbc2c2bSImre Deak  */
i915_gem_object_read_from_page(struct drm_i915_gem_object * obj,u64 offset,void * dst,int size)5515fbc2c2bSImre Deak int i915_gem_object_read_from_page(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size)
5525fbc2c2bSImre Deak {
553f47e6306SChris Wilson 	GEM_BUG_ON(overflows_type(offset >> PAGE_SHIFT, pgoff_t));
5545fbc2c2bSImre Deak 	GEM_BUG_ON(offset >= obj->base.size);
5555fbc2c2bSImre Deak 	GEM_BUG_ON(offset_in_page(offset) > PAGE_SIZE - size);
5565fbc2c2bSImre Deak 	GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj));
5575fbc2c2bSImre Deak 
5585fbc2c2bSImre Deak 	if (i915_gem_object_has_struct_page(obj))
5595fbc2c2bSImre Deak 		i915_gem_object_read_from_page_kmap(obj, offset, dst, size);
5607024f80eSMatthew Auld 	else if (i915_gem_object_has_iomem(obj) && object_has_mappable_iomem(obj))
5615fbc2c2bSImre Deak 		i915_gem_object_read_from_page_iomap(obj, offset, dst, size);
5625fbc2c2bSImre Deak 	else
5635fbc2c2bSImre Deak 		return -ENODEV;
5645fbc2c2bSImre Deak 
5655fbc2c2bSImre Deak 	return 0;
5665fbc2c2bSImre Deak }
5675fbc2c2bSImre Deak 
568213d5092SThomas Hellström /**
569213d5092SThomas Hellström  * i915_gem_object_evictable - Whether object is likely evictable after unbind.
570213d5092SThomas Hellström  * @obj: The object to check
571213d5092SThomas Hellström  *
572213d5092SThomas Hellström  * This function checks whether the object is likely unvictable after unbind.
573213d5092SThomas Hellström  * If the object is not locked when checking, the result is only advisory.
574213d5092SThomas Hellström  * If the object is locked when checking, and the function returns true,
575213d5092SThomas Hellström  * then an eviction should indeed be possible. But since unlocked vma
576213d5092SThomas Hellström  * unpinning and unbinding is currently possible, the object can actually
577213d5092SThomas Hellström  * become evictable even if this function returns false.
578213d5092SThomas Hellström  *
579213d5092SThomas Hellström  * Return: true if the object may be evictable. False otherwise.
580213d5092SThomas Hellström  */
i915_gem_object_evictable(struct drm_i915_gem_object * obj)581213d5092SThomas Hellström bool i915_gem_object_evictable(struct drm_i915_gem_object *obj)
582213d5092SThomas Hellström {
583213d5092SThomas Hellström 	struct i915_vma *vma;
584213d5092SThomas Hellström 	int pin_count = atomic_read(&obj->mm.pages_pin_count);
585213d5092SThomas Hellström 
586213d5092SThomas Hellström 	if (!pin_count)
587213d5092SThomas Hellström 		return true;
588213d5092SThomas Hellström 
589213d5092SThomas Hellström 	spin_lock(&obj->vma.lock);
590213d5092SThomas Hellström 	list_for_each_entry(vma, &obj->vma.list, obj_link) {
591213d5092SThomas Hellström 		if (i915_vma_is_pinned(vma)) {
592213d5092SThomas Hellström 			spin_unlock(&obj->vma.lock);
593213d5092SThomas Hellström 			return false;
594213d5092SThomas Hellström 		}
595213d5092SThomas Hellström 		if (atomic_read(&vma->pages_count))
596213d5092SThomas Hellström 			pin_count--;
597213d5092SThomas Hellström 	}
598213d5092SThomas Hellström 	spin_unlock(&obj->vma.lock);
599213d5092SThomas Hellström 	GEM_WARN_ON(pin_count < 0);
600213d5092SThomas Hellström 
601213d5092SThomas Hellström 	return pin_count == 0;
602213d5092SThomas Hellström }
603213d5092SThomas Hellström 
6042e53d7c1SThomas Hellström /**
6052e53d7c1SThomas Hellström  * i915_gem_object_migratable - Whether the object is migratable out of the
6062e53d7c1SThomas Hellström  * current region.
6072e53d7c1SThomas Hellström  * @obj: Pointer to the object.
6082e53d7c1SThomas Hellström  *
6092e53d7c1SThomas Hellström  * Return: Whether the object is allowed to be resident in other
6102e53d7c1SThomas Hellström  * regions than the current while pages are present.
6112e53d7c1SThomas Hellström  */
i915_gem_object_migratable(struct drm_i915_gem_object * obj)6122e53d7c1SThomas Hellström bool i915_gem_object_migratable(struct drm_i915_gem_object *obj)
6132e53d7c1SThomas Hellström {
6142e53d7c1SThomas Hellström 	struct intel_memory_region *mr = READ_ONCE(obj->mm.region);
6152e53d7c1SThomas Hellström 
6162e53d7c1SThomas Hellström 	if (!mr)
6172e53d7c1SThomas Hellström 		return false;
6182e53d7c1SThomas Hellström 
6192e53d7c1SThomas Hellström 	return obj->mm.n_placements > 1;
6202e53d7c1SThomas Hellström }
6212e53d7c1SThomas Hellström 
6220ff37575SThomas Hellström /**
6230ff37575SThomas Hellström  * i915_gem_object_has_struct_page - Whether the object is page-backed
6240ff37575SThomas Hellström  * @obj: The object to query.
6250ff37575SThomas Hellström  *
6260ff37575SThomas Hellström  * This function should only be called while the object is locked or pinned,
6270ff37575SThomas Hellström  * otherwise the page backing may change under the caller.
6280ff37575SThomas Hellström  *
6290ff37575SThomas Hellström  * Return: True if page-backed, false otherwise.
6300ff37575SThomas Hellström  */
i915_gem_object_has_struct_page(const struct drm_i915_gem_object * obj)6310ff37575SThomas Hellström bool i915_gem_object_has_struct_page(const struct drm_i915_gem_object *obj)
6320ff37575SThomas Hellström {
6330ff37575SThomas Hellström #ifdef CONFIG_LOCKDEP
6340ff37575SThomas Hellström 	if (IS_DGFX(to_i915(obj->base.dev)) &&
6350ff37575SThomas Hellström 	    i915_gem_object_evictable((void __force *)obj))
6360ff37575SThomas Hellström 		assert_object_held_shared(obj);
6370ff37575SThomas Hellström #endif
6380ff37575SThomas Hellström 	return obj->mem_flags & I915_BO_FLAG_STRUCT_PAGE;
6390ff37575SThomas Hellström }
6400ff37575SThomas Hellström 
6410ff37575SThomas Hellström /**
6420ff37575SThomas Hellström  * i915_gem_object_has_iomem - Whether the object is iomem-backed
6430ff37575SThomas Hellström  * @obj: The object to query.
6440ff37575SThomas Hellström  *
6450ff37575SThomas Hellström  * This function should only be called while the object is locked or pinned,
6460ff37575SThomas Hellström  * otherwise the iomem backing may change under the caller.
6470ff37575SThomas Hellström  *
6480ff37575SThomas Hellström  * Return: True if iomem-backed, false otherwise.
6490ff37575SThomas Hellström  */
i915_gem_object_has_iomem(const struct drm_i915_gem_object * obj)6500ff37575SThomas Hellström bool i915_gem_object_has_iomem(const struct drm_i915_gem_object *obj)
6510ff37575SThomas Hellström {
6520ff37575SThomas Hellström #ifdef CONFIG_LOCKDEP
6530ff37575SThomas Hellström 	if (IS_DGFX(to_i915(obj->base.dev)) &&
6540ff37575SThomas Hellström 	    i915_gem_object_evictable((void __force *)obj))
6550ff37575SThomas Hellström 		assert_object_held_shared(obj);
6560ff37575SThomas Hellström #endif
6570ff37575SThomas Hellström 	return obj->mem_flags & I915_BO_FLAG_IOMEM;
6580ff37575SThomas Hellström }
6590ff37575SThomas Hellström 
660b6e913e1SThomas Hellström /**
661b6e913e1SThomas Hellström  * i915_gem_object_can_migrate - Whether an object likely can be migrated
662b6e913e1SThomas Hellström  *
663b6e913e1SThomas Hellström  * @obj: The object to migrate
664b6e913e1SThomas Hellström  * @id: The region intended to migrate to
665b6e913e1SThomas Hellström  *
666b6e913e1SThomas Hellström  * Check whether the object backend supports migration to the
667b6e913e1SThomas Hellström  * given region. Note that pinning may affect the ability to migrate as
668b6e913e1SThomas Hellström  * returned by this function.
669b6e913e1SThomas Hellström  *
670b6e913e1SThomas Hellström  * This function is primarily intended as a helper for checking the
671b6e913e1SThomas Hellström  * possibility to migrate objects and might be slightly less permissive
672b6e913e1SThomas Hellström  * than i915_gem_object_migrate() when it comes to objects with the
673b6e913e1SThomas Hellström  * I915_BO_ALLOC_USER flag set.
674b6e913e1SThomas Hellström  *
675b6e913e1SThomas Hellström  * Return: true if migration is possible, false otherwise.
676b6e913e1SThomas Hellström  */
i915_gem_object_can_migrate(struct drm_i915_gem_object * obj,enum intel_region_id id)677b6e913e1SThomas Hellström bool i915_gem_object_can_migrate(struct drm_i915_gem_object *obj,
678b6e913e1SThomas Hellström 				 enum intel_region_id id)
679b6e913e1SThomas Hellström {
680b6e913e1SThomas Hellström 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
681b6e913e1SThomas Hellström 	unsigned int num_allowed = obj->mm.n_placements;
682b6e913e1SThomas Hellström 	struct intel_memory_region *mr;
683b6e913e1SThomas Hellström 	unsigned int i;
684b6e913e1SThomas Hellström 
685b6e913e1SThomas Hellström 	GEM_BUG_ON(id >= INTEL_REGION_UNKNOWN);
686b6e913e1SThomas Hellström 	GEM_BUG_ON(obj->mm.madv != I915_MADV_WILLNEED);
687b6e913e1SThomas Hellström 
688b6e913e1SThomas Hellström 	mr = i915->mm.regions[id];
689b6e913e1SThomas Hellström 	if (!mr)
690b6e913e1SThomas Hellström 		return false;
691b6e913e1SThomas Hellström 
692a7ce8f82SMatthew Auld 	if (!IS_ALIGNED(obj->base.size, mr->min_page_size))
693a7ce8f82SMatthew Auld 		return false;
694a7ce8f82SMatthew Auld 
695b6e913e1SThomas Hellström 	if (obj->mm.region == mr)
696b6e913e1SThomas Hellström 		return true;
697b6e913e1SThomas Hellström 
698b6e913e1SThomas Hellström 	if (!i915_gem_object_evictable(obj))
699b6e913e1SThomas Hellström 		return false;
700b6e913e1SThomas Hellström 
701b6e913e1SThomas Hellström 	if (!obj->ops->migrate)
702b6e913e1SThomas Hellström 		return false;
703b6e913e1SThomas Hellström 
704b6e913e1SThomas Hellström 	if (!(obj->flags & I915_BO_ALLOC_USER))
705b6e913e1SThomas Hellström 		return true;
706b6e913e1SThomas Hellström 
707b6e913e1SThomas Hellström 	if (num_allowed == 0)
708b6e913e1SThomas Hellström 		return false;
709b6e913e1SThomas Hellström 
710b6e913e1SThomas Hellström 	for (i = 0; i < num_allowed; ++i) {
711b6e913e1SThomas Hellström 		if (mr == obj->mm.placements[i])
712b6e913e1SThomas Hellström 			return true;
713b6e913e1SThomas Hellström 	}
714b6e913e1SThomas Hellström 
715b6e913e1SThomas Hellström 	return false;
716b6e913e1SThomas Hellström }
717b6e913e1SThomas Hellström 
718b6e913e1SThomas Hellström /**
719b6e913e1SThomas Hellström  * i915_gem_object_migrate - Migrate an object to the desired region id
720b6e913e1SThomas Hellström  * @obj: The object to migrate.
721b6e913e1SThomas Hellström  * @ww: An optional struct i915_gem_ww_ctx. If NULL, the backend may
722b6e913e1SThomas Hellström  * not be successful in evicting other objects to make room for this object.
723b6e913e1SThomas Hellström  * @id: The region id to migrate to.
724b6e913e1SThomas Hellström  *
725b6e913e1SThomas Hellström  * Attempt to migrate the object to the desired memory region. The
726b6e913e1SThomas Hellström  * object backend must support migration and the object may not be
727b6e913e1SThomas Hellström  * pinned, (explicitly pinned pages or pinned vmas). The object must
728b6e913e1SThomas Hellström  * be locked.
729b6e913e1SThomas Hellström  * On successful completion, the object will have pages pointing to
730b6e913e1SThomas Hellström  * memory in the new region, but an async migration task may not have
731b6e913e1SThomas Hellström  * completed yet, and to accomplish that, i915_gem_object_wait_migration()
732b6e913e1SThomas Hellström  * must be called.
733b6e913e1SThomas Hellström  *
734b6e913e1SThomas Hellström  * Note: the @ww parameter is not used yet, but included to make sure
735b6e913e1SThomas Hellström  * callers put some effort into obtaining a valid ww ctx if one is
736b6e913e1SThomas Hellström  * available.
737b6e913e1SThomas Hellström  *
738b6e913e1SThomas Hellström  * Return: 0 on success. Negative error code on failure. In particular may
739b6e913e1SThomas Hellström  * return -ENXIO on lack of region space, -EDEADLK for deadlock avoidance
740b6e913e1SThomas Hellström  * if @ww is set, -EINTR or -ERESTARTSYS if signal pending, and
741b6e913e1SThomas Hellström  * -EBUSY if the object is pinned.
742b6e913e1SThomas Hellström  */
i915_gem_object_migrate(struct drm_i915_gem_object * obj,struct i915_gem_ww_ctx * ww,enum intel_region_id id)743b6e913e1SThomas Hellström int i915_gem_object_migrate(struct drm_i915_gem_object *obj,
744b6e913e1SThomas Hellström 			    struct i915_gem_ww_ctx *ww,
745b6e913e1SThomas Hellström 			    enum intel_region_id id)
746b6e913e1SThomas Hellström {
747695ddc93SMatthew Auld 	return __i915_gem_object_migrate(obj, ww, id, obj->flags);
748695ddc93SMatthew Auld }
749695ddc93SMatthew Auld 
750695ddc93SMatthew Auld /**
751695ddc93SMatthew Auld  * __i915_gem_object_migrate - Migrate an object to the desired region id, with
752695ddc93SMatthew Auld  * control of the extra flags
753695ddc93SMatthew Auld  * @obj: The object to migrate.
754695ddc93SMatthew Auld  * @ww: An optional struct i915_gem_ww_ctx. If NULL, the backend may
755695ddc93SMatthew Auld  * not be successful in evicting other objects to make room for this object.
756695ddc93SMatthew Auld  * @id: The region id to migrate to.
757695ddc93SMatthew Auld  * @flags: The object flags. Normally just obj->flags.
758695ddc93SMatthew Auld  *
759695ddc93SMatthew Auld  * Attempt to migrate the object to the desired memory region. The
760695ddc93SMatthew Auld  * object backend must support migration and the object may not be
761695ddc93SMatthew Auld  * pinned, (explicitly pinned pages or pinned vmas). The object must
762695ddc93SMatthew Auld  * be locked.
763695ddc93SMatthew Auld  * On successful completion, the object will have pages pointing to
764695ddc93SMatthew Auld  * memory in the new region, but an async migration task may not have
765695ddc93SMatthew Auld  * completed yet, and to accomplish that, i915_gem_object_wait_migration()
766695ddc93SMatthew Auld  * must be called.
767695ddc93SMatthew Auld  *
768695ddc93SMatthew Auld  * Note: the @ww parameter is not used yet, but included to make sure
769695ddc93SMatthew Auld  * callers put some effort into obtaining a valid ww ctx if one is
770695ddc93SMatthew Auld  * available.
771695ddc93SMatthew Auld  *
772695ddc93SMatthew Auld  * Return: 0 on success. Negative error code on failure. In particular may
773695ddc93SMatthew Auld  * return -ENXIO on lack of region space, -EDEADLK for deadlock avoidance
774695ddc93SMatthew Auld  * if @ww is set, -EINTR or -ERESTARTSYS if signal pending, and
775695ddc93SMatthew Auld  * -EBUSY if the object is pinned.
776695ddc93SMatthew Auld  */
__i915_gem_object_migrate(struct drm_i915_gem_object * obj,struct i915_gem_ww_ctx * ww,enum intel_region_id id,unsigned int flags)777695ddc93SMatthew Auld int __i915_gem_object_migrate(struct drm_i915_gem_object *obj,
778695ddc93SMatthew Auld 			      struct i915_gem_ww_ctx *ww,
779695ddc93SMatthew Auld 			      enum intel_region_id id,
780695ddc93SMatthew Auld 			      unsigned int flags)
781695ddc93SMatthew Auld {
782b6e913e1SThomas Hellström 	struct drm_i915_private *i915 = to_i915(obj->base.dev);
783b6e913e1SThomas Hellström 	struct intel_memory_region *mr;
784b6e913e1SThomas Hellström 
785b6e913e1SThomas Hellström 	GEM_BUG_ON(id >= INTEL_REGION_UNKNOWN);
786b6e913e1SThomas Hellström 	GEM_BUG_ON(obj->mm.madv != I915_MADV_WILLNEED);
787b6e913e1SThomas Hellström 	assert_object_held(obj);
788b6e913e1SThomas Hellström 
789b6e913e1SThomas Hellström 	mr = i915->mm.regions[id];
790b6e913e1SThomas Hellström 	GEM_BUG_ON(!mr);
791b6e913e1SThomas Hellström 
792f3170ba8SJason Ekstrand 	if (!i915_gem_object_can_migrate(obj, id))
793f3170ba8SJason Ekstrand 		return -EINVAL;
794b6e913e1SThomas Hellström 
79576b62448SJason Ekstrand 	if (!obj->ops->migrate) {
79676b62448SJason Ekstrand 		if (GEM_WARN_ON(obj->mm.region != mr))
79776b62448SJason Ekstrand 			return -EINVAL;
79876b62448SJason Ekstrand 		return 0;
79976b62448SJason Ekstrand 	}
80076b62448SJason Ekstrand 
801695ddc93SMatthew Auld 	return obj->ops->migrate(obj, mr, flags);
802b6e913e1SThomas Hellström }
803b6e913e1SThomas Hellström 
804b3f450d9SMatthew Auld /**
805b3f450d9SMatthew Auld  * i915_gem_object_placement_possible - Check whether the object can be
806b3f450d9SMatthew Auld  * placed at certain memory type
807b3f450d9SMatthew Auld  * @obj: Pointer to the object
808b3f450d9SMatthew Auld  * @type: The memory type to check
809b3f450d9SMatthew Auld  *
810b3f450d9SMatthew Auld  * Return: True if the object can be placed in @type. False otherwise.
811b3f450d9SMatthew Auld  */
i915_gem_object_placement_possible(struct drm_i915_gem_object * obj,enum intel_memory_type type)812b3f450d9SMatthew Auld bool i915_gem_object_placement_possible(struct drm_i915_gem_object *obj,
813b3f450d9SMatthew Auld 					enum intel_memory_type type)
814b3f450d9SMatthew Auld {
815b3f450d9SMatthew Auld 	unsigned int i;
816b3f450d9SMatthew Auld 
817b3f450d9SMatthew Auld 	if (!obj->mm.n_placements) {
818b3f450d9SMatthew Auld 		switch (type) {
819b3f450d9SMatthew Auld 		case INTEL_MEMORY_LOCAL:
820b3f450d9SMatthew Auld 			return i915_gem_object_has_iomem(obj);
821b3f450d9SMatthew Auld 		case INTEL_MEMORY_SYSTEM:
822b3f450d9SMatthew Auld 			return i915_gem_object_has_pages(obj);
823b3f450d9SMatthew Auld 		default:
824b3f450d9SMatthew Auld 			/* Ignore stolen for now */
825b3f450d9SMatthew Auld 			GEM_BUG_ON(1);
826b3f450d9SMatthew Auld 			return false;
827b3f450d9SMatthew Auld 		}
828b3f450d9SMatthew Auld 	}
829b3f450d9SMatthew Auld 
830b3f450d9SMatthew Auld 	for (i = 0; i < obj->mm.n_placements; i++) {
831b3f450d9SMatthew Auld 		if (obj->mm.placements[i]->type == type)
832b3f450d9SMatthew Auld 			return true;
833b3f450d9SMatthew Auld 	}
834b3f450d9SMatthew Auld 
835b3f450d9SMatthew Auld 	return false;
836b3f450d9SMatthew Auld }
837b3f450d9SMatthew Auld 
838efeb3cafSMatthew Auld /**
839efeb3cafSMatthew Auld  * i915_gem_object_needs_ccs_pages - Check whether the object requires extra
840efeb3cafSMatthew Auld  * pages when placed in system-memory, in order to save and later restore the
841efeb3cafSMatthew Auld  * flat-CCS aux state when the object is moved between local-memory and
842efeb3cafSMatthew Auld  * system-memory
843efeb3cafSMatthew Auld  * @obj: Pointer to the object
844efeb3cafSMatthew Auld  *
845efeb3cafSMatthew Auld  * Return: True if the object needs extra ccs pages. False otherwise.
846efeb3cafSMatthew Auld  */
i915_gem_object_needs_ccs_pages(struct drm_i915_gem_object * obj)847efeb3cafSMatthew Auld bool i915_gem_object_needs_ccs_pages(struct drm_i915_gem_object *obj)
848efeb3cafSMatthew Auld {
849efeb3cafSMatthew Auld 	bool lmem_placement = false;
850efeb3cafSMatthew Auld 	int i;
851efeb3cafSMatthew Auld 
852873fef88SMatthew Auld 	if (!HAS_FLAT_CCS(to_i915(obj->base.dev)))
853873fef88SMatthew Auld 		return false;
854873fef88SMatthew Auld 
85595df9cc2SMatthew Auld 	if (obj->flags & I915_BO_ALLOC_CCS_AUX)
85695df9cc2SMatthew Auld 		return true;
85795df9cc2SMatthew Auld 
858efeb3cafSMatthew Auld 	for (i = 0; i < obj->mm.n_placements; i++) {
859efeb3cafSMatthew Auld 		/* Compression is not allowed for the objects with smem placement */
860efeb3cafSMatthew Auld 		if (obj->mm.placements[i]->type == INTEL_MEMORY_SYSTEM)
861efeb3cafSMatthew Auld 			return false;
862efeb3cafSMatthew Auld 		if (!lmem_placement &&
863efeb3cafSMatthew Auld 		    obj->mm.placements[i]->type == INTEL_MEMORY_LOCAL)
864efeb3cafSMatthew Auld 			lmem_placement = true;
865efeb3cafSMatthew Auld 	}
866efeb3cafSMatthew Auld 
867efeb3cafSMatthew Auld 	return lmem_placement;
868efeb3cafSMatthew Auld }
869efeb3cafSMatthew Auld 
i915_gem_init__objects(struct drm_i915_private * i915)8708475355fSChris Wilson void i915_gem_init__objects(struct drm_i915_private *i915)
8718475355fSChris Wilson {
8727dd5c565SChris Wilson 	INIT_WORK(&i915->mm.free_work, __i915_gem_free_work);
8738475355fSChris Wilson }
8748475355fSChris Wilson 
i915_objects_module_exit(void)875c8ad09afSDaniel Vetter void i915_objects_module_exit(void)
87698932149SChris Wilson {
877c8ad09afSDaniel Vetter 	kmem_cache_destroy(slab_objects);
87898932149SChris Wilson }
87998932149SChris Wilson 
i915_objects_module_init(void)880c8ad09afSDaniel Vetter int __init i915_objects_module_init(void)
88198932149SChris Wilson {
882c8ad09afSDaniel Vetter 	slab_objects = KMEM_CACHE(drm_i915_gem_object, SLAB_HWCACHE_ALIGN);
883c8ad09afSDaniel Vetter 	if (!slab_objects)
88498932149SChris Wilson 		return -ENOMEM;
88598932149SChris Wilson 
88698932149SChris Wilson 	return 0;
88798932149SChris Wilson }
88810be98a7SChris Wilson 
88910012620SThomas Zimmermann static const struct drm_gem_object_funcs i915_gem_object_funcs = {
89010012620SThomas Zimmermann 	.free = i915_gem_free_object,
89110012620SThomas Zimmermann 	.close = i915_gem_close_object,
89210012620SThomas Zimmermann 	.export = i915_gem_prime_export,
89310012620SThomas Zimmermann };
89410012620SThomas Zimmermann 
895f6c466b8SMaarten Lankhorst /**
896f6c466b8SMaarten Lankhorst  * i915_gem_object_get_moving_fence - Get the object's moving fence if any
897f6c466b8SMaarten Lankhorst  * @obj: The object whose moving fence to get.
8981d7f5e6cSChristian König  * @fence: The resulting fence
899f6c466b8SMaarten Lankhorst  *
900f6c466b8SMaarten Lankhorst  * A non-signaled moving fence means that there is an async operation
901f6c466b8SMaarten Lankhorst  * pending on the object that needs to be waited on before setting up
902f6c466b8SMaarten Lankhorst  * any GPU- or CPU PTEs to the object's pages.
903f6c466b8SMaarten Lankhorst  *
9041d7f5e6cSChristian König  * Return: Negative error code or 0 for success.
905f6c466b8SMaarten Lankhorst  */
i915_gem_object_get_moving_fence(struct drm_i915_gem_object * obj,struct dma_fence ** fence)9061d7f5e6cSChristian König int i915_gem_object_get_moving_fence(struct drm_i915_gem_object *obj,
9071d7f5e6cSChristian König 				     struct dma_fence **fence)
908f6c466b8SMaarten Lankhorst {
9091d7f5e6cSChristian König 	return dma_resv_get_singleton(obj->base.resv, DMA_RESV_USAGE_KERNEL,
9101d7f5e6cSChristian König 				      fence);
911950505caSThomas Hellström }
912950505caSThomas Hellström 
913f6c466b8SMaarten Lankhorst /**
914f6c466b8SMaarten Lankhorst  * i915_gem_object_wait_moving_fence - Wait for the object's moving fence if any
915f6c466b8SMaarten Lankhorst  * @obj: The object whose moving fence to wait for.
916f6c466b8SMaarten Lankhorst  * @intr: Whether to wait interruptible.
917f6c466b8SMaarten Lankhorst  *
918f6c466b8SMaarten Lankhorst  * If the moving fence signaled without an error, it is detached from the
919f6c466b8SMaarten Lankhorst  * object and put.
920f6c466b8SMaarten Lankhorst  *
921f6c466b8SMaarten Lankhorst  * Return: 0 if successful, -ERESTARTSYS if the wait was interrupted,
922f6c466b8SMaarten Lankhorst  * negative error code if the async operation represented by the
923f6c466b8SMaarten Lankhorst  * moving fence failed.
924f6c466b8SMaarten Lankhorst  */
i915_gem_object_wait_moving_fence(struct drm_i915_gem_object * obj,bool intr)925f6c466b8SMaarten Lankhorst int i915_gem_object_wait_moving_fence(struct drm_i915_gem_object *obj,
926f6c466b8SMaarten Lankhorst 				      bool intr)
927f6c466b8SMaarten Lankhorst {
9289362a07aSMatthew Auld 	long ret;
929f6c466b8SMaarten Lankhorst 
930f6c466b8SMaarten Lankhorst 	assert_object_held(obj);
931f6c466b8SMaarten Lankhorst 
9329362a07aSMatthew Auld 	ret = dma_resv_wait_timeout(obj->base. resv, DMA_RESV_USAGE_KERNEL,
9331d7f5e6cSChristian König 				    intr, MAX_SCHEDULE_TIMEOUT);
9349362a07aSMatthew Auld 	if (!ret)
9359362a07aSMatthew Auld 		ret = -ETIME;
936bfe53be2SMatthew Auld 	else if (ret > 0 && i915_gem_object_has_unknown_state(obj))
937bfe53be2SMatthew Auld 		ret = -EIO;
938f6c466b8SMaarten Lankhorst 
9399362a07aSMatthew Auld 	return ret < 0 ? ret : 0;
940f6c466b8SMaarten Lankhorst }
941f6c466b8SMaarten Lankhorst 
94281d4baafSLee Jones /*
943bfe53be2SMatthew Auld  * i915_gem_object_has_unknown_state - Return true if the object backing pages are
944bfe53be2SMatthew Auld  * in an unknown_state. This means that userspace must NEVER be allowed to touch
945bfe53be2SMatthew Auld  * the pages, with either the GPU or CPU.
946bfe53be2SMatthew Auld  *
947bfe53be2SMatthew Auld  * ONLY valid to be called after ensuring that all kernel fences have signalled
948bfe53be2SMatthew Auld  * (in particular the fence for moving/clearing the object).
949bfe53be2SMatthew Auld  */
i915_gem_object_has_unknown_state(struct drm_i915_gem_object * obj)950bfe53be2SMatthew Auld bool i915_gem_object_has_unknown_state(struct drm_i915_gem_object *obj)
951bfe53be2SMatthew Auld {
952bfe53be2SMatthew Auld 	/*
953bfe53be2SMatthew Auld 	 * The below barrier pairs with the dma_fence_signal() in
954bfe53be2SMatthew Auld 	 * __memcpy_work(). We should only sample the unknown_state after all
955bfe53be2SMatthew Auld 	 * the kernel fences have signalled.
956bfe53be2SMatthew Auld 	 */
957bfe53be2SMatthew Auld 	smp_rmb();
958bfe53be2SMatthew Auld 	return obj->mm.unknown_state;
959bfe53be2SMatthew Auld }
960bfe53be2SMatthew Auld 
96110be98a7SChris Wilson #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
96210be98a7SChris Wilson #include "selftests/huge_gem_object.c"
96310be98a7SChris Wilson #include "selftests/huge_pages.c"
964bf74a18cSMatthew Auld #include "selftests/i915_gem_migrate.c"
96510be98a7SChris Wilson #include "selftests/i915_gem_object.c"
96610be98a7SChris Wilson #include "selftests/i915_gem_coherency.c"
96710be98a7SChris Wilson #endif
968