Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
  2. menuconfig RTW89
  3. tristate "Realtek 802.11ax 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.11ax wireless chipsets.
  8. If you choose to build a module, it'll be called rtw89.
  9. if RTW89
  10. config RTW89_CORE
  11. tristate
  12. config RTW89_PCI
  13. tristate
  14. config RTW89_8852A
  15. tristate
  16. config RTW89_8852C
  17. tristate
  18. config RTW89_8852AE
  19. tristate "Realtek 8852AE PCI wireless network (Wi-Fi 6) adapter"
  20. depends on PCI
  21. select RTW89_CORE
  22. select RTW89_PCI
  23. select RTW89_8852A
  24. help
  25. Select this option will enable support for 8852AE chipset
  26. 802.11ax PCIe wireless network (Wi-Fi 6) adapter
  27. config RTW89_8852CE
  28. tristate "Realtek 8852CE PCI wireless network (Wi-Fi 6E) adapter"
  29. depends on PCI
  30. select RTW89_CORE
  31. select RTW89_PCI
  32. select RTW89_8852C
  33. help
  34. Select this option will enable support for 8852CE chipset
  35. 802.11ax PCIe wireless network (Wi-Fi 6E) adapter
  36. config RTW89_DEBUG
  37. bool
  38. config RTW89_DEBUGMSG
  39. bool "Realtek rtw89 debug message support"
  40. depends on RTW89_CORE
  41. select RTW89_DEBUG
  42. help
  43. Enable debug message support
  44. If unsure, say Y to simplify debug problems
  45. config RTW89_DEBUGFS
  46. bool "Realtek rtw89 debugfs support"
  47. depends on RTW89_CORE
  48. select RTW89_DEBUG
  49. help
  50. Enable debugfs support
  51. If unsure, say Y to simplify debug problems
  52. endif