|
@@ -2933,6 +2933,9 @@ lim_fill_pe_session(struct mac_context *mac_ctx, struct pe_session *session,
|
|
|
uint8_t programmed_country[REG_ALPHA2_LEN + 1];
|
|
|
enum reg_6g_ap_type power_type_6g;
|
|
|
bool ctry_code_match;
|
|
|
+ struct cm_roam_values_copy temp;
|
|
|
+ uint32_t neighbor_lookup_threshold;
|
|
|
+ uint32_t hi_rssi_scan_rssi_delta;
|
|
|
|
|
|
/*
|
|
|
* Update the capability here itself as this is used in
|
|
@@ -3044,7 +3047,20 @@ lim_fill_pe_session(struct mac_context *mac_ctx, struct pe_session *session,
|
|
|
lim_fill_11r_params(mac_ctx, session , ese_ver_present);
|
|
|
lim_fill_ese_params(mac_ctx, session, ese_ver_present);
|
|
|
|
|
|
- if (WLAN_REG_IS_24GHZ_CH_FREQ(bss_desc->chan_freq)) {
|
|
|
+ wlan_cm_roam_cfg_get_value(mac_ctx->psoc, session->vdev_id,
|
|
|
+ NEIGHBOUR_LOOKUP_THRESHOLD, &temp);
|
|
|
+ neighbor_lookup_threshold = temp.uint_value;
|
|
|
+
|
|
|
+ wlan_cm_roam_cfg_get_value(mac_ctx->psoc, session->vdev_id,
|
|
|
+ HI_RSSI_SCAN_RSSI_DELTA, &temp);
|
|
|
+ hi_rssi_scan_rssi_delta = temp.uint_value;
|
|
|
+
|
|
|
+ if (WLAN_REG_IS_24GHZ_CH_FREQ(bss_desc->chan_freq) &&
|
|
|
+ (abs(bss_desc->rssi) >
|
|
|
+ (neighbor_lookup_threshold - hi_rssi_scan_rssi_delta))) {
|
|
|
+ pe_debug("Enabling HI_RSSI, rssi: %d lookup_th: %d, delta:%d",
|
|
|
+ bss_desc->rssi, neighbor_lookup_threshold,
|
|
|
+ hi_rssi_scan_rssi_delta);
|
|
|
wlan_cm_set_disable_hi_rssi(mac_ctx->pdev, session->vdev_id,
|
|
|
false);
|
|
|
} else {
|