qcacmn: bkpressure control time event

add debug prints and a custom timer for how long to wait to receive next
bk pressure event message.

Change-Id: I5a736b0f134cd179990de536da02967db3e39774
CRs-Fixed: 3273427
Cette révision appartient à :
Ruben Columbus
2022-08-19 17:24:12 -07:00
révisé par Madan Koyyalamudi
Parent 0602fba425
révision 734657149e
5 fichiers modifiés avec 92 ajouts et 29 suppressions

Voir le fichier

@@ -2667,6 +2667,7 @@ wlan_cfg_soc_attach(struct cdp_ctrl_objmgr_psoc *psoc)
wlan_cfg_ctx->max_peer_id = cfg_get(psoc, CFG_DP_MAX_PEER_ID);
wlan_cfg_ctx->tx_ring_size = cfg_get(psoc, CFG_DP_TX_RING_SIZE);
wlan_cfg_ctx->time_control_bp = cfg_get(psoc, CFG_DP_TIME_CONTROL_BP);
wlan_cfg_ctx->tx_comp_ring_size = cfg_get(psoc,
CFG_DP_TX_COMPL_RING_SIZE);
@@ -3231,6 +3232,11 @@ int wlan_cfg_tx_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
return cfg->tx_ring_size;
}
int wlan_cfg_time_control_bp(struct wlan_cfg_dp_soc_ctxt *cfg)
{
return cfg->time_control_bp;
}
int wlan_cfg_tx_comp_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
{
return cfg->tx_comp_ring_size;