mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Alex Hung <alex.hung@amd.com>
To: "Gergo Koteles" <soyer@irl.hu>,
	"Harry Wentland" <harry.wentland@amd.com>,
	"Leo Li" <sunpeng.li@amd.com>,
	"Rodrigo Siqueira" <siqueira@igalia.com>,
	"Alex Deucher" <alexander.deucher@amd.com>,
	"Christian König" <christian.koenig@amd.com>,
	"David Airlie" <airlied@gmail.com>,
	"Simona Vetter" <simona@ffwll.ch>,
	"Mario Limonciello" <mario.limonciello@amd.com>,
	"Tom Chung" <chiahsuan.chung@amd.com>,
	"Sunil Khatri" <sunil.khatri@amd.com>,
	"Aurabindo Pillai" <aurabindo.pillai@amd.com>,
	"Hersen Wu" <hersenxs.wu@amd.com>,
	"Melissa Wen" <mwen@igalia.com>,
	"Maxime Ripard" <mripard@kernel.org>,
	"Dmitry Baryshkov" <lumag@kernel.org>,
	"Thomas Zimmermann" <tzimmermann@suse.de>,
	"Laurent Pinchart" <laurent.pinchart+renesas@ideasonboard.com>
Cc: amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
	linux-kernel@vger.kernel.org, regressions@lists.linux.dev
Subject: Re: [PATCH] drm/amd/display: do not copy invalid CRTC timing info
Date: Tue, 8 Apr 2025 10:55:03 -0600	[thread overview]
Message-ID: <11d589f0-3671-417f-8911-7bfb3be88802@amd.com> (raw)
In-Reply-To: <24439c13a014e1cd200785db6f3dcf08f4773eb3.1743612701.git.soyer@irl.hu>

Hi Gergo,

Thanks for the patch. I am sending this patch for testing and I will 
update test result next week.


On 4/2/25 11:03, Gergo Koteles wrote:
> Since b255ce4388e0, it is possible that the CRTC timing
> information for the preferred mode has not yet been
> calculated while amdgpu_dm_connector_mode_valid() is running.
> 
> In this case use the CRTC timing information of the actual mode.
> 
> Fixes: b255ce4388e0 ("drm/amdgpu: don't change mode in amdgpu_dm_connector_mode_valid()")
> Closes: https://lore.kernel.org/all/ed09edb167e74167a694f4854102a3de6d2f1433.camel@irl.hu/
> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/4085
> Signed-off-by: Gergo Koteles <soyer@irl.hu>
> ---
>   drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 12 ++++++------
>   1 file changed, 6 insertions(+), 6 deletions(-)
> 
> 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 bae83a129b5f..0eb25cdcb52f 100644
> --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> @@ -6500,12 +6500,12 @@ decide_crtc_timing_for_drm_display_mode(struct drm_display_mode *drm_mode,
>   					const struct drm_display_mode *native_mode,
>   					bool scale_enabled)
>   {
> -	if (scale_enabled) {
> -		copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
> -	} else if (native_mode->clock == drm_mode->clock &&
> -			native_mode->htotal == drm_mode->htotal &&
> -			native_mode->vtotal == drm_mode->vtotal) {
> -		copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
> +	if (scale_enabled || (
> +	    native_mode->clock == drm_mode->clock &&
> +	    native_mode->htotal == drm_mode->htotal &&
> +	    native_mode->vtotal == drm_mode->vtotal)) {
> +		if (native_mode->crtc_clock)
> +			copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
>   	} else {
>   		/* no scaling nor amdgpu inserted, no need to patch */
>   	}


  reply	other threads:[~2025-04-08 16:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-02 17:03 Gergo Koteles
2025-04-08 16:55 ` Alex Hung [this message]
2025-04-18  0:44   ` Alex Hung

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=11d589f0-3671-417f-8911-7bfb3be88802@amd.com \
    --to=alex.hung@amd.com \
    --cc=airlied@gmail.com \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=aurabindo.pillai@amd.com \
    --cc=chiahsuan.chung@amd.com \
    --cc=christian.koenig@amd.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=harry.wentland@amd.com \
    --cc=hersenxs.wu@amd.com \
    --cc=laurent.pinchart+renesas@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lumag@kernel.org \
    --cc=mario.limonciello@amd.com \
    --cc=mripard@kernel.org \
    --cc=mwen@igalia.com \
    --cc=regressions@lists.linux.dev \
    --cc=simona@ffwll.ch \
    --cc=siqueira@igalia.com \
    --cc=soyer@irl.hu \
    --cc=sunil.khatri@amd.com \
    --cc=sunpeng.li@amd.com \
    --cc=tzimmermann@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®