|
@@ -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);
|