From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: dri-devel@lists.freedesktop.org
Cc: Brian Norris <briannorris@chromium.org>,
hl@rock-chips.com, David Airlie <airlied@linux.ie>,
linux-kernel@vger.kernel.org,
Jeffy Chen <jeffy.chen@rock-chips.com>,
Doug Anderson <dianders@chromium.org>,
Philippe Cornu <philippe.cornu@st.com>,
Yannick Fertre <yannick.fertre@st.com>,
linux-rockchip@lists.infradead.org,
Nickey Yang <nickey.yang@rock-chips.com>,
mka@chromium.org, Vincent Abriou <vincent.abriou@st.com>
Subject: Re: [PATCH] drm/bridge/synopsis: stop clobbering drvdata
Date: Tue, 09 Jan 2018 15:36:53 +0200 [thread overview]
Message-ID: <15815822.Bd0fLxLFzJ@avalon> (raw)
In-Reply-To: <20171128182121.GA116479@google.com>
Hi Brian,
On Tuesday, 28 November 2017 20:21:23 EET Brian Norris wrote:
> On Tue, Nov 28, 2017 at 02:51:46PM +0200, Laurent Pinchart wrote:
> > Hi Brian,
> >
> > Thank you for the patch.
> >
> > I'd mention dw-mipi-dsi in the subject line as the directory contains the
> > dw-hdmi driver as well that this patch doesn't touch.
>
> Yep. Does it need another tag in the subject? e.g., '.../dw-mipi-dsi:'?
>
> > On Tuesday, 28 November 2017 03:05:38 EET Brian Norris wrote:
> >> Bridge drivers/helpers shouldn't be clobbering the drvdata, since a
> >> parent driver might need to own this.
> >
> > By parent driver I assume you mean a glue driver that binds to the SoC-
> > specific compatible string for the DSI transmitter.
>
> Indeed. Nickey picked this up for his Rockchip driver submission, but
> maybe we should reword the commit message a bit.
How about "drm: dw-mipi-dsi: Stop clobbering drvdata" ?
> >> Instead, let's return our
> >> 'dw_mipi_dsi' object and have callers pass that back to us for removal.
> >>
> >> Signed-off-by: Brian Norris <briannorris@chromium.org>
> >
> > Wouldn't it be cleaner to embed the dw_mipi_dsi structure in the parent-
> > specific data structure (struct dw_mipi_dsi_stm and struct
> > dw_mipi_dsi_rockchip when the "[PATCH v3 0/5] Update ROCKCHIP DSI driver
> > that uses dw-mipi-dsi bridge" patch series will land) instead of
> > allocating it dynamically ? We would then have a single object to track.
>
> I suppose we could do that too. But that would require exposing the
> whole layout of 'struct dw_mipi_dsi' to users. Do we want to sacrifice
> the enforced separation for a little bit of nicer object handling?
I certainly don't think we should go for spaghetti code with all objects
accessing each other :) On the other hand, we're talking about C code, and we
thus have no way to enforce access restrictions in the compiler, so it's a
lost battle anyway. I don't see an issue with exposing the object in the sense
of moving its definition to a header file if it results in cleaner code. I
think we need to trust developers not to abuse internal APIs, and if they do,
catch it during review.
> Also, this was modeled a bit after the similar rework needed to untangle
> the drvdata handling in the Rockchip analogix DP driver vs. the analogix
> bridge DP code:
>
> [PATCH v6 03/10] drm/bridge: analogix: Do not use device's drvdata
> https://patchwork.kernel.org/patch/10015875/
--
Regards,
Laurent Pinchart
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
WARNING: multiple messages have this Message-ID (diff)
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: dri-devel@lists.freedesktop.org
Cc: Brian Norris <briannorris@chromium.org>,
Doug Anderson <dianders@chromium.org>,
hl@rock-chips.com, linux-rockchip@lists.infradead.org,
David Airlie <airlied@linux.ie>,
Jeffy Chen <jeffy.chen@rock-chips.com>,
Philippe Cornu <philippe.cornu@st.com>,
linux-kernel@vger.kernel.org,
Yannick Fertre <yannick.fertre@st.com>,
Nickey Yang <nickey.yang@rock-chips.com>,
mka@chromium.org, Vincent Abriou <vincent.abriou@st.com>
Subject: Re: [PATCH] drm/bridge/synopsis: stop clobbering drvdata
Date: Tue, 09 Jan 2018 15:36:53 +0200 [thread overview]
Message-ID: <15815822.Bd0fLxLFzJ@avalon> (raw)
In-Reply-To: <20171128182121.GA116479@google.com>
Hi Brian,
On Tuesday, 28 November 2017 20:21:23 EET Brian Norris wrote:
> On Tue, Nov 28, 2017 at 02:51:46PM +0200, Laurent Pinchart wrote:
> > Hi Brian,
> >
> > Thank you for the patch.
> >
> > I'd mention dw-mipi-dsi in the subject line as the directory contains the
> > dw-hdmi driver as well that this patch doesn't touch.
>
> Yep. Does it need another tag in the subject? e.g., '.../dw-mipi-dsi:'?
>
> > On Tuesday, 28 November 2017 03:05:38 EET Brian Norris wrote:
> >> Bridge drivers/helpers shouldn't be clobbering the drvdata, since a
> >> parent driver might need to own this.
> >
> > By parent driver I assume you mean a glue driver that binds to the SoC-
> > specific compatible string for the DSI transmitter.
>
> Indeed. Nickey picked this up for his Rockchip driver submission, but
> maybe we should reword the commit message a bit.
How about "drm: dw-mipi-dsi: Stop clobbering drvdata" ?
> >> Instead, let's return our
> >> 'dw_mipi_dsi' object and have callers pass that back to us for removal.
> >>
> >> Signed-off-by: Brian Norris <briannorris@chromium.org>
> >
> > Wouldn't it be cleaner to embed the dw_mipi_dsi structure in the parent-
> > specific data structure (struct dw_mipi_dsi_stm and struct
> > dw_mipi_dsi_rockchip when the "[PATCH v3 0/5] Update ROCKCHIP DSI driver
> > that uses dw-mipi-dsi bridge" patch series will land) instead of
> > allocating it dynamically ? We would then have a single object to track.
>
> I suppose we could do that too. But that would require exposing the
> whole layout of 'struct dw_mipi_dsi' to users. Do we want to sacrifice
> the enforced separation for a little bit of nicer object handling?
I certainly don't think we should go for spaghetti code with all objects
accessing each other :) On the other hand, we're talking about C code, and we
thus have no way to enforce access restrictions in the compiler, so it's a
lost battle anyway. I don't see an issue with exposing the object in the sense
of moving its definition to a header file if it results in cleaner code. I
think we need to trust developers not to abuse internal APIs, and if they do,
catch it during review.
> Also, this was modeled a bit after the similar rework needed to untangle
> the drvdata handling in the Rockchip analogix DP driver vs. the analogix
> bridge DP code:
>
> [PATCH v6 03/10] drm/bridge: analogix: Do not use device's drvdata
> https://patchwork.kernel.org/patch/10015875/
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2018-01-09 13:36 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-28 1:05 [PATCH] drm/bridge/synopsis: stop clobbering drvdata Brian Norris
2017-11-28 1:05 ` Brian Norris
2017-11-28 2:25 ` Matthias Kaehlcke
2017-11-28 2:25 ` Matthias Kaehlcke
2017-11-28 6:27 ` Archit Taneja
2017-11-28 9:34 ` Philippe CORNU
2017-11-28 9:34 ` Philippe CORNU
2018-01-09 13:01 ` Philippe CORNU
2018-01-09 13:01 ` Philippe CORNU
2018-01-09 13:37 ` Laurent Pinchart
2018-01-09 13:37 ` Laurent Pinchart
2018-01-09 13:45 ` Andrzej Hajda
2018-01-09 13:45 ` Andrzej Hajda
2017-11-28 12:51 ` Laurent Pinchart
2017-11-28 18:21 ` Brian Norris
2017-11-28 18:21 ` Brian Norris
2018-01-09 13:36 ` Laurent Pinchart [this message]
2018-01-09 13:36 ` Laurent Pinchart
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=15815822.Bd0fLxLFzJ@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=airlied@linux.ie \
--cc=briannorris@chromium.org \
--cc=dianders@chromium.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=hl@rock-chips.com \
--cc=jeffy.chen@rock-chips.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=mka@chromium.org \
--cc=nickey.yang@rock-chips.com \
--cc=philippe.cornu@st.com \
--cc=vincent.abriou@st.com \
--cc=yannick.fertre@st.com \
/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.