|
@@ -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 */
|