|
@@ -1257,48 +1257,34 @@ static int cam_tfe_csid_enable_pxl_path(
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static void cam_tfe_csid_change_pxl_halt_mode(
|
|
|
- struct cam_tfe_csid_hw *csid_hw,
|
|
|
- struct cam_isp_resource_node *res,
|
|
|
- enum cam_tfe_csid_halt_mode halt_mode)
|
|
|
+static int cam_tfe_csid_change_pxl_halt_mode(
|
|
|
+ struct cam_tfe_csid_hw *csid_hw,
|
|
|
+ struct cam_tfe_csid_hw_halt_args *csid_halt)
|
|
|
{
|
|
|
uint32_t val = 0;
|
|
|
const struct cam_tfe_csid_reg_offset *csid_reg;
|
|
|
struct cam_hw_soc_info *soc_info;
|
|
|
- struct cam_tfe_csid_path_cfg *path_data;
|
|
|
const struct cam_tfe_csid_pxl_reg_offset *pxl_reg;
|
|
|
- bool is_ipp;
|
|
|
+ struct cam_isp_resource_node *res;
|
|
|
+
|
|
|
+ res = csid_halt->node_res;
|
|
|
|
|
|
- path_data = (struct cam_tfe_csid_path_cfg *) res->res_priv;
|
|
|
csid_reg = csid_hw->csid_info->csid_reg;
|
|
|
soc_info = &csid_hw->hw_info->soc_info;
|
|
|
|
|
|
- if (res->res_id >= CAM_TFE_CSID_PATH_RES_MAX) {
|
|
|
- CAM_ERR(CAM_ISP, "CSID:%d Invalid res id%d",
|
|
|
+ if (res->res_id != CAM_TFE_CSID_PATH_RES_IPP) {
|
|
|
+ CAM_ERR(CAM_ISP, "CSID:%d Invalid res id %d",
|
|
|
csid_hw->hw_intf->hw_idx, res->res_id);
|
|
|
- goto end;
|
|
|
+ return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- if (res->res_state == CAM_ISP_RESOURCE_STATE_INIT_HW ||
|
|
|
- res->res_state == CAM_ISP_RESOURCE_STATE_RESERVED) {
|
|
|
- CAM_ERR(CAM_ISP, "CSID:%d Res:%d already in stopped state:%d",
|
|
|
+ if (res->res_state != CAM_ISP_RESOURCE_STATE_STREAMING) {
|
|
|
+ CAM_ERR(CAM_ISP, "CSID:%d Res:%d in invalid state:%d",
|
|
|
csid_hw->hw_intf->hw_idx, res->res_id, res->res_state);
|
|
|
- goto end;
|
|
|
- }
|
|
|
-
|
|
|
- if (res->res_id == CAM_TFE_CSID_PATH_RES_IPP) {
|
|
|
- is_ipp = true;
|
|
|
- pxl_reg = csid_reg->ipp_reg;
|
|
|
- } else {
|
|
|
- goto end;
|
|
|
+ return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- if (res->res_state != CAM_ISP_RESOURCE_STATE_STREAMING) {
|
|
|
- CAM_ERR(CAM_ISP, "CSID:%d %s path Res:%d Invalid state%d",
|
|
|
- csid_hw->hw_intf->hw_idx, "IPP",
|
|
|
- res->res_id, res->res_state);
|
|
|
- goto end;
|
|
|
- }
|
|
|
+ pxl_reg = csid_reg->ipp_reg;
|
|
|
|
|
|
cam_io_w_mb(0, soc_info->reg_map[0].mem_base +
|
|
|
pxl_reg->csid_pxl_irq_mask_addr);
|
|
@@ -1307,11 +1293,13 @@ static void cam_tfe_csid_change_pxl_halt_mode(
|
|
|
val = cam_io_r_mb(soc_info->reg_map[0].mem_base +
|
|
|
pxl_reg->csid_pxl_ctrl_addr);
|
|
|
val &= ~0xC;
|
|
|
- val |= (halt_mode << 2);
|
|
|
+ val |= (csid_halt->halt_mode << 2);
|
|
|
cam_io_w_mb(val, soc_info->reg_map[0].mem_base +
|
|
|
pxl_reg->csid_pxl_ctrl_addr);
|
|
|
-end:
|
|
|
- return;
|
|
|
+ CAM_DBG(CAM_ISP, "CSID:%d IPP path Res halt mode:%d configured:%x",
|
|
|
+ csid_hw->hw_intf->hw_idx, csid_halt->halt_mode, val);
|
|
|
+
|
|
|
+ return 0;
|
|
|
}
|
|
|
|
|
|
static int cam_tfe_csid_disable_pxl_path(
|
|
@@ -2211,14 +2199,15 @@ int cam_tfe_csid_halt(struct cam_tfe_csid_hw *csid_hw,
|
|
|
void *halt_args)
|
|
|
{
|
|
|
struct cam_isp_resource_node *res;
|
|
|
- struct cam_csid_hw_halt_args *csid_halt;
|
|
|
+ struct cam_tfe_csid_hw_halt_args *csid_halt;
|
|
|
+ int rc = 0;
|
|
|
|
|
|
if (!csid_hw || !halt_args) {
|
|
|
CAM_ERR(CAM_ISP, "CSID: Invalid args");
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- csid_halt = (struct cam_csid_hw_halt_args *)halt_args;
|
|
|
+ csid_halt = (struct cam_tfe_csid_hw_halt_args *)halt_args;
|
|
|
|
|
|
/* Change the halt mode */
|
|
|
res = csid_halt->node_res;
|
|
@@ -2226,20 +2215,25 @@ int cam_tfe_csid_halt(struct cam_tfe_csid_hw *csid_hw,
|
|
|
csid_hw->hw_intf->hw_idx,
|
|
|
res->res_type, res->res_id);
|
|
|
|
|
|
- switch (res->res_type) {
|
|
|
- case CAM_ISP_RESOURCE_PIX_PATH:
|
|
|
- if (res->res_id == CAM_TFE_CSID_PATH_RES_IPP)
|
|
|
- cam_tfe_csid_change_pxl_halt_mode(csid_hw, res,
|
|
|
- csid_halt->halt_mode);
|
|
|
+ if (res->res_type != CAM_ISP_RESOURCE_PIX_PATH) {
|
|
|
+ CAM_ERR(CAM_ISP, "CSID:%d Invalid res type %d",
|
|
|
+ csid_hw->hw_intf->hw_idx,
|
|
|
+ res->res_type);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ switch (res->res_id) {
|
|
|
+ case CAM_TFE_CSID_PATH_RES_IPP:
|
|
|
+ rc = cam_tfe_csid_change_pxl_halt_mode(csid_hw, csid_halt);
|
|
|
break;
|
|
|
default:
|
|
|
- CAM_ERR(CAM_ISP, "CSID:%d Invalid res type%d",
|
|
|
+ CAM_DBG(CAM_ISP, "CSID:%d res_id %d",
|
|
|
csid_hw->hw_intf->hw_idx,
|
|
|
- res->res_type);
|
|
|
+ res->res_id);
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
- return 0;
|
|
|
+ return rc;
|
|
|
}
|
|
|
|
|
|
static int cam_tfe_csid_stop(void *hw_priv,
|