Hi Team,
I am writing Imx334 HDR mode. Which is working fine on R32.61 but when I upgrade it to R35.4.1 ctrol for short camera is not being called.
static const u32 ctrl_cid_list = {
TEGRA_CAMERA_CID_GAIN,
TEGRA_CAMERA_CID_EXPOSURE,
TEGRA_CAMERA_CID_EXPOSURE_SHORT,
TEGRA_CAMERA_CID_FRAME_RATE,
TEGRA_CAMERA_CID_HDR_EN,
TEGRA_CAMERA_CID_SENSOR_MODE_ID,
};
static struct tegracam_ctrl_ops imx334_ctrl_ops = {
.numctrls = ARRAY_SIZE(ctrl_cid_list),
.ctrl_cid_list = ctrl_cid_list,
.set_gain = imx334_set_gain,
.set_exposure = imx334_set_exposure,
.set_exposure_short = imx334_set_exposure_short,
.set_frame_rate = imx334_set_frame_rate,
.set_group_hold = imx334_set_group_hold,
};
These are my dmesg logs
[ +0.000576] imx334 2-0010: imx334_power_on: power on
[ +0.009113] imx334 2-0010: start of imx334_set_mode mode=3
[ +0.016025] imx334 2-0010: imx334_set_gain: hdr_en: 1, gain: 1
[ +0.000011] imx334 2-0010: imx334_set_gain: HDR is enable
[ +0.000009] imx334 2-0010: imx334_set_gain_hdr: (1) [times], gain: 3 gain1: 23
[ +0.000664] imx334 2-0010: imx334_set_exposure: val: 16637
[ +0.000008] imx334 2-0010: imx334_set_exposure: hdr_en:1
[ +0.000005] imx334 2-0010: imx334_set_exposure: HDR is enable
[ +0.000005] imx334 2-0010: imx334_set_exposure_long : val: 16637
[ +0.000006] imx334 2-0010: imx334_set_exposure_long : shr0: 2156
[ +0.000005] imx334 2-0010: imx334_set_exposure_long : time LEF: -2154
[ +0.000005] imx334 2-0010: imx334_set_exposure_long : shr0: 638
[ +0.000524] imx334 2-0010: imx334_set_frame_rate : frame_length: 4319
[ +0.000008] imx334 2-0010: imx334_set_frame_rate: frame_length: 4319
[ +0.000522] imx334 2-0010: start of imx334_start_streaming
[ +0.000584] imx334 2-0010: start of imx334_start_streaming
[ +0.000120] imx334 2-0010: imx334_set_frame_rate: frame_length: 2160
[ +0.000005] imx334 2-0010: imx334_set_frame_rate: frame_length: 2250
[ +0.002282] imx334 2-0010: imx334_set_gain: hdr_en: 1, gain: 6
[ +0.000007] imx334 2-0010: imx334_set_gain: HDR is enable
[ +0.000008] imx334 2-0010: imx334_set_gain_hdr: (1) [times], gain: 20 gain1: 40
[ +0.000157] imx334 2-0010: imx334_set_frame_rate: frame_length: 4319
[ +0.000006] imx334 2-0010: imx334_set_frame_rate: frame_length: 4319
[ +0.000179] imx334 2-0010: imx334_set_gain: hdr_en: 1, gain: 1
[ +0.000006] imx334 2-0010: imx334_set_gain: HDR is enable
[ +0.000008] imx334 2-0010: imx334_set_gain_hdr: (1) [times], gain: 3 gain1: 23
[ +0.000801] imx334 2-0010: imx334_set_gain: hdr_en: 1, gain: 6
[ +0.000008] imx334 2-0010: imx334_set_gain: HDR is enable
[ +0.000008] imx334 2-0010: imx334_set_gain_hdr: (1) [times], gain: 20 gain1: 40
Thanks