Browse Source

qcacmn: Send bss_load_bss_sample_time over WMI_ROAM_BSS_LOAD_CONFIG_CMDID

Add changes to send bss_load_bss_sample_time over the wmi
command WMI_ROAM_BSS_LOAD_CONFIG_CMDID.

Change-Id: Iab882f0474071458ed8b8876d8edda987b76e94d
CRs-Fixed: 2372167
Pragaspathi Thilagaraj 6 years ago
parent
commit
9327725639
2 changed files with 4 additions and 0 deletions
  1. 3 0
      wmi/inc/wmi_unified_roam_param.h
  2. 1 0
      wmi/src/wmi_unified_roam_tlv.c

+ 3 - 0
wmi/inc/wmi_unified_roam_param.h

@@ -528,10 +528,13 @@ struct wmi_btm_config {
  * struct wmi_bss_load_config - BSS load trigger parameters
  * @vdev_id: VDEV on which the parameters should be applied
  * @bss_load_threshold: BSS load threshold after which roam scan should trigger
+ * @bss_load_sample_time: Time duration in milliseconds for which the bss load
+ * trigger needs to be enabled
  */
 struct wmi_bss_load_config {
 	uint32_t vdev_id;
 	uint32_t bss_load_threshold;
+	uint32_t bss_load_sample_time;
 };
 
 /**

+ 1 - 0
wmi/src/wmi_unified_roam_tlv.c

@@ -2077,6 +2077,7 @@ send_roam_bss_load_config_tlv(wmi_unified_t wmi_handle,
 	    WMITLV_GET_STRUCT_TLVLEN(wmi_roam_bss_load_config_cmd_fixed_param));
 	cmd->vdev_id = params->vdev_id;
 	cmd->bss_load_threshold = params->bss_load_threshold;
+	cmd->monitor_time_window = params->bss_load_sample_time;
 
 	wmi_mtrace(WMI_ROAM_BSS_LOAD_CONFIG_CMDID, cmd->vdev_id, 0);
 	if (wmi_unified_cmd_send(wmi_handle, buf, len,