From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Steve Longerbeam <slongerbeam@gmail.com>
Cc: linux-media@vger.kernel.org,
Sakari Ailus <sakari.ailus@linux.intel.com>,
Mauro Carvalho Chehab <mchehab+huawei@kernel.org>,
Hans Verkuil <hverkuil-cisco@xs4all.nl>,
Rui Miguel Silva <rmfrfs@gmail.com>,
Philipp Zabel <p.zabel@pengutronix.de>
Subject: Re: [PATCH v4 09/17] media: video-mux: Create media links in bound notifier
Date: Wed, 15 Apr 2020 02:16:17 +0300 [thread overview]
Message-ID: <20200414231617.GE27621@pendragon.ideasonboard.com> (raw)
In-Reply-To: <20200303234256.8928-10-slongerbeam@gmail.com>
Hi Steve,
Thank you for the patch.
On Tue, Mar 03, 2020 at 03:42:48PM -0800, Steve Longerbeam wrote:
> Implement a notifier bound op to register media links from the remote
> sub-device's source pad(s) to the video-mux sink pad(s).
>
> Signed-off-by: Steve Longerbeam <slongerbeam@gmail.com>
> ---
> Changes in v3:
> - this version does the work inline. The previous version called
> a media_create_fwnode_links() which is removed in v3.
> ---
> drivers/media/platform/video-mux.c | 92 ++++++++++++++++++++++++++++++
> 1 file changed, 92 insertions(+)
>
> diff --git a/drivers/media/platform/video-mux.c b/drivers/media/platform/video-mux.c
> index f446ada82176..3991b1ea671c 100644
> --- a/drivers/media/platform/video-mux.c
> +++ b/drivers/media/platform/video-mux.c
> @@ -36,6 +36,12 @@ static const struct v4l2_mbus_framefmt video_mux_format_mbus_default = {
> .field = V4L2_FIELD_NONE,
> };
>
> +static inline struct video_mux *
> +notifier_to_video_mux(struct v4l2_async_notifier *n)
> +{
> + return container_of(n, struct video_mux, notifier);
> +}
> +
> static inline struct video_mux *v4l2_subdev_to_video_mux(struct v4l2_subdev *sd)
> {
> return container_of(sd, struct video_mux, subdev);
> @@ -360,6 +366,90 @@ static const struct v4l2_subdev_ops video_mux_subdev_ops = {
> .video = &video_mux_subdev_video_ops,
> };
>
> +static int video_mux_notify_bound(struct v4l2_async_notifier *notifier,
> + struct v4l2_subdev *sd,
> + struct v4l2_async_subdev *asd)
> +{
> + struct video_mux *vmux = notifier_to_video_mux(notifier);
> + struct fwnode_handle *vmux_fwnode = dev_fwnode(vmux->subdev.dev);
> + struct fwnode_handle *sd_fwnode = dev_fwnode(sd->dev);
> + struct fwnode_handle *vmux_ep;
There doesn't seem to be anything in this function that is specific to
the video_mux driver. I think it would make sense to turn it into a
generic helper that creates links between two subdevs based on their
fwnode connections.
I also wonder if it wouldn't be more efficient to create links at
complete() time instead of bound() time, in which case the helper would
create all links for a given subdevice, not links between two specific
subdevices (or maybe all links for a given pad direction, to be able to
remove the existing link check below).
> +
> + fwnode_graph_for_each_endpoint(vmux_fwnode, vmux_ep) {
> + struct fwnode_handle *remote_ep, *sd_ep;
> + struct media_pad *src_pad, *sink_pad;
> + struct fwnode_endpoint fwep;
> + int src_idx, sink_idx, ret;
> + bool remote_ep_belongs;
> +
> + ret = fwnode_graph_parse_endpoint(vmux_ep, &fwep);
> + if (ret)
> + continue;
> +
> + /* only create links to the vmux sink pads */
> + if (fwep.port >= vmux->subdev.entity.num_pads - 1)
> + continue;
> +
> + sink_idx = fwep.port;
> + sink_pad = &vmux->subdev.entity.pads[sink_idx];
> +
> + remote_ep = fwnode_graph_get_remote_endpoint(vmux_ep);
> + if (!remote_ep)
> + continue;
> +
> + /*
> + * verify that this remote endpoint is owned by the
> + * sd, in case the sd does not check for that in its
> + * .get_fwnode_pad operation or does not implement it.
> + */
> + remote_ep_belongs = false;
> + fwnode_graph_for_each_endpoint(sd_fwnode, sd_ep) {
> + if (sd_ep == remote_ep) {
> + remote_ep_belongs = true;
> + fwnode_handle_put(sd_ep);
> + break;
> + }
> + }
> + if (!remote_ep_belongs)
> + continue;
> +
> + src_idx = media_entity_get_fwnode_pad(&sd->entity, remote_ep,
> + MEDIA_PAD_FL_SOURCE);
> + fwnode_handle_put(remote_ep);
> +
> + if (src_idx < 0)
> + continue;
> +
> + src_pad = &sd->entity.pads[src_idx];
> +
> + /* skip this link if it already exists */
> + if (media_entity_find_link(src_pad, sink_pad))
> + continue;
Have you encountered this in practice ? If we only create links for sink
pads this shouldn't happen.
> +
> + ret = media_create_pad_link(&sd->entity, src_idx,
> + &vmux->subdev.entity,
> + sink_idx, 0);
> + if (ret) {
> + dev_err(vmux->subdev.dev,
> + "%s:%d -> %s:%d failed with %d\n",
> + sd->entity.name, src_idx,
> + vmux->subdev.entity.name, sink_idx, ret);
> + fwnode_handle_put(vmux_ep);
> + return ret;
> + }
> +
> + dev_dbg(vmux->subdev.dev, "%s:%d -> %s:%d\n",
> + sd->entity.name, src_idx,
> + vmux->subdev.entity.name, sink_idx);
> + }
> +
> + return 0;
> +}
> +
> +static const struct v4l2_async_notifier_operations video_mux_notify_ops = {
> + .bound = video_mux_notify_bound,
> +};
> +
> static int video_mux_async_register(struct video_mux *vmux,
> unsigned int num_input_pads)
> {
> @@ -397,6 +487,8 @@ static int video_mux_async_register(struct video_mux *vmux,
> }
> }
>
> + vmux->notifier.ops = &video_mux_notify_ops;
> +
> ret = v4l2_async_subdev_notifier_register(&vmux->subdev,
> &vmux->notifier);
> if (ret)
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2020-04-14 23:16 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-03 23:42 [PATCH v4 00/17] media: imx: Create media links in bound notifiers Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 01/17] media: entity: Pass entity to get_fwnode_pad operation Steve Longerbeam
2020-04-14 22:58 ` Laurent Pinchart
2020-03-03 23:42 ` [PATCH v4 02/17] media: video-mux: Parse information from firmware without using callbacks Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 03/17] media: imx: " Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 04/17] Revert "media: v4l2-fwnode: Add a convenience function for registering subdevs with notifiers" Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 05/17] media: imx: csi: Implement get_fwnode_pad op Steve Longerbeam
2020-04-14 23:02 ` Laurent Pinchart
2020-03-03 23:42 ` [PATCH v4 06/17] media: imx: mipi csi-2: " Steve Longerbeam
2020-04-14 23:07 ` Laurent Pinchart
2020-04-14 23:20 ` Sakari Ailus
2020-04-14 23:27 ` Laurent Pinchart
2020-04-14 23:56 ` Sakari Ailus
2020-04-14 23:50 ` Steve Longerbeam
2020-04-15 0:43 ` Laurent Pinchart
2020-04-14 23:29 ` Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 07/17] media: video-mux: " Steve Longerbeam
2020-04-14 23:08 ` Laurent Pinchart
2020-04-15 0:17 ` Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 08/17] media: imx: Add imx_media_create_fwnode_pad_link() Steve Longerbeam
2020-04-14 23:21 ` Laurent Pinchart
2020-03-03 23:42 ` [PATCH v4 09/17] media: video-mux: Create media links in bound notifier Steve Longerbeam
2020-04-14 23:16 ` Laurent Pinchart [this message]
2020-04-14 23:47 ` Steve Longerbeam
2020-04-18 0:56 ` Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 10/17] media: imx: mipi csi-2: " Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 11/17] media: imx7: mipi csis: " Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 12/17] media: imx7: csi: " Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 13/17] media: imx: " Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 14/17] media: imx: csi: Lookup upstream endpoint with imx_media_get_pad_fwnode Steve Longerbeam
2020-04-14 23:24 ` Laurent Pinchart
2020-03-03 23:42 ` [PATCH v4 15/17] media: imx: Create missing links from CSI-2 receiver Steve Longerbeam
2020-04-14 23:32 ` Laurent Pinchart
2020-04-15 0:10 ` Steve Longerbeam
2020-03-03 23:42 ` [PATCH v4 16/17] media: imx: silence a couple debug messages Steve Longerbeam
2020-04-14 23:33 ` Laurent Pinchart
2020-03-03 23:42 ` [PATCH v4 17/17] media: imx: TODO: Remove media link creation todos Steve Longerbeam
2020-03-25 18:09 ` [PATCH v4 00/17] media: imx: Create media links in bound notifiers Steve Longerbeam
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=20200414231617.GE27621@pendragon.ideasonboard.com \
--to=laurent.pinchart@ideasonboard.com \
--cc=hverkuil-cisco@xs4all.nl \
--cc=linux-media@vger.kernel.org \
--cc=mchehab+huawei@kernel.org \
--cc=p.zabel@pengutronix.de \
--cc=rmfrfs@gmail.com \
--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