• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## SPDX-License-Identifier: GPL-2.0-only
2
3config DRIVERS_WIFI_GENERIC
4	bool
5	default n
6	help
7	  When enabled, add identifiers in ACPI tables that are common
8	  to WiFi chipsets from multiple vendors.
9
10config 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
19config 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
28config USE_SAR
29	bool
30	default n
31	depends on DRIVERS_WIFI_GENERIC
32	help
33	  Enable it when wifi driver uses SAR configuration feature.
34
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
50config WIFI_SAR_CBFS_FILEPATH
51	string "The cbfs file which has WIFI SAR defaults"
52	depends on USE_SAR
53	default ""
54
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
62config 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 ""
75