blob: 1d0e19f0051424ac6f93b2e17331debefffa271e [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
Karthikeyan Ramasubramanianafeb7b32020-07-23 00:25:25 -060017if DRIVERS_WIFI_GENERIC
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060018
19config USE_SAR
20 bool
21 default n
22 help
23 Enable it when wifi driver uses SAR configuration feature.
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060024
25config SAR_ENABLE
26 bool
27 default n
28 depends on USE_SAR
29
30config DSAR_ENABLE
31 bool
32 default n
33 depends on USE_SAR
34
35config GEO_SAR_ENABLE
36 bool
37 default n
38 depends on USE_SAR
39
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060040config WIFI_SAR_CBFS_FILEPATH
41 string "The cbfs file which has WIFI SAR defaults"
Furquan Shaikh31f63202021-03-13 22:34:57 -080042 depends on USE_SAR
43 default ""
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060044
45config DSAR_SET_NUM
46 hex "Number of SAR sets when D-SAR is enabled"
47 default 0x3
48 depends on USE_SAR
49 help
50 There can be up to 3 optional SAR table sets.
51
Karthikeyan Ramasubramanianafeb7b32020-07-23 00:25:25 -060052endif # DRIVERS_WIFI_GENERIC