qcacmn: Add support to process spectral scan chan info TLV

FW sends Spectral scan chan info TLV in WMI_PDEV_SSCAN_FW_PARAM_EVENTID
event to indicate the channel information for a spectral scan session.
Add support to process the TLV and update the spectral host data structures
accordingly.

CRs-Fixed: 3044162
Change-Id: Ibbf7f6bbbb267123bbdf44bcfffa2cfb1c2926df
This commit is contained in:
Shiva Krishna Pittala
2021-09-26 02:12:12 +05:30
committed by Madan Koyyalamudi
parent 0a3d522550
commit e991ce3cdd
10 changed files with 485 additions and 83 deletions

View File

@@ -227,6 +227,14 @@ target_if_spectral_fill_samp_msg(struct target_if_spectral *spectral,
qdf_spin_lock_bh(&spectral->session_report_info_lock);
rpt_info = &spectral->report_info[spectral_mode];
if (!rpt_info->valid) {
qdf_spin_unlock_bh(&spectral->session_report_info_lock);
qdf_spin_unlock_bh(&spectral->session_det_map_lock);
spectral_info("per-session report info is not valid");
return QDF_STATUS_E_FAILURE;
}
spec_samp_msg->signature = SPECTRAL_SIGNATURE;
p_sops->get_mac_address(spectral, spec_samp_msg->macaddr);
spec_samp_msg->spectral_mode = spectral_mode;