From: Luca Ceresoli <luca.ceresoli@bootlin.com>
To: Maxime Ripard <mripard@kernel.org>
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>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Hui Pu <Hui.Pu@gehealthcare.com>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
Dmitry Baryshkov <lumag@kernel.org>
Subject: Re: [PATCH 2/2] drm/bridge: ti-sn65dsi83: protect device resources on unplug
Date: Wed, 20 Aug 2025 13:13:02 +0200 [thread overview]
Message-ID: <20250820131302.6a2da5ef@booty> (raw)
In-Reply-To: <l2orbpdoh3cqqgqudbnbdlogo3bd57uu4nv3ax74uoahknzjgr@gbxxuky3huw6>
Hello Maxime,
On Tue, 19 Aug 2025 14:29:32 +0200
Maxime Ripard <mripard@kernel.org> wrote:
> > @@ -1005,7 +1041,24 @@ static void sn65dsi83_remove(struct i2c_client *client)
> > {
> > struct sn65dsi83 *ctx = i2c_get_clientdata(client);
> >
> > + drm_bridge_unplug(&ctx->bridge);
> > drm_bridge_remove(&ctx->bridge);
>
> Shouldn't we merge drm_bridge_unplug with the release part of
> devm_drm_bridge_alloc?
I'm not sure I got what you are suggesting here, sorry.
Do you mean that __devm_drm_bridge_alloc() should add a devres action
to call drm_bridge_unplug(), so the unplug is called implicitly and
does not need to be called explicitly by all drivers?
If that's what you mean, I don't think that would work. Unless I'm
missing something, devres actions are always invoked just after the
driver .remove callback. But we need to call drm_bridge_unplug() at the
beginning (or just before) .remove, at least for drivers that need to do
something in .remove that cannot be done by devm.
In pseudocode:
mybridge_remove()
{
drm_bridge_unplug(); <-- explicit call as in my patch
xyz_disable();
drm_bridge_unplug(); <-- implicitly done by devres
}
We want xyz_disable() to be done after drm_bridge_unplug(), so other
code paths using drm_bridge_enter/exit() won't mess with xyz.
devres actions cannot be added to be executed _before_ .remove, AFAIK.
> > + /*
> > + * sn65dsi83_atomic_disable() should release some resources, but it
> > + * cannot if we call drm_bridge_unplug() before it can
> > + * drm_bridge_enter(). If that happens, let's release those
> > + * resources now.
> > + */
> > + if (ctx->disable_resources_needed) {
> > + if (!ctx->irq)
> > + sn65dsi83_monitor_stop(ctx);
> > +
> > + gpiod_set_value_cansleep(ctx->enable_gpio, 0);
> > + usleep_range(10000, 11000);
> > +
> > + regulator_disable(ctx->vcc);
> > + }
>
> I'm not sure you need this. Wouldn't registering a devm action do the
> same thing?
Good idea, thanks. I'll give it a try.
Luca
--
Luca Ceresoli, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2025-08-20 11:13 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-08 13:24 [PATCH 0/2] drm/bridge: handle gracefully atomic updates during bridge removal Luca Ceresoli
2025-08-08 13:24 ` [PATCH 1/2] drm/bridge: add drm_bridge_unplug() and drm_bridge_enter/exit() Luca Ceresoli
2025-08-08 13:24 ` [PATCH 2/2] drm/bridge: ti-sn65dsi83: protect device resources on unplug Luca Ceresoli
2025-08-19 12:29 ` Maxime Ripard
2025-08-20 11:13 ` Luca Ceresoli [this message]
2025-08-27 7:46 ` Maxime Ripard
2025-09-08 13:49 ` Luca Ceresoli
2025-09-10 10:59 ` Maxime Ripard
2025-09-10 16:47 ` Luca Ceresoli
2025-09-15 12:03 ` Maxime Ripard
2025-09-15 14:51 ` Luca Ceresoli
2025-09-26 16:37 ` Luca Ceresoli
2025-10-07 15:09 ` Maxime Ripard
2025-10-09 14:48 ` Luca Ceresoli
2025-09-08 13:49 ` Luca Ceresoli
2025-09-10 7:52 ` Maxime Ripard
2025-09-10 16:34 ` Luca Ceresoli
2025-09-11 6:44 ` Maxime Ripard
2025-09-11 13:09 ` Luca Ceresoli
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=20250820131302.6a2da5ef@booty \
--to=luca.ceresoli@bootlin.com \
--cc=Hui.Pu@gehealthcare.com \
--cc=Laurent.pinchart@ideasonboard.com \
--cc=airlied@gmail.com \
--cc=andrzej.hajda@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=jernej.skrabec@gmail.com \
--cc=jonas@kwiboo.se \
--cc=linux-kernel@vger.kernel.org \
--cc=lumag@kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=rfoss@kernel.org \
--cc=simona@ffwll.ch \
--cc=thomas.petazzoni@bootlin.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 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.