Kconfig 36 KB

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