drm/i915: Relocate xe AUX hack
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 9 Oct 2024 18:22:06 +0000 (21:22 +0300)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Mon, 20 Jan 2025 20:03:03 +0000 (22:03 +0200)
Move the xe AUX neutering out from skl_get_plane_caps() into the
caller so that it'll be easier to refactor skl_get_plane_caps()
into a more readable shape. This isn't really hardware specific
anyway, and just some kind of bug/misfeature of xe.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241009182207.22900-9-ville.syrjala@linux.intel.com
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
drivers/gpu/drm/i915/display/skl_universal_plane.c

index 4bede904e1b5231a792c19536c1d83cc217a92d8..aa8a38c0ca3c4db796f36df02b226fc7aecfd3cd 100644 (file)
@@ -2652,9 +2652,6 @@ static u8 skl_get_plane_caps(struct drm_i915_private *i915,
        if (HAS_4TILE(display))
                caps |= INTEL_PLANE_CAP_TILING_4;
 
-       if (!IS_ENABLED(I915) && !HAS_FLAT_CCS(i915))
-               return caps;
-
        if (skl_plane_has_rc_ccs(i915, pipe, plane_id)) {
                caps |= INTEL_PLANE_CAP_CCS_RC;
                if (DISPLAY_VER(display) >= 12)
@@ -2683,6 +2680,7 @@ skl_universal_plane_create(struct drm_i915_private *dev_priv,
        const u32 *formats;
        int num_formats;
        int ret;
+       u8 caps;
 
        plane = intel_plane_alloc();
        if (IS_ERR(plane))
@@ -2774,8 +2772,15 @@ skl_universal_plane_create(struct drm_i915_private *dev_priv,
        else
                plane_type = DRM_PLANE_TYPE_OVERLAY;
 
-       modifiers = intel_fb_plane_get_modifiers(dev_priv,
-                                                skl_get_plane_caps(dev_priv, pipe, plane_id));
+       caps = skl_get_plane_caps(dev_priv, pipe, plane_id);
+
+       /* FIXME: xe has problems with AUX */
+       if (!IS_ENABLED(I915) && !HAS_FLAT_CCS(dev_priv))
+               caps &= ~(INTEL_PLANE_CAP_CCS_RC |
+                         INTEL_PLANE_CAP_CCS_RC_CC |
+                         INTEL_PLANE_CAP_CCS_MC);
+
+       modifiers = intel_fb_plane_get_modifiers(dev_priv, caps);
 
        ret = drm_universal_plane_init(&dev_priv->drm, &plane->base,
                                       0, plane_funcs,