cfg_mlme_generic.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697
  1. /*
  2. * Copyright (c) 2012-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * DOC: This file contains centralized definitions of converged configuration.
  20. */
  21. #ifndef __CFG_MLME_GENERIC_H
  22. #define __CFG_MLME_GENERIC_H
  23. #ifdef WLAN_FEATURE_11W
  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. #else
  27. #define CFG_PMF_SA_QUERY_MAX_RETRIES_TYPE CFG_UINT
  28. #define CFG_PMF_SA_QUERY_RETRY_INTERVAL_TYPE CFG_UINT
  29. #endif /*WLAN_FEATURE_11W*/
  30. /*
  31. * pmfSaQueryMaxRetries - Control PMF SA query retries for SAP
  32. * @Min: 0
  33. * @Max: 20
  34. * @Default: 5
  35. *
  36. * This ini to set the number of PMF SA query retries for SAP
  37. *
  38. * Related: None.
  39. *
  40. * Supported Feature: PMF(11W)
  41. *
  42. */
  43. #define CFG_PMF_SA_QUERY_MAX_RETRIES CFG_PMF_SA_QUERY_MAX_RETRIES_TYPE( \
  44. "pmfSaQueryMaxRetries", \
  45. 0, \
  46. 20, \
  47. 5, \
  48. CFG_VALUE_OR_DEFAULT, \
  49. "PMF SA query retries for SAP")
  50. /*
  51. * pmfSaQueryRetryInterval - Control PMF SA query retry interval
  52. * for SAP in ms
  53. * @Min: 10
  54. * @Max: 2000
  55. * @Default: 200
  56. *
  57. * This ini to set the PMF SA query retry interval for SAP in ms
  58. *
  59. * Related: None.
  60. *
  61. * Supported Feature: PMF(11W)
  62. *
  63. */
  64. #define CFG_PMF_SA_QUERY_RETRY_INTERVAL CFG_PMF_SA_QUERY_RETRY_INTERVAL_TYPE( \
  65. "pmfSaQueryRetryInterval", \
  66. 10, \
  67. 2000, \
  68. 200, \
  69. CFG_VALUE_OR_DEFAULT, \
  70. "PMF SA query retry interval for SAP")
  71. /*
  72. * <ini>
  73. * enable_rtt_mac_randomization - Enable/Disable rtt mac randomization
  74. * @Min: 0
  75. * @Max: 1
  76. * @Default: 0
  77. *
  78. * Usage: External
  79. *
  80. * </ini>
  81. */
  82. #define CFG_ENABLE_RTT_MAC_RANDOMIZATION CFG_INI_BOOL( \
  83. "enable_rtt_mac_randomization", \
  84. 0, \
  85. "Enable RTT MAC randomization")
  86. #define CFG_RTT3_ENABLE CFG_BOOL( \
  87. "rtt3_enabled", \
  88. 1, \
  89. "RTT3 enable/disable info")
  90. /*
  91. * <ini>
  92. * g11hSupportEnabled - Enable 11h support
  93. * @Min: 0
  94. * @Max: 1
  95. * @Default: 1
  96. *
  97. * This ini is used to set 11h support flag
  98. *
  99. * Related: None
  100. *
  101. * Supported Feature: STA
  102. *
  103. * Usage: Internal/External
  104. *
  105. * </ini>
  106. */
  107. #define CFG_11H_SUPPORT_ENABLED CFG_INI_BOOL( \
  108. "g11hSupportEnabled", \
  109. 1, \
  110. "11h Enable Flag")
  111. /*
  112. * <ini>
  113. * g11dSupportEnabled - Enable 11d support
  114. * @Min: 0
  115. * @Max: 1
  116. * @Default: 1
  117. *
  118. * This ini is used to set 11d support flag
  119. *
  120. * Related: None
  121. *
  122. * Supported Feature: STA
  123. *
  124. * Usage: Internal/External
  125. *
  126. * </ini>
  127. */
  128. #define CFG_11D_SUPPORT_ENABLED CFG_INI_BOOL( \
  129. "g11dSupportEnabled", \
  130. 1, \
  131. "11d Enable Flag")
  132. /*
  133. * <ini>
  134. * BandCapability - Preferred band (0: Both, 1: 2.4G only, 2: 5G only)
  135. * @Min: 0
  136. * @Max: 2
  137. * @Default: 0
  138. *
  139. * This ini is used to set default band capability
  140. * (0: Both, 1: 2.4G only, 2: 5G only)
  141. *
  142. * Related: None
  143. *
  144. * Supported Feature: STA
  145. *
  146. * Usage: Internal/External
  147. *
  148. * </ini>
  149. */
  150. #define CFG_BAND_CAPABILITY CFG_INI_UINT( \
  151. "BandCapability", \
  152. 0, \
  153. 2, \
  154. 0, \
  155. CFG_VALUE_OR_DEFAULT, \
  156. "Band Capability")
  157. /*
  158. * <ini>
  159. * gPreventLinkDown - Enable to prevent bus link from going down
  160. * @Min: 0
  161. * @Max: 1
  162. * @Default: 0
  163. *
  164. * Enable to prevent bus link from going down. Useful for platforms that do not
  165. * (yet) support link down suspend cases.
  166. *
  167. * Related: N/A
  168. *
  169. * Supported Feature: Suspend/Resume
  170. *
  171. * Usage: Internal
  172. *
  173. * </ini>
  174. */
  175. #if defined(QCA_WIFI_NAPIER_EMULATION) || defined(QCA_WIFI_QCA6290)
  176. #define CFG_PREVENT_LINK_DOWN CFG_INI_BOOL( \
  177. "gPreventLinkDown", \
  178. 1, \
  179. "Prevent Bus Link Down")
  180. #else
  181. #define CFG_PREVENT_LINK_DOWN CFG_INI_BOOL( \
  182. "gPreventLinkDown", \
  183. 0, \
  184. "Prevent Bus Link Down")
  185. #endif /* QCA_WIFI_NAPIER_EMULATION */
  186. /*
  187. * <ini>
  188. * gSelect5GHzMargin - Sets RSSI preference for 5GHz over 2.4GHz AP.
  189. * @Min: 0
  190. * @Max: 60
  191. * @Default: 0
  192. *
  193. * Prefer connecting to 5G AP even if its RSSI is lower by gSelect5GHzMargin
  194. * dBm than 2.4G AP. This feature requires the dependent cfg.ini
  195. * "gRoamPrefer5GHz" set to 1
  196. *
  197. * Related: gRoamPrefer5GHz
  198. *
  199. * Supported Feature: Roaming
  200. *
  201. * Usage: External
  202. *
  203. * </ini>
  204. */
  205. #define CFG_SELECT_5GHZ_MARGIN CFG_INI_UINT( \
  206. "gSelect5GHzMargin", \
  207. 0, \
  208. 60, \
  209. 0, \
  210. CFG_VALUE_OR_DEFAULT, \
  211. "Select 5Ghz Margin")
  212. /*
  213. * <ini>
  214. * gEnableMemDeepSleep - Sets Memory Deep Sleep on/off.
  215. * @Min: 0
  216. * @Max: 1
  217. * @Default: 1
  218. *
  219. * This option enables/disables memory deep sleep.
  220. * Related: None
  221. *
  222. * Supported Feature: General
  223. *
  224. * Usage: External
  225. *
  226. * </ini>
  227. */
  228. #define CFG_ENABLE_MEM_DEEP_SLEEP CFG_INI_BOOL( \
  229. "gEnableMemDeepSleep", \
  230. 1, \
  231. "Enable Memory Deep Sleep")
  232. /*
  233. * <ini>
  234. *
  235. * gEnableCckTxFirOverride - Enable/disable CCK TxFIR Override
  236. * @Min: 0 (disabled)
  237. * @Max: 1 (enabled)
  238. * @Default: 0 (disabled)
  239. *
  240. * When operating in an 802.11b mode, this configuration item forces a 2x2 radio
  241. * configuration into 1x for Tx and 2x for Rx (ie 1x2) for regulatory compliance
  242. * reasons.
  243. *
  244. * Related: enable2x2
  245. *
  246. * Supported Feature: 802.11b, 2x2
  247. *
  248. * Usage: Internal/External
  249. *
  250. * </ini>
  251. */
  252. #define CFG_ENABLE_CCK_TX_FIR_OVERRIDE CFG_INI_BOOL( \
  253. "gEnableCckTxFirOverride", \
  254. 0, \
  255. "Enable CCK TX FIR Override")
  256. /*
  257. * <ini>
  258. *
  259. * gEnableForceTargetAssert - Enable/disable SSR
  260. * @Min: 0 (disabled)
  261. * @Max: 1 (enabled)
  262. * @Default: 0 (disabled)
  263. *
  264. * This INI item is used to control subsystem restart(SSR) test framework
  265. * Set it's value to 1 to enable APPS trigerred SSR testing
  266. *
  267. * Related: None
  268. *
  269. * Supported Feature: General
  270. *
  271. * Usage: Internal/External
  272. *
  273. * </ini>
  274. */
  275. #define CFG_ENABLE_CRASH_INJECT CFG_INI_BOOL( \
  276. "gEnableForceTargetAssert", \
  277. 0, \
  278. "Enable Crash Inject")
  279. /*
  280. * <ini>
  281. *
  282. * gEnableLpassSupport - Enable/disable LPASS Support
  283. * @Min: 0 (disabled)
  284. * @Max: 1 (enabled)
  285. * @Default: 0 (disabled)
  286. *
  287. * Related: None
  288. *
  289. * Supported Feature: General
  290. *
  291. * Usage: Internal/External
  292. *
  293. * </ini>
  294. */
  295. #ifdef WLAN_FEATURE_LPSS
  296. #define CFG_ENABLE_LPASS_SUPPORT CFG_INI_BOOL( \
  297. "gEnableLpassSupport", \
  298. 0, \
  299. "Enable LPASS Support")
  300. #else
  301. #define CFG_ENABLE_LPASS_SUPPORT CFG_BOOL( \
  302. "gEnableLpassSupport", \
  303. 0, \
  304. "Enable LPASS Support")
  305. #endif
  306. /*
  307. * <ini>
  308. *
  309. * gEnableSelfRecovery - Enable/disable Self Recovery
  310. * @Min: 0 (disabled)
  311. * @Max: 1 (enabled)
  312. * @Default: 0 (disabled)
  313. *
  314. * Related: None
  315. *
  316. * Supported Feature: General
  317. *
  318. * Usage: Internal/External
  319. *
  320. * </ini>
  321. */
  322. #define CFG_ENABLE_SELF_RECOVERY CFG_INI_BOOL( \
  323. "gEnableSelfRecovery", \
  324. 0, \
  325. "Enable Self Recovery")
  326. /*
  327. * <ini>
  328. *
  329. * gSapDot11mc - Enable/disable SAP 802.11mc support
  330. * @Min: 0 (disabled)
  331. * @Max: 1 (enabled)
  332. * @Default: 0 (disabled)
  333. *
  334. * Related: None
  335. *
  336. * Supported Feature: General
  337. *
  338. * Usage: Internal/External
  339. *
  340. * </ini>
  341. */
  342. #define CFG_SAP_DOT11MC CFG_INI_BOOL( \
  343. "gSapDot11mc", \
  344. 0, \
  345. "SAP 802.11mc support")
  346. /*
  347. * <ini>
  348. *
  349. * gEnableFatalEvent - Enable/Disable BUG report in case of fatal event
  350. * @Min: 0 (disabled)
  351. * @Max: 1 (enabled)
  352. * @Default: 1 (enabled)
  353. *
  354. * Related: None
  355. *
  356. * Supported Feature: General
  357. *
  358. * Usage: Internal/External
  359. *
  360. * </ini>
  361. */
  362. #define CFG_ENABLE_FATAL_EVENT_TRIGGER CFG_INI_BOOL( \
  363. "gEnableFatalEvent", \
  364. 1, \
  365. "Enable Fatal Event Trigger")
  366. /*
  367. * <ini>
  368. * gSub20ChannelWidth - Control sub 20 channel width (5/10 Mhz)
  369. * @Min: 0
  370. * @Max: 2
  371. * @Default: 0
  372. *
  373. * This ini is used to set the sub 20 channel width.
  374. * gSub20ChannelWidth=0: indicates do not use Sub 20 MHz bandwidth
  375. * gSub20ChannelWidth=1: Bring up SAP/STA in 5 MHz bandwidth
  376. * gSub20ChannelWidth=2: Bring up SAP/STA in 10 MHz bandwidth
  377. *
  378. * Related: None
  379. *
  380. * Supported Feature: 5/10 Mhz channel width support
  381. *
  382. * Usage: Internal/External
  383. *
  384. * </ini>
  385. */
  386. #define CFG_SUB_20_CHANNEL_WIDTH CFG_INI_UINT( \
  387. "gSub20ChannelWidth", \
  388. 0, \
  389. 2, \
  390. 0, \
  391. CFG_VALUE_OR_DEFAULT, \
  392. "Sub 20 Channel Width")
  393. /*
  394. * <ini>
  395. * goptimize_chan_avoid_event - Optimize channel avoidance indication
  396. * coming from firmware
  397. * @Min: 0
  398. * @Max: 1
  399. * @Default: 0
  400. *
  401. * Related: None
  402. *
  403. * Supported Feature: General
  404. *
  405. * Usage: Internal/External
  406. *
  407. * </ini>
  408. */
  409. #define CFG_OPTIMIZE_CA_EVENT CFG_INI_BOOL( \
  410. "goptimize_chan_avoid_event", \
  411. 0, \
  412. "Optimize FW CA Event")
  413. /*
  414. * <ini>
  415. * fw_timeout_crash - Enable/Disable BUG ON
  416. * @Min: 0
  417. * @Max: 1
  418. * @Default: 1
  419. *
  420. * This ini is used to Trigger host crash when firmware fails to send the
  421. * response to host
  422. * fw_timeout_crash = 0 Disabled
  423. * fw_timeout_crash = 1 Trigger host crash
  424. *
  425. * Related: None
  426. *
  427. * Supported Feature: SSR
  428. *
  429. * Usage: Internal/External
  430. *
  431. * </ini>
  432. */
  433. #define CFG_CRASH_FW_TIMEOUT CFG_INI_BOOL( \
  434. "fw_timeout_crash", \
  435. 1, \
  436. "Enable FW Timeout Crash")
  437. /*
  438. * <ini>
  439. * gDroppedPktDisconnectTh - Sets dropped packet threshold in firmware
  440. * @Min: 0
  441. * @Max: 65535
  442. * @Default: 512
  443. *
  444. * This INI is the packet drop threshold will trigger disconnect from remote
  445. * peer.
  446. *
  447. * Related: None
  448. *
  449. * Supported Feature: connection
  450. *
  451. * Usage: External
  452. *
  453. * </ini>
  454. */
  455. #define CFG_DROPPED_PKT_DISCONNECT_THRESHOLD CFG_INI_UINT( \
  456. "gDroppedPktDisconnectTh", \
  457. 0, \
  458. 65535, \
  459. 512, \
  460. CFG_VALUE_OR_DEFAULT, \
  461. "Dropped Pkt Disconnect threshold")
  462. /*
  463. * <ini>
  464. * gItoRepeatCount - sets ito repeated count
  465. * @Min: 0
  466. * @Max: 5
  467. * @Default: 0
  468. *
  469. * This ini sets the ito count in FW
  470. *
  471. * Usage: External
  472. *
  473. * </ini>
  474. */
  475. #define CFG_ITO_REPEAT_COUNT CFG_INI_UINT( \
  476. "gItoRepeatCount", \
  477. 0, \
  478. 5, \
  479. 0, \
  480. CFG_VALUE_OR_DEFAULT, \
  481. "ITO Repeat Count")
  482. /*
  483. * <ini>
  484. * gEnableDeauthToDisassocMap - Enables deauth to disassoc map
  485. * @Min: 0
  486. * @Max: 1
  487. * @Default: 0
  488. *
  489. * This ini is used to set default disassoc map
  490. *
  491. * Related: None
  492. *
  493. * Supported Feature: STA
  494. *
  495. * Usage: External
  496. *
  497. * </ini>
  498. */
  499. #define CFG_ENABLE_DEAUTH_TO_DISASSOC_MAP CFG_INI_BOOL( \
  500. "gEnableDeauthToDisassocMap", \
  501. 0, \
  502. "Enables deauth to disassoc map")
  503. /*
  504. * <ini>
  505. * gEnableDebugLog - Enable/Disable the Connection related logs
  506. * @Min: 0
  507. * @Max: 0xFF
  508. * @Default: 0x0F
  509. *
  510. * This ini is used to enable/disable the connection related logs
  511. * 0x1 - Enable mgmt pkt logs (excpet probe req/rsp, beacons).
  512. * 0x2 - Enable EAPOL pkt logs.
  513. * 0x4 - Enable DHCP pkt logs.
  514. * 0x8 - Enable mgmt action frames logs.
  515. * 0x0 - Disable all the above connection related logs.
  516. * The default value of 0x0F will enable all the above logs
  517. *
  518. * Related: None
  519. *
  520. * Supported Feature: STA
  521. *
  522. * Usage: Internal/External
  523. *
  524. * </ini>
  525. */
  526. #define CFG_ENABLE_DEBUG_PACKET_LOG CFG_INI_UINT( \
  527. "gEnableDebugLog", \
  528. 0, 0xFF, 0x0F, \
  529. CFG_VALUE_OR_DEFAULT, \
  530. "Enable debug log")
  531. /*
  532. * <ini>
  533. * enable_beacon_reception_stats - Enable disable beacon reception stats
  534. * @Min: 0
  535. * @Max: 1
  536. * @Default: 0
  537. *
  538. * This ini is used to enable/disable the beacon reception stats collected per
  539. * vdev and then sent to the driver to be displayed in sysfs
  540. *
  541. * Related: None
  542. *
  543. * Supported Feature: Stats
  544. *
  545. * Usage: External
  546. *
  547. * </ini>
  548. */
  549. #define CFG_ENABLE_BEACON_RECEPTION_STATS CFG_INI_BOOL( \
  550. "enable_beacon_reception_stats", \
  551. 0, \
  552. "Enable disable beacon reception stats")
  553. /*
  554. * <ini>
  555. * gRemoveTimeStampSyncCmd - Enable/Disable to remove time stamp sync cmd
  556. * @Min: 0
  557. * @Max: 1
  558. * @Default: 0
  559. *
  560. * This ini is used to enable/disable the removal of time stamp sync cmd
  561. *
  562. * Usage: External
  563. *
  564. * </ini>
  565. */
  566. #define CFG_REMOVE_TIME_STAMP_SYNC_CMD CFG_INI_BOOL( \
  567. "gRemoveTimeStampSyncCmd", \
  568. 0, \
  569. "Enable to remove time stamp sync cmd")
  570. /*
  571. * <ini>
  572. * disable_4way_hs_offload - Enable/Disable 4 way handshake offload to firmware
  573. * @Min: 0
  574. * @Max: 1
  575. * @Default: 0
  576. *
  577. * 0 4-way HS to be handled in firmware
  578. * 1 4-way HS to be handled in supplicant
  579. *
  580. * Related: None
  581. *
  582. * Supported Feature: STA Roaming
  583. *
  584. * Usage: External
  585. *
  586. * </ini>
  587. */
  588. #define CFG_DISABLE_4WAY_HS_OFFLOAD CFG_INI_BOOL("disable_4way_hs_offload", \
  589. 0, \
  590. "Enable/disable 4 way handshake offload to firmware")
  591. /*
  592. * <ini>
  593. * mgmt_retry_max - Maximum Retries for mgmt frames
  594. * @Min: 0
  595. * @Max: 31
  596. * @Default: 15
  597. *
  598. * This ini is used to set maximum retries for mgmt frames
  599. *
  600. * Supported Feature: STA/SAP
  601. *
  602. * Usage: External
  603. *
  604. * </ini>
  605. */
  606. #define CFG_MGMT_RETRY_MAX CFG_INI_UINT( \
  607. "mgmt_retry_max", \
  608. 0, \
  609. 31, \
  610. 15, \
  611. CFG_VALUE_OR_DEFAULT, \
  612. "Max retries for mgmt frames")
  613. /*
  614. * <ini>
  615. * bmiss_skip_full_scan - To decide whether firmware does channel map based
  616. * partial scan or partial scan followed by full scan in case no candidate is
  617. * found in partial scan.
  618. * @Min: 0
  619. * @Max: 1
  620. * @Default: 0
  621. *
  622. * 0 : Based on the channel map , firmware does scan to find new AP. if AP is
  623. * not found then it does a full scan on all valid channels.
  624. * 1 : Firmware does channel map based partial scan only.
  625. *
  626. * Related: None
  627. *
  628. * Supported Feature: STA Roaming
  629. *
  630. * Usage: External
  631. *
  632. * </ini>
  633. */
  634. #define CFG_BMISS_SKIP_FULL_SCAN CFG_INI_BOOL("bmiss_skip_full_scan", \
  635. 0, \
  636. "To decide partial/partial scan followed by full scan")
  637. #define CFG_GENERIC_ALL \
  638. CFG(CFG_ENABLE_DEBUG_PACKET_LOG) \
  639. CFG(CFG_PMF_SA_QUERY_MAX_RETRIES) \
  640. CFG(CFG_PMF_SA_QUERY_RETRY_INTERVAL) \
  641. CFG(CFG_ENABLE_RTT_MAC_RANDOMIZATION) \
  642. CFG(CFG_RTT3_ENABLE) \
  643. CFG(CFG_11H_SUPPORT_ENABLED) \
  644. CFG(CFG_11D_SUPPORT_ENABLED) \
  645. CFG(CFG_BAND_CAPABILITY) \
  646. CFG(CFG_PREVENT_LINK_DOWN) \
  647. CFG(CFG_SELECT_5GHZ_MARGIN) \
  648. CFG(CFG_ENABLE_MEM_DEEP_SLEEP) \
  649. CFG(CFG_ENABLE_CCK_TX_FIR_OVERRIDE) \
  650. CFG(CFG_ENABLE_CRASH_INJECT) \
  651. CFG(CFG_ENABLE_LPASS_SUPPORT) \
  652. CFG(CFG_ENABLE_SELF_RECOVERY) \
  653. CFG(CFG_ENABLE_DEAUTH_TO_DISASSOC_MAP) \
  654. CFG(CFG_DISABLE_4WAY_HS_OFFLOAD) \
  655. CFG(CFG_SAP_DOT11MC) \
  656. CFG(CFG_ENABLE_FATAL_EVENT_TRIGGER) \
  657. CFG(CFG_SUB_20_CHANNEL_WIDTH) \
  658. CFG(CFG_OPTIMIZE_CA_EVENT) \
  659. CFG(CFG_CRASH_FW_TIMEOUT) \
  660. CFG(CFG_DROPPED_PKT_DISCONNECT_THRESHOLD) \
  661. CFG(CFG_ITO_REPEAT_COUNT) \
  662. CFG(CFG_ENABLE_BEACON_RECEPTION_STATS) \
  663. CFG(CFG_REMOVE_TIME_STAMP_SYNC_CMD) \
  664. CFG(CFG_MGMT_RETRY_MAX) \
  665. CFG(CFG_BMISS_SKIP_FULL_SCAN)
  666. #endif /* __CFG_MLME_GENERIC_H */