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