]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/i915: Extract intel_fb_needs_cpu_access()
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 16 Apr 2026 17:44:39 +0000 (20:44 +0300)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Tue, 21 Apr 2026 10:09:22 +0000 (13:09 +0300)
Replace the naked "does the framebuffer have a clear color
plane?" checks with a more abstract helper that simply tells
us whether we require CPU access to the framebuffer's memory.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patch.msgid.link/20260416174448.28264-4-ville.syrjala@linux.intel.com
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/display/intel_fb.c
drivers/gpu/drm/i915/display/intel_fb.h
drivers/gpu/drm/i915/i915_fb_pin.c
drivers/gpu/drm/xe/display/xe_fb_pin.c

index c4af368deffda6b562b477dd9922870861111e52..cbeb39ebdb7314fcdba1b096f412af25511c5208 100644 (file)
@@ -521,6 +521,11 @@ bool intel_fb_needs_64k_phys(u64 modifier)
                                      INTEL_PLANE_CAP_NEED64K_PHYS);
 }
 
+bool intel_fb_needs_cpu_access(const struct drm_framebuffer *fb)
+{
+       return intel_fb_rc_ccs_cc_plane(fb) >= 0;
+}
+
 /**
  * intel_fb_is_tile4_modifier: Check if a modifier is a tile4 modifier type
  * @modifier: Modifier to check
index fc2c4d59bf06f50c3b57b783d6c331cd7cc8156b..0a027e2595b2d71be04c6275cb6d54c66c4bb30e 100644 (file)
@@ -38,6 +38,7 @@ bool intel_fb_is_rc_ccs_cc_modifier(u64 modifier);
 bool intel_fb_is_mc_ccs_modifier(u64 modifier);
 bool intel_fb_needs_64k_phys(u64 modifier);
 bool intel_fb_is_tile4_modifier(u64 modifier);
+bool intel_fb_needs_cpu_access(const struct drm_framebuffer *fb);
 
 bool intel_fb_is_ccs_aux_plane(const struct drm_framebuffer *fb, int color_plane);
 int intel_fb_rc_ccs_cc_plane(const struct drm_framebuffer *fb);
index 4fe6b9859b3f7e95bb5b0e60ecee2a9c088df803..780be25ad43bf785a999d373b658030e90ca4c75 100644 (file)
@@ -61,7 +61,7 @@ intel_fb_pin_to_dpt(const struct drm_framebuffer *fb,
                         * ensure it is always in the mappable part of lmem, if this is
                         * a small-bar device.
                         */
-                       if (intel_fb_rc_ccs_cc_plane(fb) >= 0)
+                       if (intel_fb_needs_cpu_access(fb))
                                flags &= ~I915_BO_ALLOC_GPU_ONLY;
                        ret = __i915_gem_object_migrate(obj, &ww, INTEL_REGION_LMEM_0,
                                                        flags);
index 58cd527e1fde56362bfc98bf2a0fc96cf1da8248..205492639dba7ae0aab1de13968acd33d9c9742f 100644 (file)
@@ -335,7 +335,7 @@ static struct i915_vma *__xe_pin_fb_vma(const struct intel_framebuffer *fb,
 
        refcount_set(&vma->ref, 1);
        if (IS_DGFX(to_xe_device(bo->ttm.base.dev)) &&
-           intel_fb_rc_ccs_cc_plane(&fb->base) >= 0 &&
+           intel_fb_needs_cpu_access(&fb->base) &&
            !(bo->flags & XE_BO_FLAG_NEEDS_CPU_ACCESS)) {
                struct xe_vram_region *vram = xe_device_get_root_tile(xe)->mem.vram;