diff --git a/mlme/dispatcher/inc/cfg_mlme_btm.h b/mlme/dispatcher/inc/cfg_mlme_btm.h index f1482a8ad1..2ac6123ead 100644 --- a/mlme/dispatcher/inc/cfg_mlme_btm.h +++ b/mlme/dispatcher/inc/cfg_mlme_btm.h @@ -72,7 +72,7 @@ * btm_offload_config - Configure BTM * @Min: 0x00000000 * @Max: 0xFFFFFFFF - * @Default: 0x00000041 + * @Default: 0x000001c1 * * This ini is used to configure BTM * @@ -95,7 +95,12 @@ * * BIT 6: Set this to 1 will send BTM query frame and 0 not sent. * - * BIT 7-31: Reserved + * BIT 7: Roam BTM candidates based on the roam score instead of BTM preferred + * value + * + * BIT 8: BTM query preference over 11k neighbor report request + * + * BIT 9-31: Reserved * * Supported Feature: STA * @@ -107,7 +112,7 @@ "btm_offload_config", \ 0x00000000, \ 0xffffffff, \ - 0x00000041, \ + 0x000001c1, \ CFG_VALUE_OR_DEFAULT, \ "configure btm offload") @@ -214,7 +219,7 @@ * the disassoc imminent * @Min: 0 * @Max: 0xffffffff - * @Default: 0 + * @Default: 10000 * * When AP sends, BTM request with disassoc imminent bit set, the STA should * roam to a new AP within the disassc timeout provided by the ap. If the Roam @@ -232,7 +237,7 @@ "btm_disassoc_timer_threshold", \ 0, \ 0xffffffff, \ - 0, \ + 10000, \ CFG_VALUE_OR_DEFAULT, \ "BTM disassociation timer threshold") @@ -275,7 +280,7 @@ * its score is greater than minimum_btm_candidate_score. * @Min: 0 * @Max: 10000 - * @Default: 1800 + * @Default: 2600 * * This ini is applicable only for candidate selection during BTM roam trigger. * For this roam_score_delta_bitmap bit 10 should be set to 1. @@ -292,7 +297,7 @@ "minimum_btm_candidate_score", \ 0, \ 10000, \ - 1800, \ + 2600, \ CFG_VALUE_OR_DEFAULT, \ "Minimum BTM candidate score") diff --git a/mlme/dispatcher/inc/cfg_mlme_scoring.h b/mlme/dispatcher/inc/cfg_mlme_scoring.h index 65042193c2..4594d746a0 100644 --- a/mlme/dispatcher/inc/cfg_mlme_scoring.h +++ b/mlme/dispatcher/inc/cfg_mlme_scoring.h @@ -135,7 +135,7 @@ * chan_width_weightage - Channel Width Weightage to calculate best candidate * @Min: 0 * @Max: 100 - * @Default: 17 + * @Default: 12 * * This ini is used to increase/decrease Channel Width weightage in best * candidate selection. AP with Higher channel width will get higher weightage @@ -152,7 +152,7 @@ "chan_width_weightage", \ 0, \ 100, \ - 17, \ + 12, \ CFG_VALUE_OR_DEFAULT, \ "Channel width weightage") @@ -273,7 +273,7 @@ * calculate best candidate * @Min: 0 * @Max: 100 - * @Default: 5 + * @Default: 25 * * This ini is used to increase/decrease channel congestion weightage in * candidate selection. Congestion is measured with the help of ESP/QBSS load. @@ -290,7 +290,7 @@ "channel_congestion_weightage", \ 0, \ 100, \ - 5, \ + 25, \ CFG_VALUE_OR_DEFAULT, \ "Channel Congestion Weightage") @@ -1140,7 +1140,7 @@ * idle_roam_score_delta - Roam score delta value in percentage for idle roam. * @Min: 0 * @Max: 100 - * @Default: 10 + * @Default: 0 * * This ini is used to configure the minimum change in roam score * value of the AP to consider it as candidate for @@ -1159,7 +1159,7 @@ "idle_roam_score_delta", \ 0, \ 100, \ - 10, \ + 0, \ CFG_VALUE_OR_DEFAULT, \ "Roam score delta for Idle roam trigger") @@ -1169,7 +1169,7 @@ * roaming. * @Min: 0 * @Max: 100 - * @Default: 10 + * @Default: 0 * * This ini is used to configure the minimum change in roam score * value of the AP to consider it as candidate when the sta is disconnected @@ -1189,7 +1189,7 @@ "btm_roam_score_delta", \ 0, \ 100, \ - 10, \ + 0, \ CFG_VALUE_OR_DEFAULT, \ "Roam score delta for BTM roam trigger")