Kconfig 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944
  1. comment "Qualcomm Atheros CLD WLAN module"
  2. config QCA_CLD_WLAN
  3. tristate "Qualcomm Atheros CLD WLAN module"
  4. default n
  5. help
  6. Add support for the Qualcomm Atheros CLD WLAN module
  7. if QCA_CLD_WLAN != n
  8. config WLAN_FEATURE_NO_STA_SAP_CONCURRENCY
  9. bool "Enable WLAN_FEATURE_NO_STA_SAP_CONCURRENCY"
  10. default n
  11. config WLAN_FEATURE_NO_STA_NAN_CONCURRENCY
  12. bool "Enable WLAN_FEATURE_NO_STA_NAN_CONCURRENCY"
  13. default n
  14. config WLAN_FEATURE_NO_SAP_NAN_CONCURRENCY
  15. bool "Enable WLAN_FEATURE_NO_SAP_NAN_CONCURRENCY"
  16. default n
  17. config WLAN_FEATURE_NO_P2P_CONCURRENCY
  18. bool "Enable WLAN_FEATURE_NO_P2P_CONCURRENCY"
  19. default n
  20. config 160MHZ_SUPPORT
  21. bool "Enable 160MHZ_SUPPORT"
  22. default n
  23. config 64BIT_PADDR
  24. bool "Enable 37-bit physical/bus addresses"
  25. depends on HELIUMPLUS
  26. default n
  27. config 6G_SCAN_CHAN_SORT_ALGO
  28. bool "Enable 6G_SCAN_CHAN_SORT_ALGO"
  29. default n
  30. config ADAPTIVE_11R
  31. bool "Enable ADAPTIVE_11R"
  32. default n
  33. config AGEIE_ON_SCAN_RESULTS
  34. bool "Enable AGEIE_ON_SCAN_RESULTS"
  35. default n
  36. config ALLOW_PKT_DROPPING
  37. bool "Enable ALLOW_PKT_DROPPING"
  38. default n
  39. config ANI_LEVEL_REQUEST
  40. bool "Enable ANI_LEVEL_REQUEST"
  41. default n
  42. config AR900B
  43. bool "Enable AR900B"
  44. default n
  45. config ATH_11AC_TXCOMPACT
  46. bool "Enable ATH_11AC_TXCOMPACT"
  47. default n
  48. config ATH_BUS_PM
  49. bool "Enable ATH_BUS_PM"
  50. default n
  51. config ATH_DIAG_EXT_DIRECT
  52. bool "Enable ATH_DIAG_EXT_DIRECT"
  53. default n
  54. config ATH_PERF_PWR_OFFLOAD
  55. bool "Enable ATH_PERF_PWR_OFFLOAD"
  56. default n
  57. config BAND_6GHZ
  58. bool "Enable BAND_6GHZ"
  59. default n
  60. config BERYLLIUM
  61. bool "Enable BERYLLIUM"
  62. default n
  63. config BUILD_TAG
  64. bool "Embed tags and timestamp in wlan version"
  65. default n
  66. config BUILD_TIMESTAMP
  67. bool "Embed timestamp in wlan version"
  68. default n
  69. config BUS_AUTO_SUSPEND
  70. bool "enable CONFIG_BUS_AUTO_SUSPEND"
  71. default n
  72. config CE_DISABLE_SRNG_TIMER_IRQ
  73. bool "Enable CE_DISABLE_SRNG_TIMER_IRQ"
  74. default n
  75. config CFG_BMISS_OFFLOAD_MAX_VDEV
  76. int "Enable CFG_BMISS_OFFLOAD_MAX_VDEV"
  77. config CFG_MAX_STA_VDEVS
  78. int "Enable CFG_MAX_STA_VDEVS"
  79. config CHECKSUM_OFFLOAD
  80. bool "Enable CHECKSUM_OFFLOAD"
  81. default n
  82. config CHIP_VERSION
  83. int "Enable CHIP_VERSION"
  84. config CNSS_GENL_MODULE
  85. bool "Enable CNSS_GENL_MODULE"
  86. default n
  87. config CNSS_KIWI
  88. bool "Enable CNSS_KIWI"
  89. default n
  90. config CNSS_KIWI_V2
  91. bool "Enable CNSS_KIWI_V2"
  92. default n
  93. config CNSS_PEACH
  94. bool "Enable CNSS_PEACH"
  95. default n
  96. config CNSS_UTILS_MODULE
  97. bool "Enable CNSS_UTILS_MODULE"
  98. default n
  99. config CNSS_UTILS
  100. bool "Enable CNSS_UTILS"
  101. default n
  102. config CONNECTIVITY_PKTLOG
  103. bool "Enable CONNECTIVITY_PKTLOG"
  104. default n
  105. config CONVERGED_P2P_ENABLE
  106. bool "Enable CONVERGED_P2P_ENABLE"
  107. default n
  108. config CP_STATS
  109. bool "Enable CP_STATS"
  110. default n
  111. config QCA_TARGET_IF_MLME
  112. bool "Enable TARGET_IF MLME"
  113. default n
  114. config DCS
  115. bool "Enable DCS"
  116. default n
  117. config DDP_MON_RSSI_IN_DBM
  118. bool "Enable DDP_MON_RSSI_IN_DBM"
  119. default n
  120. config DEBUG_RX_RING_BUFFER
  121. bool "Enable DEBUG_RX_RING_BUFFER"
  122. default n
  123. config DELIVERY_TO_STACK_STATUS_CHECK
  124. bool "Enable DELIVERY_TO_STACK_STATUS_CHECK"
  125. default n
  126. config DESC_DUP_DETECT_DEBUG
  127. bool "Enable DESC_DUP_DETECT_DEBUG"
  128. default n
  129. config DESC_TIMESTAMP_DEBUG_INFO
  130. bool "Enable DESC_TIMESTAMP_DEBUG_INFO"
  131. default n
  132. config DEVICE_FORCE_WAKE_ENABLE
  133. bool "Enable DEVICE_FORCE_WAKE_ENABLE"
  134. default n
  135. config DIRECT_BUF_RX_ENABLE
  136. bool "Enable DIRECT_BUF_RX_ENABLE"
  137. default n
  138. config DISABLE_CHANNEL_LIST
  139. bool "Enable DISABLE_CHANNEL_LIST"
  140. default n
  141. config DISABLE_EAPOL_INTRABSS_FWD
  142. bool "Enable DISABLE_EAPOL_INTRABSS_FWD"
  143. default n
  144. config DISABLE_STATUS_RING_TIMER_WAR
  145. bool "Enable DISABLE_STATUS_RING_TIMER_WAR"
  146. default n
  147. config DP_BE_WAR
  148. bool "Enable DP_BE_WAR"
  149. default n
  150. config DP_CON_MON_MSI_ENABLED
  151. bool "Enable DP_CON_MON_MSI_ENABLED"
  152. default n
  153. config DP_CON_MON_MSI_SKIP_SET
  154. bool "Enable DP_CON_MON_MSI_SKIP_SET"
  155. default n
  156. config DP_FEATURE_HW_COOKIE_CONVERSION
  157. bool "Enable DP_FEATURE_HW_COOKIE_CONVERSION"
  158. default n
  159. config DP_HW_COOKIE_CONVERT_EXCEPTION
  160. bool "Enable DP_HW_COOKIE_CONVERT_EXCEPTION"
  161. default n
  162. config DP_HW_TX_DELAY_STATS_ENABLE
  163. bool "Enable DP_HW_TX_DELAY_STATS_ENABLE"
  164. default n
  165. config DP_INTR_POLL_BASED
  166. bool "Enable DP_INTR_POLL_BASED"
  167. default n
  168. config DP_LFR
  169. bool "Enable DP_LFR"
  170. default n
  171. config DP_MEM_PRE_ALLOC
  172. bool "Enable DP_MEM_PRE_ALLOC"
  173. default n
  174. config DP_PKT_ADD_TIMESTAMP
  175. bool "Enable DP_PKT_ADD_TIMESTAMP"
  176. default n
  177. config DP_PKT_STATS_PER_LMAC
  178. bool "Enable DP_PKT_STATS_PER_LMAC"
  179. default n
  180. config DP_RX_BUFFER_POOL_ALLOC_THRES
  181. int "Enable DP_RX_BUFFER_POOL_ALLOC_THRES"
  182. config DP_RX_BUFFER_POOL_SIZE
  183. int "Enable DP_RX_BUFFER_POOL_SIZE"
  184. config DP_RX_REFILL_BUFF_POOL_SIZE
  185. int "Enable DP_RX_REFILL_BUFF_POOL_SIZE"
  186. config DP_RX_REFILL_THRD_THRESHOLD
  187. int "Enable DP_RX_REFILL_THRD_THRESHOLD"
  188. config DP_RX_DROP_RAW_FRM
  189. bool "Enable DP_RX_DROP_RAW_FRM"
  190. default n
  191. config DP_RX_PKT_NO_PEER_DELIVER
  192. bool "Enable DP_RX_PKT_NO_PEER_DELIVER"
  193. default n
  194. config DP_RX_REFILL_CPU_PERF_AFFINE_MASK
  195. bool "Enable DP_RX_REFILL_CPU_PERF_AFFINE_MASK"
  196. default n
  197. config DP_RX_SPECIAL_FRAME_NEED
  198. bool "Enable DP_RX_SPECIAL_FRAME_NEED"
  199. default n
  200. config DP_TRACE
  201. bool "Enable DP_TRACE"
  202. default n
  203. config DP_TRAFFIC_END_INDICATION
  204. bool "Enable DP_TRAFFIC_END_INDICATION"
  205. default n
  206. config DP_TX_COMP_RING_DESC_SANITY_CHECK
  207. bool "Enable DP_TX_COMP_RING_DESC_SANITY_CHECK"
  208. default n
  209. config DP_TX_HW_DESC_HISTORY
  210. bool "Enable DP_TX_HW_DESC_HISTORY"
  211. default n
  212. config DP_TXRX_SOC_ATTACH
  213. bool "Enable DP_TXRX_SOC_ATTACH"
  214. default n
  215. config DP_USE_REDUCED_PEER_ID_FIELD_WIDTH
  216. bool "Enable DP_USE_REDUCED_PEER_ID_FIELD_WIDTH"
  217. default n
  218. config DP_WAR_INVALID_FIRST_MSDU_FLAG
  219. bool "Enable DP_WAR_INVALID_FIRST_MSDU_FLAG"
  220. default n
  221. config DSC_DEBUG
  222. bool "Enable DSC_DEBUG"
  223. default n
  224. config DSC_TEST
  225. bool "Enable DSC_TEST"
  226. default n
  227. config DUP_RX_DESC_WAR
  228. bool "Enable DUP_RX_DESC_WAR"
  229. default n
  230. config DYNAMIC_RX_AGGREGATION
  231. bool "Enable DYNAMIC_RX_AGGREGATION"
  232. default n
  233. config EMULATION_2_0
  234. bool "Enable EMULATION_2_0"
  235. default n
  236. config ENABLE_CE4_COMP_DISABLE_HTT_HTC_MISC_LIST
  237. bool "Enable ENABLE_CE4_COMP_DISABLE_HTT_HTC_MISC_LIST"
  238. default n
  239. config ENABLE_HAL_REG_WR_HISTORY
  240. bool "Enable ENABLE_HAL_REG_WR_HISTORY"
  241. default n
  242. config ENABLE_HAL_SOC_STATS
  243. bool "Enable ENABLE_HAL_SOC_STATS"
  244. default n
  245. config ENABLE_MTRACE_LOG
  246. bool "Enable ENABLE_MTRACE_LOG"
  247. default n
  248. config ENABLE_QDF_PTR_HASH_DEBUG
  249. bool "Enable ENABLE_QDF_PTR_HASH_DEBUG"
  250. default n
  251. config ENABLE_SMMU_S1_TRANSLATION
  252. bool "Enable ENABLE_SMMU_S1_TRANSLATION"
  253. default n
  254. config FEATURE_ACTIVE_TOS
  255. bool "Enable FEATURE_ACTIVE_TOS"
  256. default n
  257. config FEATURE_ALIGN_STATS_FROM_DP
  258. bool "Enable FEATURE_ALIGN_STATS_FROM_DP"
  259. default n
  260. config FEATURE_BECN_STATS
  261. bool "Enable FEATURE_BECN_STATS"
  262. default n
  263. config FEATURE_BSS_TRANSITION
  264. bool "Enable FEATURE_BSS_TRANSITION"
  265. default n
  266. config FEATURE_BUS_BANDWIDTH_MGR
  267. bool "Enable FEATURE_BUS_BANDWIDTH_MGR"
  268. default n
  269. config FEATURE_CLUB_LL_STATS_AND_GET_STATION
  270. bool "Enable FEATURE_CLUB_LL_STATS_AND_GET_STATION"
  271. default n
  272. config FEATURE_COEX
  273. bool "Enable FEATURE_COEX"
  274. default n
  275. config FEATURE_CONCURRENCY_MATRIX
  276. bool "Enable FEATURE_CONCURRENCY_MATRIX"
  277. default n
  278. config FEATURE_DELAYED_PEER_OBJ_DESTROY
  279. bool "Enable FEATURE_DELAYED_PEER_OBJ_DESTROY"
  280. default n
  281. config FEATURE_DENYLIST_MGR
  282. bool "Enable FEATURE_DENYLIST_MGR"
  283. default n
  284. config FEATURE_EPPING
  285. bool "Enable FEATURE_EPPING"
  286. default n
  287. config FEATURE_FORCE_WAKE
  288. bool "Enable FEATURE_FORCE_WAKE"
  289. default n
  290. config FEATURE_FW_LOG_PARSING
  291. bool "Enable FEATURE_FW_LOG_PARSING"
  292. default n
  293. config FEATURE_GPIO_CFG
  294. bool "Enable FEATURE_GPIO_CFG"
  295. default n
  296. config FEATURE_HAL_DELAYED_REG_WRITE
  297. bool "Enable FEATURE_HAL_DELAYED_REG_WRITE"
  298. default n
  299. config FEATURE_HAL_RECORD_SUSPEND_WRITE
  300. bool "Enable FEATURE_HAL_RECORD_SUSPEND_WRITE"
  301. default n
  302. config FEATURE_HIF_LATENCY_PROFILE_ENABLE
  303. bool "Enable FEATURE_HIF_LATENCY_PROFILE_ENABLE"
  304. default n
  305. config FEATURE_HTC_CREDIT_HISTORY
  306. bool "Enable FEATURE_HTC_CREDIT_HISTORY"
  307. default n
  308. config FEATURE_INTEROP_ISSUES_AP
  309. bool "Enable FEATURE_INTEROP_ISSUES_AP"
  310. default n
  311. config FEATURE_MEMDUMP_ENABLE
  312. bool "Enable FEATURE_MEMDUMP_ENABLE"
  313. default n
  314. config FEATURE_MONITOR_MODE_SUPPORT
  315. bool "Enable FEATURE_MONITOR_MODE_SUPPORT"
  316. default n
  317. config FEATURE_MSCS
  318. bool "Enable FEATURE_MSCS"
  319. default n
  320. config FEATURE_NO_DBS_INTRABAND_MCC_SUPPORT
  321. bool "Enable FEATURE_NO_DBS_INTRABAND_MCC_SUPPORT"
  322. default n
  323. config FEATURE_OEM_DATA
  324. bool "Enable FEATURE_OEM_DATA"
  325. default n
  326. config FEATURE_OTA_TEST
  327. bool "Enable FEATURE_OTA_TEST"
  328. default n
  329. config FEATURE_P2P_LISTEN_OFFLOAD
  330. bool "Enable FEATURE_P2P_LISTEN_OFFLOAD"
  331. default n
  332. config FEATURE_RADAR_HISTORY
  333. bool "Enable FEATURE_RADAR_HISTORY"
  334. default n
  335. config FEATURE_ROAM_DEBUG
  336. bool "Enable FEATURE_ROAM_DEBUG"
  337. default n
  338. config FEATURE_RSSI_MONITOR
  339. bool "Enable FEATURE_RSSI_MONITOR"
  340. default n
  341. config FEATURE_RX_LINKSPEED_ROAM_TRIGGER
  342. bool "Enable FEATURE_RX_LINKSPEED_ROAM_TRIGGER"
  343. default n
  344. config FEATURE_SAP_COND_CHAN_SWITCH
  345. bool "Enable FEATURE_SAP_COND_CHAN_SWITCH"
  346. default n
  347. config FEATURE_SAR_LIMITS
  348. bool "Enable FEATURE_SAR_LIMITS"
  349. default n
  350. config FEATURE_SET
  351. bool "Enable FEATURE_SET"
  352. default n
  353. config FEATURE_STATION_INFO
  354. bool "Enable FEATURE_STATION_INFO"
  355. default n
  356. config FEATURE_STATS_EXT
  357. bool "Enable FEATURE_STATS_EXT"
  358. default n
  359. config FEATURE_STATS_EXT_V2
  360. bool "Enable FEATURE_STATS_EXT_V2"
  361. default n
  362. config FEATURE_TSO
  363. bool "Enable TCP Segmentation Offload"
  364. default n
  365. config FEATURE_TSO_DEBUG
  366. bool "Enable TCP Segmentation Offload with debug"
  367. depends on FEATURE_TSO
  368. default n
  369. config FEATURE_TSO_STATS
  370. bool "Enable FEATURE_TSO_STATS"
  371. default n
  372. config FEATURE_TX_POWER
  373. bool "Enable FEATURE_TX_POWER"
  374. default n
  375. config FEATURE_UNIT_TEST_SUSPEND
  376. bool "Enable FEATURE_UNIT_TEST_SUSPEND"
  377. default n
  378. config FEATURE_VDEV_OPS_WAKELOCK
  379. bool "Enable FEATURE_VDEV_OPS_WAKELOCK"
  380. default n
  381. config FEATURE_WLAN_D0WOW
  382. bool "Enable FEATURE_WLAN_D0WOW"
  383. default n
  384. config FEATURE_WLAN_LPHB
  385. bool "Enable FEATURE_WLAN_LPHB"
  386. default n
  387. config FEATURE_WLAN_PRE_CAC
  388. bool "Enable FEATURE_WLAN_PRE_CAC"
  389. default n
  390. config FEATURE_WLAN_RA_FILTERING
  391. bool "Enable FEATURE_WLAN_RA_FILTERING"
  392. default n
  393. config FEATURE_WLAN_SCAN_PNO
  394. bool "Enable FEATURE_WLAN_SCAN_PNO"
  395. default n
  396. config WALT_GET_CPU_TAKEN_SUPPORT
  397. bool "enable WALT_GET_CPU_TAKEN_SUPPORT"
  398. default n
  399. config FEATURE_WLAN_WAPI
  400. bool "Enable FEATURE_WLAN_WAPI"
  401. default n
  402. config FEATURE_WLM_STATS
  403. bool "Enable FEATURE_WLM_STATS"
  404. default n
  405. config FIX_TXDMA_LIMITATION
  406. bool "Enable FIX_TXDMA_LIMITATION"
  407. default n
  408. config FOURTH_CONNECTION
  409. bool "Enable FOURTH_CONNECTION"
  410. default n
  411. config FW_THERMAL_THROTTLE
  412. bool "Enable FW_THERMAL_THROTTLE"
  413. default n
  414. config GET_DRIVER_MODE
  415. bool "Enable GET_DRIVER_MODE"
  416. default n
  417. config GTK_OFFLOAD
  418. bool "Enable GTK_OFFLOAD"
  419. default n
  420. config HAL_DEBUG
  421. bool "Enable HAL_DEBUG"
  422. default n
  423. config HAL_DISABLE_NON_BA_2K_JUMP_ERROR
  424. bool "Enable HAL_DISABLE_NON_BA_2K_JUMP_ERROR"
  425. default n
  426. config HANDLE_BC_EAP_TX_FRM
  427. bool "Enable HANDLE_BC_EAP_TX_FRM"
  428. default n
  429. config HANDLE_RX_REROUTE_ERR
  430. bool "Enable HANDLE_RX_REROUTE_ERR"
  431. default n
  432. config HASTINGS_BT_WAR
  433. bool "Enable HASTINGS_BT_WAR"
  434. default n
  435. config HDD_INIT_WITH_RTNL_LOCK
  436. bool "Enable HDD_INIT_WITH_RTNL_LOCK"
  437. default n
  438. config HELIUMPLUS
  439. bool "Enable Beeliner based descriptor structures for Helium"
  440. default n
  441. config HIF_CE_DEBUG_DATA_BUF
  442. bool "Enable HIF_CE_DEBUG_DATA_BUF"
  443. default n
  444. config HIF_CPU_PERF_AFFINE_MASK
  445. bool "Enable HIF_CPU_PERF_AFFINE_MASK"
  446. default n
  447. config HIF_DEBUG
  448. bool "Enable HIF_DEBUG"
  449. default n
  450. config HIF_PCI
  451. bool "Enable HIF_PCI"
  452. default n
  453. config HIF_REG_WINDOW_SUPPORT
  454. bool "Enable HIF_REG_WINDOW_SUPPORT"
  455. default n
  456. config HOST_OPCLASS
  457. bool "Enable HOST_OPCLASS"
  458. default n
  459. config HTT_PADDR64
  460. bool "Enable HTT_PADDR64"
  461. default n
  462. config ICMP_DISABLE_PS
  463. bool "Enable ICMP packet disable powersave feature"
  464. default n
  465. config IPA_OFFLOAD
  466. bool "Enable IPA_OFFLOAD"
  467. default n
  468. config IPA_OPT_WIFI_DP
  469. bool "Enable IPA_OPT_WIFI_DP"
  470. default n
  471. config IPA_SET_RESET_TX_DB_PA
  472. bool "Enable IPA_SET_RESET_TX_DB_PA"
  473. default n
  474. config KIWI_HEADERS_DEF
  475. bool "Enable KIWI_HEADERS_DEF"
  476. default n
  477. config LEAK_DETECTION
  478. bool "Enable LEAK_DETECTION"
  479. default n
  480. config LFR_SUBNET_DETECTION
  481. bool "Enable LFR Subnet Change Detection"
  482. default n
  483. config LINUX_QCMBR
  484. bool "Enable LINUX_QCMBR"
  485. default n
  486. config LITTLE_ENDIAN
  487. bool "Enable LITTLE_ENDIAN"
  488. default n
  489. config LL_DP_SUPPORT
  490. bool "Enable LL_DP_SUPPORT"
  491. default n
  492. config LOCK_STATS_ON
  493. bool "Enable LOCK_STATS_ON"
  494. default n
  495. config LTE_COEX
  496. bool "Enable LTE_COEX"
  497. default n
  498. config MARK_ICMP_REQ_TO_FW
  499. bool "Enable MARK_ICMP_REQ_TO_FW"
  500. default n
  501. config MAX_ALLOC_PAGE_SIZE
  502. bool "Enable MAX_ALLOC_PAGE_SIZE"
  503. default n
  504. config ENABLE_MAX_LOGS_PER_SEC
  505. bool "Enable ENABLE_MAX_LOGS_PER_SEC"
  506. default n
  507. config MAX_LOGS_PER_SEC
  508. int "Enable MAX_LOGS_PER_SEC"
  509. config MCC_TO_SCC_SWITCH
  510. bool "Enable MCC to SCC Switch Logic"
  511. default n
  512. config MON_ENABLE_DROP_FOR_MAC
  513. bool "Enable MON_ENABLE_DROP_FOR_MAC"
  514. default n
  515. config MON_ENABLE_DROP_FOR_NON_MON_PMAC
  516. bool "Enable MON_ENABLE_DROP_FOR_NON_MON_PMAC"
  517. default n
  518. config MORE_TX_DESC
  519. bool "Enable MORE_TX_DESC"
  520. default n
  521. config MULTI_CLIENT_LL_SUPPORT
  522. bool "Enable MULTI_CLIENT_LL_SUPPORT"
  523. default n
  524. config NAN_CONVERGENCE
  525. bool "Enable NAN_CONVERGENCE feature"
  526. default n
  527. config NO_RX_PKT_HDR_TLV
  528. bool "Enable NO_RX_PKT_HDR_TLV"
  529. default n
  530. config OBSS_PD
  531. bool "Enable OBSS_PD"
  532. default n
  533. config OFDM_SCRAMBLER_SEED
  534. bool "Enable OFDM_SCRAMBLER_SEED"
  535. default n
  536. config PCI_LINK_STATUS_SANITY
  537. bool "Enable PCI_LINK_STATUS_SANITY"
  538. default n
  539. config PCIE_GEN_SWITCH
  540. bool "Enable PCIE_GEN_SWITCH"
  541. default n
  542. config PEER_PROTECTED_ACCESS
  543. bool "Enable PEER_PROTECTED_ACCESS"
  544. default n
  545. config PKTLOG_HAS_SPECIFIC_DATA
  546. bool "Enable PKTLOG_HAS_SPECIFIC_DATA"
  547. default n
  548. config PLD_PCIE_CNSS_FLAG
  549. bool "Enable PLD_PCIE_CNSS_FLAG"
  550. default n
  551. config PLD_PCIE_INIT_FLAG
  552. bool "Enable PLD_PCIE_INIT_FLAG"
  553. default n
  554. config POWER_MANAGEMENT_OFFLOAD
  555. bool "Enable POWER_MANAGEMENT_OFFLOAD"
  556. default n
  557. config PRIMA_WLAN_OKC
  558. bool "Enable the Prima WLAN Opportunistic Key Caching feature"
  559. default n
  560. config PTT_SOCK_SVC_ENABLE
  561. bool "Enable PTT_SOCK_SVC_ENABLE"
  562. default n
  563. config QCA_DFS_BW_PUNCTURE
  564. bool "Enable QCA_DFS_BW_PUNCTURE"
  565. default n
  566. config QCA_DMA_PADDR_CHECK
  567. bool "Enable dma memory addr check"
  568. config QCA_GET_TSF_VIA_REG
  569. bool "Enable QCA_GET_TSF_VIA_REG"
  570. default n
  571. config QCA_MONITOR_PKT_SUPPORT
  572. bool "Enable QCA_MONITOR_PKT_SUPPORT"
  573. default n
  574. config QCA_SUPPORT_TX_MIN_RATES_FOR_SPECIAL_FRAMES
  575. bool "Enable QCA_SUPPORT_TX_MIN_RATES_FOR_SPECIAL_FRAMES"
  576. default n
  577. config QCA_SUPPORT_TX_THROTTLE
  578. bool "Enable QCA_SUPPORT_TX_THROTTLE"
  579. default n
  580. config QCA_WIFI_FTM
  581. bool "Enable QCA_WIFI_FTM"
  582. default n
  583. config QCA_WIFI_FTM_NL80211
  584. bool "Enable QCA_WIFI_FTM_NL80211"
  585. depends on NL80211_TESTMODE
  586. default n
  587. config QCA_WIFI_KIWI
  588. bool "Enable QCA_WIFI_KIWI"
  589. default n
  590. config QCA_WIFI_MONITOR_MODE_NO_MSDU_START_TLV_SUPPORT
  591. bool "Enable QCA_WIFI_MONITOR_MODE_NO_MSDU_START_TLV_SUPPORT"
  592. default n
  593. config QCA_WIFI_QCA8074
  594. bool "Enable QCA_WIFI_QCA8074"
  595. default n
  596. config QCA_WIFI_QCA8074_VP
  597. bool "Enable QCA_WIFI_QCA8074_VP"
  598. default n
  599. config QCACLD_FEATURE_APF
  600. bool "Enable QCACLD_FEATURE_APF"
  601. default n
  602. config QCACLD_FEATURE_FW_STATE
  603. bool "Enable QCACLD_FEATURE_FW_STATE"
  604. default n
  605. config QCACLD_FEATURE_GAP_LL_PS_MODE
  606. bool "Enable QCACLD_FEATURE_GAP_LL_PS_MODE"
  607. default n
  608. config QCACLD_FEATURE_GREEN_AP
  609. bool "Enable Green AP feature"
  610. default n
  611. config QCACLD_FEATURE_NAN
  612. bool "Enable NAN feature"
  613. default n
  614. config QCACLD_RX_DESC_MULTI_PAGE_ALLOC
  615. bool "Enable QCACLD_RX_DESC_MULTI_PAGE_ALLOC"
  616. default n
  617. config QCACLD_WLAN_CONNECTIVITY_DIAG_EVENT
  618. bool "Enable QCACLD_WLAN_CONNECTIVITY_DIAG_EVENT"
  619. default n
  620. config QCACLD_WLAN_LFR2
  621. bool "Enable the WLAN Legacy Fast Roaming feature Version 2"
  622. default n
  623. config QCACLD_WLAN_LFR3
  624. bool "Enable the WLAN Legacy Fast Roaming feature Version 3"
  625. default n
  626. config QCOM_ESE
  627. bool "Enable QCOM_ESE"
  628. default n
  629. config QCOM_LTE_COEX
  630. bool "Enable QCOM LTE Coex feature"
  631. default n
  632. config QCOM_TDLS
  633. bool "Enable TDLS feature"
  634. default n
  635. config QCOM_VOWIFI_11R
  636. bool "Enable Fast Transition (11r) feature"
  637. default n
  638. config QDF_NBUF_HISTORY_SIZE
  639. int "Enable QDF_NBUF_HISTORY_SIZE"
  640. config QDF_TEST
  641. bool "Enable QDF_TEST"
  642. default n
  643. config QMI_SUPPORT
  644. bool "Enable QMI_SUPPORT"
  645. default n
  646. config REG_CLIENT
  647. bool "Enable REG_CLIENT"
  648. default n
  649. config REGISTER_OP_DEBUG
  650. bool "Enable REGISTER_OP_DEBUG"
  651. default n
  652. config REMOVE_PKT_LOG
  653. bool "Enable REMOVE_PKT_LOG"
  654. default n
  655. config REO_DESC_DEFER_FREE
  656. bool "Enable REO_DESC_DEFER_FREE"
  657. default n
  658. config REO_QDESC_HISTORY
  659. bool "Enable REO_QDESC_HISTORY"
  660. default n
  661. config ROME_IF
  662. string "Enable ROME_IF"
  663. default pci
  664. config RPS
  665. bool "enable CONFIG_QCA_CONFIG_RPS"
  666. default n
  667. config RX_DEFRAG_DO_NOT_REINJECT
  668. bool "Enable RX_DEFRAG_DO_NOT_REINJECT"
  669. default n
  670. config RX_DESC_DEBUG_CHECK
  671. bool "Enable RX_DESC_DEBUG_CHECK"
  672. default n
  673. config RX_DESC_SANITY_WAR
  674. bool "Enable RX_DESC_SANITY_WAR"
  675. default n
  676. config RX_FISA
  677. bool "Enable RX_FISA"
  678. default n
  679. config RX_HASH_DEBUG
  680. bool "Enable RX_HASH_DEBUG"
  681. default n
  682. config RX_OL
  683. bool "Enable RX_OL"
  684. default n
  685. config RXDMA_ERR_PKT_DROP
  686. bool "Enable RXDMA_ERR_PKT_DROP"
  687. default n
  688. config SAE_SINGLE_PMK
  689. bool "Enable SAE_SINGLE_PMK"
  690. default n
  691. config SAP_AVOID_ACS_FREQ_LIST
  692. bool "Enable SAP_AVOID_ACS_FREQ_LIST"
  693. default n
  694. config SAP_DHCP_FW_IND
  695. bool "Enable SAP_DHCP_FW_IND"
  696. default n
  697. config SAR_SAFETY_FEATURE
  698. bool "Enable SAR_SAFETY_FEATURE"
  699. default n
  700. config SCALE_INCLUDES
  701. bool "Enable SCALE_INCLUDES"
  702. default n
  703. config ENABLE_SCHED_HISTORY_SIZE
  704. bool "Enable ENABLE_SCHED_HISTORY_SIZE"
  705. default n
  706. config SCHED_HISTORY_SIZE
  707. int "Enable SCHED_HISTORY_SIZE"
  708. config SERIALIZE_QUEUE_SETUP
  709. bool "Enable SERIALIZE_QUEUE_SETUP"
  710. default n
  711. config SHADOW_V3
  712. bool "Enable SHADOW_V3"
  713. default n
  714. config SMMU_S1_UNMAP
  715. bool "Enable SMMU_S1_UNMAP"
  716. default n
  717. config SMP
  718. bool "enable CONFIG_SMP"
  719. default n
  720. config SOFTAP_CHANNEL_RANGE
  721. bool "Enable SOFTAP_CHANNEL_RANGE"
  722. default n
  723. config SUPPORT_11AX
  724. bool "Enable SUPPORT_11AX"
  725. default n
  726. config SYSTEM_PM_CHECK
  727. bool "Enable SYSTEM_PM_CHECK"
  728. default n
  729. config TALLOC_DEBUG
  730. bool "Enable TALLOC_DEBUG"
  731. default n
  732. config TARGET_11D_SCAN
  733. bool "Enable TARGET_11D_SCAN"
  734. default n
  735. config TARGET_RAMDUMP_AFTER_KERNEL_PANIC
  736. bool "Enable TARGET_RAMDUMP_AFTER_KERNEL_PANIC"
  737. default n
  738. config THERMAL_STATS_SUPPORT
  739. bool "Enable THERMAL_STATS_SUPPORT"
  740. default n
  741. config TRACE_RECORD_FEATURE
  742. bool "Enable TRACE_RECORD_FEATURE"
  743. default n
  744. config TSO_DEBUG_LOG_ENABLE
  745. bool "Enable TSO_DEBUG_LOG_ENABLE"
  746. default n
  747. config TX_ADDR_INDEX_SEARCH
  748. bool "Enable TX_ADDR_INDEX_SEARCH"
  749. default n
  750. config TX_MULTI_TCL
  751. bool "Enable TX_MULTI_TCL"
  752. default n
  753. config TX_MULTIQ_PER_AC
  754. bool "Enable TX_MULTIQ_PER_AC"
  755. default n
  756. config TX_PER_PDEV_DESC_POOL
  757. bool "Enable TX_PER_PDEV_DESC_POOL"
  758. default n
  759. config TX_TID_OVERRIDE
  760. bool "Enable TX_TID_OVERRIDE"
  761. default n
  762. config UNIT_TEST
  763. bool "Enable UNIT_TEST"
  764. default n
  765. config VERBOSE_DEBUG
  766. bool "Enable VERBOSE_DEBUG"
  767. default n
  768. config WAPI_BIG_ENDIAN
  769. bool "Enable WAPI_BIG_ENDIAN"
  770. default n
  771. config WCNSS_MEM_PRE_ALLOC_MODULE
  772. bool "Enable WCNSS_MEM_PRE_ALLOC_MODULE"
  773. default n
  774. config WCNSS_MEM_PRE_ALLOC
  775. bool "Enable WCNSS_MEM_PRE_ALLOC"
  776. default n
  777. config WDI_EVENT_ENABLE
  778. bool "Enable WDI_EVENT_ENABLE"
  779. default n
  780. config WDI3_IPA_OVER_GSI
  781. bool "Enable WDI3_IPA_OVER_GSI"
  782. default n
  783. config WIFI_MONITOR_SUPPORT
  784. bool "Enable WIFI_MONITOR_SUPPORT"
  785. default n
  786. config WIFI_POS_CONVERGED
  787. bool "Enable WIFI_POS_CONVERGED"
  788. default n
  789. config WIFI_POS_PASN
  790. bool "Enable WIFI_POS_PASN"
  791. default n
  792. config WINDOW_REG_PLD_LOCK_ENABLE
  793. bool "Enable WINDOW_REG_PLD_LOCK_ENABLE"
  794. default n
  795. config WLAN_BCN_RECV_FEATURE
  796. bool "Enable WLAN_BCN_RECV_FEATURE"
  797. default n
  798. config WLAN_BMISS
  799. bool "Enable WLAN_BMISS"
  800. default n
  801. config WLAN_CE_INTERRUPT_THRESHOLD_CONFIG
  802. bool "Enable WLAN_CE_INTERRUPT_THRESHOLD_CONFIG"
  803. default n
  804. config WLAN_CFR_ENABLE
  805. bool "Enable WLAN_CFR_ENABLE"
  806. default n
  807. config WLAN_CLD_DEV_PM_QOS
  808. bool "Enable WLAN_CLD_DEV_PM_QOS"
  809. default n
  810. config WLAN_CLD_PM_QOS
  811. bool "Enable WLAN_CLD_PM_QOS"
  812. default n
  813. config WLAN_CONV_SPECTRAL_ENABLE
  814. bool "Enable WLAN_CONV_SPECTRAL_ENABLE"
  815. default n
  816. config WLAN_CUSTOM_DSCP_UP_MAP
  817. bool "Enable WLAN_CUSTOM_DSCP_UP_MAP"
  818. default n
  819. config WLAN_DEBUG_CRASH_INJECT
  820. bool "Enable WLAN_DEBUG_CRASH_INJECT"
  821. default n
  822. config WLAN_DEBUG_LINK_VOTE
  823. bool "Enable WLAN_DEBUG_LINK_VOTE"
  824. default n
  825. config WLAN_DEBUG_VERSION
  826. bool "Enable WLAN_DEBUG_VERSION"
  827. default n
  828. config WLAN_DEBUGFS
  829. bool "Enable WLAN_DEBUGFS"
  830. depends on DEBUG_FS
  831. default n
  832. config WLAN_DFS_MASTER_ENABLE
  833. bool "Enable WLAN_DFS_MASTER_ENABLE"
  834. default n
  835. config WLAN_DFS_STATIC_MEM_ALLOC
  836. bool "Enable WLAN_DFS_STATIC_MEM_ALLOC"
  837. default n
  838. config WLAN_DIAG_VERSION
  839. bool "Enable WLAN_DIAG_VERSION"
  840. default n
  841. config WLAN_DISABLE_EXPORT_SYMBOL
  842. bool "Enable WLAN_DISABLE_EXPORT_SYMBOL"
  843. default n
  844. config WLAN_MULTI_CHIP_SUPPORT
  845. bool "Enable WLAN_MULTI_CHIP_SUPPORT"
  846. select WLAN_DISABLE_EXPORT_SYMBOL
  847. default n
  848. config WLAN_DL_MODES
  849. bool "Enable WLAN_DL_MODES"
  850. default n
  851. config WLAN_DP_DISABLE_TCL_CMD_CRED_SRNG
  852. bool "Enable WLAN_DP_DISABLE_TCL_CMD_CRED_SRNG"
  853. default n
  854. config WLAN_DP_DISABLE_TCL_STATUS_SRNG
  855. bool "Enable WLAN_DP_DISABLE_TCL_STATUS_SRNG"
  856. default n
  857. config WLAN_DP_PENDING_MEM_FLUSH
  858. bool "Enable WLAN_DP_PENDING_MEM_FLUSH"
  859. default n
  860. config WLAN_DP_PER_RING_TYPE_CONFIG
  861. bool "Enable WLAN_DP_PER_RING_TYPE_CONFIG"
  862. default n
  863. config WLAN_DP_SRNG_USAGE_WM_TRACKING
  864. bool "Enable WLAN_DP_SRNG_USAGE_WM_TRACKING"
  865. default n
  866. config WLAN_DYNAMIC_CVM
  867. bool "Enable WLAN_DYNAMIC_CVM"
  868. default n
  869. config WLAN_ENABLE_SOCIAL_CHANNELS_5G_ONLY
  870. bool "Enable WLAN_ENABLE_SOCIAL_CHANNELS_5G_ONLY"
  871. default n
  872. config WLAN_ENH_CFR_ENABLE
  873. bool "Enable WLAN_ENH_CFR_ENABLE"
  874. default n
  875. config WLAN_FASTPATH
  876. bool "Enable fastpath for datapackets"
  877. default n
  878. config WLAN_FEATURE_11AX
  879. bool "Enable 11AX(High Efficiency) feature"
  880. default n
  881. config WLAN_FEATURE_11BE
  882. bool "Enable WLAN_FEATURE_11BE"
  883. default n
  884. config WLAN_FEATURE_11BE_MLO
  885. bool "Enable WLAN_FEATURE_11BE_MLO"
  886. default n
  887. config WLAN_HDD_MULTI_VDEV_SINGLE_NDEV
  888. bool "Enable WLAN_HDD_MULTI_VDEV_SINGLE_NDEV"
  889. default n
  890. config WLAN_FEATURE_11W
  891. bool "Enable the WLAN 802.11w Protected Management Frames feature"
  892. default n
  893. config WLAN_FEATURE_ACTION_OUI
  894. bool "Enable WLAN_FEATURE_ACTION_OUI"
  895. default n
  896. config WLAN_FEATURE_BIG_DATA_STATS
  897. bool "Enable WLAN_FEATURE_BIG_DATA_STATS"
  898. default n
  899. config WLAN_FEATURE_CAL_FAILURE_TRIGGER
  900. bool "Enable WLAN_FEATURE_CAL_FAILURE_TRIGGER"
  901. default n
  902. config WLAN_FEATURE_COAP
  903. bool "Enable WLAN_FEATURE_COAP"
  904. default n
  905. config WLAN_FEATURE_COEX_DBAM
  906. bool "Enable WLAN_FEATURE_COEX_DBAM"
  907. default n
  908. config WLAN_FEATURE_DFS_OFFLOAD
  909. bool "Enable dfs offload feature"
  910. default n
  911. config WLAN_FEATURE_DISA
  912. bool "Enable DISA certification feature"
  913. default n
  914. config WLAN_FEATURE_DP_BUS_BANDWIDTH
  915. bool "Enable WLAN_FEATURE_DP_BUS_BANDWIDTH"
  916. default n
  917. config WLAN_FEATURE_DP_CFG_EVENT_HISTORY
  918. bool "Enable WLAN_FEATURE_DP_CFG_EVENT_HISTORY"
  919. default n
  920. config WLAN_FEATURE_DP_EVENT_HISTORY
  921. bool "Enable WLAN_FEATURE_DP_EVENT_HISTORY"
  922. default n
  923. config WLAN_FEATURE_DP_MON_STATUS_RING_HISTORY
  924. bool "Enable WLAN_FEATURE_DP_MON_STATUS_RING_HISTORY"
  925. default n
  926. config WLAN_FEATURE_DP_RX_RING_HISTORY
  927. bool "Enable WLAN_FEATURE_DP_RX_RING_HISTORY"
  928. default n
  929. config WLAN_FEATURE_DP_RX_THREADS
  930. bool "Enable WLAN_FEATURE_DP_RX_THREADS"
  931. default n
  932. config WLAN_FEATURE_DP_TX_DESC_HISTORY
  933. bool "Enable WLAN_FEATURE_DP_TX_DESC_HISTORY"
  934. default n
  935. config WLAN_FEATURE_DYNAMIC_MAC_ADDR_UPDATE
  936. bool "Enable WLAN_FEATURE_DYNAMIC_MAC_ADDR_UPDATE"
  937. default n
  938. config WLAN_FEATURE_ELNA
  939. bool "Enable WLAN_FEATURE_ELNA"
  940. default n
  941. config WLAN_FEATURE_FILS
  942. bool "Enable FILS feature"
  943. default n
  944. config WLAN_FEATURE_FIPS
  945. bool "Enable FIPS certification feature"
  946. default n
  947. config WLAN_FEATURE_LL_LT_SAP
  948. bool "Enable Low latency low throughput SAP feature"
  949. default n
  950. config WLAN_FEATURE_GET_USABLE_CHAN_LIST
  951. bool "Enable WLAN_FEATURE_GET_USABLE_CHAN_LIST"
  952. default n
  953. config WLAN_FEATURE_ICMP_OFFLOAD
  954. bool "Enable WLAN_FEATURE_ICMP_OFFLOAD"
  955. default n
  956. config WLAN_FEATURE_IGMP_OFFLOAD
  957. bool "Enable WLAN_FEATURE_IGMP_OFFLOAD"
  958. default n
  959. config WLAN_FEATURE_LINK_LAYER_STATS
  960. bool "Enable WLAN_FEATURE_LINK_LAYER_STATS"
  961. default n
  962. config WLAN_FEATURE_LPSS
  963. bool "Enable the WLAN LPSS feature"
  964. default n
  965. config WLAN_FEATURE_LRO_CTX_IN_CB
  966. bool "Enable WLAN_FEATURE_LRO_CTX_IN_CB"
  967. default n
  968. config WLAN_FEATURE_MBSSID
  969. bool "Enable WLAN_FEATURE_MBSSID"
  970. default n
  971. config WLAN_FEATURE_MCC_QUOTA
  972. bool "Enable WLAN_FEATURE_MCC_QUOTA"
  973. default n
  974. config WLAN_FEATURE_MDNS_OFFLOAD
  975. bool "Enable WLAN_FEATURE_MDNS_OFFLOAD"
  976. default n
  977. config WLAN_FEATURE_MEDIUM_ASSESS
  978. bool "Enable WLAN_FEATURE_MEDIUM_ASSESS"
  979. default n
  980. config WLAN_FEATURE_MIB_STATS
  981. bool "Enable WLAN_FEATURE_MIB_STATS"
  982. depends on WLAN_DEBUGFS
  983. default n
  984. config WLAN_FEATURE_NEAR_FULL_IRQ
  985. bool "Enable WLAN_FEATURE_NEAR_FULL_IRQ"
  986. default n
  987. config WLAN_FEATURE_P2P_DEBUG
  988. bool "Enable WLAN_FEATURE_P2P_DEBUG"
  989. default n
  990. config WLAN_FEATURE_P2P_P2P_STA
  991. bool "Enable WLAN_FEATURE_P2P_P2P_STA"
  992. default n
  993. config WLAN_FEATURE_PACKET_FILTERING
  994. bool "Enable WLAN_FEATURE_PACKET_FILTERING"
  995. default n
  996. config WLAN_FEATURE_PEER_TXQ_FLUSH_CONF
  997. bool "Enable WLAN_FEATURE_PEER_TXQ_FLUSH_CONF"
  998. default n
  999. config WLAN_FEATURE_ROAM_INFO_STATS
  1000. bool "Enable WLAN_FEATURE_ROAM_INFO_STATS"
  1001. default n
  1002. config WLAN_FEATURE_RX_BUFFER_POOL
  1003. bool "Enable WLAN_FEATURE_RX_BUFFER_POOL"
  1004. default n
  1005. config WLAN_FEATURE_RX_SOFTIRQ_TIME_LIMIT
  1006. bool "Enable WLAN_FEATURE_RX_SOFTIRQ_TIME_LIMIT"
  1007. default n
  1008. config WLAN_FEATURE_SAE
  1009. bool "Enable WLAN_FEATURE_SAE"
  1010. default n
  1011. config WLAN_FEATURE_SAP_ACS_OPTIMIZE
  1012. bool "Enable WLAN_FEATURE_SAP_ACS_OPTIMIZE"
  1013. default n
  1014. config WLAN_FEATURE_SARV1_TO_SARV2
  1015. bool "Enable conversion of SAR v1 to v2 feature"
  1016. default n
  1017. config WLAN_FEATURE_SR
  1018. bool "Enable WLAN_FEATURE_SR"
  1019. default n
  1020. config WLAN_FEATURE_TWT
  1021. bool "Enable WLAN_FEATURE_TWT"
  1022. default n
  1023. config WLAN_FEATURE_WMI_DIAG_OVER_CE7
  1024. bool "Enable WLAN_FEATURE_WMI_DIAG_OVER_CE7"
  1025. default n
  1026. config WLAN_FREQ_LIST
  1027. bool "Enable WLAN_FREQ_LIST"
  1028. default n
  1029. config WLAN_FW_OFFLOAD
  1030. bool "Enable WLAN_FW_OFFLOAD"
  1031. default n
  1032. config WLAN_GTX_BW_MASK
  1033. bool "Enable WLAN_GTX_BW_MASK"
  1034. default n
  1035. config WLAN_HANG_EVENT
  1036. bool "Enable WLAN_HANG_EVENT"
  1037. default n
  1038. config WLAN_LOG_DEBUG
  1039. bool "Enable WLAN_LOG_DEBUG"
  1040. default n
  1041. config WLAN_LOG_ENTER
  1042. bool "Enable WLAN_LOG_ENTER"
  1043. default n
  1044. config WLAN_LOG_ERROR
  1045. bool "Enable WLAN_LOG_ERROR"
  1046. default n
  1047. config WLAN_LOG_EXIT
  1048. bool "Enable WLAN_LOG_EXIT"
  1049. default n
  1050. config WLAN_LOG_FATAL
  1051. bool "Enable WLAN_LOG_FATAL"
  1052. default n
  1053. config WLAN_LOG_INFO
  1054. bool "Enable WLAN_LOG_INFO"
  1055. default n
  1056. config WLAN_LOG_WARN
  1057. bool "Enable WLAN_LOG_WARN"
  1058. default n
  1059. config WLAN_LOGGING_SOCK_SVC
  1060. bool "Enable WLAN_LOGGING_SOCK_SVC"
  1061. default n
  1062. config WLAN_LRO
  1063. bool "Enable Large Receive Offload"
  1064. depends on HELIUMPLUS
  1065. depends on INET_LRO
  1066. default n
  1067. config WLAN_MWS_INFO_DEBUGFS
  1068. bool "Enable WLAN_MWS_INFO_DEBUGFS"
  1069. depends on WLAN_DEBUGFS
  1070. default n
  1071. config WLAN_NAPI
  1072. bool "Enable NAPI - datapath rx"
  1073. default n
  1074. config WLAN_NAPI_DEBUG
  1075. bool "Enable debug logging on NAPI"
  1076. depends on WLAN_NAPI
  1077. default n
  1078. config WLAN_NS_OFFLOAD
  1079. bool "Enable WLAN_NS_OFFLOAD"
  1080. default n
  1081. config WLAN_NUD_TRACKING
  1082. bool "Enable WLAN_NUD_TRACKING"
  1083. default n
  1084. config WLAN_OBJMGR_DEBUG
  1085. bool "Enable WLAN Obj Mgr Debug services"
  1086. default n
  1087. config WLAN_OBJMGR_REF_ID_TRACE
  1088. bool "Enable WLAN_OBJMGR_REF_ID_TRACE"
  1089. default n
  1090. config WLAN_OFFLOAD_PACKETS
  1091. bool "Enable offload packets feature"
  1092. default n
  1093. config WLAN_OPEN_P2P_INTERFACE
  1094. bool "Enable WLAN_OPEN_P2P_INTERFACE"
  1095. default n
  1096. config WLAN_PDEV_VDEV_SEND_MULTI_PARAM
  1097. bool "Enable WLAN_PDEV_VDEV_SEND_MULTI_PARAM"
  1098. default n
  1099. config WLAN_PMO_ENABLE
  1100. bool "Enable WLAN_PMO_ENABLE"
  1101. default n
  1102. config WLAN_POLICY_MGR_ENABLE
  1103. bool "Enable WLAN_POLICY_MGR_ENABLE"
  1104. default n
  1105. config WLAN_POWER_DEBUG
  1106. bool "Enable WLAN_POWER_DEBUG"
  1107. default n
  1108. config WLAN_REASSOC
  1109. bool "Enable WLAN_REASSOC"
  1110. default n
  1111. config WLAN_RECORD_RX_PADDR
  1112. bool "Enable WLAN_RECORD_RX_PADDR"
  1113. default n
  1114. config WLAN_RX_MON_PARSE_CMN_USER_INFO
  1115. bool "Enable WLAN_RX_MON_PARSE_CMN_USER_INFO"
  1116. default n
  1117. config WLAN_SCAN_DISABLE
  1118. bool "Enable WLAN_SCAN_DISABLE"
  1119. default n
  1120. config WLAN_SKIP_BAR_UPDATE
  1121. bool "Enable WLAN_SKIP_BAR_UPDATE"
  1122. default n
  1123. config WLAN_SPECTRAL_ENABLE
  1124. bool "Enable WLAN_SPECTRAL_ENABLE"
  1125. default n
  1126. config WLAN_STREAMFS
  1127. bool "Enable WLAN_STREAMFS"
  1128. depends on RELAY
  1129. default n
  1130. config WLAN_SUPPORT_DATA_STALL
  1131. bool "Enable WLAN_SUPPORT_DATA_STALL"
  1132. default n
  1133. config WLAN_SYNC_TSF
  1134. bool "Enable QCOM sync multi devices tsf feature"
  1135. default n
  1136. config WLAN_SYNC_TSF_PLUS
  1137. bool "Enable WLAN_SYNC_TSF_PLUS"
  1138. default n
  1139. config WLAN_SYNC_TSF_TIMER
  1140. bool "Enable WLAN_SYNC_TSF_TIMER"
  1141. default n
  1142. config WLAN_SYSFS
  1143. bool "Enable WLAN_SYSFS"
  1144. depends on SYSFS
  1145. default n
  1146. config WLAN_SYSFS_CHANNEL
  1147. bool "Enable WLAN_SYSFS_CHANNEL"
  1148. depends on WLAN_SYSFS
  1149. default n
  1150. config WLAN_SYSFS_CONNECT_INFO
  1151. bool "Enable WLAN_SYSFS_CONNECT_INFO"
  1152. depends on WLAN_SYSFS
  1153. default n
  1154. config WLAN_SYSFS_DCM
  1155. bool "Enable WLAN_SYSFS_DCM"
  1156. depends on WLAN_SYSFS
  1157. default n
  1158. config WLAN_SYSFS_DFSNOL
  1159. bool "Enable WLAN_SYSFS_DFSNOL"
  1160. depends on WLAN_SYSFS
  1161. default n
  1162. config WLAN_SYSFS_DP_STATS
  1163. bool "Enable WLAN_SYSFS_DP_STATS"
  1164. depends on WLAN_SYSFS
  1165. default n
  1166. config WLAN_SYSFS_DP_TRACE
  1167. bool "Enable WLAN_SYSFS_DP_TRACE"
  1168. depends on WLAN_SYSFS
  1169. default n
  1170. config WLAN_SYSFS_EHT_RATE
  1171. bool "Enable WLAN_SYSFS_EHT_RATE"
  1172. depends on WLAN_SYSFS
  1173. default n
  1174. config WLAN_SYSFS_FW_MODE_CFG
  1175. bool "Enable WLAN_SYSFS_FW_MODE_CFG"
  1176. depends on WLAN_SYSFS
  1177. default n
  1178. config WLAN_SYSFS_HE_BSS_COLOR
  1179. bool "Enable WLAN_SYSFS_HE_BSS_COLOR"
  1180. depends on WLAN_SYSFS
  1181. default n
  1182. config WLAN_SYSFS_LOG_BUFFER
  1183. bool "Enable WLAN_SYSFS_LOG_BUFFER"
  1184. depends on WLAN_SYSFS
  1185. default n
  1186. config WLAN_SYSFS_MEM_STATS
  1187. bool "Enable WLAN_SYSFS_MEM_STATS"
  1188. depends on WLAN_SYSFS
  1189. default n
  1190. config WLAN_SYSFS_MONITOR_MODE_CHANNEL
  1191. bool "Enable WLAN_SYSFS_MONITOR_MODE_CHANNEL"
  1192. depends on WLAN_SYSFS
  1193. default n
  1194. config WLAN_SYSFS_RADAR
  1195. bool "Enable WLAN_SYSFS_RADAR"
  1196. depends on WLAN_SYSFS
  1197. default n
  1198. config WLAN_SYSFS_RANGE_EXT
  1199. bool "Enable WLAN_SYSFS_RANGE_EXT"
  1200. depends on WLAN_SYSFS
  1201. default n
  1202. config WLAN_SYSFS_RTS_CTS
  1203. bool "Enable WLAN_SYSFS_RTS_CTS"
  1204. depends on WLAN_SYSFS
  1205. default n
  1206. config WLAN_SYSFS_SCAN_CFG
  1207. bool "Enable WLAN_SYSFS_SCAN_CFG"
  1208. depends on WLAN_SYSFS
  1209. default n
  1210. config WLAN_SYSFS_STA_INFO
  1211. bool "Enable WLAN_SYSFS_STA_INFO"
  1212. depends on WLAN_SYSFS
  1213. default n
  1214. config WLAN_SYSFS_STATS
  1215. bool "Enable WLAN_SYSFS_STATS"
  1216. depends on WLAN_SYSFS
  1217. default n
  1218. config WLAN_SYSFS_TDLS_PEERS
  1219. bool "Enable WLAN_SYSFS_TDLS_PEERS"
  1220. depends on WLAN_SYSFS
  1221. depends on QCOM_TDLS
  1222. default n
  1223. config WLAN_SYSFS_TEMPERATURE
  1224. bool "Enable WLAN_SYSFS_TEMPERATURE"
  1225. depends on WLAN_SYSFS
  1226. default n
  1227. config WLAN_SYSFS_TX_STBC
  1228. bool "Enable WLAN_SYSFS_TX_STBC"
  1229. depends on WLAN_SYSFS
  1230. default n
  1231. config WLAN_SYSFS_WLAN_DBG
  1232. bool "Enable WLAN_SYSFS_WLAN_DBG"
  1233. depends on WLAN_SYSFS
  1234. default n
  1235. config WLAN_SYSFS_BITRATES
  1236. bool "enable WLAN_SYSFS_BITRATES"
  1237. depends on WLAN_SYSFS
  1238. default n
  1239. config WLAN_THERMAL_CFG
  1240. bool "Enable WLAN_THERMAL_CFG"
  1241. default n
  1242. config WLAN_THERMAL_MULTI_CLIENT_SUPPORT
  1243. bool "Enable WLAN_THERMAL_MULTI_CLIENT_SUPPORT"
  1244. default n
  1245. config WLAN_TRACEPOINTS
  1246. bool "Enable WLAN_TRACEPOINTS"
  1247. default n
  1248. config WLAN_TSF_AUTO_REPORT
  1249. bool "Enable WLAN_TSF_AUTO_REPORT"
  1250. default n
  1251. config WLAN_TSF_UPLINK_DELAY
  1252. bool "Enable WLAN_TSF_UPLINK_DELAY"
  1253. depends on WLAN_TSF_AUTO_REPORT
  1254. default n
  1255. config WLAN_TX_LATENCY_STATS
  1256. bool "Enable WLAN_TX_LATENCY_STATS"
  1257. depends on WLAN_TSF_AUTO_REPORT
  1258. default n
  1259. config WLAN_TWT_CONVERGED
  1260. bool "Enable WLAN_TWT_CONVERGED"
  1261. default n
  1262. config WLAN_TWT_SAP_PDEV_COUNT
  1263. bool "Enable WLAN_TWT_SAP_PDEV_COUNT"
  1264. default n
  1265. config WLAN_TWT_SAP_STA_COUNT
  1266. bool "Enable WLAN_TWT_SAP_STA_COUNT"
  1267. default n
  1268. config WLAN_TX_FLOW_CONTROL_V2
  1269. bool "Enable tx flow control version:2"
  1270. default n
  1271. config WLAN_TXRX_FW_ST_RST
  1272. bool "Enable WLAN_TXRX_FW_ST_RST"
  1273. default n
  1274. config WLAN_TXRX_FW_STATS
  1275. bool "Enable WLAN_TXRX_FW_STATS"
  1276. default n
  1277. config WLAN_TXRX_STATS
  1278. bool "Enable WLAN_TXRX_STATS"
  1279. default n
  1280. config WLAN_UMAC_MLO_MAX_DEV
  1281. int "Enable WLAN_UMAC_MLO_MAX_DEV"
  1282. config WLAN_VENDOR_HANDOFF_CONTROL
  1283. bool "Enable WLAN_VENDOR_HANDOFF_CONTROL"
  1284. default n
  1285. config WLAN_WBUFF
  1286. bool "Enable WLAN_WBUFF"
  1287. default n
  1288. config WLAN_WEXT_SUPPORT_ENABLE
  1289. bool "Enable WLAN_WEXT_SUPPORT_ENABLE"
  1290. depends on CFG80211_WEXT
  1291. default n
  1292. config WLAN_WOW_ITO
  1293. bool "Enable WLAN_WOW_ITO"
  1294. default n
  1295. config WLAN_WOWL_ADD_PTRN
  1296. bool "Enable WLAN_WOWL_ADD_PTRN"
  1297. default n
  1298. config WLAN_WOWL_DEL_PTRN
  1299. bool "Enable WLAN_WOWL_DEL_PTRN"
  1300. default n
  1301. config WMI_BCN_OFFLOAD
  1302. bool "Enable WMI_BCN_OFFLOAD"
  1303. default n
  1304. config WMI_CMD_STRINGS
  1305. bool "Enable WMI_CMD_STRINGS"
  1306. default n
  1307. config WMI_CONCURRENCY_SUPPORT
  1308. bool "Enable WMI_CONCURRENCY_SUPPORT"
  1309. default n
  1310. config WMI_DBR_SUPPORT
  1311. bool "Enable WMI_DBR_SUPPORT"
  1312. default n
  1313. config WMI_INTERFACE_EVENT_LOGGING
  1314. bool "Enable WMI_INTERFACE_EVENT_LOGGING"
  1315. default n
  1316. config WMI_ROAM_SUPPORT
  1317. bool "Enable WMI_ROAM_SUPPORT"
  1318. default n
  1319. config WMI_SEND_RECV_QMI
  1320. bool "Enable WMI_SEND_RECV_QMI"
  1321. default n
  1322. config WMI_STA_SUPPORT
  1323. bool "Enable WMI_STA_SUPPORT"
  1324. default n
  1325. config PADDR_CHECK_ON_3RD_PARTY_PLATFORM
  1326. bool "Enable data path memory addr check on third-party platforms"
  1327. default n
  1328. config CFG80211_SINGLE_NETDEV_MULTI_LINK_SUPPORT
  1329. bool "Enable CONFIG_CFG80211_SINGLE_NETDEV_MULTI_LINK_SUPPORT"
  1330. default n
  1331. config CFG80211_RU_PUNCT_NOTIFY
  1332. bool "Enable CFG80211_RU_PUNCT_NOTIFY"
  1333. default n
  1334. config CFG80211_EXTERNAL_AUTH_MLO_SUPPORT
  1335. bool "Enable CFG80211_EXTERNAL_AUTH_MLO_SUPPORT"
  1336. default n
  1337. config CFG80211_MLO_KEY_OPERATION_SUPPORT
  1338. bool "Enable CFG80211_MLO_KEY_OPERATION_SUPPORT"
  1339. default n
  1340. config CFG80211_WEXT
  1341. bool "Enable CFG80211_WEXT"
  1342. default n
  1343. config FEATURE_PKTLOG
  1344. bool "Enable CONFIG_FEATURE_PKTLOG"
  1345. default n
  1346. config FEATURE_PKTLOG_EN_NON_LEGACY
  1347. bool "Enable FEATURE_PKTLOG_EN_NON_LEGACY"
  1348. default n
  1349. config WLAN_CTRL_NAME
  1350. string "Enable CONFIG_WLAN_CTRL_NAME"
  1351. default \"wlan\"
  1352. config LL_DP_SUPPORT_NON_LITH
  1353. bool "ENABLE CONFIG_LL_DP_SUPPORT_NON_LITH"
  1354. default n
  1355. config QCA_SUPPORT_TX_THROTTLE_NON_LITH
  1356. bool "Enable CONFIG_QCA_SUPPORT_TX_THROTTLE_NON_LITH"
  1357. default n
  1358. config PANIC_ON_BUG
  1359. bool "Enable PANIC_ON_BUG"
  1360. default n
  1361. config CFG80211_LINK_STA_PARAMS_PRESENT
  1362. bool "Enable CONFIG_CFG80211_LINK_STA_PARAMS_PRESENT"
  1363. default n
  1364. config ARCH_MSM
  1365. bool "Enable CONFIG_ARCH_MSM"
  1366. default n
  1367. config WLAN_HOST_ARCH_ARM
  1368. bool "Enable if host arch is arm"
  1369. default n
  1370. config WLAN_WARN_ON_ASSERT
  1371. bool "Enable WLAN_WARN_ON_ASSERT"
  1372. default n
  1373. config WIFI_MONITOR_SUPPORT_2_0
  1374. bool "Enable WIFI MONITOR SUPPORT 2_0"
  1375. default n
  1376. config WLAN_TX_MON_2_0_Y_WLAN_DP_LOCAL_PKT_CAPTURE
  1377. bool "Enable WLAN_TX_MON_2_0_Y_DP_LOCAL_PKT_CAPTURE"
  1378. default n
  1379. config WIFI_MONITOR_SUPPORT_Y_WLAN_TX_MON_2_0
  1380. bool "Enable WIFI_MONITOR_SUPPORT_Y_WLAN_TX_MON_2_0"
  1381. default n
  1382. config WLAN_DP_LOCAL_PKT_CAPTURE
  1383. bool "Enable CONFIG_WLAN_DP_LOCAL_PKT_CAPTURE"
  1384. default n
  1385. config DP_TX_PACKET_INSPECT_FOR_ILP
  1386. bool "enable DP_TX_PACKET_INSPECT_FOR_ILP"
  1387. default n
  1388. config NUM_SOC_PERF_CLUSTER
  1389. int "enable NUM_SOC_PERF_CLUSTER"
  1390. config WLAN_OPEN_SOURCE
  1391. bool "enable WLAN_OPEN_SOURCE"
  1392. default n
  1393. config CFG80211_EXT_FEATURE_SECURE_NAN
  1394. bool "enable CFG80211_EXT_FEATURE_SECURE_NAN"
  1395. default n
  1396. config CNSS_OUT_OF_TREE
  1397. bool "enable CNSS_OUT_OF_TREE"
  1398. default n
  1399. config CFG80211_MLD_AP_STA_CONNECT_UPSTREAM_SUPPORT
  1400. bool "enable CFG80211_MLD_AP_STA_CONNECT_UPSTREAM_SUPPORT"
  1401. default n
  1402. config DP_MULTIPASS_SUPPORT
  1403. bool "enable CONFIG_DP_MULTIPASS_SUPPORT"
  1404. default n
  1405. config WLAN_FEATURE_LL_LT_SAP
  1406. bool "enable CONFIG_WLAN_FEATURE_LL_LT_SAP"
  1407. default n
  1408. config WLAN_DP_VDEV_NO_SELF_PEER
  1409. bool "enable CONFIG_WLAN_DP_VDEV_NO_SELF_PEER"
  1410. default n
  1411. config WLAN_FEATURE_AFFINITY_MGR
  1412. bool "enable CONFIG_WLAN_FEATURE_AFFINITY_MGR"
  1413. default n
  1414. config NL80211_EXT_FEATURE_PUNCT_SUPPORT
  1415. bool "enable CONFIG_NL80211_EXT_FEATURE_PUNCT_SUPPORT"
  1416. default n
  1417. config NL80211_TESTMODE
  1418. bool "enable CONFIG_NL80211_TESTMODE"
  1419. default n
  1420. config DYNAMIC_DEBUG
  1421. bool "enable CONFIG_DYNAMIC_DEBUG"
  1422. default n
  1423. config DP_MLO_LINK_STATS_SUPPORT
  1424. bool "enable CONFIG_DP_MLO_LINK_STATS_SUPPORT"
  1425. default n
  1426. config MULTI_IF_NAME
  1427. string "set MULTI_IF_NAME"
  1428. default \"wlan\"
  1429. config CFG80211_EXT_FEATURE_AUTH_AND_DEAUTH_RANDOM_TA
  1430. bool "enable CFG80211_EXT_FEATURE_AUTH_AND_DEAUTH_RANDOM_TA"
  1431. default n
  1432. config WLAN_DP_FEATURE_DEFERRED_REO_QDESC_DESTROY
  1433. bool "enable WLAN_DP_FEATURE_DEFERRED_REO_QDESC_DESTROY"
  1434. default n
  1435. config FEATURE_WLAN_CH_AVOID_EXT
  1436. bool "enable FEATURE_WLAN_CH_AVOID_EXT"
  1437. default n
  1438. config WLAN_TRACE_HIDE_MAC_ADDRESS_DISABLE
  1439. bool "enable CONFIG_WLAN_TRACE_HIDE_MAC_ADDRESS_DISABLE"
  1440. default n
  1441. config 4_BYTES_TLV_TAG
  1442. bool "enable 4_BYTES_TLV_TAG"
  1443. default n
  1444. config QCA_WIFI_EMULATION
  1445. bool "enable CONFIG_QCA_WIFI_EMULATION"
  1446. default n
  1447. config QDF_TIMER_MULTIPLIER_FRAC
  1448. int "set QDF_TIMER_MULTIPLIER_FRAC"
  1449. config QDF_TIMER_MULTIPLIER_FRAC_ENABLE
  1450. bool "enable QDF_TIMER_MULTIPLIER_FRAC_ENABLE"
  1451. default n
  1452. config QCA_WIFI_PEACH
  1453. bool "enable QCA_WIFI_PEACH"
  1454. default n
  1455. config BCN_RATECODE_ENABLE
  1456. bool "enable CONFIG_BCN_RATECODE_ENABLE"
  1457. default n
  1458. config WLAN_SYSFS_RF_TEST_MODE
  1459. bool "enable CONFIG_WLAN_SYSFS_RF_TEST_MODE"
  1460. default n
  1461. config WLAN_FEATURE_MARK_FIRST_WAKEUP_PACKET
  1462. bool "enable WLAN_FEATURE_MARK_FIRST_WAKEUP_PACKET"
  1463. default n
  1464. endif # QCA_CLD_WLAN