rt2x00: Clarify supported chipsets in Kconfig
[safe/jmp/linux-2.6] / 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_RFKILL
37         boolean
38         depends on RT2X00_LIB
39         select RFKILL
40         select INPUT_POLLDEV
41
42 config RT2X00_LIB_LEDS
43         boolean
44         depends on RT2X00_LIB
45
46 config RT2400PCI
47         tristate "Ralink rt2400 (PCI/PCMCIA) support"
48         depends on PCI
49         select RT2X00_LIB_PCI
50         select EEPROM_93CX6
51         ---help---
52           This adds support for rt2400 wireless chipset family.
53           Supported chips: RT2460.
54
55           When compiled as a module, this driver will be called "rt2400pci.ko".
56
57 config RT2400PCI_RFKILL
58         bool "Ralink rt2400 rfkill support"
59         depends on RT2400PCI
60         select RT2X00_LIB_RFKILL
61         ---help---
62           This adds support for integrated rt2400 hardware that features a
63           hardware button to control the radio state.
64           This feature depends on the RF switch subsystem rfkill.
65
66 config RT2400PCI_LEDS
67         bool "Ralink rt2400 leds support"
68         depends on RT2400PCI
69         select LEDS_CLASS
70         select RT2X00_LIB_LEDS
71         ---help---
72           This adds support for led triggers provided my mac80211.
73
74 config RT2500PCI
75         tristate "Ralink rt2500 (PCI/PCMCIA) support"
76         depends on PCI
77         select RT2X00_LIB_PCI
78         select EEPROM_93CX6
79         ---help---
80           This adds support for rt2500 wireless chipset family.
81           Supported chips: RT2560.
82
83           When compiled as a module, this driver will be called "rt2500pci.ko".
84
85 config RT2500PCI_RFKILL
86         bool "Ralink rt2500 rfkill support"
87         depends on RT2500PCI
88         select RT2X00_LIB_RFKILL
89         ---help---
90           This adds support for integrated rt2500 hardware that features a
91           hardware button to control the radio state.
92           This feature depends on the RF switch subsystem rfkill.
93
94 config RT2500PCI_LEDS
95         bool "Ralink rt2500 leds support"
96         depends on RT2500PCI
97         select LEDS_CLASS
98         select RT2X00_LIB_LEDS
99         ---help---
100           This adds support for led triggers provided my mac80211.
101
102 config RT61PCI
103         tristate "Ralink rt2501/rt61 (PCI/PCMCIA) support"
104         depends on PCI
105         select RT2X00_LIB_PCI
106         select RT2X00_LIB_FIRMWARE
107         select CRC_ITU_T
108         select EEPROM_93CX6
109         ---help---
110           This adds support for rt2501 wireless chipset family.
111           Supported chips: RT2561, RT2561S & RT2661.
112
113           When compiled as a module, this driver will be called "rt61pci.ko".
114
115 config RT61PCI_RFKILL
116         bool "Ralink rt2501/rt61 rfkill support"
117         depends on RT61PCI
118         select RT2X00_LIB_RFKILL
119         ---help---
120           This adds support for integrated rt61 hardware that features a
121           hardware button to control the radio state.
122           This feature depends on the RF switch subsystem rfkill.
123
124 config RT61PCI_LEDS
125         bool "Ralink rt2501/rt61 leds support"
126         depends on RT61PCI
127         select LEDS_CLASS
128         select RT2X00_LIB_LEDS
129         ---help---
130           This adds support for led triggers provided my mac80211.
131
132 config RT2500USB
133         tristate "Ralink rt2500 (USB) support"
134         depends on USB
135         select RT2X00_LIB_USB
136         ---help---
137           This adds support for rt2500 wireless chipset family.
138           Supported chips: RT2571 & RT2572.
139
140           When compiled as a module, this driver will be called "rt2500usb.ko".
141
142 config RT2500USB_LEDS
143         bool "Ralink rt2500 leds support"
144         depends on RT2500USB
145         select LEDS_CLASS
146         select RT2X00_LIB_LEDS
147         ---help---
148           This adds support for led triggers provided my mac80211.
149
150 config RT73USB
151         tristate "Ralink rt2501/rt73 (USB) support"
152         depends on USB
153         select RT2X00_LIB_USB
154         select RT2X00_LIB_FIRMWARE
155         select CRC_ITU_T
156         ---help---
157           This adds support for rt2501 wireless chipset family.
158           Supported chips: RT2571W, RT2573 & RT2671.
159
160           When compiled as a module, this driver will be called "rt73usb.ko".
161
162 config RT73USB_LEDS
163         bool "Ralink rt2501/rt73 leds support"
164         depends on RT73USB
165         select LEDS_CLASS
166         select RT2X00_LIB_LEDS
167         ---help---
168           This adds support for led triggers provided my mac80211.
169
170 config RT2X00_LIB_DEBUGFS
171         bool "Ralink debugfs support"
172         depends on RT2X00_LIB && MAC80211_DEBUGFS
173         ---help---
174           Enable creation of debugfs files for the rt2x00 drivers.
175           These debugfs files support both reading and writing of the
176           most important register types of the rt2x00 hardware.
177
178 config RT2X00_DEBUG
179         bool "Ralink debug output"
180         depends on RT2X00_LIB
181         ---help---
182           Enable debugging output for all rt2x00 modules
183
184 endif