1config ATH9K_HW 2 tristate 3config ATH9K_COMMON 4 tristate 5config ATH9K_DFS_DEBUGFS 6 def_bool y 7 depends on ATH9K_DEBUGFS && ATH9K_DFS_CERTIFIED 8 9config 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 17config ATH9K 18 tristate "Atheros 802.11n wireless cards support" 19 depends on MAC80211 20 select ATH_COMMON 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 to ath9k wiki 32 products page: 33 34 http://wireless.kernel.org/en/users/Drivers/ath9k/products 35 36 If you choose to build a module, it'll be called ath9k. 37 38config ATH9K_PCI 39 bool "Atheros ath9k PCI/PCIe bus support" 40 default y 41 depends on ATH9K && PCI 42 ---help--- 43 This option enables the PCI bus support in ath9k. 44 45 Say Y, if you have a compatible PCI/PCIe wireless card. 46 47config ATH9K_AHB 48 bool "Atheros ath9k AHB bus support" 49 depends on ATH9K 50 default n 51 ---help--- 52 This option enables the AHB bus support in ath9k. 53 54 Say Y, if you have a SoC with a compatible built-in 55 wireless MAC. Say N if unsure. 56 57config ATH9K_DEBUGFS 58 bool "Atheros ath9k debugging" 59 depends on ATH9K 60 select MAC80211_DEBUGFS 61 ---help--- 62 Say Y, if you need access to ath9k's statistics for 63 interrupts, rate control, etc. 64 65 Also required for changing debug message flags at run time. 66 67config ATH9K_DFS_CERTIFIED 68 bool "Atheros DFS support for certified platforms" 69 depends on ATH9K && CFG80211_CERTIFICATION_ONUS 70 default n 71 ---help--- 72 This option enables DFS support for initiating radiation on 73 ath9k. There is no way to dynamically detect if a card was DFS 74 certified and as such this is left as a build time option. This 75 option should only be enabled by system integrators that can 76 guarantee that all the platforms that their kernel will run on 77 have obtained appropriate regulatory body certification for a 78 respective Atheros card by using ath9k on the target shipping 79 platforms. 80 81 This is currently only a placeholder for future DFS support, 82 as DFS support requires more components that still need to be 83 developed. At this point enabling this option won't do anything 84 except increase code size. 85 86config ATH9K_MAC_DEBUG 87 bool "Atheros MAC statistics" 88 depends on ATH9K_DEBUGFS 89 default y 90 ---help--- 91 This option enables collection of statistics for Rx/Tx status 92 data and some other MAC related statistics 93 94config ATH9K_RATE_CONTROL 95 bool "Atheros ath9k rate control" 96 depends on ATH9K 97 default y 98 ---help--- 99 Say Y, if you want to use the ath9k specific rate control 100 module instead of minstrel_ht. 101 102config ATH9K_HTC 103 tristate "Atheros HTC based wireless cards support" 104 depends on USB && MAC80211 105 select ATH9K_HW 106 select MAC80211_LEDS 107 select LEDS_CLASS 108 select NEW_LEDS 109 select ATH9K_COMMON 110 ---help--- 111 Support for Atheros HTC based cards. 112 Chipsets supported: AR9271 113 114 For more information: http://wireless.kernel.org/en/users/Drivers/ath9k_htc 115 116 The built module will be ath9k_htc. 117 118config ATH9K_HTC_DEBUGFS 119 bool "Atheros ath9k_htc debugging" 120 depends on ATH9K_HTC && DEBUG_FS 121 ---help--- 122 Say Y, if you need access to ath9k_htc's statistics. 123