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_8852B 23 tristate 24 25config RTW89_8852C 26 tristate 27 28config RTW89_8852AE 29 tristate "Realtek 8852AE PCI wireless network (Wi-Fi 6) adapter" 30 depends on PCI 31 select RTW89_CORE 32 select RTW89_PCI 33 select RTW89_8852A 34 help 35 Select this option will enable support for 8852AE chipset 36 37 802.11ax PCIe wireless network (Wi-Fi 6) adapter 38 39config RTW89_8852BE 40 tristate "Realtek 8852BE PCI wireless network (Wi-Fi 6) adapter" 41 depends on PCI 42 select RTW89_CORE 43 select RTW89_PCI 44 select RTW89_8852B 45 help 46 Select this option will enable support for 8852BE chipset 47 48 802.11ax PCIe wireless network (Wi-Fi 6) adapter 49 50config RTW89_8852CE 51 tristate "Realtek 8852CE PCI wireless network (Wi-Fi 6E) adapter" 52 depends on PCI 53 select RTW89_CORE 54 select RTW89_PCI 55 select RTW89_8852C 56 help 57 Select this option will enable support for 8852CE chipset 58 59 802.11ax PCIe wireless network (Wi-Fi 6E) adapter 60 61config RTW89_DEBUG 62 bool 63 64config RTW89_DEBUGMSG 65 bool "Realtek rtw89 debug message support" 66 depends on RTW89_CORE 67 select RTW89_DEBUG 68 help 69 Enable debug message support 70 71 If unsure, say Y to simplify debug problems 72 73config RTW89_DEBUGFS 74 bool "Realtek rtw89 debugfs support" 75 depends on RTW89_CORE 76 select RTW89_DEBUG 77 help 78 Enable debugfs support 79 80 If unsure, say Y to simplify debug problems 81 82endif 83