Kconfig 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # SPDX-License-Identifier: ISC
  2. config ATH5K
  3. tristate "Atheros 5xxx wireless cards support"
  4. depends on (PCI || ATH25) && MAC80211
  5. select ATH_COMMON
  6. select MAC80211_LEDS if LEDS_CLASS=y || LEDS_CLASS=MAC80211
  7. select ATH5K_AHB if ATH25
  8. select ATH5K_PCI if !ATH25
  9. help
  10. This module adds support for wireless adapters based on
  11. Atheros 5xxx chipset.
  12. Currently the following chip versions are supported:
  13. MAC: AR5211 AR5212
  14. PHY: RF5111/2111 RF5112/2112 RF5413/2413
  15. This driver uses the kernel's mac80211 subsystem.
  16. If you choose to build a module, it'll be called ath5k. Say M if
  17. unsure.
  18. config ATH5K_DEBUG
  19. bool "Atheros 5xxx debugging"
  20. depends on ATH5K
  21. help
  22. Atheros 5xxx debugging messages.
  23. Say Y, if and you will get debug options for ath5k.
  24. To use this, you need to mount debugfs:
  25. mount -t debugfs debug /sys/kernel/debug
  26. You will get access to files under:
  27. /sys/kernel/debug/ath5k/phy0/
  28. To enable debug, pass the debug level to the debug module
  29. parameter. For example:
  30. modprobe ath5k debug=0x00000400
  31. config ATH5K_TRACER
  32. bool "Atheros 5xxx tracer"
  33. depends on ATH5K
  34. depends on EVENT_TRACING
  35. help
  36. Say Y here to enable tracepoints for the ath5k driver
  37. using the kernel tracing infrastructure. Select this
  38. option if you are interested in debugging the driver.
  39. If unsure, say N.
  40. config ATH5K_AHB
  41. bool "Atheros 5xxx AHB bus support"
  42. depends on ATH25 && ATH5K
  43. help
  44. This adds support for WiSoC type chipsets of the 5xxx Atheros
  45. family.
  46. config ATH5K_PCI
  47. bool "Atheros 5xxx PCI bus support"
  48. depends on (!ATH25 && PCI)
  49. help
  50. This adds support for PCI type chipsets of the 5xxx Atheros
  51. family.
  52. config ATH5K_TEST_CHANNELS
  53. bool "Enables testing channels on ath5k"
  54. depends on ATH5K && CFG80211_CERTIFICATION_ONUS
  55. help
  56. This enables non-standard IEEE 802.11 channels on ath5k, which
  57. can be used for research purposes. This option should be disabled
  58. unless doing research.