From: jacopo mondi <jacopo@jmondi.org>
To: "Niklas Söderlund" <niklas.soderlund@ragnatech.se>
Cc: Jacopo Mondi <jacopo+renesas@jmondi.org>,
laurent.pinchart@ideasonboard.com, linux-media@vger.kernel.org,
linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH 2/5] media: rcar-vin: Add digital input subdevice parsing
Date: Mon, 14 May 2018 10:06:46 +0200 [thread overview]
Message-ID: <20180514080646.GB5956@w540> (raw)
In-Reply-To: <20180511110124.GC18974@bigcity.dyn.berto.se>
[-- Attachment #1: Type: text/plain, Size: 4198 bytes --]
Hi Niklas,
On Fri, May 11, 2018 at 01:01:24PM +0200, Niklas Söderlund wrote:
> Hi Jacopo,
>
> Thanks for your work!
>
> The comments here apply to both 2/5 and 3/5.
>
> On 2018-05-11 11:59:38 +0200, Jacopo Mondi wrote:
> > Add support for digital input subdevices to Gen-3 rcar-vin.
> > The Gen-3, media-controller compliant, version has so far only accepted
> > CSI-2 input subdevices. Remove assumptions on the supported bus_type and
> > accepted number of subdevices, and allow digital input connections on port@0.
>
> I feel this much more complex then it has to be. You defer parsing the
> DT graph until all VIN's are probed just like it's done for the port@1
> parsing. For the CSI-2 endpoints in port@1 this is needed as they are
> shared for all VIN's in the group. While for the parallel input this is
> local for each VIN and could be parsed at probe time for each individual
> VIN. As a bonus for doing that I think you could reuse the parallel
> parsing functions from the Gen2 code whit small additions.
>
> Maybe something like this can be done:
>
> - At each VIN probe() rework the block
>
> if (vin->info->use_mc)
> ret = rvin_mc_init(vin);
> else
> ret = rvin_digital_graph_init(vin);
>
> To:
> ret = rvin_digital_graph_init(vin);
> ...
> ret = rvin_mc_init(vin);
> ...
>
> - Then in rvin_digital_graph_init() don't call
> v4l2_async_notifier_register() if vin->info->use_mc is set.
>
> And instead as a last step in rvin_mc_init() call
> v4l2_async_notifier_register() for each vin->notifier that contains a
> subdevice.
>
> - As a last step add a check for vin->info->use_mc in
> rvin_digital_notify_complete() and handle the case for Gen2 behavior
> (what it does now) and Gen3 behavior (adding the MC link).
>
>
> I think my doing this you could greatly simplify the process of handling
> the parallel subdevice.
>
> Please see bellow for one additional comment.
Thanks for the suggestion.
My understanding was that the 'Gen2' was planned for removal in the
long term, and we should have paved the road for a
media-controller-only version of the driver. But I admit I didn't even
try to re-use that code part, I'll give your suggestions a spin, if
this won't prevent future removal of the non-mc part of the driver.
>
> >
> > Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
> > ---
> > drivers/media/platform/rcar-vin/rcar-core.c | 166 +++++++++++++++++++++++-----
> > drivers/media/platform/rcar-vin/rcar-vin.h | 13 +++
> > 2 files changed, 153 insertions(+), 26 deletions(-)
> >
> > diff --git a/drivers/media/platform/rcar-vin/rcar-core.c b/drivers/media/platform/rcar-vin/rcar-core.c
> > index e547ef7..105b6b6 100644
> > --- a/drivers/media/platform/rcar-vin/rcar-core.c
> > +++ b/drivers/media/platform/rcar-vin/rcar-core.c
> > @@ -697,29 +697,21 @@ static const struct v4l2_async_notifier_operations rvin_group_notify_ops = {
> > .complete = rvin_group_notify_complete,
[snip]
> > +
> > + switch (vep->base.port) {
> > + case RVIN_PORT_DIGITAL:
> > + ret = rvin_mc_parse_of_digital(vin, vep, asd);
> > + break;
> > + case RVIN_PORT_CSI2:
> > + default:
> > + ret = rvin_mc_parse_of_csi2(vin, vep, asd);
> > + break;
> > + }
> > + /*
[snip]
> > +
> > + switch (ep.port) {
> > + case RVIN_PORT_DIGITAL:
> > + asd_struct_size = sizeof(struct rvin_graph_entity);
> > + break;
> > + case RVIN_PORT_CSI2:
> > + asd_struct_size = sizeof(struct v4l2_async_subdev);
> > + break;
> > + default:
> > };
[snip]
> >
> > /**
> > + * enum rvin_port_id
> > + *
> > + * List the available VIN port functions.
> > + *
> > + * RVIN_PORT_DIGITAL - Input port for digital video connection
> > + * RVIN_PORT_CSI2 - Input port for CSI-2 video connection
> > + */
> > +enum rvin_port_id {
> > + RVIN_PORT_DIGITAL,
> > + RVIN_PORT_CSI2
> > +};
>
> This enum is never used in the patch-set is it used later by a different
> patch-set or a left over from refactoring?
I see two occurencies each of this enumeration members in this patch.
I left them un-cut above.
Thanks
j
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2018-05-14 8:06 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-11 9:59 [PATCH 0/5] rcar-vin: Add support for digital input on Gen3 Jacopo Mondi
2018-05-11 9:59 ` [PATCH 1/5] media: rcar-vin: Add support for R-Car R8A77995 SoC Jacopo Mondi
2018-05-11 10:44 ` Niklas Söderlund
2018-05-14 2:46 ` Laurent Pinchart
2018-05-11 9:59 ` [PATCH 2/5] media: rcar-vin: Add digital input subdevice parsing Jacopo Mondi
2018-05-11 11:01 ` Niklas Söderlund
2018-05-14 8:06 ` jacopo mondi [this message]
2018-05-11 9:59 ` [PATCH 3/5] media: rcar-vin: [un]bind and link digital subdevice Jacopo Mondi
2018-05-11 9:59 ` [PATCH 4/5] media: rcar-vin: Do not use crop if not configured Jacopo Mondi
2018-05-11 11:10 ` Niklas Söderlund
2018-05-11 11:34 ` Niklas Söderlund
2018-05-11 9:59 ` [PATCH 5/5] media: rcar-vin: Use FTEV for digital input Jacopo Mondi
2018-05-11 10:28 ` Hans Verkuil
2018-05-11 14:53 ` jacopo mondi
2018-05-12 9:32 ` Sergei Shtylyov
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=20180514080646.GB5956@w540 \
--to=jacopo@jmondi.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=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