Browse Source

msm: ipa: enable frag offload on WLAN pipe

Make changes to enable frag offload on WLAN pipe.

Change-Id: Ie881180c991c683776f51f522d6e4e046043a663
Signed-off-by: Chaitanya Pratapa <[email protected]>
Chaitanya Pratapa 2 years ago
parent
commit
a827313771
1 changed files with 13 additions and 0 deletions
  1. 13 0
      drivers/platform/msm/ipa/ipa_v3/ipa_wdi3_i.c

+ 13 - 0
drivers/platform/msm/ipa/ipa_v3/ipa_wdi3_i.c

@@ -714,12 +714,25 @@ int ipa3_conn_wdi3_pipes(struct ipa_wdi_conn_in_params *in,
 		memcpy(&ep_rx->cfg, &in->u_rx.rx_smmu.ipa_ep_cfg,
 			sizeof(ep_rx->cfg));
 
+	if (ipa3_ctx->ipa_wdi_opt_dpath) {
+		ep_rx->cfg.cfg.frag_offload_en = true;
+		ep_rx->status.status_en = true;
+		ep_rx->status.status_ep =
+			ipa_get_ep_mapping(IPA_CLIENT_Q6_WAN_CONS);
+		ep_rx->status.status_pkt_suppress = true;
+	}
+
 	if (ipa3_cfg_ep(ipa_ep_idx_rx, &ep_rx->cfg)) {
 		IPAERR("fail to setup rx pipe cfg\n");
 		result = -EFAULT;
 		goto fail;
 	}
 
+	if (ipa3_cfg_ep_status(ipa_ep_idx_rx, &ep_rx->status)) {
+		IPAERR("fail to configure status of EP.\n");
+		goto fail;
+	}
+
 	/* setup RX gsi channel */
 	rx_dir = (rx_client == IPA_CLIENT_WLAN2_PROD) ?
 			IPA_WDI3_RX_DIR : IPA_WDI3_RX2_DIR;