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_8822B 20 tristate 21 22config RTW88_8822C 23 tristate 24 25config RTW88_8822BE 26 tristate "Realtek 8822BE PCI wireless network adapter" 27 depends on PCI 28 select RTW88_CORE 29 select RTW88_PCI 30 select RTW88_8822B 31 help 32 Select this option will enable support for 8822BE chipset 33 34 802.11ac PCIe wireless network adapter 35 36config RTW88_8822CE 37 tristate "Realtek 8822CE PCI wireless network adapter" 38 depends on PCI 39 select RTW88_CORE 40 select RTW88_PCI 41 select RTW88_8822C 42 help 43 Select this option will enable support for 8822CE chipset 44 45 802.11ac PCIe wireless network adapter 46 47config RTW88_8723DE 48 bool "Realtek 8723DE PCI wireless network adapter" 49 depends on PCI 50 select RTW88_CORE 51 select RTW88_PCI 52 help 53 Select this option will enable support for 8723DE chipset 54 55 802.11n PCIe wireless network adapter 56 57config RTW88_DEBUG 58 bool "Realtek rtw88 debug support" 59 depends on RTW88_CORE 60 help 61 Enable debug support 62 63 If unsure, say Y to simplify debug problems 64 65config RTW88_DEBUGFS 66 bool "Realtek rtw88 debugfs support" 67 depends on RTW88_CORE 68 help 69 Enable debug support 70 71 If unsure, say Y to simplify debug problems 72 73endif 74