Commit 9b1c97fc authored by Jani Nikula's avatar Jani Nikula
Browse files

drm/i915: remove excess functions from plane protection check

parent 88a6e46c
Loading
Loading
Loading
Loading
+4 −14
Original line number Diff line number Diff line
@@ -1854,29 +1854,19 @@ static bool skl_fb_scalable(const struct drm_framebuffer *fb)
	}
}

static bool bo_has_valid_encryption(struct drm_i915_gem_object *obj)
{
	struct drm_i915_private *i915 = to_i915(obj->base.dev);

	return intel_pxp_key_check(i915->pxp, obj, false) == 0;
}

static bool pxp_is_borked(struct drm_i915_gem_object *obj)
{
	return i915_gem_object_is_protected(obj) && !bo_has_valid_encryption(obj);
}

static void check_protection(struct intel_plane_state *plane_state)
{
	struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
	struct drm_i915_private *i915 = to_i915(plane->base.dev);
	const struct drm_framebuffer *fb = plane_state->hw.fb;
	struct drm_i915_gem_object *obj = intel_fb_obj(fb);

	if (DISPLAY_VER(i915) < 11)
		return;

	plane_state->decrypt = bo_has_valid_encryption(intel_fb_obj(fb));
	plane_state->force_black = pxp_is_borked(intel_fb_obj(fb));
	plane_state->decrypt = intel_pxp_key_check(i915->pxp, obj, false) == 0;
	plane_state->force_black = i915_gem_object_is_protected(obj) &&
		!plane_state->decrypt;
}

static int skl_plane_check(struct intel_crtc_state *crtc_state,