Kconfig 1.7 KB

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