cfg_mlme_generic.h 22 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000
  1. /*
  2. * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
  3. * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for
  6. * any purpose with or without fee is hereby granted, provided that the
  7. * above copyright notice and this permission notice appear in all
  8. * copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  11. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  12. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  13. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  14. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  15. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  16. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  17. * PERFORMANCE OF THIS SOFTWARE.
  18. */
  19. /**
  20. * DOC: This file contains centralized definitions of converged configuration.
  21. */
  22. #ifndef __CFG_MLME_GENERIC_H
  23. #define __CFG_MLME_GENERIC_H
  24. #define CFG_PMF_SA_QUERY_MAX_RETRIES_TYPE CFG_INI_UINT
  25. #define CFG_PMF_SA_QUERY_RETRY_INTERVAL_TYPE CFG_INI_UINT
  26. /**
  27. * enum monitor_mode_concurrency - Monitor mode concurrency
  28. * @MONITOR_MODE_CONC_NO_SUPPORT: No concurrency supported with monitor mode
  29. * @MONITOR_MODE_CONC_STA_SCAN_MON: STA + monitor mode concurrency is supported
  30. */
  31. enum monitor_mode_concurrency {
  32. MONITOR_MODE_CONC_NO_SUPPORT,
  33. MONITOR_MODE_CONC_STA_SCAN_MON,
  34. MONITOR_MODE_CONC_AFTER_LAST,
  35. MONITOR_MODE_CONC_MAX = MONITOR_MODE_CONC_AFTER_LAST - 1,
  36. };
  37. /**
  38. * enum wds_mode_type: wds mode
  39. * @WLAN_WDS_MODE_DISABLED: WDS is disabled
  40. * @WLAN_WDS_MODE_REPEATER: WDS repeater mode
  41. *
  42. * This is used for 'type' values in wds_mode
  43. */
  44. enum wlan_wds_mode {
  45. WLAN_WDS_MODE_DISABLED = 0,
  46. WLAN_WDS_MODE_REPEATER = 1,
  47. /* keep this last */
  48. WLAN_WDS_MODE_LAST,
  49. WLAN_WDS_MODE_MAX = WLAN_WDS_MODE_LAST - 1,
  50. };
  51. /*
  52. * pmfSaQueryMaxRetries - Control PMF SA query retries for SAP
  53. * @Min: 0
  54. * @Max: 20
  55. * @Default: 5
  56. *
  57. * This ini to set the number of PMF SA query retries for SAP
  58. *
  59. * Related: None.
  60. *
  61. * Supported Feature: PMF(11W)
  62. *
  63. */
  64. #define CFG_PMF_SA_QUERY_MAX_RETRIES CFG_PMF_SA_QUERY_MAX_RETRIES_TYPE( \
  65. "pmfSaQueryMaxRetries", \
  66. 0, \
  67. 20, \
  68. 5, \
  69. CFG_VALUE_OR_DEFAULT, \
  70. "PMF SA query retries for SAP")
  71. /*
  72. * pmfSaQueryRetryInterval - Control PMF SA query retry interval
  73. * for SAP in ms
  74. * @Min: 10
  75. * @Max: 2000
  76. * @Default: 200
  77. *
  78. * This ini to set the PMF SA query retry interval for SAP in ms
  79. *
  80. * Related: None.
  81. *
  82. * Supported Feature: PMF(11W)
  83. *
  84. */
  85. #define CFG_PMF_SA_QUERY_RETRY_INTERVAL CFG_PMF_SA_QUERY_RETRY_INTERVAL_TYPE( \
  86. "pmfSaQueryRetryInterval", \
  87. 10, \
  88. 2000, \
  89. 200, \
  90. CFG_VALUE_OR_DEFAULT, \
  91. "PMF SA query retry interval for SAP")
  92. /*
  93. * <ini>
  94. * enable_rtt_mac_randomization - Enable/Disable rtt mac randomization
  95. * @Min: 0
  96. * @Max: 1
  97. * @Default: 1
  98. *
  99. * Usage: External
  100. *
  101. * </ini>
  102. */
  103. #define CFG_ENABLE_RTT_MAC_RANDOMIZATION CFG_INI_BOOL( \
  104. "enable_rtt_mac_randomization", \
  105. 1, \
  106. "Enable RTT MAC randomization")
  107. #define CFG_RTT3_ENABLE CFG_BOOL( \
  108. "rtt3_enabled", \
  109. 1, \
  110. "RTT3 enable/disable info")
  111. /*
  112. * <ini>
  113. * g11hSupportEnabled - Enable 11h support
  114. * @Min: 0
  115. * @Max: 1
  116. * @Default: 1
  117. *
  118. * This ini is used to set 11h support flag
  119. *
  120. * Related: None
  121. *
  122. * Supported Feature: STA
  123. *
  124. * Usage: External
  125. *
  126. * </ini>
  127. */
  128. #define CFG_11H_SUPPORT_ENABLED CFG_INI_BOOL( \
  129. "g11hSupportEnabled", \
  130. 1, \
  131. "11h Enable Flag")
  132. /*
  133. * <ini>
  134. * g11dSupportEnabled - Enable 11d support
  135. * @Min: 0
  136. * @Max: 1
  137. * @Default: 1
  138. *
  139. * This ini is used to set 11d support flag
  140. *
  141. * Related: None
  142. *
  143. * Supported Feature: STA
  144. *
  145. * Usage: External
  146. *
  147. * </ini>
  148. */
  149. #define CFG_11D_SUPPORT_ENABLED CFG_INI_BOOL( \
  150. "g11dSupportEnabled", \
  151. 1, \
  152. "11d Enable Flag")
  153. /*
  154. * rf_test_mode_enabled - Enable rf test mode support
  155. * @Min: 0
  156. * @Max: 1
  157. * @Default: 1
  158. *
  159. * This cfg is used to set rf test mode support flag
  160. *
  161. * Related: None
  162. *
  163. * Supported Feature: STA
  164. */
  165. #define CFG_RF_TEST_MODE_SUPP_ENABLED CFG_BOOL( \
  166. "rf_test_mode_enabled", \
  167. 1, \
  168. "rf test mode Enable Flag")
  169. #ifdef CONFIG_BAND_6GHZ
  170. /**
  171. * relaxed_6ghz_conn_policy - Enable 6ghz relaxed connection policy
  172. * @Min: 0
  173. * @Max: 1
  174. * @Default: 0
  175. *
  176. * This cfg is used to set 6Ghz relaxed connection policies where STA
  177. * will be allowed to operate in VLP mode and scan/connect to 6 GHz BSS
  178. * with unmatching country code.
  179. *
  180. * Related: None
  181. *
  182. * Supported Feature: STA
  183. */
  184. #define CFG_RELAXED_6GHZ_CONN_POLICY CFG_BOOL( \
  185. "relaxed_6ghz_conn_policy", \
  186. 0, \
  187. "6ghz relaxed connection policy")
  188. #define CFG_RELAX_6GHZ_CONN_POLICY CFG(CFG_RELAXED_6GHZ_CONN_POLICY)
  189. #else
  190. #define CFG_RELAX_6GHZ_CONN_POLICY
  191. #endif
  192. /*
  193. * <ini>
  194. * BandCapability - Preferred band (0: 2.4G, 5G, and 6G,
  195. * 1: 2.4G only,
  196. * 2: 5G only,
  197. * 3: Both 2.4G and 5G,
  198. * 4: 6G only,
  199. * 5: Both 2.4G and 6G,
  200. * 6: Both 5G and 6G,
  201. * 7: 2.4G, 5G, and 6G)
  202. * @Min: 0
  203. * @Max: 7
  204. * @Default: 7
  205. *
  206. * This ini is used to set default band capability
  207. * (0: Both 2.4G and 5G, 1: 2.4G only, 2: 5G only, 3: Both 2.4G and 5G,
  208. * 4: 6G only, 5: Both 2.4G and 6G, 6: Both 5G and 6G, 7: 2.4G, 5G, and 6G)
  209. *
  210. * Related: None
  211. *
  212. * Supported Feature: STA
  213. *
  214. * Usage: External
  215. *
  216. * </ini>
  217. */
  218. #define CFG_BAND_CAPABILITY CFG_INI_UINT( \
  219. "BandCapability", \
  220. 0, \
  221. 7, \
  222. 7, \
  223. CFG_VALUE_OR_DEFAULT, \
  224. "Band Capability")
  225. /*
  226. * <ini>
  227. * gPreventLinkDown - Enable to prevent bus link from going down
  228. * @Min: 0
  229. * @Max: 1
  230. * @Default: 0
  231. *
  232. * Enable to prevent bus link from going down. Useful for platforms that do not
  233. * (yet) support link down suspend cases.
  234. *
  235. * Related: N/A
  236. *
  237. * Supported Feature: Suspend/Resume
  238. *
  239. * Usage: Internal
  240. *
  241. * </ini>
  242. */
  243. #if defined(QCA_WIFI_EMULATION) || defined(QCA_WIFI_QCA6290)
  244. #define CFG_PREVENT_LINK_DOWN CFG_INI_BOOL( \
  245. "gPreventLinkDown", \
  246. 1, \
  247. "Prevent Bus Link Down")
  248. #else
  249. #define CFG_PREVENT_LINK_DOWN CFG_INI_BOOL( \
  250. "gPreventLinkDown", \
  251. 0, \
  252. "Prevent Bus Link Down")
  253. #endif /* QCA_WIFI_EMULATION */
  254. /*
  255. * <ini>
  256. * gSelect5GHzMargin - Sets RSSI preference for 5GHz over 2.4GHz AP.
  257. * @Min: 0
  258. * @Max: 60
  259. * @Default: 0
  260. *
  261. * Prefer connecting to 5G AP even if its RSSI is lower by gSelect5GHzMargin
  262. * dBm than 2.4G AP. This feature requires the dependent cfg.ini
  263. * "gRoamPrefer5GHz" set to 1
  264. *
  265. * Related: gRoamPrefer5GHz
  266. *
  267. * Supported Feature: Roaming
  268. *
  269. * Usage: External
  270. *
  271. * </ini>
  272. */
  273. #define CFG_SELECT_5GHZ_MARGIN CFG_INI_UINT( \
  274. "gSelect5GHzMargin", \
  275. 0, \
  276. 60, \
  277. 0, \
  278. CFG_VALUE_OR_DEFAULT, \
  279. "Select 5Ghz Margin")
  280. /*
  281. * <ini>
  282. * gEnableMemDeepSleep - Sets Memory Deep Sleep on/off.
  283. * @Min: 0
  284. * @Max: 1
  285. * @Default: 1
  286. *
  287. * This option enables/disables memory deep sleep.
  288. * Related: None
  289. *
  290. * Supported Feature: General
  291. *
  292. * Usage: External
  293. *
  294. * </ini>
  295. */
  296. #define CFG_ENABLE_MEM_DEEP_SLEEP CFG_INI_BOOL( \
  297. "gEnableMemDeepSleep", \
  298. 1, \
  299. "Enable Memory Deep Sleep")
  300. /*
  301. * <ini>
  302. *
  303. * gEnableCckTxFirOverride - Enable/disable CCK TxFIR Override
  304. * @Min: 0 (disabled)
  305. * @Max: 1 (enabled)
  306. * @Default: 0 (disabled)
  307. *
  308. * When operating in an 802.11b mode, this configuration item forces a 2x2 radio
  309. * configuration into 1x for Tx and 2x for Rx (ie 1x2) for regulatory compliance
  310. * reasons.
  311. *
  312. * Related: enable2x2
  313. *
  314. * Supported Feature: 802.11b, 2x2
  315. *
  316. * Usage: External
  317. *
  318. * </ini>
  319. */
  320. #define CFG_ENABLE_CCK_TX_FIR_OVERRIDE CFG_INI_BOOL( \
  321. "gEnableCckTxFirOverride", \
  322. 0, \
  323. "Enable CCK TX FIR Override")
  324. /*
  325. * <ini>
  326. *
  327. * gEnableForceTargetAssert - Enable/disable SSR
  328. * @Min: 0 (disabled)
  329. * @Max: 1 (enabled)
  330. * @Default: 0 (disabled)
  331. *
  332. * This INI item is used to control subsystem restart(SSR) test framework
  333. * Set it's value to 1 to enable APPS trigerred SSR testing
  334. *
  335. * Related: None
  336. *
  337. * Supported Feature: General
  338. *
  339. * Usage: External
  340. *
  341. * </ini>
  342. */
  343. #define CFG_ENABLE_CRASH_INJECT CFG_INI_BOOL( \
  344. "gEnableForceTargetAssert", \
  345. 0, \
  346. "Enable Crash Inject")
  347. /*
  348. * <ini>
  349. *
  350. * gEnableLpassSupport - Enable/disable LPASS Support
  351. * @Min: 0 (disabled)
  352. * @Max: 1 (enabled)
  353. * @Default: 1 (disabled) if WLAN_FEATURE_LPSS is defined, 0 otherwise
  354. *
  355. * Related: None
  356. *
  357. * Supported Feature: General
  358. *
  359. * Usage: External
  360. *
  361. * </ini>
  362. */
  363. #ifdef WLAN_FEATURE_LPSS
  364. #define CFG_ENABLE_LPASS_SUPPORT CFG_INI_BOOL( \
  365. "gEnableLpassSupport", \
  366. 1, \
  367. "Enable LPASS Support")
  368. #else
  369. #define CFG_ENABLE_LPASS_SUPPORT CFG_BOOL( \
  370. "gEnableLpassSupport", \
  371. 0, \
  372. "Enable LPASS Support")
  373. #endif
  374. /*
  375. * <ini>
  376. *
  377. * gEnableSelfRecovery - Enable/disable Self Recovery
  378. * @Min: 0 (disabled)
  379. * @Max: 1 (enabled)
  380. * @Default: 0 (disabled)
  381. *
  382. * Related: None
  383. *
  384. * Supported Feature: General
  385. *
  386. * Usage: External
  387. *
  388. * </ini>
  389. */
  390. #define CFG_ENABLE_SELF_RECOVERY CFG_INI_BOOL( \
  391. "gEnableSelfRecovery", \
  392. 0, \
  393. "Enable Self Recovery")
  394. /*
  395. * <ini>
  396. *
  397. * gSapDot11mc - Enable/disable SAP 802.11mc support
  398. * @Min: 0 (disabled)
  399. * @Max: 1 (enabled)
  400. * @Default: 0 (disabled)
  401. *
  402. * Related: None
  403. *
  404. * Supported Feature: General
  405. *
  406. * Usage: External
  407. *
  408. * </ini>
  409. */
  410. #define CFG_SAP_DOT11MC CFG_INI_BOOL( \
  411. "gSapDot11mc", \
  412. 0, \
  413. "SAP 802.11mc support")
  414. /*
  415. * <ini>
  416. *
  417. * gEnableFatalEvent - Enable/Disable BUG report in case of fatal event
  418. * @Min: 0 (disabled)
  419. * @Max: 1 (enabled)
  420. * @Default: 1 (enabled)
  421. *
  422. * Related: None
  423. *
  424. * Supported Feature: General
  425. *
  426. * Usage: External
  427. *
  428. * </ini>
  429. */
  430. #define CFG_ENABLE_FATAL_EVENT_TRIGGER CFG_INI_BOOL( \
  431. "gEnableFatalEvent", \
  432. 1, \
  433. "Enable Fatal Event Trigger")
  434. /*
  435. * <ini>
  436. * gSub20ChannelWidth - Control sub 20 channel width (5/10 Mhz)
  437. * @Min: 0
  438. * @Max: 2
  439. * @Default: 0
  440. *
  441. * This ini is used to set the sub 20 channel width.
  442. * gSub20ChannelWidth=0: indicates do not use Sub 20 MHz bandwidth
  443. * gSub20ChannelWidth=1: Bring up SAP/STA in 5 MHz bandwidth
  444. * gSub20ChannelWidth=2: Bring up SAP/STA in 10 MHz bandwidth
  445. *
  446. * Related: None
  447. *
  448. * Supported Feature: 5/10 Mhz channel width support
  449. *
  450. * Usage: External
  451. *
  452. * </ini>
  453. */
  454. #define CFG_SUB_20_CHANNEL_WIDTH CFG_INI_UINT( \
  455. "gSub20ChannelWidth", \
  456. 0, \
  457. 2, \
  458. 0, \
  459. CFG_VALUE_OR_DEFAULT, \
  460. "Sub 20 Channel Width")
  461. /*
  462. * <ini>
  463. * goptimize_chan_avoid_event - Optimize channel avoidance indication
  464. * coming from firmware
  465. * @Min: 0
  466. * @Max: 1
  467. * @Default: 0
  468. *
  469. * Related: None
  470. *
  471. * Supported Feature: General
  472. *
  473. * Usage: External
  474. *
  475. * </ini>
  476. */
  477. #define CFG_OPTIMIZE_CA_EVENT CFG_INI_BOOL( \
  478. "goptimize_chan_avoid_event", \
  479. 0, \
  480. "Optimize FW CA Event")
  481. /*
  482. * <ini>
  483. * fw_timeout_crash - Enable/Disable BUG ON
  484. * @Min: 0
  485. * @Max: 1
  486. * @Default: 1
  487. *
  488. * This ini is used to Trigger host crash when firmware fails to send the
  489. * response to host
  490. * fw_timeout_crash = 0 Disabled
  491. * fw_timeout_crash = 1 Trigger host crash
  492. *
  493. * Related: None
  494. *
  495. * Supported Feature: SSR
  496. *
  497. * Usage: External
  498. *
  499. * </ini>
  500. */
  501. #define CFG_CRASH_FW_TIMEOUT CFG_INI_BOOL( \
  502. "fw_timeout_crash", \
  503. 1, \
  504. "Enable FW Timeout Crash")
  505. /*
  506. * <ini>
  507. * gDroppedPktDisconnectTh - Sets dropped packet threshold in firmware
  508. * @Min: 0
  509. * @Max: 65535
  510. * @Default: 512
  511. *
  512. * This INI is the packet drop threshold will trigger disconnect from remote
  513. * peer.
  514. *
  515. * Related: None
  516. *
  517. * Supported Feature: connection
  518. *
  519. * Usage: External
  520. *
  521. * </ini>
  522. */
  523. #define CFG_DROPPED_PKT_DISCONNECT_THRESHOLD CFG_INI_UINT( \
  524. "gDroppedPktDisconnectTh", \
  525. 0, \
  526. 65535, \
  527. 512, \
  528. CFG_VALUE_OR_DEFAULT, \
  529. "Dropped Pkt Disconnect threshold")
  530. /*
  531. * <ini>
  532. * gItoRepeatCount - sets ito repeated count
  533. * @Min: 0
  534. * @Max: 5
  535. * @Default: 0
  536. *
  537. * This ini sets the ito count in FW
  538. *
  539. * Usage: External
  540. *
  541. * </ini>
  542. */
  543. #define CFG_ITO_REPEAT_COUNT CFG_INI_UINT( \
  544. "gItoRepeatCount", \
  545. 0, \
  546. 5, \
  547. 0, \
  548. CFG_VALUE_OR_DEFAULT, \
  549. "ITO Repeat Count")
  550. /*
  551. * <ini>
  552. * gEnableDeauthToDisassocMap - Enables deauth to disassoc map
  553. * @Min: 0
  554. * @Max: 1
  555. * @Default: 0
  556. *
  557. * This ini is used to set default disassoc map
  558. *
  559. * Related: None
  560. *
  561. * Supported Feature: STA
  562. *
  563. * Usage: External
  564. *
  565. * </ini>
  566. */
  567. #define CFG_ENABLE_DEAUTH_TO_DISASSOC_MAP CFG_INI_BOOL( \
  568. "gEnableDeauthToDisassocMap", \
  569. 0, \
  570. "Enables deauth to disassoc map")
  571. /*
  572. * <ini>
  573. * gEnableDebugLog - Enable/Disable the Connection related logs
  574. * @Min: 0
  575. * @Max: 0xFF
  576. * @Default: 0x0F
  577. *
  578. * This ini is used to enable/disable the connection related logs
  579. * 0x1 - Enable mgmt pkt logs (excpet probe req/rsp, beacons).
  580. * 0x2 - Enable EAPOL pkt logs.
  581. * 0x4 - Enable DHCP pkt logs.
  582. * 0x8 - Enable mgmt action frames logs.
  583. * 0x0 - Disable all the above connection related logs.
  584. * The default value of 0x0F will enable all the above logs
  585. *
  586. * Related: None
  587. *
  588. * Supported Feature: STA
  589. *
  590. * Usage: External
  591. *
  592. * </ini>
  593. */
  594. #define CFG_ENABLE_DEBUG_PACKET_LOG CFG_INI_UINT( \
  595. "gEnableDebugLog", \
  596. 0, 0xFF, 0x0F, \
  597. CFG_VALUE_OR_DEFAULT, \
  598. "Enable debug log")
  599. /*
  600. * <ini>
  601. * enable_beacon_reception_stats - Enable disable beacon reception stats
  602. * @Min: 0
  603. * @Max: 1
  604. * @Default: 0
  605. *
  606. * This ini is used to enable/disable the beacon reception stats collected per
  607. * vdev and then sent to the driver to be displayed in sysfs
  608. *
  609. * Related: None
  610. *
  611. * Supported Feature: Stats
  612. *
  613. * Usage: External
  614. *
  615. * </ini>
  616. */
  617. #define CFG_ENABLE_BEACON_RECEPTION_STATS CFG_INI_BOOL( \
  618. "enable_beacon_reception_stats", \
  619. 0, \
  620. "Enable disable beacon reception stats")
  621. /*
  622. * <ini>
  623. * disable_4way_hs_offload - Enable/Disable 4 way handshake offload to firmware
  624. * @Min: 0
  625. * @Max: 0x2
  626. * @Default: 0x2
  627. *
  628. * 0x0 - 4-way HS to be handled in firmware for the AKMs except for SAE and
  629. * OWE roaming the 4way HS is handled in supplicant by default
  630. * 0x1 - 4-way HS to be handled in supplicant
  631. * 0x2 - 4-way HS to be handled in firmware for the AKMs including the SAE
  632. * Roam except for OWE roaming the 4way HS is handled in supplicant
  633. *
  634. * Based on the requirement the Max value can be increased per AKM.
  635. *
  636. * Related: None
  637. *
  638. * Supported Feature: STA Roaming
  639. *
  640. * Usage: External
  641. *
  642. * </ini>
  643. */
  644. #define CFG_DISABLE_4WAY_HS_OFFLOAD CFG_INI_UINT( \
  645. "disable_4way_hs_offload", \
  646. 0, \
  647. 0x2, \
  648. 0x2, \
  649. CFG_VALUE_OR_DEFAULT, \
  650. "Enable/disable 4 way handshake offload to firmware")
  651. /*
  652. * <ini>
  653. * mgmt_retry_max - Maximum Retries for mgmt frames
  654. * @Min: 0
  655. * @Max: 31
  656. * @Default: 15
  657. *
  658. * This ini is used to set maximum retries for mgmt frames
  659. *
  660. * Supported Feature: STA/SAP
  661. *
  662. * Usage: External
  663. *
  664. * </ini>
  665. */
  666. #define CFG_MGMT_RETRY_MAX CFG_INI_UINT( \
  667. "mgmt_retry_max", \
  668. 0, \
  669. 31, \
  670. 15, \
  671. CFG_VALUE_OR_DEFAULT, \
  672. "Max retries for mgmt frames")
  673. /*
  674. * <ini>
  675. * bmiss_skip_full_scan - To decide whether firmware does channel map based
  676. * partial scan or partial scan followed by full scan in case no candidate is
  677. * found in partial scan.
  678. * @Min: 0
  679. * @Max: 1
  680. * @Default: 0
  681. *
  682. * 0 : Based on the channel map , firmware does scan to find new AP. if AP is
  683. * not found then it does a full scan on all valid channels.
  684. * 1 : Firmware does channel map based partial scan only.
  685. *
  686. * Related: None
  687. *
  688. * Supported Feature: STA Roaming
  689. *
  690. * Usage: External
  691. *
  692. * </ini>
  693. */
  694. #define CFG_BMISS_SKIP_FULL_SCAN CFG_INI_BOOL("bmiss_skip_full_scan", \
  695. 0, \
  696. "To decide partial/partial scan followed by full scan")
  697. /*
  698. * <ini>
  699. * gEnableRingBuffer - Enable Ring Buffer for Bug Report
  700. * @Min: 0
  701. * @Max: 1
  702. * @Default: 1
  703. *
  704. * This ini is used to enable Ring Buffer
  705. *
  706. * Related: None
  707. *
  708. * Supported Feature: STA/SAP
  709. *
  710. * Usage: External
  711. *
  712. * </ini>
  713. */
  714. #define CFG_ENABLE_RING_BUFFER CFG_INI_BOOL( \
  715. "gEnableRingBuffer", \
  716. 1, \
  717. "To Enable Ring Buffer")
  718. /*
  719. * <ini>
  720. * dfs_chan_ageout_time - Set DFS Channel ageout time(in seconds)
  721. * @Min: 0
  722. * @Max: 8
  723. * Default: 0
  724. *
  725. * Ageout time is the time upto which DFS channel information such as beacon
  726. * found is remembered. So that Firmware performs Active scan instead of the
  727. * Passive to reduce the Dwell time.
  728. * This ini Parameter used to set ageout timer value from host to FW.
  729. * If not set, Firmware will disable ageout time.
  730. *
  731. * Supported Feature: STA scan in DFS channels
  732. *
  733. * Usage: External
  734. *
  735. * </ini>
  736. */
  737. #define CFG_DFS_CHAN_AGEOUT_TIME CFG_INI_UINT("dfs_chan_ageout_time", \
  738. 0, 8, 0, CFG_VALUE_OR_DEFAULT, \
  739. "Set DFS Channel ageout time from host to firmware")
  740. /*
  741. * <ini>
  742. * sae_connect_retries - Bit mask to retry Auth and full connection on assoc
  743. * timeout to same AP and auth retries during roaming
  744. * @Min: 0x0
  745. * @Max: 0x53
  746. * @Default: 0x52
  747. *
  748. * This ini is used to set max auth retry in auth phase of roaming and initial
  749. * connection and max connection retry in case of assoc timeout. MAX Auth
  750. * retries are capped to 3, connection retries are capped to 2 and roam Auth
  751. * retry is capped to 1.
  752. * Default is 0x52 i.e. 1 roam auth retry, 2 auth retry and 2 full connection
  753. * retry.
  754. *
  755. * Bits Retry Type
  756. * BIT[0:2] AUTH retries
  757. * BIT[3:5] Connection reties
  758. * BIT[6:8] ROAM AUTH retries
  759. *
  760. * Some Possible values are as below
  761. * 0 - NO auth/roam Auth retry and NO full connection retry after
  762. * assoc timeout
  763. * 0x49 - 1 auth/roam auth retry and 1 full connection retry
  764. * 0x52 - 1 roam auth retry, 2 auth retry and 2 full connection retry
  765. * 0x1 /0x2 - 0 roam auth retry, 1 or 2 auth retry respectively and NO full
  766. * connection retry
  767. * 0x8 /0x10 - 0 roam auth retry,NO auth retry and 1 or 2 full connection retry
  768. * respectively.
  769. * 0x4A - 1 roam auth retry,2 auth retry and 1 full connection retry
  770. * 0x51 - 1 auth/roam auth retry and 2 full connection retry
  771. *
  772. * Related: None
  773. *
  774. * Supported Feature: STA SAE
  775. *
  776. * Usage: External
  777. *
  778. * </ini>
  779. */
  780. #define CFG_SAE_CONNECION_RETRIES CFG_INI_UINT("sae_connect_retries", \
  781. 0, 0x53, 0x52, CFG_VALUE_OR_DEFAULT, \
  782. "Bit mask to retry Auth and full connection on assoc timeout to same AP for SAE connection")
  783. /*
  784. * <ini>
  785. *
  786. * wls_6ghz_capable - WiFi Location Service(WLS) is 6Ghz capable
  787. * @Min: 0 (WLS 6Ghz non-capable)
  788. * @Max: 1 (WLS 6Ghz capable)
  789. * @Default: 0 (WLS 6Ghz non-capable)
  790. *
  791. * Related: None
  792. *
  793. * Supported Feature: General
  794. *
  795. * Usage: Internal
  796. *
  797. * </ini>
  798. */
  799. #define CFG_WLS_6GHZ_CAPABLE CFG_INI_BOOL( \
  800. "wls_6ghz_capable", \
  801. 0, \
  802. "WiFi Location Service(WLS) is 6Ghz capable or not")
  803. /*
  804. * <ini>
  805. *
  806. * monitor_mode_conc - Monitor mode concurrency supported
  807. * @Min: 0
  808. * @Max: 1
  809. * @Default: 0
  810. *
  811. * Related: None
  812. *
  813. * Monitor mode concurrency supported
  814. * 0 - No concurrency supported
  815. * 1 - Allow STA scan + Monitor mode concurrency
  816. *
  817. * Supported Feature: General
  818. *
  819. * Usage: External
  820. *
  821. * </ini>
  822. */
  823. #define CFG_MONITOR_MODE_CONCURRENCY CFG_INI_UINT( \
  824. "monitor_mode_concurrency", \
  825. MONITOR_MODE_CONC_NO_SUPPORT, \
  826. MONITOR_MODE_CONC_MAX, \
  827. MONITOR_MODE_CONC_NO_SUPPORT, \
  828. CFG_VALUE_OR_DEFAULT, \
  829. "Monitor mode concurrency supported")
  830. #ifdef FEATURE_WDS
  831. /*
  832. * <ini>
  833. *
  834. * wds_mode - wds mode supported
  835. * @Min: 0
  836. * @Max: 1
  837. * @Default: 0
  838. *
  839. * Related: None
  840. *
  841. * wds mode supported
  842. * 0 - wds mode disabled
  843. * 1 - wds repeater mode
  844. *
  845. * Supported Feature: General
  846. *
  847. * Usage: External
  848. *
  849. * </ini>
  850. */
  851. #define CFG_WDS_MODE CFG_INI_UINT( \
  852. "wds_mode", \
  853. WLAN_WDS_MODE_DISABLED, \
  854. WLAN_WDS_MODE_MAX, \
  855. WLAN_WDS_MODE_DISABLED, \
  856. CFG_VALUE_OR_DEFAULT, \
  857. "wds mode supported")
  858. #define CFG_WDS_MODE_ALL CFG(CFG_WDS_MODE)
  859. #else
  860. #define CFG_WDS_MODE_ALL
  861. #endif
  862. /*
  863. * <ini>
  864. * tx_retry_multiplier - TX retry multiplier
  865. * @Min: 0
  866. * @Max: 500
  867. * @Default: 0
  868. *
  869. * This ini is used to indicate percentage to max retry limit to fw
  870. * which can further be used by fw to multiply counter by
  871. * tx_retry_multiplier percent.
  872. *
  873. * Supported Feature: STA/SAP
  874. *
  875. * Usage: External
  876. *
  877. * </ini>
  878. */
  879. #define CFG_TX_RETRY_MULTIPLIER CFG_INI_UINT( \
  880. "tx_retry_multiplier", \
  881. 0, \
  882. 500, \
  883. 0, \
  884. CFG_VALUE_OR_DEFAULT, \
  885. "percentage of max retry limit")
  886. /*
  887. * <ini>
  888. * mgmt_frame_hw_tx_retry_count - Set hw tx retry count for mgmt action
  889. * frame
  890. * @Min: N/A
  891. * @Max: N/A
  892. * @Default: N/A
  893. *
  894. * Set mgmt action frame hw tx retry count, string format looks like below:
  895. * frame_hw_tx_retry_count="<frame type>,<retry count>,..."
  896. * frame type is enum value of mlme_cfg_frame_type.
  897. * Retry count max value is 127.
  898. * For example:
  899. * frame_hw_tx_retry_count="0,64,2,32"
  900. * The above input string means:
  901. * For p2p go negotiation request fame, hw retry count 64
  902. * For p2p provision discovery request, hw retry count 32
  903. *
  904. * Related: None.
  905. *
  906. * Supported Feature: STA/P2P
  907. *
  908. * Usage: External
  909. *
  910. * </ini>
  911. */
  912. #define MGMT_FRM_HW_TX_RETRY_COUNT_STR_LEN (64)
  913. #define CFG_MGMT_FRAME_HW_TX_RETRY_COUNT CFG_INI_STRING( \
  914. "mgmt_frame_hw_tx_retry_count", \
  915. 0, \
  916. MGMT_FRM_HW_TX_RETRY_COUNT_STR_LEN, \
  917. "", \
  918. "Set mgmt action frame hw tx retry count")
  919. #define CFG_GENERIC_ALL \
  920. CFG(CFG_ENABLE_DEBUG_PACKET_LOG) \
  921. CFG(CFG_PMF_SA_QUERY_MAX_RETRIES) \
  922. CFG(CFG_PMF_SA_QUERY_RETRY_INTERVAL) \
  923. CFG(CFG_ENABLE_RTT_MAC_RANDOMIZATION) \
  924. CFG(CFG_RTT3_ENABLE) \
  925. CFG(CFG_11H_SUPPORT_ENABLED) \
  926. CFG(CFG_11D_SUPPORT_ENABLED) \
  927. CFG(CFG_BAND_CAPABILITY) \
  928. CFG(CFG_PREVENT_LINK_DOWN) \
  929. CFG(CFG_SELECT_5GHZ_MARGIN) \
  930. CFG(CFG_ENABLE_MEM_DEEP_SLEEP) \
  931. CFG(CFG_ENABLE_CCK_TX_FIR_OVERRIDE) \
  932. CFG(CFG_ENABLE_CRASH_INJECT) \
  933. CFG(CFG_ENABLE_LPASS_SUPPORT) \
  934. CFG(CFG_ENABLE_SELF_RECOVERY) \
  935. CFG(CFG_ENABLE_DEAUTH_TO_DISASSOC_MAP) \
  936. CFG(CFG_DISABLE_4WAY_HS_OFFLOAD) \
  937. CFG(CFG_SAP_DOT11MC) \
  938. CFG(CFG_ENABLE_FATAL_EVENT_TRIGGER) \
  939. CFG(CFG_SUB_20_CHANNEL_WIDTH) \
  940. CFG(CFG_OPTIMIZE_CA_EVENT) \
  941. CFG(CFG_CRASH_FW_TIMEOUT) \
  942. CFG(CFG_DROPPED_PKT_DISCONNECT_THRESHOLD) \
  943. CFG(CFG_ITO_REPEAT_COUNT) \
  944. CFG(CFG_ENABLE_BEACON_RECEPTION_STATS) \
  945. CFG(CFG_MGMT_RETRY_MAX) \
  946. CFG(CFG_BMISS_SKIP_FULL_SCAN) \
  947. CFG(CFG_ENABLE_RING_BUFFER) \
  948. CFG(CFG_DFS_CHAN_AGEOUT_TIME) \
  949. CFG(CFG_SAE_CONNECION_RETRIES) \
  950. CFG(CFG_WLS_6GHZ_CAPABLE) \
  951. CFG(CFG_MONITOR_MODE_CONCURRENCY) \
  952. CFG(CFG_RF_TEST_MODE_SUPP_ENABLED) \
  953. CFG_WDS_MODE_ALL \
  954. CFG(CFG_TX_RETRY_MULTIPLIER) \
  955. CFG(CFG_MGMT_FRAME_HW_TX_RETRY_COUNT) \
  956. CFG_RELAX_6GHZ_CONN_POLICY
  957. #endif /* __CFG_MLME_GENERIC_H */