Kconfig 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # SPDX-License-Identifier: ISC
  2. config ATH_COMMON
  3. tristate
  4. config WLAN_VENDOR_ATH
  5. bool "Atheros/Qualcomm devices"
  6. default y
  7. help
  8. If you have a wireless card belonging to this class, say Y.
  9. Note that the answer to this question doesn't directly affect the
  10. kernel: saying N will just cause the configurator to skip all the
  11. questions about these cards. If you say Y, you will be asked for
  12. your specific card in the following questions.
  13. For more information and documentation on this module you can visit:
  14. https://wireless.wiki.kernel.org/en/users/Drivers/ath
  15. For information on all Atheros wireless drivers visit:
  16. https://wireless.wiki.kernel.org/en/users/Drivers/Atheros
  17. if WLAN_VENDOR_ATH
  18. config ATH_DEBUG
  19. bool "Atheros wireless debugging"
  20. help
  21. Say Y, if you want to debug atheros wireless drivers.
  22. Right now only ath9k makes use of this.
  23. config ATH_TRACEPOINTS
  24. bool "Atheros wireless tracing"
  25. depends on ATH_DEBUG
  26. depends on EVENT_TRACING
  27. help
  28. This option enables tracepoints for atheros wireless drivers.
  29. Currently, ath9k makes use of this facility.
  30. config ATH_REG_DYNAMIC_USER_REG_HINTS
  31. bool "Atheros dynamic user regulatory hints"
  32. depends on CFG80211_CERTIFICATION_ONUS
  33. default n
  34. help
  35. Say N. This should only be enabled in countries where
  36. this feature is explicitly allowed and only on cards that
  37. specifically have been tested for this.
  38. config ATH_REG_DYNAMIC_USER_CERT_TESTING
  39. bool "Atheros dynamic user regulatory testing"
  40. depends on ATH_REG_DYNAMIC_USER_REG_HINTS && CFG80211_CERTIFICATION_ONUS
  41. default n
  42. help
  43. Say N. This should only be enabled on systems
  44. undergoing certification testing.
  45. source "drivers/net/wireless/ath/ath5k/Kconfig"
  46. source "drivers/net/wireless/ath/ath9k/Kconfig"
  47. source "drivers/net/wireless/ath/carl9170/Kconfig"
  48. source "drivers/net/wireless/ath/ath6kl/Kconfig"
  49. source "drivers/net/wireless/ath/ar5523/Kconfig"
  50. source "drivers/net/wireless/ath/wil6210/Kconfig"
  51. source "drivers/net/wireless/ath/ath10k/Kconfig"
  52. source "drivers/net/wireless/ath/wcn36xx/Kconfig"
  53. source "drivers/net/wireless/ath/ath11k/Kconfig"
  54. endif