mac80211: A-MPDU Rx handling DELBA requests
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / mac80211 / Kconfig
CommitLineData
f0706e82
JB
1config 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---
c40896de
JL
13 This option enables the hardware independent IEEE 802.11
14 networking stack.
f0706e82 15
c21b39ac
SB
16config MAC80211_RC_DEFAULT_CHOICE
17 bool "Choose default rate control algorithm" if EMBEDDED
ac71c691 18 default y
d52a60ad 19 depends on MAC80211
c21b39ac
SB
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.
25
26choice
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.
35
36config 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
44config 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.
ac71c691 52
c21b39ac 53endchoice
ac71c691 54
c21b39ac
SB
55config 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
62config MAC80211_RC_PID
63 bool "PID controller based rate control algorithm"
ad018375
MN
64 default y
65 depends on MAC80211
c21b39ac 66 ---help---
ad018375
MN
67 This option enables a TX rate control algorithm for
68 mac80211 that uses a PID controller to select the TX
69 rate.
70
c21b39ac
SB
71 Say Y or M unless you're sure you want to use a
72 different rate control algorithm.
73
74config 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.
ad018375 85
f0706e82
JB
86config MAC80211_LEDS
87 bool "Enable LED triggers"
88 depends on MAC80211 && LEDS_TRIGGERS
89 ---help---
c40896de
JL
90 This option enables a few LED triggers for different
91 packet receive/transmit events.
f0706e82 92
e9f207f0
JB
93config 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
f0706e82
JB
102config 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.
82b3cad9
RR
111
112config MAC80211_HT_DEBUG
c40896de
JL
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.
f0706e82
JB
121
122config MAC80211_VERBOSE_DEBUG
123 bool "Verbose debugging output"
124 depends on MAC80211_DEBUG
125
126config 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
139config TKIP_DEBUG
140 bool "TKIP debugging"
141 depends on MAC80211_DEBUG
142
143config MAC80211_DEBUG_COUNTERS
144 bool "Extra statistics for TX/RX debugging"
145 depends on MAC80211_DEBUG
146
147config 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
153config 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.