qcacmn: Add DBR support for standalone sounding CBF CV data

Added change,
1. Define new DBR module DBR_MODULE_CBF to handle TxBF
   standalone sounding CV data and corresponding ring
   initialization.
2. API to extract new meta data TLV added for CV data.
3. API to handle standalone sounding complete.

Change-Id: Id28c5561bb8b3bf08de7ddd9aa2365e2ae99f1c2
CRs-Fixed: 3415627
Esse commit está contido em:
Basamma Yakkanahalli
2023-03-05 06:04:17 +05:30
commit de Madan Koyyalamudi
commit 031d51614e
12 arquivos alterados com 172 adições e 13 exclusões

Ver arquivo

@@ -2283,6 +2283,11 @@ QDF_STATUS (*extract_dbr_buf_metadata)(
wmi_unified_t wmi_handle,
uint8_t *evt_buf, uint8_t idx,
struct direct_buf_rx_metadata *param);
QDF_STATUS (*extract_dbr_buf_cv_metadata)(
wmi_unified_t wmi_handle,
uint8_t *evt_buf, uint8_t idx,
struct direct_buf_rx_cv_metadata *param);
#endif
QDF_STATUS (*extract_pdev_utf_event)(wmi_unified_t wmi_hdl,
@@ -2708,6 +2713,15 @@ QDF_STATUS(*extract_twt_session_stats_data)
);
#endif
#ifdef QCA_STANDALONE_SOUNDING_TRIGGER
QDF_STATUS (*extract_standalone_sounding_evt_params)
(
wmi_unified_t wmi_handle,
void *evt_buf,
struct wmi_host_standalone_sounding_evt_params *ss_params
);
#endif
#ifdef QCA_SUPPORT_CP_STATS
QDF_STATUS (*extract_cca_stats)(wmi_unified_t wmi_handle, void *evt_buf,
struct wmi_host_congestion_stats *stats);