From: jacopo mondi <jacopo@jmondi.org>
To: Hans Verkuil <hverkuil@xs4all.nl>,
Simon Horman <horms@verge.net.au>,
Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Jacopo Mondi <jacopo+renesas@jmondi.org>,
niklas.soderlund@ragnatech.se, laurent.pinchart@ideasonboard.com,
mchehab@kernel.org, linux-media@vger.kernel.org,
linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH v6 10/10] media: rcar-vin: Add support for R-Car R8A77995 SoC
Date: Wed, 4 Jul 2018 09:49:46 +0200 [thread overview]
Message-ID: <20180704074946.GA1240@w540> (raw)
In-Reply-To: <1fc42981-2269-d6f5-921d-6730661542c7@xs4all.nl>
[-- Attachment #1: Type: text/plain, Size: 2483 bytes --]
Hi Hans,
On Wed, Jul 04, 2018 at 09:36:34AM +0200, Hans Verkuil wrote:
> On 12/06/18 11:43, Jacopo Mondi wrote:
> > Add R-Car R8A77995 SoC to the rcar-vin supported ones.
> >
> > Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
> > Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> > Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>
> Checkpatch reports:
>
> WARNING: DT compatible string "renesas,vin-r8a77995" appears un-documented -- check ./Documentation/devicetree/bindings/
> #29: FILE: drivers/media/platform/rcar-vin/rcar-core.c:1150:
> + .compatible = "renesas,vin-r8a77995",
>
> I'll still accept this series since this compatible string is already used in
> a dtsi, but if someone can document this for the bindings?
A patch has been sent on May 21st for this
https://patchwork.kernel.org/patch/10415587/
Bindings documentation usually gets in a release later than bindings
users, to give time to bindings to be changed eventually before
being documented.
Simon, Geert, is this correct?
Thanks
j
>
> Regards,
>
> Hans
>
> > ---
> > drivers/media/platform/rcar-vin/rcar-core.c | 16 ++++++++++++++++
> > 1 file changed, 16 insertions(+)
> >
> > diff --git a/drivers/media/platform/rcar-vin/rcar-core.c b/drivers/media/platform/rcar-vin/rcar-core.c
> > index a2d166f..bd99d56 100644
> > --- a/drivers/media/platform/rcar-vin/rcar-core.c
> > +++ b/drivers/media/platform/rcar-vin/rcar-core.c
> > @@ -1045,6 +1045,18 @@ static const struct rvin_info rcar_info_r8a77970 = {
> > .routes = rcar_info_r8a77970_routes,
> > };
> >
> > +static const struct rvin_group_route rcar_info_r8a77995_routes[] = {
> > + { /* Sentinel */ }
> > +};
> > +
> > +static const struct rvin_info rcar_info_r8a77995 = {
> > + .model = RCAR_GEN3,
> > + .use_mc = true,
> > + .max_width = 4096,
> > + .max_height = 4096,
> > + .routes = rcar_info_r8a77995_routes,
> > +};
> > +
> > static const struct of_device_id rvin_of_id_table[] = {
> > {
> > .compatible = "renesas,vin-r8a7778",
> > @@ -1086,6 +1098,10 @@ static const struct of_device_id rvin_of_id_table[] = {
> > .compatible = "renesas,vin-r8a77970",
> > .data = &rcar_info_r8a77970,
> > },
> > + {
> > + .compatible = "renesas,vin-r8a77995",
> > + .data = &rcar_info_r8a77995,
> > + },
> > { /* Sentinel */ },
> > };
> > MODULE_DEVICE_TABLE(of, rvin_of_id_table);
> >
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2018-07-04 7:49 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-12 9:43 [PATCH v6 0/10] rcar-vin: Add support for parallel input on Gen3 Jacopo Mondi
2018-06-12 9:43 ` [PATCH v6 01/10] media: rcar-vin: Rename 'digital' to 'parallel' Jacopo Mondi
2018-06-12 9:43 ` [PATCH v6 02/10] media: rcar-vin: Remove two empty lines Jacopo Mondi
2018-06-12 9:43 ` [PATCH v6 03/10] media: rcar-vin: Create a group notifier Jacopo Mondi
2018-07-02 18:07 ` Niklas Söderlund
2018-06-12 9:43 ` [PATCH v6 04/10] media: rcar-vin: Cleanup notifier in error path Jacopo Mondi
2018-06-12 9:43 ` [PATCH v6 05/10] media: rcar-vin: Cache the mbus configuration flags Jacopo Mondi
2018-06-12 9:43 ` [PATCH v6 06/10] media: rcar-vin: Parse parallel input on Gen3 Jacopo Mondi
2018-07-02 18:08 ` Niklas Söderlund
2018-06-12 9:43 ` [PATCH v6 07/10] media: rcar-vin: Link parallel input media entities Jacopo Mondi
2018-06-12 9:43 ` [PATCH v6 08/10] media: rcar-vin: Handle parallel subdev in link_notify Jacopo Mondi
2018-06-12 9:43 ` [PATCH v6 09/10] media: rcar-vin: Rename _rcar_info to rcar_info Jacopo Mondi
2018-06-12 9:43 ` [PATCH v6 10/10] media: rcar-vin: Add support for R-Car R8A77995 SoC Jacopo Mondi
2018-07-04 7:36 ` Hans Verkuil
2018-07-04 7:49 ` jacopo mondi [this message]
2018-07-04 8:00 ` Geert Uytterhoeven
2018-07-04 8:08 ` jacopo mondi
2018-07-04 8:15 ` Hans Verkuil
2018-07-04 8:35 ` jacopo mondi
2018-07-02 18:11 ` [PATCH v6 0/10] rcar-vin: Add support for parallel input on Gen3 Niklas Söderlund
2018-07-03 18:02 ` jacopo mondi
2018-07-04 6:08 ` Niklas Söderlund
2018-07-17 13:00 ` Hans Verkuil
2018-07-17 13:07 ` jacopo mondi
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=20180704074946.GA1240@w540 \
--to=jacopo@jmondi.org \
--cc=geert+renesas@glider.be \
--cc=horms@verge.net.au \
--cc=hverkuil@xs4all.nl \
--cc=jacopo+renesas@jmondi.org \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-media@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=niklas.soderlund@ragnatech.se \
/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;
as well as URLs for NNTP newsgroup(s).