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_USB
20	tristate
21
22config RTW88_8822B
23	tristate
24
25config RTW88_8822C
26	tristate
27
28config RTW88_8723D
29	tristate
30
31config RTW88_8821C
32	tristate
33
34config RTW88_8822BE
35	tristate "Realtek 8822BE PCI wireless network adapter"
36	depends on PCI
37	select RTW88_CORE
38	select RTW88_PCI
39	select RTW88_8822B
40	help
41	  Select this option will enable support for 8822BE chipset
42
43	  802.11ac PCIe wireless network adapter
44
45config RTW88_8822BU
46	tristate "Realtek 8822BU USB wireless network adapter"
47	depends on USB
48	select RTW88_CORE
49	select RTW88_USB
50	select RTW88_8822B
51	help
52	  Select this option will enable support for 8822BU chipset
53
54	  802.11ac USB wireless network adapter
55
56config RTW88_8822CE
57	tristate "Realtek 8822CE PCI wireless network adapter"
58	depends on PCI
59	select RTW88_CORE
60	select RTW88_PCI
61	select RTW88_8822C
62	help
63	  Select this option will enable support for 8822CE chipset
64
65	  802.11ac PCIe wireless network adapter
66
67config RTW88_8822CU
68	tristate "Realtek 8822CU USB wireless network adapter"
69	depends on USB
70	select RTW88_CORE
71	select RTW88_USB
72	select RTW88_8822C
73	help
74	  Select this option will enable support for 8822CU chipset
75
76	  802.11ac USB wireless network adapter
77
78config RTW88_8723DE
79	tristate "Realtek 8723DE PCI wireless network adapter"
80	depends on PCI
81	select RTW88_CORE
82	select RTW88_PCI
83	select RTW88_8723D
84	help
85	  Select this option will enable support for 8723DE chipset
86
87	  802.11n PCIe wireless network adapter
88
89config RTW88_8723DU
90	tristate "Realtek 8723DU USB wireless network adapter"
91	depends on USB
92	select RTW88_CORE
93	select RTW88_USB
94	select RTW88_8723D
95	help
96	  Select this option will enable support for 8723DU chipset
97
98	  802.11n USB wireless network adapter
99
100config RTW88_8821CE
101	tristate "Realtek 8821CE PCI wireless network adapter"
102	depends on PCI
103	select RTW88_CORE
104	select RTW88_PCI
105	select RTW88_8821C
106	help
107	  Select this option will enable support for 8821CE chipset
108
109	  802.11ac PCIe wireless network adapter
110
111config RTW88_8821CU
112	tristate "Realtek 8821CU USB wireless network adapter"
113	depends on USB
114	select RTW88_CORE
115	select RTW88_USB
116	select RTW88_8821C
117	help
118	  Select this option will enable support for 8821CU chipset
119
120	  802.11ac USB wireless network adapter
121
122config RTW88_DEBUG
123	bool "Realtek rtw88 debug support"
124	depends on RTW88_CORE
125	help
126	  Enable debug support
127
128	  If unsure, say Y to simplify debug problems
129
130config RTW88_DEBUGFS
131	bool "Realtek rtw88 debugfs support"
132	depends on RTW88_CORE
133	help
134	  Enable debug support
135
136	  If unsure, say Y to simplify debug problems
137
138endif
139