qcacld-3.0: Add rx thread status API for HL targets

For HL targets, frames are queued to ol_rx_thread_queue
during WoW suspend in progress. At this time ol_rx_thread_queue
is in SUSPEND state and these frames can't deliver to Linux
Stack.
for ICMP case, if no other frames come to wake up
system and ICMP timeout will happen.
This change is to add rx thread status check API for HL
targets.

Change-Id: I3d37e6d6ce8f7f6edaf5f78bf5cef77bee6ed523
CRs-Fixed: 3407169
This commit is contained in:
Balaji Pothunoori
2023-02-17 12:33:06 +05:30
کامیت شده توسط Madan Koyyalamudi
والد 0cc739104b
کامیت fb4d033d9c
3فایلهای تغییر یافته به همراه49 افزوده شده و 1 حذف شده

مشاهده پرونده

@@ -36,6 +36,7 @@
#include "qdf_mc_timer.h"
#include "cds_config.h"
#include "qdf_cpuhp.h"
#include "cdp_txrx_cmn_struct.h"
#define MC_SUSPEND_EVENT 0x002
#define RX_POST_EVENT 0x001
@@ -341,6 +342,15 @@ void cds_free_ol_rx_pkt(p_cds_sched_context pSchedContext,
* Return: none
*/
void cds_free_ol_rx_pkt_freeq(p_cds_sched_context pSchedContext);
/**
* cds_get_rx_thread_pending() - get rx thread status
* @soc: ol_txrx_soc_handle object
*
* Return: 1 if rx thread is not empty.
* 0 if rx thread is empty.
*/
int cds_get_rx_thread_pending(ol_txrx_soc_handle soc);
#else
static inline void cds_sched_handle_rx_thread_affinity_req(
bool high_throughput) {}
@@ -389,6 +399,10 @@ static inline int cds_sched_handle_throughput_req(
return 0;
}
static inline int cds_get_rx_thread_pending(ol_txrx_soc_handle soc)
{
return 0;
}
#endif
/**