Commit fb4ca983 authored by Dafna Hirschfeld's avatar Dafna Hirschfeld Committed by Mauro Carvalho Chehab

media: staging: rkisp1: params: use rkisp1_param_set_bits to set reg in isr

replace a read and write of RKISP1_CIF_ISP_CTRL register
in the isr with the 'rkisp1_param_set_bits' function
that does that.
Signed-off-by: default avatarDafna Hirschfeld <dafna.hirschfeld@collabora.com>
Acked-by: default avatarHelen Koike <helen.koike@collabora.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent c85d0eec
...@@ -1191,7 +1191,6 @@ void rkisp1_params_isr(struct rkisp1_device *rkisp1) ...@@ -1191,7 +1191,6 @@ void rkisp1_params_isr(struct rkisp1_device *rkisp1)
struct rkisp1_params *params = &rkisp1->params; struct rkisp1_params *params = &rkisp1->params;
struct rkisp1_params_cfg *new_params; struct rkisp1_params_cfg *new_params;
struct rkisp1_buffer *cur_buf = NULL; struct rkisp1_buffer *cur_buf = NULL;
u32 isp_ctrl;
spin_lock(&params->config_lock); spin_lock(&params->config_lock);
if (!params->is_streaming) { if (!params->is_streaming) {
...@@ -1214,9 +1213,7 @@ void rkisp1_params_isr(struct rkisp1_device *rkisp1) ...@@ -1214,9 +1213,7 @@ void rkisp1_params_isr(struct rkisp1_device *rkisp1)
rkisp1_isp_isr_meas_config(params, new_params); rkisp1_isp_isr_meas_config(params, new_params);
/* update shadow register immediately */ /* update shadow register immediately */
isp_ctrl = rkisp1_read(params->rkisp1, RKISP1_CIF_ISP_CTRL); rkisp1_param_set_bits(params, RKISP1_CIF_ISP_CTRL, RKISP1_CIF_ISP_CTRL_ISP_CFG_UPD);
isp_ctrl |= RKISP1_CIF_ISP_CTRL_ISP_CFG_UPD;
rkisp1_write(params->rkisp1, isp_ctrl, RKISP1_CIF_ISP_CTRL);
spin_lock(&params->config_lock); spin_lock(&params->config_lock);
list_del(&cur_buf->queue); list_del(&cur_buf->queue);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment