Kconfig 36 KB

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