Browse Source

msm: ipa3: Send enable force clear only for producer pipe

Enable forceclear only supported for producer pipe so
avoid sending the force clear command to consumer pipes.

Signed-off-by: Ashok Vuyyuru <[email protected]>
Change-Id: I850f360f18c6598af6914c9cd2c89cacad1ac4c9
Ashok Vuyyuru 4 years ago
parent
commit
79aca73c33

+ 21 - 18
drivers/platform/msm/ipa/ipa_v3/ipa_uc_wdi.c

@@ -2638,25 +2638,28 @@ int ipa3_suspend_gsi_wdi_pipe(u32 clnt_hdl)
 		return -EFAULT;
 	}
 	if (ep->valid) {
-		source_pipe_bitmask = ipahal_get_ep_bit(ipa_ep_idx);
-		source_pipe_reg_idx = ipahal_get_ep_reg_idx(ipa_ep_idx);
-
-		IPADBG("suspended pipe %d\n", ipa_ep_idx);
-		res = ipa3_enable_force_clear(clnt_hdl,
-			false, source_pipe_bitmask, source_pipe_reg_idx);
-		if (res) {
-			/*
-			 * assuming here modem SSR, AP can remove
-			 * the delay in this case
-			 */
-			IPAERR("failed to force clear %d\n", res);
-			IPAERR("remove delay from SCND reg\n");
-			ep_ctrl_scnd.endp_delay = false;
-			ipahal_write_reg_n_fields(
+		if (IPA_CLIENT_IS_PROD(ep->client)) {
+			source_pipe_bitmask = ipahal_get_ep_bit(ipa_ep_idx);
+			source_pipe_reg_idx = ipahal_get_ep_reg_idx(ipa_ep_idx);
+
+			IPADBG("suspended pipe %d\n", ipa_ep_idx);
+			res = ipa3_enable_force_clear(clnt_hdl,
+				false, source_pipe_bitmask,
+					source_pipe_reg_idx);
+			if (res) {
+				/*
+				 * assuming here modem SSR, AP can remove
+				 * the delay in this case
+				 */
+				IPAERR("failed to force clear %d\n", res);
+				IPAERR("remove delay from SCND reg\n");
+				ep_ctrl_scnd.endp_delay = false;
+				ipahal_write_reg_n_fields(
 					IPA_ENDP_INIT_CTRL_SCND_n, clnt_hdl,
-					&ep_ctrl_scnd);
-		} else {
-			disable_force_clear = true;
+						&ep_ctrl_scnd);
+			} else {
+				disable_force_clear = true;
+			}
 		}
 retry_gsi_stop:
 		res = ipa3_stop_gsi_channel(ipa_ep_idx);

+ 20 - 17
drivers/platform/msm/ipa/ipa_v3/ipa_wdi3_i.c

@@ -879,23 +879,26 @@ int ipa3_disable_wdi3_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx)
 	 * as IPA uC will fail to suspend the pipe otherwise.
 	 */
 	ep = &ipa3_ctx->ep[ipa_ep_idx_rx];
-	source_pipe_bitmask = ipahal_get_ep_bit(ipa_ep_idx_rx);
-	source_pipe_reg_idx = ipahal_get_ep_reg_idx(ipa_ep_idx_rx);
-	result = ipa3_enable_force_clear(ipa_ep_idx_rx,
-			false, source_pipe_bitmask, source_pipe_reg_idx);
-	if (result) {
-		/*
-		 * assuming here modem SSR, AP can remove
-		 * the delay in this case
-		 */
-		IPAERR("failed to force clear %d\n", result);
-		IPAERR("remove delay from SCND reg\n");
-		ep_ctrl_scnd.endp_delay = false;
-		ipahal_write_reg_n_fields(
-			IPA_ENDP_INIT_CTRL_SCND_n, ipa_ep_idx_rx,
-			&ep_ctrl_scnd);
-	} else {
-		disable_force_clear = true;
+	if (IPA_CLIENT_IS_PROD(ep->client)) {
+		source_pipe_bitmask = ipahal_get_ep_bit(ipa_ep_idx_rx);
+		source_pipe_reg_idx = ipahal_get_ep_reg_idx(ipa_ep_idx_rx);
+		result = ipa3_enable_force_clear(ipa_ep_idx_rx,
+				false, source_pipe_bitmask,
+					source_pipe_reg_idx);
+		if (result) {
+			/*
+			 * assuming here modem SSR, AP can remove
+			 * the delay in this case
+			 */
+			IPAERR("failed to force clear %d\n", result);
+			IPAERR("remove delay from SCND reg\n");
+			ep_ctrl_scnd.endp_delay = false;
+			ipahal_write_reg_n_fields(
+				IPA_ENDP_INIT_CTRL_SCND_n, ipa_ep_idx_rx,
+					&ep_ctrl_scnd);
+		} else {
+			disable_force_clear = true;
+		}
 	}
 
 	/* stop gsi rx channel */

+ 20 - 17
drivers/platform/msm/ipa/ipa_v3/ipa_wigig_i.c

@@ -1809,23 +1809,26 @@ int ipa3_disable_wigig_pipe_i(enum ipa_client_type client)
 	}
 
 	IPADBG("pipe %d\n", ipa_ep_idx);
-	source_pipe_bitmask = ipahal_get_ep_bit(ipa_ep_idx);
-	source_pipe_reg_idx = ipahal_get_ep_reg_idx(ipa_ep_idx);
-	res = ipa3_enable_force_clear(ipa_ep_idx,
-		false, source_pipe_bitmask, source_pipe_reg_idx);
-	if (res) {
-		/*
-		 * assuming here modem SSR, AP can remove
-		 * the delay in this case
-		 */
-		IPAERR("failed to force clear %d\n", res);
-		IPAERR("remove delay from SCND reg\n");
-		ep_ctrl_scnd.endp_delay = false;
-		ipahal_write_reg_n_fields(
-			IPA_ENDP_INIT_CTRL_SCND_n, ipa_ep_idx,
-			&ep_ctrl_scnd);
-	} else {
-		disable_force_clear = true;
+	if (IPA_CLIENT_IS_PROD(ep->client)) {
+		source_pipe_bitmask = ipahal_get_ep_bit(ipa_ep_idx);
+		source_pipe_reg_idx = ipahal_get_ep_reg_idx(ipa_ep_idx);
+		res = ipa3_enable_force_clear(ipa_ep_idx,
+				false, source_pipe_bitmask,
+						source_pipe_reg_idx);
+		if (res) {
+			/*
+			 * assuming here modem SSR, AP can remove
+			 * the delay in this case
+			 */
+			IPAERR("failed to force clear %d\n", res);
+			IPAERR("remove delay from SCND reg\n");
+			ep_ctrl_scnd.endp_delay = false;
+			ipahal_write_reg_n_fields(
+					IPA_ENDP_INIT_CTRL_SCND_n, ipa_ep_idx,
+					&ep_ctrl_scnd);
+		} else {
+			disable_force_clear = true;
+		}
 	}
 retry_gsi_stop:
 	res = ipa3_stop_gsi_channel(ipa_ep_idx);