This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: i2c: imx219: Use active crop rectangle to configure registers
Author:  Laurent Pinchart <laurent.pinch...@ideasonboard.com>
Date:    Sun Sep 24 18:32:58 2023 +0300

Configure the crop-related registers from the values stored in the
active crop rectangle instead of the mode structure. This removes usage
of the mode from the imx219_set_framefmt(). No functional change is
intended.

Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo.mo...@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ai...@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl>

 drivers/media/i2c/imx219.c | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

---

diff --git a/drivers/media/i2c/imx219.c b/drivers/media/i2c/imx219.c
index 2e1fbeef11a8..562cfee87b24 100644
--- a/drivers/media/i2c/imx219.c
+++ b/drivers/media/i2c/imx219.c
@@ -611,13 +611,17 @@ static int imx219_set_pad_format(struct v4l2_subdev *sd,
 }
 
 static int imx219_set_framefmt(struct imx219 *imx219,
-                              const struct v4l2_mbus_framefmt *format)
+                              struct v4l2_subdev_state *state)
 {
-       const struct imx219_mode *mode = imx219->mode;
+       const struct v4l2_mbus_framefmt *format;
+       const struct v4l2_rect *crop;
        unsigned int bpp;
        u64 bin_mode;
        int ret = 0;
 
+       format = v4l2_subdev_get_pad_format(&imx219->sd, state, 0);
+       crop = v4l2_subdev_get_pad_crop(&imx219->sd, state, 0);
+
        switch (format->code) {
        case MEDIA_BUS_FMT_SRGGB8_1X8:
        case MEDIA_BUS_FMT_SGRBG8_1X8:
@@ -636,15 +640,13 @@ static int imx219_set_framefmt(struct imx219 *imx219,
        }
 
        cci_write(imx219->regmap, IMX219_REG_X_ADD_STA_A,
-                 mode->crop.left - IMX219_PIXEL_ARRAY_LEFT, &ret);
+                 crop->left - IMX219_PIXEL_ARRAY_LEFT, &ret);
        cci_write(imx219->regmap, IMX219_REG_X_ADD_END_A,
-                 mode->crop.left - IMX219_PIXEL_ARRAY_LEFT + mode->crop.width 
- 1,
-                 &ret);
+                 crop->left - IMX219_PIXEL_ARRAY_LEFT + crop->width - 1, &ret);
        cci_write(imx219->regmap, IMX219_REG_Y_ADD_STA_A,
-                 mode->crop.top - IMX219_PIXEL_ARRAY_TOP, &ret);
+                 crop->top - IMX219_PIXEL_ARRAY_TOP, &ret);
        cci_write(imx219->regmap, IMX219_REG_Y_ADD_END_A,
-                 mode->crop.top - IMX219_PIXEL_ARRAY_TOP + mode->crop.height - 
1,
-                 &ret);
+                 crop->top - IMX219_PIXEL_ARRAY_TOP + crop->height - 1, &ret);
 
        if (!imx219->mode->binning)
                bin_mode = IMX219_BINNING_NONE;
@@ -714,7 +716,6 @@ static int imx219_start_streaming(struct imx219 *imx219,
                                  struct v4l2_subdev_state *state)
 {
        struct i2c_client *client = v4l2_get_subdevdata(&imx219->sd);
-       const struct v4l2_mbus_framefmt *format;
        int ret;
 
        ret = pm_runtime_resume_and_get(&client->dev);
@@ -737,8 +738,7 @@ static int imx219_start_streaming(struct imx219 *imx219,
        }
 
        /* Apply format and crop settings. */
-       format = v4l2_subdev_get_pad_format(&imx219->sd, state, 0);
-       ret = imx219_set_framefmt(imx219, format);
+       ret = imx219_set_framefmt(imx219, state);
        if (ret) {
                dev_err(&client->dev, "%s failed to set frame format: %d\n",
                        __func__, ret);

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to