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_8822BE
20	bool "Realtek 8822BE PCI wireless network adapter"
21	depends on PCI
22	select RTW88_CORE
23	select RTW88_PCI
24	help
25	  Select this option will enable support for 8822BE chipset
26
27	  802.11ac PCIe wireless network adapter
28
29config RTW88_8822CE
30	bool "Realtek 8822CE PCI wireless network adapter"
31	depends on PCI
32	select RTW88_CORE
33	select RTW88_PCI
34	help
35	  Select this option will enable support for 8822CE chipset
36
37	  802.11ac PCIe wireless network adapter
38
39config RTW88_DEBUG
40	bool "Realtek rtw88 debug support"
41	depends on RTW88_CORE
42	help
43	  Enable debug support
44
45	  If unsure, say Y to simplify debug problems
46
47config RTW88_DEBUGFS
48	bool "Realtek rtw88 debugfs support"
49	depends on RTW88_CORE
50	help
51	  Enable debug support
52
53	  If unsure, say Y to simplify debug problems
54
55endif
56