blob: ff3a36622d1b88de75353a72f8abc35ee5d26c44 [file] [log] [blame]
Ivo van Doorn95ea3622007-09-25 17:57:13 -07001/*
Gertjan van Wingerde9c9a0d12009-11-08 16:39:55 +01002 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07003 <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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Ivo van Doorn95ea3622007-09-25 17:57:13 -070029#include <linux/usb.h>
Adam Baker3d823462007-10-27 13:43:29 +020030#include <linux/bug.h>
Ivo van Doorn95ea3622007-09-25 17:57:13 -070031
32#include "rt2x00.h"
33#include "rt2x00usb.h"
34
35/*
36 * Interfacing with the HW.
37 */
Adam Baker0e14f6d2007-10-27 13:41:25 +020038int rt2x00usb_vendor_request(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn95ea3622007-09-25 17:57:13 -070039 const u8 request, const u8 requesttype,
40 const u16 offset, const u16 value,
41 void *buffer, const u16 buffer_length,
Ivo van Doorne9136552007-09-25 20:54:20 +020042 const int timeout)
Ivo van Doorn95ea3622007-09-25 17:57:13 -070043{
Ivo van Doornc1d35df2008-06-16 19:57:11 +020044 struct usb_device *usb_dev = to_usb_device_intf(rt2x00dev->dev);
Ivo van Doorn95ea3622007-09-25 17:57:13 -070045 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
Sean Cross66f84d62009-11-05 20:22:03 +010051 if (!test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
52 return -ENODEV;
Adam Baker3d823462007-10-27 13:43:29 +020053
Ivo van Doorn95ea3622007-09-25 17:57:13 -070054 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
55 status = usb_control_msg(usb_dev, pipe, request, requesttype,
56 value, offset, buffer, buffer_length,
57 timeout);
58 if (status >= 0)
59 return 0;
60
61 /*
Ivo van Doorne9136552007-09-25 20:54:20 +020062 * Check for errors
Ivo van Doorn95ea3622007-09-25 17:57:13 -070063 * -ENODEV: Device has disappeared, no point continuing.
Ivo van Doorne9136552007-09-25 20:54:20 +020064 * All other errors: Try again.
Ivo van Doorn95ea3622007-09-25 17:57:13 -070065 */
Sean Cross66f84d62009-11-05 20:22:03 +010066 else if (status == -ENODEV) {
67 clear_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags);
Ivo van Doorn95ea3622007-09-25 17:57:13 -070068 break;
Sean Cross66f84d62009-11-05 20:22:03 +010069 }
Ivo van Doorn95ea3622007-09-25 17:57:13 -070070 }
71
72 ERROR(rt2x00dev,
73 "Vendor Request 0x%02x failed for offset 0x%04x with error %d.\n",
74 request, offset, status);
75
76 return status;
77}
78EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request);
79
Adam Baker3d823462007-10-27 13:43:29 +020080int rt2x00usb_vendor_req_buff_lock(struct rt2x00_dev *rt2x00dev,
81 const u8 request, const u8 requesttype,
82 const u16 offset, void *buffer,
83 const u16 buffer_length, const int timeout)
Ivo van Doorn95ea3622007-09-25 17:57:13 -070084{
85 int status;
86
Ivo van Doorn8ff48a82008-11-09 23:40:46 +010087 BUG_ON(!mutex_is_locked(&rt2x00dev->csr_mutex));
Adam Baker3d823462007-10-27 13:43:29 +020088
Ivo van Doorn95ea3622007-09-25 17:57:13 -070089 /*
90 * Check for Cache availability.
91 */
Ivo van Doorn21795092008-02-10 22:49:13 +010092 if (unlikely(!rt2x00dev->csr.cache || buffer_length > CSR_CACHE_SIZE)) {
Ivo van Doorn95ea3622007-09-25 17:57:13 -070093 ERROR(rt2x00dev, "CSR cache not available.\n");
94 return -ENOMEM;
95 }
96
97 if (requesttype == USB_VENDOR_REQUEST_OUT)
Ivo van Doorn21795092008-02-10 22:49:13 +010098 memcpy(rt2x00dev->csr.cache, buffer, buffer_length);
Ivo van Doorn95ea3622007-09-25 17:57:13 -070099
100 status = rt2x00usb_vendor_request(rt2x00dev, request, requesttype,
Ivo van Doorn21795092008-02-10 22:49:13 +0100101 offset, 0, rt2x00dev->csr.cache,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700102 buffer_length, timeout);
103
104 if (!status && requesttype == USB_VENDOR_REQUEST_IN)
Ivo van Doorn21795092008-02-10 22:49:13 +0100105 memcpy(buffer, rt2x00dev->csr.cache, buffer_length);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700106
107 return status;
108}
Adam Baker3d823462007-10-27 13:43:29 +0200109EXPORT_SYMBOL_GPL(rt2x00usb_vendor_req_buff_lock);
110
111int rt2x00usb_vendor_request_buff(struct rt2x00_dev *rt2x00dev,
112 const u8 request, const u8 requesttype,
113 const u16 offset, void *buffer,
114 const u16 buffer_length, const int timeout)
115{
Iwo Merglered0dbee2008-07-19 16:16:54 +0200116 int status = 0;
117 unsigned char *tb;
118 u16 off, len, bsize;
119
Ivo van Doorn8ff48a82008-11-09 23:40:46 +0100120 mutex_lock(&rt2x00dev->csr_mutex);
Iwo Merglered0dbee2008-07-19 16:16:54 +0200121
Ivo van Doorn82f97b82008-08-02 01:31:09 -0700122 tb = (char *)buffer;
Iwo Merglered0dbee2008-07-19 16:16:54 +0200123 off = offset;
124 len = buffer_length;
125 while (len && !status) {
126 bsize = min_t(u16, CSR_CACHE_SIZE, len);
127 status = rt2x00usb_vendor_req_buff_lock(rt2x00dev, request,
128 requesttype, off, tb,
129 bsize, timeout);
130
131 tb += bsize;
132 len -= bsize;
133 off += bsize;
134 }
135
Ivo van Doorn8ff48a82008-11-09 23:40:46 +0100136 mutex_unlock(&rt2x00dev->csr_mutex);
Iwo Merglered0dbee2008-07-19 16:16:54 +0200137
138 return status;
139}
Gertjan van Wingerde96b61ba2010-06-03 10:51:51 +0200140EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_buff);
Iwo Merglered0dbee2008-07-19 16:16:54 +0200141
Ivo van Doorn0f829b12008-11-10 19:42:18 +0100142int rt2x00usb_regbusy_read(struct rt2x00_dev *rt2x00dev,
143 const unsigned int offset,
Bartlomiej Zolnierkiewiczf255b922009-11-04 18:35:18 +0100144 const struct rt2x00_field32 field,
Ivo van Doorn0f829b12008-11-10 19:42:18 +0100145 u32 *reg)
146{
147 unsigned int i;
148
Sean Cross66f84d62009-11-05 20:22:03 +0100149 if (!test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
150 return -ENODEV;
151
Ivo van Doorn0f829b12008-11-10 19:42:18 +0100152 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
153 rt2x00usb_register_read_lock(rt2x00dev, offset, reg);
154 if (!rt2x00_get_field32(*reg, field))
155 return 1;
156 udelay(REGISTER_BUSY_DELAY);
157 }
158
159 ERROR(rt2x00dev, "Indirect register access failed: "
160 "offset=0x%.08x, value=0x%.08x\n", offset, *reg);
161 *reg = ~0;
162
163 return 0;
164}
165EXPORT_SYMBOL_GPL(rt2x00usb_regbusy_read);
166
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700167/*
168 * TX data handlers.
169 */
170static void rt2x00usb_interrupt_txdone(struct urb *urb)
171{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500172 struct queue_entry *entry = (struct queue_entry *)urb->context;
173 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500174 struct txdone_entry_desc txdesc;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700175
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200176 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags) ||
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200177 !test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags))
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700178 return;
179
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700180 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700181 * Obtain the status about this packet.
Ivo van Doornfb55f4d2008-05-10 13:42:06 +0200182 * Note that when the status is 0 it does not mean the
183 * frame was send out correctly. It only means the frame
184 * was succesfully pushed to the hardware, we have no
185 * way to determine the transmission status right now.
186 * (Only indirectly by looking at the failed TX counters
187 * in the register).
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700188 */
Jochen Friedrichf126cba2008-08-15 14:47:46 +0200189 txdesc.flags = 0;
Ivo van Doornfb55f4d2008-05-10 13:42:06 +0200190 if (!urb->status)
191 __set_bit(TXDONE_UNKNOWN, &txdesc.flags);
192 else
193 __set_bit(TXDONE_FAILURE, &txdesc.flags);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500194 txdesc.retry = 0;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700195
Ivo van Doorn181d6902008-02-05 16:42:23 -0500196 rt2x00lib_txdone(entry, &txdesc);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700197}
198
Ivo van Doornf019d512008-06-06 22:47:39 +0200199static inline void rt2x00usb_kick_tx_entry(struct queue_entry *entry)
200{
Gertjan van Wingerdefe725692010-06-29 21:40:34 +0200201 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
202 struct usb_device *usb_dev = to_usb_device_intf(rt2x00dev->dev);
Ivo van Doornf019d512008-06-06 22:47:39 +0200203 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
Gertjan van Wingerdefe725692010-06-29 21:40:34 +0200204 u32 length;
Ivo van Doornf019d512008-06-06 22:47:39 +0200205
Gertjan van Wingerdefe725692010-06-29 21:40:34 +0200206 if (test_and_clear_bit(ENTRY_DATA_PENDING, &entry->flags)) {
207 /*
208 * USB devices cannot blindly pass the skb->len as the
209 * length of the data to usb_fill_bulk_urb. Pass the skb
210 * to the driver to determine what the length should be.
211 */
212 length = rt2x00dev->ops->lib->get_tx_data_len(entry);
213
214 usb_fill_bulk_urb(entry_priv->urb, usb_dev,
215 usb_sndbulkpipe(usb_dev, entry->queue->usb_endpoint),
216 entry->skb->data, length,
217 rt2x00usb_interrupt_txdone, entry);
218
Ivo van Doornf019d512008-06-06 22:47:39 +0200219 usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
Gertjan van Wingerdefe725692010-06-29 21:40:34 +0200220 }
Ivo van Doornf019d512008-06-06 22:47:39 +0200221}
222
223void rt2x00usb_kick_tx_queue(struct rt2x00_dev *rt2x00dev,
224 const enum data_queue_qid qid)
225{
226 struct data_queue *queue = rt2x00queue_get_queue(rt2x00dev, qid);
227 unsigned long irqflags;
228 unsigned int index;
229 unsigned int index_done;
230 unsigned int i;
231
232 /*
233 * Only protect the range we are going to loop over,
234 * if during our loop a extra entry is set to pending
235 * it should not be kicked during this run, since it
236 * is part of another TX operation.
237 */
238 spin_lock_irqsave(&queue->lock, irqflags);
239 index = queue->index[Q_INDEX];
240 index_done = queue->index[Q_INDEX_DONE];
241 spin_unlock_irqrestore(&queue->lock, irqflags);
242
243 /*
244 * Start from the TX done pointer, this guarentees that we will
245 * send out all frames in the correct order.
246 */
247 if (index_done < index) {
248 for (i = index_done; i < index; i++)
249 rt2x00usb_kick_tx_entry(&queue->entries[i]);
250 } else {
251 for (i = index_done; i < queue->limit; i++)
252 rt2x00usb_kick_tx_entry(&queue->entries[i]);
253
254 for (i = 0; i < index; i++)
255 rt2x00usb_kick_tx_entry(&queue->entries[i]);
256 }
257}
258EXPORT_SYMBOL_GPL(rt2x00usb_kick_tx_queue);
259
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100260void rt2x00usb_kill_tx_queue(struct rt2x00_dev *rt2x00dev,
261 const enum data_queue_qid qid)
262{
263 struct data_queue *queue = rt2x00queue_get_queue(rt2x00dev, qid);
264 struct queue_entry_priv_usb *entry_priv;
265 struct queue_entry_priv_usb_bcn *bcn_priv;
266 unsigned int i;
267 bool kill_guard;
268
269 /*
270 * When killing the beacon queue, we must also kill
271 * the beacon guard byte.
272 */
273 kill_guard =
274 (qid == QID_BEACON) &&
275 (test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags));
276
277 /*
278 * Cancel all entries.
279 */
280 for (i = 0; i < queue->limit; i++) {
281 entry_priv = queue->entries[i].priv_data;
282 usb_kill_urb(entry_priv->urb);
283
284 /*
285 * Kill guardian urb (if required by driver).
286 */
287 if (kill_guard) {
288 bcn_priv = queue->entries[i].priv_data;
289 usb_kill_urb(bcn_priv->guardian_urb);
290 }
291 }
292}
293EXPORT_SYMBOL_GPL(rt2x00usb_kill_tx_queue);
294
Ivo van Doornc965c742010-07-11 12:25:46 +0200295static void rt2x00usb_watchdog_reset_tx(struct data_queue *queue)
296{
297 struct queue_entry_priv_usb *entry_priv;
298 unsigned short threshold = queue->threshold;
299
300 WARNING(queue->rt2x00dev, "TX queue %d timed out, invoke reset", queue->qid);
301
302 /*
303 * Temporarily disable the TX queue, this will force mac80211
304 * to use the other queues until this queue has been restored.
305 *
306 * Set the queue threshold to the queue limit. This prevents the
307 * queue from being enabled during the txdone handler.
308 */
309 queue->threshold = queue->limit;
310 ieee80211_stop_queue(queue->rt2x00dev->hw, queue->qid);
311
312 /*
313 * Reset all currently uploaded TX frames.
314 */
315 while (!rt2x00queue_empty(queue)) {
316 entry_priv = rt2x00queue_get_entry(queue, Q_INDEX_DONE)->priv_data;
317 usb_kill_urb(entry_priv->urb);
318
319 /*
320 * We need a short delay here to wait for
321 * the URB to be canceled and invoked the tx_done handler.
322 */
323 udelay(200);
324 }
325
326 /*
327 * The queue has been reset, and mac80211 is allowed to use the
328 * queue again.
329 */
330 queue->threshold = threshold;
331 ieee80211_wake_queue(queue->rt2x00dev->hw, queue->qid);
332}
333
334void rt2x00usb_watchdog(struct rt2x00_dev *rt2x00dev)
335{
336 struct data_queue *queue;
337
338 tx_queue_for_each(rt2x00dev, queue) {
339 if (rt2x00queue_timeout(queue))
340 rt2x00usb_watchdog_reset_tx(queue);
341 }
342}
343EXPORT_SYMBOL_GPL(rt2x00usb_watchdog);
344
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700345/*
346 * RX data handlers.
347 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500348static void rt2x00usb_interrupt_rxdone(struct urb *urb)
349{
350 struct queue_entry *entry = (struct queue_entry *)urb->context;
351 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200352 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
Gertjan van Wingerdea26cbc62008-06-06 22:54:28 +0200353 u8 rxd[32];
Ivo van Doorn181d6902008-02-05 16:42:23 -0500354
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200355 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags) ||
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200356 !test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags))
Ivo van Doorn181d6902008-02-05 16:42:23 -0500357 return;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700358
359 /*
Ivo van Doorn181d6902008-02-05 16:42:23 -0500360 * Check if the received data is simply too small
361 * to be actually valid, or if the urb is signaling
362 * a problem.
Ivo van Doorn08992f72008-01-24 01:56:25 -0800363 */
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200364 if (urb->actual_length < entry->queue->desc_size || urb->status) {
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200365 set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200366 usb_submit_urb(urb, GFP_ATOMIC);
367 return;
368 }
Ivo van Doorn181d6902008-02-05 16:42:23 -0500369
370 /*
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200371 * Fill in desc fields of the skb descriptor
Ivo van Doorn181d6902008-02-05 16:42:23 -0500372 */
Gertjan van Wingerdea26cbc62008-06-06 22:54:28 +0200373 skbdesc->desc = rxd;
374 skbdesc->desc_len = entry->queue->desc_size;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500375
Ivo van Doorn08992f72008-01-24 01:56:25 -0800376 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700377 * Send the frame to rt2x00lib for further processing.
378 */
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200379 rt2x00lib_rxdone(rt2x00dev, entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700380}
381
382/*
383 * Radio handlers
384 */
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700385void rt2x00usb_disable_radio(struct rt2x00_dev *rt2x00dev)
386{
Ivo van Doornbd394a72008-04-21 19:01:58 +0200387 rt2x00usb_vendor_request_sw(rt2x00dev, USB_RX_CONTROL, 0, 0,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700388 REGISTER_TIMEOUT);
389
390 /*
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100391 * The USB version of kill_tx_queue also works
392 * on the RX queue.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700393 */
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100394 rt2x00dev->ops->lib->kill_tx_queue(rt2x00dev, QID_RX);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700395}
396EXPORT_SYMBOL_GPL(rt2x00usb_disable_radio);
397
398/*
399 * Device initialization handlers.
400 */
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100401void rt2x00usb_clear_entry(struct queue_entry *entry)
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100402{
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100403 struct usb_device *usb_dev =
404 to_usb_device_intf(entry->queue->rt2x00dev->dev);
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200405 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100406 int pipe;
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100407
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100408 if (entry->queue->qid == QID_RX) {
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100409 pipe = usb_rcvbulkpipe(usb_dev, entry->queue->usb_endpoint);
410 usb_fill_bulk_urb(entry_priv->urb, usb_dev, pipe,
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100411 entry->skb->data, entry->skb->len,
412 rt2x00usb_interrupt_rxdone, entry);
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100413
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100414 set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
415 usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
416 } else {
417 entry->flags = 0;
418 }
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100419}
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100420EXPORT_SYMBOL_GPL(rt2x00usb_clear_entry);
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100421
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100422static void rt2x00usb_assign_endpoint(struct data_queue *queue,
423 struct usb_endpoint_descriptor *ep_desc)
424{
425 struct usb_device *usb_dev = to_usb_device_intf(queue->rt2x00dev->dev);
426 int pipe;
427
428 queue->usb_endpoint = usb_endpoint_num(ep_desc);
429
430 if (queue->qid == QID_RX) {
431 pipe = usb_rcvbulkpipe(usb_dev, queue->usb_endpoint);
432 queue->usb_maxpacket = usb_maxpacket(usb_dev, pipe, 0);
433 } else {
434 pipe = usb_sndbulkpipe(usb_dev, queue->usb_endpoint);
435 queue->usb_maxpacket = usb_maxpacket(usb_dev, pipe, 1);
436 }
437
438 if (!queue->usb_maxpacket)
439 queue->usb_maxpacket = 1;
440}
441
442static int rt2x00usb_find_endpoints(struct rt2x00_dev *rt2x00dev)
443{
444 struct usb_interface *intf = to_usb_interface(rt2x00dev->dev);
445 struct usb_host_interface *intf_desc = intf->cur_altsetting;
446 struct usb_endpoint_descriptor *ep_desc;
447 struct data_queue *queue = rt2x00dev->tx;
448 struct usb_endpoint_descriptor *tx_ep_desc = NULL;
449 unsigned int i;
450
451 /*
452 * Walk through all available endpoints to search for "bulk in"
453 * and "bulk out" endpoints. When we find such endpoints collect
454 * the information we need from the descriptor and assign it
455 * to the queue.
456 */
457 for (i = 0; i < intf_desc->desc.bNumEndpoints; i++) {
458 ep_desc = &intf_desc->endpoint[i].desc;
459
460 if (usb_endpoint_is_bulk_in(ep_desc)) {
461 rt2x00usb_assign_endpoint(rt2x00dev->rx, ep_desc);
Ivo van Doornd15cfc32008-12-20 11:00:23 +0100462 } else if (usb_endpoint_is_bulk_out(ep_desc) &&
463 (queue != queue_end(rt2x00dev))) {
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100464 rt2x00usb_assign_endpoint(queue, ep_desc);
Ivo van Doornd15cfc32008-12-20 11:00:23 +0100465 queue = queue_next(queue);
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100466
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100467 tx_ep_desc = ep_desc;
468 }
469 }
470
471 /*
472 * At least 1 endpoint for RX and 1 endpoint for TX must be available.
473 */
474 if (!rt2x00dev->rx->usb_endpoint || !rt2x00dev->tx->usb_endpoint) {
475 ERROR(rt2x00dev, "Bulk-in/Bulk-out endpoints not found\n");
476 return -EPIPE;
477 }
478
479 /*
480 * It might be possible not all queues have a dedicated endpoint.
481 * Loop through all TX queues and copy the endpoint information
482 * which we have gathered from already assigned endpoints.
483 */
484 txall_queue_for_each(rt2x00dev, queue) {
485 if (!queue->usb_endpoint)
486 rt2x00usb_assign_endpoint(queue, tx_ep_desc);
487 }
488
489 return 0;
490}
491
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700492static int rt2x00usb_alloc_urb(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500493 struct data_queue *queue)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700494{
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200495 struct queue_entry_priv_usb *entry_priv;
496 struct queue_entry_priv_usb_bcn *bcn_priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700497 unsigned int i;
498
Ivo van Doorn181d6902008-02-05 16:42:23 -0500499 for (i = 0; i < queue->limit; i++) {
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200500 entry_priv = queue->entries[i].priv_data;
501 entry_priv->urb = usb_alloc_urb(0, GFP_KERNEL);
502 if (!entry_priv->urb)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700503 return -ENOMEM;
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200504 }
Ivo van Doorn181d6902008-02-05 16:42:23 -0500505
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200506 /*
507 * If this is not the beacon queue or
508 * no guardian byte was required for the beacon,
509 * then we are done.
510 */
511 if (rt2x00dev->bcn != queue ||
512 !test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags))
513 return 0;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500514
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200515 for (i = 0; i < queue->limit; i++) {
516 bcn_priv = queue->entries[i].priv_data;
517 bcn_priv->guardian_urb = usb_alloc_urb(0, GFP_KERNEL);
518 if (!bcn_priv->guardian_urb)
519 return -ENOMEM;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700520 }
521
522 return 0;
523}
524
525static void rt2x00usb_free_urb(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500526 struct data_queue *queue)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700527{
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200528 struct queue_entry_priv_usb *entry_priv;
529 struct queue_entry_priv_usb_bcn *bcn_priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700530 unsigned int i;
531
Ivo van Doorn181d6902008-02-05 16:42:23 -0500532 if (!queue->entries)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700533 return;
534
Ivo van Doorn181d6902008-02-05 16:42:23 -0500535 for (i = 0; i < queue->limit; i++) {
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200536 entry_priv = queue->entries[i].priv_data;
537 usb_kill_urb(entry_priv->urb);
538 usb_free_urb(entry_priv->urb);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700539 }
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200540
541 /*
542 * If this is not the beacon queue or
543 * no guardian byte was required for the beacon,
544 * then we are done.
545 */
546 if (rt2x00dev->bcn != queue ||
547 !test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags))
548 return;
549
550 for (i = 0; i < queue->limit; i++) {
551 bcn_priv = queue->entries[i].priv_data;
552 usb_kill_urb(bcn_priv->guardian_urb);
553 usb_free_urb(bcn_priv->guardian_urb);
554 }
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700555}
556
557int rt2x00usb_initialize(struct rt2x00_dev *rt2x00dev)
558{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500559 struct data_queue *queue;
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200560 int status;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700561
562 /*
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100563 * Find endpoints for each queue
564 */
565 status = rt2x00usb_find_endpoints(rt2x00dev);
566 if (status)
567 goto exit;
568
569 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700570 * Allocate DMA
571 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500572 queue_for_each(rt2x00dev, queue) {
573 status = rt2x00usb_alloc_urb(rt2x00dev, queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700574 if (status)
575 goto exit;
576 }
577
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700578 return 0;
579
580exit:
581 rt2x00usb_uninitialize(rt2x00dev);
582
583 return status;
584}
585EXPORT_SYMBOL_GPL(rt2x00usb_initialize);
586
587void rt2x00usb_uninitialize(struct rt2x00_dev *rt2x00dev)
588{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500589 struct data_queue *queue;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700590
Ivo van Doorn181d6902008-02-05 16:42:23 -0500591 queue_for_each(rt2x00dev, queue)
592 rt2x00usb_free_urb(rt2x00dev, queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700593}
594EXPORT_SYMBOL_GPL(rt2x00usb_uninitialize);
595
596/*
597 * USB driver handlers.
598 */
599static void rt2x00usb_free_reg(struct rt2x00_dev *rt2x00dev)
600{
601 kfree(rt2x00dev->rf);
602 rt2x00dev->rf = NULL;
603
604 kfree(rt2x00dev->eeprom);
605 rt2x00dev->eeprom = NULL;
606
Ivo van Doorn21795092008-02-10 22:49:13 +0100607 kfree(rt2x00dev->csr.cache);
608 rt2x00dev->csr.cache = NULL;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700609}
610
611static int rt2x00usb_alloc_reg(struct rt2x00_dev *rt2x00dev)
612{
Ivo van Doorn21795092008-02-10 22:49:13 +0100613 rt2x00dev->csr.cache = kzalloc(CSR_CACHE_SIZE, GFP_KERNEL);
614 if (!rt2x00dev->csr.cache)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700615 goto exit;
616
617 rt2x00dev->eeprom = kzalloc(rt2x00dev->ops->eeprom_size, GFP_KERNEL);
618 if (!rt2x00dev->eeprom)
619 goto exit;
620
621 rt2x00dev->rf = kzalloc(rt2x00dev->ops->rf_size, GFP_KERNEL);
622 if (!rt2x00dev->rf)
623 goto exit;
624
625 return 0;
626
627exit:
628 ERROR_PROBE("Failed to allocate registers.\n");
629
630 rt2x00usb_free_reg(rt2x00dev);
631
632 return -ENOMEM;
633}
634
635int rt2x00usb_probe(struct usb_interface *usb_intf,
636 const struct usb_device_id *id)
637{
638 struct usb_device *usb_dev = interface_to_usbdev(usb_intf);
639 struct rt2x00_ops *ops = (struct rt2x00_ops *)id->driver_info;
640 struct ieee80211_hw *hw;
641 struct rt2x00_dev *rt2x00dev;
642 int retval;
643
644 usb_dev = usb_get_dev(usb_dev);
645
646 hw = ieee80211_alloc_hw(sizeof(struct rt2x00_dev), ops->hw);
647 if (!hw) {
648 ERROR_PROBE("Failed to allocate hardware.\n");
649 retval = -ENOMEM;
650 goto exit_put_device;
651 }
652
653 usb_set_intfdata(usb_intf, hw);
654
655 rt2x00dev = hw->priv;
Gertjan van Wingerde14a3bf82008-06-16 19:55:43 +0200656 rt2x00dev->dev = &usb_intf->dev;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700657 rt2x00dev->ops = ops;
658 rt2x00dev->hw = hw;
659
Gertjan van Wingerde2015d192009-11-08 12:30:14 +0100660 rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_USB);
661
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700662 retval = rt2x00usb_alloc_reg(rt2x00dev);
663 if (retval)
664 goto exit_free_device;
665
666 retval = rt2x00lib_probe_dev(rt2x00dev);
667 if (retval)
668 goto exit_free_reg;
669
670 return 0;
671
672exit_free_reg:
673 rt2x00usb_free_reg(rt2x00dev);
674
675exit_free_device:
676 ieee80211_free_hw(hw);
677
678exit_put_device:
679 usb_put_dev(usb_dev);
680
681 usb_set_intfdata(usb_intf, NULL);
682
683 return retval;
684}
685EXPORT_SYMBOL_GPL(rt2x00usb_probe);
686
687void rt2x00usb_disconnect(struct usb_interface *usb_intf)
688{
689 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
690 struct rt2x00_dev *rt2x00dev = hw->priv;
691
692 /*
693 * Free all allocated data.
694 */
695 rt2x00lib_remove_dev(rt2x00dev);
696 rt2x00usb_free_reg(rt2x00dev);
697 ieee80211_free_hw(hw);
698
699 /*
700 * Free the USB device data.
701 */
702 usb_set_intfdata(usb_intf, NULL);
703 usb_put_dev(interface_to_usbdev(usb_intf));
704}
705EXPORT_SYMBOL_GPL(rt2x00usb_disconnect);
706
707#ifdef CONFIG_PM
708int rt2x00usb_suspend(struct usb_interface *usb_intf, pm_message_t state)
709{
710 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
711 struct rt2x00_dev *rt2x00dev = hw->priv;
712 int retval;
713
714 retval = rt2x00lib_suspend(rt2x00dev, state);
715 if (retval)
716 return retval;
717
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700718 /*
719 * Decrease usbdev refcount.
720 */
721 usb_put_dev(interface_to_usbdev(usb_intf));
722
723 return 0;
724}
725EXPORT_SYMBOL_GPL(rt2x00usb_suspend);
726
727int rt2x00usb_resume(struct usb_interface *usb_intf)
728{
729 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
730 struct rt2x00_dev *rt2x00dev = hw->priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700731
732 usb_get_dev(interface_to_usbdev(usb_intf));
733
Ivo van Doorn499a2142009-03-28 20:51:58 +0100734 return rt2x00lib_resume(rt2x00dev);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700735}
736EXPORT_SYMBOL_GPL(rt2x00usb_resume);
737#endif /* CONFIG_PM */
738
739/*
Ivo van Doorn181d6902008-02-05 16:42:23 -0500740 * rt2x00usb module information.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700741 */
742MODULE_AUTHOR(DRV_PROJECT);
743MODULE_VERSION(DRV_VERSION);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500744MODULE_DESCRIPTION("rt2x00 usb library");
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700745MODULE_LICENSE("GPL");