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
This commit is contained in:
Basamma Yakkanahalli
2023-03-05 06:04:17 +05:30
committed by Madan Koyyalamudi
parent aecdfaa78a
commit 031d51614e
12 changed files with 172 additions and 13 deletions

View File

@@ -1,5 +1,6 @@
/*
* Copyright (c) 2013-2019 The Linux Foundation. All rights reserved.
* Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
@@ -78,4 +79,18 @@ QDF_STATUS wmi_extract_dbr_buf_metadata(
uint8_t *evt_buf, uint8_t idx,
struct direct_buf_rx_metadata *param);
/**
* wmi_extract_dbr_buf_cv_metadata: Extract direct buffer TxBF cbf cv metadata
*
* @wmi_handle: WMI handle
* @evt_buf: Event buffer
* @idx: Index of the module for which capability is received
* @param: Pointer to direct buffer cv metadata
*
* Return: QDF status of operation
*/
QDF_STATUS wmi_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 /* _WMI_UNIFIED_DBR_API_H_ */