2021-11-01 19:55:51

by Mirela Rabulea OSS

[permalink] [raw]
Subject: [PATCH] media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated

From: Mirela Rabulea <[email protected]>

In ov5640_set_fmt, pending_fmt_change will always be false, because the
sensor format is saved before comparing it with the previous format:
fmt = &sensor->fmt;...
*fmt = *mbus_fmt;...
if (mbus_fmt->code != sensor->fmt.code)
sensor->pending_fmt_change = true;
This causes the sensor to capture with the previous pixelcode.

Also, changes might happen even for V4L2_SUBDEV_FORMAT_TRY, so fix that.

Basically, revert back to the state before
commit 071154499193 ("media: ov5640: Fix set format regression")
as it was more clear, and then update format even when pixelcode does
not change, as resolution might change.

Fixes: 071154499193 ("media: ov5640: Fix set format regression")
Fixes: 6949d864776e ("media: ov5640: do not change mode if format or frame interval is unchanged")
Fixes: fb98e29ff1ea5 ("media: ov5640: fix mode change regression")

Signed-off-by: Mirela Rabulea <[email protected]>
---
drivers/media/i2c/ov5640.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c
index ddbd71394db3..db5a19babe67 100644
--- a/drivers/media/i2c/ov5640.c
+++ b/drivers/media/i2c/ov5640.c
@@ -2293,7 +2293,6 @@ static int ov5640_set_fmt(struct v4l2_subdev *sd,
struct ov5640_dev *sensor = to_ov5640_dev(sd);
const struct ov5640_mode_info *new_mode;
struct v4l2_mbus_framefmt *mbus_fmt = &format->format;
- struct v4l2_mbus_framefmt *fmt;
int ret;

if (format->pad != 0)
@@ -2311,12 +2310,10 @@ static int ov5640_set_fmt(struct v4l2_subdev *sd,
if (ret)
goto out;

- if (format->which == V4L2_SUBDEV_FORMAT_TRY)
- fmt = v4l2_subdev_get_try_format(sd, sd_state, 0);
- else
- fmt = &sensor->fmt;
-
- *fmt = *mbus_fmt;
+ if (format->which == V4L2_SUBDEV_FORMAT_TRY) {
+ *v4l2_subdev_get_try_format(sd, sd_state, 0) = *mbus_fmt;
+ goto out;
+ }

if (new_mode != sensor->current_mode) {
sensor->current_mode = new_mode;
@@ -2325,6 +2322,9 @@ static int ov5640_set_fmt(struct v4l2_subdev *sd,
if (mbus_fmt->code != sensor->fmt.code)
sensor->pending_fmt_change = true;

+ /* update format even if code is unchanged, resolution might change */
+ sensor->fmt = *mbus_fmt;
+
__v4l2_ctrl_s_ctrl_int64(sensor->ctrls.pixel_rate,
ov5640_calc_pixel_rate(sensor));
out:
--
2.25.1


2021-11-09 22:27:32

by Hugues Fruchet

[permalink] [raw]
Subject: Re: [PATCH] media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated

Hi Mirela,

Thanks for patch, tested OK on my side:

Acked-by: Hugues Fruchet <[email protected]>
Tested-by: Hugues Fruchet <[email protected]>

BR,
Hugues.
>
>
> -----Original Message-----
> From: Mirela Rabulea (OSS) <[email protected]>
> Sent: lundi 1 novembre 2021 20:53
> To: [email protected]; [email protected]; Hugues FRUCHET <[email protected]>; [email protected]
> Cc: [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; Mirela Rabulea <[email protected]>
> Subject: [PATCH] media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated
>
> From: Mirela Rabulea <[email protected]>
>
> In ov5640_set_fmt, pending_fmt_change will always be false, because the sensor format is saved before comparing it with the previous format:
> fmt = &sensor->fmt;...
> *fmt = *mbus_fmt;...
> if (mbus_fmt->code != sensor->fmt.code)
> sensor->pending_fmt_change = true;
> This causes the sensor to capture with the previous pixelcode.
>
> Also, changes might happen even for V4L2_SUBDEV_FORMAT_TRY, so fix that.
>
> Basically, revert back to the state before commit 071154499193 ("media: ov5640: Fix set format regression") as it was more clear, and then update format even when pixelcode does not change, as resolution might change.
>
> Fixes: 071154499193 ("media: ov5640: Fix set format regression")
> Fixes: 6949d864776e ("media: ov5640: do not change mode if format or frame interval is unchanged")
> Fixes: fb98e29ff1ea5 ("media: ov5640: fix mode change regression")
>
> Signed-off-by: Mirela Rabulea <[email protected]>
> ---
> drivers/media/i2c/ov5640.c | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c index ddbd71394db3..db5a19babe67 100644
> --- a/drivers/media/i2c/ov5640.c
> +++ b/drivers/media/i2c/ov5640.c
> @@ -2293,7 +2293,6 @@ static int ov5640_set_fmt(struct v4l2_subdev *sd,
> struct ov5640_dev *sensor = to_ov5640_dev(sd);
> const struct ov5640_mode_info *new_mode;
> struct v4l2_mbus_framefmt *mbus_fmt = &format->format;
> - struct v4l2_mbus_framefmt *fmt;
> int ret;
>
> if (format->pad != 0)
> @@ -2311,12 +2310,10 @@ static int ov5640_set_fmt(struct v4l2_subdev *sd,
> if (ret)
> goto out;
>
> - if (format->which == V4L2_SUBDEV_FORMAT_TRY)
> - fmt = v4l2_subdev_get_try_format(sd, sd_state, 0);
> - else
> - fmt = &sensor->fmt;
> -
> - *fmt = *mbus_fmt;
> + if (format->which == V4L2_SUBDEV_FORMAT_TRY) {
> + *v4l2_subdev_get_try_format(sd, sd_state, 0) = *mbus_fmt;
> + goto out;
> + }
>
> if (new_mode != sensor->current_mode) {
> sensor->current_mode = new_mode;
> @@ -2325,6 +2322,9 @@ static int ov5640_set_fmt(struct v4l2_subdev *sd,
> if (mbus_fmt->code != sensor->fmt.code)
> sensor->pending_fmt_change = true;
>
> + /* update format even if code is unchanged, resolution might change */
> + sensor->fmt = *mbus_fmt;
> +
> __v4l2_ctrl_s_ctrl_int64(sensor->ctrls.pixel_rate,
> ov5640_calc_pixel_rate(sensor));
> out:
> --
> 2.25.1
>

2021-11-10 18:03:56

by Mirela Rabulea

[permalink] [raw]
Subject: Re: [EXT] Re: [PATCH] media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated

Hi Hugues,

On Tue, 2021-11-09 at 15:19 +0100, Hugues FRUCHET - FOSS wrote:
>
> Hi Mirela,
>
> Thanks for patch, tested OK on my side:

Thanks, for testing!

Regards,
Mirela

>
> Acked-by: Hugues Fruchet <[email protected]>
> Tested-by: Hugues Fruchet <[email protected]>
>
> BR,
> Hugues.
> >
> > -----Original Message-----
> > From: Mirela Rabulea (OSS) <[email protected]>
> > Sent: lundi 1 novembre 2021 20:53
> > To: [email protected]; [email protected]; Hugues FRUCHET <
> > [email protected]>; [email protected]
> > Cc: [email protected]; [email protected];
> > [email protected]; [email protected];
> > [email protected]; [email protected];
> > [email protected]; Mirela Rabulea <[email protected]>
> > Subject: [PATCH] media: ov5640: Fix set format, v4l2_mbus_pixelcode
> > not updated
> >
> > From: Mirela Rabulea <[email protected]>
> >
> > In ov5640_set_fmt, pending_fmt_change will always be false, because
> > the sensor format is saved before comparing it with the previous
> > format:
> > fmt = &sensor->fmt;...
> > *fmt = *mbus_fmt;...
> > if (mbus_fmt->code != sensor->fmt.code)
> > sensor->pending_fmt_change = true;
> > This causes the sensor to capture with the previous pixelcode.
> >
> > Also, changes might happen even for V4L2_SUBDEV_FORMAT_TRY, so fix
> > that.
> >
> > Basically, revert back to the state before commit 071154499193
> > ("media: ov5640: Fix set format regression") as it was more clear,
> > and then update format even when pixelcode does not change, as
> > resolution might change.
> >
> > Fixes: 071154499193 ("media: ov5640: Fix set format regression")
> > Fixes: 6949d864776e ("media: ov5640: do not change mode if format
> > or frame interval is unchanged")
> > Fixes: fb98e29ff1ea5 ("media: ov5640: fix mode change regression")
> >
> > Signed-off-by: Mirela Rabulea <[email protected]>
> > ---
> > drivers/media/i2c/ov5640.c | 14 +++++++-------
> > 1 file changed, 7 insertions(+), 7 deletions(-)
> >
> > diff --git a/drivers/media/i2c/ov5640.c
> > b/drivers/media/i2c/ov5640.c index ddbd71394db3..db5a19babe67
> > 100644
> > --- a/drivers/media/i2c/ov5640.c
> > +++ b/drivers/media/i2c/ov5640.c
> > @@ -2293,7 +2293,6 @@ static int ov5640_set_fmt(struct v4l2_subdev
> > *sd,
> > struct ov5640_dev *sensor = to_ov5640_dev(sd);
> > const struct ov5640_mode_info *new_mode;
> > struct v4l2_mbus_framefmt *mbus_fmt = &format->format;
> > - struct v4l2_mbus_framefmt *fmt;
> > int ret;
> >
> > if (format->pad != 0)
> > @@ -2311,12 +2310,10 @@ static int ov5640_set_fmt(struct
> > v4l2_subdev *sd,
> > if (ret)
> > goto out;
> >
> > - if (format->which == V4L2_SUBDEV_FORMAT_TRY)
> > - fmt = v4l2_subdev_get_try_format(sd, sd_state, 0);
> > - else
> > - fmt = &sensor->fmt;
> > -
> > - *fmt = *mbus_fmt;
> > + if (format->which == V4L2_SUBDEV_FORMAT_TRY) {
> > + *v4l2_subdev_get_try_format(sd, sd_state, 0) =
> > *mbus_fmt;
> > + goto out;
> > + }
> >
> > if (new_mode != sensor->current_mode) {
> > sensor->current_mode = new_mode;
> > @@ -2325,6 +2322,9 @@ static int ov5640_set_fmt(struct v4l2_subdev
> > *sd,
> > if (mbus_fmt->code != sensor->fmt.code)
> > sensor->pending_fmt_change = true;
> >
> > + /* update format even if code is unchanged, resolution might
> > change */
> > + sensor->fmt = *mbus_fmt;
> > +
> > __v4l2_ctrl_s_ctrl_int64(sensor->ctrls.pixel_rate,
> > ov5640_calc_pixel_rate(sensor));
> > out:
> > --
> > 2.25.1
> >

2021-12-14 18:35:38

by jacopo mondi

[permalink] [raw]
Subject: Re: [PATCH] media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated

Hi Mirela,

On Mon, Nov 01, 2021 at 09:52:51PM +0200, Mirela Rabulea (OSS) wrote:
> From: Mirela Rabulea <[email protected]>
>
> In ov5640_set_fmt, pending_fmt_change will always be false, because the
> sensor format is saved before comparing it with the previous format:
> fmt = &sensor->fmt;...
> *fmt = *mbus_fmt;...
> if (mbus_fmt->code != sensor->fmt.code)
> sensor->pending_fmt_change = true;
> This causes the sensor to capture with the previous pixelcode.
>
> Also, changes might happen even for V4L2_SUBDEV_FORMAT_TRY, so fix that.
>
> Basically, revert back to the state before
> commit 071154499193 ("media: ov5640: Fix set format regression")
> as it was more clear, and then update format even when pixelcode does
> not change, as resolution might change.
>
> Fixes: 071154499193 ("media: ov5640: Fix set format regression")
> Fixes: 6949d864776e ("media: ov5640: do not change mode if format or frame interval is unchanged")
> Fixes: fb98e29ff1ea5 ("media: ov5640: fix mode change regression")

Wow, we really piled bug over bug. So sorry about this and thanks for
fixing

Reviewed-by: Jacopo Mondi <[email protected]>

Thanks
j
>
> Signed-off-by: Mirela Rabulea <[email protected]>
> ---
> drivers/media/i2c/ov5640.c | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c
> index ddbd71394db3..db5a19babe67 100644
> --- a/drivers/media/i2c/ov5640.c
> +++ b/drivers/media/i2c/ov5640.c
> @@ -2293,7 +2293,6 @@ static int ov5640_set_fmt(struct v4l2_subdev *sd,
> struct ov5640_dev *sensor = to_ov5640_dev(sd);
> const struct ov5640_mode_info *new_mode;
> struct v4l2_mbus_framefmt *mbus_fmt = &format->format;
> - struct v4l2_mbus_framefmt *fmt;
> int ret;
>
> if (format->pad != 0)
> @@ -2311,12 +2310,10 @@ static int ov5640_set_fmt(struct v4l2_subdev *sd,
> if (ret)
> goto out;
>
> - if (format->which == V4L2_SUBDEV_FORMAT_TRY)
> - fmt = v4l2_subdev_get_try_format(sd, sd_state, 0);
> - else
> - fmt = &sensor->fmt;
> -
> - *fmt = *mbus_fmt;
> + if (format->which == V4L2_SUBDEV_FORMAT_TRY) {
> + *v4l2_subdev_get_try_format(sd, sd_state, 0) = *mbus_fmt;
> + goto out;
> + }
>
> if (new_mode != sensor->current_mode) {
> sensor->current_mode = new_mode;
> @@ -2325,6 +2322,9 @@ static int ov5640_set_fmt(struct v4l2_subdev *sd,
> if (mbus_fmt->code != sensor->fmt.code)
> sensor->pending_fmt_change = true;
>
> + /* update format even if code is unchanged, resolution might change */
> + sensor->fmt = *mbus_fmt;
> +
> __v4l2_ctrl_s_ctrl_int64(sensor->ctrls.pixel_rate,
> ov5640_calc_pixel_rate(sensor));
> out:
> --
> 2.25.1
>