Просмотр исходного кода

dataipa: ipa_eth: Dynamic NTN3 client moderation configuration

* Added the ability to dynamically configure a NTN3 client
moderation on setup

Change-Id: I8838850a69635fa168eeb43195ac0fb896179994
Signed-off-by: Eliad Ben Yishay <[email protected]>
Eliad Ben Yishay 2 лет назад
Родитель
Сommit
3b1c5ac624
1 измененных файлов с 9 добавлено и 2 удалено
  1. 9 2
      drivers/platform/msm/ipa/ipa_v3/ipa_eth_i.c

+ 9 - 2
drivers/platform/msm/ipa/ipa_v3/ipa_eth_i.c

@@ -836,8 +836,15 @@ static int ipa_eth_setup_ntn3_gsi_channel(
 			(u32)((u64)(pipe->info.data_buff_list[0].iova) >> 32);
 	}
 
-	if (pipe->dir == IPA_ETH_PIPE_DIR_TX)
-		ch_scratch.ntn.ioc_mod_threshold = IPA_ETH_NTN_MODT;
+	if (pipe->dir == IPA_ETH_PIPE_DIR_TX) {
+		if (pipe->info.client_info.ntn.ioc_mod_threshold &&
+		    pipe->info.client_info.ntn.ioc_mod_threshold < len / GSI_EVT_RING_RE_SIZE_16B) {
+			ch_scratch.ntn.ioc_mod_threshold =
+				pipe->info.client_info.ntn.ioc_mod_threshold;
+		} else {
+			ch_scratch.ntn.ioc_mod_threshold = IPA_ETH_NTN_MODT;
+		}
+	}
 
 	result = gsi_write_channel_scratch(ep->gsi_chan_hdl, ch_scratch);
 	if (result != GSI_STATUS_SUCCESS) {