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_8851B 20 tristate 21 22config RTW89_8852A 23 tristate 24 25config RTW89_8852B 26 tristate 27 28config RTW89_8852C 29 tristate 30 31config RTW89_8922A 32 tristate 33 34config RTW89_8851BE 35 tristate "Realtek 8851BE PCI wireless network (Wi-Fi 6) adapter" 36 depends on PCI 37 select RTW89_CORE 38 select RTW89_PCI 39 select RTW89_8851B 40 help 41 Select this option will enable support for 8851BE chipset 42 43 802.11ax PCIe wireless network (Wi-Fi 6) adapter 44 45config RTW89_8852AE 46 tristate "Realtek 8852AE PCI wireless network (Wi-Fi 6) adapter" 47 depends on PCI 48 select RTW89_CORE 49 select RTW89_PCI 50 select RTW89_8852A 51 help 52 Select this option will enable support for 8852AE chipset 53 54 802.11ax PCIe wireless network (Wi-Fi 6) adapter 55 56config RTW89_8852BE 57 tristate "Realtek 8852BE PCI wireless network (Wi-Fi 6) adapter" 58 depends on PCI 59 select RTW89_CORE 60 select RTW89_PCI 61 select RTW89_8852B 62 help 63 Select this option will enable support for 8852BE chipset 64 65 802.11ax PCIe wireless network (Wi-Fi 6) adapter 66 67config RTW89_8852CE 68 tristate "Realtek 8852CE PCI wireless network (Wi-Fi 6E) adapter" 69 depends on PCI 70 select RTW89_CORE 71 select RTW89_PCI 72 select RTW89_8852C 73 help 74 Select this option will enable support for 8852CE chipset 75 76 802.11ax PCIe wireless network (Wi-Fi 6E) adapter 77 78config RTW89_8922AE 79 tristate "Realtek 8922AE PCI wireless network (Wi-Fi 7) adapter" 80 depends on PCI 81 select RTW89_CORE 82 select RTW89_PCI 83 select RTW89_8922A 84 help 85 Select this option will enable support for 8922AE chipset 86 87 802.11be PCIe wireless network (Wi-Fi 7) adapter 88 supporting 2x2 2GHz/5GHz/6GHz 4096-QAM 160MHz channels. 89 90config RTW89_DEBUG 91 bool 92 93config RTW89_DEBUGMSG 94 bool "Realtek rtw89 debug message support" 95 depends on RTW89_CORE 96 select RTW89_DEBUG 97 help 98 Enable debug message support 99 100 If unsure, say Y to simplify debug problems 101 102config RTW89_DEBUGFS 103 bool "Realtek rtw89 debugfs support" 104 depends on RTW89_CORE 105 select RTW89_DEBUG 106 help 107 Enable debugfs support 108 109 If unsure, say Y to simplify debug problems 110 111endif 112