From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Sakari Ailus <sakari.ailus@linux.intel.com>
Cc: linux-media@vger.kernel.org, hverkuil@xs4all.nl
Subject: Re: [PATCH v3 3/3] smiapp: Implement the test pattern control
Date: Thu, 29 May 2014 16:54:55 +0200 [thread overview]
Message-ID: <2777039.3n5AP3eAS8@avalon> (raw)
In-Reply-To: <1401374448-30411-4-git-send-email-sakari.ailus@linux.intel.com>
Hi Sakari,
Thank you for the patch.
On Thursday 29 May 2014 17:40:48 Sakari Ailus wrote:
> Add support for the V4L2_CID_TEST_PATTERN control. When the solid colour
> mode is selected, additional controls become available for setting the
> solid four solid colour components.
>
> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
> Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
> ---
> drivers/media/i2c/smiapp/smiapp-core.c | 84 +++++++++++++++++++++++++++++--
> drivers/media/i2c/smiapp/smiapp.h | 4 ++
> 2 files changed, 84 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/media/i2c/smiapp/smiapp-core.c
> b/drivers/media/i2c/smiapp/smiapp-core.c index 446c82c..dc82adb 100644
> --- a/drivers/media/i2c/smiapp/smiapp-core.c
> +++ b/drivers/media/i2c/smiapp/smiapp-core.c
> @@ -404,6 +404,16 @@ static void smiapp_update_mbus_formats(struct
> smiapp_sensor *sensor) pixel_order_str[pixel_order]);
> }
>
> +static const char * const smiapp_test_patterns[] = {
> + "Disabled",
> + "Solid Colour",
> + "Eight Vertical Colour Bars",
> + "Colour Bars With Fade to Grey",
> + "Pseudorandom Sequence (PN9)",
> +};
> +
> +static const struct v4l2_ctrl_ops smiapp_ctrl_ops;
Is this needed ?
> +
> static int smiapp_set_ctrl(struct v4l2_ctrl *ctrl)
> {
> struct smiapp_sensor *sensor =
> @@ -477,6 +487,35 @@ static int smiapp_set_ctrl(struct v4l2_ctrl *ctrl)
>
> return smiapp_pll_update(sensor);
>
> + case V4L2_CID_TEST_PATTERN: {
> + unsigned int i;
> +
> + for (i = 0; i < ARRAY_SIZE(sensor->test_data); i++)
> + v4l2_ctrl_activate(
> + sensor->test_data[i],
> + ctrl->val ==
> + V4L2_SMIAPP_TEST_PATTERN_MODE_SOLID_COLOUR);
> +
> + return smiapp_write(
> + sensor, SMIAPP_REG_U16_TEST_PATTERN_MODE, ctrl->val);
> + }
> +
> + case V4L2_CID_TEST_PATTERN_RED:
> + return smiapp_write(
> + sensor, SMIAPP_REG_U16_TEST_DATA_RED, ctrl->val);
> +
> + case V4L2_CID_TEST_PATTERN_GREENR:
> + return smiapp_write(
> + sensor, SMIAPP_REG_U16_TEST_DATA_GREENR, ctrl->val);
> +
> + case V4L2_CID_TEST_PATTERN_BLUE:
> + return smiapp_write(
> + sensor, SMIAPP_REG_U16_TEST_DATA_BLUE, ctrl->val);
> +
> + case V4L2_CID_TEST_PATTERN_GREENB:
> + return smiapp_write(
> + sensor, SMIAPP_REG_U16_TEST_DATA_GREENB, ctrl->val);
> +
> default:
> return -EINVAL;
> }
> @@ -489,10 +528,10 @@ static const struct v4l2_ctrl_ops smiapp_ctrl_ops = {
> static int smiapp_init_controls(struct smiapp_sensor *sensor)
> {
> struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd);
> - unsigned int max;
> + unsigned int max, i;
> int rval;
>
> - rval = v4l2_ctrl_handler_init(&sensor->pixel_array->ctrl_handler, 7);
> + rval = v4l2_ctrl_handler_init(&sensor->pixel_array->ctrl_handler, 12);
> if (rval)
> return rval;
> sensor->pixel_array->ctrl_handler.lock = &sensor->mutex;
> @@ -535,6 +574,18 @@ static int smiapp_init_controls(struct smiapp_sensor
> *sensor) &sensor->pixel_array->ctrl_handler, &smiapp_ctrl_ops,
> V4L2_CID_PIXEL_RATE, 0, 0, 1, 0);
>
> + v4l2_ctrl_new_std_menu_items(&sensor->pixel_array->ctrl_handler,
> + &smiapp_ctrl_ops, V4L2_CID_TEST_PATTERN,
> + ARRAY_SIZE(smiapp_test_patterns) - 1,
> + 0, 0, smiapp_test_patterns);
> +
> + for (i = 0; i < ARRAY_SIZE(sensor->test_data); i++)
> + sensor->test_data[i] =
> + v4l2_ctrl_new_std(&sensor->pixel_array->ctrl_handler,
> + &smiapp_ctrl_ops,
> + V4L2_CID_TEST_PATTERN_RED + i,
> + 0, 0, 1, 0);
> +
> if (sensor->pixel_array->ctrl_handler.error) {
> dev_err(&client->dev,
> "pixel array controls initialization failed (%d)\n",
> @@ -543,6 +594,14 @@ static int smiapp_init_controls(struct smiapp_sensor
> *sensor) goto error;
> }
>
> + for (i = 0; i < ARRAY_SIZE(sensor->test_data); i++) {
> + struct v4l2_ctrl *ctrl = sensor->test_data[i];
> +
> + ctrl->maximum =
> + ctrl->default_value =
> + ctrl->cur.val = (1 << sensor->csi_format->width) - 1;
I think multiple assignments on the same line are discouraged.
Furthermore, couldn't you move this above and use the right values directly
when creating the controls ?
> + }
> +
> sensor->pixel_array->sd.ctrl_handler =
> &sensor->pixel_array->ctrl_handler;
>
> @@ -1670,17 +1729,34 @@ static int smiapp_set_format(struct v4l2_subdev
> *subdev, if (fmt->pad == ssd->source_pad) {
> u32 code = fmt->format.code;
> int rval = __smiapp_get_format(subdev, fh, fmt);
> + bool range_changed = false;
> + unsigned int i;
>
> if (!rval && subdev == &sensor->src->sd) {
> const struct smiapp_csi_data_format *csi_format =
> smiapp_validate_csi_data_format(sensor, code);
> - if (fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE)
> +
> + if (fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE) {
> + if (csi_format->width !=
> + sensor->csi_format->width)
> + range_changed = true;
> +
> sensor->csi_format = csi_format;
> + }
> +
> fmt->format.code = csi_format->code;
> }
>
> mutex_unlock(&sensor->mutex);
> - return rval;
> + if (rval || !range_changed)
> + return rval;
> +
> + for (i = 0; i < ARRAY_SIZE(sensor->test_data); i++)
> + v4l2_ctrl_modify_range(
> + sensor->test_data[i],
> + 0, (1 << sensor->csi_format->width) - 1, 1, 0);
> +
> + return 0;
> }
>
> /* Sink pad. Width and height are changeable here. */
> diff --git a/drivers/media/i2c/smiapp/smiapp.h
> b/drivers/media/i2c/smiapp/smiapp.h index 7cc5aae..874b49f 100644
> --- a/drivers/media/i2c/smiapp/smiapp.h
> +++ b/drivers/media/i2c/smiapp/smiapp.h
> @@ -54,6 +54,8 @@
> (1000 + (SMIAPP_RESET_DELAY_CLOCKS * 1000 \
> + (clk) / 1000 - 1) / ((clk) / 1000))
>
> +#define SMIAPP_COLOUR_COMPONENTS 4
> +
> #include "smiapp-limits.h"
>
> struct smiapp_quirk;
> @@ -241,6 +243,8 @@ struct smiapp_sensor {
> /* src controls */
> struct v4l2_ctrl *link_freq;
> struct v4l2_ctrl *pixel_rate_csi;
> + /* test pattern colour components */
> + struct v4l2_ctrl *test_data[SMIAPP_COLOUR_COMPONENTS];
> };
>
> #define to_smiapp_subdev(_sd) \
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2014-05-29 14:54 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-29 14:40 [PATCH v3 0/3] smiapp test pattern support Sakari Ailus
2014-05-29 14:40 ` [PATCH v3 1/3] v4l: Add test pattern colour component controls Sakari Ailus
2014-05-29 14:47 ` Laurent Pinchart
2014-05-29 14:58 ` Sakari Ailus
2014-05-29 15:01 ` Laurent Pinchart
2014-05-30 12:28 ` Hans Verkuil
2014-06-03 12:21 ` Laurent Pinchart
2014-06-03 12:27 ` Sakari Ailus
2014-06-03 12:42 ` Hans Verkuil
2014-06-10 12:15 ` Hans Verkuil
2014-05-29 14:40 ` [PATCH v3 2/3] smiapp: Add driver-specific test pattern menu item definitions Sakari Ailus
2014-05-29 14:48 ` Laurent Pinchart
2014-05-29 15:08 ` Sakari Ailus
2014-06-10 12:16 ` Hans Verkuil
2014-06-10 15:57 ` Prabhakar Lad
2014-06-11 6:34 ` Sakari Ailus
2014-06-11 6:36 ` [PATCH v3.1 2/4] " Sakari Ailus
2014-06-11 7:58 ` Prabhakar Lad
2014-05-29 14:40 ` [PATCH v3 3/3] smiapp: Implement the test pattern control Sakari Ailus
2014-05-29 14:54 ` Laurent Pinchart [this message]
2014-05-29 15:01 ` Sakari Ailus
2014-05-29 15:14 ` Sakari Ailus
2014-05-29 15:16 ` [PATCH v3.1 " Sakari Ailus
2014-07-10 14:16 ` Laurent Pinchart
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=2777039.3n5AP3eAS8@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=hverkuil@xs4all.nl \
--cc=linux-media@vger.kernel.org \
--cc=sakari.ailus@linux.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