xref: /openbmc/linux/drivers/gpu/drm/i915/gt/intel_gtt.c (revision 06ba8020)
1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright © 2020 Intel Corporation
4  */
5 
6 #include <linux/slab.h> /* fault-inject.h is not standalone! */
7 
8 #include <linux/fault-inject.h>
9 #include <linux/sched/mm.h>
10 
11 #include <drm/drm_cache.h>
12 
13 #include "gem/i915_gem_internal.h"
14 #include "gem/i915_gem_lmem.h"
15 #include "i915_reg.h"
16 #include "i915_trace.h"
17 #include "i915_utils.h"
18 #include "intel_gt.h"
19 #include "intel_gt_mcr.h"
20 #include "intel_gt_print.h"
21 #include "intel_gt_regs.h"
22 #include "intel_gtt.h"
23 
24 
25 static bool intel_ggtt_update_needs_vtd_wa(struct drm_i915_private *i915)
26 {
27 	return IS_BROXTON(i915) && i915_vtd_active(i915);
28 }
29 
30 bool intel_vm_no_concurrent_access_wa(struct drm_i915_private *i915)
31 {
32 	return IS_CHERRYVIEW(i915) || intel_ggtt_update_needs_vtd_wa(i915);
33 }
34 
35 struct drm_i915_gem_object *alloc_pt_lmem(struct i915_address_space *vm, int sz)
36 {
37 	struct drm_i915_gem_object *obj;
38 
39 	/*
40 	 * To avoid severe over-allocation when dealing with min_page_size
41 	 * restrictions, we override that behaviour here by allowing an object
42 	 * size and page layout which can be smaller. In practice this should be
43 	 * totally fine, since GTT paging structures are not typically inserted
44 	 * into the GTT.
45 	 *
46 	 * Note that we also hit this path for the scratch page, and for this
47 	 * case it might need to be 64K, but that should work fine here since we
48 	 * used the passed in size for the page size, which should ensure it
49 	 * also has the same alignment.
50 	 */
51 	obj = __i915_gem_object_create_lmem_with_ps(vm->i915, sz, sz,
52 						    vm->lmem_pt_obj_flags);
53 	/*
54 	 * Ensure all paging structures for this vm share the same dma-resv
55 	 * object underneath, with the idea that one object_lock() will lock
56 	 * them all at once.
57 	 */
58 	if (!IS_ERR(obj)) {
59 		obj->base.resv = i915_vm_resv_get(vm);
60 		obj->shares_resv_from = vm;
61 	}
62 
63 	return obj;
64 }
65 
66 struct drm_i915_gem_object *alloc_pt_dma(struct i915_address_space *vm, int sz)
67 {
68 	struct drm_i915_gem_object *obj;
69 
70 	if (I915_SELFTEST_ONLY(should_fail(&vm->fault_attr, 1)))
71 		i915_gem_shrink_all(vm->i915);
72 
73 	obj = i915_gem_object_create_internal(vm->i915, sz);
74 	/*
75 	 * Ensure all paging structures for this vm share the same dma-resv
76 	 * object underneath, with the idea that one object_lock() will lock
77 	 * them all at once.
78 	 */
79 	if (!IS_ERR(obj)) {
80 		obj->base.resv = i915_vm_resv_get(vm);
81 		obj->shares_resv_from = vm;
82 	}
83 
84 	return obj;
85 }
86 
87 int map_pt_dma(struct i915_address_space *vm, struct drm_i915_gem_object *obj)
88 {
89 	enum i915_map_type type;
90 	void *vaddr;
91 
92 	type = i915_coherent_map_type(vm->i915, obj, true);
93 	vaddr = i915_gem_object_pin_map_unlocked(obj, type);
94 	if (IS_ERR(vaddr))
95 		return PTR_ERR(vaddr);
96 
97 	i915_gem_object_make_unshrinkable(obj);
98 	return 0;
99 }
100 
101 int map_pt_dma_locked(struct i915_address_space *vm, struct drm_i915_gem_object *obj)
102 {
103 	enum i915_map_type type;
104 	void *vaddr;
105 
106 	type = i915_coherent_map_type(vm->i915, obj, true);
107 	vaddr = i915_gem_object_pin_map(obj, type);
108 	if (IS_ERR(vaddr))
109 		return PTR_ERR(vaddr);
110 
111 	i915_gem_object_make_unshrinkable(obj);
112 	return 0;
113 }
114 
115 static void clear_vm_list(struct list_head *list)
116 {
117 	struct i915_vma *vma, *vn;
118 
119 	list_for_each_entry_safe(vma, vn, list, vm_link) {
120 		struct drm_i915_gem_object *obj = vma->obj;
121 
122 		if (!i915_gem_object_get_rcu(obj)) {
123 			/*
124 			 * Object is dying, but has not yet cleared its
125 			 * vma list.
126 			 * Unbind the dying vma to ensure our list
127 			 * is completely drained. We leave the destruction to
128 			 * the object destructor to avoid the vma
129 			 * disappearing under it.
130 			 */
131 			atomic_and(~I915_VMA_PIN_MASK, &vma->flags);
132 			WARN_ON(__i915_vma_unbind(vma));
133 
134 			/* Remove from the unbound list */
135 			list_del_init(&vma->vm_link);
136 
137 			/*
138 			 * Delay the vm and vm mutex freeing until the
139 			 * object is done with destruction.
140 			 */
141 			i915_vm_resv_get(vma->vm);
142 			vma->vm_ddestroy = true;
143 		} else {
144 			i915_vma_destroy_locked(vma);
145 			i915_gem_object_put(obj);
146 		}
147 
148 	}
149 }
150 
151 static void __i915_vm_close(struct i915_address_space *vm)
152 {
153 	mutex_lock(&vm->mutex);
154 
155 	clear_vm_list(&vm->bound_list);
156 	clear_vm_list(&vm->unbound_list);
157 
158 	/* Check for must-fix unanticipated side-effects */
159 	GEM_BUG_ON(!list_empty(&vm->bound_list));
160 	GEM_BUG_ON(!list_empty(&vm->unbound_list));
161 
162 	mutex_unlock(&vm->mutex);
163 }
164 
165 /* lock the vm into the current ww, if we lock one, we lock all */
166 int i915_vm_lock_objects(struct i915_address_space *vm,
167 			 struct i915_gem_ww_ctx *ww)
168 {
169 	if (vm->scratch[0]->base.resv == &vm->_resv) {
170 		return i915_gem_object_lock(vm->scratch[0], ww);
171 	} else {
172 		struct i915_ppgtt *ppgtt = i915_vm_to_ppgtt(vm);
173 
174 		/* We borrowed the scratch page from ggtt, take the top level object */
175 		return i915_gem_object_lock(ppgtt->pd->pt.base, ww);
176 	}
177 }
178 
179 void i915_address_space_fini(struct i915_address_space *vm)
180 {
181 	drm_mm_takedown(&vm->mm);
182 }
183 
184 /**
185  * i915_vm_resv_release - Final struct i915_address_space destructor
186  * @kref: Pointer to the &i915_address_space.resv_ref member.
187  *
188  * This function is called when the last lock sharer no longer shares the
189  * &i915_address_space._resv lock, and also if we raced when
190  * destroying a vma by the vma destruction
191  */
192 void i915_vm_resv_release(struct kref *kref)
193 {
194 	struct i915_address_space *vm =
195 		container_of(kref, typeof(*vm), resv_ref);
196 
197 	dma_resv_fini(&vm->_resv);
198 	mutex_destroy(&vm->mutex);
199 
200 	kfree(vm);
201 }
202 
203 static void __i915_vm_release(struct work_struct *work)
204 {
205 	struct i915_address_space *vm =
206 		container_of(work, struct i915_address_space, release_work);
207 
208 	__i915_vm_close(vm);
209 
210 	/* Synchronize async unbinds. */
211 	i915_vma_resource_bind_dep_sync_all(vm);
212 
213 	vm->cleanup(vm);
214 	i915_address_space_fini(vm);
215 
216 	i915_vm_resv_put(vm);
217 }
218 
219 void i915_vm_release(struct kref *kref)
220 {
221 	struct i915_address_space *vm =
222 		container_of(kref, struct i915_address_space, ref);
223 
224 	GEM_BUG_ON(i915_is_ggtt(vm));
225 	trace_i915_ppgtt_release(vm);
226 
227 	queue_work(vm->i915->wq, &vm->release_work);
228 }
229 
230 void i915_address_space_init(struct i915_address_space *vm, int subclass)
231 {
232 	kref_init(&vm->ref);
233 
234 	/*
235 	 * Special case for GGTT that has already done an early
236 	 * kref_init here.
237 	 */
238 	if (!kref_read(&vm->resv_ref))
239 		kref_init(&vm->resv_ref);
240 
241 	vm->pending_unbind = RB_ROOT_CACHED;
242 	INIT_WORK(&vm->release_work, __i915_vm_release);
243 
244 	/*
245 	 * The vm->mutex must be reclaim safe (for use in the shrinker).
246 	 * Do a dummy acquire now under fs_reclaim so that any allocation
247 	 * attempt holding the lock is immediately reported by lockdep.
248 	 */
249 	mutex_init(&vm->mutex);
250 	lockdep_set_subclass(&vm->mutex, subclass);
251 
252 	if (!intel_vm_no_concurrent_access_wa(vm->i915)) {
253 		i915_gem_shrinker_taints_mutex(vm->i915, &vm->mutex);
254 	} else {
255 		/*
256 		 * CHV + BXT VTD workaround use stop_machine(),
257 		 * which is allowed to allocate memory. This means &vm->mutex
258 		 * is the outer lock, and in theory we can allocate memory inside
259 		 * it through stop_machine().
260 		 *
261 		 * Add the annotation for this, we use trylock in shrinker.
262 		 */
263 		mutex_acquire(&vm->mutex.dep_map, 0, 0, _THIS_IP_);
264 		might_alloc(GFP_KERNEL);
265 		mutex_release(&vm->mutex.dep_map, _THIS_IP_);
266 	}
267 	dma_resv_init(&vm->_resv);
268 
269 	GEM_BUG_ON(!vm->total);
270 	drm_mm_init(&vm->mm, 0, vm->total);
271 
272 	memset64(vm->min_alignment, I915_GTT_MIN_ALIGNMENT,
273 		 ARRAY_SIZE(vm->min_alignment));
274 
275 	if (HAS_64K_PAGES(vm->i915)) {
276 		vm->min_alignment[INTEL_MEMORY_LOCAL] = I915_GTT_PAGE_SIZE_64K;
277 		vm->min_alignment[INTEL_MEMORY_STOLEN_LOCAL] = I915_GTT_PAGE_SIZE_64K;
278 	}
279 
280 	vm->mm.head_node.color = I915_COLOR_UNEVICTABLE;
281 
282 	INIT_LIST_HEAD(&vm->bound_list);
283 	INIT_LIST_HEAD(&vm->unbound_list);
284 }
285 
286 void *__px_vaddr(struct drm_i915_gem_object *p)
287 {
288 	enum i915_map_type type;
289 
290 	GEM_BUG_ON(!i915_gem_object_has_pages(p));
291 	return page_unpack_bits(p->mm.mapping, &type);
292 }
293 
294 dma_addr_t __px_dma(struct drm_i915_gem_object *p)
295 {
296 	GEM_BUG_ON(!i915_gem_object_has_pages(p));
297 	return sg_dma_address(p->mm.pages->sgl);
298 }
299 
300 struct page *__px_page(struct drm_i915_gem_object *p)
301 {
302 	GEM_BUG_ON(!i915_gem_object_has_pages(p));
303 	return sg_page(p->mm.pages->sgl);
304 }
305 
306 void
307 fill_page_dma(struct drm_i915_gem_object *p, const u64 val, unsigned int count)
308 {
309 	void *vaddr = __px_vaddr(p);
310 
311 	memset64(vaddr, val, count);
312 	drm_clflush_virt_range(vaddr, PAGE_SIZE);
313 }
314 
315 static void poison_scratch_page(struct drm_i915_gem_object *scratch)
316 {
317 	void *vaddr = __px_vaddr(scratch);
318 	u8 val;
319 
320 	val = 0;
321 	if (IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM))
322 		val = POISON_FREE;
323 
324 	memset(vaddr, val, scratch->base.size);
325 	drm_clflush_virt_range(vaddr, scratch->base.size);
326 }
327 
328 int setup_scratch_page(struct i915_address_space *vm)
329 {
330 	unsigned long size;
331 
332 	/*
333 	 * In order to utilize 64K pages for an object with a size < 2M, we will
334 	 * need to support a 64K scratch page, given that every 16th entry for a
335 	 * page-table operating in 64K mode must point to a properly aligned 64K
336 	 * region, including any PTEs which happen to point to scratch.
337 	 *
338 	 * This is only relevant for the 48b PPGTT where we support
339 	 * huge-gtt-pages, see also i915_vma_insert(). However, as we share the
340 	 * scratch (read-only) between all vm, we create one 64k scratch page
341 	 * for all.
342 	 */
343 	size = I915_GTT_PAGE_SIZE_4K;
344 	if (i915_vm_is_4lvl(vm) &&
345 	    HAS_PAGE_SIZES(vm->i915, I915_GTT_PAGE_SIZE_64K) &&
346 	    !HAS_64K_PAGES(vm->i915))
347 		size = I915_GTT_PAGE_SIZE_64K;
348 
349 	do {
350 		struct drm_i915_gem_object *obj;
351 
352 		obj = vm->alloc_scratch_dma(vm, size);
353 		if (IS_ERR(obj))
354 			goto skip;
355 
356 		if (map_pt_dma(vm, obj))
357 			goto skip_obj;
358 
359 		/* We need a single contiguous page for our scratch */
360 		if (obj->mm.page_sizes.sg < size)
361 			goto skip_obj;
362 
363 		/* And it needs to be correspondingly aligned */
364 		if (__px_dma(obj) & (size - 1))
365 			goto skip_obj;
366 
367 		/*
368 		 * Use a non-zero scratch page for debugging.
369 		 *
370 		 * We want a value that should be reasonably obvious
371 		 * to spot in the error state, while also causing a GPU hang
372 		 * if executed. We prefer using a clear page in production, so
373 		 * should it ever be accidentally used, the effect should be
374 		 * fairly benign.
375 		 */
376 		poison_scratch_page(obj);
377 
378 		vm->scratch[0] = obj;
379 		vm->scratch_order = get_order(size);
380 		return 0;
381 
382 skip_obj:
383 		i915_gem_object_put(obj);
384 skip:
385 		if (size == I915_GTT_PAGE_SIZE_4K)
386 			return -ENOMEM;
387 
388 		size = I915_GTT_PAGE_SIZE_4K;
389 	} while (1);
390 }
391 
392 void free_scratch(struct i915_address_space *vm)
393 {
394 	int i;
395 
396 	if (!vm->scratch[0])
397 		return;
398 
399 	for (i = 0; i <= vm->top; i++)
400 		i915_gem_object_put(vm->scratch[i]);
401 }
402 
403 void gtt_write_workarounds(struct intel_gt *gt)
404 {
405 	struct drm_i915_private *i915 = gt->i915;
406 	struct intel_uncore *uncore = gt->uncore;
407 
408 	/*
409 	 * This function is for gtt related workarounds. This function is
410 	 * called on driver load and after a GPU reset, so you can place
411 	 * workarounds here even if they get overwritten by GPU reset.
412 	 */
413 	/* WaIncreaseDefaultTLBEntries:chv,bdw,skl,bxt,kbl,glk,cfl,cnl,icl */
414 	if (IS_BROADWELL(i915))
415 		intel_uncore_write(uncore,
416 				   GEN8_L3_LRA_1_GPGPU,
417 				   GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_BDW);
418 	else if (IS_CHERRYVIEW(i915))
419 		intel_uncore_write(uncore,
420 				   GEN8_L3_LRA_1_GPGPU,
421 				   GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_CHV);
422 	else if (IS_GEN9_LP(i915))
423 		intel_uncore_write(uncore,
424 				   GEN8_L3_LRA_1_GPGPU,
425 				   GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_BXT);
426 	else if (GRAPHICS_VER(i915) >= 9 && GRAPHICS_VER(i915) <= 11)
427 		intel_uncore_write(uncore,
428 				   GEN8_L3_LRA_1_GPGPU,
429 				   GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_SKL);
430 
431 	/*
432 	 * To support 64K PTEs we need to first enable the use of the
433 	 * Intermediate-Page-Size(IPS) bit of the PDE field via some magical
434 	 * mmio, otherwise the page-walker will simply ignore the IPS bit. This
435 	 * shouldn't be needed after GEN10.
436 	 *
437 	 * 64K pages were first introduced from BDW+, although technically they
438 	 * only *work* from gen9+. For pre-BDW we instead have the option for
439 	 * 32K pages, but we don't currently have any support for it in our
440 	 * driver.
441 	 */
442 	if (HAS_PAGE_SIZES(i915, I915_GTT_PAGE_SIZE_64K) &&
443 	    GRAPHICS_VER(i915) <= 10)
444 		intel_uncore_rmw(uncore,
445 				 GEN8_GAMW_ECO_DEV_RW_IA,
446 				 0,
447 				 GAMW_ECO_ENABLE_64K_IPS_FIELD);
448 
449 	if (IS_GRAPHICS_VER(i915, 8, 11)) {
450 		bool can_use_gtt_cache = true;
451 
452 		/*
453 		 * According to the BSpec if we use 2M/1G pages then we also
454 		 * need to disable the GTT cache. At least on BDW we can see
455 		 * visual corruption when using 2M pages, and not disabling the
456 		 * GTT cache.
457 		 */
458 		if (HAS_PAGE_SIZES(i915, I915_GTT_PAGE_SIZE_2M))
459 			can_use_gtt_cache = false;
460 
461 		/* WaGttCachingOffByDefault */
462 		intel_uncore_write(uncore,
463 				   HSW_GTT_CACHE_EN,
464 				   can_use_gtt_cache ? GTT_CACHE_EN_ALL : 0);
465 		gt_WARN_ON_ONCE(gt, can_use_gtt_cache &&
466 				intel_uncore_read(uncore,
467 						  HSW_GTT_CACHE_EN) == 0);
468 	}
469 }
470 
471 static void tgl_setup_private_ppat(struct intel_uncore *uncore)
472 {
473 	/* TGL doesn't support LLC or AGE settings */
474 	intel_uncore_write(uncore, GEN12_PAT_INDEX(0), GEN8_PPAT_WB);
475 	intel_uncore_write(uncore, GEN12_PAT_INDEX(1), GEN8_PPAT_WC);
476 	intel_uncore_write(uncore, GEN12_PAT_INDEX(2), GEN8_PPAT_WT);
477 	intel_uncore_write(uncore, GEN12_PAT_INDEX(3), GEN8_PPAT_UC);
478 	intel_uncore_write(uncore, GEN12_PAT_INDEX(4), GEN8_PPAT_WB);
479 	intel_uncore_write(uncore, GEN12_PAT_INDEX(5), GEN8_PPAT_WB);
480 	intel_uncore_write(uncore, GEN12_PAT_INDEX(6), GEN8_PPAT_WB);
481 	intel_uncore_write(uncore, GEN12_PAT_INDEX(7), GEN8_PPAT_WB);
482 }
483 
484 static void xehp_setup_private_ppat(struct intel_gt *gt)
485 {
486 	enum forcewake_domains fw;
487 	unsigned long flags;
488 
489 	fw = intel_uncore_forcewake_for_reg(gt->uncore, _MMIO(XEHP_PAT_INDEX(0).reg),
490 					    FW_REG_WRITE);
491 	intel_uncore_forcewake_get(gt->uncore, fw);
492 
493 	intel_gt_mcr_lock(gt, &flags);
494 	intel_gt_mcr_multicast_write_fw(gt, XEHP_PAT_INDEX(0), GEN8_PPAT_WB);
495 	intel_gt_mcr_multicast_write_fw(gt, XEHP_PAT_INDEX(1), GEN8_PPAT_WC);
496 	intel_gt_mcr_multicast_write_fw(gt, XEHP_PAT_INDEX(2), GEN8_PPAT_WT);
497 	intel_gt_mcr_multicast_write_fw(gt, XEHP_PAT_INDEX(3), GEN8_PPAT_UC);
498 	intel_gt_mcr_multicast_write_fw(gt, XEHP_PAT_INDEX(4), GEN8_PPAT_WB);
499 	intel_gt_mcr_multicast_write_fw(gt, XEHP_PAT_INDEX(5), GEN8_PPAT_WB);
500 	intel_gt_mcr_multicast_write_fw(gt, XEHP_PAT_INDEX(6), GEN8_PPAT_WB);
501 	intel_gt_mcr_multicast_write_fw(gt, XEHP_PAT_INDEX(7), GEN8_PPAT_WB);
502 	intel_gt_mcr_unlock(gt, flags);
503 
504 	intel_uncore_forcewake_put(gt->uncore, fw);
505 }
506 
507 static void icl_setup_private_ppat(struct intel_uncore *uncore)
508 {
509 	intel_uncore_write(uncore,
510 			   GEN10_PAT_INDEX(0),
511 			   GEN8_PPAT_WB | GEN8_PPAT_LLC);
512 	intel_uncore_write(uncore,
513 			   GEN10_PAT_INDEX(1),
514 			   GEN8_PPAT_WC | GEN8_PPAT_LLCELLC);
515 	intel_uncore_write(uncore,
516 			   GEN10_PAT_INDEX(2),
517 			   GEN8_PPAT_WB | GEN8_PPAT_ELLC_OVERRIDE);
518 	intel_uncore_write(uncore,
519 			   GEN10_PAT_INDEX(3),
520 			   GEN8_PPAT_UC);
521 	intel_uncore_write(uncore,
522 			   GEN10_PAT_INDEX(4),
523 			   GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0));
524 	intel_uncore_write(uncore,
525 			   GEN10_PAT_INDEX(5),
526 			   GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1));
527 	intel_uncore_write(uncore,
528 			   GEN10_PAT_INDEX(6),
529 			   GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2));
530 	intel_uncore_write(uncore,
531 			   GEN10_PAT_INDEX(7),
532 			   GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
533 }
534 
535 /*
536  * The GGTT and PPGTT need a private PPAT setup in order to handle cacheability
537  * bits. When using advanced contexts each context stores its own PAT, but
538  * writing this data shouldn't be harmful even in those cases.
539  */
540 static void bdw_setup_private_ppat(struct intel_uncore *uncore)
541 {
542 	struct drm_i915_private *i915 = uncore->i915;
543 	u64 pat;
544 
545 	pat = GEN8_PPAT(0, GEN8_PPAT_WB | GEN8_PPAT_LLC) |	/* for normal objects, no eLLC */
546 	      GEN8_PPAT(1, GEN8_PPAT_WC | GEN8_PPAT_LLCELLC) |	/* for something pointing to ptes? */
547 	      GEN8_PPAT(3, GEN8_PPAT_UC) |			/* Uncached objects, mostly for scanout */
548 	      GEN8_PPAT(4, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(0)) |
549 	      GEN8_PPAT(5, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(1)) |
550 	      GEN8_PPAT(6, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(2)) |
551 	      GEN8_PPAT(7, GEN8_PPAT_WB | GEN8_PPAT_LLCELLC | GEN8_PPAT_AGE(3));
552 
553 	/* for scanout with eLLC */
554 	if (GRAPHICS_VER(i915) >= 9)
555 		pat |= GEN8_PPAT(2, GEN8_PPAT_WB | GEN8_PPAT_ELLC_OVERRIDE);
556 	else
557 		pat |= GEN8_PPAT(2, GEN8_PPAT_WT | GEN8_PPAT_LLCELLC);
558 
559 	intel_uncore_write(uncore, GEN8_PRIVATE_PAT_LO, lower_32_bits(pat));
560 	intel_uncore_write(uncore, GEN8_PRIVATE_PAT_HI, upper_32_bits(pat));
561 }
562 
563 static void chv_setup_private_ppat(struct intel_uncore *uncore)
564 {
565 	u64 pat;
566 
567 	/*
568 	 * Map WB on BDW to snooped on CHV.
569 	 *
570 	 * Only the snoop bit has meaning for CHV, the rest is
571 	 * ignored.
572 	 *
573 	 * The hardware will never snoop for certain types of accesses:
574 	 * - CPU GTT (GMADR->GGTT->no snoop->memory)
575 	 * - PPGTT page tables
576 	 * - some other special cycles
577 	 *
578 	 * As with BDW, we also need to consider the following for GT accesses:
579 	 * "For GGTT, there is NO pat_sel[2:0] from the entry,
580 	 * so RTL will always use the value corresponding to
581 	 * pat_sel = 000".
582 	 * Which means we must set the snoop bit in PAT entry 0
583 	 * in order to keep the global status page working.
584 	 */
585 
586 	pat = GEN8_PPAT(0, CHV_PPAT_SNOOP) |
587 	      GEN8_PPAT(1, 0) |
588 	      GEN8_PPAT(2, 0) |
589 	      GEN8_PPAT(3, 0) |
590 	      GEN8_PPAT(4, CHV_PPAT_SNOOP) |
591 	      GEN8_PPAT(5, CHV_PPAT_SNOOP) |
592 	      GEN8_PPAT(6, CHV_PPAT_SNOOP) |
593 	      GEN8_PPAT(7, CHV_PPAT_SNOOP);
594 
595 	intel_uncore_write(uncore, GEN8_PRIVATE_PAT_LO, lower_32_bits(pat));
596 	intel_uncore_write(uncore, GEN8_PRIVATE_PAT_HI, upper_32_bits(pat));
597 }
598 
599 void setup_private_pat(struct intel_gt *gt)
600 {
601 	struct intel_uncore *uncore = gt->uncore;
602 	struct drm_i915_private *i915 = gt->i915;
603 
604 	GEM_BUG_ON(GRAPHICS_VER(i915) < 8);
605 
606 	if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 50))
607 		xehp_setup_private_ppat(gt);
608 	else if (GRAPHICS_VER(i915) >= 12)
609 		tgl_setup_private_ppat(uncore);
610 	else if (GRAPHICS_VER(i915) >= 11)
611 		icl_setup_private_ppat(uncore);
612 	else if (IS_CHERRYVIEW(i915) || IS_GEN9_LP(i915))
613 		chv_setup_private_ppat(uncore);
614 	else
615 		bdw_setup_private_ppat(uncore);
616 }
617 
618 struct i915_vma *
619 __vm_create_scratch_for_read(struct i915_address_space *vm, unsigned long size)
620 {
621 	struct drm_i915_gem_object *obj;
622 	struct i915_vma *vma;
623 
624 	obj = i915_gem_object_create_internal(vm->i915, PAGE_ALIGN(size));
625 	if (IS_ERR(obj))
626 		return ERR_CAST(obj);
627 
628 	i915_gem_object_set_cache_coherency(obj, I915_CACHING_CACHED);
629 
630 	vma = i915_vma_instance(obj, vm, NULL);
631 	if (IS_ERR(vma)) {
632 		i915_gem_object_put(obj);
633 		return vma;
634 	}
635 
636 	return vma;
637 }
638 
639 struct i915_vma *
640 __vm_create_scratch_for_read_pinned(struct i915_address_space *vm, unsigned long size)
641 {
642 	struct i915_vma *vma;
643 	int err;
644 
645 	vma = __vm_create_scratch_for_read(vm, size);
646 	if (IS_ERR(vma))
647 		return vma;
648 
649 	err = i915_vma_pin(vma, 0, 0,
650 			   i915_vma_is_ggtt(vma) ? PIN_GLOBAL : PIN_USER);
651 	if (err) {
652 		i915_vma_put(vma);
653 		return ERR_PTR(err);
654 	}
655 
656 	return vma;
657 }
658 
659 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
660 #include "selftests/mock_gtt.c"
661 #endif
662