2 Copyright (C) 2004 - 2008 rt2x00 SourceForge Project
3 <http://rt2x00.serialmonkey.com>
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.
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.
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.
23 Abstract: rt2x00 generic usb device routines.
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/usb.h>
29 #include <linux/bug.h>
32 #include "rt2x00usb.h"
35 * Interfacing with the HW.
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,
43 struct usb_device *usb_dev = to_usb_device_intf(rt2x00dev->dev);
47 (requesttype == USB_VENDOR_REQUEST_IN) ?
48 usb_rcvctrlpipe(usb_dev, 0) : usb_sndctrlpipe(usb_dev, 0);
51 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
52 status = usb_control_msg(usb_dev, pipe, request, requesttype,
53 value, offset, buffer, buffer_length,
60 * -ENODEV: Device has disappeared, no point continuing.
61 * All other errors: Try again.
63 else if (status == -ENODEV)
68 "Vendor Request 0x%02x failed for offset 0x%04x with error %d.\n",
69 request, offset, status);
73 EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request);
75 int rt2x00usb_vendor_req_buff_lock(struct rt2x00_dev *rt2x00dev,
76 const u8 request, const u8 requesttype,
77 const u16 offset, void *buffer,
78 const u16 buffer_length, const int timeout)
82 BUG_ON(!mutex_is_locked(&rt2x00dev->usb_cache_mutex));
85 * Check for Cache availability.
87 if (unlikely(!rt2x00dev->csr.cache || buffer_length > CSR_CACHE_SIZE)) {
88 ERROR(rt2x00dev, "CSR cache not available.\n");
92 if (requesttype == USB_VENDOR_REQUEST_OUT)
93 memcpy(rt2x00dev->csr.cache, buffer, buffer_length);
95 status = rt2x00usb_vendor_request(rt2x00dev, request, requesttype,
96 offset, 0, rt2x00dev->csr.cache,
97 buffer_length, timeout);
99 if (!status && requesttype == USB_VENDOR_REQUEST_IN)
100 memcpy(buffer, rt2x00dev->csr.cache, buffer_length);
104 EXPORT_SYMBOL_GPL(rt2x00usb_vendor_req_buff_lock);
106 int rt2x00usb_vendor_request_buff(struct rt2x00_dev *rt2x00dev,
107 const u8 request, const u8 requesttype,
108 const u16 offset, void *buffer,
109 const u16 buffer_length, const int timeout)
113 mutex_lock(&rt2x00dev->usb_cache_mutex);
115 status = rt2x00usb_vendor_req_buff_lock(rt2x00dev, request,
116 requesttype, offset, buffer,
117 buffer_length, timeout);
119 mutex_unlock(&rt2x00dev->usb_cache_mutex);
123 EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_buff);
128 static void rt2x00usb_interrupt_txdone(struct urb *urb)
130 struct queue_entry *entry = (struct queue_entry *)urb->context;
131 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
132 struct txdone_entry_desc txdesc;
134 if (!test_bit(DEVICE_ENABLED_RADIO, &rt2x00dev->flags) ||
135 !test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags))
139 * Remove the descriptor data from the buffer.
141 skb_pull(entry->skb, entry->queue->desc_size);
144 * Obtain the status about this packet.
145 * Note that when the status is 0 it does not mean the
146 * frame was send out correctly. It only means the frame
147 * was succesfully pushed to the hardware, we have no
148 * way to determine the transmission status right now.
149 * (Only indirectly by looking at the failed TX counters
153 __set_bit(TXDONE_UNKNOWN, &txdesc.flags);
155 __set_bit(TXDONE_FAILURE, &txdesc.flags);
158 rt2x00lib_txdone(entry, &txdesc);
161 int rt2x00usb_write_tx_data(struct queue_entry *entry)
163 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
164 struct usb_device *usb_dev = to_usb_device_intf(rt2x00dev->dev);
165 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
166 struct skb_frame_desc *skbdesc;
170 * Add the descriptor in front of the skb.
172 skb_push(entry->skb, entry->queue->desc_size);
173 memset(entry->skb->data, 0, entry->queue->desc_size);
176 * Fill in skb descriptor
178 skbdesc = get_skb_frame_desc(entry->skb);
179 skbdesc->desc = entry->skb->data;
180 skbdesc->desc_len = entry->queue->desc_size;
183 * USB devices cannot blindly pass the skb->len as the
184 * length of the data to usb_fill_bulk_urb. Pass the skb
185 * to the driver to determine what the length should be.
187 length = rt2x00dev->ops->lib->get_tx_data_len(rt2x00dev, entry->skb);
189 usb_fill_bulk_urb(entry_priv->urb, usb_dev,
190 usb_sndbulkpipe(usb_dev, 1),
191 entry->skb->data, length,
192 rt2x00usb_interrupt_txdone, entry);
196 EXPORT_SYMBOL_GPL(rt2x00usb_write_tx_data);
198 static inline void rt2x00usb_kick_tx_entry(struct queue_entry *entry)
200 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
202 if (__test_and_clear_bit(ENTRY_DATA_PENDING, &entry->flags))
203 usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
206 void rt2x00usb_kick_tx_queue(struct rt2x00_dev *rt2x00dev,
207 const enum data_queue_qid qid)
209 struct data_queue *queue = rt2x00queue_get_queue(rt2x00dev, qid);
210 unsigned long irqflags;
212 unsigned int index_done;
216 * Only protect the range we are going to loop over,
217 * if during our loop a extra entry is set to pending
218 * it should not be kicked during this run, since it
219 * is part of another TX operation.
221 spin_lock_irqsave(&queue->lock, irqflags);
222 index = queue->index[Q_INDEX];
223 index_done = queue->index[Q_INDEX_DONE];
224 spin_unlock_irqrestore(&queue->lock, irqflags);
227 * Start from the TX done pointer, this guarentees that we will
228 * send out all frames in the correct order.
230 if (index_done < index) {
231 for (i = index_done; i < index; i++)
232 rt2x00usb_kick_tx_entry(&queue->entries[i]);
234 for (i = index_done; i < queue->limit; i++)
235 rt2x00usb_kick_tx_entry(&queue->entries[i]);
237 for (i = 0; i < index; i++)
238 rt2x00usb_kick_tx_entry(&queue->entries[i]);
241 EXPORT_SYMBOL_GPL(rt2x00usb_kick_tx_queue);
246 static void rt2x00usb_interrupt_rxdone(struct urb *urb)
248 struct queue_entry *entry = (struct queue_entry *)urb->context;
249 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
250 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
253 if (!test_bit(DEVICE_ENABLED_RADIO, &rt2x00dev->flags) ||
254 !test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags))
258 * Check if the received data is simply too small
259 * to be actually valid, or if the urb is signaling
262 if (urb->actual_length < entry->queue->desc_size || urb->status) {
263 __set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
264 usb_submit_urb(urb, GFP_ATOMIC);
269 * Fill in desc fields of the skb descriptor
272 skbdesc->desc_len = entry->queue->desc_size;
275 * Send the frame to rt2x00lib for further processing.
277 rt2x00lib_rxdone(rt2x00dev, entry);
283 void rt2x00usb_disable_radio(struct rt2x00_dev *rt2x00dev)
285 struct queue_entry_priv_usb *entry_priv;
286 struct queue_entry_priv_usb_bcn *bcn_priv;
287 struct data_queue *queue;
290 rt2x00usb_vendor_request_sw(rt2x00dev, USB_RX_CONTROL, 0, 0,
296 queue_for_each(rt2x00dev, queue) {
297 for (i = 0; i < queue->limit; i++) {
298 entry_priv = queue->entries[i].priv_data;
299 usb_kill_urb(entry_priv->urb);
304 * Kill guardian urb (if required by driver).
306 if (!test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags))
309 for (i = 0; i < rt2x00dev->bcn->limit; i++) {
310 bcn_priv = rt2x00dev->bcn->entries[i].priv_data;
311 if (bcn_priv->guardian_urb)
312 usb_kill_urb(bcn_priv->guardian_urb);
315 EXPORT_SYMBOL_GPL(rt2x00usb_disable_radio);
318 * Device initialization handlers.
320 void rt2x00usb_init_rxentry(struct rt2x00_dev *rt2x00dev,
321 struct queue_entry *entry)
323 struct usb_device *usb_dev = to_usb_device_intf(rt2x00dev->dev);
324 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
326 usb_fill_bulk_urb(entry_priv->urb, usb_dev,
327 usb_rcvbulkpipe(usb_dev, 1),
328 entry->skb->data, entry->skb->len,
329 rt2x00usb_interrupt_rxdone, entry);
331 __set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
332 usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
334 EXPORT_SYMBOL_GPL(rt2x00usb_init_rxentry);
336 void rt2x00usb_init_txentry(struct rt2x00_dev *rt2x00dev,
337 struct queue_entry *entry)
341 EXPORT_SYMBOL_GPL(rt2x00usb_init_txentry);
343 static int rt2x00usb_alloc_urb(struct rt2x00_dev *rt2x00dev,
344 struct data_queue *queue)
346 struct queue_entry_priv_usb *entry_priv;
347 struct queue_entry_priv_usb_bcn *bcn_priv;
350 for (i = 0; i < queue->limit; i++) {
351 entry_priv = queue->entries[i].priv_data;
352 entry_priv->urb = usb_alloc_urb(0, GFP_KERNEL);
353 if (!entry_priv->urb)
358 * If this is not the beacon queue or
359 * no guardian byte was required for the beacon,
362 if (rt2x00dev->bcn != queue ||
363 !test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags))
366 for (i = 0; i < queue->limit; i++) {
367 bcn_priv = queue->entries[i].priv_data;
368 bcn_priv->guardian_urb = usb_alloc_urb(0, GFP_KERNEL);
369 if (!bcn_priv->guardian_urb)
376 static void rt2x00usb_free_urb(struct rt2x00_dev *rt2x00dev,
377 struct data_queue *queue)
379 struct queue_entry_priv_usb *entry_priv;
380 struct queue_entry_priv_usb_bcn *bcn_priv;
386 for (i = 0; i < queue->limit; i++) {
387 entry_priv = queue->entries[i].priv_data;
388 usb_kill_urb(entry_priv->urb);
389 usb_free_urb(entry_priv->urb);
393 * If this is not the beacon queue or
394 * no guardian byte was required for the beacon,
397 if (rt2x00dev->bcn != queue ||
398 !test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags))
401 for (i = 0; i < queue->limit; i++) {
402 bcn_priv = queue->entries[i].priv_data;
403 usb_kill_urb(bcn_priv->guardian_urb);
404 usb_free_urb(bcn_priv->guardian_urb);
408 int rt2x00usb_initialize(struct rt2x00_dev *rt2x00dev)
410 struct data_queue *queue;
416 queue_for_each(rt2x00dev, queue) {
417 status = rt2x00usb_alloc_urb(rt2x00dev, queue);
425 rt2x00usb_uninitialize(rt2x00dev);
429 EXPORT_SYMBOL_GPL(rt2x00usb_initialize);
431 void rt2x00usb_uninitialize(struct rt2x00_dev *rt2x00dev)
433 struct data_queue *queue;
435 queue_for_each(rt2x00dev, queue)
436 rt2x00usb_free_urb(rt2x00dev, queue);
438 EXPORT_SYMBOL_GPL(rt2x00usb_uninitialize);
441 * USB driver handlers.
443 static void rt2x00usb_free_reg(struct rt2x00_dev *rt2x00dev)
445 kfree(rt2x00dev->rf);
446 rt2x00dev->rf = NULL;
448 kfree(rt2x00dev->eeprom);
449 rt2x00dev->eeprom = NULL;
451 kfree(rt2x00dev->csr.cache);
452 rt2x00dev->csr.cache = NULL;
455 static int rt2x00usb_alloc_reg(struct rt2x00_dev *rt2x00dev)
457 rt2x00dev->csr.cache = kzalloc(CSR_CACHE_SIZE, GFP_KERNEL);
458 if (!rt2x00dev->csr.cache)
461 rt2x00dev->eeprom = kzalloc(rt2x00dev->ops->eeprom_size, GFP_KERNEL);
462 if (!rt2x00dev->eeprom)
465 rt2x00dev->rf = kzalloc(rt2x00dev->ops->rf_size, GFP_KERNEL);
472 ERROR_PROBE("Failed to allocate registers.\n");
474 rt2x00usb_free_reg(rt2x00dev);
479 int rt2x00usb_probe(struct usb_interface *usb_intf,
480 const struct usb_device_id *id)
482 struct usb_device *usb_dev = interface_to_usbdev(usb_intf);
483 struct rt2x00_ops *ops = (struct rt2x00_ops *)id->driver_info;
484 struct ieee80211_hw *hw;
485 struct rt2x00_dev *rt2x00dev;
488 usb_dev = usb_get_dev(usb_dev);
490 hw = ieee80211_alloc_hw(sizeof(struct rt2x00_dev), ops->hw);
492 ERROR_PROBE("Failed to allocate hardware.\n");
494 goto exit_put_device;
497 usb_set_intfdata(usb_intf, hw);
499 rt2x00dev = hw->priv;
500 rt2x00dev->dev = &usb_intf->dev;
501 rt2x00dev->ops = ops;
503 mutex_init(&rt2x00dev->usb_cache_mutex);
505 rt2x00dev->usb_maxpacket =
506 usb_maxpacket(usb_dev, usb_sndbulkpipe(usb_dev, 1), 1);
507 if (!rt2x00dev->usb_maxpacket)
508 rt2x00dev->usb_maxpacket = 1;
510 retval = rt2x00usb_alloc_reg(rt2x00dev);
512 goto exit_free_device;
514 retval = rt2x00lib_probe_dev(rt2x00dev);
521 rt2x00usb_free_reg(rt2x00dev);
524 ieee80211_free_hw(hw);
527 usb_put_dev(usb_dev);
529 usb_set_intfdata(usb_intf, NULL);
533 EXPORT_SYMBOL_GPL(rt2x00usb_probe);
535 void rt2x00usb_disconnect(struct usb_interface *usb_intf)
537 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
538 struct rt2x00_dev *rt2x00dev = hw->priv;
541 * Free all allocated data.
543 rt2x00lib_remove_dev(rt2x00dev);
544 rt2x00usb_free_reg(rt2x00dev);
545 ieee80211_free_hw(hw);
548 * Free the USB device data.
550 usb_set_intfdata(usb_intf, NULL);
551 usb_put_dev(interface_to_usbdev(usb_intf));
553 EXPORT_SYMBOL_GPL(rt2x00usb_disconnect);
556 int rt2x00usb_suspend(struct usb_interface *usb_intf, pm_message_t state)
558 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
559 struct rt2x00_dev *rt2x00dev = hw->priv;
562 retval = rt2x00lib_suspend(rt2x00dev, state);
566 rt2x00usb_free_reg(rt2x00dev);
569 * Decrease usbdev refcount.
571 usb_put_dev(interface_to_usbdev(usb_intf));
575 EXPORT_SYMBOL_GPL(rt2x00usb_suspend);
577 int rt2x00usb_resume(struct usb_interface *usb_intf)
579 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
580 struct rt2x00_dev *rt2x00dev = hw->priv;
583 usb_get_dev(interface_to_usbdev(usb_intf));
585 retval = rt2x00usb_alloc_reg(rt2x00dev);
589 retval = rt2x00lib_resume(rt2x00dev);
596 rt2x00usb_free_reg(rt2x00dev);
600 EXPORT_SYMBOL_GPL(rt2x00usb_resume);
601 #endif /* CONFIG_PM */
604 * rt2x00usb module information.
606 MODULE_AUTHOR(DRV_PROJECT);
607 MODULE_VERSION(DRV_VERSION);
608 MODULE_DESCRIPTION("rt2x00 usb library");
609 MODULE_LICENSE("GPL");