From: Steve Longerbeam <slongerbeam@gmail.com>
To: Hans Verkuil <hverkuil@xs4all.nl>,
Steve Longerbeam <slongerbeam@gmail.com>,
Yong Zhi <yong.zhi@intel.com>,
Sakari Ailus <sakari.ailus@linux.intel.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
niklas.soderlund@ragnatech.se, Sebastian Reichel <sre@kernel.org>,
Hans Verkuil <hans.verkuil@cisco.com>,
Philipp Zabel <p.zabel@pengutronix.de>
Cc: linux-media@vger.kernel.org
Subject: Re: [PATCH v3 02/13] media: v4l2: async: Allow searching for asd of any type
Date: Fri, 20 Apr 2018 09:37:08 -0700 [thread overview]
Message-ID: <11e32de4-075d-e2fd-fd08-eb8b8ad46eeb@gmail.com> (raw)
In-Reply-To: <7956036d-c59c-e12c-b380-a38858306f8e@xs4all.nl>
Hi Hans,
On 04/20/2018 05:22 AM, Hans Verkuil wrote:
> On 03/21/18 01:37, Steve Longerbeam wrote:
>> Generalize v4l2_async_notifier_fwnode_has_async_subdev() to allow
>> searching for any type of async subdev, not just fwnodes. Rename to
>> v4l2_async_notifier_has_async_subdev() and pass it an asd pointer.
>>
>> TODO: support asd compare with CUSTOM match type in asd_equal().
>>
>> Signed-off-by: Steve Longerbeam <steve_longerbeam@mentor.com>
>> ---
>> Changes since v2:
>> - code optimization in asd_equal(), and remove unneeded braces,
>> suggested by Sakari Ailus.
>> Changes since v1:
>> - none
>> ---
>> drivers/media/v4l2-core/v4l2-async.c | 76 ++++++++++++++++++++++--------------
>> 1 file changed, 46 insertions(+), 30 deletions(-)
>>
>> diff --git a/drivers/media/v4l2-core/v4l2-async.c b/drivers/media/v4l2-core/v4l2-async.c
>> index 2b08d03..b59bbac 100644
>> --- a/drivers/media/v4l2-core/v4l2-async.c
>> +++ b/drivers/media/v4l2-core/v4l2-async.c
>> @@ -124,6 +124,34 @@ static struct v4l2_async_subdev *v4l2_async_find_match(
>> return NULL;
>> }
>>
>> +/* Compare two asd's for equivalence */
>> +static bool asd_equal(struct v4l2_async_subdev *asd_x,
>> + struct v4l2_async_subdev *asd_y)
>> +{
>> + if (asd_x->match_type != asd_y->match_type)
>> + return false;
>> +
>> + switch (asd_x->match_type) {
>> + case V4L2_ASYNC_MATCH_DEVNAME:
>> + return strcmp(asd_x->match.device_name,
>> + asd_y->match.device_name) == 0;
>> + case V4L2_ASYNC_MATCH_I2C:
>> + return asd_x->match.i2c.adapter_id ==
>> + asd_y->match.i2c.adapter_id &&
>> + asd_x->match.i2c.address ==
>> + asd_y->match.i2c.address;
>> + case V4L2_ASYNC_MATCH_FWNODE:
>> + return asd_x->match.fwnode == asd_y->match.fwnode;
>> + case V4L2_ASYNC_MATCH_CUSTOM:
>> + /* TODO */
> This TODO suggests that this is needed for some driver(s) and that it
> will be implemented later, but it seems more that nobody actually needs
> this. If that's the case, then I'd just drop this case altogether.
>
> Or do I misunderstand this comment?
No you are correct, I thought maybe this could be implemented
later. There are no platforms that make use of V4L2_ASYNC_MATCH_CUSTOM.
If you don't think there ever will be, I will just drop this.
Steve
>> + return false;
>> + default:
>> + break;
>> + }
>> +
>> + return false;
>> +}
>> +
>> /* Find the sub-device notifier registered by a sub-device driver. */
>> static struct v4l2_async_notifier *v4l2_async_find_subdev_notifier(
>> struct v4l2_subdev *sd)
>> @@ -308,29 +336,22 @@ static void v4l2_async_notifier_unbind_all_subdevs(
>> notifier->parent = NULL;
>> }
>>
>> -/* See if an fwnode can be found in a notifier's lists. */
>> -static bool __v4l2_async_notifier_fwnode_has_async_subdev(
>> - struct v4l2_async_notifier *notifier, struct fwnode_handle *fwnode)
>> +/* See if an async sub-device can be found in a notifier's lists. */
>> +static bool __v4l2_async_notifier_has_async_subdev(
>> + struct v4l2_async_notifier *notifier, struct v4l2_async_subdev *asd)
>> {
>> - struct v4l2_async_subdev *asd;
>> + struct v4l2_async_subdev *asd_y;
>> struct v4l2_subdev *sd;
>>
>> - list_for_each_entry(asd, ¬ifier->waiting, list) {
>> - if (asd->match_type != V4L2_ASYNC_MATCH_FWNODE)
>> - continue;
>> -
>> - if (asd->match.fwnode == fwnode)
>> + list_for_each_entry(asd_y, ¬ifier->waiting, list)
>> + if (asd_equal(asd, asd_y))
>> return true;
>> - }
>>
>> list_for_each_entry(sd, ¬ifier->done, async_list) {
>> if (WARN_ON(!sd->asd))
>> continue;
>>
>> - if (sd->asd->match_type != V4L2_ASYNC_MATCH_FWNODE)
>> - continue;
>> -
>> - if (sd->asd->match.fwnode == fwnode)
>> + if (asd_equal(asd, sd->asd))
>> return true;
>> }
>>
>> @@ -338,32 +359,28 @@ static bool __v4l2_async_notifier_fwnode_has_async_subdev(
>> }
>>
>> /*
>> - * Find out whether an async sub-device was set up for an fwnode already or
>> + * Find out whether an async sub-device was set up already or
>> * whether it exists in a given notifier before @this_index.
>> */
>> -static bool v4l2_async_notifier_fwnode_has_async_subdev(
>> - struct v4l2_async_notifier *notifier, struct fwnode_handle *fwnode,
>> +static bool v4l2_async_notifier_has_async_subdev(
>> + struct v4l2_async_notifier *notifier, struct v4l2_async_subdev *asd,
>> unsigned int this_index)
>> {
>> unsigned int j;
>>
>> lockdep_assert_held(&list_lock);
>>
>> - /* Check that an fwnode is not being added more than once. */
>> + /* Check that an asd is not being added more than once. */
>> for (j = 0; j < this_index; j++) {
>> - struct v4l2_async_subdev *asd = notifier->subdevs[this_index];
>> - struct v4l2_async_subdev *other_asd = notifier->subdevs[j];
>> + struct v4l2_async_subdev *asd_y = notifier->subdevs[j];
>>
>> - if (other_asd->match_type == V4L2_ASYNC_MATCH_FWNODE &&
>> - asd->match.fwnode ==
>> - other_asd->match.fwnode)
>> + if (asd_equal(asd, asd_y))
>> return true;
>> }
>>
>> - /* Check than an fwnode did not exist in other notifiers. */
>> + /* Check that an asd does not exist in other notifiers. */
>> list_for_each_entry(notifier, ¬ifier_list, list)
>> - if (__v4l2_async_notifier_fwnode_has_async_subdev(
>> - notifier, fwnode))
>> + if (__v4l2_async_notifier_has_async_subdev(notifier, asd))
>> return true;
>>
>> return false;
>> @@ -392,12 +409,11 @@ static int __v4l2_async_notifier_register(struct v4l2_async_notifier *notifier)
>> case V4L2_ASYNC_MATCH_CUSTOM:
>> case V4L2_ASYNC_MATCH_DEVNAME:
>> case V4L2_ASYNC_MATCH_I2C:
>> - break;
>> case V4L2_ASYNC_MATCH_FWNODE:
>> - if (v4l2_async_notifier_fwnode_has_async_subdev(
>> - notifier, asd->match.fwnode, i)) {
>> + if (v4l2_async_notifier_has_async_subdev(
>> + notifier, asd, i)) {
>> dev_err(dev,
>> - "fwnode has already been registered or in notifier's subdev list\n");
>> + "asd has already been registered or in notifier's subdev list\n");
>> ret = -EEXIST;
>> goto err_unlock;
>> }
>>
next prev parent reply other threads:[~2018-04-20 16:37 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-21 0:37 [PATCH v3 00/13] media: imx: Switch to subdev notifiers Steve Longerbeam
2018-03-21 0:37 ` [PATCH v3 01/13] media: v4l2-fwnode: ignore endpoints that have no remote port parent Steve Longerbeam
2018-04-20 11:53 ` Hans Verkuil
2018-03-21 0:37 ` [PATCH v3 02/13] media: v4l2: async: Allow searching for asd of any type Steve Longerbeam
2018-04-20 12:22 ` Hans Verkuil
2018-04-20 16:37 ` Steve Longerbeam [this message]
2018-03-21 0:37 ` [PATCH v3 03/13] media: v4l2: async: Add v4l2_async_notifier_add_subdev Steve Longerbeam
2018-04-20 12:24 ` Sakari Ailus
2018-04-20 17:12 ` Steve Longerbeam
2018-05-08 10:12 ` Sakari Ailus
2018-05-09 23:06 ` Steve Longerbeam
2018-06-26 7:12 ` Sakari Ailus
2018-06-26 20:47 ` Steve Longerbeam
2018-07-02 7:49 ` Sakari Ailus
2018-03-21 0:37 ` [PATCH v3 04/13] media: v4l2-fwnode: Switch to v4l2_async_notifier_add_subdev Steve Longerbeam
2018-03-21 0:37 ` [PATCH v3 05/13] media: v4l2-fwnode: Add a convenience function for registering subdevs with notifiers Steve Longerbeam
2018-04-23 7:14 ` Sakari Ailus
2018-04-23 18:00 ` Steve Longerbeam
2018-05-08 10:28 ` Sakari Ailus
2018-05-09 3:55 ` Steve Longerbeam
2018-06-26 7:45 ` Sakari Ailus
2018-06-26 20:58 ` Steve Longerbeam
2018-07-02 7:43 ` Sakari Ailus
2018-03-21 0:37 ` [PATCH v3 06/13] media: platform: video-mux: Register a subdev notifier Steve Longerbeam
2018-04-20 12:28 ` Hans Verkuil
2018-04-20 16:40 ` Steve Longerbeam
2018-03-21 0:37 ` [PATCH v3 07/13] media: imx: csi: " Steve Longerbeam
2018-03-21 0:37 ` [PATCH v3 08/13] media: imx: mipi csi-2: " Steve Longerbeam
2018-03-21 0:37 ` [PATCH v3 09/13] media: staging/imx: of: Remove recursive graph walk Steve Longerbeam
2018-03-21 0:37 ` [PATCH v3 10/13] media: staging/imx: Loop through all registered subdevs for media links Steve Longerbeam
2018-03-21 0:37 ` [PATCH v3 11/13] media: staging/imx: Rename root notifier Steve Longerbeam
2018-03-21 0:37 ` [PATCH v3 12/13] media: staging/imx: Switch to v4l2_async_notifier_add_subdev Steve Longerbeam
2018-03-21 0:37 ` [PATCH v3 13/13] media: staging/imx: TODO: Remove one assumption about OF graph parsing Steve Longerbeam
2018-04-02 17:22 ` [PATCH v3 00/13] media: imx: Switch to subdev notifiers Steve Longerbeam
2018-05-07 14:20 ` Hans Verkuil
2018-05-07 16:34 ` 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=11e32de4-075d-e2fd-fd08-eb8b8ad46eeb@gmail.com \
--to=slongerbeam@gmail.com \
--cc=hans.verkuil@cisco.com \
--cc=hverkuil@xs4all.nl \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=niklas.soderlund@ragnatech.se \
--cc=p.zabel@pengutronix.de \
--cc=sakari.ailus@linux.intel.com \
--cc=sre@kernel.org \
--cc=yong.zhi@intel.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