123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235 |
- /*
- * Copyright (c) 2012-2019 The Linux Foundation. All rights reserved.
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- /**
- * DOC: This file contains configuration definitions for MLME LFR.
- */
- #ifndef CFG_MLME_LFR_H__
- #define CFG_MLME_LFR_H__
- /*
- * <ini>
- * mawc_roam_enabled - Enable/Disable MAWC during roaming
- * @Min: 0 - Disabled
- * @Max: 1 - Enabled
- * @Default: 0
- *
- * This ini is used to control MAWC during roaming.
- *
- * Related: MAWCEnabled.
- *
- * Supported Feature: MAWC Roaming
- *
- * Usage: Internal/External
- *
- * </ini>
- */
- #define CFG_LFR_MAWC_ROAM_ENABLED CFG_INI_BOOL( \
- "mawc_roam_enabled", \
- 0, \
- "Enable/Disable MAWC during roaming")
- /*
- * <ini>
- * mawc_roam_traffic_threshold - Configure traffic threshold
- * @Min: 0
- * @Max: 0xFFFFFFFF
- * @Default: 300
- *
- * This ini is used to configure the data traffic load in kbps to
- * register CMC.
- *
- * Related: mawc_roam_enabled.
- *
- * Supported Feature: MAWC Roaming
- *
- * Usage: Internal/External
- *
- * </ini>
- */
- #define CFG_LFR_MAWC_ROAM_TRAFFIC_THRESHOLD CFG_INI_UINT( \
- "mawc_roam_traffic_threshold", \
- 0, \
- 0xFFFFFFFF, \
- 300, \
- CFG_VALUE_OR_DEFAULT, \
- "Configure traffic threshold")
- /*
- * <ini>
- * mawc_roam_ap_rssi_threshold - Best AP RSSI threshold
- * @Min: -120
- * @Max: 0
- * @Default: -66
- *
- * This ini is used to specify the RSSI threshold to scan for the AP.
- *
- * Related: mawc_roam_enabled.
- *
- * Supported Feature: MAWC Roaming
- *
- * Usage: Internal/External
- *
- * </ini>
- */
- #define CFG_LFR_MAWC_ROAM_AP_RSSI_THRESHOLD CFG_INI_INT( \
- "mawc_roam_ap_rssi_threshold", \
- -120, \
- 0, \
- -66, \
- CFG_VALUE_OR_DEFAULT, \
- "Best AP RSSI threshold")
- /*
- * <ini>
- * mawc_roam_rssi_high_adjust - Adjust MAWC roam high RSSI
- * @Min: 3
- * @Max: 5
- * @Default: 5
- *
- * This ini is used for high RSSI threshold adjustment in stationary state
- * to suppress the scan.
- *
- * Related: mawc_roam_enabled.
- *
- * Supported Feature: MAWC Roaming
- *
- * Usage: Internal/External
- *
- * </ini>
- */
- #define CFG_LFR_MAWC_ROAM_RSSI_HIGH_ADJUST CFG_INI_UINT( \
- "mawc_roam_ap_rssi_threshold", \
- 3, \
- 5, \
- 5, \
- CFG_VALUE_OR_DEFAULT, \
- "Adjust MAWC roam high RSSI")
- /*
- * <ini>
- * mawc_roam_rssi_low_adjust - Adjust MAWC roam low RSSI
- * @Min: 3
- * @Max: 5
- * @Default: 5
- *
- * This ini is used for low RSSI threshold adjustment in stationary state
- * to suppress the scan.
- *
- * Related: mawc_roam_enabled.
- *
- * Supported Feature: MAWC Roaming
- *
- * Usage: Internal/External
- *
- * </ini>
- */
- #define CFG_LFR_MAWC_ROAM_RSSI_LOW_ADJUST CFG_INI_UINT( \
- "mawc_roam_rssi_low_adjust", \
- 3, \
- 5, \
- 5, \
- CFG_VALUE_OR_DEFAULT, \
- "Adjust MAWC roam low RSSI")
- /*
- * <ini>
- * rssi_abs_thresh - The min RSSI of the candidate AP to consider roam
- * @Min: -96
- * @Max: 0
- * @Default: 0
- *
- * The RSSI value of the candidate AP should be higher than rssi_abs_thresh
- * to roam to the AP. 0 means no absolute minimum RSSI is required.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_RSSI_ABS_THRESHOLD CFG_INI_INT( \
- "rssi_abs_thresh", \
- -96, \
- 0, \
- 0, \
- CFG_VALUE_OR_DEFAULT, \
- "The min RSSI of the candidate AP to consider roam")
- /*
- * <ini>
- * lookup_threshold_5g_offset - Lookup threshold offset for 5G band
- * @Min: -120
- * @Max: 120
- * @Default: 0
- *
- * This ini is used to set the 5G band lookup threshold for roaming.
- * It depends on another INI which is gNeighborLookupThreshold.
- * gNeighborLookupThreshold is a legacy INI item which will be used to
- * set the RSSI lookup threshold for both 2G and 5G bands. If the
- * user wants to setup a different threshold for a 5G band, then user
- * can use this offset value which will be summed up to the value of
- * gNeighborLookupThreshold and used for 5G
- * e.g: gNeighborLookupThreshold = -76dBm
- * lookup_threshold_5g_offset = 6dBm
- * Then the 5G band will be configured to -76+6 = -70dBm
- * A default value of Zero to lookup_threshold_5g_offset will keep the
- * thresholds same for both 2G and 5G bands
- *
- * Related: gNeighborLookupThreshold
- *
- * Supported Feature: Roaming
- *
- * Usage: Internal/External
- *
- * </ini>
- */
- #define CFG_LFR_5G_RSSI_THRESHOLD_OFFSET CFG_INI_INT( \
- "lookup_threshold_5g_offset", \
- -120, \
- 120, \
- 0, \
- CFG_VALUE_OR_DEFAULT, \
- "Lookup threshold offset for 5G band")
- /*
- * <ini>
- * gEnableFastRoamInConcurrency - Enable LFR roaming on STA during concurrency
- * @Min: 0
- * @Max: 1
- * @Default: 1
- *
- * This INI is used to enable Legacy fast roaming(LFR) on STA link during
- * concurrent sessions.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ENABLE_FAST_ROAM_IN_CONCURRENCY CFG_INI_BOOL( \
- "gEnableFastRoamInConcurrency", \
- 1, \
- "Enable LFR roaming on STA during concurrency")
- /*
- * <ini>
- * gEnableEarlyStopScan - Set early stop scan
- * @Min: 0
- * @Max: 1
- * @Default: 0
- *
- * This ini is used to set early stop scan. Early stop
- * scan is a feature for roaming to stop the scans at
- * an early stage as soon as we find a better AP to roam.
- * This would make the roaming happen quickly.
- *
- * Related: None
- *
- * Supported Feature: LFR Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_EARLY_STOP_SCAN_ENABLE CFG_INI_BOOL( \
- "gEnableEarlyStopScan", \
- 0, \
- "Set early stop scan")
- /*
- * <ini>
- * gEarlyStopScanMinThreshold - Set early stop scan min
- * threshold
- * @Min: -80
- * @Max: -70
- * @Default: -73
- *
- * This ini is used to set the early stop scan minimum
- * threshold. Early stop scan minimum threshold is the
- * minimum threshold to be considered for stopping the
- * scan. The algorithm starts with a scan on the greedy
- * channel list with the maximum threshold and steps down
- * the threshold by 20% for each further channel. It can
- * step down on each channel but cannot go lower than the
- * minimum threshold.
- *
- * Related: None
- *
- * Supported Feature: Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_EARLY_STOP_SCAN_MIN_THRESHOLD CFG_INI_INT( \
- "gEarlyStopScanMinThreshold", \
- -80, \
- -70, \
- -73, \
- CFG_VALUE_OR_DEFAULT, \
- "Set early stop scan min")
- /*
- * <ini>
- * gEarlyStopScanMaxThreshold - Set early stop scan max
- * threshold
- * @Min: -60
- * @Max: -40
- * @Default: -43
- *
- * This ini is used to set the the early stop scan maximum
- * threshold at which the candidate AP should be to be
- * qualified as a potential roam candidate and good enough
- * to stop the roaming scan.
- *
- * Related: None
- *
- * Supported Feature: Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_EARLY_STOP_SCAN_MAX_THRESHOLD CFG_INI_INT( \
- "gEarlyStopScanMaxThreshold", \
- -60, \
- -40, \
- -43, \
- CFG_VALUE_OR_DEFAULT, \
- "Set early stop scan max")
- /*
- * <ini>
- * gFirstScanBucketThreshold - Set first scan bucket
- * threshold
- * @Min: -50
- * @Max: -30
- * @Default: -30
- *
- * This ini will configure the first scan bucket
- * threshold to the mentioned value and all the AP's which
- * have RSSI under this threshold will fall under this
- * bucket. This configuration item used to tweak and
- * test the input for internal algorithm.
- *
- * Related: None
- *
- * Supported Feature: Scan
- *
- * Usage: Internal
- *
- * </ini>
- */
- #define CFG_LFR_FIRST_SCAN_BUCKET_THRESHOLD CFG_INI_INT( \
- "gFirstScanBucketThreshold", \
- -50, \
- -30, \
- -30, \
- CFG_VALUE_OR_DEFAULT, \
- "Set first scan bucket")
- /*
- * <ini>
- * gtraffic_threshold - Dense traffic threshold
- * @Min: 0
- * @Max: 0xffffffff
- * @Default: 400
- *
- * Dense traffic threshold
- * traffic threshold required for dense roam scan
- * Measured in kbps
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_DENSE_TRAFFIC_THRESHOLD CFG_INI_UINT( \
- "gtraffic_threshold", \
- 0, \
- 0xffffffff, \
- 400, \
- CFG_VALUE_OR_DEFAULT, \
- "Dense traffic threshold")
- /*
- * <ini>
- * groam_dense_rssi_thresh_offset - Sets dense roam RSSI threshold diff
- * @Min: 0
- * @Max: 20
- * @Default: 10
- *
- * This INI is used to set offset value from normal RSSI threshold to dense
- * RSSI threshold FW will optimize roaming based on new RSSI threshold once
- * it detects dense environment.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_DENSE_RSSI_THRE_OFFSET CFG_INI_UINT( \
- "groam_dense_rssi_thresh_offset", \
- 0, \
- 20, \
- 10, \
- CFG_VALUE_OR_DEFAULT, \
- "Dense traffic threshold")
- /*
- * <ini>
- * groam_dense_min_aps - Sets minimum number of AP for dense roam
- * @Min: 1
- * @Max: 5
- * @Default: 3
- *
- * Minimum number of APs required for dense roam. FW will consider
- * environment as dense once it detects #APs operating is more than
- * groam_dense_min_aps.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_DENSE_MIN_APS CFG_INI_UINT( \
- "groam_dense_min_aps", \
- 1, \
- 5, \
- 3, \
- CFG_VALUE_OR_DEFAULT, \
- "Sets minimum number of AP for dense roam")
- /*
- * <ini>
- * roam_bg_scan_bad_rssi_thresh - RSSI threshold for background roam
- * @Min: -96
- * @Max: 0
- * @Default: -76
- *
- * If the DUT is connected to an AP with weak signal, then the bad RSSI
- * threshold will be used as an opportunity to use the scan results
- * from other scan clients and try to roam if there is a better AP
- * available in the environment.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_BG_SCAN_BAD_RSSI_THRESHOLD CFG_INI_INT( \
- "roam_bg_scan_bad_rssi_thresh", \
- -96, \
- 0, \
- -76, \
- CFG_VALUE_OR_DEFAULT, \
- "RSSI threshold for background roam")
- /*
- * <ini>
- * roam_bg_scan_client_bitmap - Bitmap used to identify the scan clients
- * @Min: 0
- * @Max: 0x7FF
- * @Default: 0x424
- *
- * This bitmap is used to define the client scans that need to be used
- * by the roaming module to perform a background roaming.
- * Currently supported bit positions are as follows:
- * Bit 0 is reserved in the firmware.
- * WMI_SCAN_CLIENT_NLO - 1
- * WMI_SCAN_CLIENT_EXTSCAN - 2
- * WMI_SCAN_CLIENT_ROAM - 3
- * WMI_SCAN_CLIENT_P2P - 4
- * WMI_SCAN_CLIENT_LPI - 5
- * WMI_SCAN_CLIENT_NAN - 6
- * WMI_SCAN_CLIENT_ANQP - 7
- * WMI_SCAN_CLIENT_OBSS - 8
- * WMI_SCAN_CLIENT_PLM - 9
- * WMI_SCAN_CLIENT_HOST - 10
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_BG_SCAN_CLIENT_BITMAP CFG_INI_UINT( \
- "roam_bg_scan_client_bitmap", \
- 0, \
- 0x7FF, \
- 0x424, \
- CFG_VALUE_OR_DEFAULT, \
- "Bitmap used to identify the scan clients")
- /*
- * <ini>
- * roam_bad_rssi_thresh_offset_2g - RSSI threshold offset for 2G to 5G roam
- * @Min: 0
- * @Max: 86
- * @Default: 40
- *
- * If the DUT is connected to an AP with weak signal in 2G band, then the
- * bad RSSI offset for 2g would be used as offset from the bad RSSI
- * threshold configured and then use the resulting rssi for an opportunity
- * to use the scan results from other scan clients and try to roam to
- * 5G Band ONLY if there is a better AP available in the environment.
- *
- * For example if the roam_bg_scan_bad_rssi_thresh is -76 and
- * roam_bad_rssi_thresh_offset_2g is 40 then the difference of -36 would be
- * used as a trigger to roam to a 5G AP if DUT initially connected to a 2G AP
- *
- * Related: roam_bg_scan_bad_rssi_thresh
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_BG_SCAN_BAD_RSSI_OFFSET_2G CFG_INI_UINT( \
- "roam_bad_rssi_thresh_offset_2g", \
- 0, \
- 86, \
- 40, \
- CFG_VALUE_OR_DEFAULT, \
- "RSSI threshold offset for 2G to 5G roam")
- /*
- * <ini>
- * roamscan_adaptive_dwell_mode - Sets dwell time adaptive mode
- * @Min: 0
- * @Max: 4
- * @Default: 1
- *
- * This parameter will set the algo used in dwell time optimization during
- * roam scan. see enum scan_dwelltime_adaptive_mode.
- * Acceptable values for this:
- * 0: Default (Use firmware default mode)
- * 1: Conservative optimization
- * 2: Moderate optimization
- * 3: Aggressive optimization
- * 4: Static
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ADAPTIVE_ROAMSCAN_DWELL_MODE CFG_INI_UINT( \
- "roamscan_adaptive_dwell_mode", \
- 0, \
- 4, \
- 1, \
- CFG_VALUE_OR_DEFAULT, \
- "Sets dwell time adaptive mode")
- /*
- * <ini>
- * gper_roam_enabled - To enabled/disable PER based roaming in FW
- * @Min: 0
- * @Max: 3
- * @Default: 3
- *
- * This ini is used to enable/disable Packet error based roaming, enabling this
- * will cause DUT to monitor Tx and Rx traffic and roam to a better candidate
- * if current is not good enough.
- *
- * Values supported:
- * 0: disabled
- * 1: enabled for Rx traffic
- * 2: enabled for Tx traffic
- * 3: enabled for Tx and Rx traffic
- *
- * Related: gper_roam_high_rate_th, gper_roam_low_rate_th,
- * gper_roam_th_percent, gper_roam_rest_time
- *
- * Supported Feature: LFR-3.0
- *
- * Usage: Internal
- *
- * </ini>
- */
- #define CFG_LFR_PER_ROAM_ENABLE CFG_INI_UINT( \
- "gper_roam_enabled", \
- 0, \
- 3, \
- 3, \
- CFG_VALUE_OR_DEFAULT, \
- "To enabled/disable PER based roaming in FW")
- /*
- * <ini>
- * gper_roam_high_rate_th - Rate at which PER based roam will stop
- * @Min: 1 Mbps
- * @Max: 0xffffffff
- * @Default: 40 Mbps
- *
- * This ini is used to define the data rate in mbps*10 at which FW will stop
- * monitoring the traffic for PER based roam.
- *
- * Related: gper_roam_enabled, gper_roam_low_rate_th,
- * gper_roam_th_percent, gper_roam_rest_time
- *
- * Supported Feature: LFR-3.0
- *
- * Usage: Internal
- *
- * </ini>
- */
- #define CFG_LFR_PER_ROAM_CONFIG_HIGH_RATE_TH CFG_INI_UINT( \
- "gper_roam_high_rate_th", \
- 10, \
- 0xffffffff, \
- 400, \
- CFG_VALUE_OR_DEFAULT, \
- "Rate at which PER based roam will stop")
- /*
- * <ini>
- * gper_roam_low_rate_th - Rate at which FW starts considering traffic for PER
- * based roam.
- *
- * @Min: 1 Mbps
- * @Max: 0xffffffff
- * @Default: 20 Mbps
- *
- * This ini is used to define the rate in mbps*10 at which FW starts considering
- * traffic for PER based roam, if gper_roam_th_percent of data is below this
- * rate, FW will issue a roam scan.
- *
- * Related: gper_roam_enabled, gper_roam_high_rate_th,
- * gper_roam_th_percent, gper_roam_rest_time
- *
- * Supported Feature: LFR-3.0
- *
- * Usage: Internal
- *
- * </ini>
- */
- #define CFG_LFR_PER_ROAM_CONFIG_LOW_RATE_TH CFG_INI_UINT( \
- "gper_roam_low_rate_th", \
- 10, \
- 0xffffffff, \
- 200, \
- CFG_VALUE_OR_DEFAULT, \
- "Rate at which FW starts considering traffic for PER")
- /*
- * <ini>
- * gper_roam_th_percent - Percentage at which FW will issue a roam scan if
- * traffic is below gper_roam_low_rate_th rate.
- *
- * @Min: 10%
- * @Max: 100%
- * @Default: 60%
- *
- * This ini is used to define the percentage at which FW will issue a roam scan
- * if traffic is below gper_roam_low_rate_th rate.
- *
- * Related: gper_roam_enabled, gper_roam_high_rate_th,
- * gper_roam_high_rate_th, gper_roam_rest_time
- *
- * Supported Feature: LFR-3.0
- *
- * Usage: Internal
- *
- * </ini>
- */
- #define CFG_LFR_PER_ROAM_CONFIG_RATE_TH_PERCENT CFG_INI_UINT( \
- "gper_roam_th_percent", \
- 10, \
- 100, \
- 60, \
- CFG_VALUE_OR_DEFAULT, \
- "Percentage at which FW will issue a roam scan")
- /*
- * <ini>
- * gper_roam_rest_time - Time for which FW will wait once it issues a
- * roam scan.
- *
- * @Min: 10 seconds
- * @Max: 3600 seconds
- * @Default: 300 seconds
- *
- * This ini is used to define the time for which FW will wait once it issues a
- * PER based roam scan.
- *
- * Related: gper_roam_enabled, gper_roam_high_rate_th,
- * gper_roam_high_rate_th, gper_roam_th_percent
- *
- * Supported Feature: LFR-3.0
- *
- * Usage: Internal
- *
- * </ini>
- */
- #define CFG_LFR_PER_ROAM_REST_TIME CFG_INI_UINT( \
- "gper_roam_rest_time", \
- 10, \
- 3600, \
- 300, \
- CFG_VALUE_OR_DEFAULT, \
- "Time for which FW will wait once it issues a roam scan")
- /*
- * <ini>
- * gper_roam_mon_time - Minimum time required in seconds to
- * be considered as valid scenario for PER based roam
- * @Min: 5
- * @Max: 25
- * @Default: 25
- *
- * This ini is used to define minimum time in seconds for which DUT has
- * collected the PER stats before it can consider the stats hysteresis to be
- * valid for PER based scan.
- * DUT collects following information during this period:
- * 1. % of packets below gper_roam_low_rate_th
- * 2. # packets above gper_roam_high_rate_th
- * if DUT gets (1) greater than gper_roam_th_percent and (2) is zero during
- * this period, it triggers PER based roam scan.
- *
- * Related: gper_roam_enabled, gper_roam_high_rate_th, gper_roam_low_rate_th,
- * gper_roam_th_percent, gper_roam_rest_time
- *
- * Supported Feature: LFR-3.0
- *
- * Usage: Internal
- *
- * </ini>
- */
- #define CFG_LFR_PER_ROAM_MONITOR_TIME CFG_INI_UINT( \
- "gper_roam_mon_time", \
- 5, \
- 25, \
- 25, \
- CFG_VALUE_OR_DEFAULT, \
- "Minimum time to be considered as valid scenario for PER based roam")
- /*
- * <ini>
- * gper_min_rssi_threshold_for_roam - Minimum roamable AP RSSI for
- * candidate selection for PER based roam
- * @Min: 0
- * @Max: 96
- * @Default: 83
- *
- * Minimum roamable AP RSSI for candidate selection for PER based roam
- *
- * Related: gper_roam_enabled, gper_roam_high_rate_th, gper_roam_low_rate_th,
- * gper_roam_th_percent, gper_roam_rest_time
- *
- * Supported Feature: LFR-3.0
- *
- * Usage: Internal
- *
- * </ini>
- */
- #define CFG_LFR_PER_ROAM_MIN_CANDIDATE_RSSI CFG_INI_UINT( \
- "gper_min_rssi_threshold_for_roam", \
- 10, \
- 96, \
- 83, \
- CFG_VALUE_OR_DEFAULT, \
- "Minimum roamable AP RSSI for candidate selection for PER based roam")
- /*
- * <ini>
- * groam_disallow_duration - disallow duration before roaming
- * @Min: 0
- * @Max: 3600
- * @Default: 30
- *
- * This ini is used to configure how long LCA[Last Connected AP] AP will
- * be disallowed before it can be a roaming candidate again, in units of
- * seconds.
- *
- * Related: LFR
- *
- * Usage: Internal
- *
- * </ini>
- */
- #define CFG_LFR3_ROAM_DISALLOW_DURATION CFG_INI_UINT( \
- "groam_disallow_duration", \
- 0, \
- 3600, \
- 30, \
- CFG_VALUE_OR_DEFAULT, \
- "disallow duration before roaming")
- /*
- * <ini>
- * grssi_channel_penalization - RSSI penalization
- * @Min: 0
- * @Max: 15
- * @Default: 5
- *
- * This ini is used to configure RSSI that will be penalized if candidate(s)
- * are found to be in the same channel as disallowed AP's, in units of db.
- *
- * Related: LFR
- *
- * Usage: Internal
- *
- * </ini>
- */
- #define CFG_LFR3_ROAM_RSSI_CHANNEL_PENALIZATION CFG_INI_UINT( \
- "grssi_channel_penalization", \
- 0, \
- 15, \
- 5, \
- CFG_VALUE_OR_DEFAULT, \
- "RSSI penalization")
- /*
- * <ini>
- * groam_num_disallowed_aps - Max number of AP's to maintain in LCA list
- * @Min: 0
- * @Max: 8
- * @Default: 3
- *
- * This ini is used to set the maximum number of AP's to be maintained
- * in LCA [Last Connected AP] list.
- *
- * Related: LFR
- *
- * Usage: Internal
- *
- * </ini>
- */
- #define CFG_LFR3_ROAM_NUM_DISALLOWED_APS CFG_INI_UINT( \
- "groam_num_disallowed_aps", \
- 0, \
- 8, \
- 3, \
- CFG_VALUE_OR_DEFAULT, \
- "Max number of AP's to maintain in LCA list")
- /*
- * <ini>
- * enable_5g_band_pref - Enable preference for 5G from INI.
- * @Min: 0
- * @Max: 1
- * @Default: 0
- * This ini is used to enable 5G preference parameters.
- *
- * Related: 5g_rssi_boost_threshold, 5g_rssi_boost_factor, 5g_max_rssi_boost
- * 5g_rssi_penalize_threshold, 5g_rssi_penalize_factor, 5g_max_rssi_penalize
- *
- * Supported Feature: 5G band preference
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ENABLE_5G_BAND_PREF CFG_INI_BOOL( \
- "enable_5g_band_pref", \
- 0, \
- "Enable preference for 5G from INI")
- /*
- * <ini>
- * 5g_rssi_boost_threshold - A_band_boost_threshold above which 5G is favored.
- * @Min: -55
- * @Max: -70
- * @Default: -60
- * This ini is used to set threshold for 5GHz band preference.
- *
- * Related: 5g_rssi_boost_factor, 5g_max_rssi_boost
- * 5g_rssi_penalize_threshold, 5g_rssi_penalize_factor, 5g_max_rssi_penalize
- *
- * Supported Feature: 5G band preference
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_5G_RSSI_BOOST_THRESHOLD CFG_INI_INT( \
- "5g_rssi_boost_threshold", \
- -55, \
- -70, \
- -60, \
- CFG_VALUE_OR_DEFAULT, \
- "A_band_boost_threshold above which 5 GHz is favored")
- /*
- * <ini>
- * 5g_rssi_boost_factor - Factor by which 5GHz RSSI is boosted.
- * @Min: 0
- * @Max: 2
- * @Default: 1
- * This ini is used to set the 5Ghz boost factor.
- *
- * Related: 5g_rssi_boost_threshold, 5g_max_rssi_boost
- * 5g_rssi_penalize_threshold, 5g_rssi_penalize_factor, 5g_max_rssi_penalize
- *
- * Supported Feature: 5G band preference
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_5G_RSSI_BOOST_FACTOR CFG_INI_UINT( \
- "5g_rssi_boost_factor", \
- 0, \
- 2, \
- 1, \
- CFG_VALUE_OR_DEFAULT, \
- "Factor by which 5GHz RSSI is boosted")
- /*
- * <ini>
- * 5g_max_rssi_boost - Maximum boost that can be applied to 5GHz RSSI.
- * @Min: 0
- * @Max: 20
- * @Default: 10
- * This ini is used to set maximum boost which can be given to a 5Ghz network.
- *
- * Related: 5g_rssi_boost_threshold, 5g_rssi_boost_factor
- * 5g_rssi_penalize_threshold, 5g_rssi_penalize_factor, 5g_max_rssi_penalize
- *
- * Supported Feature: 5G band preference
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_5G_MAX_RSSI_BOOST CFG_INI_UINT( \
- "5g_max_rssi_boost", \
- 0, \
- 20, \
- 10, \
- CFG_VALUE_OR_DEFAULT, \
- "Maximum boost that can be applied to 5GHz RSSI")
- /*
- * <ini>
- * 5g_rssi_penalize_threshold - A_band_penalize_threshold above which
- * 5 GHz is not favored.
- * @Min: -65
- * @Max: -80
- * @Default: -70
- * This ini is used to set threshold for 5GHz band preference.
- *
- * Related: 5g_rssi_penalize_factor, 5g_max_rssi_penalize
- * 5g_rssi_boost_threshold, 5g_rssi_boost_factor, 5g_max_rssi_boost
- *
- * Supported Feature: 5G band preference
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_5G_RSSI_PENALIZE_THRESHOLD CFG_INI_INT( \
- "5g_rssi_penalize_threshold", \
- -65, \
- -80, \
- -70, \
- CFG_VALUE_OR_DEFAULT, \
- "A_band_penalize_threshold above which 5 GHz is not favored")
- /*
- * <ini>
- * 5g_rssi_penalize_factor - Factor by which 5GHz RSSI is penalizeed.
- * @Min: 0
- * @Max: 2
- * @Default: 1
- * This ini is used to set the 5Ghz penalize factor.
- *
- * Related: 5g_rssi_penalize_threshold, 5g_max_rssi_penalize
- * 5g_rssi_boost_threshold, 5g_rssi_boost_factor, 5g_max_rssi_boost
- *
- * Supported Feature: 5G band preference
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_5G_RSSI_PENALIZE_FACTOR CFG_INI_UINT( \
- "5g_rssi_penalize_factor", \
- 0, \
- 2, \
- 1, \
- CFG_VALUE_OR_DEFAULT, \
- "Factor by which 5GHz RSSI is penalizeed")
- /*
- * <ini>
- * 5g_max_rssi_penalize - Maximum penalty that can be applied to 5GHz RSSI.
- * @Min: 0
- * @Max: 20
- * @Default: 10
- * This ini is used to set maximum penalty which can be given to a 5Ghz network.
- *
- * Related: 5g_rssi_penalize_threshold, 5g_rssi_penalize_factor
- * 5g_rssi_boost_threshold, 5g_rssi_boost_factor, 5g_max_rssi_boost
- *
- * Supported Feature: 5G band preference
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_5G_MAX_RSSI_PENALIZE CFG_INI_UINT( \
- "5g_max_rssi_penalize", \
- 0, \
- 20, \
- 10, \
- CFG_VALUE_OR_DEFAULT, \
- "Maximum penalty that can be applied to 5GHz RSSI")
- /*
- * max_num_pre_auth - Configure max number of pre-auth
- * @Min: 0
- * @Max: 256
- * @Default: 64
- *
- * This ini is used to configure the data max number of pre-auth
- *
- * Usage: Internal
- *
- */
- #define CFG_LFR_MAX_NUM_PRE_AUTH CFG_UINT( \
- "max_num_pre_auth", \
- 0, \
- 256, \
- 64, \
- CFG_VALUE_OR_DEFAULT, \
- "")
- /*
- * roam_preauth_retry_count
- *
- * @Min: 1
- * @Max: 10
- * @Default: 5
- *
- * The maximum number of software retries for preauth or
- * reassoc made before picking up the next candidate for
- * connection during roaming.
- *
- * Related: N/A
- *
- * Supported Features: Roaming
- *
- * Usage: Internal/External
- *
- * </ini>
- */
- #define CFG_LFR3_ROAM_PREAUTH_RETRY_COUNT CFG_INI_INT( \
- "roam_preauth_retry_count", \
- 1, \
- 10, \
- 5, \
- CFG_VALUE_OR_DEFAULT, \
- "The maximum number of software retries for preauth")
- /*
- * <ini>
- * roam_preauth_no_ack_timeout
- *
- * @Min: 5
- * @Max: 50
- * @Default: 5
- *
- * Time to wait (in ms) after sending an preauth or reassoc
- * request which didn’t have an ack, before considering
- * it as a failure and making another software retry.
- *
- * Related: N/A
- *
- * Supported Features: Roaming
- *
- * Usage: Internal/External
- *
- * </ini>
- */
- #define CFG_LFR3_ROAM_PREAUTH_NO_ACK_TIMEOUT CFG_INI_INT( \
- "roam_preauth_no_ack_timeout", \
- 5, \
- 50, \
- 5, \
- CFG_VALUE_OR_DEFAULT, \
- "Time to wait after sending an preauth or reassoc")
- /*
- * <ini>
- * FastRoamEnabled - Enable fast roaming
- * @Min: 0
- * @Max: 1
- * @Default: 0
- *
- * This ini is used to inform FW to enable fast roaming
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_FEATURE_ENABLED CFG_INI_BOOL( \
- "FastRoamEnabled", \
- 0, \
- "Enable fast roaming")
- /*
- * <ini>
- * MAWCEnabled - Enable/Disable Motion Aided Wireless Connectivity Global
- * @Min: 0 - Disabled
- * @Max: 1 - Enabled
- * @Default: 0
- *
- * This ini is used to controls the MAWC feature globally.
- * MAWC is Motion Aided Wireless Connectivity.
- *
- * Related: mawc_roam_enabled.
- *
- * Supported Feature: Roaming and PNO/NLO
- *
- * Usage: Internal/External
- *
- * </ini>
- */
- #define CFG_LFR_MAWC_FEATURE_ENABLED CFG_INI_BOOL( \
- "MAWCEnabled", \
- 0, \
- "Enable MAWC")
- /*
- * <ini>
- * FastTransitionEnabled - Enable fast transition in case of 11r and ese.
- * @Min: 0
- * @Max: 1
- * @Default: 1
- *
- * This ini is used to turn ON/OFF the whole neighbor roam, pre-auth, reassoc.
- * With this turned OFF 11r will completely not work. For 11r this flag has to
- * be ON. For ESE fastroam will not work.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_FAST_TRANSITION_ENABLED CFG_INI_BOOL( \
- "FastTransitionEnabled", \
- 1, \
- "Enable fast transition")
- /*
- * <ini>
- * RoamRssiDiff - Enable roam based on rssi
- * @Min: 0
- * @Max: 30
- * @Default: 5
- *
- * This INI is used to decide whether to Roam or not based on RSSI. AP1 is the
- * currently associated AP and AP2 is chosen for roaming. The Roaming will
- * happen only if AP2 has better Signal Quality and it has a RSSI better than
- * AP2. RoamRssiDiff is the number of units (typically measured in dB) AP2
- * is better than AP1.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_RSSI_DIFF CFG_INI_UINT( \
- "RoamRssiDiff", \
- 0, \
- 30, \
- 5, \
- CFG_VALUE_OR_DEFAULT, \
- "Enable roam based on rssi")
- /*
- * <ini>
- * gWESModeEnabled - Enable WES mode
- * @Min: 0
- * @Max: 1
- * @Default: 0
- *
- * This ini is used to enable/disable Wireless Extended Security mode.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ENABLE_WES_MODE CFG_INI_BOOL( \
- "gWESModeEnabled", \
- 0, \
- "Enable WES mode")
- /*
- * <ini>
- * gRoamScanOffloadEnabled - Enable Roam Scan Offload
- * @Min: 0
- * @Max: 1
- * @Default: 1
- *
- * This INI is used to enable Roam Scan Offload in firmware
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_SCAN_OFFLOAD_ENABLED CFG_INI_BOOL( \
- "gRoamScanOffloadEnabled", \
- 1, \
- "Enable Roam Scan Offload")
- /*
- * <ini>
- * gNeighborScanChannelList - Set channels to be scanned
- * by firmware for LFR scan
- * @Default: ""
- *
- * This ini is used to set the channels to be scanned
- * by firmware for LFR scan.
- *
- * Related: None
- *
- * Supported Feature: LFR Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_NEIGHBOR_SCAN_CHANNEL_LIST CFG_INI_STRING( \
- "gNeighborScanChanList", \
- 0, \
- CFG_VALID_CHANNEL_LIST_STRING_LEN, \
- "", \
- "Set channels to be scanned")
- /*
- * <ini>
- * gNeighborScanTimerPeriod - Set neighbor scan timer period
- * @Min: 3
- * @Max: 300
- * @Default: 100
- *
- * This ini is used to set the timer period in secs after
- * which neighbor scan is trigerred.
- *
- * Related: None
- *
- * Supported Feature: LFR Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_NEIGHBOR_SCAN_TIMER_PERIOD CFG_INI_UINT( \
- "gNeighborScanTimerPeriod", \
- 3, \
- 300, \
- 100, \
- CFG_VALUE_OR_DEFAULT, \
- "Neighbor scan timer period")
- /*
- * <ini>
- * gRoamRestTimeMin - Set min neighbor scan timer period
- * @Min: 3
- * @Max: 300
- * @Default: 50
- *
- * This is the min rest time after which firmware will check for traffic
- * and if there no traffic it will move to a new channel to scan
- * else it will stay on the home channel till gNeighborScanTimerPeriod time
- * and then will move to a new channel to scan.
- *
- * Related: None
- *
- * Supported Feature: LFR Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_NEIGHBOR_SCAN_MIN_TIMER_PERIOD CFG_INI_UINT( \
- "gRoamRestTimeMin", \
- 3, \
- 300, \
- 50, \
- CFG_VALUE_OR_DEFAULT, \
- "Min neighbor scan timer period")
- /*
- * <ini>
- * gNeighborLookupThreshold - Set neighbor lookup rssi threshold
- * @Min: 10
- * @Max: 120
- * @Default: 78
- *
- * This is used to control the RSSI threshold for neighbor lookup.
- *
- * Related: None
- *
- * Supported Feature: LFR Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_NEIGHBOR_LOOKUP_RSSI_THRESHOLD CFG_INI_UINT( \
- "gNeighborLookupThreshold", \
- 10, \
- 120, \
- 78, \
- CFG_VALUE_OR_DEFAULT, \
- "Neighbor lookup rssi threshold")
- /*
- * <ini>
- * gOpportunisticThresholdDiff - Set oppurtunistic threshold diff
- * @Min: 0
- * @Max: 127
- * @Default: 0
- *
- * This ini is used to set opportunistic threshold diff.
- * This parameter is the RSSI diff above neighbor lookup
- * threshold, when opportunistic scan should be triggered.
- * MAX value is chosen so that this type of scan can be
- * always enabled by user.
- * MIN value will cause opportunistic scan to be triggered
- * in neighbor lookup RSSI range.
- *
- * Related: None
- *
- * Supported Feature: LFR Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_OPPORTUNISTIC_SCAN_THRESHOLD_DIFF CFG_INI_UINT( \
- "gOpportunisticThresholdDiff", \
- 0, \
- 127, \
- 0, \
- CFG_VALUE_OR_DEFAULT, \
- "Set oppurtunistic threshold diff")
- /*
- * <ini>
- * gRoamRescanRssiDiff - Sets RSSI for Scan trigger in firmware
- * @Min: 0
- * @Max: 100
- * @Default: 5
- *
- * This INI is the drop in RSSI value that will trigger a precautionary
- * scan by firmware. Max value is chosen in such a way that this type
- * of scan can be disabled by user.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_RESCAN_RSSI_DIFF CFG_INI_UINT( \
- "gRoamRescanRssiDiff", \
- 0, \
- 100, \
- 5, \
- CFG_VALUE_OR_DEFAULT, \
- "Sets RSSI for Scan trigger in firmware")
- /*
- * <ini>
- * gNeighborScanChannelMinTime - Set neighbor scan channel min time
- * @Min: 10
- * @Max: 40
- * @Default: 20
- *
- * This ini is used to set the minimum time in secs spent on each
- * channel in LFR scan inside firmware.
- *
- * Related: None
- *
- * Supported Feature: LFR Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_NEIGHBOR_SCAN_MIN_CHAN_TIME CFG_INI_UINT( \
- "gNeighborScanChannelMinTime", \
- 10, \
- 40, \
- 20, \
- CFG_VALUE_OR_DEFAULT, \
- "Neighbor scan channel min time")
- /*
- * <ini>
- * gNeighborScanChannelMaxTime - Set neighbor scan channel max time
- * @Min: 3
- * @Max: 300
- * @Default: 30
- *
- * This ini is used to set the maximum time in secs spent on each
- * channel in LFR scan inside firmware.
- *
- * Related: None
- *
- * Supported Feature: LFR Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_NEIGHBOR_SCAN_MAX_CHAN_TIME CFG_INI_UINT( \
- "gNeighborScanChannelMaxTime", \
- 3, \
- 300, \
- 30, \
- CFG_VALUE_OR_DEFAULT, \
- "Neighbor scan channel max time")
- /*
- * <ini>
- * gNeighborScanRefreshPeriod - Set neighbor scan refresh period
- * @Min: 1000
- * @Max: 60000
- * @Default: 20000
- *
- * This ini is used by firmware to set scan refresh period
- * in msecs for lfr scan.
- *
- * Related: None
- *
- * Supported Feature: LFR Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_NEIGHBOR_SCAN_RESULTS_REFRESH_PERIOD CFG_INI_UINT( \
- "gNeighborScanRefreshPeriod", \
- 1000, \
- 60000, \
- 20000, \
- CFG_VALUE_OR_DEFAULT, \
- "Neighbor scan refresh period")
- /*
- * <ini>
- * gEmptyScanRefreshPeriod - Set empty scan refresh period
- * @Min: 0
- * @Max: 60000
- * @Default: 0
- *
- * This ini is used by firmware to set scan period in msecs
- * following empty scan results.
- *
- * Related: None
- *
- * Supported Feature: LFR Scan
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_EMPTY_SCAN_REFRESH_PERIOD CFG_INI_UINT( \
- "gEmptyScanRefreshPeriod", \
- 0, \
- 60000, \
- 0, \
- CFG_VALUE_OR_DEFAULT, \
- "Empty scan refresh period")
- /*
- * <ini>
- * gRoamBmissFirstBcnt - Beacon miss count to trigger 1st bmiss event
- * @Min: 5
- * @Max: 100
- * @Default: 10
- *
- * This ini used to control how many beacon miss will trigger first bmiss
- * event. First bmiss event will result in roaming scan.
- *
- * Related: None
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_BMISS_FIRST_BCNT CFG_INI_UINT( \
- "gRoamBmissFirstBcnt", \
- 5, \
- 100, \
- 10, \
- CFG_VALUE_OR_DEFAULT, \
- "First beacon miss count")
- /*
- * <ini>
- * gRoamBmissFinalBcnt - Beacon miss count to trigger final bmiss event
- * @Min: 5
- * @Max: 100
- * @Default: 20
- *
- * This ini used to control how many beacon miss will trigger final bmiss
- * event. Final bmiss event will make roaming take place or cause the
- * indication of final bmiss event.
- *
- * Related: None
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_BMISS_FINAL_BCNT CFG_INI_UINT( \
- "gRoamBmissFinalBcnt", \
- 5, \
- 100, \
- 20, \
- CFG_VALUE_OR_DEFAULT, \
- "Final beacon miss count")
- /*
- * <ini>
- * gRoamBeaconRssiWeight - Set beacon miss weight
- * @Min: 5
- * @Max: 16
- * @Default: 14
- *
- * This ini controls how many beacons' RSSI values will be used to calculate
- * the average value of RSSI.
- *
- * Related: None
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_BEACON_RSSI_WEIGHT CFG_INI_UINT( \
- "gRoamBeaconRssiWeight", \
- 0, \
- 16, \
- 14, \
- CFG_VALUE_OR_DEFAULT, \
- "Beacon miss weight")
- /*
- * <ini>
- * gAllowDFSChannelRoam - Allow dfs channel in roam
- * @Min: 0
- * @Max: 2
- * @Default: 0
- *
- * This ini is used to set default dfs channel
- *
- * Related: None
- *
- * Supported Feature: STA
- *
- * Usage: Internal/External
- *
- * </ini>
- */
- #define CFG_LFR_ROAMING_DFS_CHANNEL CFG_INI_UINT( \
- "gAllowDFSChannelRoam", \
- 0, \
- 2, \
- 0, \
- CFG_VALUE_OR_DEFAULT, \
- "Allow dfs channel in roam")
- /*
- * <ini>
- * gRoamScanHiRssiMaxCount - Sets 5GHz maximum scan count
- * @Min: 0
- * @Max: 10
- * @Default: 3
- *
- * This INI is used to set maximum scan count in 5GHz
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_SCAN_HI_RSSI_MAXCOUNT CFG_INI_UINT( \
- "gRoamScanHiRssiMaxCount", \
- 0, \
- 10, \
- 3, \
- CFG_VALUE_OR_DEFAULT, \
- "5GHz maximum scan count")
- /*
- * <ini>
- * gRoamScanHiRssiDelta - Sets RSSI Delta for scan trigger
- * @Min: 0
- * @Max: 16
- * @Default: 10
- *
- * This INI is used to set change in RSSI at which scan is triggered
- * in 5GHz.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_SCAN_HI_RSSI_DELTA CFG_INI_UINT( \
- "gRoamScanHiRssiDelta", \
- 0, \
- 16, \
- 10, \
- CFG_VALUE_OR_DEFAULT, \
- "RSSI Delta for scan trigger")
- /*
- * <ini>
- * gRoamScanHiRssiDelay - Sets minimum delay between 5GHz scans
- * @Min: 5000
- * @Max: 0x7fffffff
- * @Default: 15000
- *
- * This INI is used to set the minimum delay between 5GHz scans.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_SCAN_HI_RSSI_DELAY CFG_INI_UINT( \
- "gRoamScanHiRssiDelay", \
- 5000, \
- 0x7fffffff, \
- 15000, \
- CFG_VALUE_OR_DEFAULT, \
- "Minimum delay between 5GHz scans")
- /*
- * <ini>
- * gRoamScanHiRssiUpperBound - Sets upper bound after which 5GHz scan
- * @Min: -66
- * @Max: 0
- * @Default: -30
- *
- * This INI is used to set the RSSI upper bound above which the 5GHz scan
- * will not be performed.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_SCAN_HI_RSSI_UB CFG_INI_INT( \
- "gRoamScanHiRssiUpperBound", \
- -66, \
- 0, \
- -30, \
- CFG_VALUE_OR_DEFAULT, \
- "Upper bound after which 5GHz scan")
- /*
- * <ini>
- * gRoamPrefer5GHz - Prefer roaming to 5GHz Bss
- * @Min: 0
- * @Max: 1
- * @Default: 1
- *
- * This ini is used to inform FW to prefer roaming to 5GHz BSS
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_PREFER_5GHZ CFG_INI_BOOL( \
- "gRoamPrefer5GHz", \
- 1, \
- "Prefer roaming to 5GHz Bss")
- /*
- * <ini>
- * gRoamIntraBand - Prefer roaming within Band
- * @Min: 0
- * @Max: 1
- * @Default: 0
- *
- * This ini is used to inform FW to prefer roaming within band
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_INTRA_BAND CFG_INI_BOOL( \
- "gRoamIntraBand", \
- 0, \
- "Prefer roaming within Band")
- /*
- * <ini>
- * gRoamScanNProbes - Sets the number of probes to be sent for firmware roaming
- * @Min: 1
- * @Max: 10
- * @Default: 2
- *
- * This INI is used to set the maximum number of probes the firmware can send
- * for firmware internal roaming cases.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_SCAN_N_PROBES CFG_INI_UINT( \
- "gRoamScanNProbes", \
- 1, \
- 10, \
- 2, \
- CFG_VALUE_OR_DEFAULT, \
- "The number of probes to be sent for firmware roaming")
- /*
- * <ini>
- * gRoamScanHomeAwayTime - Sets the Home Away Time to firmware
- * @Min: 0
- * @Max: 300
- * @Default: 0
- *
- * Home Away Time should be at least equal to (gNeighborScanChannelMaxTime
- * + (2*RFS)), where RFS is the RF Switching time(3). It is twice RFS
- * to consider the time to go off channel and return to the home channel.
- *
- * Related: gNeighborScanChannelMaxTime
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_SCAN_HOME_AWAY_TIME CFG_INI_UINT( \
- "gRoamScanHomeAwayTime", \
- 0, \
- 300, \
- 0, \
- CFG_VALUE_OR_DEFAULT, \
- "the home away time to firmware")
- /*
- * <ini>
- * gDelayBeforeVdevStop - wait time for tx complete before vdev stop
- * @Min: 2
- * @Max: 200
- * @Default: 20
- *
- * This INI is used to set wait time for tx complete before vdev stop.
- *
- * Related: None
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_DELAY_BEFORE_VDEV_STOP CFG_INI_UINT( \
- "gDelayBeforeVdevStop", \
- 2, \
- 200, \
- 20, \
- CFG_VALUE_OR_DEFAULT, \
- "wait time for tx complete before vdev stop")
- /*
- * <ini>
- * enable_bss_load_roam_trigger - enable/disable bss load based roam trigger
- * @Min: 0
- * @Max: 1
- * @Default: 0
- *
- * This ini when enabled, allows the firmware to roam when bss load outpaces
- * the configured bss load threshold. When this ini is disabled, firmware
- * doesn't consider bss load values to trigger roam.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_ENABLE_BSS_LOAD_TRIGGERED_ROAM CFG_INI_BOOL( \
- "enable_bss_load_roam_trigger", \
- 0, \
- "enable bss load triggered roaming")
- /*
- * <ini>
- * bss_load_threshold - bss load above which the STA should trigger roaming
- * @Min: 0
- * @Max: 100
- * @Default: 70
- *
- * When the bss laod value that is sampled exceeds this threshold, firmware
- * will trigger roaming if bss load trigger is enabled.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_BSS_LOAD_THRESHOLD CFG_INI_UINT( \
- "bss_load_threshold", \
- 0, \
- 100, \
- 70, \
- CFG_VALUE_OR_DEFAULT, \
- "bss load threshold")
- /*
- * <ini>
- * bss_load_sample_time - Time in milliseconds for which the bss load values
- * obtained from the beacons is sampled.
- * @Min: 0
- * @Max: 0xffffffff
- * @Default: 10000
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_BSS_LOAD_SAMPLE_TIME CFG_INI_UINT( \
- "bss_load_sample_time", \
- 0, \
- 0xffffffff, \
- 10000, \
- CFG_VALUE_OR_DEFAULT, \
- "bss load sampling time")
- /*
- * <ini>
- * ho_delay_for_rx - Delay hand-off (in msec) by this duration to receive
- * pending rx frames from current BSS
- * @Min: 0
- * @Max: 200
- * @Default: 0
- *
- * For LFR 3.0 roaming scenario, once roam candidate is found, firmware
- * waits for minimum this much duration to receive pending rx frames from
- * current BSS before switching to new channel for handoff to new AP.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR3_ROAM_HO_DELAY_FOR_RX CFG_INI_UINT( \
- "ho_delay_for_rx", \
- 0, \
- 200, \
- 0, \
- CFG_VALUE_OR_DEFAULT, \
- "Delay Hand-off by this duration to receive")
- /*
- * <ini>
- * min_delay_btw_roam_scans - Min duration (in sec) allowed btw two
- * consecutive roam scans
- * @Min: 0
- * @Max: 60
- * @Default: 10
- *
- * Roam scan is not allowed if duration between two consecutive
- * roam scans is less than this time.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_MIN_DELAY_BTW_ROAM_SCAN CFG_INI_UINT( \
- "min_delay_btw_roam_scans", \
- 0, \
- 60, \
- 10, \
- CFG_VALUE_OR_DEFAULT, \
- "Min duration")
- /*
- * <ini>
- * roam_trigger_reason_bitmask - Contains roam_trigger_reasons
- * @Min: 0
- * @Max: 0xFFFFFFFF
- * @Default: 0x10DA
- *
- * Bitmask containing roam_trigger_reasons for which
- * min_delay_btw_roam_scans constraint should be applied.
- * Currently supported bit positions are as follows:
- * Bit 0 is reserved in the firmware.
- * WMI_ROAM_TRIGGER_REASON_PER - 1
- * WMI_ROAM_TRIGGER_REASON_BMISS - 2
- * WMI_ROAM_TRIGGER_REASON_LOW_RSSI - 3
- * WMI_ROAM_TRIGGER_REASON_HIGH_RSSI - 4
- * WMI_ROAM_TRIGGER_REASON_PERIODIC - 5
- * WMI_ROAM_TRIGGER_REASON_MAWC - 6
- * WMI_ROAM_TRIGGER_REASON_DENSE - 7
- * WMI_ROAM_TRIGGER_REASON_BACKGROUND - 8
- * WMI_ROAM_TRIGGER_REASON_FORCED - 9
- * WMI_ROAM_TRIGGER_REASON_BTM - 10
- * WMI_ROAM_TRIGGER_REASON_UNIT_TEST - 11
- * WMI_ROAM_TRIGGER_REASON_BSS_LOAD - 12
- * WMI_ROAM_TRIGGER_REASON_MAX - 13
- *
- * For Ex: 0xDA (PER, LOW_RSSI, HIGH_RSSI, MAWC, DENSE)
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_SCAN_TRIGGER_REASON_BITMASK CFG_INI_UINT( \
- "roam_trigger_reason_bitmask", \
- 0, \
- 0xFFFFFFFF, \
- 0x10DA, \
- CFG_VALUE_OR_DEFAULT, \
- "Contains roam_trigger_reasons")
- /*
- * <ini>
- * enable_ftopen - enable/disable FT open feature
- * @Min: 0
- * @Max: 1
- * @Default: 1
- *
- * This INI is used to enable/disable FT open feature
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_FT_OPEN_ENABLE CFG_INI_BOOL( \
- "enable_ftopen", \
- 1, \
- "enable/disable FT open feature")
- /*
- * <ini>
- * roam_force_rssi_trigger - To force RSSI trigger
- * irrespective of channel list type
- * @Min: 0
- * @Max: 1
- * @Default: 1
- *
- * This ini is used to set roam scan mode
- * WMI_ROAM_SCAN_MODE_RSSI_CHANGE, irrespective of whether
- * channel list type is CHANNEL_LIST_STATIC or not
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ROAM_FORCE_RSSI_TRIGGER CFG_INI_BOOL( \
- "roam_force_rssi_trigger", \
- 1, \
- "To force RSSI trigger")
- #ifdef WLAN_FEATURE_ROAM_OFFLOAD
- /*
- * <ini>
- * gRoamOffloadEnabled - enable/disable roam offload feature
- * @Min: 0
- * @Max: 1
- * @Default: 1
- *
- * This INI is used to enable/disable roam offload feature
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR3_ROAMING_OFFLOAD CFG_INI_BOOL( \
- "gRoamOffloadEnabled", \
- 1, \
- "enable roam offload")
- #define ROAM_OFFLOAD_ALL CFG(CFG_LFR3_ROAMING_OFFLOAD)
- #else
- #define ROAM_OFFLOAD_ALL
- #endif
- #ifdef FEATURE_WLAN_ESE
- /*
- * <ini>
- * EseEnabled - Enable ESE feature
- * @Min: 0
- * @Max: 1
- * @Default: 0
- *
- * This ini is used to enable/disable ESE feature
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR_ESE_FEATURE_ENABLED CFG_INI_BOOL( \
- "EseEnabled", \
- 0, \
- "Enable ESE")
- #define LFR_ESE_ALL CFG(CFG_LFR_ESE_FEATURE_ENABLED)
- #else
- #define LFR_ESE_ALL
- #endif
- #ifdef FEATURE_LFR_SUBNET_DETECTION
- /*
- * <ini>
- * gLFRSubnetDetectionEnable - Enable LFR3 subnet detection
- * @Min: 0
- * @Max: 1
- * @Default: 1
- *
- * Enable IP subnet detection during legacy fast roming version 3. Legacy fast
- * roaming could roam across IP subnets without host processors' knowledge.
- * This feature enables firmware to wake up the host processor if it
- * successfully determines change in the IP subnet. Change in IP subnet could
- * potentially cause disruption in IP connnectivity if IP address is not
- * refreshed.
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_LFR3_ENABLE_SUBNET_DETECTION CFG_INI_BOOL( \
- "gLFRSubnetDetectionEnable", \
- 1, \
- "Enable LFR3 subnet detection")
- #define LFR_SUBNET_DETECTION_ALL CFG(CFG_LFR3_ENABLE_SUBNET_DETECTION)
- #else
- #define LFR_SUBNET_DETECTION_ALL
- #endif
- /*
- * <ini>
- * roaming_scan_policy - To config roaming scan policy
- * @Min: 0
- * @Max: 1
- * @Default: 0
- *
- * This ini is used to configure roaming scan behavior from HOST
- * 0 : DBS scan
- * 1 : Non-DBS scan
- *
- * Related: None
- *
- * Supported Feature: Roaming
- *
- * Usage: External
- *
- * </ini>
- */
- #define CFG_ROAM_SCAN_SCAN_POLICY CFG_INI_BOOL( \
- "roaming_scan_policy", \
- 0, \
- "Config roam scan policy")
- #define CFG_LFR_ALL \
- CFG(CFG_LFR_MAWC_ROAM_ENABLED) \
- CFG(CFG_LFR_MAWC_ROAM_TRAFFIC_THRESHOLD) \
- CFG(CFG_LFR_MAWC_ROAM_AP_RSSI_THRESHOLD) \
- CFG(CFG_LFR_MAWC_ROAM_RSSI_HIGH_ADJUST) \
- CFG(CFG_LFR_MAWC_ROAM_RSSI_LOW_ADJUST) \
- CFG(CFG_LFR_ROAM_RSSI_ABS_THRESHOLD) \
- CFG(CFG_LFR_5G_RSSI_THRESHOLD_OFFSET) \
- CFG(CFG_LFR_ENABLE_FAST_ROAM_IN_CONCURRENCY) \
- CFG(CFG_LFR_EARLY_STOP_SCAN_ENABLE) \
- CFG(CFG_LFR_EARLY_STOP_SCAN_MIN_THRESHOLD) \
- CFG(CFG_LFR_EARLY_STOP_SCAN_MAX_THRESHOLD) \
- CFG(CFG_LFR_FIRST_SCAN_BUCKET_THRESHOLD) \
- CFG(CFG_LFR_ROAM_DENSE_TRAFFIC_THRESHOLD) \
- CFG(CFG_LFR_ROAM_DENSE_RSSI_THRE_OFFSET) \
- CFG(CFG_LFR_ROAM_DENSE_MIN_APS) \
- CFG(CFG_LFR_ROAM_BG_SCAN_BAD_RSSI_THRESHOLD) \
- CFG(CFG_LFR_ROAM_BG_SCAN_CLIENT_BITMAP) \
- CFG(CFG_LFR_ROAM_BG_SCAN_BAD_RSSI_OFFSET_2G) \
- CFG(CFG_LFR_ADAPTIVE_ROAMSCAN_DWELL_MODE) \
- CFG(CFG_LFR_PER_ROAM_ENABLE) \
- CFG(CFG_LFR_PER_ROAM_CONFIG_HIGH_RATE_TH) \
- CFG(CFG_LFR_PER_ROAM_CONFIG_LOW_RATE_TH) \
- CFG(CFG_LFR_PER_ROAM_CONFIG_RATE_TH_PERCENT) \
- CFG(CFG_LFR_PER_ROAM_REST_TIME) \
- CFG(CFG_LFR_PER_ROAM_MONITOR_TIME) \
- CFG(CFG_LFR_PER_ROAM_MIN_CANDIDATE_RSSI) \
- CFG(CFG_LFR3_ROAM_DISALLOW_DURATION) \
- CFG(CFG_LFR3_ROAM_RSSI_CHANNEL_PENALIZATION) \
- CFG(CFG_LFR3_ROAM_NUM_DISALLOWED_APS) \
- CFG(CFG_LFR_ENABLE_5G_BAND_PREF) \
- CFG(CFG_LFR_5G_RSSI_BOOST_THRESHOLD) \
- CFG(CFG_LFR_5G_RSSI_BOOST_FACTOR) \
- CFG(CFG_LFR_5G_MAX_RSSI_BOOST) \
- CFG(CFG_LFR_5G_RSSI_PENALIZE_THRESHOLD) \
- CFG(CFG_LFR_5G_RSSI_PENALIZE_FACTOR) \
- CFG(CFG_LFR_5G_MAX_RSSI_PENALIZE) \
- CFG(CFG_LFR_MAX_NUM_PRE_AUTH) \
- CFG(CFG_LFR3_ROAM_PREAUTH_RETRY_COUNT) \
- CFG(CFG_LFR3_ROAM_PREAUTH_NO_ACK_TIMEOUT) \
- CFG(CFG_LFR_FEATURE_ENABLED) \
- CFG(CFG_LFR_MAWC_FEATURE_ENABLED) \
- CFG(CFG_LFR_FAST_TRANSITION_ENABLED) \
- CFG(CFG_LFR_ROAM_RSSI_DIFF) \
- CFG(CFG_LFR_ENABLE_WES_MODE) \
- CFG(CFG_LFR_ROAM_SCAN_OFFLOAD_ENABLED) \
- CFG(CFG_LFR_NEIGHBOR_SCAN_CHANNEL_LIST) \
- CFG(CFG_LFR_NEIGHBOR_SCAN_TIMER_PERIOD) \
- CFG(CFG_LFR_NEIGHBOR_SCAN_MIN_TIMER_PERIOD) \
- CFG(CFG_LFR_NEIGHBOR_LOOKUP_RSSI_THRESHOLD) \
- CFG(CFG_LFR_OPPORTUNISTIC_SCAN_THRESHOLD_DIFF) \
- CFG(CFG_LFR_ROAM_RESCAN_RSSI_DIFF) \
- CFG(CFG_LFR_NEIGHBOR_SCAN_MIN_CHAN_TIME) \
- CFG(CFG_LFR_NEIGHBOR_SCAN_MAX_CHAN_TIME) \
- CFG(CFG_LFR_NEIGHBOR_SCAN_RESULTS_REFRESH_PERIOD) \
- CFG(CFG_LFR_EMPTY_SCAN_REFRESH_PERIOD) \
- CFG(CFG_LFR_ROAM_BMISS_FIRST_BCNT) \
- CFG(CFG_LFR_ROAM_BMISS_FINAL_BCNT) \
- CFG(CFG_LFR_ROAM_BEACON_RSSI_WEIGHT) \
- CFG(CFG_LFR_ROAMING_DFS_CHANNEL) \
- CFG(CFG_LFR_ROAM_SCAN_HI_RSSI_MAXCOUNT) \
- CFG(CFG_LFR_ROAM_SCAN_HI_RSSI_DELTA) \
- CFG(CFG_LFR_ROAM_SCAN_HI_RSSI_DELAY) \
- CFG(CFG_LFR_ROAM_SCAN_HI_RSSI_UB) \
- CFG(CFG_LFR_ROAM_PREFER_5GHZ) \
- CFG(CFG_LFR_ROAM_INTRA_BAND) \
- CFG(CFG_LFR_ROAM_SCAN_N_PROBES) \
- CFG(CFG_LFR_ROAM_SCAN_HOME_AWAY_TIME) \
- CFG(CFG_LFR_DELAY_BEFORE_VDEV_STOP) \
- CFG(CFG_ENABLE_BSS_LOAD_TRIGGERED_ROAM) \
- CFG(CFG_BSS_LOAD_THRESHOLD) \
- CFG(CFG_BSS_LOAD_SAMPLE_TIME) \
- CFG(CFG_LFR3_ROAM_HO_DELAY_FOR_RX) \
- CFG(CFG_LFR_MIN_DELAY_BTW_ROAM_SCAN) \
- CFG(CFG_LFR_ROAM_SCAN_TRIGGER_REASON_BITMASK) \
- CFG(CFG_LFR_ROAM_FT_OPEN_ENABLE) \
- CFG(CFG_LFR_ROAM_FORCE_RSSI_TRIGGER) \
- CFG(CFG_ROAM_SCAN_SCAN_POLICY) \
- ROAM_OFFLOAD_ALL \
- LFR_ESE_ALL \
- LFR_SUBNET_DETECTION_ALL
- #endif /* CFG_MLME_LFR_H__ */
|