Browse Source

Merge "msm: ipa3: Remove suspend bit for ep consumer"

qctecmdr 4 years ago
parent
commit
d68dfd51ff
1 changed files with 7 additions and 0 deletions
  1. 7 0
      drivers/platform/msm/ipa/ipa_v3/ipa_client.c

+ 7 - 0
drivers/platform/msm/ipa/ipa_v3/ipa_client.c

@@ -1497,6 +1497,7 @@ EXPORT_SYMBOL(ipa3_xdci_ep_delay_rm);
 int ipa3_xdci_disconnect(u32 clnt_hdl, bool should_force_clear, u32 qmi_req_id)
 {
 	struct ipa3_ep_context *ep;
+	struct ipa_ep_cfg_ctrl ep_cfg_ctrl;
 	int result;
 	u32 source_pipe_bitmask = 0;
 	u32 source_pipe_reg_idx = 0;
@@ -1537,6 +1538,12 @@ int ipa3_xdci_disconnect(u32 clnt_hdl, bool should_force_clear, u32 qmi_req_id)
 				result);
 			goto stop_chan_fail;
 		}
+		if (ipa3_ctx->ipa_hw_type < IPA_HW_v4_0) {
+			/* Unsuspend the pipe */
+			memset(&ep_cfg_ctrl, 0, sizeof(struct ipa_ep_cfg_ctrl));
+			ep_cfg_ctrl.ipa_ep_suspend = false;
+			ipa3_cfg_ep_ctrl(clnt_hdl, &ep_cfg_ctrl);
+		}
 	}
 	IPA_ACTIVE_CLIENTS_DEC_EP(ipa3_get_client_mapping(clnt_hdl));