Camera bring up in sc20 module

Hello,

We are trying to use ov2680 camera module with sc20 som.

but camera is not detecting,

We have configured driver but it gives below error,

i2c-msm-v2 78b7000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:2 tx:2) mode:FIFO slv_addr:0x36 MSTR_STS:0x091343c8 OPER:0x00000010
[ 20.846815] msm_sensor_match_id: read id: 0x0 expected id 0x2680:
[ 20.846840] msm_sensor_match_id: ov2680: read id failed
[ 20.852062] msm_sensor_check_id:1343 match id failed rc -107
[ 20.976798] msm_sensor_match_id:514 failed: eda94700 eb891680 ee399000
[ 20.984126] i2c-msm-v2 78b7000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:2 tx:2) mode:FIFO slv_addr:0x36 MSTR_STS:0x011363c8 OPER:0x00000010
[ 20.998975] msm_sensor_match_id: ov2680: read id failed
[ 21.004334] msm_sensor_check_id:1343 match id failed rc -107
[ 21.126946] msm_sensor_match_id:514 failed: eda94700 eb891680 ee399000
[ 21.133234] i2c-msm-v2 78b7000.i2c: NACK: slave not responding, ensure its powered: msgs(n:2 cur:0 tx) bc(rx:2 tx:2) mode:FIFO slv_addr:0x36 MSTR_STS:0x011363c8 OPER:0x00000010
[ 21.148262] msm_sensor_match_id: read id: 0x0 expected id 0x2680:
[ 21.148275] msm_sensor_match_id: ov2680: read id failed
[ 21.153976] msm_sensor_check_id:1343 match id failed rc -107
[ 21.230533] ov2680 power up failed

after trying to find out the solution,
We get to know that this is because of power sequence

can you please confirm if power sequence is correct or not

static struct msm_sensor_power_setting power_setting[] = {
{
.seq_type = SENSOR_VREG,
.seq_val = CAM_VIO,
.config_val = 0,
.delay = 0,
},
{
.seq_type = SENSOR_VREG,
.seq_val = CAM_VANA,
.config_val = 0,
.delay = 0,
},
{
.seq_type = SENSOR_VREG,
.seq_val = CAM_VIO,
.config_val = 1,
.delay = 1,
},
{
.seq_type = SENSOR_VREG,
.seq_val = CAM_VANA,
.config_val = 1,
.delay = 4,
},
{
.seq_type = SENSOR_GPIO,
.seq_val = SENSOR_GPIO_STANDBY,
.config_val = GPIO_OUT_LOW,
.delay = 0,
},
{
.seq_type = SENSOR_GPIO,
.seq_val = SENSOR_GPIO_STANDBY,
.config_val = GPIO_OUT_HIGH,
.delay = 7,
},
/{
.seq_type = SENSOR_GPIO,
.seq_val = SENSOR_GPIO_RESET,
.config_val = GPIO_OUT_LOW,
.delay = 1,
},
{
.seq_type = SENSOR_GPIO,
.seq_val = SENSOR_GPIO_RESET,
.config_val = GPIO_OUT_HIGH,
.delay = 1,
},
/
{
.seq_type = SENSOR_CLK,
.seq_val = SENSOR_CAM_MCLK,
.config_val = 24000000,
.delay = 10,
},
{
.seq_type = SENSOR_I2C_MUX,
.seq_val = 0,
.config_val = 0,
.delay = 0,
},

};

I am attaching datasheet link of ov2680 here please confirm power sequence again
https://datasheetspdf.com/pdf-file/1045403/OmniVision/OV2680/1

Thanks in advance, I hope issue will get resolve ASAP.

Hello,
any update on above issue??