Kconfig 39 KB

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