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 16config RTW88_PCI 17 tristate 18 19config RTW88_USB 20 tristate 21 22config RTW88_8822B 23 tristate 24 25config RTW88_8822C 26 tristate 27 28config RTW88_8723D 29 tristate 30 31config RTW88_8821C 32 tristate 33 34config RTW88_8822BE 35 tristate "Realtek 8822BE PCI wireless network adapter" 36 depends on PCI 37 select RTW88_CORE 38 select RTW88_PCI 39 select RTW88_8822B 40 help 41 Select this option will enable support for 8822BE chipset 42 43 802.11ac PCIe wireless network adapter 44 45config RTW88_8822BU 46 tristate "Realtek 8822BU USB wireless network adapter" 47 depends on USB 48 select RTW88_CORE 49 select RTW88_USB 50 select RTW88_8822B 51 help 52 Select this option will enable support for 8822BU chipset 53 54 802.11ac USB wireless network adapter 55 56config RTW88_8822CE 57 tristate "Realtek 8822CE PCI wireless network adapter" 58 depends on PCI 59 select RTW88_CORE 60 select RTW88_PCI 61 select RTW88_8822C 62 help 63 Select this option will enable support for 8822CE chipset 64 65 802.11ac PCIe wireless network adapter 66 67config RTW88_8723DE 68 tristate "Realtek 8723DE PCI wireless network adapter" 69 depends on PCI 70 select RTW88_CORE 71 select RTW88_PCI 72 select RTW88_8723D 73 help 74 Select this option will enable support for 8723DE chipset 75 76 802.11n PCIe wireless network adapter 77 78config RTW88_8821CE 79 tristate "Realtek 8821CE PCI wireless network adapter" 80 depends on PCI 81 select RTW88_CORE 82 select RTW88_PCI 83 select RTW88_8821C 84 help 85 Select this option will enable support for 8821CE chipset 86 87 802.11ac PCIe wireless network adapter 88 89config RTW88_8821CU 90 tristate "Realtek 8821CU USB wireless network adapter" 91 depends on USB 92 select RTW88_CORE 93 select RTW88_USB 94 select RTW88_8821C 95 help 96 Select this option will enable support for 8821CU chipset 97 98 802.11ac USB wireless network adapter 99 100config RTW88_DEBUG 101 bool "Realtek rtw88 debug support" 102 depends on RTW88_CORE 103 help 104 Enable debug support 105 106 If unsure, say Y to simplify debug problems 107 108config RTW88_DEBUGFS 109 bool "Realtek rtw88 debugfs support" 110 depends on RTW88_CORE 111 help 112 Enable debug support 113 114 If unsure, say Y to simplify debug problems 115 116endif 117