blob: 4065f6713f73e2d153c5b581b47e345de05c8bd6 [file] [log] [blame]
Martin Roth2b65ba02024-02-16 10:43:48 -07001## SPDX-License-Identifier: GPL-2.0-only
2
Karthikeyan Ramasubramanianafeb7b32020-07-23 00:25:25 -06003config DRIVERS_WIFI_GENERIC
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -06004 bool
5 default n
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -06006 help
7 When enabled, add identifiers in ACPI tables that are common
8 to WiFi chipsets from multiple vendors.
9
Furquan Shaikh8262a2c2020-10-10 19:53:00 -070010config DRIVERS_INTEL_WIFI
11 bool "Support Intel PCI-e WiFi adapters"
12 depends on PCI
13 default y if PCIEXP_PLUGIN_SUPPORT
14 select DRIVERS_WIFI_GENERIC
15 help
16 When enabled, add identifiers in ACPI and SMBIOS tables to
17 make OS drivers work with certain Intel PCI-e WiFi chipsets.
18
David Ruthea8330e2023-12-06 21:39:54 +000019config DRIVERS_MTK_WIFI
20 bool "Support MediaTek PCI-e WiFi adapters"
21 depends on PCI
22 default y if PCIEXP_PLUGIN_SUPPORT
23 select DRIVERS_WIFI_GENERIC
24 help
25 When enabled, add identifiers in ACPI tables to make OS
26 drivers work with certain MediaTek PCI-e WiFi chipsets.
27
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060028config USE_SAR
29 bool
30 default n
David Ruthfe33b2d2024-02-02 16:04:25 +000031 depends on DRIVERS_WIFI_GENERIC
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060032 help
33 Enable it when wifi driver uses SAR configuration feature.
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060034
35config SAR_ENABLE
36 bool
37 default n
38 depends on USE_SAR
39
40config DSAR_ENABLE
41 bool
42 default n
43 depends on USE_SAR
44
45config GEO_SAR_ENABLE
46 bool
47 default n
48 depends on USE_SAR
49
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060050config WIFI_SAR_CBFS_FILEPATH
51 string "The cbfs file which has WIFI SAR defaults"
Furquan Shaikh31f63202021-03-13 22:34:57 -080052 depends on USE_SAR
53 default ""
Karthikeyan Ramasubramanianfd5d7882019-05-29 15:09:42 -060054
55config DSAR_SET_NUM
56 hex "Number of SAR sets when D-SAR is enabled"
57 default 0x3
58 depends on USE_SAR
59 help
60 There can be up to 3 optional SAR table sets.
61
David Ruthea8330e2023-12-06 21:39:54 +000062config USE_MTCL
63 bool
64 default n
65 depends on DRIVERS_MTK_WIFI
66 help
67 When enabled, adds the MTCL function for MediaTek WiFi chipsets.
68 This function supplies country list information used to enable or
69 disable operation on 5.9GHz and 6GHz bands.
70
71config WIFI_MTCL_CBFS_FILEPATH
72 string "The cbfs file which has WIFI MTCL defaults"
73 depends on USE_MTCL
74 default ""