0001 # SPDX-License-Identifier: GPL-2.0-only
0002 menuconfig RTW88
0003 tristate "Realtek 802.11ac 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.11ac wireless chipsets.
0008
0009 If you choose to build a module, it'll be called rtw88.
0010
0011 if RTW88
0012
0013 config RTW88_CORE
0014 tristate
0015
0016 config RTW88_PCI
0017 tristate
0018
0019 config RTW88_8822B
0020 tristate
0021
0022 config RTW88_8822C
0023 tristate
0024
0025 config RTW88_8723D
0026 tristate
0027
0028 config RTW88_8821C
0029 tristate
0030
0031 config RTW88_8822BE
0032 tristate "Realtek 8822BE PCI wireless network adapter"
0033 depends on PCI
0034 select RTW88_CORE
0035 select RTW88_PCI
0036 select RTW88_8822B
0037 help
0038 Select this option will enable support for 8822BE chipset
0039
0040 802.11ac PCIe wireless network adapter
0041
0042 config RTW88_8822CE
0043 tristate "Realtek 8822CE PCI wireless network adapter"
0044 depends on PCI
0045 select RTW88_CORE
0046 select RTW88_PCI
0047 select RTW88_8822C
0048 help
0049 Select this option will enable support for 8822CE chipset
0050
0051 802.11ac PCIe wireless network adapter
0052
0053 config RTW88_8723DE
0054 tristate "Realtek 8723DE PCI wireless network adapter"
0055 depends on PCI
0056 select RTW88_CORE
0057 select RTW88_PCI
0058 select RTW88_8723D
0059 help
0060 Select this option will enable support for 8723DE chipset
0061
0062 802.11n PCIe wireless network adapter
0063
0064 config RTW88_8821CE
0065 tristate "Realtek 8821CE PCI wireless network adapter"
0066 depends on PCI
0067 select RTW88_CORE
0068 select RTW88_PCI
0069 select RTW88_8821C
0070 help
0071 Select this option will enable support for 8821CE chipset
0072
0073 802.11ac PCIe wireless network adapter
0074
0075 config RTW88_DEBUG
0076 bool "Realtek rtw88 debug support"
0077 depends on RTW88_CORE
0078 help
0079 Enable debug support
0080
0081 If unsure, say Y to simplify debug problems
0082
0083 config RTW88_DEBUGFS
0084 bool "Realtek rtw88 debugfs support"
0085 depends on RTW88_CORE
0086 help
0087 Enable debug support
0088
0089 If unsure, say Y to simplify debug problems
0090
0091 endif