1# SPDX-License-Identifier: GPL-2.0-only 2menuconfig RTW88 3 tristate "Realtek 802.11ac 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.11ac wireless chipsets. 8 9 If you choose to build a module, it'll be called rtw88. 10 11if RTW88 12 13config RTW88_CORE 14 tristate 15 select WANT_DEV_COREDUMP 16 17config RTW88_PCI 18 tristate 19 20config RTW88_SDIO 21 tristate 22 23config RTW88_USB 24 tristate 25 26config RTW88_8822B 27 tristate 28 29config RTW88_8822C 30 tristate 31 32config RTW88_8723D 33 tristate 34 35config RTW88_8821C 36 tristate 37 38config RTW88_8822BE 39 tristate "Realtek 8822BE PCI wireless network adapter" 40 depends on PCI 41 select RTW88_CORE 42 select RTW88_PCI 43 select RTW88_8822B 44 help 45 Select this option will enable support for 8822BE chipset 46 47 802.11ac PCIe wireless network adapter 48 49config RTW88_8822BS 50 tristate "Realtek 8822BS SDIO wireless network adapter" 51 depends on MMC 52 select RTW88_CORE 53 select RTW88_SDIO 54 select RTW88_8822B 55 help 56 Select this option will enable support for 8822BS chipset 57 58 802.11ac SDIO wireless network adapter 59 60config RTW88_8822BU 61 tristate "Realtek 8822BU USB wireless network adapter" 62 depends on USB 63 select RTW88_CORE 64 select RTW88_USB 65 select RTW88_8822B 66 help 67 Select this option will enable support for 8822BU chipset 68 69 802.11ac USB wireless network adapter 70 71config RTW88_8822CE 72 tristate "Realtek 8822CE PCI wireless network adapter" 73 depends on PCI 74 select RTW88_CORE 75 select RTW88_PCI 76 select RTW88_8822C 77 help 78 Select this option will enable support for 8822CE chipset 79 80 802.11ac PCIe wireless network adapter 81 82config RTW88_8822CS 83 tristate "Realtek 8822CS SDIO wireless network adapter" 84 depends on MMC 85 select RTW88_CORE 86 select RTW88_SDIO 87 select RTW88_8822C 88 help 89 Select this option will enable support for 8822CS chipset 90 91 802.11ac SDIO wireless network adapter 92 93config RTW88_8822CU 94 tristate "Realtek 8822CU USB wireless network adapter" 95 depends on USB 96 select RTW88_CORE 97 select RTW88_USB 98 select RTW88_8822C 99 help 100 Select this option will enable support for 8822CU chipset 101 102 802.11ac USB wireless network adapter 103 104config RTW88_8723DE 105 tristate "Realtek 8723DE PCI wireless network adapter" 106 depends on PCI 107 select RTW88_CORE 108 select RTW88_PCI 109 select RTW88_8723D 110 help 111 Select this option will enable support for 8723DE chipset 112 113 802.11n PCIe wireless network adapter 114 115config RTW88_8723DS 116 tristate "Realtek 8723DS SDIO wireless network adapter" 117 depends on MMC 118 select RTW88_CORE 119 select RTW88_SDIO 120 select RTW88_8723D 121 help 122 Select this option will enable support for 8723DS chipset 123 124 802.11n SDIO wireless network adapter 125 126config RTW88_8723DU 127 tristate "Realtek 8723DU USB wireless network adapter" 128 depends on USB 129 select RTW88_CORE 130 select RTW88_USB 131 select RTW88_8723D 132 help 133 Select this option will enable support for 8723DU chipset 134 135 802.11n USB wireless network adapter 136 137config RTW88_8821CE 138 tristate "Realtek 8821CE PCI wireless network adapter" 139 depends on PCI 140 select RTW88_CORE 141 select RTW88_PCI 142 select RTW88_8821C 143 help 144 Select this option will enable support for 8821CE chipset 145 146 802.11ac PCIe wireless network adapter 147 148config RTW88_8821CS 149 tristate "Realtek 8821CS SDIO wireless network adapter" 150 depends on MMC 151 select RTW88_CORE 152 select RTW88_SDIO 153 select RTW88_8821C 154 help 155 Select this option will enable support for 8821CS chipset 156 157 802.11ac SDIO wireless network adapter 158 159config RTW88_8821CU 160 tristate "Realtek 8821CU USB wireless network adapter" 161 depends on USB 162 select RTW88_CORE 163 select RTW88_USB 164 select RTW88_8821C 165 help 166 Select this option will enable support for 8821CU chipset 167 168 802.11ac USB wireless network adapter 169 170config RTW88_DEBUG 171 bool "Realtek rtw88 debug support" 172 depends on RTW88_CORE 173 help 174 Enable debug support 175 176 If unsure, say Y to simplify debug problems 177 178config RTW88_DEBUGFS 179 bool "Realtek rtw88 debugfs support" 180 depends on RTW88_CORE 181 help 182 Enable debug support 183 184 If unsure, say Y to simplify debug problems 185 186endif 187