]> git.karo-electronics.de Git - mv-sheeva.git/blob - net/mac80211/Kconfig
mac80211: make TX aggregation start/stop request async
[mv-sheeva.git] / net / mac80211 / Kconfig
1 config MAC80211
2         tristate "Generic IEEE 802.11 Networking Stack (mac80211)"
3         depends on CFG80211
4         select CRYPTO
5         select CRYPTO_ECB
6         select CRYPTO_ARC4
7         select CRYPTO_AES
8         select CRC32
9         ---help---
10           This option enables the hardware independent IEEE 802.11
11           networking stack.
12
13 comment "CFG80211 needs to be enabled for MAC80211"
14         depends on CFG80211=n
15
16 if MAC80211 != n
17
18 config MAC80211_HAS_RC
19         def_bool n
20
21 config MAC80211_RC_PID
22         bool "PID controller based rate control algorithm" if EMBEDDED
23         select MAC80211_HAS_RC
24         ---help---
25           This option enables a TX rate control algorithm for
26           mac80211 that uses a PID controller to select the TX
27           rate.
28
29 config MAC80211_RC_MINSTREL
30         bool "Minstrel" if EMBEDDED
31         select MAC80211_HAS_RC
32         default y
33         ---help---
34           This option enables the 'minstrel' TX rate control algorithm
35
36 config MAC80211_RC_MINSTREL_HT
37         bool "Minstrel 802.11n support" if EMBEDDED
38         depends on MAC80211_RC_MINSTREL
39         default y
40         ---help---
41           This option enables the 'minstrel_ht' TX rate control algorithm
42
43 choice
44         prompt "Default rate control algorithm"
45         depends on MAC80211_HAS_RC
46         default MAC80211_RC_DEFAULT_MINSTREL
47         ---help---
48           This option selects the default rate control algorithm
49           mac80211 will use. Note that this default can still be
50           overridden through the ieee80211_default_rc_algo module
51           parameter if different algorithms are available.
52
53 config MAC80211_RC_DEFAULT_PID
54         bool "PID controller based rate control algorithm"
55         depends on MAC80211_RC_PID
56         ---help---
57           Select the PID controller based rate control as the
58           default rate control algorithm. You should choose
59           this unless you know what you are doing.
60
61 config MAC80211_RC_DEFAULT_MINSTREL
62         bool "Minstrel"
63         depends on MAC80211_RC_MINSTREL
64         ---help---
65           Select Minstrel as the default rate control algorithm.
66
67
68 endchoice
69
70 config MAC80211_RC_DEFAULT
71         string
72         default "minstrel" if MAC80211_RC_DEFAULT_MINSTREL
73         default "pid" if MAC80211_RC_DEFAULT_PID
74         default ""
75
76 endif
77
78 comment "Some wireless drivers require a rate control algorithm"
79         depends on MAC80211_HAS_RC=n
80
81 config MAC80211_MESH
82         bool "Enable mac80211 mesh networking (pre-802.11s) support"
83         depends on MAC80211 && EXPERIMENTAL
84         ---help---
85          This options enables support of Draft 802.11s mesh networking.
86          The implementation is based on Draft 2.08 of the Mesh Networking
87          amendment.  However, no compliance with that draft is claimed or even
88          possible, as drafts leave a number of identifiers to be defined after
89          ratification.  For more information visit http://o11s.org/.
90
91 config MAC80211_LEDS
92         bool "Enable LED triggers"
93         depends on MAC80211
94         select NEW_LEDS
95         select LEDS_TRIGGERS
96         ---help---
97           This option enables a few LED triggers for different
98           packet receive/transmit events.
99
100 config MAC80211_DEBUGFS
101         bool "Export mac80211 internals in DebugFS"
102         depends on MAC80211 && DEBUG_FS
103         ---help---
104           Select this to see extensive information about
105           the internal state of mac80211 in debugfs.
106
107           Say N unless you know you need this.
108
109 menuconfig MAC80211_DEBUG_MENU
110         bool "Select mac80211 debugging features"
111         depends on MAC80211
112         ---help---
113           This option collects various mac80211 debug settings.
114
115 config MAC80211_NOINLINE
116         bool "Do not inline TX/RX handlers"
117         depends on MAC80211_DEBUG_MENU
118         ---help---
119           This option affects code generation in mac80211, when
120           selected some functions are marked "noinline" to allow
121           easier debugging of problems in the transmit and receive
122           paths.
123
124           This option increases code size a bit and inserts a lot
125           of function calls in the code, but is otherwise safe to
126           enable.
127
128           If unsure, say N unless you expect to be finding problems
129           in mac80211.
130
131 config MAC80211_VERBOSE_DEBUG
132         bool "Verbose debugging output"
133         depends on MAC80211_DEBUG_MENU
134         ---help---
135           Selecting this option causes mac80211 to print out
136           many debugging messages. It should not be selected
137           on production systems as some of the messages are
138           remotely triggerable.
139
140           Do not select this option.
141
142 config MAC80211_HT_DEBUG
143         bool "Verbose HT debugging"
144         depends on MAC80211_DEBUG_MENU
145         ---help---
146           This option enables 802.11n High Throughput features
147           debug tracing output.
148
149           It should not be selected on production systems as some
150           of the messages are remotely triggerable.
151
152           Do not select this option.
153
154 config MAC80211_TKIP_DEBUG
155         bool "Verbose TKIP debugging"
156         depends on MAC80211_DEBUG_MENU
157         ---help---
158           Selecting this option causes mac80211 to print out
159           very verbose TKIP debugging messages. It should not
160           be selected on production systems as those messages
161           are remotely triggerable.
162
163           Do not select this option.
164
165 config MAC80211_IBSS_DEBUG
166         bool "Verbose IBSS debugging"
167         depends on MAC80211_DEBUG_MENU
168         ---help---
169           Selecting this option causes mac80211 to print out
170           very verbose IBSS debugging messages. It should not
171           be selected on production systems as those messages
172           are remotely triggerable.
173
174           Do not select this option.
175
176 config MAC80211_VERBOSE_PS_DEBUG
177         bool "Verbose powersave mode debugging"
178         depends on MAC80211_DEBUG_MENU
179         ---help---
180           Selecting this option causes mac80211 to print out very
181           verbose power save mode debugging messages (when mac80211
182           is an AP and has power saving stations.)
183           It should not be selected on production systems as those
184           messages are remotely triggerable.
185
186           Do not select this option.
187
188 config MAC80211_VERBOSE_MPL_DEBUG
189         bool "Verbose mesh peer link debugging"
190         depends on MAC80211_DEBUG_MENU
191         depends on MAC80211_MESH
192         ---help---
193           Selecting this option causes mac80211 to print out very
194           verbose mesh peer link debugging messages (when mac80211
195           is taking part in a mesh network).
196           It should not be selected on production systems as those
197           messages are remotely triggerable.
198
199           Do not select this option.
200
201 config MAC80211_VERBOSE_MHWMP_DEBUG
202         bool "Verbose mesh HWMP routing debugging"
203         depends on MAC80211_DEBUG_MENU
204         depends on MAC80211_MESH
205         ---help---
206           Selecting this option causes mac80211 to print out very
207           verbose mesh routing (HWMP) debugging messages (when mac80211
208           is taking part in a mesh network).
209           It should not be selected on production systems as those
210           messages are remotely triggerable.
211
212           Do not select this option.
213
214 config MAC80211_DEBUG_COUNTERS
215         bool "Extra statistics for TX/RX debugging"
216         depends on MAC80211_DEBUG_MENU
217         depends on MAC80211_DEBUGFS
218         ---help---
219           Selecting this option causes mac80211 to keep additional
220           and very verbose statistics about TX and RX handler use
221           and show them in debugfs.
222
223           If unsure, say N.
224
225 config MAC80211_DRIVER_API_TRACER
226         bool "Driver API tracer"
227         depends on MAC80211_DEBUG_MENU
228         depends on EVENT_TRACING
229         help
230           Say Y here to make mac80211 register with the ftrace
231           framework for the driver API -- you can then see which
232           driver methods it is calling and which API functions
233           drivers are calling by looking at the trace.
234
235           If unsure, say Y.