From: Jani Nikula <jani.nikula@linux.intel.com>
To: Jens Glathe via B4 Relay
<devnull+jens.glathe.oldschoolsolutions.biz@kernel.org>,
Rob Clark <robin.clark@oss.qualcomm.com>,
Dmitry Baryshkov <lumag@kernel.org>,
Abhinav Kumar <abhinav.kumar@linux.dev>,
Jessica Zhang <jesszhan0024@gmail.com>,
Sean Paul <sean@poorly.run>,
Marijn Suijten <marijn.suijten@somainline.org>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>
Cc: linux-arm-msm@vger.kernel.org, dri-devel@lists.freedesktop.org,
freedreno@lists.freedesktop.org, linux-kernel@vger.kernel.org,
Jens Glathe <jens.glathe@oldschoolsolutions.biz>
Subject: Re: [PATCH] drm/msm/dp: add EDID re-read retry in msm_dp_panel_get_modes()
Date: Mon, 01 Jun 2026 13:57:39 +0300 [thread overview]
Message-ID: <d50293fab9e6292220b1817a8e85bbd89743b708@intel.com> (raw)
In-Reply-To: <20260531-drm_plug_flaky_edid-v1-1-2708c16dce97@oldschoolsolutions.biz>
On Sun, 31 May 2026, Jens Glathe via B4 Relay <devnull+jens.glathe.oldschoolsolutions.biz@kernel.org> wrote:
> From: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
>
> drm_edid_read_ddc() can return a structurally valid EDID from which
> drm_edid_connector_add_modes() still returns zero modes. This triggers
> the error:
>
> [drm:msm_dp_bridge_get_modes [msm]] *ERROR* failed to get DP sink
> modes, rc=0
>
> even though the link is ready. Since the EDID is only read once, this
> error persists and the display comes up with 640x480 resolution.
>
> Add a retry of drm_edid_read_ddc() inside get_modes() when the initial
> read produces no usable modes. The bad EDID is freed before retrying
> and container_of ensures access to the DDC channel. This directly
> addresses the observed "valid but empty/garbage" EDID case on
> flaky DP plugs and adapters.
>
> I tested this on a few of my "flaky" type-c to HDMI adapters and hubs,
> getting no "retry failed" messages and the desired resolution. Without
> the patch most plugs would result in 640x480 external display.
>
> Fixes: [5bea90ad9743d2] "drm/msm/dp: switch to struct drm_edid"
Did you actually bisect to this commit? It's a bit of a surprise.
Side note, the Fixes: trailer has a strict format. Please look at git
logs for what it should be like.
>
> Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
> ---
> drivers/gpu/drm/msm/dp/dp_panel.c | 28 ++++++++++++++++++++++++++++
> 1 file changed, 28 insertions(+)
>
> diff --git a/drivers/gpu/drm/msm/dp/dp_panel.c b/drivers/gpu/drm/msm/dp/dp_panel.c
> index 6bb021820d7c5..4f27c8129b0ef 100644
> --- a/drivers/gpu/drm/msm/dp/dp_panel.c
> +++ b/drivers/gpu/drm/msm/dp/dp_panel.c
> @@ -327,11 +327,39 @@ u32 msm_dp_panel_get_mode_bpp(struct msm_dp_panel *msm_dp_panel,
> int msm_dp_panel_get_modes(struct msm_dp_panel *msm_dp_panel,
> struct drm_connector *connector)
> {
> + int modes;
> + int retry;
> + struct msm_dp_panel_private *panel;
> +
> if (!msm_dp_panel) {
> DRM_ERROR("invalid input\n");
> return -EINVAL;
> }
>
> + panel = container_of(msm_dp_panel, struct msm_dp_panel_private, msm_dp_panel);
> +
> + if (msm_dp_panel->drm_edid) {
> + modes = drm_edid_connector_add_modes(connector);
> + if (modes > 0)
> + return modes;
> +
> + drm_edid_free(msm_dp_panel->drm_edid);
> + msm_dp_panel->drm_edid = NULL;
> + }
> +
> + for (retry = 0; retry < 5; retry++) {
> + usleep_range(20000, 25000);
> + msm_dp_panel->drm_edid =
> + drm_edid_read_ddc(connector, &panel->aux->ddc);
> + if (msm_dp_panel->drm_edid)
> + break;
> +
> + drm_dbg_dp(connector->dev,
> + "get_modes re-read attempt %d/5 failed\n",
> + retry + 1);
> + }
> +
> + drm_edid_connector_update(connector, msm_dp_panel->drm_edid);
> if (msm_dp_panel->drm_edid)
> return drm_edid_connector_add_modes(connector);
>
>
> ---
> base-commit: 7da7f07112610a520567421dd2ffcb51beaefbcc
> change-id: 20260531-drm_plug_flaky_edid-cc7743f6f909
>
> Best regards,
--
Jani Nikula, Intel
next prev parent reply other threads:[~2026-06-01 10:57 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-31 21:16 [PATCH] drm/msm/dp: add EDID re-read retry in msm_dp_panel_get_modes() Jens Glathe via B4 Relay
2026-06-01 10:54 ` Jani Nikula
2026-06-01 10:57 ` Jani Nikula [this message]
2026-06-02 18:26 ` Jens Glathe
2026-06-01 11:20 ` Dmitry Baryshkov
2026-06-04 4:42 ` Claude review: " Claude Code Review Bot
2026-06-04 4:42 ` Claude Code Review Bot
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=d50293fab9e6292220b1817a8e85bbd89743b708@intel.com \
--to=jani.nikula@linux.intel.com \
--cc=abhinav.kumar@linux.dev \
--cc=airlied@gmail.com \
--cc=devnull+jens.glathe.oldschoolsolutions.biz@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=jens.glathe@oldschoolsolutions.biz \
--cc=jesszhan0024@gmail.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lumag@kernel.org \
--cc=marijn.suijten@somainline.org \
--cc=robin.clark@oss.qualcomm.com \
--cc=sean@poorly.run \
--cc=simona@ffwll.ch \
/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