Kconfig 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. config ATH9K_HW
  2. tristate
  3. config ATH9K_COMMON
  4. tristate
  5. select ATH_COMMON
  6. select DEBUG_FS
  7. select RELAY
  8. config ATH9K_DFS_DEBUGFS
  9. def_bool y
  10. depends on ATH9K_DEBUGFS && ATH9K_DFS_CERTIFIED
  11. config ATH9K_BTCOEX_SUPPORT
  12. bool "Atheros bluetooth coexistence support"
  13. depends on (ATH9K || ATH9K_HTC)
  14. default y
  15. ---help---
  16. Say Y, if you want to use the ath9k/ath9k_htc radios together with
  17. Bluetooth modules in the same system.
  18. config ATH9K
  19. tristate "Atheros 802.11n wireless cards support"
  20. depends on MAC80211 && HAS_DMA
  21. select ATH9K_HW
  22. select MAC80211_LEDS
  23. select LEDS_CLASS
  24. select NEW_LEDS
  25. select ATH9K_COMMON
  26. ---help---
  27. This module adds support for wireless adapters based on
  28. Atheros IEEE 802.11n AR5008, AR9001 and AR9002 family
  29. of chipsets. For a specific list of supported external
  30. cards, laptops that already ship with these cards and
  31. APs that come with these cards refer to ath9k wiki
  32. products page:
  33. http://wireless.kernel.org/en/users/Drivers/ath9k/products
  34. If you choose to build a module, it'll be called ath9k.
  35. config ATH9K_PCI
  36. bool "Atheros ath9k PCI/PCIe bus support"
  37. default y
  38. depends on ATH9K && PCI
  39. ---help---
  40. This option enables the PCI bus support in ath9k.
  41. Say Y, if you have a compatible PCI/PCIe wireless card.
  42. config ATH9K_AHB
  43. bool "Atheros ath9k AHB bus support"
  44. depends on ATH9K
  45. default n
  46. ---help---
  47. This option enables the AHB bus support in ath9k.
  48. Say Y, if you have a SoC with a compatible built-in
  49. wireless MAC. Say N if unsure.
  50. config ATH9K_DEBUGFS
  51. bool "Atheros ath9k debugging"
  52. depends on ATH9K && DEBUG_FS
  53. select MAC80211_DEBUGFS
  54. select RELAY
  55. ---help---
  56. Say Y, if you need access to ath9k's statistics for
  57. interrupts, rate control, etc.
  58. Also required for changing debug message flags at run time.
  59. config ATH9K_STATION_STATISTICS
  60. bool "Detailed station statistics"
  61. depends on ATH9K && ATH9K_DEBUGFS && DEBUG_FS
  62. select MAC80211_DEBUGFS
  63. default n
  64. ---help---
  65. This option enables detailed statistics for association stations.
  66. config ATH9K_DFS_CERTIFIED
  67. bool "Atheros DFS support for certified platforms"
  68. depends on ATH9K && CFG80211_CERTIFICATION_ONUS
  69. default n
  70. ---help---
  71. This option enables DFS support for initiating radiation on
  72. ath9k. There is no way to dynamically detect if a card was DFS
  73. certified and as such this is left as a build time option. This
  74. option should only be enabled by system integrators that can
  75. guarantee that all the platforms that their kernel will run on
  76. have obtained appropriate regulatory body certification for a
  77. respective Atheros card by using ath9k on the target shipping
  78. platforms.
  79. This is currently only a placeholder for future DFS support,
  80. as DFS support requires more components that still need to be
  81. developed. At this point enabling this option won't do anything
  82. except increase code size.
  83. config ATH9K_DYNACK
  84. bool "Atheros ath9k ACK timeout estimation algorithm (EXPERIMENTAL)"
  85. depends on ATH9K
  86. default n
  87. ---help---
  88. This option enables ath9k dynamic ACK timeout estimation algorithm
  89. based on ACK frame RX timestamp, TX frame timestamp and frame
  90. duration
  91. config ATH9K_TX99
  92. bool "Atheros ath9k TX99 testing support"
  93. depends on ATH9K_DEBUGFS && CFG80211_CERTIFICATION_ONUS
  94. default n
  95. ---help---
  96. Say N. This should only be enabled on systems undergoing
  97. certification testing and evaluation in a controlled environment.
  98. Enabling this will only enable TX99 support, all other modes of
  99. operation will be disabled.
  100. TX99 support enables Specific Absorption Rate (SAR) testing.
  101. SAR is the unit of measurement for the amount of radio frequency(RF)
  102. absorbed by the body when using a wireless device. The RF exposure
  103. limits used are expressed in the terms of SAR, which is a measure
  104. of the electric and magnetic field strength and power density for
  105. transmitters operating at frequencies from 300 kHz to 100 GHz.
  106. Regulatory bodies around the world require that wireless device
  107. be evaluated to meet the RF exposure limits set forth in the
  108. governmental SAR regulations.
  109. config ATH9K_WOW
  110. bool "Wake on Wireless LAN support (EXPERIMENTAL)"
  111. depends on ATH9K && PM
  112. default n
  113. ---help---
  114. This option enables Wake on Wireless LAN support for certain cards.
  115. Currently, AR9462 is supported.
  116. config ATH9K_RFKILL
  117. bool "Atheros ath9k rfkill support" if EXPERT
  118. depends on ATH9K
  119. depends on RFKILL=y || RFKILL=ATH9K
  120. default y
  121. help
  122. Say Y to have ath9k poll the RF-Kill GPIO every couple of
  123. seconds. Turn off to save power, but enable it if you have
  124. a platform that can toggle the RF-Kill GPIO.
  125. config ATH9K_CHANNEL_CONTEXT
  126. bool "Channel Context support"
  127. depends on ATH9K
  128. default n
  129. ---help---
  130. This option enables channel context support in ath9k, which is needed
  131. for multi-channel concurrency. Enable this if P2P PowerSave support
  132. is required.
  133. config ATH9K_PCOEM
  134. bool "Atheros ath9k support for PC OEM cards" if EXPERT
  135. depends on ATH9K
  136. default y
  137. config ATH9K_HTC
  138. tristate "Atheros HTC based wireless cards support"
  139. depends on USB && MAC80211
  140. select ATH9K_HW
  141. select MAC80211_LEDS
  142. select LEDS_CLASS
  143. select NEW_LEDS
  144. select ATH9K_COMMON
  145. ---help---
  146. Support for Atheros HTC based cards.
  147. Chipsets supported: AR9271
  148. For more information: http://wireless.kernel.org/en/users/Drivers/ath9k_htc
  149. The built module will be ath9k_htc.
  150. config ATH9K_HTC_DEBUGFS
  151. bool "Atheros ath9k_htc debugging"
  152. depends on ATH9K_HTC && DEBUG_FS
  153. ---help---
  154. Say Y, if you need access to ath9k_htc's statistics.