OSDN Git Service

drm/i915/fbc: Move stuff from intel_fbc_can_enable() into intel_fbc_check_plane()
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 24 Nov 2021 11:36:46 +0000 (13:36 +0200)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Fri, 3 Dec 2021 11:16:01 +0000 (13:16 +0200)
Don't really see a good reason why we can't just do the vgpu and
modparam checks already in intel_fbc_check_plane().

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20211124113652.22090-15-ville.syrjala@linux.intel.com
Reviewed-by: Mika Kahola <mika.kahola@intel.com>
drivers/gpu/drm/i915/display/intel_fbc.c

index 1daf4f7..616ab95 100644 (file)
@@ -996,18 +996,6 @@ static bool intel_fbc_cfb_size_changed(struct intel_fbc *fbc)
 
 static bool intel_fbc_can_enable(struct intel_fbc *fbc)
 {
-       struct drm_i915_private *i915 = fbc->i915;
-
-       if (intel_vgpu_active(i915)) {
-               fbc->no_fbc_reason = "VGPU is active";
-               return false;
-       }
-
-       if (!i915->params.enable_fbc) {
-               fbc->no_fbc_reason = "disabled per module param or by default";
-               return false;
-       }
-
        if (fbc->underrun_detected) {
                fbc->no_fbc_reason = "underrun detected";
                return false;
@@ -1030,6 +1018,16 @@ static int intel_fbc_check_plane(struct intel_atomic_state *state,
        if (!fbc)
                return 0;
 
+       if (intel_vgpu_active(i915)) {
+               plane_state->no_fbc_reason = "VGPU active";
+               return 0;
+       }
+
+       if (!i915->params.enable_fbc) {
+               plane_state->no_fbc_reason = "disabled per module param or by default";
+               return 0;
+       }
+
        if (!plane_state->uapi.visible) {
                plane_state->no_fbc_reason = "plane not visible";
                return 0;