1 // SPDX-License-Identifier: MIT
3 * Copyright © 2021 Intel Corporation
6 #include "gem/i915_gem_domain.h"
7 #include "gem/i915_gem_internal.h"
8 #include "gem/i915_gem_lmem.h"
9 #include "gt/gen8_ppgtt.h"
12 #include "intel_display_types.h"
13 #include "intel_dpt.h"
17 struct i915_address_space vm;
19 struct drm_i915_gem_object *obj;
24 #define i915_is_dpt(vm) ((vm)->is_dpt)
26 static inline struct i915_dpt *
27 i915_vm_to_dpt(struct i915_address_space *vm)
29 BUILD_BUG_ON(offsetof(struct i915_dpt, vm));
30 drm_WARN_ON(&vm->i915->drm, !i915_is_dpt(vm));
31 return container_of(vm, struct i915_dpt, vm);
34 #define dpt_total_entries(dpt) ((dpt)->vm.total >> PAGE_SHIFT)
36 static void gen8_set_pte(void __iomem *addr, gen8_pte_t pte)
41 static void dpt_insert_page(struct i915_address_space *vm,
44 unsigned int pat_index,
47 struct i915_dpt *dpt = i915_vm_to_dpt(vm);
48 gen8_pte_t __iomem *base = dpt->iomem;
50 gen8_set_pte(base + offset / I915_GTT_PAGE_SIZE,
51 vm->pte_encode(addr, pat_index, flags));
54 static void dpt_insert_entries(struct i915_address_space *vm,
55 struct i915_vma_resource *vma_res,
56 unsigned int pat_index,
59 struct i915_dpt *dpt = i915_vm_to_dpt(vm);
60 gen8_pte_t __iomem *base = dpt->iomem;
61 const gen8_pte_t pte_encode = vm->pte_encode(0, pat_index, flags);
62 struct sgt_iter sgt_iter;
67 * Note that we ignore PTE_READ_ONLY here. The caller must be careful
68 * not to allow the user to override access to a read only page.
71 i = vma_res->start / I915_GTT_PAGE_SIZE;
72 for_each_sgt_daddr(addr, sgt_iter, vma_res->bi.pages)
73 gen8_set_pte(&base[i++], pte_encode | addr);
76 static void dpt_clear_range(struct i915_address_space *vm,
77 u64 start, u64 length)
81 static void dpt_bind_vma(struct i915_address_space *vm,
82 struct i915_vm_pt_stash *stash,
83 struct i915_vma_resource *vma_res,
84 unsigned int pat_index,
89 if (vma_res->bound_flags)
92 /* Applicable to VLV (gen8+ do not support RO in the GGTT) */
94 if (vm->has_read_only && vma_res->bi.readonly)
95 pte_flags |= PTE_READ_ONLY;
99 vm->insert_entries(vm, vma_res, pat_index, pte_flags);
101 vma_res->page_sizes_gtt = I915_GTT_PAGE_SIZE;
104 * Without aliasing PPGTT there's no difference between
105 * GLOBAL/LOCAL_BIND, it's all the same ptes. Hence unconditionally
106 * upgrade to both bound if we bind either to avoid double-binding.
108 vma_res->bound_flags = I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND;
111 static void dpt_unbind_vma(struct i915_address_space *vm,
112 struct i915_vma_resource *vma_res)
114 vm->clear_range(vm, vma_res->start, vma_res->vma_size);
117 static void dpt_cleanup(struct i915_address_space *vm)
119 struct i915_dpt *dpt = i915_vm_to_dpt(vm);
121 i915_gem_object_put(dpt->obj);
124 struct i915_vma *intel_dpt_pin_to_ggtt(struct i915_address_space *vm,
125 unsigned int alignment)
127 struct drm_i915_private *i915 = vm->i915;
128 struct i915_dpt *dpt = i915_vm_to_dpt(vm);
129 intel_wakeref_t wakeref;
130 struct i915_vma *vma;
132 struct i915_gem_ww_ctx ww;
136 if (i915_gem_object_is_stolen(dpt->obj))
137 pin_flags |= PIN_MAPPABLE;
139 wakeref = intel_runtime_pm_get(&i915->runtime_pm);
140 atomic_inc(&i915->gpu_error.pending_fb_pin);
142 for_i915_gem_ww(&ww, err, true) {
143 err = i915_gem_object_lock(dpt->obj, &ww);
147 vma = i915_gem_object_ggtt_pin_ww(dpt->obj, &ww, NULL, 0,
148 alignment, pin_flags);
154 iomem = i915_vma_pin_iomap(vma);
158 err = PTR_ERR(iomem);
168 dpt->obj->mm.dirty = true;
170 atomic_dec(&i915->gpu_error.pending_fb_pin);
171 intel_runtime_pm_put(&i915->runtime_pm, wakeref);
173 return err ? ERR_PTR(err) : vma;
176 void intel_dpt_unpin_from_ggtt(struct i915_address_space *vm)
178 struct i915_dpt *dpt = i915_vm_to_dpt(vm);
180 i915_vma_unpin_iomap(dpt->vma);
181 i915_vma_put(dpt->vma);
185 * intel_dpt_resume - restore the memory mapping for all DPT FBs during system resume
186 * @i915: device instance
188 * Restore the memory mapping during system resume for all framebuffers which
189 * are mapped to HW via a GGTT->DPT page table. The content of these page
190 * tables are not stored in the hibernation image during S4 and S3RST->S4
191 * transitions, so here we reprogram the PTE entries in those tables.
193 * This function must be called after the mappings in GGTT have been restored calling
194 * i915_ggtt_resume().
196 void intel_dpt_resume(struct drm_i915_private *i915)
198 struct drm_framebuffer *drm_fb;
200 if (!HAS_DISPLAY(i915))
203 mutex_lock(&i915->drm.mode_config.fb_lock);
204 drm_for_each_fb(drm_fb, &i915->drm) {
205 struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb);
208 i915_ggtt_resume_vm(fb->dpt_vm);
210 mutex_unlock(&i915->drm.mode_config.fb_lock);
214 * intel_dpt_suspend - suspend the memory mapping for all DPT FBs during system suspend
215 * @i915: device instance
217 * Suspend the memory mapping during system suspend for all framebuffers which
218 * are mapped to HW via a GGTT->DPT page table.
220 * This function must be called before the mappings in GGTT are suspended calling
221 * i915_ggtt_suspend().
223 void intel_dpt_suspend(struct drm_i915_private *i915)
225 struct drm_framebuffer *drm_fb;
227 if (!HAS_DISPLAY(i915))
230 mutex_lock(&i915->drm.mode_config.fb_lock);
232 drm_for_each_fb(drm_fb, &i915->drm) {
233 struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb);
236 i915_ggtt_suspend_vm(fb->dpt_vm);
239 mutex_unlock(&i915->drm.mode_config.fb_lock);
242 struct i915_address_space *
243 intel_dpt_create(struct intel_framebuffer *fb)
245 struct drm_gem_object *obj = intel_fb_bo(&fb->base);
246 struct drm_i915_private *i915 = to_i915(obj->dev);
247 struct drm_i915_gem_object *dpt_obj;
248 struct i915_address_space *vm;
249 struct i915_dpt *dpt;
253 if (intel_fb_needs_pot_stride_remap(fb))
254 size = intel_remapped_info_size(&fb->remapped_view.gtt.remapped);
256 size = DIV_ROUND_UP_ULL(obj->size, I915_GTT_PAGE_SIZE);
258 size = round_up(size * sizeof(gen8_pte_t), I915_GTT_PAGE_SIZE);
260 dpt_obj = i915_gem_object_create_lmem(i915, size, I915_BO_ALLOC_CONTIGUOUS);
261 if (IS_ERR(dpt_obj) && i915_ggtt_has_aperture(to_gt(i915)->ggtt))
262 dpt_obj = i915_gem_object_create_stolen(i915, size);
263 if (IS_ERR(dpt_obj) && !HAS_LMEM(i915)) {
264 drm_dbg_kms(&i915->drm, "Allocating dpt from smem\n");
265 dpt_obj = i915_gem_object_create_shmem(i915, size);
268 return ERR_CAST(dpt_obj);
270 ret = i915_gem_object_lock_interruptible(dpt_obj, NULL);
272 ret = i915_gem_object_set_cache_level(dpt_obj, I915_CACHE_NONE);
273 i915_gem_object_unlock(dpt_obj);
276 i915_gem_object_put(dpt_obj);
280 dpt = kzalloc(sizeof(*dpt), GFP_KERNEL);
282 i915_gem_object_put(dpt_obj);
283 return ERR_PTR(-ENOMEM);
288 vm->gt = to_gt(i915);
290 vm->dma = i915->drm.dev;
291 vm->total = (size / sizeof(gen8_pte_t)) * I915_GTT_PAGE_SIZE;
294 i915_address_space_init(vm, VM_CLASS_DPT);
296 vm->insert_page = dpt_insert_page;
297 vm->clear_range = dpt_clear_range;
298 vm->insert_entries = dpt_insert_entries;
299 vm->cleanup = dpt_cleanup;
301 vm->vma_ops.bind_vma = dpt_bind_vma;
302 vm->vma_ops.unbind_vma = dpt_unbind_vma;
304 vm->pte_encode = vm->gt->ggtt->vm.pte_encode;
307 dpt->obj->is_dpt = true;
312 void intel_dpt_destroy(struct i915_address_space *vm)
314 struct i915_dpt *dpt = i915_vm_to_dpt(vm);
316 dpt->obj->is_dpt = false;
317 i915_vm_put(&dpt->vm);
320 u64 intel_dpt_offset(struct i915_vma *dpt_vma)
322 return dpt_vma->node.start;