瀏覽代碼

Revert "dataipa: ipa_eth: ntn3: Change #packets interrupts' moderation to 2"

This reverts commit 354acb221d8dfbb19260c405f660d810466debb4.

Change-Id: Ie917f7ed7ca10cfc1e74a9fa8ece9fa9b07436c3
Signed-off-by: Eliad Ben Yishay <[email protected]>
Eliad Ben Yishay 2 年之前
父節點
當前提交
5e275fe032
共有 1 個文件被更改,包括 4 次插入7 次删除
  1. 4 7
      drivers/platform/msm/ipa/ipa_v3/ipa_eth_i.c

+ 4 - 7
drivers/platform/msm/ipa/ipa_v3/ipa_eth_i.c

@@ -719,7 +719,7 @@ fail_get_gsi_ep_info:
 	return result;
 }
 
-static int ipa_eth_setup_ntn3_gsi_channel(
+static int ipa_eth_setup_ntn_gsi_channel(
 	struct ipa_eth_client_pipe_info *pipe,
 	struct ipa3_ep_context *ep)
 {
@@ -751,11 +751,8 @@ static int ipa_eth_setup_ntn3_gsi_channel(
 	gsi_evt_ring_props.int_modt = IPA_ETH_NTN_MODT;
 	/* len / RE_SIZE == len in counts (convert from bytes) */
 	len = pipe->info.transfer_ring_size;
-	/*
-	 * int_modc = 2 is experiments based best value for tput.
-	 * we shall use a framework setup in the future.
-	 */
-	gsi_evt_ring_props.int_modc = 2;
+	gsi_evt_ring_props.int_modc = len * IPA_ETH_AQC_MODC_FACTOR /
+		(100 * GSI_EVT_RING_RE_SIZE_16B);
 	gsi_evt_ring_props.exclusive = true;
 	gsi_evt_ring_props.err_cb = ipa_eth_gsi_evt_ring_err_cb;
 	gsi_evt_ring_props.user_data = NULL;
@@ -1018,7 +1015,7 @@ int ipa3_eth_connect(
 		result = ipa_eth_setup_aqc_gsi_channel(pipe, ep);
 		break;
 	case IPA_HW_PROTOCOL_NTN3:
-		result = ipa_eth_setup_ntn3_gsi_channel(pipe, ep);
+		result = ipa_eth_setup_ntn_gsi_channel(pipe, ep);
 		break;
 	default:
 		IPAERR("unknown protocol %d\n", prot);