Merge "msm: ipa3: uC stats feature not support for yupik target"
This commit is contained in:
commit
19465a1510
@ -814,7 +814,8 @@ int ipa3_disconn_wdi3_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx)
|
||||
}
|
||||
ipa3_release_wdi3_gsi_smmu_mappings(IPA_WDI3_RX_DIR);
|
||||
|
||||
if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5)
|
||||
if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5 &&
|
||||
ipa3_ctx->ipa_hw_type != IPA_HW_v4_11)
|
||||
ipa3_uc_debug_stats_dealloc(IPA_HW_PROTOCOL_WDI3);
|
||||
ipa3_delete_dflt_flt_rules(ipa_ep_idx_rx);
|
||||
memset(ep_rx, 0, sizeof(struct ipa3_ep_context));
|
||||
@ -848,7 +849,8 @@ int ipa3_enable_wdi3_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx)
|
||||
IPA_ACTIVE_CLIENTS_INC_EP(ipa3_get_client_mapping(ipa_ep_idx_tx));
|
||||
|
||||
/* start uC event ring */
|
||||
if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5) {
|
||||
if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5 &&
|
||||
ipa3_ctx->ipa_hw_type != IPA_HW_v4_11) {
|
||||
if (ipa3_ctx->uc_ctx.uc_loaded &&
|
||||
!ipa3_ctx->uc_ctx.uc_event_ring_valid) {
|
||||
if (ipa3_uc_setup_event_ring()) {
|
||||
@ -897,7 +899,8 @@ int ipa3_enable_wdi3_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx)
|
||||
goto fail_start_channel1;
|
||||
}
|
||||
/* start uC gsi dbg stats monitor */
|
||||
if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5) {
|
||||
if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5 &&
|
||||
ipa3_ctx->ipa_hw_type != IPA_HW_v4_11) {
|
||||
ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[0].ch_id
|
||||
= ep_rx->gsi_chan_hdl;
|
||||
ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[0].dir
|
||||
@ -1005,7 +1008,8 @@ int ipa3_disable_wdi3_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx)
|
||||
goto fail;
|
||||
}
|
||||
/* stop uC gsi dbg stats monitor */
|
||||
if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5) {
|
||||
if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5 &&
|
||||
ipa3_ctx->ipa_hw_type != IPA_HW_v4_11) {
|
||||
ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[0].ch_id
|
||||
= 0xff;
|
||||
ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[0].dir
|
||||
|
Loading…
Reference in New Issue
Block a user