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