Kconfig 1.3 KB

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