-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
1381 lines (1036 loc) · 26.8 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
comment "Qualcomm Atheros CLD WLAN module"
config QCA_CLD_WLAN
tristate "Qualcomm Atheros CLD WLAN module"
default n
help
Add support for the Qualcomm Atheros CLD WLAN module
if QCA_CLD_WLAN != n
config QCACLD_WLAN_LFR3
bool "Enable the WLAN Legacy Fast Roaming feature Version 3"
default n
config PRIMA_WLAN_OKC
bool "Enable the Prima WLAN Opportunistic Key Caching feature"
default n
config WLAN_FEATURE_11W
bool "Enable the WLAN 802.11w Protected Management Frames feature"
default n
config WLAN_FEATURE_LPSS
bool "Enable the WLAN LPSS feature"
default n
config QCOM_VOWIFI_11R
bool "Enable Fast Transition (11r) feature"
default n
config QCACLD_FEATURE_NAN
bool "Enable NAN feature"
default n
config QCACLD_FEATURE_GREEN_AP
bool "Enable Green AP feature"
default n
config HELIUMPLUS
bool "Enable Beeliner based descriptor structures for Helium"
default n
config 64BIT_PADDR
bool "Enable 37-bit physical/bus addresses"
depends on HELIUMPLUS
default n
config QCOM_TDLS
bool "Enable TDLS feature"
default n
config QCOM_LTE_COEX
bool "Enable QCOM LTE Coex feature"
default n
config MPC_UT_FRAMEWORK
bool "Enable Unit test framework for multiport concurrency"
default n
config WLAN_OFFLOAD_PACKETS
bool "Enable offload packets feature"
default n
config FEATURE_TSO
bool "Enable TCP Segmentation Offload"
depends on HELIUMPLUS
default n
config FEATURE_TSO_DEBUG
bool "Enable TCP Segmentation Offload with debug"
depends on FEATURE_TSO
default n
config WLAN_FASTPATH
bool "Enable fastpath for datapackets"
default n
config WLAN_NAPI
bool "Enable NAPI - datapath rx"
default n
config WLAN_NAPI_DEBUG
bool "Enable debug logging on NAPI"
depends on WLAN_NAPI
default n
config WLAN_TX_FLOW_CONTROL_V2
bool "Enable tx flow control version:2"
default n
config WLAN_LRO
bool "Enable Large Receive Offload"
depends on HELIUMPLUS
depends on INET_LRO
default n
config WLAN_SYNC_TSF
bool "Enable QCOM sync multi devices tsf feature"
default n
config LFR_SUBNET_DETECTION
bool "Enable LFR Subnet Change Detection"
default n
config MCC_TO_SCC_SWITCH
bool "Enable MCC to SCC Switch Logic"
default n
config QCACLD_WLAN_LFR2
bool "Enable the WLAN Legacy Fast Roaming feature Version 2"
default n
config WLAN_FEATURE_DISA
bool "Enable DISA certification feature"
default n
config WLAN_FEATURE_FIPS
bool "Enable FIPS certification feature"
default n
config WLAN_FEATURE_11AX
bool "Enable 11AX(High Efficiency) feature"
default n
config ICMP_DISABLE_PS
bool "Enable ICMP packet disable powersave feature"
default n
config BUILD_TIMESTAMP
bool "Embed timestamp in wlan version"
default n
config WLAN_FEATURE_FILS
bool "Enable FILS feature"
default n
config NAN_CONVERGENCE
bool "Enable NAN_CONVERGENCE feature"
default n
config WLAN_OBJMGR_DEBUG
bool "Enable WLAN Obj Mgr Debug services"
default n
config WLAN_FEATURE_DFS_OFFLOAD
bool "Enable dfs offload feature"
default n
config WLAN_FEATURE_SARV1_TO_SARV2
bool "Enable conversion of SAR v1 to v2 feature"
default n
config HANDLE_RX_REROUTE_ERR
bool "Enable handle rx reroute error feature"
default n
config ICNSS2_MODULE
bool "Enable ICNSS2 module"
default n
config CNSS_GENL_MODULE
bool "Enable CNSS general module"
default n
config CNSS_UTILS_MODULE
bool "Enable CNSS utils module"
default n
config WCNSS_MEM_PRE_ALLOC_MODULE
bool "Enable WCNSS memory pre allocation module"
default n
config ROME_IF
string "Enable ROME_IF"
config ICNSS2_HELIUM
bool "Enable ICNSS2 feature for Helium"
default n
config PLD_SNOC_ICNSS_FLAG
bool "Enable pld snoc ICNSS flag"
default n
config BUILD_TAG
bool "Enable build tag feature"
default n
config WLAN_FEATURE_MBSSID
bool "Enable wlan MBSSID feature"
default n
config WLAN_FEATURE_P2P_P2P_STA
bool "Enable P2P P2P STA concurrency feature"
default n
config WLAN_SYSFS
bool "Enable sysfs feature"
default n
config THERMAL_STATS_SUPPORT
bool "Enable thermal stats support"
default n
config WLAN_SYSFS_STA_INFO
bool "Enable sysfs STA info feature"
default n
config WLAN_SYSFS_CHANNEL
bool "Enable sysfs SAP/P2P GO operation channel feature"
default n
config WLAN_SYSFS_FW_MODE_CFG
bool "Enable sysfs firmware mode configuration feature"
default n
config WLAN_SYSFS_MEM_STATS
bool "Enable sysfs memory stats feature"
default n
config WLAN_SYSFS_CONNECT_INFO
bool "Enable sysfs connection info feature"
default n
config WLAN_SYSFS_DCM
bool "Enable sysfs DCM feature"
default n
config WLAN_SYSFS_TX_STBC
bool "Enable sysfs transmission STBC feature"
default n
config WLAN_SYSFS_WLAN_DBG
bool "Enable sysfs wlan debug feature"
default n
config WLAN_SYSFS_SCAN_CFG
bool "Enable sysfs wlan scan configuration feature"
default n
config WLAN_SYSFS_MONITOR_MODE_CHANNEL
bool "Enable sysfs monitor mode channel info feature"
default n
config WLAN_SYSFS_RADAR
bool "Enable sysfs radar detection feature"
default n
config WLAN_SYSFS_RTS_CTS
bool "Enable sysfs RTS CTS feature"
default n
config WLAN_SYSFS_HE_BSS_COLOR
bool "Enable sysfs he bss color feature"
default n
config WLAN_SYSFS_DP_TRACE
bool "Enable sysfs DP trace feature"
default n
config WLAN_SYSFS_STATS
bool "Enable sysfs stats feature"
default n
config WLAN_SYSFS_TDLS_PEERS
bool "Enable sysfs tdls peers feature"
default n
config WLAN_SYSFS_TEMPERATURE
bool "Enable sysfs temprature feature"
default n
config WLAN_SYSFS_RANGE_EXT
bool "Enable sysfs range ext feature"
default n
config WLAN_REASSOC
bool "Enable wlan reassociation feature"
default n
config WLAN_SCAN_DISABLE
bool "Enable wlan scan disable feature"
default n
config WLAN_WOW_ITO
bool "Enable WOW ITO feature"
default n
config WLAN_WOWL_ADD_PTRN
bool "Enable WOWL add pattern feature"
default n
config WLAN_WOWL_DEL_PTRN
bool "Enable WOWL delete pattern feature"
default n
config WLAN_TXRX_FW_ST_RST
bool "Enable txrx firmware ST RST feature"
default n
config WLAN_GTX_BW_MASK
bool "Enable GTX bandwidth mask feature"
default n
config WLAN_TXRX_FW_STATS
bool "Enable firmware txrx stats feature"
default n
config WLAN_TXRX_STATS
bool "Enable txrx stats feature"
default n
config WLAN_THERMAL_CFG
bool "Enable thermal configuration feature"
default n
config WLAN_DL_MODES
bool "Enable DL modes feature"
default n
config WLAN_DUMP_IN_PROGRESS
bool "Enable dump in progress feature"
default n
config WLAN_BMISS
bool "Enable beacon miss feature"
default n
config WLAN_FREQ_LIST
bool "Enable frequency list feature"
default n
config DP_PKT_ADD_TIMESTAMP
bool "Enable datapath packet add timestamp feature"
default n
config WLAN_POWER_DEBUG
bool "Enable power debug feature"
default n
config FEATURE_BECN_STATS
bool "Enable beacon stats feature"
default n
config WLAN_FEATURE_MEDIUM_ASSESS
bool "Enable medium assess feature"
default n
config WLAN_DISABLE_EXPORT_SYMBOL
bool "Enable feature to support disable export symbol"
default n
config QCACLD_FEATURE_APF
bool "Enable APF feature"
default n
config QCACLD_FEATURE_FW_STATE
bool "Enable firmware state feature"
default n
config WLAN_FEATURE_ACTION_OUI
bool "Enable action oui feature"
default n
config ADAPTIVE_11R
bool "Enable adaptive 11R feature"
default n
config SAE_SINGLE_PMK
bool "Enable single PMK feature"
default n
config MULTI_CLIENT_LL_SUPPORT
bool "Enable multiple client ll support feature"
default n
config FEATURE_MSCS
bool "Enable MSCS feature"
default n
config FEATURE_EPPING
bool "Enable EPPING feature"
default n
config WLAN_FEATURE_SAE
bool "Enable SAE authentication feature"
default n
config POWER_MANAGEMENT_OFFLOAD
bool "Enable power managment offloadto fw feature"
default n
config LOCK_STATS_ON
bool "Enable lock stats support"
default n
config WLAN_OBJMGR_REF_ID_TRACE
bool "Enable objmgr ref id trace services"
default n
config LL_DP_SUPPORT
bool "Enable LL DP feature support"
default n
config QMI_SUPPORT
bool "Enable QMI bus support"
default n
config WIFI_3_0_ADRASTEA
bool "Enable wifi 3 Adrastea support"
default n
config ADRASTEA_RRI_ON_DDR
bool "Enable RRI on DDR for Adrastea"
default n
config ATH_PROCFS_DIAG_SUPPORT
bool "Enable athdiag procfs debug support for adrastea"
default n
config ATH_11AC_TXCOMPACT
bool "Enable 11AC TX compact feature for adrastea"
default n
config ADRASTEA_SHADOW_REGISTERS
bool "Enable shadow registers support for adrastea"
default n
config OL_RX_INDICATION_RECORD
bool "Enable OL RX indication record feature"
default n
config TSOSEG_DEBUG
bool "Enable TSOSEG debug INI mechanism"
default n
config VERBOSE_DEBUG
bool "Enable Verbose debug INI mechanism"
default n
config RX_DESC_SANITY_WAR
bool "Enable Rx description sanity feature"
default n
config SHADOW_V2
bool "Enable Shadow V2 for all lithium platform"
default n
config QCA_WIFI_QCA8074
bool "Enable QCA8074 wifi"
default n
config QCA_WIFI_QCA8074_VP
bool "Enable QCA8074 VP"
default n
config DP_INTR_POLL_BASED
bool "Enable interupt based poll support"
default n
config TX_PER_PDEV_DESC_POOL
bool "Enable tx per pdev desc pool support"
default n
config DP_TRACE
bool "Enable DP trace services"
default n
config DP_LFR
bool "Enable DP LFR support"
default n
config DUP_RX_DESC_WAR
bool "Enable DUP rx descriptor WAR"
default n
config HTT_PADDR64
bool "Enable HTT 64 bit padder"
default n
config RX_OL
bool "Enable RX ol"
default n
config TX_TID_OVERRIDE
bool "Enable TX TID override support"
default n
config DP_TXRX_SOC_ATTACH
bool "Enable txrx soc attach services"
default n
config WLAN_CLD_PM_QOS
bool "Enable wlan cld pm qos"
default n
config WLAN_CLD_DEV_PM_QOS
bool "Enable wlan DEV PM QOS"
default n
config DISABLE_DP_STATS
bool "Enable feature to disable dp stats"
default n
config MAX_ALLOC_PAGE_SIZE
bool "Enable max page size allocation support"
default n
config REO_DESC_DEFER_FREE
bool "Enable reo desc defer free support"
default n
config RXDMA_ERR_PKT_DROP
bool "Enable RXDMA error packet drop support"
default n
config DELIVERY_TO_STACK_STATUS_CHECK
bool "Enable delivery to stack stats checker feature"
default n
config WLAN_TRACE_HIDE_MAC_ADDRESS
bool "Enable trace hide mac address feature"
default n
config DP_MEM_PRE_ALLOC
bool "Enable datapath pre memory allocation services"
default n
config FEATURE_GPIO_CFG
bool "Enable GPIO configuration support"
default n
config FEATURE_PKTLOG
bool "Enable packet log feature support"
default n
config WLAN_DEBUG_CRASH_INJECT
bool "Enable debug crash inject feature support"
default n
config WLAN_DEBUGFS
bool "Enable debugfs"
default n
config WLAN_MWS_INFO_DEBUGFS
bool "Enable MWS info debugfs feature"
default n
config WLAN_FEATURE_MIB_STATS
bool "Enable MIB stats feature"
default n
config WLAN_LOG_FATAL
bool "Enable compilation support for fatal logs"
default n
config WLAN_LOG_ERROR
bool "Enable compilation support for error logs"
default n
config WLAN_LOG_WARN
bool "Enable compilation support for warning logs"
default n
config WLAN_LOG_INFO
bool "Enable compilation support for info logs"
default n
config WLAN_LOG_DEBUG
bool "Enable compilation support for debug logs"
default n
config WLAN_LOG_ENTER
bool "Enable compilation support for enter logs"
default n
config WLAN_LOG_EXIT
bool "Enable compilation support for exit logs"
default n
config ATH_PERF_PWR_OFFLOAD
bool "Enable OL debug and wmi unified functions"
default n
config REMOVE_PKT_LOG
bool "Enable suuport to disable packet log"
default n
config HIF_SNOC
bool "Enable hif snoc feature"
default n
config QCOM_ESE
bool "Enable qcom ese feature"
default n
config WLAN_OPEN_P2P_INTERFACE
bool "Enable P2P open interface support"
default n
config WLAN_ENABLE_SOCIAL_CHANNELS_5G_ONLY
bool "Enable support for 5 GHz social channels"
default n
config ATH_BUS_PM
bool "Enable power management suspend/resume functionality to PCI"
default n
config ATH_SUPPORT_FLOWMAC_MODULE
bool "Enable FLOWMAC module support"
default n
config ATH_SUPPORT_SPECTRAL
bool "Enable spectral support"
default n
config SMMU_S1_UNMAP
bool "Enable SMMU S1 unmap"
default n
config PKTLOG_LEGACY
bool "Enable legacy packet log support"
default n
config WDI_EVENT_ENABLE
bool "Enable WDI Event support"
default n
config LITTLE_ENDIAN
bool "Enable endianness selection support"
default n
config TX_CREDIT_RECLAIM_SUPPORT
bool "Enable TX reclaim support"
default n
config QCA_WIFI_FTM
bool "Enable FTM support"
default n
config GTK_OFFLOAD
bool "Enable GTK offload"
default n
config ATH_PCIE_ACCESS_DEBUG
bool "Set this to 1 to catch erroneous Target accesses during debug"
default n
config IPA_OFFLOAD
bool "Enable IPA offload"
default n
config QCA_SIGNED_SPLIT_BINARY_SUPPORT
bool "Enable Signed firmware support for split binary format"
default n
config QCA_SINGLE_BINARY_SUPPORT
bool "Enable single firmware binary format"
default n
config TARGET_RAMDUMP_AFTER_KERNEL_PANIC
bool "Enable collecting target RAM dump after kernel panic"
default n
config FEATURE_SECURE_FIRMWARE
bool "Enable/disable secure firmware feature"
default n
config FEATURE_STATS_EXT
bool "Enable Stats Ext implementation"
default n
config WLAN_LOGGING_BUFFERS_DYNAMICALLY
bool "Enable dynamic memory allocation for logging buffers"
default n
config WLAN_DFS_STATIC_MEM_ALLOC
bool "Enable DFS static memory allocation support"
default n
config FEATURE_HTC_CREDIT_HISTORY
bool "Enable HTC credit history feature"
default n
config TRACE_RECORD_FEATURE
bool "Enable MTRACE feature"
default n
config WLAN_FEATURE_P2P_DEBUG
bool "Enable p2p debug feature"
default n
config FEATURE_ROAM_DEBUG
bool "Enable roam debug log"
default n
config WLAN_DFS_MASTER_ENABLE
bool "Enable DFS Master feature"
default n
config ENABLE_MTRACE_LOG
bool "Enable MTRACE feature"
default n
config WLAN_NUD_TRACKING
bool "Enable NUD tracking feature"
default n
config FUNC_CALL_MAP
bool "Enable function call trace feature"
default n
config WLAN_WBUFF
bool "Enable WBUFF feature"
default n
config DISABLE_CHANNEL_LIST
bool "Enable set and get disable channel list feature"
default n
config WLAN_BCN_RECV_FEATURE
bool "Enable beacon receive feature"
default n
config LTE_COEX
bool "Enable LTE coex feature"
default n
config TARGET_11D_SCAN
bool "Enable 11d scan algorithm"
default n
config SAP_AVOID_ACS_FREQ_LIST
bool "Enable avoid acs frequency list feature"
default n
config HOST_OPCLASS
bool "Enable host op class feature"
default n
config WLAN_DYNAMIC_CVM
bool "Enable Dynamic Voltage WDCVS (Config Voltage Mode)"
default n
config SAR_SAFETY_FEATURE
bool "Enable SAR safety feature"
default n
config CONNECTION_ROAMING_CFG
bool "Enable roaming connection config"
default n
config WIFI_POS_CONVERGED
bool "Enable WIFI pos converged feature"
default n
config WLAN_TWT_CONVERGED
bool "Enable TWT converged feature"
default n
config CP_STATS
bool "Enable CP stats feature"
default n
config FEATURE_INTEROP_ISSUES_AP
bool "Enable interop issues AP feature"
default n
config FEATURE_WLAN_WAPI
bool "Enable WAPI feature"
default n
config FEATURE_FW_LOG_PARSING
bool "Enable FW log parsing support feature"
default n
config PTT_SOCK_SVC_ENABLE
bool "Enable PTT sock svc enable feature"
default n
config SOFTAP_CHANNEL_RANGE
bool "Enable softap channel range"
default n
config FEATURE_WLAN_SCAN_PNO
bool "Enable PNO scan feature"
default n
config WLAN_FEATURE_PACKET_FILTERING
bool "Enable packet filtering feature"
default n
config WLAN_NS_OFFLOAD
bool "Enable NS offload"
default n
config FEATURE_WLAN_RA_FILTERING
bool "Enable RA filtering feature"
default n
config FEATURE_WLAN_LPHB
bool "Enable LPHB feature"
default n
config QCA_SUPPORT_TX_THROTTLE
bool "Enable TX throttle support"
default n
config WMI_INTERFACE_EVENT_LOGGING
bool "Enable WMI interface event logging services"
default n
config WLAN_FEATURE_LINK_LAYER_STATS
bool "Enable link layer stats feature"
default n
config FEATURE_CLUB_LL_STATS_AND_GET_STATION
bool "Enable support to club ll stats and station stats feature"
default n
config WMI_BCN_OFFLOAD
bool "Enable beacon offload"
default n
config 160MHZ_SUPPORT
bool "Enable 160MHz bandwidth support"
default n
config MCL
bool "Enable MCL"
default n
config REG_CLIENT
bool "Flaf to distinguish between MCC and WIN"
default n
config WLAN_PMO_ENABLE
bool "Enable PMO"
default n
config CONVERGED_P2P_ENABLE
bool "Enable converged P2P implementation"
default n
config WLAN_POLICY_MGR_ENABLE
bool "Enable policy manager"
default n
config FEATURE_BLACKLIST_MGR
bool "Enable blacklist manager"
default n
config FOURTH_CONNECTION
bool "Enable support for fourth connection"
default n
config SUPPORT_11AX
bool "Enable 11AX support"
default n
config HDD_INIT_WITH_RTNL_LOCK
bool "Enable support to init HDD module with RTNL lock"
default n
config WLAN_CONV_SPECTRAL_ENABLE
bool "Enable spectral conv"
default n
config WLAN_SPECTRAL_ENABLE
bool "Enable spectral"
default n
config WMI_CMD_STRINGS
bool "Enable WMI command strings"
default n
config FEATURE_MONITOR_MODE_SUPPORT
bool "Enable Monitor mode support"
default n
config WLAN_FEATURE_TWT
bool "Enable TWT"
default n
config FW_THERMAL_THROTTLE
bool "Enable firmware thermal throttle"
default n
config WLAN_FEATURE_BIG_DATA_STATS
bool "Enable support for big data stats feature"
default n
config WLAN_FEATURE_IGMP_OFFLOAD
bool "Enable IGMP offload"
default n
config WLAN_FEATURE_GET_USABLE_CHAN_LIST
bool "Enable feature to get usable channel list"
default n
config FEATURE_RADAR_HISTORY
bool "Enable feature to get radar history"
default n
config FEATURE_RSSI_MONITOR
bool "Enable RSSI moitor vendor command"
default n
config FEATURE_BSS_TRANSITION
bool "Enable BSSi transition vendor command"
default n
config FEATURE_STATION_INFO
bool "Enable support to get station info"
default n
config FEATURE_TX_POWER
bool "Enable support to get tx power"
default n
config FEATURE_OTA_TEST
bool "Enable OTA test feature"
default n
config FEATURE_ACTIVE_TOS
bool "Enable active TOS feature"
default n
config FEATURE_SAR_LIMITS
bool "Enable SAR limits feature"
default n
config FEATURE_CONCURRENCY_MATRIX
bool "Enable concurrency matrix"
default n
config FEATURE_SAP_COND_CHAN_SWITCH
bool "Enable SAP conditional channel switch feature"
default n
config FEATURE_P2P_LISTEN_OFFLOAD
bool "Enable P2P listne mode offload"
default n
config QCACLD_RX_DESC_MULTI_PAGE_ALLOC
bool "Enable RX descriptor mulit page allocation"
default n
config WMI_ROAM_SUPPORT
bool "Enable WMI roam support API"
default n
config WMI_CONCURRENCY_SUPPORT
bool "Enable WMI concurrency support API"
default n
config WMI_STA_SUPPORT
bool "Enable WMI STA support API"
default n
config DSC_DEBUG
bool "Enable DSC debug"
default n
config FEATURE_HAL_RECORD_SUSPEND_WRITE
bool "Enable record suspend write feature"
default n
config HIF_DETECTION_LATENCY_ENABLE
bool "Enable latency detection"
default n
config DESC_TIMESTAMP_DEBUG_INFO
bool "Enable descriptor timestamp support for debug info"
default n
config FEATURE_UNIT_TEST_SUSPEND
bool "Enable unit test suspend"
default n
config LEAK_DETECTION
bool "Enable feature to detect leak"
default n
config TALLOC_DEBUG
bool "Enable talloc debug"
default n
config UNIT_TEST
bool "Enable unit test support"
default n
config REGISTER_OP_DEBUG
bool "Enable register op debug"
default n
config ENABLE_QDF_PTR_HASH_DEBUG
bool "Enable QDF pointer hash debug"
default n