All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amd/display: Reject non-zero src_y and src_x for video planes
@ 2021-04-22 23:20 Harry Wentland
  2021-04-23  0:51 ` Kazlauskas, Nicholas
  0 siblings, 1 reply; 2+ messages in thread
From: Harry Wentland @ 2021-04-22 23:20 UTC (permalink / raw)
  To: amd-gfx, alexander.deucher, Roman.Li, hersenxs.wu, Nicholas.Kazlauskas
  Cc: Harry Wentland

[Why]
This hasn't been well tested and leads to complete system hangs on DCN1
based systems, possibly others.

The system hang can be reproduced by gesturing the video on the YouTube
Android app on ChromeOS into full screen.

[How]
Reject atomic commits with non-zero drm_plane_state.src_x or src_y values.

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Change-Id: I5e951f95fc87c86517b9ea6e094d73603184f00b
---
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index 4b3b9599aaf7..99fd555ebb91 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -2825,6 +2825,13 @@ static int fill_dc_scaling_info(const struct drm_plane_state *state,
 	scaling_info->src_rect.x = state->src_x >> 16;
 	scaling_info->src_rect.y = state->src_y >> 16;
 
+
+	if (state->fb &&
+	    state->fb->format->format == DRM_FORMAT_NV12 &&
+	    (scaling_info->src_rect.x != 0 ||
+	     scaling_info->src_rect.y != 0))
+		return -EINVAL;
+
 	scaling_info->src_rect.width = state->src_w >> 16;
 	if (scaling_info->src_rect.width == 0)
 		return -EINVAL;
-- 
2.31.1

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] drm/amd/display: Reject non-zero src_y and src_x for video planes
  2021-04-22 23:20 [PATCH] drm/amd/display: Reject non-zero src_y and src_x for video planes Harry Wentland
@ 2021-04-23  0:51 ` Kazlauskas, Nicholas
  0 siblings, 0 replies; 2+ messages in thread
From: Kazlauskas, Nicholas @ 2021-04-23  0:51 UTC (permalink / raw)
  To: Harry Wentland, amd-gfx, alexander.deucher, Roman.Li, hersenxs.wu

On 2021-04-22 7:20 p.m., Harry Wentland wrote:
> [Why]
> This hasn't been well tested and leads to complete system hangs on DCN1
> based systems, possibly others.
> 
> The system hang can be reproduced by gesturing the video on the YouTube
> Android app on ChromeOS into full screen.
> 
> [How]
> Reject atomic commits with non-zero drm_plane_state.src_x or src_y values.
> 
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> Change-Id: I5e951f95fc87c86517b9ea6e094d73603184f00b

Drop the Change-ID on submit.

> ---
>   drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 7 +++++++
>   1 file changed, 7 insertions(+)
> 
> diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> index 4b3b9599aaf7..99fd555ebb91 100644
> --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> @@ -2825,6 +2825,13 @@ static int fill_dc_scaling_info(const struct drm_plane_state *state,
>   	scaling_info->src_rect.x = state->src_x >> 16;
>   	scaling_info->src_rect.y = state->src_y >> 16;
>   
> +
> +	if (state->fb &&
> +	    state->fb->format->format == DRM_FORMAT_NV12 &&
> +	    (scaling_info->src_rect.x != 0 ||
> +	     scaling_info->src_rect.y != 0))
> +		return -EINVAL;
> +

Would like to see a comment in the source code similar to what's 
explained in the commit message so if people skim through the code they 
understand some of the background on this.

I'd also like to know if this is generic across all DCN or specific to 
DCN1. For now at least we can disable it generically I think.

With the commit message updated and source commented this patch is:

Reviewed-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>

>   	scaling_info->src_rect.width = state->src_w >> 16;
>   	if (scaling_info->src_rect.width == 0)
>   		return -EINVAL;
> 

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-04-23  0:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-22 23:20 [PATCH] drm/amd/display: Reject non-zero src_y and src_x for video planes Harry Wentland
2021-04-23  0:51 ` Kazlauskas, Nicholas

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.