From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Hans Verkuil <hverkuil@xs4all.nl>
Cc: linux-media@vger.kernel.org,
Songjun Wu <songjun.wu@microchip.com>,
Hans Verkuil <hans.verkuil@cisco.com>
Subject: Re: [RFC PATCH 1/7] ov7670: add media controller support
Date: Wed, 17 Aug 2016 15:25:50 +0300 [thread overview]
Message-ID: <8975048.xlTtpRAV5u@avalon> (raw)
In-Reply-To: <1471415383-38531-2-git-send-email-hverkuil@xs4all.nl>
Hi Hans,
Thank you for the patch.
On Wednesday 17 Aug 2016 08:29:37 Hans Verkuil wrote:
> From: Hans Verkuil <hans.verkuil@cisco.com>
>
> Add media controller support.
>
> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
> ---
> drivers/media/i2c/ov7670.c | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
>
> diff --git a/drivers/media/i2c/ov7670.c b/drivers/media/i2c/ov7670.c
> index 56cfb5c..25f46c7 100644
> --- a/drivers/media/i2c/ov7670.c
> +++ b/drivers/media/i2c/ov7670.c
> @@ -210,6 +210,7 @@ struct ov7670_devtype {
> struct ov7670_format_struct; /* coming later */
> struct ov7670_info {
> struct v4l2_subdev sd;
> + struct media_pad pad;
You could guard this with #if defined(CONFIG_MEDIA_CONTROLLER) as well. I'm
wondering, however, whether we shouldn't start making CONFIG_MEDIA_CONTROLLER
mandatory for I2C sensors.
> struct v4l2_ctrl_handler hdl;
> struct {
> /* gain cluster */
> @@ -1641,6 +1642,16 @@ static int ov7670_probe(struct i2c_client *client,
> v4l2_ctrl_handler_free(&info->hdl);
> return err;
> }
> +
> +#if defined(CONFIG_MEDIA_CONTROLLER)
> + info->pad.flags = MEDIA_PAD_FL_SOURCE;
> + info->sd.entity.function = MEDIA_ENT_F_CAM_SENSOR;
> + ret = media_entity_pads_init(&info->sd.entity, 1, &info->pad);
> + if (ret < 0) {
> + v4l2_ctrl_handler_free(&info->hdl);
> + return ret;
> + }
> +#endif
> /*
> * We have checked empirically that hw allows to read back the gain
> * value chosen by auto gain but that's not the case for auto
exposure.
> @@ -1662,6 +1673,9 @@ static int ov7670_remove(struct i2c_client *client)
>
> v4l2_device_unregister_subdev(sd);
> v4l2_ctrl_handler_free(&info->hdl);
> +#if defined(CONFIG_MEDIA_CONTROLLER)
> + media_entity_cleanup(&sd->entity);
> +#endif
> return 0;
> }
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2016-08-17 12:25 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-17 6:29 [RFC PATCH 0/7] atmel-isi: convert to a standalone driver Hans Verkuil
2016-08-17 6:29 ` [RFC PATCH 1/7] ov7670: add media controller support Hans Verkuil
2016-08-17 12:25 ` Laurent Pinchart [this message]
2016-08-17 6:29 ` [RFC PATCH 2/7] ov7670: call v4l2_async_register_subdev Hans Verkuil
2016-08-17 12:27 ` Laurent Pinchart
2016-08-17 6:29 ` [RFC PATCH 3/7] ov7670: fix g/s_parm Hans Verkuil
2016-08-17 6:29 ` [RFC PATCH 4/7] ov7670: get xvclk Hans Verkuil
2016-08-17 12:30 ` Laurent Pinchart
2016-09-21 11:18 ` Sakari Ailus
2016-08-17 6:29 ` [RFC PATCH 5/7] ov7670: add devicetree support Hans Verkuil
2016-08-17 12:44 ` Laurent Pinchart
2016-08-26 7:45 ` Hans Verkuil
2016-09-21 13:30 ` Laurent Pinchart
2016-09-21 11:33 ` Sakari Ailus
2016-09-21 12:39 ` Laurent Pinchart
2016-09-21 11:09 ` Sakari Ailus
2016-08-17 6:29 ` [RFC PATCH 6/7] atmel-isi: remove dependency of the soc-camera framework Hans Verkuil
2016-08-18 5:53 ` Wu, Songjun
2016-09-21 7:04 ` Hans Verkuil
2016-09-23 6:05 ` Wu, Songjun
2016-10-18 9:21 ` Wu, Songjun
2016-10-18 10:58 ` Hans Verkuil
2016-10-19 7:36 ` Wu, Songjun
2016-10-19 7:46 ` Hans Verkuil
2016-10-19 7:48 ` Wu, Songjun
2016-11-14 8:19 ` Hans Verkuil
2016-11-14 8:22 ` Wu, Songjun
2016-08-17 6:29 ` [RFC PATCH 7/7] sama5d3 dts: enable atmel-isi Hans Verkuil
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=8975048.xlTtpRAV5u@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=hans.verkuil@cisco.com \
--cc=hverkuil@xs4all.nl \
--cc=linux-media@vger.kernel.org \
--cc=songjun.wu@microchip.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;
as well as URLs for NNTP newsgroup(s).