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_8822CE 46 tristate "Realtek 8822CE PCI wireless network adapter" 47 depends on PCI 48 select RTW88_CORE 49 select RTW88_PCI 50 select RTW88_8822C 51 help 52 Select this option will enable support for 8822CE chipset 53 54 802.11ac PCIe wireless network adapter 55 56config RTW88_8723DE 57 tristate "Realtek 8723DE PCI wireless network adapter" 58 depends on PCI 59 select RTW88_CORE 60 select RTW88_PCI 61 select RTW88_8723D 62 help 63 Select this option will enable support for 8723DE chipset 64 65 802.11n PCIe wireless network adapter 66 67config RTW88_8821CE 68 tristate "Realtek 8821CE PCI wireless network adapter" 69 depends on PCI 70 select RTW88_CORE 71 select RTW88_PCI 72 select RTW88_8821C 73 help 74 Select this option will enable support for 8821CE chipset 75 76 802.11ac PCIe wireless network adapter 77 78config RTW88_DEBUG 79 bool "Realtek rtw88 debug support" 80 depends on RTW88_CORE 81 help 82 Enable debug support 83 84 If unsure, say Y to simplify debug problems 85 86config RTW88_DEBUGFS 87 bool "Realtek rtw88 debugfs support" 88 depends on RTW88_CORE 89 help 90 Enable debug support 91 92 If unsure, say Y to simplify debug problems 93 94endif 95