All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 7/7] soc_camera: initial of code
@ 2014-04-14 10:36 Ben Dooks
  2014-04-16 10:38 ` Josh Wu
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Ben Dooks @ 2014-04-14 10:36 UTC (permalink / raw)
  To: linux-sh

Add initial support for OF based soc-camera devices that may be used
by any of the soc-camera drivers. The driver itself will need converting
to use OF.

These changes allow the soc-camera driver to do the connecting of any
async capable v4l2 device to the soc-camera driver. This has currently
been tested on the Renesas Lager board.

Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
---
Changes since v1:

	- Updated to make the i2c mclk name compatible with other
	  drivers. The issue of having mclk which is not part of
	  the drivers/clk interface is something that can be dealt
	  with separately.
---
 drivers/media/platform/soc_camera/soc_camera.c | 117 ++++++++++++++++++++++++-
 1 file changed, 116 insertions(+), 1 deletion(-)

diff --git a/drivers/media/platform/soc_camera/soc_camera.c b/drivers/media/platform/soc_camera/soc_camera.c
index 4b8c024..c50ec5c 100644
--- a/drivers/media/platform/soc_camera/soc_camera.c
+++ b/drivers/media/platform/soc_camera/soc_camera.c
@@ -36,6 +36,7 @@
 #include <media/v4l2-common.h>
 #include <media/v4l2-ioctl.h>
 #include <media/v4l2-dev.h>
+#include <media/v4l2-of.h>
 #include <media/videobuf-core.h>
 #include <media/videobuf2-core.h>
 
@@ -1579,6 +1580,118 @@ static void scan_async_host(struct soc_camera_host *ici)
 #define scan_async_host(ici)		do {} while (0)
 #endif
 
+#ifdef CONFIG_OF
+static int soc_of_bind(struct soc_camera_host *ici,
+		       struct device_node *ep,
+		       struct device_node *remote)
+{
+	struct soc_camera_device *icd;
+	struct soc_camera_desc sdesc = {.host_desc.bus_id = ici->nr,};
+	struct soc_camera_async_client *sasc;
+	struct soc_camera_async_subdev *sasd;
+	struct v4l2_async_subdev **asd_array;
+	struct i2c_client *client;
+	char clk_name[V4L2_SUBDEV_NAME_SIZE];
+	int ret;
+
+	/* alloacte a new subdev and add match info to it */
+	sasd = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasd), GFP_KERNEL);
+	if (!sasd)
+		return -ENOMEM;
+
+	asd_array = devm_kzalloc(ici->v4l2_dev.dev,
+				 sizeof(struct v4l2_async_subdev **),
+				 GFP_KERNEL);
+	if (!asd_array)
+		return -ENOMEM;
+
+	sasd->asd.match.of.node = remote;
+	sasd->asd.match_type = V4L2_ASYNC_MATCH_OF;
+	asd_array[0] = &sasd->asd;
+
+	/* Or shall this be managed by the soc-camera device? */
+	sasc = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasc), GFP_KERNEL);
+	if (!sasc)
+		return -ENOMEM;
+
+	/* HACK: just need a != NULL */
+	sdesc.host_desc.board_info = ERR_PTR(-ENODATA);
+
+	ret = soc_camera_dyn_pdev(&sdesc, sasc);
+	if (ret < 0)
+		return ret;
+
+	sasc->sensor = &sasd->asd;
+
+	icd = soc_camera_add_pdev(sasc);
+	if (!icd) {
+		platform_device_put(sasc->pdev);
+		return -ENOMEM;
+	}
+
+	sasc->notifier.subdevs = asd_array;
+	sasc->notifier.num_subdevs = 1;
+	sasc->notifier.bound = soc_camera_async_bound;
+	sasc->notifier.unbind = soc_camera_async_unbind;
+	sasc->notifier.complete = soc_camera_async_complete;
+
+	icd->sasc = sasc;
+	icd->parent = ici->v4l2_dev.dev;
+
+	client = of_find_i2c_device_by_node(remote);
+
+	if (client)
+		snprintf(clk_name, sizeof(clk_name), "%d-%04x",
+			 client->adapter->nr, client->addr);
+	else
+		snprintf(clk_name, sizeof(clk_name), "of-%s",
+			 of_node_full_name(remote));
+
+	icd->clk = v4l2_clk_register(&soc_camera_clk_ops, clk_name, "mclk", icd);
+	if (IS_ERR(icd->clk)) {
+		ret = PTR_ERR(icd->clk);
+		goto eclkreg;
+	}
+
+	ret = v4l2_async_notifier_register(&ici->v4l2_dev, &sasc->notifier);
+	if (!ret)
+		return 0;
+
+eclkreg:
+	icd->clk = NULL;
+	platform_device_unregister(sasc->pdev);
+	dev_err(ici->v4l2_dev.dev, "group probe failed: %d\n", ret);
+
+	return ret;
+}
+
+static inline void scan_of_host(struct soc_camera_host *ici)
+{
+	struct device_node *np = ici->v4l2_dev.dev->of_node;
+	struct device_node *epn = NULL;
+	struct device_node *ren;
+
+	while (true) {
+		epn = v4l2_of_get_next_endpoint(np, epn);
+		if (!epn)
+			break;
+
+		ren = v4l2_of_get_remote_port(epn);
+		if (!ren) {
+			pr_info("%s: no remote for %s\n",
+				__func__,  of_node_full_name(epn));
+			continue;
+		}
+
+		/* so we now have a remote node to connect */
+		soc_of_bind(ici, epn, ren->parent);
+	}
+}
+
+#else
+static inline void scan_of_host(struct soc_camera_host *ici) { }
+#endif
+
 /* Called during host-driver probe */
 static int soc_camera_probe(struct soc_camera_host *ici,
 			    struct soc_camera_device *icd)
@@ -1830,7 +1943,9 @@ int soc_camera_host_register(struct soc_camera_host *ici)
 	mutex_init(&ici->host_lock);
 	mutex_init(&ici->clk_lock);
 
-	if (ici->asd_sizes)
+	if (ici->v4l2_dev.dev->of_node)
+		scan_of_host(ici);
+	else if (ici->asd_sizes)
 		/*
 		 * No OF, host with a list of subdevices. Don't try to mix
 		 * modes by initialising some groups statically and some
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH v3 7/7] soc_camera: initial of code
  2014-04-14 10:36 [PATCH v3 7/7] soc_camera: initial of code Ben Dooks
@ 2014-04-16 10:38 ` Josh Wu
  2014-04-16 11:09 ` Ben Dooks
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Josh Wu @ 2014-04-16 10:38 UTC (permalink / raw)
  To: linux-sh

Hi, Ben

On 4/14/2014 6:36 PM, Ben Dooks wrote:
> Add initial support for OF based soc-camera devices that may be used
> by any of the soc-camera drivers. The driver itself will need converting
> to use OF.
>
> These changes allow the soc-camera driver to do the connecting of any
> async capable v4l2 device to the soc-camera driver. This has currently
> been tested on the Renesas Lager board.
>
> Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>

Tested-by: Josh Wu <josh.wu@atmel.com>
Thanks for your patch. I tested with atmel-isi DT and ov2640. It works 
perfectly.

Best Regards,
Josh Wu

> ---
> Changes since v1:
>
> 	- Updated to make the i2c mclk name compatible with other
> 	  drivers. The issue of having mclk which is not part of
> 	  the drivers/clk interface is something that can be dealt
> 	  with separately.
> ---
>   drivers/media/platform/soc_camera/soc_camera.c | 117 ++++++++++++++++++++++++-
>   1 file changed, 116 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/media/platform/soc_camera/soc_camera.c b/drivers/media/platform/soc_camera/soc_camera.c
> index 4b8c024..c50ec5c 100644
> --- a/drivers/media/platform/soc_camera/soc_camera.c
> +++ b/drivers/media/platform/soc_camera/soc_camera.c
> @@ -36,6 +36,7 @@
>   #include <media/v4l2-common.h>
>   #include <media/v4l2-ioctl.h>
>   #include <media/v4l2-dev.h>
> +#include <media/v4l2-of.h>
>   #include <media/videobuf-core.h>
>   #include <media/videobuf2-core.h>
>   
> @@ -1579,6 +1580,118 @@ static void scan_async_host(struct soc_camera_host *ici)
>   #define scan_async_host(ici)		do {} while (0)
>   #endif
>   
> +#ifdef CONFIG_OF
> +static int soc_of_bind(struct soc_camera_host *ici,
> +		       struct device_node *ep,
> +		       struct device_node *remote)
> +{
> +	struct soc_camera_device *icd;
> +	struct soc_camera_desc sdesc = {.host_desc.bus_id = ici->nr,};
> +	struct soc_camera_async_client *sasc;
> +	struct soc_camera_async_subdev *sasd;
> +	struct v4l2_async_subdev **asd_array;
> +	struct i2c_client *client;
> +	char clk_name[V4L2_SUBDEV_NAME_SIZE];
> +	int ret;
> +
> +	/* alloacte a new subdev and add match info to it */
> +	sasd = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasd), GFP_KERNEL);
> +	if (!sasd)
> +		return -ENOMEM;
> +
> +	asd_array = devm_kzalloc(ici->v4l2_dev.dev,
> +				 sizeof(struct v4l2_async_subdev **),
> +				 GFP_KERNEL);
> +	if (!asd_array)
> +		return -ENOMEM;
> +
> +	sasd->asd.match.of.node = remote;
> +	sasd->asd.match_type = V4L2_ASYNC_MATCH_OF;
> +	asd_array[0] = &sasd->asd;
> +
> +	/* Or shall this be managed by the soc-camera device? */
> +	sasc = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasc), GFP_KERNEL);
> +	if (!sasc)
> +		return -ENOMEM;
> +
> +	/* HACK: just need a != NULL */
> +	sdesc.host_desc.board_info = ERR_PTR(-ENODATA);
> +
> +	ret = soc_camera_dyn_pdev(&sdesc, sasc);
> +	if (ret < 0)
> +		return ret;
> +
> +	sasc->sensor = &sasd->asd;
> +
> +	icd = soc_camera_add_pdev(sasc);
> +	if (!icd) {
> +		platform_device_put(sasc->pdev);
> +		return -ENOMEM;
> +	}
> +
> +	sasc->notifier.subdevs = asd_array;
> +	sasc->notifier.num_subdevs = 1;
> +	sasc->notifier.bound = soc_camera_async_bound;
> +	sasc->notifier.unbind = soc_camera_async_unbind;
> +	sasc->notifier.complete = soc_camera_async_complete;
> +
> +	icd->sasc = sasc;
> +	icd->parent = ici->v4l2_dev.dev;
> +
> +	client = of_find_i2c_device_by_node(remote);
> +
> +	if (client)
> +		snprintf(clk_name, sizeof(clk_name), "%d-%04x",
> +			 client->adapter->nr, client->addr);
> +	else
> +		snprintf(clk_name, sizeof(clk_name), "of-%s",
> +			 of_node_full_name(remote));
> +
> +	icd->clk = v4l2_clk_register(&soc_camera_clk_ops, clk_name, "mclk", icd);
> +	if (IS_ERR(icd->clk)) {
> +		ret = PTR_ERR(icd->clk);
> +		goto eclkreg;
> +	}
> +
> +	ret = v4l2_async_notifier_register(&ici->v4l2_dev, &sasc->notifier);
> +	if (!ret)
> +		return 0;
> +
> +eclkreg:
> +	icd->clk = NULL;
> +	platform_device_unregister(sasc->pdev);
> +	dev_err(ici->v4l2_dev.dev, "group probe failed: %d\n", ret);
> +
> +	return ret;
> +}
> +
> +static inline void scan_of_host(struct soc_camera_host *ici)
> +{
> +	struct device_node *np = ici->v4l2_dev.dev->of_node;
> +	struct device_node *epn = NULL;
> +	struct device_node *ren;
> +
> +	while (true) {
> +		epn = v4l2_of_get_next_endpoint(np, epn);
> +		if (!epn)
> +			break;
> +
> +		ren = v4l2_of_get_remote_port(epn);
> +		if (!ren) {
> +			pr_info("%s: no remote for %s\n",
> +				__func__,  of_node_full_name(epn));
> +			continue;
> +		}
> +
> +		/* so we now have a remote node to connect */
> +		soc_of_bind(ici, epn, ren->parent);
> +	}
> +}
> +
> +#else
> +static inline void scan_of_host(struct soc_camera_host *ici) { }
> +#endif
> +
>   /* Called during host-driver probe */
>   static int soc_camera_probe(struct soc_camera_host *ici,
>   			    struct soc_camera_device *icd)
> @@ -1830,7 +1943,9 @@ int soc_camera_host_register(struct soc_camera_host *ici)
>   	mutex_init(&ici->host_lock);
>   	mutex_init(&ici->clk_lock);
>   
> -	if (ici->asd_sizes)
> +	if (ici->v4l2_dev.dev->of_node)
> +		scan_of_host(ici);
> +	else if (ici->asd_sizes)
>   		/*
>   		 * No OF, host with a list of subdevices. Don't try to mix
>   		 * modes by initialising some groups statically and some


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v3 7/7] soc_camera: initial of code
  2014-04-14 10:36 [PATCH v3 7/7] soc_camera: initial of code Ben Dooks
  2014-04-16 10:38 ` Josh Wu
@ 2014-04-16 11:09 ` Ben Dooks
  2014-04-16 11:28 ` Guennadi Liakhovetski
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Ben Dooks @ 2014-04-16 11:09 UTC (permalink / raw)
  To: linux-sh

On 16/04/14 11:38, Josh Wu wrote:
> Hi, Ben
>
> On 4/14/2014 6:36 PM, Ben Dooks wrote:
>> Add initial support for OF based soc-camera devices that may be used
>> by any of the soc-camera drivers. The driver itself will need converting
>> to use OF.
>>
>> These changes allow the soc-camera driver to do the connecting of any
>> async capable v4l2 device to the soc-camera driver. This has currently
>> been tested on the Renesas Lager board.
>>
>> Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
>
> Tested-by: Josh Wu <josh.wu@atmel.com>
> Thanks for your patch. I tested with atmel-isi DT and ov2640. It works
> perfectly.
>
> Best Regards,
> Josh Wu

Thanks, I only have a limited set of hardware here to test with.

If there is no more feedback, could this be added to the appropriate
next tree along with the rcar-vin updates please?

-- 
Ben Dooks				http://www.codethink.co.uk/
Senior Engineer				Codethink - Providing Genius

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v3 7/7] soc_camera: initial of code
  2014-04-14 10:36 [PATCH v3 7/7] soc_camera: initial of code Ben Dooks
  2014-04-16 10:38 ` Josh Wu
  2014-04-16 11:09 ` Ben Dooks
@ 2014-04-16 11:28 ` Guennadi Liakhovetski
  2014-04-26 17:07 ` Guennadi Liakhovetski
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Guennadi Liakhovetski @ 2014-04-16 11:28 UTC (permalink / raw)
  To: linux-sh

Hi Ben,

On Wed, 16 Apr 2014, Ben Dooks wrote:

> On 16/04/14 11:38, Josh Wu wrote:
> > Hi, Ben
> > 
> > On 4/14/2014 6:36 PM, Ben Dooks wrote:
> > > Add initial support for OF based soc-camera devices that may be used
> > > by any of the soc-camera drivers. The driver itself will need converting
> > > to use OF.
> > > 
> > > These changes allow the soc-camera driver to do the connecting of any
> > > async capable v4l2 device to the soc-camera driver. This has currently
> > > been tested on the Renesas Lager board.
> > > 
> > > Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
> > 
> > Tested-by: Josh Wu <josh.wu@atmel.com>
> > Thanks for your patch. I tested with atmel-isi DT and ov2640. It works
> > perfectly.
> > 
> > Best Regards,
> > Josh Wu

Thanks for testing, Josh!

> Thanks, I only have a limited set of hardware here to test with.
> 
> If there is no more feedback, could this be added to the appropriate
> next tree along with the rcar-vin updates please?

I'll be away this coming weekend, so, this will have to wait _at least_ 
until the one after, possibly more. But yes, I'll have a look at the 
patches and either comment on them or queue for 3.16.

Thanks
Guennadi
---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v3 7/7] soc_camera: initial of code
  2014-04-14 10:36 [PATCH v3 7/7] soc_camera: initial of code Ben Dooks
                   ` (2 preceding siblings ...)
  2014-04-16 11:28 ` Guennadi Liakhovetski
@ 2014-04-26 17:07 ` Guennadi Liakhovetski
  2014-04-28  2:57 ` Josh Wu
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Guennadi Liakhovetski @ 2014-04-26 17:07 UTC (permalink / raw)
  To: linux-sh

Hi Josh,

On Wed, 16 Apr 2014, Josh Wu wrote:

> Hi, Ben
> 
> On 4/14/2014 6:36 PM, Ben Dooks wrote:
> > Add initial support for OF based soc-camera devices that may be used
> > by any of the soc-camera drivers. The driver itself will need converting
> > to use OF.
> > 
> > These changes allow the soc-camera driver to do the connecting of any
> > async capable v4l2 device to the soc-camera driver. This has currently
> > been tested on the Renesas Lager board.
> > 
> > Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
> 
> Tested-by: Josh Wu <josh.wu@atmel.com>
> Thanks for your patch. I tested with atmel-isi DT and ov2640. It works
> perfectly.

Thanks for testing. Do I understand correctly, that v2 of your patch set 
"atmel-isi: Add DT support for Atmel ISI driver" sent on 25 March works on 
top of these patches from Ben and I can review them together for 3.16?

Thanks
Guennadi

> Best Regards,
> Josh Wu
> 
> > ---
> > Changes since v1:
> > 
> > 	- Updated to make the i2c mclk name compatible with other
> > 	  drivers. The issue of having mclk which is not part of
> > 	  the drivers/clk interface is something that can be dealt
> > 	  with separately.
> > ---
> >   drivers/media/platform/soc_camera/soc_camera.c | 117
> > ++++++++++++++++++++++++-
> >   1 file changed, 116 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/media/platform/soc_camera/soc_camera.c
> > b/drivers/media/platform/soc_camera/soc_camera.c
> > index 4b8c024..c50ec5c 100644
> > --- a/drivers/media/platform/soc_camera/soc_camera.c
> > +++ b/drivers/media/platform/soc_camera/soc_camera.c
> > @@ -36,6 +36,7 @@
> >   #include <media/v4l2-common.h>
> >   #include <media/v4l2-ioctl.h>
> >   #include <media/v4l2-dev.h>
> > +#include <media/v4l2-of.h>
> >   #include <media/videobuf-core.h>
> >   #include <media/videobuf2-core.h>
> >   @@ -1579,6 +1580,118 @@ static void scan_async_host(struct soc_camera_host
> > *ici)
> >   #define scan_async_host(ici)		do {} while (0)
> >   #endif
> >   +#ifdef CONFIG_OF
> > +static int soc_of_bind(struct soc_camera_host *ici,
> > +		       struct device_node *ep,
> > +		       struct device_node *remote)
> > +{
> > +	struct soc_camera_device *icd;
> > +	struct soc_camera_desc sdesc = {.host_desc.bus_id = ici->nr,};
> > +	struct soc_camera_async_client *sasc;
> > +	struct soc_camera_async_subdev *sasd;
> > +	struct v4l2_async_subdev **asd_array;
> > +	struct i2c_client *client;
> > +	char clk_name[V4L2_SUBDEV_NAME_SIZE];
> > +	int ret;
> > +
> > +	/* alloacte a new subdev and add match info to it */
> > +	sasd = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasd), GFP_KERNEL);
> > +	if (!sasd)
> > +		return -ENOMEM;
> > +
> > +	asd_array = devm_kzalloc(ici->v4l2_dev.dev,
> > +				 sizeof(struct v4l2_async_subdev **),
> > +				 GFP_KERNEL);
> > +	if (!asd_array)
> > +		return -ENOMEM;
> > +
> > +	sasd->asd.match.of.node = remote;
> > +	sasd->asd.match_type = V4L2_ASYNC_MATCH_OF;
> > +	asd_array[0] = &sasd->asd;
> > +
> > +	/* Or shall this be managed by the soc-camera device? */
> > +	sasc = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasc), GFP_KERNEL);
> > +	if (!sasc)
> > +		return -ENOMEM;
> > +
> > +	/* HACK: just need a != NULL */
> > +	sdesc.host_desc.board_info = ERR_PTR(-ENODATA);
> > +
> > +	ret = soc_camera_dyn_pdev(&sdesc, sasc);
> > +	if (ret < 0)
> > +		return ret;
> > +
> > +	sasc->sensor = &sasd->asd;
> > +
> > +	icd = soc_camera_add_pdev(sasc);
> > +	if (!icd) {
> > +		platform_device_put(sasc->pdev);
> > +		return -ENOMEM;
> > +	}
> > +
> > +	sasc->notifier.subdevs = asd_array;
> > +	sasc->notifier.num_subdevs = 1;
> > +	sasc->notifier.bound = soc_camera_async_bound;
> > +	sasc->notifier.unbind = soc_camera_async_unbind;
> > +	sasc->notifier.complete = soc_camera_async_complete;
> > +
> > +	icd->sasc = sasc;
> > +	icd->parent = ici->v4l2_dev.dev;
> > +
> > +	client = of_find_i2c_device_by_node(remote);
> > +
> > +	if (client)
> > +		snprintf(clk_name, sizeof(clk_name), "%d-%04x",
> > +			 client->adapter->nr, client->addr);
> > +	else
> > +		snprintf(clk_name, sizeof(clk_name), "of-%s",
> > +			 of_node_full_name(remote));
> > +
> > +	icd->clk = v4l2_clk_register(&soc_camera_clk_ops, clk_name, "mclk",
> > icd);
> > +	if (IS_ERR(icd->clk)) {
> > +		ret = PTR_ERR(icd->clk);
> > +		goto eclkreg;
> > +	}
> > +
> > +	ret = v4l2_async_notifier_register(&ici->v4l2_dev, &sasc->notifier);
> > +	if (!ret)
> > +		return 0;
> > +
> > +eclkreg:
> > +	icd->clk = NULL;
> > +	platform_device_unregister(sasc->pdev);
> > +	dev_err(ici->v4l2_dev.dev, "group probe failed: %d\n", ret);
> > +
> > +	return ret;
> > +}
> > +
> > +static inline void scan_of_host(struct soc_camera_host *ici)
> > +{
> > +	struct device_node *np = ici->v4l2_dev.dev->of_node;
> > +	struct device_node *epn = NULL;
> > +	struct device_node *ren;
> > +
> > +	while (true) {
> > +		epn = v4l2_of_get_next_endpoint(np, epn);
> > +		if (!epn)
> > +			break;
> > +
> > +		ren = v4l2_of_get_remote_port(epn);
> > +		if (!ren) {
> > +			pr_info("%s: no remote for %s\n",
> > +				__func__,  of_node_full_name(epn));
> > +			continue;
> > +		}
> > +
> > +		/* so we now have a remote node to connect */
> > +		soc_of_bind(ici, epn, ren->parent);
> > +	}
> > +}
> > +
> > +#else
> > +static inline void scan_of_host(struct soc_camera_host *ici) { }
> > +#endif
> > +
> >   /* Called during host-driver probe */
> >   static int soc_camera_probe(struct soc_camera_host *ici,
> >   			    struct soc_camera_device *icd)
> > @@ -1830,7 +1943,9 @@ int soc_camera_host_register(struct soc_camera_host
> > *ici)
> >   	mutex_init(&ici->host_lock);
> >   	mutex_init(&ici->clk_lock);
> >   -	if (ici->asd_sizes)
> > +	if (ici->v4l2_dev.dev->of_node)
> > +		scan_of_host(ici);
> > +	else if (ici->asd_sizes)
> >   		/*
> >   		 * No OF, host with a list of subdevices. Don't try to mix
> >   		 * modes by initialising some groups statically and some
> 

---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v3 7/7] soc_camera: initial of code
  2014-04-14 10:36 [PATCH v3 7/7] soc_camera: initial of code Ben Dooks
                   ` (3 preceding siblings ...)
  2014-04-26 17:07 ` Guennadi Liakhovetski
@ 2014-04-28  2:57 ` Josh Wu
  2014-05-03 16:44 ` Guennadi Liakhovetski
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Josh Wu @ 2014-04-28  2:57 UTC (permalink / raw)
  To: linux-sh

Hi, Guennadi

On 4/27/2014 1:07 AM, Guennadi Liakhovetski wrote:
> Hi Josh,
>
> On Wed, 16 Apr 2014, Josh Wu wrote:
>
>> Hi, Ben
>>
>> On 4/14/2014 6:36 PM, Ben Dooks wrote:
>>> Add initial support for OF based soc-camera devices that may be used
>>> by any of the soc-camera drivers. The driver itself will need converting
>>> to use OF.
>>>
>>> These changes allow the soc-camera driver to do the connecting of any
>>> async capable v4l2 device to the soc-camera driver. This has currently
>>> been tested on the Renesas Lager board.
>>>
>>> Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
>> Tested-by: Josh Wu <josh.wu@atmel.com>
>> Thanks for your patch. I tested with atmel-isi DT and ov2640. It works
>> perfectly.
> Thanks for testing. Do I understand correctly, that v2 of your patch set
> "atmel-isi: Add DT support for Atmel ISI driver" sent on 25 March works on
> top of these patches from Ben and I can review them together for 3.16?

Yes, I tested this Ben's Soc_camera DT patch with my v2 atmel-isi DT 
patches.
That would be great if you can review them together. Thanks.

Best Regards,
Josh Wu
>
> Thanks
> Guennadi
>
>> Best Regards,
>> Josh Wu
>>
>>> ---
>>> Changes since v1:
>>>
>>> 	- Updated to make the i2c mclk name compatible with other
>>> 	  drivers. The issue of having mclk which is not part of
>>> 	  the drivers/clk interface is something that can be dealt
>>> 	  with separately.
>>> ---
>>>    drivers/media/platform/soc_camera/soc_camera.c | 117
>>> ++++++++++++++++++++++++-
>>>    1 file changed, 116 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/media/platform/soc_camera/soc_camera.c
>>> b/drivers/media/platform/soc_camera/soc_camera.c
>>> index 4b8c024..c50ec5c 100644
>>> --- a/drivers/media/platform/soc_camera/soc_camera.c
>>> +++ b/drivers/media/platform/soc_camera/soc_camera.c
>>> @@ -36,6 +36,7 @@
>>>    #include <media/v4l2-common.h>
>>>    #include <media/v4l2-ioctl.h>
>>>    #include <media/v4l2-dev.h>
>>> +#include <media/v4l2-of.h>
>>>    #include <media/videobuf-core.h>
>>>    #include <media/videobuf2-core.h>
>>>    @@ -1579,6 +1580,118 @@ static void scan_async_host(struct soc_camera_host
>>> *ici)
>>>    #define scan_async_host(ici)		do {} while (0)
>>>    #endif
>>>    +#ifdef CONFIG_OF
>>> +static int soc_of_bind(struct soc_camera_host *ici,
>>> +		       struct device_node *ep,
>>> +		       struct device_node *remote)
>>> +{
>>> +	struct soc_camera_device *icd;
>>> +	struct soc_camera_desc sdesc = {.host_desc.bus_id = ici->nr,};
>>> +	struct soc_camera_async_client *sasc;
>>> +	struct soc_camera_async_subdev *sasd;
>>> +	struct v4l2_async_subdev **asd_array;
>>> +	struct i2c_client *client;
>>> +	char clk_name[V4L2_SUBDEV_NAME_SIZE];
>>> +	int ret;
>>> +
>>> +	/* alloacte a new subdev and add match info to it */
>>> +	sasd = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasd), GFP_KERNEL);
>>> +	if (!sasd)
>>> +		return -ENOMEM;
>>> +
>>> +	asd_array = devm_kzalloc(ici->v4l2_dev.dev,
>>> +				 sizeof(struct v4l2_async_subdev **),
>>> +				 GFP_KERNEL);
>>> +	if (!asd_array)
>>> +		return -ENOMEM;
>>> +
>>> +	sasd->asd.match.of.node = remote;
>>> +	sasd->asd.match_type = V4L2_ASYNC_MATCH_OF;
>>> +	asd_array[0] = &sasd->asd;
>>> +
>>> +	/* Or shall this be managed by the soc-camera device? */
>>> +	sasc = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasc), GFP_KERNEL);
>>> +	if (!sasc)
>>> +		return -ENOMEM;
>>> +
>>> +	/* HACK: just need a != NULL */
>>> +	sdesc.host_desc.board_info = ERR_PTR(-ENODATA);
>>> +
>>> +	ret = soc_camera_dyn_pdev(&sdesc, sasc);
>>> +	if (ret < 0)
>>> +		return ret;
>>> +
>>> +	sasc->sensor = &sasd->asd;
>>> +
>>> +	icd = soc_camera_add_pdev(sasc);
>>> +	if (!icd) {
>>> +		platform_device_put(sasc->pdev);
>>> +		return -ENOMEM;
>>> +	}
>>> +
>>> +	sasc->notifier.subdevs = asd_array;
>>> +	sasc->notifier.num_subdevs = 1;
>>> +	sasc->notifier.bound = soc_camera_async_bound;
>>> +	sasc->notifier.unbind = soc_camera_async_unbind;
>>> +	sasc->notifier.complete = soc_camera_async_complete;
>>> +
>>> +	icd->sasc = sasc;
>>> +	icd->parent = ici->v4l2_dev.dev;
>>> +
>>> +	client = of_find_i2c_device_by_node(remote);
>>> +
>>> +	if (client)
>>> +		snprintf(clk_name, sizeof(clk_name), "%d-%04x",
>>> +			 client->adapter->nr, client->addr);
>>> +	else
>>> +		snprintf(clk_name, sizeof(clk_name), "of-%s",
>>> +			 of_node_full_name(remote));
>>> +
>>> +	icd->clk = v4l2_clk_register(&soc_camera_clk_ops, clk_name, "mclk",
>>> icd);
>>> +	if (IS_ERR(icd->clk)) {
>>> +		ret = PTR_ERR(icd->clk);
>>> +		goto eclkreg;
>>> +	}
>>> +
>>> +	ret = v4l2_async_notifier_register(&ici->v4l2_dev, &sasc->notifier);
>>> +	if (!ret)
>>> +		return 0;
>>> +
>>> +eclkreg:
>>> +	icd->clk = NULL;
>>> +	platform_device_unregister(sasc->pdev);
>>> +	dev_err(ici->v4l2_dev.dev, "group probe failed: %d\n", ret);
>>> +
>>> +	return ret;
>>> +}
>>> +
>>> +static inline void scan_of_host(struct soc_camera_host *ici)
>>> +{
>>> +	struct device_node *np = ici->v4l2_dev.dev->of_node;
>>> +	struct device_node *epn = NULL;
>>> +	struct device_node *ren;
>>> +
>>> +	while (true) {
>>> +		epn = v4l2_of_get_next_endpoint(np, epn);
>>> +		if (!epn)
>>> +			break;
>>> +
>>> +		ren = v4l2_of_get_remote_port(epn);
>>> +		if (!ren) {
>>> +			pr_info("%s: no remote for %s\n",
>>> +				__func__,  of_node_full_name(epn));
>>> +			continue;
>>> +		}
>>> +
>>> +		/* so we now have a remote node to connect */
>>> +		soc_of_bind(ici, epn, ren->parent);
>>> +	}
>>> +}
>>> +
>>> +#else
>>> +static inline void scan_of_host(struct soc_camera_host *ici) { }
>>> +#endif
>>> +
>>>    /* Called during host-driver probe */
>>>    static int soc_camera_probe(struct soc_camera_host *ici,
>>>    			    struct soc_camera_device *icd)
>>> @@ -1830,7 +1943,9 @@ int soc_camera_host_register(struct soc_camera_host
>>> *ici)
>>>    	mutex_init(&ici->host_lock);
>>>    	mutex_init(&ici->clk_lock);
>>>    -	if (ici->asd_sizes)
>>> +	if (ici->v4l2_dev.dev->of_node)
>>> +		scan_of_host(ici);
>>> +	else if (ici->asd_sizes)
>>>    		/*
>>>    		 * No OF, host with a list of subdevices. Don't try to mix
>>>    		 * modes by initialising some groups statically and some
> ---
> Guennadi Liakhovetski, Ph.D.
> Freelance Open-Source Software Developer
> http://www.open-technology.de/


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v3 7/7] soc_camera: initial of code
  2014-04-14 10:36 [PATCH v3 7/7] soc_camera: initial of code Ben Dooks
                   ` (4 preceding siblings ...)
  2014-04-28  2:57 ` Josh Wu
@ 2014-05-03 16:44 ` Guennadi Liakhovetski
  2014-05-15 21:01 ` Ben Dooks
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Guennadi Liakhovetski @ 2014-05-03 16:44 UTC (permalink / raw)
  To: linux-sh

On Mon, 14 Apr 2014, Ben Dooks wrote:

> Add initial support for OF based soc-camera devices that may be used
> by any of the soc-camera drivers. The driver itself will need converting
> to use OF.
> 
> These changes allow the soc-camera driver to do the connecting of any
> async capable v4l2 device to the soc-camera driver. This has currently
> been tested on the Renesas Lager board.
> 
> Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
> ---
> Changes since v1:
> 
> 	- Updated to make the i2c mclk name compatible with other
> 	  drivers. The issue of having mclk which is not part of
> 	  the drivers/clk interface is something that can be dealt
> 	  with separately.
> ---
>  drivers/media/platform/soc_camera/soc_camera.c | 117 ++++++++++++++++++++++++-
>  1 file changed, 116 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/media/platform/soc_camera/soc_camera.c b/drivers/media/platform/soc_camera/soc_camera.c
> index 4b8c024..c50ec5c 100644
> --- a/drivers/media/platform/soc_camera/soc_camera.c
> +++ b/drivers/media/platform/soc_camera/soc_camera.c
> @@ -36,6 +36,7 @@
>  #include <media/v4l2-common.h>
>  #include <media/v4l2-ioctl.h>
>  #include <media/v4l2-dev.h>
> +#include <media/v4l2-of.h>
>  #include <media/videobuf-core.h>
>  #include <media/videobuf2-core.h>
>  
> @@ -1579,6 +1580,118 @@ static void scan_async_host(struct soc_camera_host *ici)
>  #define scan_async_host(ici)		do {} while (0)
>  #endif
>  
> +#ifdef CONFIG_OF
> +static int soc_of_bind(struct soc_camera_host *ici,
> +		       struct device_node *ep,
> +		       struct device_node *remote)
> +{
> +	struct soc_camera_device *icd;
> +	struct soc_camera_desc sdesc = {.host_desc.bus_id = ici->nr,};
> +	struct soc_camera_async_client *sasc;
> +	struct soc_camera_async_subdev *sasd;
> +	struct v4l2_async_subdev **asd_array;
> +	struct i2c_client *client;
> +	char clk_name[V4L2_SUBDEV_NAME_SIZE];
> +	int ret;
> +
> +	/* alloacte a new subdev and add match info to it */
> +	sasd = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasd), GFP_KERNEL);
> +	if (!sasd)
> +		return -ENOMEM;
> +

I think I set a bad example to follow :) Please, have a look at this:

http://thread.gmane.org/gmane.linux.drivers.video-input-infrastructure/77490

Maybe it would be good to do the same here?

> +	asd_array = devm_kzalloc(ici->v4l2_dev.dev,
> +				 sizeof(struct v4l2_async_subdev **),
> +				 GFP_KERNEL);

is that a correct size?...

> +	if (!asd_array)
> +		return -ENOMEM;
> +
> +	sasd->asd.match.of.node = remote;
> +	sasd->asd.match_type = V4L2_ASYNC_MATCH_OF;
> +	asd_array[0] = &sasd->asd;
> +
> +	/* Or shall this be managed by the soc-camera device? */
> +	sasc = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasc), GFP_KERNEL);
> +	if (!sasc)
> +		return -ENOMEM;

And a third one... I think it's already worth a new struct with these 
three objects in it to allocate it in one go?

> +
> +	/* HACK: just need a != NULL */
> +	sdesc.host_desc.board_info = ERR_PTR(-ENODATA);
> +
> +	ret = soc_camera_dyn_pdev(&sdesc, sasc);
> +	if (ret < 0)
> +		return ret;
> +
> +	sasc->sensor = &sasd->asd;
> +
> +	icd = soc_camera_add_pdev(sasc);
> +	if (!icd) {
> +		platform_device_put(sasc->pdev);
> +		return -ENOMEM;
> +	}
> +
> +	sasc->notifier.subdevs = asd_array;
> +	sasc->notifier.num_subdevs = 1;

Hm, see below...

> +	sasc->notifier.bound = soc_camera_async_bound;
> +	sasc->notifier.unbind = soc_camera_async_unbind;
> +	sasc->notifier.complete = soc_camera_async_complete;
> +
> +	icd->sasc = sasc;
> +	icd->parent = ici->v4l2_dev.dev;
> +
> +	client = of_find_i2c_device_by_node(remote);
> +
> +	if (client)
> +		snprintf(clk_name, sizeof(clk_name), "%d-%04x",
> +			 client->adapter->nr, client->addr);
> +	else
> +		snprintf(clk_name, sizeof(clk_name), "of-%s",
> +			 of_node_full_name(remote));
> +
> +	icd->clk = v4l2_clk_register(&soc_camera_clk_ops, clk_name, "mclk", icd);
> +	if (IS_ERR(icd->clk)) {
> +		ret = PTR_ERR(icd->clk);
> +		goto eclkreg;
> +	}
> +
> +	ret = v4l2_async_notifier_register(&ici->v4l2_dev, &sasc->notifier);
> +	if (!ret)
> +		return 0;
> +
> +eclkreg:
> +	icd->clk = NULL;
> +	platform_device_unregister(sasc->pdev);
> +	dev_err(ici->v4l2_dev.dev, "group probe failed: %d\n", ret);
> +
> +	return ret;
> +}
> +
> +static inline void scan_of_host(struct soc_camera_host *ici)

You don't need "inline" in the C code - the compiler will decide by 
itself.

> +{
> +	struct device_node *np = ici->v4l2_dev.dev->of_node;
> +	struct device_node *epn = NULL;
> +	struct device_node *ren;
> +
> +	while (true) {
> +		epn = v4l2_of_get_next_endpoint(np, epn);
> +		if (!epn)
> +			break;
> +
> +		ren = v4l2_of_get_remote_port(epn);

Please, rebase on top of current -next. You'll probably use 
of_graph_get_next_endpoint() and of_graph_get_remote_port() respectively.

> +		if (!ren) {
> +			pr_info("%s: no remote for %s\n",
> +				__func__,  of_node_full_name(epn));
> +			continue;
> +		}
> +
> +		/* so we now have a remote node to connect */
> +		soc_of_bind(ici, epn, ren->parent);

Hm, I think, this isn't quite correct. If the documented DT layout in 
Documentation/devicetree/bindings/media/video-interfaces.txt hasn't 
changed, a port can have several endpoints. And I think you have to 
collect them all into your asd_array[] to form a group to have 
soc_camera_async_complete() called only when all endpoints have been 
bound.

If you think it's too difficult with no real-life use case, you can limit 
support to one endpoint per port, but please make this explicit and error 
out with a suitable message if more than one endpoint is present.

> +	}
> +}
> +
> +#else
> +static inline void scan_of_host(struct soc_camera_host *ici) { }

Also no need for inline.

> +#endif
> +
>  /* Called during host-driver probe */
>  static int soc_camera_probe(struct soc_camera_host *ici,
>  			    struct soc_camera_device *icd)
> @@ -1830,7 +1943,9 @@ int soc_camera_host_register(struct soc_camera_host *ici)
>  	mutex_init(&ici->host_lock);
>  	mutex_init(&ici->clk_lock);
>  
> -	if (ici->asd_sizes)
> +	if (ici->v4l2_dev.dev->of_node)
> +		scan_of_host(ici);
> +	else if (ici->asd_sizes)
>  		/*
>  		 * No OF, host with a list of subdevices. Don't try to mix
>  		 * modes by initialising some groups statically and some
> -- 
> 1.9.1
> 

Thanks
Guennadi
---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v3 7/7] soc_camera: initial of code
  2014-04-14 10:36 [PATCH v3 7/7] soc_camera: initial of code Ben Dooks
                   ` (5 preceding siblings ...)
  2014-05-03 16:44 ` Guennadi Liakhovetski
@ 2014-05-15 21:01 ` Ben Dooks
  2014-05-18 21:31 ` Guennadi Liakhovetski
  2014-06-06 17:27 ` Sergei Shtylyov
  8 siblings, 0 replies; 10+ messages in thread
From: Ben Dooks @ 2014-05-15 21:01 UTC (permalink / raw)
  To: linux-sh

On 03/05/14 18:44, Guennadi Liakhovetski wrote:
> On Mon, 14 Apr 2014, Ben Dooks wrote:
>
>> Add initial support for OF based soc-camera devices that may be used
>> by any of the soc-camera drivers. The driver itself will need converting
>> to use OF.
>>
>> These changes allow the soc-camera driver to do the connecting of any
>> async capable v4l2 device to the soc-camera driver. This has currently
>> been tested on the Renesas Lager board.
>>
>> Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>

Thankyou for the feedback. I will try and get this sorted over the
weekend as I have been travelling and away from code.

>> ---
>> Changes since v1:
>>
>> 	- Updated to make the i2c mclk name compatible with other
>> 	  drivers. The issue of having mclk which is not part of
>> 	  the drivers/clk interface is something that can be dealt
>> 	  with separately.
>> ---
>>   drivers/media/platform/soc_camera/soc_camera.c | 117 ++++++++++++++++++++++++-
>>   1 file changed, 116 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/media/platform/soc_camera/soc_camera.c b/drivers/media/platform/soc_camera/soc_camera.c
>> index 4b8c024..c50ec5c 100644
>> --- a/drivers/media/platform/soc_camera/soc_camera.c
>> +++ b/drivers/media/platform/soc_camera/soc_camera.c
>> @@ -36,6 +36,7 @@
>>   #include <media/v4l2-common.h>
>>   #include <media/v4l2-ioctl.h>
>>   #include <media/v4l2-dev.h>
>> +#include <media/v4l2-of.h>
>>   #include <media/videobuf-core.h>
>>   #include <media/videobuf2-core.h>
>>
>> @@ -1579,6 +1580,118 @@ static void scan_async_host(struct soc_camera_host *ici)
>>   #define scan_async_host(ici)		do {} while (0)
>>   #endif
>>
>> +#ifdef CONFIG_OF
>> +static int soc_of_bind(struct soc_camera_host *ici,
>> +		       struct device_node *ep,
>> +		       struct device_node *remote)
>> +{
>> +	struct soc_camera_device *icd;
>> +	struct soc_camera_desc sdesc = {.host_desc.bus_id = ici->nr,};
>> +	struct soc_camera_async_client *sasc;
>> +	struct soc_camera_async_subdev *sasd;
>> +	struct v4l2_async_subdev **asd_array;
>> +	struct i2c_client *client;
>> +	char clk_name[V4L2_SUBDEV_NAME_SIZE];
>> +	int ret;
>> +
>> +	/* alloacte a new subdev and add match info to it */
>> +	sasd = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasd), GFP_KERNEL);
>> +	if (!sasd)
>> +		return -ENOMEM;
>> +
>
> I think I set a bad example to follow :) Please, have a look at this:
>
> http://thread.gmane.org/gmane.linux.drivers.video-input-infrastructure/77490
>
> Maybe it would be good to do the same here?
>
>> +	asd_array = devm_kzalloc(ici->v4l2_dev.dev,
>> +				 sizeof(struct v4l2_async_subdev **),
>> +				 GFP_KERNEL);
>
> is that a correct size?...
>
>> +	if (!asd_array)
>> +		return -ENOMEM;
>> +
>> +	sasd->asd.match.of.node = remote;
>> +	sasd->asd.match_type = V4L2_ASYNC_MATCH_OF;
>> +	asd_array[0] = &sasd->asd;
>> +
>> +	/* Or shall this be managed by the soc-camera device? */
>> +	sasc = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasc), GFP_KERNEL);
>> +	if (!sasc)
>> +		return -ENOMEM;
>
> And a third one... I think it's already worth a new struct with these
> three objects in it to allocate it in one go?
>
>> +
>> +	/* HACK: just need a != NULL */
>> +	sdesc.host_desc.board_info = ERR_PTR(-ENODATA);
>> +
>> +	ret = soc_camera_dyn_pdev(&sdesc, sasc);
>> +	if (ret < 0)
>> +		return ret;
>> +
>> +	sasc->sensor = &sasd->asd;
>> +
>> +	icd = soc_camera_add_pdev(sasc);
>> +	if (!icd) {
>> +		platform_device_put(sasc->pdev);
>> +		return -ENOMEM;
>> +	}
>> +
>> +	sasc->notifier.subdevs = asd_array;
>> +	sasc->notifier.num_subdevs = 1;
>
> Hm, see below...
>
>> +	sasc->notifier.bound = soc_camera_async_bound;
>> +	sasc->notifier.unbind = soc_camera_async_unbind;
>> +	sasc->notifier.complete = soc_camera_async_complete;
>> +
>> +	icd->sasc = sasc;
>> +	icd->parent = ici->v4l2_dev.dev;
>> +
>> +	client = of_find_i2c_device_by_node(remote);
>> +
>> +	if (client)
>> +		snprintf(clk_name, sizeof(clk_name), "%d-%04x",
>> +			 client->adapter->nr, client->addr);
>> +	else
>> +		snprintf(clk_name, sizeof(clk_name), "of-%s",
>> +			 of_node_full_name(remote));
>> +
>> +	icd->clk = v4l2_clk_register(&soc_camera_clk_ops, clk_name, "mclk", icd);
>> +	if (IS_ERR(icd->clk)) {
>> +		ret = PTR_ERR(icd->clk);
>> +		goto eclkreg;
>> +	}
>> +
>> +	ret = v4l2_async_notifier_register(&ici->v4l2_dev, &sasc->notifier);
>> +	if (!ret)
>> +		return 0;
>> +
>> +eclkreg:
>> +	icd->clk = NULL;
>> +	platform_device_unregister(sasc->pdev);
>> +	dev_err(ici->v4l2_dev.dev, "group probe failed: %d\n", ret);
>> +
>> +	return ret;
>> +}
>> +
>> +static inline void scan_of_host(struct soc_camera_host *ici)
>
> You don't need "inline" in the C code - the compiler will decide by
> itself.
>
>> +{
>> +	struct device_node *np = ici->v4l2_dev.dev->of_node;
>> +	struct device_node *epn = NULL;
>> +	struct device_node *ren;
>> +
>> +	while (true) {
>> +		epn = v4l2_of_get_next_endpoint(np, epn);
>> +		if (!epn)
>> +			break;
>> +
>> +		ren = v4l2_of_get_remote_port(epn);
>
> Please, rebase on top of current -next. You'll probably use
> of_graph_get_next_endpoint() and of_graph_get_remote_port() respectively.
>
>> +		if (!ren) {
>> +			pr_info("%s: no remote for %s\n",
>> +				__func__,  of_node_full_name(epn));
>> +			continue;
>> +		}
>> +
>> +		/* so we now have a remote node to connect */
>> +		soc_of_bind(ici, epn, ren->parent);
>
> Hm, I think, this isn't quite correct. If the documented DT layout in
> Documentation/devicetree/bindings/media/video-interfaces.txt hasn't
> changed, a port can have several endpoints. And I think you have to
> collect them all into your asd_array[] to form a group to have
> soc_camera_async_complete() called only when all endpoints have been
> bound.
>
> If you think it's too difficult with no real-life use case, you can limit
> support to one endpoint per port, but please make this explicit and error
> out with a suitable message if more than one endpoint is present.
>
>> +	}
>> +}
>> +
>> +#else
>> +static inline void scan_of_host(struct soc_camera_host *ici) { }
>
> Also no need for inline.
>
>> +#endif
>> +
>>   /* Called during host-driver probe */
>>   static int soc_camera_probe(struct soc_camera_host *ici,
>>   			    struct soc_camera_device *icd)
>> @@ -1830,7 +1943,9 @@ int soc_camera_host_register(struct soc_camera_host *ici)
>>   	mutex_init(&ici->host_lock);
>>   	mutex_init(&ici->clk_lock);
>>
>> -	if (ici->asd_sizes)
>> +	if (ici->v4l2_dev.dev->of_node)
>> +		scan_of_host(ici);
>> +	else if (ici->asd_sizes)
>>   		/*
>>   		 * No OF, host with a list of subdevices. Don't try to mix
>>   		 * modes by initialising some groups statically and some
>> --
>> 1.9.1
>>
>
> Thanks
> Guennadi
> ---
> Guennadi Liakhovetski, Ph.D.
> Freelance Open-Source Software Developer
> http://www.open-technology.de/
>


-- 
Ben Dooks				http://www.codethink.co.uk/
Senior Engineer				Codethink - Providing Genius

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v3 7/7] soc_camera: initial of code
  2014-04-14 10:36 [PATCH v3 7/7] soc_camera: initial of code Ben Dooks
                   ` (6 preceding siblings ...)
  2014-05-15 21:01 ` Ben Dooks
@ 2014-05-18 21:31 ` Guennadi Liakhovetski
  2014-06-06 17:27 ` Sergei Shtylyov
  8 siblings, 0 replies; 10+ messages in thread
From: Guennadi Liakhovetski @ 2014-05-18 21:31 UTC (permalink / raw)
  To: linux-sh

Hi Ben,

An additional note:

On Sat, 3 May 2014, Guennadi Liakhovetski wrote:

> On Mon, 14 Apr 2014, Ben Dooks wrote:
> 
> > Add initial support for OF based soc-camera devices that may be used
> > by any of the soc-camera drivers. The driver itself will need converting
> > to use OF.
> > 
> > These changes allow the soc-camera driver to do the connecting of any
> > async capable v4l2 device to the soc-camera driver. This has currently
> > been tested on the Renesas Lager board.
> > 
> > Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
> > ---
> > Changes since v1:
> > 
> > 	- Updated to make the i2c mclk name compatible with other
> > 	  drivers. The issue of having mclk which is not part of
> > 	  the drivers/clk interface is something that can be dealt
> > 	  with separately.
> > ---
> >  drivers/media/platform/soc_camera/soc_camera.c | 117 ++++++++++++++++++++++++-
> >  1 file changed, 116 insertions(+), 1 deletion(-)

[snip]

> > +{
> > +	struct device_node *np = ici->v4l2_dev.dev->of_node;
> > +	struct device_node *epn = NULL;
> > +	struct device_node *ren;
> > +
> > +	while (true) {
> > +		epn = v4l2_of_get_next_endpoint(np, epn);
> > +		if (!epn)
> > +			break;
> > +
> > +		ren = v4l2_of_get_remote_port(epn);
> 
> Please, rebase on top of current -next. You'll probably use 
> of_graph_get_next_endpoint() and of_graph_get_remote_port() respectively.

While at it, I think it would be good to also add a call to 
v4l2_of_parse_endpoint() to your patch. I think the atmel-isi driver can 
make use of some endpoint parsing results immediately.

Thanks
Guennadi
---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v3 7/7] soc_camera: initial of code
  2014-04-14 10:36 [PATCH v3 7/7] soc_camera: initial of code Ben Dooks
                   ` (7 preceding siblings ...)
  2014-05-18 21:31 ` Guennadi Liakhovetski
@ 2014-06-06 17:27 ` Sergei Shtylyov
  8 siblings, 0 replies; 10+ messages in thread
From: Sergei Shtylyov @ 2014-06-06 17:27 UTC (permalink / raw)
  To: linux-sh

Hello.

On 04/14/2014 02:36 PM, Ben Dooks wrote:

> Add initial support for OF based soc-camera devices that may be used
> by any of the soc-camera drivers. The driver itself will need converting
> to use OF.

> These changes allow the soc-camera driver to do the connecting of any
> async capable v4l2 device to the soc-camera driver. This has currently
> been tested on the Renesas Lager board.

> Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
> ---
> Changes since v1:

> 	- Updated to make the i2c mclk name compatible with other
> 	  drivers. The issue of having mclk which is not part of
> 	  the drivers/clk interface is something that can be dealt
> 	  with separately.
> ---
>   drivers/media/platform/soc_camera/soc_camera.c | 117 ++++++++++++++++++++++++-
>   1 file changed, 116 insertions(+), 1 deletion(-)

> diff --git a/drivers/media/platform/soc_camera/soc_camera.c b/drivers/media/platform/soc_camera/soc_camera.c
> index 4b8c024..c50ec5c 100644
> --- a/drivers/media/platform/soc_camera/soc_camera.c
> +++ b/drivers/media/platform/soc_camera/soc_camera.c
[...]
> @@ -1579,6 +1580,118 @@ static void scan_async_host(struct soc_camera_host *ici)
>   #define scan_async_host(ici)		do {} while (0)
>   #endif
>
> +#ifdef CONFIG_OF
> +static int soc_of_bind(struct soc_camera_host *ici,
> +		       struct device_node *ep,
> +		       struct device_node *remote)
> +{
> +	struct soc_camera_device *icd;
> +	struct soc_camera_desc sdesc = {.host_desc.bus_id = ici->nr,};
> +	struct soc_camera_async_client *sasc;
> +	struct soc_camera_async_subdev *sasd;
> +	struct v4l2_async_subdev **asd_array;
> +	struct i2c_client *client;
> +	char clk_name[V4L2_SUBDEV_NAME_SIZE];
> +	int ret;
> +
> +	/* alloacte a new subdev and add match info to it */

    s/alloacte/allocate/

> +	sasd = devm_kzalloc(ici->v4l2_dev.dev, sizeof(*sasd), GFP_KERNEL);
> +	if (!sasd)
> +		return -ENOMEM;
> +
> +	asd_array = devm_kzalloc(ici->v4l2_dev.dev,
> +				 sizeof(struct v4l2_async_subdev **),

    Hm, is this a correct size indeed?



> +	client = of_find_i2c_device_by_node(remote);
> +

    I don't think empty line is needed here...

> +	if (client)
> +		snprintf(clk_name, sizeof(clk_name), "%d-%04x",
> +			 client->adapter->nr, client->addr);
> +	else
> +		snprintf(clk_name, sizeof(clk_name), "of-%s",
> +			 of_node_full_name(remote));
[...]

WBR, Sergei


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-06-06 17:27 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-14 10:36 [PATCH v3 7/7] soc_camera: initial of code Ben Dooks
2014-04-16 10:38 ` Josh Wu
2014-04-16 11:09 ` Ben Dooks
2014-04-16 11:28 ` Guennadi Liakhovetski
2014-04-26 17:07 ` Guennadi Liakhovetski
2014-04-28  2:57 ` Josh Wu
2014-05-03 16:44 ` Guennadi Liakhovetski
2014-05-15 21:01 ` Ben Dooks
2014-05-18 21:31 ` Guennadi Liakhovetski
2014-06-06 17:27 ` Sergei Shtylyov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.