cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Kconfig (1868B)


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