|
@@ -2856,6 +2856,12 @@ static const struct ipa_ep_configuration ipa3_ep_mapping
|
|
|
IPA_DPS_HPS_SEQ_TYPE_2ND_PKT_PROCESS_PASS_NO_DEC_UCP,
|
|
|
QMB_MASTER_SELECT_DDR,
|
|
|
{ 12, 0, 8, 16, IPA_EE_UC, GSI_SMART_PRE_FETCH, 3 } },
|
|
|
+ [IPA_4_5_AUTO][IPA_CLIENT_ETHERNET2_PROD] = {
|
|
|
+ true, IPA_v4_5_GROUP_CV2X,
|
|
|
+ true,
|
|
|
+ IPA_DPS_HPS_SEQ_TYPE_2ND_PKT_PROCESS_PASS_NO_DEC_UCP,
|
|
|
+ QMB_MASTER_SELECT_DDR,
|
|
|
+ { 10, 13, 8, 16, IPA_EE_UC, GSI_SMART_PRE_FETCH, 3 } },
|
|
|
[IPA_4_5_AUTO][IPA_CLIENT_Q6_WAN_PROD] = {
|
|
|
true, IPA_v4_5_GROUP_UL_DL,
|
|
|
true,
|
|
@@ -2972,6 +2978,12 @@ static const struct ipa_ep_configuration ipa3_ep_mapping
|
|
|
IPA_DPS_HPS_SEQ_TYPE_INVALID,
|
|
|
QMB_MASTER_SELECT_DDR,
|
|
|
{ 28, 1, 9, 9, IPA_EE_UC, GSI_SMART_PRE_FETCH, 4 } },
|
|
|
+ [IPA_4_5_AUTO][IPA_CLIENT_ETHERNET2_CONS] = {
|
|
|
+ true, IPA_v4_5_GROUP_CV2X,
|
|
|
+ false,
|
|
|
+ IPA_DPS_HPS_SEQ_TYPE_INVALID,
|
|
|
+ QMB_MASTER_SELECT_DDR,
|
|
|
+ { 25, 16, 9, 9, IPA_EE_UC, GSI_SMART_PRE_FETCH, 4 } },
|
|
|
[IPA_4_5_AUTO][IPA_CLIENT_Q6_LAN_CONS] = {
|
|
|
true, IPA_v4_5_GROUP_UL_DL,
|
|
|
false,
|
|
@@ -6151,20 +6163,21 @@ bool ipa3_should_pipe_be_suspended(enum ipa_client_type client)
|
|
|
return false;
|
|
|
|
|
|
if (client == IPA_CLIENT_USB_CONS ||
|
|
|
- client == IPA_CLIENT_USB2_CONS ||
|
|
|
- client == IPA_CLIENT_USB_DPL_CONS ||
|
|
|
- client == IPA_CLIENT_MHI_CONS ||
|
|
|
- client == IPA_CLIENT_MHI_DPL_CONS ||
|
|
|
- client == IPA_CLIENT_MHI_QDSS_CONS ||
|
|
|
- client == IPA_CLIENT_HSIC1_CONS ||
|
|
|
- client == IPA_CLIENT_WLAN1_CONS ||
|
|
|
- client == IPA_CLIENT_WLAN2_CONS ||
|
|
|
- client == IPA_CLIENT_WLAN3_CONS ||
|
|
|
- client == IPA_CLIENT_WLAN2_CONS1 ||
|
|
|
- client == IPA_CLIENT_WLAN4_CONS ||
|
|
|
- client == IPA_CLIENT_ODU_EMB_CONS ||
|
|
|
- client == IPA_CLIENT_ODU_TETH_CONS ||
|
|
|
- client == IPA_CLIENT_ETHERNET_CONS)
|
|
|
+ client == IPA_CLIENT_USB2_CONS ||
|
|
|
+ client == IPA_CLIENT_USB_DPL_CONS ||
|
|
|
+ client == IPA_CLIENT_MHI_CONS ||
|
|
|
+ client == IPA_CLIENT_MHI_DPL_CONS ||
|
|
|
+ client == IPA_CLIENT_MHI_QDSS_CONS ||
|
|
|
+ client == IPA_CLIENT_HSIC1_CONS ||
|
|
|
+ client == IPA_CLIENT_WLAN1_CONS ||
|
|
|
+ client == IPA_CLIENT_WLAN2_CONS ||
|
|
|
+ client == IPA_CLIENT_WLAN3_CONS ||
|
|
|
+ client == IPA_CLIENT_WLAN2_CONS1 ||
|
|
|
+ client == IPA_CLIENT_WLAN4_CONS ||
|
|
|
+ client == IPA_CLIENT_ODU_EMB_CONS ||
|
|
|
+ client == IPA_CLIENT_ODU_TETH_CONS ||
|
|
|
+ client == IPA_CLIENT_ETHERNET_CONS ||
|
|
|
+ client == IPA_CLIENT_ETHERNET2_CONS)
|
|
|
return true;
|
|
|
|
|
|
return false;
|
|
@@ -8543,6 +8556,7 @@ int ipa3_write_qmap_id(struct ipa_ioc_write_qmapid *param_in)
|
|
|
param_in->client == IPA_CLIENT_HSIC1_PROD ||
|
|
|
param_in->client == IPA_CLIENT_ODU_PROD ||
|
|
|
param_in->client == IPA_CLIENT_ETHERNET_PROD ||
|
|
|
+ param_in->client == IPA_CLIENT_ETHERNET2_PROD ||
|
|
|
param_in->client == IPA_CLIENT_WIGIG_PROD ||
|
|
|
param_in->client == IPA_CLIENT_AQC_ETHERNET_PROD ||
|
|
|
param_in->client == IPA_CLIENT_RTK_ETHERNET_PROD) {
|
|
@@ -12046,6 +12060,8 @@ int ipa3_get_prot_id(enum ipa_client_type client)
|
|
|
case IPA_CLIENT_USB_CONS:
|
|
|
prot_id = IPA_HW_PROTOCOL_USB;
|
|
|
break;
|
|
|
+ case IPA_CLIENT_ETHERNET2_PROD:
|
|
|
+ case IPA_CLIENT_ETHERNET2_CONS:
|
|
|
case IPA_CLIENT_ETHERNET_PROD:
|
|
|
case IPA_CLIENT_ETHERNET_CONS:
|
|
|
prot_id = IPA_HW_PROTOCOL_ETH;
|