From: Mario Limonciello <superm1@kernel.org>
To: "Timur Kristóf" <timur.kristof@gmail.com>,
amd-gfx@lists.freedesktop.org, Alexander.Deucher@amd.com,
"Natalie Vock" <natalie.vock@gmx.de>,
"Tvrtko Ursulin" <tursulin@ursulin.net>,
"Melissa Wen" <mwen@igalia.com>,
harry.wentland@amd.com, "Leo Li" <sunpeng.li@amd.com>,
"Ivan Lipski" <ivan.lipski@amd.com>,
"Alex Hung" <alex.hung@amd.com>
Cc: Dmytro Laktyushkin <dmytro.laktyushkin@amd.com>,
Roman Li <roman.li@amd.com>
Subject: Re: [PATCH 1/2] drm/amd/display: Fix HPD consideration for VGA/LVDS connectors on DCE
Date: Fri, 21 Aug 2026 17:03:18 -0500 [thread overview]
Message-ID: <4882a9d3-3a39-4bb1-a907-2b933bc431b2@kernel.org> (raw)
In-Reply-To: <20260821215059.312868-1-timur.kristof@gmail.com>
On 8/21/26 16:50, Timur Kristóf wrote:
> After a refactor that landed in Linux 7.0,
> DC now crashes when it is initialized on GPUs
> that have a VGA or LVDS connector. This is because
> these connectors have no HPD so the hpd_gpio is NULL
> and therefore DC takes the code path meant for
> DCN 4.2+ which sets irq_source_hpd = 255 that
> causes the subsequent code to try to register
> the HPD interrupt, which fails, and causes
> a crash.
>
> This commit should be backported to Linux 7.0 and newer.
Unfortunately 7.0.y is EoL. But we'll get it in 7.1.y and later.
>
> Cc: Dmytro Laktyushkin <dmytro.laktyushkin@amd.com>
> Cc: Roman Li <roman.li@amd.com>
> Closes: https://gitlab.freedesktop.org/drm/amd/-/work_items/5490
> Fixes: def3488eb0fd ("drm/amd/display: refactor HPD to increase flexibility")
> Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
Reviewed-by: Mario Limonciello (AMD) <superm1@kernel.org>
I'll get this committed to amd-staging-drm-next.
> ---
> drivers/gpu/drm/amd/display/dc/link/link_factory.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/display/dc/link/link_factory.c b/drivers/gpu/drm/amd/display/dc/link/link_factory.c
> index 8560ee727bfa..a83693ea43c0 100644
> --- a/drivers/gpu/drm/amd/display/dc/link/link_factory.c
> +++ b/drivers/gpu/drm/amd/display/dc/link/link_factory.c
> @@ -643,7 +643,7 @@ static bool construct_phy(struct dc_link *link,
>
> DC_LOG_DC("BIOS object table - hpd_gpio id: %d", enc_init_data.hpd_gpio->id);
> DC_LOG_DC("BIOS object table - hpd_gpio en: %d", enc_init_data.hpd_gpio->en);
> - } else {
> + } else if (link->ctx->dce_version > DCN_VERSION_4_01) {
> struct graphics_object_hpd_info hpd_info;
>
> if (link->ctx->dc_bios->funcs->get_hpd_info(link->ctx->dc_bios, link->link_id, &hpd_info) == BP_RESULT_OK) {
prev parent reply other threads:[~2026-08-21 22:03 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-21 21:50 [PATCH 1/2] drm/amd/display: Fix HPD consideration for VGA/LVDS connectors on DCE Timur Kristóf
2026-08-21 21:50 ` [PATCH 2/2] drm/amd/display: Log details when failing to register HPD IRQ Timur Kristóf
2026-08-21 22:02 ` Mario Limonciello
2026-08-21 22:03 ` Mario Limonciello [this message]
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=4882a9d3-3a39-4bb1-a907-2b933bc431b2@kernel.org \
--to=superm1@kernel.org \
--cc=Alexander.Deucher@amd.com \
--cc=alex.hung@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=dmytro.laktyushkin@amd.com \
--cc=harry.wentland@amd.com \
--cc=ivan.lipski@amd.com \
--cc=mwen@igalia.com \
--cc=natalie.vock@gmx.de \
--cc=roman.li@amd.com \
--cc=sunpeng.li@amd.com \
--cc=timur.kristof@gmail.com \
--cc=tursulin@ursulin.net \
/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 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.