c896c990387966ac05db79f32bf1322fc1c747c9
[pandora-kernel.git] / drivers / net / wireless / rt2x00 / Kconfig
1 config RT2X00
2         tristate "Ralink driver support"
3         depends on MAC80211 && WLAN_80211 && EXPERIMENTAL
4         ---help---
5           This will enable the experimental support for the Ralink drivers,
6           developed in the rt2x00 project <http://rt2x00.serialmonkey.com>.
7
8           These drivers make use of the mac80211 stack.
9
10           When building one of the individual drivers, the rt2x00 library
11           will also be created. That library (when the driver is built as
12           a module) will be called "rt2x00lib.ko".
13
14           Additionally PCI and USB libraries will also be build depending
15           on the types of drivers being selected, these libraries will be
16           called "rt2x00pci.ko" and "rt2x00usb.ko".
17
18 if RT2X00
19
20 config RT2X00_LIB
21         tristate
22
23 config RT2X00_LIB_PCI
24         tristate
25         select RT2X00_LIB
26
27 config RT2X00_LIB_USB
28         tristate
29         select RT2X00_LIB
30
31 config RT2X00_LIB_FIRMWARE
32         boolean
33         depends on RT2X00_LIB
34         select FW_LOADER
35
36 config RT2X00_LIB_CRYPTO
37         boolean
38         depends on RT2X00_LIB
39
40 config RT2X00_LIB_RFKILL
41         boolean
42         depends on RT2X00_LIB
43         depends on RFKILL
44         default y
45
46 config RT2X00_LIB_LEDS
47         boolean
48         depends on RT2X00_LIB && NEW_LEDS
49
50 config RT2400PCI
51         tristate "Ralink rt2400 (PCI/PCMCIA) support"
52         depends on PCI
53         select RT2X00_LIB_PCI
54         select EEPROM_93CX6
55         ---help---
56           This adds support for rt2400 wireless chipset family.
57           Supported chips: RT2460.
58
59           When compiled as a module, this driver will be called "rt2400pci.ko".
60
61 config RT2400PCI_LEDS
62         bool "Ralink rt2400 leds support"
63         depends on RT2400PCI && NEW_LEDS
64         select LEDS_CLASS
65         select RT2X00_LIB_LEDS
66         ---help---
67           This adds support for led triggers provided my mac80211.
68
69 config RT2500PCI
70         tristate "Ralink rt2500 (PCI/PCMCIA) support"
71         depends on PCI
72         select RT2X00_LIB_PCI
73         select EEPROM_93CX6
74         ---help---
75           This adds support for rt2500 wireless chipset family.
76           Supported chips: RT2560.
77
78           When compiled as a module, this driver will be called "rt2500pci.ko".
79
80 config RT2500PCI_LEDS
81         bool "Ralink rt2500 leds support"
82         depends on RT2500PCI && NEW_LEDS
83         select LEDS_CLASS
84         select RT2X00_LIB_LEDS
85         ---help---
86           This adds support for led triggers provided my mac80211.
87
88 config RT61PCI
89         tristate "Ralink rt2501/rt61 (PCI/PCMCIA) support"
90         depends on PCI
91         select RT2X00_LIB_PCI
92         select RT2X00_LIB_FIRMWARE
93         select RT2X00_LIB_CRYPTO
94         select CRC_ITU_T
95         select EEPROM_93CX6
96         ---help---
97           This adds support for rt2501 wireless chipset family.
98           Supported chips: RT2561, RT2561S & RT2661.
99
100           When compiled as a module, this driver will be called "rt61pci.ko".
101
102 config RT61PCI_LEDS
103         bool "Ralink rt2501/rt61 leds support"
104         depends on RT61PCI && NEW_LEDS
105         select LEDS_CLASS
106         select RT2X00_LIB_LEDS
107         ---help---
108           This adds support for led triggers provided my mac80211.
109
110 config RT2500USB
111         tristate "Ralink rt2500 (USB) support"
112         depends on USB
113         select RT2X00_LIB_USB
114         ---help---
115           This adds support for rt2500 wireless chipset family.
116           Supported chips: RT2571 & RT2572.
117
118           When compiled as a module, this driver will be called "rt2500usb.ko".
119
120 config RT2500USB_LEDS
121         bool "Ralink rt2500 leds support"
122         depends on RT2500USB && NEW_LEDS
123         select LEDS_CLASS
124         select RT2X00_LIB_LEDS
125         ---help---
126           This adds support for led triggers provided my mac80211.
127
128 config RT73USB
129         tristate "Ralink rt2501/rt73 (USB) support"
130         depends on USB
131         select RT2X00_LIB_USB
132         select RT2X00_LIB_FIRMWARE
133         select RT2X00_LIB_CRYPTO
134         select CRC_ITU_T
135         ---help---
136           This adds support for rt2501 wireless chipset family.
137           Supported chips: RT2571W, RT2573 & RT2671.
138
139           When compiled as a module, this driver will be called "rt73usb.ko".
140
141 config RT73USB_LEDS
142         bool "Ralink rt2501/rt73 leds support"
143         depends on RT73USB && NEW_LEDS
144         select LEDS_CLASS
145         select RT2X00_LIB_LEDS
146         ---help---
147           This adds support for led triggers provided my mac80211.
148
149 config RT2X00_LIB_DEBUGFS
150         bool "Ralink debugfs support"
151         depends on RT2X00_LIB && MAC80211_DEBUGFS
152         ---help---
153           Enable creation of debugfs files for the rt2x00 drivers.
154           These debugfs files support both reading and writing of the
155           most important register types of the rt2x00 hardware.
156
157 config RT2X00_DEBUG
158         bool "Ralink debug output"
159         depends on RT2X00_LIB
160         ---help---
161           Enable debugging output for all rt2x00 modules
162
163 endif