Commit 5b552b19 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: atomisp: re-enable warnings again

For most warnings, the current code is OK. There are still
some issues with implicit-fallthough warnings.

Solve those and re-enable all warnings for this driver.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent fb1f6ae6
...@@ -344,12 +344,3 @@ DEFINES += -DISP2400 -DSYSTEM_hive_isp_css_2400_system ...@@ -344,12 +344,3 @@ DEFINES += -DISP2400 -DSYSTEM_hive_isp_css_2400_system
endif endif
ccflags-y += $(INCLUDES) $(DEFINES) -fno-common ccflags-y += $(INCLUDES) $(DEFINES) -fno-common
# HACK! While this driver is in bad shape, don't enable several warnings
# that would be otherwise enabled with W=1
ccflags-y += $(call cc-disable-warning, implicit-fallthrough)
ccflags-y += $(call cc-disable-warning, missing-prototypes)
ccflags-y += $(call cc-disable-warning, missing-declarations)
ccflags-y += $(call cc-disable-warning, suggest-attribute=format)
ccflags-y += $(call cc-disable-warning, unused-const-variable)
ccflags-y += $(call cc-disable-warning, unused-but-set-variable)
...@@ -4967,13 +4967,14 @@ enum mipi_port_id __get_mipi_port(struct atomisp_device *isp, ...@@ -4967,13 +4967,14 @@ enum mipi_port_id __get_mipi_port(struct atomisp_device *isp,
{ {
switch (port) { switch (port) {
case ATOMISP_CAMERA_PORT_PRIMARY: case ATOMISP_CAMERA_PORT_PRIMARY:
return MIPI_PORT0_ID; return MIPI_PORT0_ID;
case ATOMISP_CAMERA_PORT_SECONDARY: case ATOMISP_CAMERA_PORT_SECONDARY:
return MIPI_PORT1_ID; return MIPI_PORT1_ID;
case ATOMISP_CAMERA_PORT_TERTIARY: case ATOMISP_CAMERA_PORT_TERTIARY:
if (MIPI_PORT1_ID + 1 != N_MIPI_PORT_ID) if (MIPI_PORT1_ID + 1 != N_MIPI_PORT_ID) {
return MIPI_PORT1_ID + 1; return MIPI_PORT1_ID + 1;
/* go through down for else case */ }
/* fall through */
default: default:
dev_err(isp->dev, "unsupported port: %d\n", port); dev_err(isp->dev, "unsupported port: %d\n", port);
return MIPI_PORT0_ID; return MIPI_PORT0_ID;
......
...@@ -690,22 +690,23 @@ static bool is_pipe_valid_to_current_run_mode(struct atomisp_sub_device *asd, ...@@ -690,22 +690,23 @@ static bool is_pipe_valid_to_current_run_mode(struct atomisp_sub_device *asd,
case ATOMISP_RUN_MODE_STILL_CAPTURE: case ATOMISP_RUN_MODE_STILL_CAPTURE:
if (pipe_id == IA_CSS_PIPE_ID_CAPTURE) if (pipe_id == IA_CSS_PIPE_ID_CAPTURE)
return true; return true;
else
return false; return false;
case ATOMISP_RUN_MODE_PREVIEW: case ATOMISP_RUN_MODE_PREVIEW:
if (!asd->continuous_mode->val) { if (!asd->continuous_mode->val) {
if (pipe_id == IA_CSS_PIPE_ID_PREVIEW) if (pipe_id == IA_CSS_PIPE_ID_PREVIEW)
return true; return true;
else
return false; return false;
} }
/* fall through to ATOMISP_RUN_MODE_CONTINUOUS_CAPTURE */ /* fall-through */
case ATOMISP_RUN_MODE_CONTINUOUS_CAPTURE: case ATOMISP_RUN_MODE_CONTINUOUS_CAPTURE:
if (pipe_id == IA_CSS_PIPE_ID_CAPTURE || if (pipe_id == IA_CSS_PIPE_ID_CAPTURE ||
pipe_id == IA_CSS_PIPE_ID_PREVIEW) pipe_id == IA_CSS_PIPE_ID_PREVIEW)
return true; return true;
else
return false; return false;
/* fall-through */
case ATOMISP_RUN_MODE_VIDEO: case ATOMISP_RUN_MODE_VIDEO:
if (!asd->continuous_mode->val) { if (!asd->continuous_mode->val) {
if (pipe_id == IA_CSS_PIPE_ID_VIDEO || if (pipe_id == IA_CSS_PIPE_ID_VIDEO ||
...@@ -714,13 +715,13 @@ static bool is_pipe_valid_to_current_run_mode(struct atomisp_sub_device *asd, ...@@ -714,13 +715,13 @@ static bool is_pipe_valid_to_current_run_mode(struct atomisp_sub_device *asd,
else else
return false; return false;
} }
/* fall through to ATOMISP_RUN_MODE_SDV */ /* fall through */
case ATOMISP_RUN_MODE_SDV: case ATOMISP_RUN_MODE_SDV:
if (pipe_id == IA_CSS_PIPE_ID_CAPTURE || if (pipe_id == IA_CSS_PIPE_ID_CAPTURE ||
pipe_id == IA_CSS_PIPE_ID_VIDEO) pipe_id == IA_CSS_PIPE_ID_VIDEO)
return true; return true;
else
return false; return false;
} }
return false; return false;
...@@ -2749,16 +2750,18 @@ static unsigned int atomisp_get_pipe_index(struct atomisp_sub_device *asd, ...@@ -2749,16 +2750,18 @@ static unsigned int atomisp_get_pipe_index(struct atomisp_sub_device *asd,
if (asd->run_mode->val == ATOMISP_RUN_MODE_VIDEO if (asd->run_mode->val == ATOMISP_RUN_MODE_VIDEO
|| asd->vfpp->val == ATOMISP_VFPP_DISABLE_SCALER) || asd->vfpp->val == ATOMISP_VFPP_DISABLE_SCALER)
return IA_CSS_PIPE_ID_VIDEO; return IA_CSS_PIPE_ID_VIDEO;
else
return IA_CSS_PIPE_ID_CAPTURE; return IA_CSS_PIPE_ID_CAPTURE;
case ATOMISP_SUBDEV_PAD_SOURCE_CAPTURE: case ATOMISP_SUBDEV_PAD_SOURCE_CAPTURE:
if (asd->copy_mode) if (asd->copy_mode)
return IA_CSS_PIPE_ID_COPY; return IA_CSS_PIPE_ID_COPY;
return IA_CSS_PIPE_ID_CAPTURE; return IA_CSS_PIPE_ID_CAPTURE;
case ATOMISP_SUBDEV_PAD_SOURCE_VF: case ATOMISP_SUBDEV_PAD_SOURCE_VF:
if (!atomisp_is_mbuscode_raw( if (!atomisp_is_mbuscode_raw(asd->fmt[asd->capture_pad].fmt.code)) {
asd->fmt[asd->capture_pad].fmt.code))
return IA_CSS_PIPE_ID_CAPTURE; return IA_CSS_PIPE_ID_CAPTURE;
}
/* fall through */
case ATOMISP_SUBDEV_PAD_SOURCE_PREVIEW: case ATOMISP_SUBDEV_PAD_SOURCE_PREVIEW:
if (asd->yuvpp_mode) if (asd->yuvpp_mode)
return IA_CSS_PIPE_ID_YUVPP; return IA_CSS_PIPE_ID_YUVPP;
...@@ -2766,8 +2769,8 @@ static unsigned int atomisp_get_pipe_index(struct atomisp_sub_device *asd, ...@@ -2766,8 +2769,8 @@ static unsigned int atomisp_get_pipe_index(struct atomisp_sub_device *asd,
return IA_CSS_PIPE_ID_COPY; return IA_CSS_PIPE_ID_COPY;
if (asd->run_mode->val == ATOMISP_RUN_MODE_VIDEO) if (asd->run_mode->val == ATOMISP_RUN_MODE_VIDEO)
return IA_CSS_PIPE_ID_VIDEO; return IA_CSS_PIPE_ID_VIDEO;
else
return IA_CSS_PIPE_ID_PREVIEW; return IA_CSS_PIPE_ID_PREVIEW;
} }
dev_warn(isp->dev, dev_warn(isp->dev,
"invalid source pad:%d, return default preview pipe index.\n", "invalid source pad:%d, return default preview pipe index.\n",
......
...@@ -1150,9 +1150,9 @@ static int atomisp_subdev_probe(struct atomisp_device *isp) ...@@ -1150,9 +1150,9 @@ static int atomisp_subdev_probe(struct atomisp_device *isp)
switch (subdevs->type) { switch (subdevs->type) {
case RAW_CAMERA: case RAW_CAMERA:
raw_index = isp->input_cnt;
dev_dbg(isp->dev, "raw_index: %d\n", raw_index); dev_dbg(isp->dev, "raw_index: %d\n", raw_index);
/* pass-though */ raw_index = isp->input_cnt;
/* fall through */
case SOC_CAMERA: case SOC_CAMERA:
dev_dbg(isp->dev, "SOC_INDEX: %d\n", isp->input_cnt); dev_dbg(isp->dev, "SOC_INDEX: %d\n", isp->input_cnt);
if (isp->input_cnt >= ATOM_ISP_MAX_INPUTS) { if (isp->input_cnt >= ATOM_ISP_MAX_INPUTS) {
......
...@@ -660,6 +660,8 @@ static void free_private_bo_pages(struct hmm_buffer_object *bo, ...@@ -660,6 +660,8 @@ static void free_private_bo_pages(struct hmm_buffer_object *bo,
break; break;
} }
/* fall through */
/* /*
* if dynamic memory pool doesn't exist, need to free * if dynamic memory pool doesn't exist, need to free
* pages to system directly. * pages to system directly.
......
...@@ -4507,6 +4507,7 @@ ia_css_pipe_dequeue_buffer(struct ia_css_pipe *pipe, ...@@ -4507,6 +4507,7 @@ ia_css_pipe_dequeue_buffer(struct ia_css_pipe *pipe,
#endif #endif
pipe->stop_requested = false; pipe->stop_requested = false;
} }
/* fall through */
case IA_CSS_BUFFER_TYPE_VF_OUTPUT_FRAME: case IA_CSS_BUFFER_TYPE_VF_OUTPUT_FRAME:
case IA_CSS_BUFFER_TYPE_SEC_VF_OUTPUT_FRAME: case IA_CSS_BUFFER_TYPE_SEC_VF_OUTPUT_FRAME:
frame = (struct ia_css_frame *)HOST_ADDRESS(ddr_buffer.kernel_ptr); frame = (struct ia_css_frame *)HOST_ADDRESS(ddr_buffer.kernel_ptr);
......
...@@ -1184,12 +1184,14 @@ sp_init_sp_stage(struct ia_css_pipeline_stage *stage, ...@@ -1184,12 +1184,14 @@ sp_init_sp_stage(struct ia_css_pipeline_stage *stage,
break; break;
case IA_CSS_PIPELINE_BIN_COPY: case IA_CSS_PIPELINE_BIN_COPY:
assert(false); /* TBI */ assert(false); /* TBI */
break;
case IA_CSS_PIPELINE_ISYS_COPY: case IA_CSS_PIPELINE_ISYS_COPY:
sh_css_sp_start_isys_copy(args->out_frame[0], sh_css_sp_start_isys_copy(args->out_frame[0],
pipe_num, stage->max_input_width, if_config_index); pipe_num, stage->max_input_width, if_config_index);
break; break;
case IA_CSS_PIPELINE_NO_FUNC: case IA_CSS_PIPELINE_NO_FUNC:
assert(false); assert(false);
break;
} }
} }
......
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