diff mbox series

media: ov08x40: Extend sleep after reset to 5 ms

Message ID 20250311114844.25593-1-hdegoede@redhat.com (mailing list archive)
State New
Headers show
Series media: ov08x40: Extend sleep after reset to 5 ms | expand

Commit Message

Hans de Goede March 11, 2025, 11:48 a.m. UTC
Some users are reporting that ov08x40_identify_module() fails
to identify the chip reading 0x00 as value for OV08X40_REG_CHIP_ID.

Intel's out of tree IPU6 drivers include some ov08x40 changes
including adding support for the reset GPIO for older kernels and
Intel's patch for this uses 5 ms. Extend the sleep to 5 ms following
Intel's example, this fixes the ov08x40_identify_module() problem.

Link: https://github.com/intel/ipu6-drivers/blob/c09e2198d801e1eb701984d2948373123ba92a56/patch/v6.12/0008-media-ov08x40-Add-support-for-2-4-lanes-support-at-1.patch#L4607
Fixes: df1ae2251a50 ("media: ov08x40: Add OF probe support")
Cc: stable@vger.kernel.org
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 drivers/media/i2c/ov08x40.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Bryan O'Donoghue March 11, 2025, 11:51 a.m. UTC | #1
On 11/03/2025 11:48, Hans de Goede wrote:
> Some users are reporting that ov08x40_identify_module() fails
> to identify the chip reading 0x00 as value for OV08X40_REG_CHIP_ID.
> 
> Intel's out of tree IPU6 drivers include some ov08x40 changes
> including adding support for the reset GPIO for older kernels and
> Intel's patch for this uses 5 ms. Extend the sleep to 5 ms following
> Intel's example, this fixes the ov08x40_identify_module() problem.
> 
> Link: https://github.com/intel/ipu6-drivers/blob/c09e2198d801e1eb701984d2948373123ba92a56/patch/v6.12/0008-media-ov08x40-Add-support-for-2-4-lanes-support-at-1.patch#L4607
> Fixes: df1ae2251a50 ("media: ov08x40: Add OF probe support")
> Cc: stable@vger.kernel.org
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> ---
>   drivers/media/i2c/ov08x40.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/media/i2c/ov08x40.c b/drivers/media/i2c/ov08x40.c
> index cf0e41fc3071..54575eea3c49 100644
> --- a/drivers/media/i2c/ov08x40.c
> +++ b/drivers/media/i2c/ov08x40.c
> @@ -1341,7 +1341,7 @@ static int ov08x40_power_on(struct device *dev)
>   	}
>   
>   	gpiod_set_value_cansleep(ov08x->reset_gpio, 0);
> -	usleep_range(1500, 1800);
> +	usleep_range(5000, 5500);
>   
>   	return 0;
>   

Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
diff mbox series

Patch

diff --git a/drivers/media/i2c/ov08x40.c b/drivers/media/i2c/ov08x40.c
index cf0e41fc3071..54575eea3c49 100644
--- a/drivers/media/i2c/ov08x40.c
+++ b/drivers/media/i2c/ov08x40.c
@@ -1341,7 +1341,7 @@  static int ov08x40_power_on(struct device *dev)
 	}
 
 	gpiod_set_value_cansleep(ov08x->reset_gpio, 0);
-	usleep_range(1500, 1800);
+	usleep_range(5000, 5500);
 
 	return 0;