summaryrefslogtreecommitdiffstats
path: root/src/drivers/wifi/generic/Kconfig
blob: 4065f6713f73e2d153c5b581b47e345de05c8bd6 (plain)
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
## SPDX-License-Identifier: GPL-2.0-only

config DRIVERS_WIFI_GENERIC
	bool
	default n
	help
	  When enabled, add identifiers in ACPI tables that are common
	  to WiFi chipsets from multiple vendors.

config DRIVERS_INTEL_WIFI
	bool "Support Intel PCI-e WiFi adapters"
	depends on PCI
	default y if PCIEXP_PLUGIN_SUPPORT
	select DRIVERS_WIFI_GENERIC
	help
	   When enabled, add identifiers in ACPI and SMBIOS tables to
	   make OS drivers work with certain Intel PCI-e WiFi chipsets.

config DRIVERS_MTK_WIFI
	bool "Support MediaTek PCI-e WiFi adapters"
	depends on PCI
	default y if PCIEXP_PLUGIN_SUPPORT
	select DRIVERS_WIFI_GENERIC
	help
	  When enabled, add identifiers in ACPI tables to make OS
	  drivers work with certain MediaTek PCI-e WiFi chipsets.

config USE_SAR
	bool
	default n
	depends on DRIVERS_WIFI_GENERIC
	help
	  Enable it when wifi driver uses SAR configuration feature.

config SAR_ENABLE
	bool
	default n
	depends on USE_SAR

config DSAR_ENABLE
	bool
	default n
	depends on USE_SAR

config GEO_SAR_ENABLE
	bool
	default n
	depends on USE_SAR

config WIFI_SAR_CBFS_FILEPATH
	string "The cbfs file which has WIFI SAR defaults"
	depends on USE_SAR
	default ""

config DSAR_SET_NUM
	hex "Number of SAR sets when D-SAR is enabled"
	default 0x3
	depends on USE_SAR
	help
	  There can be up to 3 optional SAR table sets.

config USE_MTCL
	bool
	default n
	depends on DRIVERS_MTK_WIFI
	help
	  When enabled, adds the MTCL function for MediaTek WiFi chipsets.
	  This function supplies country list information used to enable or
	  disable operation on 5.9GHz and 6GHz bands.

config WIFI_MTCL_CBFS_FILEPATH
	string "The cbfs file which has WIFI MTCL defaults"
	depends on USE_MTCL
	default ""