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