mac80211: Fix rate reporting regression
[linux-2.6] / drivers / net / wireless / rt2x00 / rt2x00usb.c
1 /*
2         Copyright (C) 2004 - 2007 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: rt2x00usb
23         Abstract: rt2x00 generic usb device routines.
24  */
25
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/usb.h>
29 #include <linux/bug.h>
30
31 #include "rt2x00.h"
32 #include "rt2x00usb.h"
33
34 /*
35  * Interfacing with the HW.
36  */
37 int rt2x00usb_vendor_request(struct rt2x00_dev *rt2x00dev,
38                              const u8 request, const u8 requesttype,
39                              const u16 offset, const u16 value,
40                              void *buffer, const u16 buffer_length,
41                              const int timeout)
42 {
43         struct usb_device *usb_dev =
44             interface_to_usbdev(rt2x00dev_usb(rt2x00dev));
45         int status;
46         unsigned int i;
47         unsigned int pipe =
48             (requesttype == USB_VENDOR_REQUEST_IN) ?
49             usb_rcvctrlpipe(usb_dev, 0) : usb_sndctrlpipe(usb_dev, 0);
50
51
52         for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
53                 status = usb_control_msg(usb_dev, pipe, request, requesttype,
54                                          value, offset, buffer, buffer_length,
55                                          timeout);
56                 if (status >= 0)
57                         return 0;
58
59                 /*
60                  * Check for errors
61                  * -ENODEV: Device has disappeared, no point continuing.
62                  * All other errors: Try again.
63                  */
64                 else if (status == -ENODEV)
65                         break;
66         }
67
68         ERROR(rt2x00dev,
69               "Vendor Request 0x%02x failed for offset 0x%04x with error %d.\n",
70               request, offset, status);
71
72         return status;
73 }
74 EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request);
75
76 int rt2x00usb_vendor_req_buff_lock(struct rt2x00_dev *rt2x00dev,
77                                    const u8 request, const u8 requesttype,
78                                    const u16 offset, void *buffer,
79                                    const u16 buffer_length, const int timeout)
80 {
81         int status;
82
83         BUG_ON(!mutex_is_locked(&rt2x00dev->usb_cache_mutex));
84
85         /*
86          * Check for Cache availability.
87          */
88         if (unlikely(!rt2x00dev->csr_cache || buffer_length > CSR_CACHE_SIZE)) {
89                 ERROR(rt2x00dev, "CSR cache not available.\n");
90                 return -ENOMEM;
91         }
92
93         if (requesttype == USB_VENDOR_REQUEST_OUT)
94                 memcpy(rt2x00dev->csr_cache, buffer, buffer_length);
95
96         status = rt2x00usb_vendor_request(rt2x00dev, request, requesttype,
97                                           offset, 0, rt2x00dev->csr_cache,
98                                           buffer_length, timeout);
99
100         if (!status && requesttype == USB_VENDOR_REQUEST_IN)
101                 memcpy(buffer, rt2x00dev->csr_cache, buffer_length);
102
103         return status;
104 }
105 EXPORT_SYMBOL_GPL(rt2x00usb_vendor_req_buff_lock);
106
107 int rt2x00usb_vendor_request_buff(struct rt2x00_dev *rt2x00dev,
108                                   const u8 request, const u8 requesttype,
109                                   const u16 offset, void *buffer,
110                                   const u16 buffer_length, const int timeout)
111 {
112         int status;
113
114         mutex_lock(&rt2x00dev->usb_cache_mutex);
115
116         status = rt2x00usb_vendor_req_buff_lock(rt2x00dev, request,
117                                                 requesttype, offset, buffer,
118                                                 buffer_length, timeout);
119
120         mutex_unlock(&rt2x00dev->usb_cache_mutex);
121
122         return status;
123 }
124 EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_buff);
125
126 /*
127  * TX data handlers.
128  */
129 static void rt2x00usb_interrupt_txdone(struct urb *urb)
130 {
131         struct data_entry *entry = (struct data_entry *)urb->context;
132         struct data_ring *ring = entry->ring;
133         struct rt2x00_dev *rt2x00dev = ring->rt2x00dev;
134         __le32 *txd = (__le32 *)entry->skb->data;
135         u32 word;
136         int tx_status;
137
138         if (!test_bit(DEVICE_ENABLED_RADIO, &rt2x00dev->flags) ||
139             !__test_and_clear_bit(ENTRY_OWNER_NIC, &entry->flags))
140                 return;
141
142         rt2x00_desc_read(txd, 0, &word);
143
144         /*
145          * Remove the descriptor data from the buffer.
146          */
147         skb_pull(entry->skb, ring->desc_size);
148
149         /*
150          * Obtain the status about this packet.
151          */
152         tx_status = !urb->status ? TX_SUCCESS : TX_FAIL_RETRY;
153
154         rt2x00lib_txdone(entry, tx_status, 0);
155
156         /*
157          * Make this entry available for reuse.
158          */
159         entry->flags = 0;
160         rt2x00_ring_index_done_inc(entry->ring);
161
162         /*
163          * If the data ring was full before the txdone handler
164          * we must make sure the packet queue in the mac80211 stack
165          * is reenabled when the txdone handler has finished.
166          */
167         if (!rt2x00_ring_full(ring))
168                 ieee80211_wake_queue(rt2x00dev->hw,
169                                      entry->tx_status.control.queue);
170 }
171
172 int rt2x00usb_write_tx_data(struct rt2x00_dev *rt2x00dev,
173                             struct data_ring *ring, struct sk_buff *skb,
174                             struct ieee80211_tx_control *control)
175 {
176         struct usb_device *usb_dev =
177             interface_to_usbdev(rt2x00dev_usb(rt2x00dev));
178         struct data_entry *entry = rt2x00_get_data_entry(ring);
179         struct skb_desc *desc;
180         u32 length;
181
182         if (rt2x00_ring_full(ring))
183                 return -EINVAL;
184
185         if (test_bit(ENTRY_OWNER_NIC, &entry->flags)) {
186                 ERROR(rt2x00dev,
187                       "Arrived at non-free entry in the non-full queue %d.\n"
188                       "Please file bug report to %s.\n",
189                       control->queue, DRV_PROJECT);
190                 return -EINVAL;
191         }
192
193         /*
194          * Add the descriptor in front of the skb.
195          */
196         skb_push(skb, ring->desc_size);
197         memset(skb->data, 0, ring->desc_size);
198
199         /*
200          * Fill in skb descriptor
201          */
202         desc = get_skb_desc(skb);
203         desc->desc_len = ring->desc_size;
204         desc->data_len = skb->len - ring->desc_size;
205         desc->desc = skb->data;
206         desc->data = skb->data + ring->desc_size;
207         desc->ring = ring;
208         desc->entry = entry;
209
210         rt2x00lib_write_tx_desc(rt2x00dev, skb, control);
211
212         /*
213          * USB devices cannot blindly pass the skb->len as the
214          * length of the data to usb_fill_bulk_urb. Pass the skb
215          * to the driver to determine what the length should be.
216          */
217         length = rt2x00dev->ops->lib->get_tx_data_len(rt2x00dev, skb);
218
219         /*
220          * Initialize URB and send the frame to the device.
221          */
222         __set_bit(ENTRY_OWNER_NIC, &entry->flags);
223         usb_fill_bulk_urb(entry->priv, usb_dev, usb_sndbulkpipe(usb_dev, 1),
224                           skb->data, length, rt2x00usb_interrupt_txdone, entry);
225         usb_submit_urb(entry->priv, GFP_ATOMIC);
226
227         rt2x00_ring_index_inc(ring);
228
229         return 0;
230 }
231 EXPORT_SYMBOL_GPL(rt2x00usb_write_tx_data);
232
233 /*
234  * RX data handlers.
235  */
236 static void rt2x00usb_interrupt_rxdone(struct urb *urb)
237 {
238         struct data_entry *entry = (struct data_entry *)urb->context;
239         struct data_ring *ring = entry->ring;
240         struct rt2x00_dev *rt2x00dev = ring->rt2x00dev;
241         struct sk_buff *skb;
242         struct ieee80211_hdr *hdr;
243         struct skb_desc *skbdesc;
244         struct rxdata_entry_desc desc;
245         int header_size;
246         int frame_size;
247
248         if (!test_bit(DEVICE_ENABLED_RADIO, &rt2x00dev->flags) ||
249             !test_and_clear_bit(ENTRY_OWNER_NIC, &entry->flags))
250                 return;
251
252         /*
253          * Check if the received data is simply too small
254          * to be actually valid, or if the urb is signaling
255          * a problem.
256          */
257         if (urb->actual_length < entry->ring->desc_size || urb->status)
258                 goto skip_entry;
259
260         memset(&desc, 0, sizeof(desc));
261         rt2x00dev->ops->lib->fill_rxdone(entry, &desc);
262
263         /*
264          * Allocate a new sk buffer to replace the current one.
265          * If allocation fails, we should drop the current frame
266          * so we can recycle the existing sk buffer for the new frame.
267          * As alignment we use 2 and not NET_IP_ALIGN because we need
268          * to be sure we have 2 bytes room in the head. (NET_IP_ALIGN
269          * can be 0 on some hardware). We use these 2 bytes for frame
270          * alignment later, we assume that the chance that
271          * header_size % 4 == 2 is bigger then header_size % 2 == 0
272          * and thus optimize alignment by reserving the 2 bytes in
273          * advance.
274          */
275         frame_size = entry->ring->data_size + entry->ring->desc_size;
276         skb = dev_alloc_skb(frame_size + 2);
277         if (!skb)
278                 goto skip_entry;
279
280         skb_reserve(skb, 2);
281         skb_put(skb, frame_size);
282
283         /*
284          * The data behind the ieee80211 header must be
285          * aligned on a 4 byte boundary.
286          * After that trim the entire buffer down to only
287          * contain the valid frame data excluding the device
288          * descriptor.
289          */
290         hdr = (struct ieee80211_hdr *)entry->skb->data;
291         header_size =
292             ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control));
293
294         if (header_size % 4 == 0) {
295                 skb_push(entry->skb, 2);
296                 memmove(entry->skb->data, entry->skb->data + 2, skb->len - 2);
297         }
298         skb_trim(entry->skb, desc.size);
299
300         /*
301          * Fill in skb descriptor
302          */
303         skbdesc = get_skb_desc(entry->skb);
304         skbdesc->desc_len = entry->ring->desc_size;
305         skbdesc->data_len = entry->skb->len;
306         skbdesc->ring = ring;
307         skbdesc->entry = entry;
308
309         /*
310          * Send the frame to rt2x00lib for further processing.
311          */
312         rt2x00lib_rxdone(entry, entry->skb, &desc);
313
314         /*
315          * Replace current entry's skb with the newly allocated one,
316          * and reinitialize the urb.
317          */
318         entry->skb = skb;
319         urb->transfer_buffer = entry->skb->data;
320         urb->transfer_buffer_length = entry->skb->len;
321
322 skip_entry:
323         if (test_bit(DEVICE_ENABLED_RADIO, &ring->rt2x00dev->flags)) {
324                 __set_bit(ENTRY_OWNER_NIC, &entry->flags);
325                 usb_submit_urb(urb, GFP_ATOMIC);
326         }
327
328         rt2x00_ring_index_inc(ring);
329 }
330
331 /*
332  * Radio handlers
333  */
334 void rt2x00usb_disable_radio(struct rt2x00_dev *rt2x00dev)
335 {
336         struct data_ring *ring;
337         unsigned int i;
338
339         rt2x00usb_vendor_request_sw(rt2x00dev, USB_RX_CONTROL, 0x0000, 0x0000,
340                                     REGISTER_TIMEOUT);
341
342         /*
343          * Cancel all rings.
344          */
345         ring_for_each(rt2x00dev, ring) {
346                 for (i = 0; i < ring->stats.limit; i++)
347                         usb_kill_urb(ring->entry[i].priv);
348         }
349 }
350 EXPORT_SYMBOL_GPL(rt2x00usb_disable_radio);
351
352 /*
353  * Device initialization handlers.
354  */
355 void rt2x00usb_init_rxentry(struct rt2x00_dev *rt2x00dev,
356                             struct data_entry *entry)
357 {
358         struct usb_device *usb_dev =
359              interface_to_usbdev(rt2x00dev_usb(rt2x00dev));
360
361         usb_fill_bulk_urb(entry->priv, usb_dev,
362                           usb_rcvbulkpipe(usb_dev, 1),
363                           entry->skb->data, entry->skb->len,
364                           rt2x00usb_interrupt_rxdone, entry);
365
366         __set_bit(ENTRY_OWNER_NIC, &entry->flags);
367         usb_submit_urb(entry->priv, GFP_ATOMIC);
368 }
369 EXPORT_SYMBOL_GPL(rt2x00usb_init_rxentry);
370
371 void rt2x00usb_init_txentry(struct rt2x00_dev *rt2x00dev,
372                             struct data_entry *entry)
373 {
374         entry->flags = 0;
375 }
376 EXPORT_SYMBOL_GPL(rt2x00usb_init_txentry);
377
378 static int rt2x00usb_alloc_urb(struct rt2x00_dev *rt2x00dev,
379                                struct data_ring *ring)
380 {
381         unsigned int i;
382
383         /*
384          * Allocate the URB's
385          */
386         for (i = 0; i < ring->stats.limit; i++) {
387                 ring->entry[i].priv = usb_alloc_urb(0, GFP_KERNEL);
388                 if (!ring->entry[i].priv)
389                         return -ENOMEM;
390         }
391
392         return 0;
393 }
394
395 static void rt2x00usb_free_urb(struct rt2x00_dev *rt2x00dev,
396                                struct data_ring *ring)
397 {
398         unsigned int i;
399
400         if (!ring->entry)
401                 return;
402
403         for (i = 0; i < ring->stats.limit; i++) {
404                 usb_kill_urb(ring->entry[i].priv);
405                 usb_free_urb(ring->entry[i].priv);
406                 if (ring->entry[i].skb)
407                         kfree_skb(ring->entry[i].skb);
408         }
409 }
410
411 int rt2x00usb_initialize(struct rt2x00_dev *rt2x00dev)
412 {
413         struct data_ring *ring;
414         struct sk_buff *skb;
415         unsigned int entry_size;
416         unsigned int i;
417         int status;
418
419         /*
420          * Allocate DMA
421          */
422         ring_for_each(rt2x00dev, ring) {
423                 status = rt2x00usb_alloc_urb(rt2x00dev, ring);
424                 if (status)
425                         goto exit;
426         }
427
428         /*
429          * For the RX ring, skb's should be allocated.
430          */
431         entry_size = rt2x00dev->rx->data_size + rt2x00dev->rx->desc_size;
432         for (i = 0; i < rt2x00dev->rx->stats.limit; i++) {
433                 skb = dev_alloc_skb(NET_IP_ALIGN + entry_size);
434                 if (!skb)
435                         goto exit;
436
437                 skb_reserve(skb, NET_IP_ALIGN);
438                 skb_put(skb, entry_size);
439
440                 rt2x00dev->rx->entry[i].skb = skb;
441         }
442
443         return 0;
444
445 exit:
446         rt2x00usb_uninitialize(rt2x00dev);
447
448         return status;
449 }
450 EXPORT_SYMBOL_GPL(rt2x00usb_initialize);
451
452 void rt2x00usb_uninitialize(struct rt2x00_dev *rt2x00dev)
453 {
454         struct data_ring *ring;
455
456         ring_for_each(rt2x00dev, ring)
457                 rt2x00usb_free_urb(rt2x00dev, ring);
458 }
459 EXPORT_SYMBOL_GPL(rt2x00usb_uninitialize);
460
461 /*
462  * USB driver handlers.
463  */
464 static void rt2x00usb_free_reg(struct rt2x00_dev *rt2x00dev)
465 {
466         kfree(rt2x00dev->rf);
467         rt2x00dev->rf = NULL;
468
469         kfree(rt2x00dev->eeprom);
470         rt2x00dev->eeprom = NULL;
471
472         kfree(rt2x00dev->csr_cache);
473         rt2x00dev->csr_cache = NULL;
474 }
475
476 static int rt2x00usb_alloc_reg(struct rt2x00_dev *rt2x00dev)
477 {
478         rt2x00dev->csr_cache = kzalloc(CSR_CACHE_SIZE, GFP_KERNEL);
479         if (!rt2x00dev->csr_cache)
480                 goto exit;
481
482         rt2x00dev->eeprom = kzalloc(rt2x00dev->ops->eeprom_size, GFP_KERNEL);
483         if (!rt2x00dev->eeprom)
484                 goto exit;
485
486         rt2x00dev->rf = kzalloc(rt2x00dev->ops->rf_size, GFP_KERNEL);
487         if (!rt2x00dev->rf)
488                 goto exit;
489
490         return 0;
491
492 exit:
493         ERROR_PROBE("Failed to allocate registers.\n");
494
495         rt2x00usb_free_reg(rt2x00dev);
496
497         return -ENOMEM;
498 }
499
500 int rt2x00usb_probe(struct usb_interface *usb_intf,
501                     const struct usb_device_id *id)
502 {
503         struct usb_device *usb_dev = interface_to_usbdev(usb_intf);
504         struct rt2x00_ops *ops = (struct rt2x00_ops *)id->driver_info;
505         struct ieee80211_hw *hw;
506         struct rt2x00_dev *rt2x00dev;
507         int retval;
508
509         usb_dev = usb_get_dev(usb_dev);
510
511         hw = ieee80211_alloc_hw(sizeof(struct rt2x00_dev), ops->hw);
512         if (!hw) {
513                 ERROR_PROBE("Failed to allocate hardware.\n");
514                 retval = -ENOMEM;
515                 goto exit_put_device;
516         }
517
518         usb_set_intfdata(usb_intf, hw);
519
520         rt2x00dev = hw->priv;
521         rt2x00dev->dev = usb_intf;
522         rt2x00dev->ops = ops;
523         rt2x00dev->hw = hw;
524         mutex_init(&rt2x00dev->usb_cache_mutex);
525
526         rt2x00dev->usb_maxpacket =
527             usb_maxpacket(usb_dev, usb_sndbulkpipe(usb_dev, 1), 1);
528         if (!rt2x00dev->usb_maxpacket)
529                 rt2x00dev->usb_maxpacket = 1;
530
531         retval = rt2x00usb_alloc_reg(rt2x00dev);
532         if (retval)
533                 goto exit_free_device;
534
535         retval = rt2x00lib_probe_dev(rt2x00dev);
536         if (retval)
537                 goto exit_free_reg;
538
539         return 0;
540
541 exit_free_reg:
542         rt2x00usb_free_reg(rt2x00dev);
543
544 exit_free_device:
545         ieee80211_free_hw(hw);
546
547 exit_put_device:
548         usb_put_dev(usb_dev);
549
550         usb_set_intfdata(usb_intf, NULL);
551
552         return retval;
553 }
554 EXPORT_SYMBOL_GPL(rt2x00usb_probe);
555
556 void rt2x00usb_disconnect(struct usb_interface *usb_intf)
557 {
558         struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
559         struct rt2x00_dev *rt2x00dev = hw->priv;
560
561         /*
562          * Free all allocated data.
563          */
564         rt2x00lib_remove_dev(rt2x00dev);
565         rt2x00usb_free_reg(rt2x00dev);
566         ieee80211_free_hw(hw);
567
568         /*
569          * Free the USB device data.
570          */
571         usb_set_intfdata(usb_intf, NULL);
572         usb_put_dev(interface_to_usbdev(usb_intf));
573 }
574 EXPORT_SYMBOL_GPL(rt2x00usb_disconnect);
575
576 #ifdef CONFIG_PM
577 int rt2x00usb_suspend(struct usb_interface *usb_intf, pm_message_t state)
578 {
579         struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
580         struct rt2x00_dev *rt2x00dev = hw->priv;
581         int retval;
582
583         retval = rt2x00lib_suspend(rt2x00dev, state);
584         if (retval)
585                 return retval;
586
587         rt2x00usb_free_reg(rt2x00dev);
588
589         /*
590          * Decrease usbdev refcount.
591          */
592         usb_put_dev(interface_to_usbdev(usb_intf));
593
594         return 0;
595 }
596 EXPORT_SYMBOL_GPL(rt2x00usb_suspend);
597
598 int rt2x00usb_resume(struct usb_interface *usb_intf)
599 {
600         struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
601         struct rt2x00_dev *rt2x00dev = hw->priv;
602         int retval;
603
604         usb_get_dev(interface_to_usbdev(usb_intf));
605
606         retval = rt2x00usb_alloc_reg(rt2x00dev);
607         if (retval)
608                 return retval;
609
610         retval = rt2x00lib_resume(rt2x00dev);
611         if (retval)
612                 goto exit_free_reg;
613
614         return 0;
615
616 exit_free_reg:
617         rt2x00usb_free_reg(rt2x00dev);
618
619         return retval;
620 }
621 EXPORT_SYMBOL_GPL(rt2x00usb_resume);
622 #endif /* CONFIG_PM */
623
624 /*
625  * rt2x00pci module information.
626  */
627 MODULE_AUTHOR(DRV_PROJECT);
628 MODULE_VERSION(DRV_VERSION);
629 MODULE_DESCRIPTION("rt2x00 library");
630 MODULE_LICENSE("GPL");