Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | config MAC80211 |
| 2 | tristate "Generic IEEE 802.11 Networking Stack (mac80211)" |
| 3 | depends on EXPERIMENTAL |
| 4 | select CRYPTO |
| 5 | select CRYPTO_ECB |
| 6 | select CRYPTO_ARC4 |
| 7 | select CRYPTO_AES |
| 8 | select CRC32 |
| 9 | select WIRELESS_EXT |
| 10 | select CFG80211 |
| 11 | select NET_SCH_FIFO |
| 12 | ---help--- |
| 13 | This option enables the hardware independent IEEE 802.11 |
| 14 | networking stack. |
| 15 | |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame^] | 16 | config MAC80211_RC_DEFAULT_CHOICE |
| 17 | bool "Choose default rate control algorithm" if EMBEDDED |
Johannes Berg | ac71c69 | 2007-10-28 14:17:44 +0100 | [diff] [blame] | 18 | default y |
Johannes Berg | d52a60a | 2007-11-07 16:41:13 +0100 | [diff] [blame] | 19 | depends on MAC80211 |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame^] | 20 | ---help--- |
| 21 | This options enables selection of a default rate control |
| 22 | algorithm to be built into the mac80211 module. Alternate |
| 23 | rate control algorithms might be built into the mac80211 |
| 24 | module as well. |
Johannes Berg | ac71c69 | 2007-10-28 14:17:44 +0100 | [diff] [blame] | 25 | |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame^] | 26 | choice |
| 27 | prompt "Default rate control algorithm" |
| 28 | default MAC80211_RC_DEFAULT_PID |
| 29 | depends on MAC80211 && MAC80211_RC_DEFAULT_CHOICE |
| 30 | ---help--- |
| 31 | This option selects the default rate control algorithm |
| 32 | mac80211 will use. Note that this default can still be |
| 33 | overriden through the ieee80211_default_rc_algo module |
| 34 | parameter. |
Johannes Berg | ac71c69 | 2007-10-28 14:17:44 +0100 | [diff] [blame] | 35 | |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame^] | 36 | config MAC80211_RC_DEFAULT_PID |
| 37 | bool "PID controller based rate control algorithm" |
| 38 | select MAC80211_RC_PID |
| 39 | ---help--- |
| 40 | Select the PID controller based rate control as the |
| 41 | default rate control algorithm. You should choose |
| 42 | this unless you know what you are doing. |
| 43 | |
| 44 | config MAC80211_RC_DEFAULT_SIMPLE |
| 45 | bool "Simple rate control algorithm" |
| 46 | select MAC80211_RC_SIMPLE |
| 47 | ---help--- |
| 48 | Select the simple rate control as the default rate |
| 49 | control algorithm. Note that this is a non-responsive, |
| 50 | dumb algorithm. You should choose the PID rate control |
| 51 | instead. |
| 52 | |
| 53 | endchoice |
| 54 | |
| 55 | config MAC80211_RC_DEFAULT |
| 56 | string |
| 57 | depends on MAC80211 |
| 58 | default "pid" if MAC80211_RC_DEFAULT_PID |
| 59 | default "simple" if MAC80211_RC_DEFAULT_SIMPLE |
| 60 | default "" |
| 61 | |
| 62 | config MAC80211_RC_PID |
| 63 | bool "PID controller based rate control algorithm" |
Mattias Nissler | ad01837 | 2007-12-19 01:25:57 +0100 | [diff] [blame] | 64 | default y |
| 65 | depends on MAC80211 |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame^] | 66 | ---help--- |
Mattias Nissler | ad01837 | 2007-12-19 01:25:57 +0100 | [diff] [blame] | 67 | This option enables a TX rate control algorithm for |
| 68 | mac80211 that uses a PID controller to select the TX |
| 69 | rate. |
| 70 | |
Stefano Brivio | c21b39a | 2007-12-19 01:26:16 +0100 | [diff] [blame^] | 71 | Say Y or M unless you're sure you want to use a |
| 72 | different rate control algorithm. |
| 73 | |
| 74 | config MAC80211_RC_SIMPLE |
| 75 | bool "Simple rate control algorithm (DEPRECATED)" |
| 76 | default n |
| 77 | depends on MAC80211 |
| 78 | ---help--- |
| 79 | This option enables a very simple, non-responsive TX |
| 80 | rate control algorithm. This algorithm is deprecated |
| 81 | and will be removed from the kernel in near future. |
| 82 | It has been replaced by the PID algorithm. |
| 83 | |
| 84 | Say N unless you know what you are doing. |
Mattias Nissler | ad01837 | 2007-12-19 01:25:57 +0100 | [diff] [blame] | 85 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 86 | config MAC80211_LEDS |
| 87 | bool "Enable LED triggers" |
| 88 | depends on MAC80211 && LEDS_TRIGGERS |
| 89 | ---help--- |
| 90 | This option enables a few LED triggers for different |
| 91 | packet receive/transmit events. |
| 92 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 93 | config MAC80211_DEBUGFS |
| 94 | bool "Export mac80211 internals in DebugFS" |
| 95 | depends on MAC80211 && DEBUG_FS |
| 96 | ---help--- |
| 97 | Select this to see extensive information about |
| 98 | the internal state of mac80211 in debugfs. |
| 99 | |
| 100 | Say N unless you know you need this. |
| 101 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 102 | config MAC80211_DEBUG |
| 103 | bool "Enable debugging output" |
| 104 | depends on MAC80211 |
| 105 | ---help--- |
| 106 | This option will enable debug tracing output for the |
| 107 | ieee80211 network stack. |
| 108 | |
| 109 | If you are not trying to debug or develop the ieee80211 |
| 110 | subsystem, you most likely want to say N here. |
| 111 | |
Ron Rindjunsky | 82b3cad | 2007-12-16 16:09:26 -0800 | [diff] [blame] | 112 | config MAC80211_HT_DEBUG |
| 113 | bool "Enable HT debugging output" |
| 114 | depends on MAC80211_DEBUG |
| 115 | ---help--- |
| 116 | This option enables 802.11n High Throughput features |
| 117 | debug tracing output. |
| 118 | |
| 119 | If you are not trying to debug of develop the ieee80211 |
| 120 | subsystem, you most likely want to say N here. |
| 121 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 122 | config MAC80211_VERBOSE_DEBUG |
| 123 | bool "Verbose debugging output" |
| 124 | depends on MAC80211_DEBUG |
| 125 | |
| 126 | config MAC80211_LOWTX_FRAME_DUMP |
| 127 | bool "Debug frame dumping" |
| 128 | depends on MAC80211_DEBUG |
| 129 | ---help--- |
| 130 | Selecting this option will cause the stack to |
| 131 | print a message for each frame that is handed |
| 132 | to the lowlevel driver for transmission. This |
| 133 | message includes all MAC addresses and the |
| 134 | frame control field. |
| 135 | |
| 136 | If unsure, say N and insert the debugging code |
| 137 | you require into the driver you are debugging. |
| 138 | |
| 139 | config TKIP_DEBUG |
| 140 | bool "TKIP debugging" |
| 141 | depends on MAC80211_DEBUG |
| 142 | |
| 143 | config MAC80211_DEBUG_COUNTERS |
| 144 | bool "Extra statistics for TX/RX debugging" |
| 145 | depends on MAC80211_DEBUG |
| 146 | |
| 147 | config MAC80211_IBSS_DEBUG |
| 148 | bool "Support for IBSS testing" |
| 149 | depends on MAC80211_DEBUG |
| 150 | ---help--- |
| 151 | Say Y here if you intend to debug the IBSS code. |
| 152 | |
| 153 | config MAC80211_VERBOSE_PS_DEBUG |
| 154 | bool "Verbose powersave mode debugging" |
| 155 | depends on MAC80211_DEBUG |
| 156 | ---help--- |
| 157 | Say Y here to print out verbose powersave |
| 158 | mode debug messages. |