qcacld-3.0: Add INI support for DFS Channel Ageout Time

Add ini support for DFS Channel Ageout Time, the time upto which
DFS channel information such as beacon found is remembered.
This ini is used to set the ageout timer value from host to FW.
If not set, FW will disable ageout time.
This value is sent as a WMI_PDEV_PARAM_SET_DFS_CHAN_AGEOUT_TIME
as part of WMI_PDEV_SET_PARAM_CMDID.

Change-Id: I99553fa87a4025f03c52b4b387a414ba06c2c457
CRs-Fixed: 2625996
This commit is contained in:
Srikanth Marepalli
2020-03-02 12:24:24 +05:30
committed by nshrivas
parent e607d61a8c
commit f8d599b48d
6 changed files with 71 additions and 3 deletions

View File

@@ -2476,4 +2476,15 @@ uint32_t wlan_mlme_get_roaming_triggers(struct wlan_objmgr_psoc *psoc)
}
#endif
/**
* wlan_mlme_get_dfs_chan_ageout_time() - Get the DFS Channel ageout time
* @psoc: pointer to psoc object
* @dfs_chan_ageout_time: output pointer to hold configured value of DFS
* Channel ageout time
*
* Return: QDF Status
*/
QDF_STATUS
wlan_mlme_get_dfs_chan_ageout_time(struct wlan_objmgr_psoc *psoc,
uint8_t *dfs_chan_ageout_time);
#endif /* _WLAN_MLME_API_H_ */