blob: 814059e6df6395102557da95282e4279ca50855f [file] [log] [blame]
Karthikeyan Ramasubramanianafeb7b32020-07-23 00:25:25 -06001config DRIVERS_WIFI_GENERIC
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -06002 bool
3 default n
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -06004 help
5 When enabled, add identifiers in ACPI tables that are common
6 to WiFi chipsets from multiple vendors.
7
Furquan Shaikh8262a2c2020-10-10 19:53:00 -07008config DRIVERS_INTEL_WIFI
9 bool "Support Intel PCI-e WiFi adapters"
10 depends on PCI
11 default y if PCIEXP_PLUGIN_SUPPORT
12 select DRIVERS_WIFI_GENERIC
13 help
14 When enabled, add identifiers in ACPI and SMBIOS tables to
15 make OS drivers work with certain Intel PCI-e WiFi chipsets.
16
David Ruthea8330e2023-12-06 21:39:54 +000017config DRIVERS_MTK_WIFI
18 bool "Support MediaTek PCI-e WiFi adapters"
19 depends on PCI
20 default y if PCIEXP_PLUGIN_SUPPORT
21 select DRIVERS_WIFI_GENERIC
22 help
23 When enabled, add identifiers in ACPI tables to make OS
24 drivers work with certain MediaTek PCI-e WiFi chipsets.
25
Karthikeyan Ramasubramanianafeb7b32020-07-23 00:25:25 -060026if DRIVERS_WIFI_GENERIC
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060027
28config USE_SAR
29 bool
30 default n
31 help
32 Enable it when wifi driver uses SAR configuration feature.
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060033
34config SAR_ENABLE
35 bool
36 default n
37 depends on USE_SAR
38
39config DSAR_ENABLE
40 bool
41 default n
42 depends on USE_SAR
43
44config GEO_SAR_ENABLE
45 bool
46 default n
47 depends on USE_SAR
48
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060049config WIFI_SAR_CBFS_FILEPATH
50 string "The cbfs file which has WIFI SAR defaults"
Furquan Shaikh31f63202021-03-13 22:34:57 -080051 depends on USE_SAR
52 default ""
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060053
54config DSAR_SET_NUM
55 hex "Number of SAR sets when D-SAR is enabled"
56 default 0x3
57 depends on USE_SAR
58 help
59 There can be up to 3 optional SAR table sets.
60
Karthikeyan Ramasubramanianafeb7b32020-07-23 00:25:25 -060061endif # DRIVERS_WIFI_GENERIC
David Ruthea8330e2023-12-06 21:39:54 +000062
63config USE_MTCL
64 bool
65 default n
66 depends on DRIVERS_MTK_WIFI
67 help
68 When enabled, adds the MTCL function for MediaTek WiFi chipsets.
69 This function supplies country list information used to enable or
70 disable operation on 5.9GHz and 6GHz bands.
71
72config WIFI_MTCL_CBFS_FILEPATH
73 string "The cbfs file which has WIFI MTCL defaults"
74 depends on USE_MTCL
75 default ""