Kconfig 5.5 KB

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