xref: /linux/drivers/net/wireless/realtek/rtw88/Kconfig (revision ba0fbe236fb8a7b992e82d6eafb03a600f5eba43)
1# SPDX-License-Identifier: GPL-2.0-only
2menuconfig RTW88
3	tristate "Realtek 802.11ac wireless chips support"
4	depends on MAC80211
5	help
6	  This module adds support for mac80211-based wireless drivers that
7	  enables Realtek IEEE 802.11ac wireless chipsets.
8
9	  If you choose to build a module, it'll be called rtw88.
10
11if RTW88
12
13config RTW88_CORE
14	tristate
15
16config RTW88_PCI
17	tristate
18
19config RTW88_8822C
20	tristate
21
22config RTW88_8822BE
23	bool "Realtek 8822BE PCI wireless network adapter"
24	depends on PCI
25	select RTW88_CORE
26	select RTW88_PCI
27	help
28	  Select this option will enable support for 8822BE chipset
29
30	  802.11ac PCIe wireless network adapter
31
32config RTW88_8822CE
33	tristate "Realtek 8822CE PCI wireless network adapter"
34	depends on PCI
35	select RTW88_CORE
36	select RTW88_PCI
37	select RTW88_8822C
38	help
39	  Select this option will enable support for 8822CE chipset
40
41	  802.11ac PCIe wireless network adapter
42
43config RTW88_8723DE
44	bool "Realtek 8723DE PCI wireless network adapter"
45	depends on PCI
46	select RTW88_CORE
47	select RTW88_PCI
48	help
49	  Select this option will enable support for 8723DE chipset
50
51	  802.11n PCIe wireless network adapter
52
53config RTW88_DEBUG
54	bool "Realtek rtw88 debug support"
55	depends on RTW88_CORE
56	help
57	  Enable debug support
58
59	  If unsure, say Y to simplify debug problems
60
61config RTW88_DEBUGFS
62	bool "Realtek rtw88 debugfs support"
63	depends on RTW88_CORE
64	help
65	  Enable debug support
66
67	  If unsure, say Y to simplify debug problems
68
69endif
70