Commit 6b4e414c authored by Ville Syrjälä's avatar Ville Syrjälä

drm/i915: Pimp async flip debugs

Print the offending plane/crtc id+name in the async flip debugs.

Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220214105532.13049-5-ville.syrjala@linux.intel.comReviewed-by: default avatarStanislav Lisovskiy <stanislav.lisovskiy@intel.com>
parent 2e084371
...@@ -7492,18 +7492,24 @@ static int intel_async_flip_check_hw(struct intel_atomic_state *state, struct in ...@@ -7492,18 +7492,24 @@ static int intel_async_flip_check_hw(struct intel_atomic_state *state, struct in
if (!new_crtc_state->uapi.async_flip) if (!new_crtc_state->uapi.async_flip)
return 0; return 0;
if (intel_crtc_needs_modeset(new_crtc_state)) { if (!new_crtc_state->hw.active) {
drm_dbg_kms(&i915->drm, "Modeset Required. Async flip not supported\n"); drm_dbg_kms(&i915->drm,
"[CRTC:%d:%s] not active\n",
crtc->base.base.id, crtc->base.name);
return -EINVAL; return -EINVAL;
} }
if (!new_crtc_state->hw.active) { if (intel_crtc_needs_modeset(new_crtc_state)) {
drm_dbg_kms(&i915->drm, "CRTC inactive\n"); drm_dbg_kms(&i915->drm,
"[CRTC:%d:%s] modeset required\n",
crtc->base.base.id, crtc->base.name);
return -EINVAL; return -EINVAL;
} }
if (old_crtc_state->active_planes != new_crtc_state->active_planes) { if (old_crtc_state->active_planes != new_crtc_state->active_planes) {
drm_dbg_kms(&i915->drm, drm_dbg_kms(&i915->drm,
"Active planes cannot be changed during async flip\n"); "[CRTC:%d:%s] Active planes cannot be in async flip\n",
crtc->base.base.id, crtc->base.name);
return -EINVAL; return -EINVAL;
} }
...@@ -7545,76 +7551,95 @@ static int intel_async_flip_check_hw(struct intel_atomic_state *state, struct in ...@@ -7545,76 +7551,95 @@ static int intel_async_flip_check_hw(struct intel_atomic_state *state, struct in
break; break;
default: default:
drm_dbg_kms(&i915->drm, drm_dbg_kms(&i915->drm,
"Linear memory/CCS does not support async flips\n"); "[PLANE:%d:%s] Modifier does not support async flips\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
if (new_plane_state->hw.fb->format->num_planes > 1) { if (new_plane_state->hw.fb->format->num_planes > 1) {
drm_dbg_kms(&i915->drm, drm_dbg_kms(&i915->drm,
"Planar formats not supported with async flips\n"); "[PLANE:%d:%s] Planar formats do not support async flips\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
if (old_plane_state->view.color_plane[0].mapping_stride != if (old_plane_state->view.color_plane[0].mapping_stride !=
new_plane_state->view.color_plane[0].mapping_stride) { new_plane_state->view.color_plane[0].mapping_stride) {
drm_dbg_kms(&i915->drm, "Stride cannot be changed in async flip\n"); drm_dbg_kms(&i915->drm,
"[PLANE:%d:%s] Stride cannot be changed in async flip\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
if (old_plane_state->hw.fb->modifier != if (old_plane_state->hw.fb->modifier !=
new_plane_state->hw.fb->modifier) { new_plane_state->hw.fb->modifier) {
drm_dbg_kms(&i915->drm, drm_dbg_kms(&i915->drm,
"Framebuffer modifiers cannot be changed in async flip\n"); "[PLANE:%d:%s] Modifier cannot be changed in async flip\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
if (old_plane_state->hw.fb->format != if (old_plane_state->hw.fb->format !=
new_plane_state->hw.fb->format) { new_plane_state->hw.fb->format) {
drm_dbg_kms(&i915->drm, drm_dbg_kms(&i915->drm,
"Framebuffer format cannot be changed in async flip\n"); "[PLANE:%d:%s] Pixel format cannot be changed in async flip\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
if (old_plane_state->hw.rotation != if (old_plane_state->hw.rotation !=
new_plane_state->hw.rotation) { new_plane_state->hw.rotation) {
drm_dbg_kms(&i915->drm, "Rotation cannot be changed in async flip\n"); drm_dbg_kms(&i915->drm,
"[PLANE:%d:%s] Rotation cannot be changed in async flip\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
if (!drm_rect_equals(&old_plane_state->uapi.src, &new_plane_state->uapi.src) || if (!drm_rect_equals(&old_plane_state->uapi.src, &new_plane_state->uapi.src) ||
!drm_rect_equals(&old_plane_state->uapi.dst, &new_plane_state->uapi.dst)) { !drm_rect_equals(&old_plane_state->uapi.dst, &new_plane_state->uapi.dst)) {
drm_dbg_kms(&i915->drm, drm_dbg_kms(&i915->drm,
"Plane size/co-ordinates cannot be changed in async flip\n"); "[PLANE:%d:%s] Size/co-ordinates cannot be changed in async flip\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
if (old_plane_state->hw.alpha != new_plane_state->hw.alpha) { if (old_plane_state->hw.alpha != new_plane_state->hw.alpha) {
drm_dbg_kms(&i915->drm, "Alpha value cannot be changed in async flip\n"); drm_dbg_kms(&i915->drm,
"[PLANES:%d:%s] Alpha value cannot be changed in async flip\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
if (old_plane_state->hw.pixel_blend_mode != if (old_plane_state->hw.pixel_blend_mode !=
new_plane_state->hw.pixel_blend_mode) { new_plane_state->hw.pixel_blend_mode) {
drm_dbg_kms(&i915->drm, drm_dbg_kms(&i915->drm,
"Pixel blend mode cannot be changed in async flip\n"); "[PLANE:%d:%s] Pixel blend mode cannot be changed in async flip\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
if (old_plane_state->hw.color_encoding != new_plane_state->hw.color_encoding) { if (old_plane_state->hw.color_encoding != new_plane_state->hw.color_encoding) {
drm_dbg_kms(&i915->drm, drm_dbg_kms(&i915->drm,
"Color encoding cannot be changed in async flip\n"); "[PLANE:%d:%s] Color encoding cannot be changed in async flip\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
if (old_plane_state->hw.color_range != new_plane_state->hw.color_range) { if (old_plane_state->hw.color_range != new_plane_state->hw.color_range) {
drm_dbg_kms(&i915->drm, "Color range cannot be changed in async flip\n"); drm_dbg_kms(&i915->drm,
"[PLANE:%d:%s] Color range cannot be changed in async flip\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
/* plane decryption is allow to change only in synchronous flips */ /* plane decryption is allow to change only in synchronous flips */
if (old_plane_state->decrypt != new_plane_state->decrypt) if (old_plane_state->decrypt != new_plane_state->decrypt) {
drm_dbg_kms(&i915->drm,
"[PLANE:%d:%s] Decryption cannot be changed in async flip\n",
plane->base.base.id, plane->base.name);
return -EINVAL; return -EINVAL;
} }
}
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment