1 // SPDX-License-Identifier: MIT
3 * Copyright © 2021 Intel Corporation
7 * DOC: display pinning helpers
10 #include "gem/i915_gem_domain.h"
11 #include "gem/i915_gem_object.h"
14 #include "intel_display_types.h"
15 #include "intel_dpt.h"
17 #include "intel_fb_pin.h"
19 static struct i915_vma *
20 intel_pin_fb_obj_dpt(struct drm_framebuffer *fb,
21 const struct i915_gtt_view *view,
23 unsigned long *out_flags,
24 struct i915_address_space *vm)
26 struct drm_device *dev = fb->dev;
27 struct drm_i915_private *dev_priv = to_i915(dev);
28 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
29 struct i915_gem_ww_ctx ww;
35 * We are not syncing against the binding (and potential migrations)
36 * below, so this vm must never be async.
38 GEM_WARN_ON(vm->bind_async_flags);
40 if (WARN_ON(!i915_gem_object_is_framebuffer(obj)))
41 return ERR_PTR(-EINVAL);
43 alignment = 4096 * 512;
45 atomic_inc(&dev_priv->gpu_error.pending_fb_pin);
47 for_i915_gem_ww(&ww, ret, true) {
48 ret = i915_gem_object_lock(obj, &ww);
52 if (HAS_LMEM(dev_priv)) {
53 unsigned int flags = obj->flags;
56 * For this type of buffer we need to able to read from the CPU
57 * the clear color value found in the buffer, hence we need to
58 * ensure it is always in the mappable part of lmem, if this is
61 if (intel_fb_rc_ccs_cc_plane(fb) >= 0)
62 flags &= ~I915_BO_ALLOC_GPU_ONLY;
63 ret = __i915_gem_object_migrate(obj, &ww, INTEL_REGION_LMEM_0,
69 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
73 vma = i915_vma_instance(obj, vm, view);
79 if (i915_vma_misplaced(vma, 0, alignment, 0)) {
80 ret = i915_vma_unbind(vma);
85 ret = i915_vma_pin_ww(vma, &ww, 0, alignment, PIN_GLOBAL);
94 vma->display_alignment = max(vma->display_alignment, alignment);
96 i915_gem_object_flush_if_display(obj);
100 atomic_dec(&dev_priv->gpu_error.pending_fb_pin);
106 intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb,
108 const struct i915_gtt_view *view,
110 unsigned long *out_flags)
112 struct drm_device *dev = fb->dev;
113 struct drm_i915_private *dev_priv = to_i915(dev);
114 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
115 intel_wakeref_t wakeref;
116 struct i915_gem_ww_ctx ww;
117 struct i915_vma *vma;
122 if (drm_WARN_ON(dev, !i915_gem_object_is_framebuffer(obj)))
123 return ERR_PTR(-EINVAL);
126 alignment = intel_cursor_alignment(dev_priv);
128 alignment = intel_surf_alignment(fb, 0);
129 if (drm_WARN_ON(dev, alignment && !is_power_of_2(alignment)))
130 return ERR_PTR(-EINVAL);
132 /* Note that the w/a also requires 64 PTE of padding following the
133 * bo. We currently fill all unused PTE with the shadow page and so
134 * we should always have valid PTE following the scanout preventing
137 if (intel_scanout_needs_vtd_wa(dev_priv) && alignment < 256 * 1024)
138 alignment = 256 * 1024;
141 * Global gtt pte registers are special registers which actually forward
142 * writes to a chunk of system memory. Which means that there is no risk
143 * that the register values disappear as soon as we call
144 * intel_runtime_pm_put(), so it is correct to wrap only the
145 * pin/unpin/fence and not more.
147 wakeref = intel_runtime_pm_get(&dev_priv->runtime_pm);
149 atomic_inc(&dev_priv->gpu_error.pending_fb_pin);
152 * Valleyview is definitely limited to scanning out the first
153 * 512MiB. Lets presume this behaviour was inherited from the
154 * g4x display engine and that all earlier gen are similarly
155 * limited. Testing suggests that it is a little more
156 * complicated than this. For example, Cherryview appears quite
157 * happy to scanout from anywhere within its global aperture.
160 if (HAS_GMCH(dev_priv))
161 pinctl |= PIN_MAPPABLE;
163 i915_gem_ww_ctx_init(&ww, true);
165 ret = i915_gem_object_lock(obj, &ww);
166 if (!ret && phys_cursor)
167 ret = i915_gem_object_attach_phys(obj, alignment);
168 else if (!ret && HAS_LMEM(dev_priv))
169 ret = i915_gem_object_migrate(obj, &ww, INTEL_REGION_LMEM_0);
171 ret = i915_gem_object_pin_pages(obj);
175 vma = i915_gem_object_pin_to_display_plane(obj, &ww, alignment,
182 if (uses_fence && i915_vma_is_map_and_fenceable(vma)) {
184 * Install a fence for tiled scan-out. Pre-i965 always needs a
185 * fence, whereas 965+ only requires a fence if using
186 * framebuffer compression. For simplicity, we always, when
187 * possible, install a fence as the cost is not that onerous.
189 * If we fail to fence the tiled scanout, then either the
190 * modeset will reject the change (which is highly unlikely as
191 * the affected systems, all but one, do not have unmappable
192 * space) or we will not be able to enable full powersaving
193 * techniques (also likely not to apply due to various limits
194 * FBC and the like impose on the size of the buffer, which
195 * presumably we violated anyway with this unmappable buffer).
196 * Anyway, it is presumably better to stumble onwards with
197 * something and try to run the system in a "less than optimal"
198 * mode that matches the user configuration.
200 ret = i915_vma_pin_fence(vma);
201 if (ret != 0 && DISPLAY_VER(dev_priv) < 4) {
208 *out_flags |= PLANE_HAS_FENCE;
214 i915_gem_object_unpin_pages(obj);
216 if (ret == -EDEADLK) {
217 ret = i915_gem_ww_ctx_backoff(&ww);
221 i915_gem_ww_ctx_fini(&ww);
225 atomic_dec(&dev_priv->gpu_error.pending_fb_pin);
226 intel_runtime_pm_put(&dev_priv->runtime_pm, wakeref);
230 void intel_unpin_fb_vma(struct i915_vma *vma, unsigned long flags)
232 if (flags & PLANE_HAS_FENCE)
233 i915_vma_unpin_fence(vma);
238 int intel_plane_pin_fb(struct intel_plane_state *plane_state)
240 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
241 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
242 struct drm_framebuffer *fb = plane_state->hw.fb;
243 struct i915_vma *vma;
245 plane->id == PLANE_CURSOR &&
246 DISPLAY_INFO(dev_priv)->cursor_needs_physical;
248 if (!intel_fb_uses_dpt(fb)) {
249 vma = intel_pin_and_fence_fb_obj(fb, phys_cursor,
250 &plane_state->view.gtt,
251 intel_plane_uses_fence(plane_state),
252 &plane_state->flags);
256 plane_state->ggtt_vma = vma;
258 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
260 vma = intel_dpt_pin(intel_fb->dpt_vm);
264 plane_state->ggtt_vma = vma;
266 vma = intel_pin_fb_obj_dpt(fb, &plane_state->view.gtt, false,
267 &plane_state->flags, intel_fb->dpt_vm);
269 intel_dpt_unpin(intel_fb->dpt_vm);
270 plane_state->ggtt_vma = NULL;
274 plane_state->dpt_vma = vma;
276 WARN_ON(plane_state->ggtt_vma == plane_state->dpt_vma);
282 void intel_plane_unpin_fb(struct intel_plane_state *old_plane_state)
284 struct drm_framebuffer *fb = old_plane_state->hw.fb;
285 struct i915_vma *vma;
287 if (!intel_fb_uses_dpt(fb)) {
288 vma = fetch_and_zero(&old_plane_state->ggtt_vma);
290 intel_unpin_fb_vma(vma, old_plane_state->flags);
292 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
294 vma = fetch_and_zero(&old_plane_state->dpt_vma);
296 intel_unpin_fb_vma(vma, old_plane_state->flags);
298 vma = fetch_and_zero(&old_plane_state->ggtt_vma);
300 intel_dpt_unpin(intel_fb->dpt_vm);