]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/wireless/rt2x00/rt2x00dev.c
rt2x00: Fix vgc_level_reg handling
[net-next-2.6.git] / drivers / net / wireless / rt2x00 / rt2x00dev.c
CommitLineData
95ea3627 1/*
9c9a0d14 2 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
95ea3627
ID
3 <http://rt2x00.serialmonkey.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21/*
22 Module: rt2x00lib
23 Abstract: rt2x00 generic device routines.
24 */
25
95ea3627
ID
26#include <linux/kernel.h>
27#include <linux/module.h>
5a0e3ad6 28#include <linux/slab.h>
95ea3627
ID
29
30#include "rt2x00.h"
31#include "rt2x00lib.h"
32
95ea3627
ID
33/*
34 * Radio control handlers.
35 */
36int rt2x00lib_enable_radio(struct rt2x00_dev *rt2x00dev)
37{
38 int status;
39
40 /*
41 * Don't enable the radio twice.
42 * And check if the hardware button has been disabled.
43 */
4b9631a4 44 if (test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
95ea3627
ID
45 return 0;
46
837e7f24 47 /*
181d6902 48 * Initialize all data queues.
837e7f24 49 */
798b7adb 50 rt2x00queue_init_queues(rt2x00dev);
837e7f24 51
95ea3627
ID
52 /*
53 * Enable radio.
54 */
a2e1d52a
ID
55 status =
56 rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_RADIO_ON);
95ea3627
ID
57 if (status)
58 return status;
59
2b08da3f
ID
60 rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_RADIO_IRQ_ON);
61
a2e1d52a 62 rt2x00leds_led_radio(rt2x00dev, true);
61c2b682 63 rt2x00led_led_activity(rt2x00dev, true);
a2e1d52a 64
0262ab0d 65 set_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags);
95ea3627
ID
66
67 /*
68 * Enable RX.
69 */
5cbf830e 70 rt2x00lib_toggle_rx(rt2x00dev, STATE_RADIO_RX_ON);
95ea3627
ID
71
72 /*
73 * Start the TX queues.
74 */
36d6825b 75 ieee80211_wake_queues(rt2x00dev->hw);
95ea3627
ID
76
77 return 0;
78}
79
80void rt2x00lib_disable_radio(struct rt2x00_dev *rt2x00dev)
81{
0262ab0d 82 if (!test_and_clear_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
95ea3627
ID
83 return;
84
95ea3627 85 /*
a2c9b652 86 * Stop the TX queues in mac80211.
95ea3627
ID
87 */
88 ieee80211_stop_queues(rt2x00dev->hw);
a2c9b652 89 rt2x00queue_stop_queues(rt2x00dev);
95ea3627
ID
90
91 /*
92 * Disable RX.
93 */
5cbf830e 94 rt2x00lib_toggle_rx(rt2x00dev, STATE_RADIO_RX_OFF);
95ea3627
ID
95
96 /*
97 * Disable radio.
98 */
99 rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_RADIO_OFF);
2b08da3f 100 rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_RADIO_IRQ_OFF);
61c2b682 101 rt2x00led_led_activity(rt2x00dev, false);
a2e1d52a 102 rt2x00leds_led_radio(rt2x00dev, false);
95ea3627
ID
103}
104
5cbf830e 105void rt2x00lib_toggle_rx(struct rt2x00_dev *rt2x00dev, enum dev_state state)
95ea3627 106{
95ea3627
ID
107 /*
108 * When we are disabling the RX, we should also stop the link tuner.
109 */
5cbf830e 110 if (state == STATE_RADIO_RX_OFF)
84e3196f 111 rt2x00link_stop_tuner(rt2x00dev);
95ea3627
ID
112
113 rt2x00dev->ops->lib->set_device_state(rt2x00dev, state);
114
115 /*
116 * When we are enabling the RX, we should also start the link tuner.
117 */
84e3196f
ID
118 if (state == STATE_RADIO_RX_ON)
119 rt2x00link_start_tuner(rt2x00dev);
95ea3627
ID
120}
121
6bb40dd1
ID
122static void rt2x00lib_intf_scheduled_iter(void *data, u8 *mac,
123 struct ieee80211_vif *vif)
5c58ee51 124{
6bb40dd1
ID
125 struct rt2x00_dev *rt2x00dev = data;
126 struct rt2x00_intf *intf = vif_to_intf(vif);
6bb40dd1
ID
127 int delayed_flags;
128
129 /*
130 * Copy all data we need during this action under the protection
131 * of a spinlock. Otherwise race conditions might occur which results
132 * into an invalid configuration.
133 */
134 spin_lock(&intf->lock);
135
6bb40dd1
ID
136 delayed_flags = intf->delayed_flags;
137 intf->delayed_flags = 0;
138
139 spin_unlock(&intf->lock);
140
980dfcb9
ID
141 /*
142 * It is possible the radio was disabled while the work had been
143 * scheduled. If that happens we should return here immediately,
144 * note that in the spinlock protected area above the delayed_flags
145 * have been cleared correctly.
146 */
0262ab0d 147 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
980dfcb9
ID
148 return;
149
bd88a781 150 if (delayed_flags & DELAYED_UPDATE_BEACON)
a2c9b652 151 rt2x00queue_update_beacon(rt2x00dev, vif, true);
6bb40dd1 152}
5c58ee51 153
6bb40dd1
ID
154static void rt2x00lib_intf_scheduled(struct work_struct *work)
155{
156 struct rt2x00_dev *rt2x00dev =
157 container_of(work, struct rt2x00_dev, intf_work);
471b3efd
JB
158
159 /*
6bb40dd1
ID
160 * Iterate over each interface and perform the
161 * requested configurations.
471b3efd 162 */
6bb40dd1
ID
163 ieee80211_iterate_active_interfaces(rt2x00dev->hw,
164 rt2x00lib_intf_scheduled_iter,
165 rt2x00dev);
5c58ee51
ID
166}
167
95ea3627
ID
168/*
169 * Interrupt context handlers.
170 */
6bb40dd1
ID
171static void rt2x00lib_beacondone_iter(void *data, u8 *mac,
172 struct ieee80211_vif *vif)
95ea3627 173{
6bb40dd1 174 struct rt2x00_intf *intf = vif_to_intf(vif);
95ea3627 175
05c914fe 176 if (vif->type != NL80211_IFTYPE_AP &&
a07dbea2 177 vif->type != NL80211_IFTYPE_ADHOC &&
ce292a64
ID
178 vif->type != NL80211_IFTYPE_MESH_POINT &&
179 vif->type != NL80211_IFTYPE_WDS)
95ea3627
ID
180 return;
181
6bb40dd1
ID
182 spin_lock(&intf->lock);
183 intf->delayed_flags |= DELAYED_UPDATE_BEACON;
184 spin_unlock(&intf->lock);
95ea3627
ID
185}
186
187void rt2x00lib_beacondone(struct rt2x00_dev *rt2x00dev)
188{
0262ab0d 189 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
95ea3627
ID
190 return;
191
633257d3
ID
192 ieee80211_iterate_active_interfaces_atomic(rt2x00dev->hw,
193 rt2x00lib_beacondone_iter,
194 rt2x00dev);
6bb40dd1 195
42935eca 196 ieee80211_queue_work(rt2x00dev->hw, &rt2x00dev->intf_work);
95ea3627
ID
197}
198EXPORT_SYMBOL_GPL(rt2x00lib_beacondone);
199
181d6902
ID
200void rt2x00lib_txdone(struct queue_entry *entry,
201 struct txdone_entry_desc *txdesc)
95ea3627 202{
181d6902 203 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
e039fa4a 204 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(entry->skb);
e6a9854b 205 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
d74f5ba4 206 enum data_queue_qid qid = skb_get_queue_mapping(entry->skb);
9f166171 207 unsigned int header_length = ieee80211_get_hdrlen_from_skb(entry->skb);
92ed48e5 208 u8 rate_idx, rate_flags, retry_rates;
7351c6bd 209 u8 skbdesc_flags = skbdesc->flags;
92ed48e5 210 unsigned int i;
2e27cff8 211 bool success;
d74f5ba4 212
e513a0b6
GW
213 /*
214 * Unmap the skb.
215 */
216 rt2x00queue_unmap_skb(rt2x00dev, entry->skb);
217
218 /*
219 * Remove the extra tx headroom from the skb.
220 */
221 skb_pull(entry->skb, rt2x00dev->ops->extra_tx_headroom);
222
223 /*
224 * Signal that the TX descriptor is no longer in the skb.
225 */
226 skbdesc->flags &= ~SKBDESC_DESC_IN_SKB;
227
9f166171
ID
228 /*
229 * Remove L2 padding which was added during
230 */
231 if (test_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags))
daee6c09 232 rt2x00queue_remove_l2pad(entry->skb, header_length);
9f166171 233
2bb057d0
ID
234 /*
235 * If the IV/EIV data was stripped from the frame before it was
236 * passed to the hardware, we should now reinsert it again because
77c2061d 237 * mac80211 will expect the same data to be present it the
2bb057d0
ID
238 * frame as it was passed to us.
239 */
240 if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags))
9f166171 241 rt2x00crypto_tx_insert_iv(entry->skb, header_length);
2bb057d0 242
e039fa4a
JB
243 /*
244 * Send frame to debugfs immediately, after this call is completed
245 * we are going to overwrite the skb->cb array.
246 */
247 rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_TXDONE, entry->skb);
95ea3627
ID
248
249 /*
2e27cff8 250 * Determine if the frame has been successfully transmitted.
95ea3627 251 */
2e27cff8 252 success =
ce4c45e0 253 test_bit(TXDONE_SUCCESS, &txdesc->flags) ||
fd6dcb88 254 test_bit(TXDONE_UNKNOWN, &txdesc->flags);
2e27cff8
ID
255
256 /*
257 * Update TX statistics.
258 */
259 rt2x00dev->link.qual.tx_success += success;
260 rt2x00dev->link.qual.tx_failed += !success;
95ea3627 261
e6a9854b
JB
262 rate_idx = skbdesc->tx_rate_idx;
263 rate_flags = skbdesc->tx_rate_flags;
92ed48e5
BP
264 retry_rates = test_bit(TXDONE_FALLBACK, &txdesc->flags) ?
265 (txdesc->retry + 1) : 1;
e6a9854b 266
181d6902
ID
267 /*
268 * Initialize TX status
269 */
e039fa4a
JB
270 memset(&tx_info->status, 0, sizeof(tx_info->status));
271 tx_info->status.ack_signal = 0;
92ed48e5
BP
272
273 /*
274 * Frame was send with retries, hardware tried
275 * different rates to send out the frame, at each
3d2bc103
HS
276 * retry it lowered the rate 1 step except when the
277 * lowest rate was used.
92ed48e5
BP
278 */
279 for (i = 0; i < retry_rates && i < IEEE80211_TX_MAX_RATES; i++) {
280 tx_info->status.rates[i].idx = rate_idx - i;
281 tx_info->status.rates[i].flags = rate_flags;
3d2bc103
HS
282
283 if (rate_idx - i == 0) {
284 /*
285 * The lowest rate (index 0) was used until the
286 * number of max retries was reached.
287 */
288 tx_info->status.rates[i].count = retry_rates - i;
289 i++;
290 break;
291 }
92ed48e5
BP
292 tx_info->status.rates[i].count = 1;
293 }
2e27cff8 294 if (i < (IEEE80211_TX_MAX_RATES - 1))
92ed48e5 295 tx_info->status.rates[i].idx = -1; /* terminate */
181d6902 296
e039fa4a 297 if (!(tx_info->flags & IEEE80211_TX_CTL_NO_ACK)) {
2e27cff8 298 if (success)
e039fa4a 299 tx_info->flags |= IEEE80211_TX_STAT_ACK;
2e27cff8 300 else
181d6902 301 rt2x00dev->low_level_stats.dot11ACKFailureCount++;
95ea3627
ID
302 }
303
1df90809
HS
304 /*
305 * Every single frame has it's own tx status, hence report
306 * every frame as ampdu of size 1.
307 *
308 * TODO: if we can find out how many frames were aggregated
309 * by the hw we could provide the real ampdu_len to mac80211
310 * which would allow the rc algorithm to better decide on
311 * which rates are suitable.
312 */
313 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
314 tx_info->flags |= IEEE80211_TX_STAT_AMPDU;
315 tx_info->status.ampdu_len = 1;
316 tx_info->status.ampdu_ack_len = success ? 1 : 0;
317 }
318
e6a9854b 319 if (rate_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
2e27cff8 320 if (success)
181d6902 321 rt2x00dev->low_level_stats.dot11RTSSuccessCount++;
2e27cff8 322 else
181d6902 323 rt2x00dev->low_level_stats.dot11RTSFailureCount++;
95ea3627
ID
324 }
325
326 /*
7351c6bd
JB
327 * Only send the status report to mac80211 when it's a frame
328 * that originated in mac80211. If this was a extra frame coming
329 * through a mac80211 library call (RTS/CTS) then we should not
330 * send the status report back.
95ea3627 331 */
7351c6bd 332 if (!(skbdesc_flags & SKBDESC_NOT_MAC80211))
e039fa4a 333 ieee80211_tx_status_irqsafe(rt2x00dev->hw, entry->skb);
baf26a7e 334 else
fb55f4d1 335 dev_kfree_skb_irq(entry->skb);
d74f5ba4
ID
336
337 /*
338 * Make this entry available for reuse.
339 */
95ea3627 340 entry->skb = NULL;
d74f5ba4
ID
341 entry->flags = 0;
342
798b7adb 343 rt2x00dev->ops->lib->clear_entry(entry);
d74f5ba4 344
0262ab0d 345 clear_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
d74f5ba4
ID
346 rt2x00queue_index_inc(entry->queue, Q_INDEX_DONE);
347
348 /*
349 * If the data queue was below the threshold before the txdone
350 * handler we must make sure the packet queue in the mac80211 stack
351 * is reenabled when the txdone handler has finished.
352 */
353 if (!rt2x00queue_threshold(entry->queue))
354 ieee80211_wake_queue(rt2x00dev->hw, qid);
95ea3627
ID
355}
356EXPORT_SYMBOL_GPL(rt2x00lib_txdone);
357
35f00cfc
ID
358static int rt2x00lib_rxdone_read_signal(struct rt2x00_dev *rt2x00dev,
359 struct rxdone_entry_desc *rxdesc)
360{
361 struct ieee80211_supported_band *sband;
362 const struct rt2x00_rate *rate;
363 unsigned int i;
364 int signal;
365 int type;
366
367 /*
368 * For non-HT rates the MCS value needs to contain the
369 * actually used rate modulation (CCK or OFDM).
370 */
371 if (rxdesc->dev_flags & RXDONE_SIGNAL_MCS)
372 signal = RATE_MCS(rxdesc->rate_mode, rxdesc->signal);
373 else
374 signal = rxdesc->signal;
375
376 type = (rxdesc->dev_flags & RXDONE_SIGNAL_MASK);
377
378 sband = &rt2x00dev->bands[rt2x00dev->curr_band];
379 for (i = 0; i < sband->n_bitrates; i++) {
380 rate = rt2x00_get_rate(sband->bitrates[i].hw_value);
381
382 if (((type == RXDONE_SIGNAL_PLCP) &&
383 (rate->plcp == signal)) ||
384 ((type == RXDONE_SIGNAL_BITRATE) &&
385 (rate->bitrate == signal)) ||
386 ((type == RXDONE_SIGNAL_MCS) &&
387 (rate->mcs == signal))) {
388 return i;
389 }
390 }
391
392 WARNING(rt2x00dev, "Frame received with unrecognized signal, "
393 "signal=0x%.4x, type=%d.\n", signal, type);
394 return 0;
395}
396
c4da0048
GW
397void rt2x00lib_rxdone(struct rt2x00_dev *rt2x00dev,
398 struct queue_entry *entry)
95ea3627 399{
c4da0048
GW
400 struct rxdone_entry_desc rxdesc;
401 struct sk_buff *skb;
95ea3627 402 struct ieee80211_rx_status *rx_status = &rt2x00dev->rx_status;
2bb057d0 403 unsigned int header_length;
35f00cfc 404 int rate_idx;
c4da0048
GW
405 /*
406 * Allocate a new sk_buffer. If no new buffer available, drop the
407 * received frame and reuse the existing buffer.
408 */
409 skb = rt2x00queue_alloc_rxskb(rt2x00dev, entry);
410 if (!skb)
411 return;
412
413 /*
414 * Unmap the skb.
415 */
416 rt2x00queue_unmap_skb(rt2x00dev, entry->skb);
417
418 /*
419 * Extract the RXD details.
420 */
421 memset(&rxdesc, 0, sizeof(rxdesc));
422 rt2x00dev->ops->lib->fill_rxdone(entry, &rxdesc);
95ea3627 423
239c249d
GW
424 /*
425 * The data behind the ieee80211 header must be
a9f853dd 426 * aligned on a 4 byte boundary.
239c249d 427 */
2bb057d0 428 header_length = ieee80211_get_hdrlen_from_skb(entry->skb);
239c249d 429
2bb057d0
ID
430 /*
431 * Hardware might have stripped the IV/EIV/ICV data,
432 * in that case it is possible that the data was
3ad2f3fb 433 * provided separately (through hardware descriptor)
2bb057d0
ID
434 * in which case we should reinsert the data into the frame.
435 */
74415edb 436 if ((rxdesc.dev_flags & RXDONE_CRYPTO_IV) &&
9f166171 437 (rxdesc.flags & RX_FLAG_IV_STRIPPED))
daee6c09 438 rt2x00crypto_rx_insert_iv(entry->skb, header_length,
9f166171 439 &rxdesc);
b7340833
GW
440 else if (header_length &&
441 (rxdesc.size > header_length) &&
442 (rxdesc.dev_flags & RXDONE_L2PAD))
daee6c09 443 rt2x00queue_remove_l2pad(entry->skb, header_length);
9f166171 444 else
daee6c09 445 rt2x00queue_align_payload(entry->skb, header_length);
239c249d 446
1398d458
AB
447 /* Trim buffer to correct size */
448 skb_trim(entry->skb, rxdesc.size);
449
95ea3627 450 /*
35f00cfc
ID
451 * Check if the frame was received using HT. In that case,
452 * the rate is the MCS index and should be passed to mac80211
453 * directly. Otherwise we need to translate the signal to
454 * the correct bitrate index.
95ea3627 455 */
35f00cfc
ID
456 if (rxdesc.rate_mode == RATE_MODE_CCK ||
457 rxdesc.rate_mode == RATE_MODE_OFDM) {
458 rate_idx = rt2x00lib_rxdone_read_signal(rt2x00dev, &rxdesc);
459 } else {
460 rxdesc.flags |= RX_FLAG_HT;
461 rate_idx = rxdesc.signal;
866a0503
ID
462 }
463
61af43c5 464 /*
84e3196f 465 * Update extra components
61af43c5 466 */
84e3196f
ID
467 rt2x00link_update_stats(rt2x00dev, entry->skb, &rxdesc);
468 rt2x00debug_update_crypto(rt2x00dev, &rxdesc);
69f81a2c 469
ae73e58e 470 rx_status->mactime = rxdesc.timestamp;
35f00cfc 471 rx_status->rate_idx = rate_idx;
c4da0048
GW
472 rx_status->signal = rxdesc.rssi;
473 rx_status->flag = rxdesc.flags;
69f81a2c 474 rx_status->antenna = rt2x00dev->link.ant.active.rx;
95ea3627
ID
475
476 /*
181d6902
ID
477 * Send frame to mac80211 & debugfs.
478 * mac80211 will clean up the skb structure.
95ea3627 479 */
5a6e5999 480 rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_RXDONE, entry->skb);
f1d58c25
JB
481 memcpy(IEEE80211_SKB_RXCB(entry->skb), rx_status, sizeof(*rx_status));
482 ieee80211_rx_irqsafe(rt2x00dev->hw, entry->skb);
c4da0048
GW
483
484 /*
485 * Replace the skb with the freshly allocated one.
486 */
487 entry->skb = skb;
d74f5ba4
ID
488 entry->flags = 0;
489
798b7adb 490 rt2x00dev->ops->lib->clear_entry(entry);
d74f5ba4
ID
491
492 rt2x00queue_index_inc(entry->queue, Q_INDEX);
95ea3627
ID
493}
494EXPORT_SYMBOL_GPL(rt2x00lib_rxdone);
495
95ea3627
ID
496/*
497 * Driver initialization handlers.
498 */
70e2fed4
ID
499const struct rt2x00_rate rt2x00_supported_rates[12] = {
500 {
3d8606a6 501 .flags = DEV_RATE_CCK,
70e2fed4 502 .bitrate = 10,
aa776721 503 .ratemask = BIT(0),
70e2fed4 504 .plcp = 0x00,
35f00cfc 505 .mcs = RATE_MCS(RATE_MODE_CCK, 0),
70e2fed4
ID
506 },
507 {
3d8606a6 508 .flags = DEV_RATE_CCK | DEV_RATE_SHORT_PREAMBLE,
70e2fed4 509 .bitrate = 20,
aa776721 510 .ratemask = BIT(1),
70e2fed4 511 .plcp = 0x01,
35f00cfc 512 .mcs = RATE_MCS(RATE_MODE_CCK, 1),
70e2fed4
ID
513 },
514 {
3d8606a6 515 .flags = DEV_RATE_CCK | DEV_RATE_SHORT_PREAMBLE,
70e2fed4 516 .bitrate = 55,
aa776721 517 .ratemask = BIT(2),
70e2fed4 518 .plcp = 0x02,
35f00cfc 519 .mcs = RATE_MCS(RATE_MODE_CCK, 2),
70e2fed4
ID
520 },
521 {
3d8606a6 522 .flags = DEV_RATE_CCK | DEV_RATE_SHORT_PREAMBLE,
70e2fed4 523 .bitrate = 110,
aa776721 524 .ratemask = BIT(3),
70e2fed4 525 .plcp = 0x03,
35f00cfc 526 .mcs = RATE_MCS(RATE_MODE_CCK, 3),
70e2fed4
ID
527 },
528 {
3d8606a6 529 .flags = DEV_RATE_OFDM,
70e2fed4 530 .bitrate = 60,
aa776721 531 .ratemask = BIT(4),
70e2fed4 532 .plcp = 0x0b,
35f00cfc 533 .mcs = RATE_MCS(RATE_MODE_OFDM, 0),
70e2fed4
ID
534 },
535 {
536 .flags = DEV_RATE_OFDM,
537 .bitrate = 90,
aa776721 538 .ratemask = BIT(5),
70e2fed4 539 .plcp = 0x0f,
35f00cfc 540 .mcs = RATE_MCS(RATE_MODE_OFDM, 1),
70e2fed4
ID
541 },
542 {
3d8606a6 543 .flags = DEV_RATE_OFDM,
70e2fed4 544 .bitrate = 120,
aa776721 545 .ratemask = BIT(6),
70e2fed4 546 .plcp = 0x0a,
35f00cfc 547 .mcs = RATE_MCS(RATE_MODE_OFDM, 2),
70e2fed4
ID
548 },
549 {
550 .flags = DEV_RATE_OFDM,
551 .bitrate = 180,
aa776721 552 .ratemask = BIT(7),
70e2fed4 553 .plcp = 0x0e,
35f00cfc 554 .mcs = RATE_MCS(RATE_MODE_OFDM, 3),
70e2fed4
ID
555 },
556 {
3d8606a6 557 .flags = DEV_RATE_OFDM,
70e2fed4 558 .bitrate = 240,
aa776721 559 .ratemask = BIT(8),
70e2fed4 560 .plcp = 0x09,
35f00cfc 561 .mcs = RATE_MCS(RATE_MODE_OFDM, 4),
70e2fed4
ID
562 },
563 {
564 .flags = DEV_RATE_OFDM,
565 .bitrate = 360,
aa776721 566 .ratemask = BIT(9),
70e2fed4 567 .plcp = 0x0d,
35f00cfc 568 .mcs = RATE_MCS(RATE_MODE_OFDM, 5),
70e2fed4
ID
569 },
570 {
571 .flags = DEV_RATE_OFDM,
572 .bitrate = 480,
aa776721 573 .ratemask = BIT(10),
70e2fed4 574 .plcp = 0x08,
35f00cfc 575 .mcs = RATE_MCS(RATE_MODE_OFDM, 6),
70e2fed4
ID
576 },
577 {
578 .flags = DEV_RATE_OFDM,
579 .bitrate = 540,
aa776721 580 .ratemask = BIT(11),
70e2fed4 581 .plcp = 0x0c,
35f00cfc 582 .mcs = RATE_MCS(RATE_MODE_OFDM, 7),
70e2fed4
ID
583 },
584};
585
95ea3627
ID
586static void rt2x00lib_channel(struct ieee80211_channel *entry,
587 const int channel, const int tx_power,
588 const int value)
589{
f2a3c7f5 590 entry->center_freq = ieee80211_channel_to_frequency(channel);
8318d78a
JB
591 entry->hw_value = value;
592 entry->max_power = tx_power;
593 entry->max_antenna_gain = 0xff;
95ea3627
ID
594}
595
596static void rt2x00lib_rate(struct ieee80211_rate *entry,
70e2fed4 597 const u16 index, const struct rt2x00_rate *rate)
95ea3627 598{
70e2fed4
ID
599 entry->flags = 0;
600 entry->bitrate = rate->bitrate;
3ea96463
ID
601 entry->hw_value =index;
602 entry->hw_value_short = index;
70e2fed4 603
3ea96463 604 if (rate->flags & DEV_RATE_SHORT_PREAMBLE)
70e2fed4 605 entry->flags |= IEEE80211_RATE_SHORT_PREAMBLE;
95ea3627
ID
606}
607
608static int rt2x00lib_probe_hw_modes(struct rt2x00_dev *rt2x00dev,
609 struct hw_mode_spec *spec)
610{
611 struct ieee80211_hw *hw = rt2x00dev->hw;
95ea3627
ID
612 struct ieee80211_channel *channels;
613 struct ieee80211_rate *rates;
31562e80 614 unsigned int num_rates;
95ea3627 615 unsigned int i;
95ea3627 616
31562e80
ID
617 num_rates = 0;
618 if (spec->supported_rates & SUPPORT_RATE_CCK)
619 num_rates += 4;
620 if (spec->supported_rates & SUPPORT_RATE_OFDM)
621 num_rates += 8;
95ea3627
ID
622
623 channels = kzalloc(sizeof(*channels) * spec->num_channels, GFP_KERNEL);
624 if (!channels)
8318d78a 625 return -ENOMEM;
95ea3627 626
31562e80 627 rates = kzalloc(sizeof(*rates) * num_rates, GFP_KERNEL);
95ea3627
ID
628 if (!rates)
629 goto exit_free_channels;
630
631 /*
632 * Initialize Rate list.
633 */
31562e80 634 for (i = 0; i < num_rates; i++)
8f5fa7f0 635 rt2x00lib_rate(&rates[i], i, rt2x00_get_rate(i));
95ea3627
ID
636
637 /*
638 * Initialize Channel list.
639 */
640 for (i = 0; i < spec->num_channels; i++) {
95ea3627 641 rt2x00lib_channel(&channels[i],
8c5e7a5f
ID
642 spec->channels[i].channel,
643 spec->channels_info[i].tx_power1, i);
95ea3627
ID
644 }
645
646 /*
31562e80 647 * Intitialize 802.11b, 802.11g
95ea3627 648 * Rates: CCK, OFDM.
8318d78a 649 * Channels: 2.4 GHz
95ea3627 650 */
47ac2683 651 if (spec->supported_bands & SUPPORT_BAND_2GHZ) {
31562e80
ID
652 rt2x00dev->bands[IEEE80211_BAND_2GHZ].n_channels = 14;
653 rt2x00dev->bands[IEEE80211_BAND_2GHZ].n_bitrates = num_rates;
654 rt2x00dev->bands[IEEE80211_BAND_2GHZ].channels = channels;
655 rt2x00dev->bands[IEEE80211_BAND_2GHZ].bitrates = rates;
656 hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
657 &rt2x00dev->bands[IEEE80211_BAND_2GHZ];
35f00cfc
ID
658 memcpy(&rt2x00dev->bands[IEEE80211_BAND_2GHZ].ht_cap,
659 &spec->ht, sizeof(spec->ht));
95ea3627
ID
660 }
661
662 /*
663 * Intitialize 802.11a
664 * Rates: OFDM.
665 * Channels: OFDM, UNII, HiperLAN2.
666 */
47ac2683 667 if (spec->supported_bands & SUPPORT_BAND_5GHZ) {
31562e80
ID
668 rt2x00dev->bands[IEEE80211_BAND_5GHZ].n_channels =
669 spec->num_channels - 14;
670 rt2x00dev->bands[IEEE80211_BAND_5GHZ].n_bitrates =
671 num_rates - 4;
672 rt2x00dev->bands[IEEE80211_BAND_5GHZ].channels = &channels[14];
673 rt2x00dev->bands[IEEE80211_BAND_5GHZ].bitrates = &rates[4];
674 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
675 &rt2x00dev->bands[IEEE80211_BAND_5GHZ];
35f00cfc
ID
676 memcpy(&rt2x00dev->bands[IEEE80211_BAND_5GHZ].ht_cap,
677 &spec->ht, sizeof(spec->ht));
95ea3627
ID
678 }
679
95ea3627
ID
680 return 0;
681
8318d78a 682 exit_free_channels:
95ea3627 683 kfree(channels);
95ea3627
ID
684 ERROR(rt2x00dev, "Allocation ieee80211 modes failed.\n");
685 return -ENOMEM;
686}
687
688static void rt2x00lib_remove_hw(struct rt2x00_dev *rt2x00dev)
689{
0262ab0d 690 if (test_bit(DEVICE_STATE_REGISTERED_HW, &rt2x00dev->flags))
95ea3627
ID
691 ieee80211_unregister_hw(rt2x00dev->hw);
692
8318d78a
JB
693 if (likely(rt2x00dev->hw->wiphy->bands[IEEE80211_BAND_2GHZ])) {
694 kfree(rt2x00dev->hw->wiphy->bands[IEEE80211_BAND_2GHZ]->channels);
695 kfree(rt2x00dev->hw->wiphy->bands[IEEE80211_BAND_2GHZ]->bitrates);
696 rt2x00dev->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = NULL;
697 rt2x00dev->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = NULL;
95ea3627 698 }
8c5e7a5f
ID
699
700 kfree(rt2x00dev->spec.channels_info);
95ea3627
ID
701}
702
703static int rt2x00lib_probe_hw(struct rt2x00_dev *rt2x00dev)
704{
705 struct hw_mode_spec *spec = &rt2x00dev->spec;
706 int status;
707
0262ab0d
ID
708 if (test_bit(DEVICE_STATE_REGISTERED_HW, &rt2x00dev->flags))
709 return 0;
710
95ea3627
ID
711 /*
712 * Initialize HW modes.
713 */
714 status = rt2x00lib_probe_hw_modes(rt2x00dev, spec);
715 if (status)
716 return status;
717
61448f88
GW
718 /*
719 * Initialize HW fields.
720 */
721 rt2x00dev->hw->queues = rt2x00dev->ops->tx_queues;
722
e6218cc4
GW
723 /*
724 * Initialize extra TX headroom required.
725 */
7a4a77b7
GW
726 rt2x00dev->hw->extra_tx_headroom =
727 max_t(unsigned int, IEEE80211_TX_STATUS_HEADROOM,
728 rt2x00dev->ops->extra_tx_headroom);
729
730 /*
731 * Take TX headroom required for alignment into account.
732 */
733 if (test_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags))
734 rt2x00dev->hw->extra_tx_headroom += RT2X00_L2PAD_SIZE;
735 else if (test_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags))
736 rt2x00dev->hw->extra_tx_headroom += RT2X00_ALIGN_SIZE;
e6218cc4 737
95ea3627
ID
738 /*
739 * Register HW.
740 */
741 status = ieee80211_register_hw(rt2x00dev->hw);
f05faa31 742 if (status)
95ea3627 743 return status;
95ea3627 744
0262ab0d 745 set_bit(DEVICE_STATE_REGISTERED_HW, &rt2x00dev->flags);
95ea3627
ID
746
747 return 0;
748}
749
750/*
751 * Initialization/uninitialization handlers.
752 */
e37ea213 753static void rt2x00lib_uninitialize(struct rt2x00_dev *rt2x00dev)
95ea3627 754{
0262ab0d 755 if (!test_and_clear_bit(DEVICE_STATE_INITIALIZED, &rt2x00dev->flags))
95ea3627
ID
756 return;
757
758 /*
1682fe6d 759 * Unregister extra components.
95ea3627
ID
760 */
761 rt2x00rfkill_unregister(rt2x00dev);
762
763 /*
764 * Allow the HW to uninitialize.
765 */
766 rt2x00dev->ops->lib->uninitialize(rt2x00dev);
767
768 /*
181d6902 769 * Free allocated queue entries.
95ea3627 770 */
181d6902 771 rt2x00queue_uninitialize(rt2x00dev);
95ea3627
ID
772}
773
e37ea213 774static int rt2x00lib_initialize(struct rt2x00_dev *rt2x00dev)
95ea3627
ID
775{
776 int status;
777
0262ab0d 778 if (test_bit(DEVICE_STATE_INITIALIZED, &rt2x00dev->flags))
95ea3627
ID
779 return 0;
780
781 /*
181d6902 782 * Allocate all queue entries.
95ea3627 783 */
181d6902
ID
784 status = rt2x00queue_initialize(rt2x00dev);
785 if (status)
95ea3627 786 return status;
95ea3627
ID
787
788 /*
789 * Initialize the device.
790 */
791 status = rt2x00dev->ops->lib->initialize(rt2x00dev);
ed499983
ID
792 if (status) {
793 rt2x00queue_uninitialize(rt2x00dev);
794 return status;
795 }
95ea3627 796
0262ab0d 797 set_bit(DEVICE_STATE_INITIALIZED, &rt2x00dev->flags);
95ea3627
ID
798
799 /*
1682fe6d 800 * Register the extra components.
95ea3627 801 */
1682fe6d 802 rt2x00rfkill_register(rt2x00dev);
95ea3627
ID
803
804 return 0;
95ea3627
ID
805}
806
e37ea213
ID
807int rt2x00lib_start(struct rt2x00_dev *rt2x00dev)
808{
809 int retval;
810
0262ab0d 811 if (test_bit(DEVICE_STATE_STARTED, &rt2x00dev->flags))
e37ea213
ID
812 return 0;
813
814 /*
815 * If this is the first interface which is added,
816 * we should load the firmware now.
817 */
9404ef34
ID
818 retval = rt2x00lib_load_firmware(rt2x00dev);
819 if (retval)
820 return retval;
e37ea213
ID
821
822 /*
823 * Initialize the device.
824 */
825 retval = rt2x00lib_initialize(rt2x00dev);
826 if (retval)
827 return retval;
828
6bb40dd1
ID
829 rt2x00dev->intf_ap_count = 0;
830 rt2x00dev->intf_sta_count = 0;
831 rt2x00dev->intf_associated = 0;
832
bdfa500b
ID
833 /* Enable the radio */
834 retval = rt2x00lib_enable_radio(rt2x00dev);
835 if (retval) {
836 rt2x00queue_uninitialize(rt2x00dev);
837 return retval;
838 }
839
0262ab0d 840 set_bit(DEVICE_STATE_STARTED, &rt2x00dev->flags);
e37ea213
ID
841
842 return 0;
843}
844
845void rt2x00lib_stop(struct rt2x00_dev *rt2x00dev)
846{
0262ab0d 847 if (!test_and_clear_bit(DEVICE_STATE_STARTED, &rt2x00dev->flags))
e37ea213
ID
848 return;
849
850 /*
851 * Perhaps we can add something smarter here,
852 * but for now just disabling the radio should do.
853 */
854 rt2x00lib_disable_radio(rt2x00dev);
855
6bb40dd1
ID
856 rt2x00dev->intf_ap_count = 0;
857 rt2x00dev->intf_sta_count = 0;
858 rt2x00dev->intf_associated = 0;
e37ea213
ID
859}
860
95ea3627
ID
861/*
862 * driver allocation handlers.
863 */
95ea3627
ID
864int rt2x00lib_probe_dev(struct rt2x00_dev *rt2x00dev)
865{
866 int retval = -ENOMEM;
867
8ff48a8b
ID
868 mutex_init(&rt2x00dev->csr_mutex);
869
66f84d65
SC
870 set_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags);
871
6bb40dd1
ID
872 /*
873 * Make room for rt2x00_intf inside the per-interface
874 * structure ieee80211_vif.
875 */
876 rt2x00dev->hw->vif_data_size = sizeof(struct rt2x00_intf);
877
3514a441
ID
878 /*
879 * Determine which operating modes are supported, all modes
880 * which require beaconing, depend on the availability of
881 * beacon entries.
882 */
883 rt2x00dev->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
884 if (rt2x00dev->ops->bcn->entry_num > 0)
885 rt2x00dev->hw->wiphy->interface_modes |=
886 BIT(NL80211_IFTYPE_ADHOC) |
a07dbea2 887 BIT(NL80211_IFTYPE_AP) |
ce292a64
ID
888 BIT(NL80211_IFTYPE_MESH_POINT) |
889 BIT(NL80211_IFTYPE_WDS);
f59ac048 890
95ea3627
ID
891 /*
892 * Let the driver probe the device to detect the capabilities.
893 */
894 retval = rt2x00dev->ops->lib->probe_hw(rt2x00dev);
895 if (retval) {
896 ERROR(rt2x00dev, "Failed to allocate device.\n");
897 goto exit;
898 }
899
900 /*
901 * Initialize configuration work.
902 */
6bb40dd1 903 INIT_WORK(&rt2x00dev->intf_work, rt2x00lib_intf_scheduled);
95ea3627 904
95ea3627 905 /*
181d6902 906 * Allocate queue array.
95ea3627 907 */
181d6902 908 retval = rt2x00queue_allocate(rt2x00dev);
95ea3627
ID
909 if (retval)
910 goto exit;
911
912 /*
913 * Initialize ieee80211 structure.
914 */
915 retval = rt2x00lib_probe_hw(rt2x00dev);
916 if (retval) {
917 ERROR(rt2x00dev, "Failed to initialize hw.\n");
918 goto exit;
919 }
920
a9450b70 921 /*
1682fe6d 922 * Register extra components.
a9450b70 923 */
84e3196f 924 rt2x00link_register(rt2x00dev);
a9450b70 925 rt2x00leds_register(rt2x00dev);
95ea3627
ID
926 rt2x00debug_register(rt2x00dev);
927
928 return 0;
929
930exit:
931 rt2x00lib_remove_dev(rt2x00dev);
932
933 return retval;
934}
935EXPORT_SYMBOL_GPL(rt2x00lib_probe_dev);
936
937void rt2x00lib_remove_dev(struct rt2x00_dev *rt2x00dev)
938{
0262ab0d 939 clear_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags);
066cb637 940
95ea3627
ID
941 /*
942 * Disable radio.
943 */
944 rt2x00lib_disable_radio(rt2x00dev);
945
d8cc8926
PR
946 /*
947 * Stop all work.
948 */
d8cc8926
PR
949 cancel_work_sync(&rt2x00dev->intf_work);
950
95ea3627
ID
951 /*
952 * Uninitialize device.
953 */
954 rt2x00lib_uninitialize(rt2x00dev);
955
956 /*
1682fe6d 957 * Free extra components
95ea3627
ID
958 */
959 rt2x00debug_deregister(rt2x00dev);
a9450b70
ID
960 rt2x00leds_unregister(rt2x00dev);
961
95ea3627
ID
962 /*
963 * Free ieee80211_hw memory.
964 */
965 rt2x00lib_remove_hw(rt2x00dev);
966
967 /*
968 * Free firmware image.
969 */
970 rt2x00lib_free_firmware(rt2x00dev);
971
972 /*
181d6902 973 * Free queue structures.
95ea3627 974 */
181d6902 975 rt2x00queue_free(rt2x00dev);
95ea3627
ID
976}
977EXPORT_SYMBOL_GPL(rt2x00lib_remove_dev);
978
979/*
980 * Device state handlers
981 */
982#ifdef CONFIG_PM
983int rt2x00lib_suspend(struct rt2x00_dev *rt2x00dev, pm_message_t state)
984{
95ea3627 985 NOTICE(rt2x00dev, "Going to sleep.\n");
066cb637
ID
986
987 /*
07126127 988 * Prevent mac80211 from accessing driver while suspended.
066cb637 989 */
07126127
ID
990 if (!test_and_clear_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
991 return 0;
95ea3627
ID
992
993 /*
07126127 994 * Cleanup as much as possible.
95ea3627 995 */
95ea3627 996 rt2x00lib_uninitialize(rt2x00dev);
1682fe6d
ID
997
998 /*
999 * Suspend/disable extra components.
1000 */
a9450b70 1001 rt2x00leds_suspend(rt2x00dev);
95ea3627
ID
1002 rt2x00debug_deregister(rt2x00dev);
1003
1004 /*
9896322a
ID
1005 * Set device mode to sleep for power management,
1006 * on some hardware this call seems to consistently fail.
1007 * From the specifications it is hard to tell why it fails,
1008 * and if this is a "bad thing".
1009 * Overall it is safe to just ignore the failure and
1010 * continue suspending. The only downside is that the
1011 * device will not be in optimal power save mode, but with
1012 * the radio and the other components already disabled the
1013 * device is as good as disabled.
95ea3627 1014 */
07126127 1015 if (rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_SLEEP))
9896322a
ID
1016 WARNING(rt2x00dev, "Device failed to enter sleep state, "
1017 "continue suspending.\n");
95ea3627
ID
1018
1019 return 0;
1020}
1021EXPORT_SYMBOL_GPL(rt2x00lib_suspend);
1022
1023int rt2x00lib_resume(struct rt2x00_dev *rt2x00dev)
1024{
95ea3627 1025 NOTICE(rt2x00dev, "Waking up.\n");
95ea3627
ID
1026
1027 /*
1682fe6d 1028 * Restore/enable extra components.
95ea3627
ID
1029 */
1030 rt2x00debug_register(rt2x00dev);
a9450b70 1031 rt2x00leds_resume(rt2x00dev);
95ea3627 1032
e37ea213
ID
1033 /*
1034 * We are ready again to receive requests from mac80211.
1035 */
0262ab0d 1036 set_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags);
e37ea213 1037
95ea3627 1038 return 0;
95ea3627
ID
1039}
1040EXPORT_SYMBOL_GPL(rt2x00lib_resume);
1041#endif /* CONFIG_PM */
1042
1043/*
1044 * rt2x00lib module information.
1045 */
1046MODULE_AUTHOR(DRV_PROJECT);
1047MODULE_VERSION(DRV_VERSION);
1048MODULE_DESCRIPTION("rt2x00 library");
1049MODULE_LICENSE("GPL");