From: jacopo mondi <jacopo@jmondi.org>
To: Sakari Ailus <sakari.ailus@linux.intel.com>
Cc: Jacopo Mondi <jacopo+renesas@jmondi.org>,
mchehab@kernel.org, robh+dt@kernel.org, mark.rutland@arm.com,
slongerbeam@gmail.com, laurent.pinchart@ideasonboard.com,
linux-media@vger.kernel.org, devicetree@vger.kernel.org,
linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH 3/3] media: renesas-ceu: Use default mbus settings
Date: Thu, 13 Sep 2018 16:28:19 +0200 [thread overview]
Message-ID: <20180913142819.GG11509@w540> (raw)
In-Reply-To: <20180913142236.4g2eo3exn7rjwlpk@kekkonen.localdomain>
[-- Attachment #1: Type: text/plain, Size: 3296 bytes --]
Hi Sakari,
On Thu, Sep 13, 2018 at 05:22:36PM +0300, Sakari Ailus wrote:
> Hi Jacopo,
>
> On Thu, Sep 13, 2018 at 03:59:51PM +0200, Jacopo Mondi wrote:
> > As the v4l2-fwnode now allows drivers to set defaults, and eventually
> > override them by specifying properties in DTS, use defaults for the CEU
> > driver.
> >
> > Also remove endpoint properties from the gr-peach-audiocamerashield as
> > they match the defaults now specified in the driver code.
> >
> > Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
> > ---
> > arch/arm/boot/dts/gr-peach-audiocamerashield.dtsi | 4 ----
> > drivers/media/platform/renesas-ceu.c | 20 +++++++++++---------
> > 2 files changed, 11 insertions(+), 13 deletions(-)
> >
> > diff --git a/arch/arm/boot/dts/gr-peach-audiocamerashield.dtsi b/arch/arm/boot/dts/gr-peach-audiocamerashield.dtsi
> > index e31a9e3..8d77579 100644
> > --- a/arch/arm/boot/dts/gr-peach-audiocamerashield.dtsi
> > +++ b/arch/arm/boot/dts/gr-peach-audiocamerashield.dtsi
> > @@ -69,10 +69,6 @@
> >
> > port {
> > ceu_in: endpoint {
> > - hsync-active = <1>;
> > - vsync-active = <1>;
> > - bus-width = <8>;
> > - pclk-sample = <1>;
>
> Do I understand correctly that pclk-sample was never relevant for the
> hardware, and is removed because of that? You could mention that in the
> commit message. That's perhaps a minor detail.
Correct, it's not relevant for the CEU, as it cannot be configured.
>
> The set seems good to me.
I can add that to commit message and re-send, or if it's easier for
you, you can change the last paragraph when applying to:
Also remove endpoint properties from the gr-peach-audiocamerashield as
they match the defaults now specified in the driver code
(h/vsync-active and bus-width) or are not relevant to the interface
as they cannot be configured (pclk-sample).
Thanks
j
>
> > remote-endpoint = <&mt9v111_out>;
> > };
> > };
> > diff --git a/drivers/media/platform/renesas-ceu.c b/drivers/media/platform/renesas-ceu.c
> > index 035f1d3..150196f 100644
> > --- a/drivers/media/platform/renesas-ceu.c
> > +++ b/drivers/media/platform/renesas-ceu.c
> > @@ -1551,7 +1551,16 @@ static int ceu_parse_dt(struct ceu_device *ceudev)
> > return ret;
> >
> > for (i = 0; i < num_ep; i++) {
> > - struct v4l2_fwnode_endpoint fw_ep = { .bus_type = 0 };
> > + struct v4l2_fwnode_endpoint fw_ep = {
> > + .bus_type = V4L2_MBUS_PARALLEL,
> > + .bus = {
> > + .parallel = {
> > + .flags = V4L2_MBUS_HSYNC_ACTIVE_HIGH |
> > + V4L2_MBUS_VSYNC_ACTIVE_HIGH,
> > + .bus_width = 8,
> > + },
> > + },
> > + };
> >
> > ep = of_graph_get_endpoint_by_regs(of, 0, i);
> > if (!ep) {
> > @@ -1564,14 +1573,7 @@ static int ceu_parse_dt(struct ceu_device *ceudev)
> > ret = v4l2_fwnode_endpoint_parse(of_fwnode_handle(ep), &fw_ep);
> > if (ret) {
> > dev_err(ceudev->dev,
> > - "Unable to parse endpoint #%u.\n", i);
> > - goto error_cleanup;
> > - }
> > -
> > - if (fw_ep.bus_type != V4L2_MBUS_PARALLEL) {
> > - dev_err(ceudev->dev,
> > - "Only parallel input supported.\n");
> > - ret = -EINVAL;
> > + "Unable to parse endpoint #%u: %d.\n", i, ret);
> > goto error_cleanup;
> > }
> >
>
> --
> Kind regards,
>
> Sakari Ailus
> sakari.ailus@linux.intel.com
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
prev parent reply other threads:[~2018-09-13 14:28 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-13 13:59 [PATCH 0/3] media: renesas-ceu: Introduce default mbus configuration Jacopo Mondi
2018-09-13 13:59 ` [PATCH 1/3] dt-bindings: media: renesas-ceu: Refer to video-interfaces.txt Jacopo Mondi
2018-09-13 13:59 ` [PATCH 2/3] dt-bindings: media: renesas-ceu: Add more endpoint properties Jacopo Mondi
2018-09-13 13:59 ` [PATCH 3/3] media: renesas-ceu: Use default mbus settings Jacopo Mondi
2018-09-13 14:22 ` Sakari Ailus
2018-09-13 14:28 ` jacopo mondi [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=20180913142819.GG11509@w540 \
--to=jacopo@jmondi.org \
--cc=devicetree@vger.kernel.org \
--cc=jacopo+renesas@jmondi.org \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-media@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mchehab@kernel.org \
--cc=robh+dt@kernel.org \
--cc=sakari.ailus@linux.intel.com \
--cc=slongerbeam@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox