qcacmn: Add support to extract fixed params from Spectral Caps event

WMI_SPECTRAL_CAPABILITIES_EVENTID event will be sent by the FW to
indicated the different capabilities of the Spectral HW block.
Add support to extract the fixed parameters from this event.

Change-Id: Ib13108f078de008b6a76a25a010e85a7fdb6f5fe
CRs-Fixed: 3098203
This commit is contained in:
Shiva Krishna Pittala
2021-12-21 14:21:33 +05:30
committed by Madan Koyyalamudi
parent 0ae42b09e4
commit a9547b0f25
7 changed files with 160 additions and 7 deletions

View File

@@ -3106,6 +3106,17 @@ struct spectral_session_det_info {
qdf_freq_t start_freq;
qdf_freq_t end_freq;
};
/**
* struct spectral_capabilities_event_params - parameters related to Spectral
* capabilities event
* @num_sscan_bw_caps: Number of spectral_scan_bw_capabilities TLVs
* @num_fft_size_caps: Number of spectral_fft_size_capabilities TLVs
*/
struct spectral_capabilities_event_params {
uint8_t num_sscan_bw_caps;
uint8_t num_fft_size_caps;
};
#endif
/**