blob: cac6cf2e9ac84c672ba4dad57dca6035882cde50 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001config 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---
John W. Linvillec40896d2007-12-21 00:44:59 -050013 This option enables the hardware independent IEEE 802.11
14 networking stack.
Jiri Bencf0706e82007-05-05 11:45:53 -070015
Stefano Brivioc21b39a2007-12-19 01:26:16 +010016config MAC80211_RC_DEFAULT_CHOICE
17 bool "Choose default rate control algorithm" if EMBEDDED
Johannes Bergac71c692007-10-28 14:17:44 +010018 default y
Johannes Bergd52a60a2007-11-07 16:41:13 +010019 depends on MAC80211
Stefano Brivioc21b39a2007-12-19 01:26:16 +010020 ---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 Bergac71c692007-10-28 14:17:44 +010025
Stefano Brivioc21b39a2007-12-19 01:26:16 +010026choice
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 Bergac71c692007-10-28 14:17:44 +010035
Stefano Brivioc21b39a2007-12-19 01:26:16 +010036config 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.
52
53endchoice
54
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"
Mattias Nisslerad018372007-12-19 01:25:57 +010064 default y
65 depends on MAC80211
Stefano Brivioc21b39a2007-12-19 01:26:16 +010066 ---help---
Mattias Nisslerad018372007-12-19 01:25:57 +010067 This option enables a TX rate control algorithm for
68 mac80211 that uses a PID controller to select the TX
69 rate.
70
Stefano Brivioc21b39a2007-12-19 01:26:16 +010071 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.
Mattias Nisslerad018372007-12-19 01:25:57 +010085
Jiri Bencf0706e82007-05-05 11:45:53 -070086config MAC80211_LEDS
87 bool "Enable LED triggers"
88 depends on MAC80211 && LEDS_TRIGGERS
89 ---help---
John W. Linvillec40896d2007-12-21 00:44:59 -050090 This option enables a few LED triggers for different
91 packet receive/transmit events.
Jiri Bencf0706e82007-05-05 11:45:53 -070092
Jiri Bence9f207f2007-05-05 11:46:38 -070093config 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 Bencf0706e82007-05-05 11:45:53 -0700102config 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 Rindjunsky82b3cad2007-12-16 16:09:26 -0800112config MAC80211_HT_DEBUG
John W. Linvillec40896d2007-12-21 00:44:59 -0500113 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.
Ron Rindjunsky82b3cad2007-12-16 16:09:26 -0800118
John W. Linvillec40896d2007-12-21 00:44:59 -0500119 If you are not trying to debug of develop the ieee80211
120 subsystem, you most likely want to say N here.
Ron Rindjunsky82b3cad2007-12-16 16:09:26 -0800121
Jiri Bencf0706e82007-05-05 11:45:53 -0700122config 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.