Lines Matching refs:exposure
88 #define COM8_AEC 0x01 /* Auto exposure enable */
206 struct v4l2_ctrl *exposure;
562 struct v4l2_ctrl *ctrl = ov965x->ctrls.exposure;
585 /* Update exposure time range to match current frame format. */
612 /* Set minimal exposure time for 50/60 HZ lighting */
781 if (!auto_exposure && ctrls->exposure->is_new) {
782 unsigned int exposure = (ctrls->exposure->val * 100)
785 * Manual exposure value
788 ret = ov965x_write(ov965x, REG_COM1, exposure & 0x3);
791 (exposure >> 2) & 0xff);
794 (exposure >> 10) & 0x3f);
796 ctrls->exposure->val = ((exposure * ov965x->exp_row_interval)
859 unsigned int exposure, gain, m;
893 exposure = ((reg2 & 0x3f) << 10) | (reg1 << 2) |
895 ov965x->ctrls.exposure->val = ((exposure *
1007 /* Auto/manual exposure */
1014 ctrls->exposure = v4l2_ctrl_new_std(hdl, ops,
1049 ctrls->exposure->flags |= V4L2_CTRL_FLAG_VOLATILE;
1569 /* Update exposure time min/max to match frame format */