qcacmn: Disable FISA update in suspend state

FISA update may come when target in suspend state, then
UMAC force wake may return failure and lead to system timeout
crash. Change is used to defer the update when resume happens.

Change-Id: If033bed692dccf2d27e9c76825ab2063a3f56841
CRs-Fixed: 3324926
This commit is contained in:
Yu Tian
2022-10-31 20:25:26 -07:00
committad av Madan Koyyalamudi
förälder 52590a8a70
incheckning 0dd0da3ac0
3 ändrade filer med 22 tillägg och 1 borttagningar

Visa fil

@@ -3408,6 +3408,14 @@ void dp_rx_fst_update_cmem_params(struct dp_soc *soc, uint16_t num_entries,
void
dp_rx_fst_update_pm_suspend_status(struct dp_soc *soc, bool suspended);
/*
* dp_rx_fst_requeue_wq() - Re-queue pending work queue tasks
* @soc: DP SoC context
*
* Return: None
*/
void dp_rx_fst_requeue_wq(struct dp_soc *soc);
#else
static inline void
dp_rx_fst_update_cmem_params(struct dp_soc *soc, uint16_t num_entries,
@@ -3420,6 +3428,11 @@ dp_rx_fst_update_pm_suspend_status(struct dp_soc *soc, bool suspended)
{
}
static inline void
dp_rx_fst_requeue_wq(struct dp_soc *soc)
{
}
static inline void dp_print_fisa_stats(struct dp_soc *soc)
{
}