From: Yongxing Mou <yongxing.mou@oss.qualcomm.com>
To: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Cc: Andrzej Hajda <andrzej.hajda@intel.com>,
Neil Armstrong <neil.armstrong@linaro.org>,
Robert Foss <rfoss@kernel.org>,
Laurent Pinchart <Laurent.pinchart@ideasonboard.com>,
Jonas Karlman <jonas@kwiboo.se>,
Jernej Skrabec <jernej.skrabec@gmail.com>,
Luca Ceresoli <luca.ceresoli@bootlin.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Kevin Hilman <khilman@baylibre.com>,
Jerome Brunet <jbrunet@baylibre.com>,
Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
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>,
Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>,
Bjorn Andersson <andersson@kernel.org>,
Konrad Dybcio <konradybcio@kernel.org>,
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
linux-amlogic@lists.infradead.org,
linux-arm-kernel@lists.infradead.org,
linux-arm-msm@vger.kernel.org, freedreno@lists.freedesktop.org
Subject: Re: [PATCH 2/5] drm/bridge_connector: preserve connector status for IRQ-only HPD events
Date: Mon, 17 Aug 2026 16:02:31 +0800 [thread overview]
Message-ID: <c36875c1-2d22-4c16-ac2f-4f4a947ed69c@oss.qualcomm.com> (raw)
In-Reply-To: <famoeog5snpvj24b6izwox2gy74ywnwmybflfv2tvr4hjuix5q@cbtce5s7k7sv>
On 7/12/2026 6:33 PM, Dmitry Baryshkov wrote:
> On Mon, Jun 29, 2026 at 10:48:04PM +0800, Yongxing Mou wrote:
>> The bridge connector HPD handling path currently updates
>> connector->status for every hpd_notify() invocation.
>>
>> This does not work well for IRQ-only notifications where the event being
>> reported is carried by extra_status and no connector status transition is
>> associated with it.
>>
>> One example is DP MST. HPD IRQs are propagated through
>> drm_bridge_hpd_notify_*() so that bridge drivers can process the
>> notification. During MST operation, however, the SST connector attached
>> to the bridge connector is intentionally kept disconnected while the MST
>> topology manager handles all connector creation, removal and hotplug
>> processing.
>>
>> Updating connector->status for an IRQ-only MST notification may cause
>> the SST connector state to oscillate between connected and disconnected
>> depending on the notification path. These artificial state transitions
>> can later be detected by the polling logic and result in unnecessary
>> hotplug events being generated. Userspace then re-probes connector
>> status, potentially triggering the same sequence again.
>
> Then the API might need to be adjusted.
>
> Remember, we have two usecases, which we must be able to interpret
> correctly:
> - The driver gets separate HPD and IRQ_HPD events.
> - The driver gets HPD and IRQ_HPD at the same time.
>
Ohh yes, here need to rework.
>>
>> Treat notifications with status == connector_status_unknown and a valid
>> extra_status as IRQ-only events. Forward the notification to bridge
>> drivers without modifying connector->status.
>>
>> This keeps IRQ delivery working while leaving connector state management
>> to the component that actually owns it, such as the DP MST topology
>> framework.
>
> How is it handled by other drivers (i915, amd, nouveau)?
>
i915, amdgpu, and nouveau don't go through the drm_bridge_hpd_notify()
bridge chain -- their DP controllers are integrated into the SoC, and
HPD interrupts are handled directly in their own encoder code.
MSM DP is different in that HPD comes from Type-C / pmic_glink altmode
via aux-hpd-bridge, so it has to go through the bridge chain, which
means this semantic needs to be extended to the bridge API.
>>
>> Signed-off-by: Yongxing Mou <yongxing.mou@oss.qualcomm.com>
>> ---
>> drivers/gpu/drm/display/drm_bridge_connector.c | 12 ++++++++++++
>> 1 file changed, 12 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/display/drm_bridge_connector.c b/drivers/gpu/drm/display/drm_bridge_connector.c
>> index 5edca47a025f..7334d6677604 100644
>> --- a/drivers/gpu/drm/display/drm_bridge_connector.c
>> +++ b/drivers/gpu/drm/display/drm_bridge_connector.c
>> @@ -163,6 +163,18 @@ static void drm_bridge_connector_handle_hpd(struct drm_bridge_connector *drm_bri
>> struct drm_connector *connector = &drm_bridge_connector->base;
>> struct drm_device *dev = connector->dev;
>>
>> + /*
>> + * IRQ-only notification: extra_status carries the event but
>> + * status is unknown — do not overwrite connector->status.
>
> But it's not unknown at this point. The connector status is reported
> following the HPD status.
>
You are right, in the SST case the bridge_connector status does follow
HPD / link status -- because the bridge_connector itself represents
that SST connector, so its status naturally is the link status.
The MST case has a key difference though: the SST connector must be
explicitly marked disconnected (to prevent the DRM framework from
enabling it), consistent with what i915, amdgpu and nouveau do. In
other words, once MST is enabled, the SST connector that the
bridge_connector represents no longer equates to the link status --
the real link is managed by the MST topology, and the SST connector
is just a placeholder at that point.
The issue is that IRQ_HPD still travels through the bridge_connector
chain and takes the old "update the SST connector's status -> emit
hotplug" path. Under MST that runs into two constraints -- and this
is exactly what this series is trying to address:
1. The SST connector represented by bridge_connector no longer stands
for the link, so its status must not be overwritten by IRQ_HPD
events.
2. IRQ_HPD needs a clean path that does not trigger a hotplug on the
bridge_connector -- the MST framework already manages hotplugs
independently.
Using connector_status_unknown as a sentinel here does feel a bit odd;
let me think about whether there is a cleaner approach.
>> + */
>> + if (status == connector_status_unknown &&
>> + extra_status != DRM_CONNECTOR_NO_EXTRA_STATUS) {
>> + drm_bridge_connector_hpd_notify(connector,
>> + connector->status,
>> + extra_status, NULL);
>> + return;
>> + }
>> +
>> mutex_lock(&dev->mode_config.mutex);
>> connector->status = status;
>> mutex_unlock(&dev->mode_config.mutex);
>>
>> --
>> 2.43.0
>>
>
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
next prev parent reply other threads:[~2026-08-17 8:02 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-29 14:48 [PATCH 0/5] drm/msm/dp: Add MSM Type-C MST support Yongxing Mou
2026-06-29 14:48 ` [PATCH 1/5] drm/bridge: allow hpd_notify() to suppress connector hotplug events Yongxing Mou
2026-07-12 10:21 ` Dmitry Baryshkov
2026-08-17 8:01 ` Yongxing Mou
2026-08-18 3:01 ` Dmitry Baryshkov
2026-08-21 7:20 ` Yongxing Mou
2026-08-24 3:15 ` Yongxing Mou
2026-08-18 2:05 ` Chaoyi Chen
2026-08-18 2:24 ` Dmitry Baryshkov
2026-06-29 14:48 ` [PATCH 2/5] drm/bridge_connector: preserve connector status for IRQ-only HPD events Yongxing Mou
2026-07-12 10:33 ` Dmitry Baryshkov
2026-08-17 8:02 ` Yongxing Mou [this message]
2026-08-18 3:18 ` Dmitry Baryshkov
2026-08-21 7:19 ` Yongxing Mou
2026-06-29 14:48 ` [PATCH 3/5] drm/msm/dp: suppress bridge hotplug events during MST operation Yongxing Mou
2026-07-12 10:44 ` Dmitry Baryshkov
2026-08-17 8:01 ` Yongxing Mou
2026-08-18 3:22 ` Dmitry Baryshkov
2026-06-29 14:48 ` [PATCH 4/5] drm/msm/dp: report IRQ_HPD as an IRQ-only notification Yongxing Mou
2026-07-12 10:55 ` Dmitry Baryshkov
2026-08-17 8:02 ` Yongxing Mou
2026-06-29 14:48 ` [PATCH 5/5] drm/msm/dp: mark the SST connector disconnected when MST is enabled Yongxing Mou
2026-07-12 10:56 ` Dmitry Baryshkov
2026-08-17 8:01 ` Yongxing Mou
2026-08-18 3:23 ` Dmitry Baryshkov
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=c36875c1-2d22-4c16-ac2f-4f4a947ed69c@oss.qualcomm.com \
--to=yongxing.mou@oss.qualcomm.com \
--cc=Laurent.pinchart@ideasonboard.com \
--cc=abhinav.kumar@linux.dev \
--cc=airlied@gmail.com \
--cc=andersson@kernel.org \
--cc=andrzej.hajda@intel.com \
--cc=dmitry.baryshkov@oss.qualcomm.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=jbrunet@baylibre.com \
--cc=jernej.skrabec@gmail.com \
--cc=jesszhan0024@gmail.com \
--cc=jonas@kwiboo.se \
--cc=khilman@baylibre.com \
--cc=konradybcio@kernel.org \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luca.ceresoli@bootlin.com \
--cc=lumag@kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=marijn.suijten@somainline.org \
--cc=martin.blumenstingl@googlemail.com \
--cc=mripard@kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=rfoss@kernel.org \
--cc=robin.clark@oss.qualcomm.com \
--cc=sean@poorly.run \
--cc=simona@ffwll.ch \
--cc=tomi.valkeinen@ideasonboard.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®