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