blob: 63726a152a1a77ca225d6846ca7c7d8fdc7b9056 [file] [log] [blame]
Ivo van Doorn95ea3622007-09-25 17:57:13 -07001/*
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
Ivo van Doorn95ea3622007-09-25 17:57:13 -070026#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/usb.h>
Adam Baker3d823462007-10-27 13:43:29 +020029#include <linux/bug.h>
Ivo van Doorn95ea3622007-09-25 17:57:13 -070030
31#include "rt2x00.h"
32#include "rt2x00usb.h"
33
34/*
35 * Interfacing with the HW.
36 */
Adam Baker0e14f6d2007-10-27 13:41:25 +020037int rt2x00usb_vendor_request(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn95ea3622007-09-25 17:57:13 -070038 const u8 request, const u8 requesttype,
39 const u16 offset, const u16 value,
40 void *buffer, const u16 buffer_length,
Ivo van Doorne9136552007-09-25 20:54:20 +020041 const int timeout)
Ivo van Doorn95ea3622007-09-25 17:57:13 -070042{
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
Adam Baker3d823462007-10-27 13:43:29 +020051
Ivo van Doorn95ea3622007-09-25 17:57:13 -070052 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 /*
Ivo van Doorne9136552007-09-25 20:54:20 +020060 * Check for errors
Ivo van Doorn95ea3622007-09-25 17:57:13 -070061 * -ENODEV: Device has disappeared, no point continuing.
Ivo van Doorne9136552007-09-25 20:54:20 +020062 * All other errors: Try again.
Ivo van Doorn95ea3622007-09-25 17:57:13 -070063 */
Ivo van Doorn95ea3622007-09-25 17:57:13 -070064 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}
74EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request);
75
Adam Baker3d823462007-10-27 13:43:29 +020076int 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)
Ivo van Doorn95ea3622007-09-25 17:57:13 -070080{
81 int status;
82
Adam Baker3d823462007-10-27 13:43:29 +020083 BUG_ON(!mutex_is_locked(&rt2x00dev->usb_cache_mutex));
84
Ivo van Doorn95ea3622007-09-25 17:57:13 -070085 /*
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}
Adam Baker3d823462007-10-27 13:43:29 +0200105EXPORT_SYMBOL_GPL(rt2x00usb_vendor_req_buff_lock);
106
107int 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}
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700124EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_buff);
125
126/*
127 * TX data handlers.
128 */
129static 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;
Ivo van Doorn4bd7c452008-01-24 00:48:03 -0800134 __le32 *txd = (__le32 *)entry->skb->data;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700135 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
172int 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));
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700178 struct data_entry *entry = rt2x00_get_data_entry(ring);
Ivo van Doorn08992f72008-01-24 01:56:25 -0800179 struct skb_desc *desc;
Ivo van Doorndd9fa2d2007-10-06 14:15:46 +0200180 u32 length;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700181
Ivo van Doorn1230cb82008-01-06 23:38:34 +0100182 if (rt2x00_ring_full(ring))
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700183 return -EINVAL;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700184
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);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700190 return -EINVAL;
191 }
192
193 /*
194 * Add the descriptor in front of the skb.
195 */
Ivo van Doorndd9fa2d2007-10-06 14:15:46 +0200196 skb_push(skb, ring->desc_size);
197 memset(skb->data, 0, ring->desc_size);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700198
Ivo van Doorn08992f72008-01-24 01:56:25 -0800199 /*
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);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700211
212 /*
Ivo van Doorndd9fa2d2007-10-06 14:15:46 +0200213 * 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.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700216 */
Ivo van Doornb242e892007-11-15 23:41:31 +0100217 length = rt2x00dev->ops->lib->get_tx_data_len(rt2x00dev, skb);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700218
Ivo van Doorndd9fa2d2007-10-06 14:15:46 +0200219 /*
220 * Initialize URB and send the frame to the device.
221 */
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700222 __set_bit(ENTRY_OWNER_NIC, &entry->flags);
Ivo van Doorn08992f72008-01-24 01:56:25 -0800223 usb_fill_bulk_urb(entry->priv, usb_dev, usb_sndbulkpipe(usb_dev, 1),
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700224 skb->data, length, rt2x00usb_interrupt_txdone, entry);
225 usb_submit_urb(entry->priv, GFP_ATOMIC);
226
227 rt2x00_ring_index_inc(ring);
228
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700229 return 0;
230}
231EXPORT_SYMBOL_GPL(rt2x00usb_write_tx_data);
232
233/*
234 * RX data handlers.
235 */
236static 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;
Ivo van Doornc5d0dc52008-01-06 23:40:27 +0100242 struct ieee80211_hdr *hdr;
Ivo van Doorn08992f72008-01-24 01:56:25 -0800243 struct skb_desc *skbdesc;
Johannes Berg4150c572007-09-17 01:29:23 -0400244 struct rxdata_entry_desc desc;
Ivo van Doornc5d0dc52008-01-06 23:40:27 +0100245 int header_size;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700246 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
Ivo van Doorn08992f72008-01-24 01:56:25 -0800260 memset(&desc, 0, sizeof(desc));
Johannes Berg4150c572007-09-17 01:29:23 -0400261 rt2x00dev->ops->lib->fill_rxdone(entry, &desc);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700262
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.
Ivo van Doornd101f642008-01-11 20:53:07 +0100267 * 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.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700274 */
275 frame_size = entry->ring->data_size + entry->ring->desc_size;
Ivo van Doornd101f642008-01-11 20:53:07 +0100276 skb = dev_alloc_skb(frame_size + 2);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700277 if (!skb)
278 goto skip_entry;
279
Ivo van Doornd101f642008-01-11 20:53:07 +0100280 skb_reserve(skb, 2);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700281 skb_put(skb, frame_size);
282
283 /*
Ivo van Doornc5d0dc52008-01-06 23:40:27 +0100284 * 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.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700289 */
Ivo van Doornc5d0dc52008-01-06 23:40:27 +0100290 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 }
Johannes Berg4150c572007-09-17 01:29:23 -0400298 skb_trim(entry->skb, desc.size);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700299
300 /*
Ivo van Doorn08992f72008-01-24 01:56:25 -0800301 * Fill in skb descriptor
302 */
303 skbdesc = get_skb_desc(entry->skb);
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100304 skbdesc->desc_len = entry->ring->desc_size;
305 skbdesc->data_len = entry->skb->len;
306 skbdesc->desc = entry->skb->data - skbdesc->desc_len;
Ivo van Doorn08992f72008-01-24 01:56:25 -0800307 skbdesc->data = entry->skb->data;
308 skbdesc->ring = ring;
309 skbdesc->entry = entry;
310
311 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700312 * Send the frame to rt2x00lib for further processing.
313 */
Johannes Berg4150c572007-09-17 01:29:23 -0400314 rt2x00lib_rxdone(entry, entry->skb, &desc);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700315
316 /*
317 * Replace current entry's skb with the newly allocated one,
318 * and reinitialize the urb.
319 */
320 entry->skb = skb;
321 urb->transfer_buffer = entry->skb->data;
322 urb->transfer_buffer_length = entry->skb->len;
323
324skip_entry:
325 if (test_bit(DEVICE_ENABLED_RADIO, &ring->rt2x00dev->flags)) {
326 __set_bit(ENTRY_OWNER_NIC, &entry->flags);
327 usb_submit_urb(urb, GFP_ATOMIC);
328 }
329
330 rt2x00_ring_index_inc(ring);
331}
332
333/*
334 * Radio handlers
335 */
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700336void rt2x00usb_disable_radio(struct rt2x00_dev *rt2x00dev)
337{
338 struct data_ring *ring;
339 unsigned int i;
340
341 rt2x00usb_vendor_request_sw(rt2x00dev, USB_RX_CONTROL, 0x0000, 0x0000,
342 REGISTER_TIMEOUT);
343
344 /*
345 * Cancel all rings.
346 */
347 ring_for_each(rt2x00dev, ring) {
348 for (i = 0; i < ring->stats.limit; i++)
349 usb_kill_urb(ring->entry[i].priv);
350 }
351}
352EXPORT_SYMBOL_GPL(rt2x00usb_disable_radio);
353
354/*
355 * Device initialization handlers.
356 */
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100357void rt2x00usb_init_rxentry(struct rt2x00_dev *rt2x00dev,
358 struct data_entry *entry)
359{
360 struct usb_device *usb_dev =
361 interface_to_usbdev(rt2x00dev_usb(rt2x00dev));
362
363 usb_fill_bulk_urb(entry->priv, usb_dev,
364 usb_rcvbulkpipe(usb_dev, 1),
365 entry->skb->data, entry->skb->len,
366 rt2x00usb_interrupt_rxdone, entry);
367
368 __set_bit(ENTRY_OWNER_NIC, &entry->flags);
369 usb_submit_urb(entry->priv, GFP_ATOMIC);
370}
371EXPORT_SYMBOL_GPL(rt2x00usb_init_rxentry);
372
373void rt2x00usb_init_txentry(struct rt2x00_dev *rt2x00dev,
374 struct data_entry *entry)
375{
376 entry->flags = 0;
377}
378EXPORT_SYMBOL_GPL(rt2x00usb_init_txentry);
379
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700380static int rt2x00usb_alloc_urb(struct rt2x00_dev *rt2x00dev,
381 struct data_ring *ring)
382{
383 unsigned int i;
384
385 /*
386 * Allocate the URB's
387 */
388 for (i = 0; i < ring->stats.limit; i++) {
389 ring->entry[i].priv = usb_alloc_urb(0, GFP_KERNEL);
390 if (!ring->entry[i].priv)
391 return -ENOMEM;
392 }
393
394 return 0;
395}
396
397static void rt2x00usb_free_urb(struct rt2x00_dev *rt2x00dev,
398 struct data_ring *ring)
399{
400 unsigned int i;
401
402 if (!ring->entry)
403 return;
404
405 for (i = 0; i < ring->stats.limit; i++) {
406 usb_kill_urb(ring->entry[i].priv);
407 usb_free_urb(ring->entry[i].priv);
408 if (ring->entry[i].skb)
409 kfree_skb(ring->entry[i].skb);
410 }
411}
412
413int rt2x00usb_initialize(struct rt2x00_dev *rt2x00dev)
414{
415 struct data_ring *ring;
416 struct sk_buff *skb;
417 unsigned int entry_size;
418 unsigned int i;
419 int status;
420
421 /*
422 * Allocate DMA
423 */
424 ring_for_each(rt2x00dev, ring) {
425 status = rt2x00usb_alloc_urb(rt2x00dev, ring);
426 if (status)
427 goto exit;
428 }
429
430 /*
431 * For the RX ring, skb's should be allocated.
432 */
433 entry_size = rt2x00dev->rx->data_size + rt2x00dev->rx->desc_size;
434 for (i = 0; i < rt2x00dev->rx->stats.limit; i++) {
435 skb = dev_alloc_skb(NET_IP_ALIGN + entry_size);
436 if (!skb)
437 goto exit;
438
439 skb_reserve(skb, NET_IP_ALIGN);
440 skb_put(skb, entry_size);
441
442 rt2x00dev->rx->entry[i].skb = skb;
443 }
444
445 return 0;
446
447exit:
448 rt2x00usb_uninitialize(rt2x00dev);
449
450 return status;
451}
452EXPORT_SYMBOL_GPL(rt2x00usb_initialize);
453
454void rt2x00usb_uninitialize(struct rt2x00_dev *rt2x00dev)
455{
456 struct data_ring *ring;
457
458 ring_for_each(rt2x00dev, ring)
459 rt2x00usb_free_urb(rt2x00dev, ring);
460}
461EXPORT_SYMBOL_GPL(rt2x00usb_uninitialize);
462
463/*
464 * USB driver handlers.
465 */
466static void rt2x00usb_free_reg(struct rt2x00_dev *rt2x00dev)
467{
468 kfree(rt2x00dev->rf);
469 rt2x00dev->rf = NULL;
470
471 kfree(rt2x00dev->eeprom);
472 rt2x00dev->eeprom = NULL;
473
474 kfree(rt2x00dev->csr_cache);
475 rt2x00dev->csr_cache = NULL;
476}
477
478static int rt2x00usb_alloc_reg(struct rt2x00_dev *rt2x00dev)
479{
480 rt2x00dev->csr_cache = kzalloc(CSR_CACHE_SIZE, GFP_KERNEL);
481 if (!rt2x00dev->csr_cache)
482 goto exit;
483
484 rt2x00dev->eeprom = kzalloc(rt2x00dev->ops->eeprom_size, GFP_KERNEL);
485 if (!rt2x00dev->eeprom)
486 goto exit;
487
488 rt2x00dev->rf = kzalloc(rt2x00dev->ops->rf_size, GFP_KERNEL);
489 if (!rt2x00dev->rf)
490 goto exit;
491
492 return 0;
493
494exit:
495 ERROR_PROBE("Failed to allocate registers.\n");
496
497 rt2x00usb_free_reg(rt2x00dev);
498
499 return -ENOMEM;
500}
501
502int rt2x00usb_probe(struct usb_interface *usb_intf,
503 const struct usb_device_id *id)
504{
505 struct usb_device *usb_dev = interface_to_usbdev(usb_intf);
506 struct rt2x00_ops *ops = (struct rt2x00_ops *)id->driver_info;
507 struct ieee80211_hw *hw;
508 struct rt2x00_dev *rt2x00dev;
509 int retval;
510
511 usb_dev = usb_get_dev(usb_dev);
512
513 hw = ieee80211_alloc_hw(sizeof(struct rt2x00_dev), ops->hw);
514 if (!hw) {
515 ERROR_PROBE("Failed to allocate hardware.\n");
516 retval = -ENOMEM;
517 goto exit_put_device;
518 }
519
520 usb_set_intfdata(usb_intf, hw);
521
522 rt2x00dev = hw->priv;
523 rt2x00dev->dev = usb_intf;
524 rt2x00dev->ops = ops;
525 rt2x00dev->hw = hw;
Adam Baker3d823462007-10-27 13:43:29 +0200526 mutex_init(&rt2x00dev->usb_cache_mutex);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700527
Ivo van Doornb242e892007-11-15 23:41:31 +0100528 rt2x00dev->usb_maxpacket =
529 usb_maxpacket(usb_dev, usb_sndbulkpipe(usb_dev, 1), 1);
530 if (!rt2x00dev->usb_maxpacket)
531 rt2x00dev->usb_maxpacket = 1;
532
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700533 retval = rt2x00usb_alloc_reg(rt2x00dev);
534 if (retval)
535 goto exit_free_device;
536
537 retval = rt2x00lib_probe_dev(rt2x00dev);
538 if (retval)
539 goto exit_free_reg;
540
541 return 0;
542
543exit_free_reg:
544 rt2x00usb_free_reg(rt2x00dev);
545
546exit_free_device:
547 ieee80211_free_hw(hw);
548
549exit_put_device:
550 usb_put_dev(usb_dev);
551
552 usb_set_intfdata(usb_intf, NULL);
553
554 return retval;
555}
556EXPORT_SYMBOL_GPL(rt2x00usb_probe);
557
558void rt2x00usb_disconnect(struct usb_interface *usb_intf)
559{
560 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
561 struct rt2x00_dev *rt2x00dev = hw->priv;
562
563 /*
564 * Free all allocated data.
565 */
566 rt2x00lib_remove_dev(rt2x00dev);
567 rt2x00usb_free_reg(rt2x00dev);
568 ieee80211_free_hw(hw);
569
570 /*
571 * Free the USB device data.
572 */
573 usb_set_intfdata(usb_intf, NULL);
574 usb_put_dev(interface_to_usbdev(usb_intf));
575}
576EXPORT_SYMBOL_GPL(rt2x00usb_disconnect);
577
578#ifdef CONFIG_PM
579int rt2x00usb_suspend(struct usb_interface *usb_intf, pm_message_t state)
580{
581 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
582 struct rt2x00_dev *rt2x00dev = hw->priv;
583 int retval;
584
585 retval = rt2x00lib_suspend(rt2x00dev, state);
586 if (retval)
587 return retval;
588
589 rt2x00usb_free_reg(rt2x00dev);
590
591 /*
592 * Decrease usbdev refcount.
593 */
594 usb_put_dev(interface_to_usbdev(usb_intf));
595
596 return 0;
597}
598EXPORT_SYMBOL_GPL(rt2x00usb_suspend);
599
600int rt2x00usb_resume(struct usb_interface *usb_intf)
601{
602 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
603 struct rt2x00_dev *rt2x00dev = hw->priv;
604 int retval;
605
606 usb_get_dev(interface_to_usbdev(usb_intf));
607
608 retval = rt2x00usb_alloc_reg(rt2x00dev);
609 if (retval)
610 return retval;
611
612 retval = rt2x00lib_resume(rt2x00dev);
613 if (retval)
614 goto exit_free_reg;
615
616 return 0;
617
618exit_free_reg:
619 rt2x00usb_free_reg(rt2x00dev);
620
621 return retval;
622}
623EXPORT_SYMBOL_GPL(rt2x00usb_resume);
624#endif /* CONFIG_PM */
625
626/*
627 * rt2x00pci module information.
628 */
629MODULE_AUTHOR(DRV_PROJECT);
630MODULE_VERSION(DRV_VERSION);
631MODULE_DESCRIPTION("rt2x00 library");
632MODULE_LICENSE("GPL");