media: rockchip: vicap fixes error of group sync state to isp

error state may lead to reduce fps with offline camera when used dual camera

Signed-off-by: Zefa Chen <zefa.chen@rock-chips.com>
Change-Id: Ie45039ac7ff7ab65d02acde7aad0b6789f793738
This commit is contained in:
Zefa Chen
2024-12-09 09:54:01 +08:00
committed by Tao Huang
parent 53626f9b25
commit 9f3e502ead

View File

@@ -478,6 +478,15 @@ static long sditf_ioctl(struct v4l2_subdev *sd, unsigned int cmd, void *arg)
if (mode->rdbk_mode == RKISP_VICAP_ONLINE_UNITE &&
priv->cif_dev->chip_id < CHIP_RV1103B_CIF)
return -EINVAL;
ret = v4l2_subdev_call(cif_dev->terminal_sensor.sd,
core, ioctl,
RKMODULE_GET_SYNC_MODE,
&sync_type);
if (ret || sync_type == NO_SYNC_MODE)
mode->input.multi_sync = 0;
else
mode->input.multi_sync = 1;
memcpy(&priv->mode_src, mode, sizeof(*mode));
if (cif_dev->is_thunderboot &&
cif_dev->is_thunderboot_start) {
@@ -496,15 +505,6 @@ static long sditf_ioctl(struct v4l2_subdev *sd, unsigned int cmd, void *arg)
else
mode->input.merge_num = 1;
mode->input.index = priv->combine_index;
ret = v4l2_subdev_call(cif_dev->terminal_sensor.sd,
core, ioctl,
RKMODULE_GET_SYNC_MODE,
&sync_type);
if (ret || sync_type == NO_SYNC_MODE)
mode->input.multi_sync = 0;
else
mode->input.multi_sync = 1;
#ifdef CONFIG_VIDEO_ROCKCHIP_THUNDER_BOOT_SETUP
if (cif_dev->is_thunderboot)
sditf_select_sensor_setting_for_thunderboot(priv);