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_8852AE
20	tristate "Realtek 8852AE PCI wireless network adapter"
21	depends on PCI
22	select RTW89_CORE
23	select RTW89_PCI
24	help
25	  Select this option will enable support for 8852AE chipset
26
27	  802.11ax PCIe wireless network adapter
28
29config RTW89_DEBUG
30	bool
31
32config RTW89_DEBUGMSG
33	bool "Realtek rtw89 debug message support"
34	depends on RTW89_CORE
35	select RTW89_DEBUG
36	help
37	  Enable debug message support
38
39	  If unsure, say Y to simplify debug problems
40
41config RTW89_DEBUGFS
42	bool "Realtek rtw89 debugfs support"
43	depends on RTW89_CORE
44	select RTW89_DEBUG
45	help
46	  Enable debugfs support
47
48	  If unsure, say Y to simplify debug problems
49
50endif
51