1# SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2menuconfig RTW89
3	tristate "Realtek 802.11ax 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.11ax wireless chipsets.
8
9	  If you choose to build a module, it'll be called rtw89.
10
11if RTW89
12
13config RTW89_CORE
14	tristate
15
16config RTW89_PCI
17	tristate
18
19config RTW89_8851B
20	tristate
21
22config RTW89_8852A
23	tristate
24
25config RTW89_8852B
26	tristate
27
28config RTW89_8852C
29	tristate
30
31config RTW89_8851BE
32	tristate "Realtek 8851BE PCI wireless network (Wi-Fi 6) adapter"
33	depends on PCI
34	select RTW89_CORE
35	select RTW89_PCI
36	select RTW89_8851B
37	help
38	  Select this option will enable support for 8851BE chipset
39
40	  802.11ax PCIe wireless network (Wi-Fi 6) adapter
41
42config RTW89_8852AE
43	tristate "Realtek 8852AE PCI wireless network (Wi-Fi 6) adapter"
44	depends on PCI
45	select RTW89_CORE
46	select RTW89_PCI
47	select RTW89_8852A
48	help
49	  Select this option will enable support for 8852AE chipset
50
51	  802.11ax PCIe wireless network (Wi-Fi 6) adapter
52
53config RTW89_8852BE
54	tristate "Realtek 8852BE PCI wireless network (Wi-Fi 6) adapter"
55	depends on PCI
56	select RTW89_CORE
57	select RTW89_PCI
58	select RTW89_8852B
59	help
60	  Select this option will enable support for 8852BE chipset
61
62	  802.11ax PCIe wireless network (Wi-Fi 6) adapter
63
64config RTW89_8852CE
65	tristate "Realtek 8852CE PCI wireless network (Wi-Fi 6E) adapter"
66	depends on PCI
67	select RTW89_CORE
68	select RTW89_PCI
69	select RTW89_8852C
70	help
71	  Select this option will enable support for 8852CE chipset
72
73	  802.11ax PCIe wireless network (Wi-Fi 6E) adapter
74
75config RTW89_DEBUG
76	bool
77
78config RTW89_DEBUGMSG
79	bool "Realtek rtw89 debug message support"
80	depends on RTW89_CORE
81	select RTW89_DEBUG
82	help
83	  Enable debug message support
84
85	  If unsure, say Y to simplify debug problems
86
87config RTW89_DEBUGFS
88	bool "Realtek rtw89 debugfs support"
89	depends on RTW89_CORE
90	select RTW89_DEBUG
91	help
92	  Enable debugfs support
93
94	  If unsure, say Y to simplify debug problems
95
96endif
97