Skip to content

Commit 0f48fde

Browse files
naushirpopcornmix
authored andcommitted
imx500: Fix for long exposure setup
The IMX500 (unlike the IMX477/IMX708) requires two regsiters to be set for the exposure shift value to work correctly. The additional register write (which was missing) is for the integration time shift. Signed-off-by: Naushir Patuck <[email protected]>
1 parent 0927316 commit 0f48fde

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/media/i2c/imx500.c

+6
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
/* Long exposure multiplier */
5858
#define IMX500_LONG_EXP_SHIFT_MAX 7
5959
#define IMX500_LONG_EXP_SHIFT_REG CCI_REG8(0x3210)
60+
#define IMX500_LONG_EXP_CIT_SHIFT_REG CCI_REG8(0x3100)
6061

6162
/* Exposure control */
6263
#define IMX500_REG_EXPOSURE CCI_REG16(0x0202)
@@ -1772,6 +1773,11 @@ static int imx500_set_frame_length(struct imx500 *imx500, unsigned int val)
17721773
if (ret)
17731774
return ret;
17741775

1776+
ret = cci_write(imx500->regmap, IMX500_LONG_EXP_CIT_SHIFT_REG,
1777+
imx500->long_exp_shift, NULL);
1778+
if (ret)
1779+
return ret;
1780+
17751781
return cci_write(imx500->regmap, IMX500_LONG_EXP_SHIFT_REG,
17761782
imx500->long_exp_shift, NULL);
17771783
}

0 commit comments

Comments
 (0)