Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # SPDX-License-Identifier: ISC
  2. config WIL6210
  3. tristate "Wilocity 60g WiFi card wil6210 support"
  4. select WANT_DEV_COREDUMP
  5. select CRC32
  6. depends on CFG80211
  7. depends on PCI
  8. default n
  9. help
  10. This module adds support for wireless adapter based on
  11. wil6210 chip by Wilocity. It supports operation on the
  12. 60 GHz band, covered by the IEEE802.11ad standard.
  13. https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
  14. If you choose to build it as a module, it will be called
  15. wil6210
  16. config WIL6210_ISR_COR
  17. bool "Use Clear-On-Read mode for ISR registers for wil6210"
  18. depends on WIL6210
  19. default y
  20. help
  21. ISR registers on wil6210 chip may operate in either
  22. COR (Clear-On-Read) or W1C (Write-1-to-Clear) mode.
  23. For production code, use COR (say y); is default since
  24. it saves extra target transaction;
  25. For ISR debug, use W1C (say n); is allows to monitor ISR
  26. registers with debugfs. If COR were used, ISR would
  27. self-clear when accessed for debug purposes, it makes
  28. such monitoring impossible.
  29. Say y unless you debug interrupts
  30. config WIL6210_TRACING
  31. bool "wil6210 tracing support"
  32. depends on WIL6210
  33. depends on EVENT_TRACING
  34. default n
  35. help
  36. Say Y here to enable tracepoints for the wil6210 driver
  37. using the kernel tracing infrastructure. Select this
  38. option if you are interested in debugging the driver.
  39. If unsure, say Y to make it easier to debug problems.
  40. config WIL6210_DEBUGFS
  41. bool "wil6210 debugfs support"
  42. depends on WIL6210
  43. depends on DEBUG_FS
  44. default y
  45. help
  46. Say Y here to enable wil6210 debugfs support, using the
  47. kernel debugfs infrastructure. Select this
  48. option if you are interested in debugging the driver.
  49. If unsure, say Y to make it easier to debug problems.