|
@@ -9827,6 +9827,7 @@ enum {
|
|
|
ROAM_FILTER_OP_BITMAP_WHITE_LIST = 0x2,
|
|
|
ROAM_FILTER_OP_BITMAP_PREFER_BSSID = 0x4,
|
|
|
ROAM_FILTER_OP_BITMAP_LCA_DISALLOW = 0x8,
|
|
|
+ ROAM_FILTER_OP_BITMAP_RSSI_REJECTION_OCE = 0x10,
|
|
|
};
|
|
|
|
|
|
/** lca_enable_source_bitmap */
|
|
@@ -9840,6 +9841,17 @@ enum {
|
|
|
#define WMI_ROAM_LCA_DISALLOW_SOURCE_BACKGROUND 0x80
|
|
|
#define WMI_ROAM_LCA_DISALLOW_SOURCE_FORCED 0x100
|
|
|
|
|
|
+typedef struct {
|
|
|
+ /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_roam_rssi_rejection_oce_config_param */
|
|
|
+ A_UINT32 tlv_header;
|
|
|
+ /** BSSID of AP, who reject (re-)assoc due to low RSSI */
|
|
|
+ wmi_mac_addr bssid;
|
|
|
+ /** Disallowed AP for certain duration, in units of milliseconds */
|
|
|
+ A_UINT32 remaining_disallow_duration;
|
|
|
+ /** AP will be allowed for candidate, when AP RSSI better than expected RSSI units in dBm */
|
|
|
+ A_INT32 requested_rssi;
|
|
|
+} wmi_roam_rssi_rejection_oce_config_param;
|
|
|
+
|
|
|
typedef struct {
|
|
|
A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_roam_filter_list_fixed_param */
|
|
|
A_UINT32 vdev_id; /** Unique id identifying the VDEV on which roaming filter is adopted */
|
|
@@ -9848,6 +9860,7 @@ typedef struct {
|
|
|
A_UINT32 num_bssid_black_list; /* number of blacklist in the TLV variable bssid_black_list */
|
|
|
A_UINT32 num_ssid_white_list; /* number of whitelist in the TLV variable ssid_white_list */
|
|
|
A_UINT32 num_bssid_preferred_list; /* only for lfr 3.0. number of preferred list & factor in the TLV */
|
|
|
+ A_UINT32 num_rssi_rejection_ap; /** number of list of AP who rejected STA due to low RSSI */
|
|
|
/**
|
|
|
* TLV (tag length value) parameters follows roam_filter_list_cmd
|
|
|
* The TLV's are:
|
|
@@ -9856,6 +9869,7 @@ typedef struct {
|
|
|
* wmi_mac_addr bssid_preferred_list[];
|
|
|
* A_UINT32 bssid_preferred_factor[];
|
|
|
* wmi_roam_lca_disallow_config_tlv_param lca_disallow_param[0/1] (opt)
|
|
|
+ * wmi_roam_rssi_rejection_oce_config_param rssi_rejection_list[]
|
|
|
*/
|
|
|
} wmi_roam_filter_fixed_param;
|
|
|
|