Kconfig 998 B

1234567891011121314151617181920212223242526272829
  1. config WIL6210
  2. tristate "Wilocity 60g WiFi card wil6210 support"
  3. depends on CFG80211
  4. depends on PCI
  5. default n
  6. ---help---
  7. This module adds support for wireless adapter based on
  8. wil6210 chip by Wilocity. It supports operation on the
  9. 60 GHz band, covered by the IEEE802.11ad standard.
  10. http://wireless.kernel.org/en/users/Drivers/wil6210
  11. If you choose to build it as a module, it will be called
  12. wil6210
  13. config WIL6210_ISR_COR
  14. bool "Use Clear-On-Read mode for ISR registers for wil6210"
  15. depends on WIL6210
  16. default y
  17. ---help---
  18. ISR registers on wil6210 chip may operate in either
  19. COR (Clear-On-Read) or W1C (Write-1-to-Clear) mode.
  20. For production code, use COR (say y); is default since
  21. it saves extra target transaction;
  22. For ISR debug, use W1C (say n); is allows to monitor ISR
  23. registers with debugfs. If COR were used, ISR would
  24. self-clear when accessed for debug purposes, it makes
  25. such monitoring impossible.
  26. Say y unless you debug interrupts