Kconfig 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menuconfig 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. If you choose to build a module, it'll be called rtw88.
  9. if RTW88
  10. config RTW88_CORE
  11. tristate
  12. config RTW88_PCI
  13. tristate
  14. config RTW88_8822B
  15. tristate
  16. config RTW88_8822C
  17. tristate
  18. config RTW88_8723D
  19. tristate
  20. config RTW88_8821C
  21. tristate
  22. config RTW88_8822BE
  23. tristate "Realtek 8822BE PCI wireless network adapter"
  24. depends on PCI
  25. select RTW88_CORE
  26. select RTW88_PCI
  27. select RTW88_8822B
  28. help
  29. Select this option will enable support for 8822BE chipset
  30. 802.11ac PCIe wireless network adapter
  31. config RTW88_8822CE
  32. tristate "Realtek 8822CE PCI wireless network adapter"
  33. depends on PCI
  34. select RTW88_CORE
  35. select RTW88_PCI
  36. select RTW88_8822C
  37. help
  38. Select this option will enable support for 8822CE chipset
  39. 802.11ac PCIe wireless network adapter
  40. config RTW88_8723DE
  41. tristate "Realtek 8723DE PCI wireless network adapter"
  42. depends on PCI
  43. select RTW88_CORE
  44. select RTW88_PCI
  45. select RTW88_8723D
  46. help
  47. Select this option will enable support for 8723DE chipset
  48. 802.11n PCIe wireless network adapter
  49. config RTW88_8821CE
  50. tristate "Realtek 8821CE PCI wireless network adapter"
  51. depends on PCI
  52. select RTW88_CORE
  53. select RTW88_PCI
  54. select RTW88_8821C
  55. help
  56. Select this option will enable support for 8821CE chipset
  57. 802.11ac PCIe wireless network adapter
  58. config RTW88_DEBUG
  59. bool "Realtek rtw88 debug support"
  60. depends on RTW88_CORE
  61. help
  62. Enable debug support
  63. If unsure, say Y to simplify debug problems
  64. config RTW88_DEBUGFS
  65. bool "Realtek rtw88 debugfs support"
  66. depends on RTW88_CORE
  67. help
  68. Enable debug support
  69. If unsure, say Y to simplify debug problems
  70. endif