0001 # SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
0002 menuconfig RTW89
0003 tristate "Realtek 802.11ax wireless chips support"
0004 depends on MAC80211
0005 help
0006 This module adds support for mac80211-based wireless drivers that
0007 enables Realtek IEEE 802.11ax wireless chipsets.
0008
0009 If you choose to build a module, it'll be called rtw89.
0010
0011 if RTW89
0012
0013 config RTW89_CORE
0014 tristate
0015
0016 config RTW89_PCI
0017 tristate
0018
0019 config RTW89_8852A
0020 tristate
0021
0022 config RTW89_8852C
0023 tristate
0024
0025 config RTW89_8852AE
0026 tristate "Realtek 8852AE PCI wireless network (Wi-Fi 6) adapter"
0027 depends on PCI
0028 select RTW89_CORE
0029 select RTW89_PCI
0030 select RTW89_8852A
0031 help
0032 Select this option will enable support for 8852AE chipset
0033
0034 802.11ax PCIe wireless network (Wi-Fi 6) adapter
0035
0036 config RTW89_8852CE
0037 tristate "Realtek 8852CE PCI wireless network (Wi-Fi 6E) adapter"
0038 depends on PCI
0039 select RTW89_CORE
0040 select RTW89_PCI
0041 select RTW89_8852C
0042 help
0043 Select this option will enable support for 8852CE chipset
0044
0045 802.11ax PCIe wireless network (Wi-Fi 6E) adapter
0046
0047 config RTW89_DEBUG
0048 bool
0049
0050 config RTW89_DEBUGMSG
0051 bool "Realtek rtw89 debug message support"
0052 depends on RTW89_CORE
0053 select RTW89_DEBUG
0054 help
0055 Enable debug message support
0056
0057 If unsure, say Y to simplify debug problems
0058
0059 config RTW89_DEBUGFS
0060 bool "Realtek rtw89 debugfs support"
0061 depends on RTW89_CORE
0062 select RTW89_DEBUG
0063 help
0064 Enable debugfs support
0065
0066 If unsure, say Y to simplify debug problems
0067
0068 endif