public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Louis Chauvet <louis.chauvet@bootlin.com>
Cc: Luca Ceresoli <luca.ceresoli@bootlin.com>,
	Biju Das <biju.das.jz@bp.renesas.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>,
	Anitha Chrisanthus <anitha.chrisanthus@intel.com>,
	Linus Walleij <linusw@kernel.org>,
	Tomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com>,
	Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Magnus Damm <magnus.damm@gmail.com>,
	Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>,
	Hui Pu <Hui.Pu@gehealthcare.com>,
	Ian Ray <ian.ray@gehealthcare.com>,
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
	dri-devel@lists.freedesktop.org,
	linux-renesas-soc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 3/4] drm: rcar-du: encoder: convert to of_drm_find_and_get_bridge()
Date: Thu, 9 Apr 2026 00:31:56 +0300	[thread overview]
Message-ID: <20260408213156.GL1965119@killaraus.ideasonboard.com> (raw)
In-Reply-To: <4cd29943-a8d0-4706-b0c5-01d6b33863e4@bootlin.com>

On Wed, Apr 08, 2026 at 06:03:01PM +0200, Louis Chauvet wrote:
> On 4/2/26 18:27, Luca Ceresoli wrote:
> > of_drm_find_bridge() is deprecated. Move to its replacement
> > of_drm_find_and_get_bridge() which gets a bridge reference, and ensure it
> > is put when done.
> > 
> > We need to handle the two cases: when a panel_bridge is added and when it
> > isn't. So:
> > 
> >   * in the 'else' case a panel_bridge is not added and bridge is found: use
> >     of_drm_find_and_get_bridge() to get a reference to the found bridge
> >   * in the 'then' case a panel_bridge is found using a devm function which
> >     already takes a refcount and will put it on removal, but we need to take
> >     another so the following code in this function always get exactly one
> >     reference that it needs to put
> > 
> > In order to put the reference, add the needed drm_bridge_put() calls in the
> > existing cleanup function.
> > 
> > Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
> > 
> > ---
> > 
> > Changes in v4:
> > - fixed conflict after commit 3bce3fdd1ff2 ("drm: rcar-du: Don't leak
> >    device_link to CMM")
> > - Use ARRAY_SIZE() instead of define
> > - Unsigned variable for never-negative variable
> > - Added comment to clarify the additional drm_bridge_get() in the
> >    panel_bridge case
> > - Coding style (C comments, line wrap at 80)
> > ---
> >   drivers/gpu/drm/renesas/rcar-du/rcar_du_encoder.c | 35 +++++++++++++++++++----
> >   drivers/gpu/drm/renesas/rcar-du/rcar_du_encoder.h |  1 +
> >   drivers/gpu/drm/renesas/rcar-du/rcar_du_kms.c     |  2 ++
> >   3 files changed, 32 insertions(+), 6 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/renesas/rcar-du/rcar_du_encoder.c b/drivers/gpu/drm/renesas/rcar-du/rcar_du_encoder.c
> > index 7ecec7b04a8d..0ae06edf3066 100644
> > --- a/drivers/gpu/drm/renesas/rcar-du/rcar_du_encoder.c
> > +++ b/drivers/gpu/drm/renesas/rcar-du/rcar_du_encoder.c
> > @@ -51,7 +51,7 @@ int rcar_du_encoder_init(struct rcar_du_device *rcdu,
> >   {
> >   	struct rcar_du_encoder *renc;
> >   	struct drm_connector *connector;
> > -	struct drm_bridge *bridge;
> > +	struct drm_bridge *bridge __free(drm_bridge_put) = NULL;
> >   	int ret;
> >   
> >   	/*
> > @@ -69,20 +69,33 @@ int rcar_du_encoder_init(struct rcar_du_device *rcdu,
> >   
> >   		bridge = devm_drm_panel_bridge_add_typed(rcdu->dev, panel,
> >   							 DRM_MODE_CONNECTOR_DPI);
> > -		if (IS_ERR(bridge))
> > -			return PTR_ERR(bridge);
> > +		if (IS_ERR(bridge)) {
> > +			/* Inhibit the cleanup action on an ERR_PTR */
> > +			ret = PTR_ERR(bridge);
> > +			bridge = NULL;
> > +			return ret;
> 
> Same as before, can you use no_free_ptr?

That would be nice. You could then drop the comment, as no_free_ptr
makes it explicit.

Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>

> With or without this modification:
> 
> Reviewed-by: Louis Chauvet <louis.chauvet@bootlin.com>
> 
> > +		}
> > +
> > +		/*
> > +		 * The reference taken by devm_drm_panel_bridge_add_typed() is
> > +		 * released automatically. Take a second one for the __free()
> > +		 * when this function will return.
> > +		 */
> > +		drm_bridge_get(bridge);
> >   	} else {
> > -		bridge = of_drm_find_bridge(enc_node);
> > +		bridge = of_drm_find_and_get_bridge(enc_node);
> >   		if (!bridge)
> >   			return -EPROBE_DEFER;
> >   
> >   		if (output == RCAR_DU_OUTPUT_LVDS0 ||
> >   		    output == RCAR_DU_OUTPUT_LVDS1)
> > -			rcdu->lvds[output - RCAR_DU_OUTPUT_LVDS0] = bridge;
> > +			rcdu->lvds[output - RCAR_DU_OUTPUT_LVDS0] =
> > +				drm_bridge_get(bridge);
> >   
> >   		if (output == RCAR_DU_OUTPUT_DSI0 ||
> >   		    output == RCAR_DU_OUTPUT_DSI1)
> > -			rcdu->dsi[output - RCAR_DU_OUTPUT_DSI0] = bridge;
> > +			rcdu->dsi[output - RCAR_DU_OUTPUT_DSI0] =
> > +				drm_bridge_get(bridge);
> >   	}
> >   
> >   	/*
> > @@ -135,3 +148,13 @@ int rcar_du_encoder_init(struct rcar_du_device *rcdu,
> >   
> >   	return drm_connector_attach_encoder(connector, &renc->base);
> >   }
> > +
> > +void rcar_du_encoder_cleanup(struct rcar_du_device *rcdu)
> > +{
> > +	unsigned int i;
> > +
> > +	for (i = 0; i < ARRAY_SIZE(rcdu->lvds); i++)
> > +		drm_bridge_put(rcdu->lvds[i]);
> > +	for (i = 0; i < ARRAY_SIZE(rcdu->dsi); i++)
> > +		drm_bridge_put(rcdu->dsi[i]);
> > +}
> > diff --git a/drivers/gpu/drm/renesas/rcar-du/rcar_du_encoder.h b/drivers/gpu/drm/renesas/rcar-du/rcar_du_encoder.h
> > index e5ec8fbb3979..b2b5e93f30f8 100644
> > --- a/drivers/gpu/drm/renesas/rcar-du/rcar_du_encoder.h
> > +++ b/drivers/gpu/drm/renesas/rcar-du/rcar_du_encoder.h
> > @@ -25,5 +25,6 @@ struct rcar_du_encoder {
> >   int rcar_du_encoder_init(struct rcar_du_device *rcdu,
> >   			 enum rcar_du_output output,
> >   			 struct device_node *enc_node);
> > +void rcar_du_encoder_cleanup(struct rcar_du_device *rcdu);
> >   
> >   #endif /* __RCAR_DU_ENCODER_H__ */
> > diff --git a/drivers/gpu/drm/renesas/rcar-du/rcar_du_kms.c b/drivers/gpu/drm/renesas/rcar-du/rcar_du_kms.c
> > index b2d0e4651e35..1119c84e5fe9 100644
> > --- a/drivers/gpu/drm/renesas/rcar-du/rcar_du_kms.c
> > +++ b/drivers/gpu/drm/renesas/rcar-du/rcar_du_kms.c
> > @@ -832,6 +832,8 @@ static void rcar_du_modeset_cleanup(struct drm_device *dev, void *res)
> >   
> >   		put_device(cmm->dev);
> >   	}
> > +
> > +	rcar_du_encoder_cleanup(rcdu);
> >   }
> >   
> >   int rcar_du_modeset_init(struct rcar_du_device *rcdu)
> > 

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2026-04-08 21:32 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-02 16:27 [PATCH v4 0/4] drm/bridge: convert users of of_drm_find_bridge(), part 4 Luca Ceresoli
2026-04-02 16:27 ` [PATCH v4 1/4] drm: renesas: rz-du: rzg2l_du_encoder: convert to of_drm_find_and_get_bridge() Luca Ceresoli
2026-04-08 15:44   ` Louis Chauvet
2026-04-08 17:39     ` Luca Ceresoli
2026-04-08 21:33       ` Laurent Pinchart
2026-04-09 12:32         ` Luca Ceresoli
2026-04-02 16:27 ` [PATCH v4 2/4] drm/kmb/dsi: " Luca Ceresoli
2026-04-08 15:44   ` Louis Chauvet
2026-04-02 16:27 ` [PATCH v4 3/4] drm: rcar-du: encoder: " Luca Ceresoli
2026-04-08 16:03   ` Louis Chauvet
2026-04-08 21:31     ` Laurent Pinchart [this message]
2026-04-02 16:27 ` [PATCH v4 4/4] drm/omap: dss: " Luca Ceresoli
2026-04-08 16:14   ` Louis Chauvet
2026-04-07  9:40 ` [PATCH v4 0/4] drm/bridge: convert users of of_drm_find_bridge(), part 4 Linus Walleij
2026-04-09 12:59 ` (subset) " 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=20260408213156.GL1965119@killaraus.ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=Hui.Pu@gehealthcare.com \
    --cc=airlied@gmail.com \
    --cc=anitha.chrisanthus@intel.com \
    --cc=biju.das.jz@bp.renesas.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=geert+renesas@glider.be \
    --cc=ian.ray@gehealthcare.com \
    --cc=kieran.bingham+renesas@ideasonboard.com \
    --cc=linusw@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=louis.chauvet@bootlin.com \
    --cc=luca.ceresoli@bootlin.com \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=magnus.damm@gmail.com \
    --cc=mripard@kernel.org \
    --cc=simona@ffwll.ch \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=tomi.valkeinen+renesas@ideasonboard.com \
    --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