qcacld-3.0: FISA move data structure

Move the FISA related non-converged data structures
to DP component.

Change-Id: I86b08bd85fa97424046e1187cc5189d0f1354e93
CRs-Fixed: 3512044
This commit is contained in:
Rakesh Pillai
2023-05-19 05:34:57 -07:00
committed by Rahul Choudhary
parent 87a3b842c6
commit 5c54710c38
12 changed files with 473 additions and 169 deletions

View File

@@ -21,6 +21,8 @@
#if !defined(_WLAN_DP_API_H_)
#define _WLAN_DP_API_H_
#include <cdp_txrx_cmn_struct.h>
/**
* wlan_dp_update_peer_map_unmap_version() - update peer map unmap version
* @version: Peer map unmap version pointer to be updated
@@ -46,4 +48,20 @@ QDF_STATUS wlan_dp_runtime_suspend(ol_txrx_soc_handle soc, uint8_t pdev_id);
* Return: QDF_STATUS
*/
QDF_STATUS wlan_dp_runtime_resume(ol_txrx_soc_handle soc, uint8_t pdev_id);
/**
* wlan_dp_print_fisa_rx_stats() - Dump fisa stats
* @stats_id: ID for the stats to be dumped
*
* Return: None
*/
void wlan_dp_print_fisa_rx_stats(enum cdp_fisa_stats_id stats_id);
/**
* wlan_dp_set_fst_in_cmem() - Set flag to indicate FST is in CMEM
* @fst_in_cmem: Flag to indicate FST is in CMEM
*
* Return: None
*/
void wlan_dp_set_fst_in_cmem(bool fst_in_cmem);
#endif