blob: b45bc24c3daeb0ff239b8c14bcc67e7450b04f5b [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 /*
Gertjan van Wingerde0b8004a2010-06-03 10:51:45 +0200181 * Remove the descriptor from the front of the skb.
182 */
183 skb_pull(entry->skb, entry->queue->desc_size);
184
185 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700186 * Obtain the status about this packet.
Ivo van Doornfb55f4d12008-05-10 13:42:06 +0200187 * Note that when the status is 0 it does not mean the
188 * frame was send out correctly. It only means the frame
189 * was succesfully pushed to the hardware, we have no
190 * way to determine the transmission status right now.
191 * (Only indirectly by looking at the failed TX counters
192 * in the register).
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700193 */
Jochen Friedrichf126cba2008-08-15 14:47:46 +0200194 txdesc.flags = 0;
Ivo van Doornfb55f4d12008-05-10 13:42:06 +0200195 if (!urb->status)
196 __set_bit(TXDONE_UNKNOWN, &txdesc.flags);
197 else
198 __set_bit(TXDONE_FAILURE, &txdesc.flags);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500199 txdesc.retry = 0;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700200
Ivo van Doorn181d6902008-02-05 16:42:23 -0500201 rt2x00lib_txdone(entry, &txdesc);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700202}
203
Helmut Schaa41086692010-04-15 09:13:13 +0200204int rt2x00usb_write_tx_data(struct queue_entry *entry,
205 struct txentry_desc *txdesc)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700206{
Ivo van Doorn6db37862008-06-06 22:50:28 +0200207 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Ivo van Doornc1d35df2008-06-16 19:57:11 +0200208 struct usb_device *usb_dev = to_usb_device_intf(rt2x00dev->dev);
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200209 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
Ivo van Doorndd9fa2d2007-10-06 14:15:46 +0200210 u32 length;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700211
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200212 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700213 * Add the descriptor in front of the skb.
214 */
Ivo van Doorn6db37862008-06-06 22:50:28 +0200215 skb_push(entry->skb, entry->queue->desc_size);
216 memset(entry->skb->data, 0, entry->queue->desc_size);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700217
Ivo van Doorn08992f72008-01-24 01:56:25 -0800218 /*
Ivo van Doorndd9fa2d2007-10-06 14:15:46 +0200219 * USB devices cannot blindly pass the skb->len as the
220 * length of the data to usb_fill_bulk_urb. Pass the skb
221 * to the driver to determine what the length should be.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700222 */
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100223 length = rt2x00dev->ops->lib->get_tx_data_len(entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700224
Ivo van Doorn6db37862008-06-06 22:50:28 +0200225 usb_fill_bulk_urb(entry_priv->urb, usb_dev,
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100226 usb_sndbulkpipe(usb_dev, entry->queue->usb_endpoint),
Ivo van Doorn6db37862008-06-06 22:50:28 +0200227 entry->skb->data, length,
228 rt2x00usb_interrupt_txdone, entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700229
Mattias Nissler1abc3652008-08-29 21:07:20 +0200230 /*
Gertjan van Wingerdebaaffe62010-06-03 10:51:43 +0200231 * Call the driver's write_tx_datadesc function, if it exists.
232 */
233 if (rt2x00dev->ops->lib->write_tx_datadesc)
234 rt2x00dev->ops->lib->write_tx_datadesc(entry, txdesc);
235
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700236 return 0;
237}
238EXPORT_SYMBOL_GPL(rt2x00usb_write_tx_data);
239
Ivo van Doornf019d512008-06-06 22:47:39 +0200240static inline void rt2x00usb_kick_tx_entry(struct queue_entry *entry)
241{
242 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
243
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200244 if (test_and_clear_bit(ENTRY_DATA_PENDING, &entry->flags))
Ivo van Doornf019d512008-06-06 22:47:39 +0200245 usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
246}
247
248void rt2x00usb_kick_tx_queue(struct rt2x00_dev *rt2x00dev,
249 const enum data_queue_qid qid)
250{
251 struct data_queue *queue = rt2x00queue_get_queue(rt2x00dev, qid);
252 unsigned long irqflags;
253 unsigned int index;
254 unsigned int index_done;
255 unsigned int i;
256
257 /*
258 * Only protect the range we are going to loop over,
259 * if during our loop a extra entry is set to pending
260 * it should not be kicked during this run, since it
261 * is part of another TX operation.
262 */
263 spin_lock_irqsave(&queue->lock, irqflags);
264 index = queue->index[Q_INDEX];
265 index_done = queue->index[Q_INDEX_DONE];
266 spin_unlock_irqrestore(&queue->lock, irqflags);
267
268 /*
269 * Start from the TX done pointer, this guarentees that we will
270 * send out all frames in the correct order.
271 */
272 if (index_done < index) {
273 for (i = index_done; i < index; i++)
274 rt2x00usb_kick_tx_entry(&queue->entries[i]);
275 } else {
276 for (i = index_done; i < queue->limit; i++)
277 rt2x00usb_kick_tx_entry(&queue->entries[i]);
278
279 for (i = 0; i < index; i++)
280 rt2x00usb_kick_tx_entry(&queue->entries[i]);
281 }
282}
283EXPORT_SYMBOL_GPL(rt2x00usb_kick_tx_queue);
284
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100285void rt2x00usb_kill_tx_queue(struct rt2x00_dev *rt2x00dev,
286 const enum data_queue_qid qid)
287{
288 struct data_queue *queue = rt2x00queue_get_queue(rt2x00dev, qid);
289 struct queue_entry_priv_usb *entry_priv;
290 struct queue_entry_priv_usb_bcn *bcn_priv;
291 unsigned int i;
292 bool kill_guard;
293
294 /*
295 * When killing the beacon queue, we must also kill
296 * the beacon guard byte.
297 */
298 kill_guard =
299 (qid == QID_BEACON) &&
300 (test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags));
301
302 /*
303 * Cancel all entries.
304 */
305 for (i = 0; i < queue->limit; i++) {
306 entry_priv = queue->entries[i].priv_data;
307 usb_kill_urb(entry_priv->urb);
308
309 /*
310 * Kill guardian urb (if required by driver).
311 */
312 if (kill_guard) {
313 bcn_priv = queue->entries[i].priv_data;
314 usb_kill_urb(bcn_priv->guardian_urb);
315 }
316 }
317}
318EXPORT_SYMBOL_GPL(rt2x00usb_kill_tx_queue);
319
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700320/*
321 * RX data handlers.
322 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500323static void rt2x00usb_interrupt_rxdone(struct urb *urb)
324{
325 struct queue_entry *entry = (struct queue_entry *)urb->context;
326 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200327 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
Gertjan van Wingerdea26cbc62008-06-06 22:54:28 +0200328 u8 rxd[32];
Ivo van Doorn181d6902008-02-05 16:42:23 -0500329
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200330 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags) ||
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200331 !test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags))
Ivo van Doorn181d6902008-02-05 16:42:23 -0500332 return;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700333
334 /*
Ivo van Doorn181d6902008-02-05 16:42:23 -0500335 * Check if the received data is simply too small
336 * to be actually valid, or if the urb is signaling
337 * a problem.
Ivo van Doorn08992f72008-01-24 01:56:25 -0800338 */
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200339 if (urb->actual_length < entry->queue->desc_size || urb->status) {
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200340 set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200341 usb_submit_urb(urb, GFP_ATOMIC);
342 return;
343 }
Ivo van Doorn181d6902008-02-05 16:42:23 -0500344
345 /*
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200346 * Fill in desc fields of the skb descriptor
Ivo van Doorn181d6902008-02-05 16:42:23 -0500347 */
Gertjan van Wingerdea26cbc62008-06-06 22:54:28 +0200348 skbdesc->desc = rxd;
349 skbdesc->desc_len = entry->queue->desc_size;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500350
Ivo van Doorn08992f72008-01-24 01:56:25 -0800351 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700352 * Send the frame to rt2x00lib for further processing.
353 */
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200354 rt2x00lib_rxdone(rt2x00dev, entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700355}
356
357/*
358 * Radio handlers
359 */
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700360void rt2x00usb_disable_radio(struct rt2x00_dev *rt2x00dev)
361{
Ivo van Doornbd394a72008-04-21 19:01:58 +0200362 rt2x00usb_vendor_request_sw(rt2x00dev, USB_RX_CONTROL, 0, 0,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700363 REGISTER_TIMEOUT);
364
365 /*
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100366 * The USB version of kill_tx_queue also works
367 * on the RX queue.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700368 */
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100369 rt2x00dev->ops->lib->kill_tx_queue(rt2x00dev, QID_RX);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700370}
371EXPORT_SYMBOL_GPL(rt2x00usb_disable_radio);
372
373/*
374 * Device initialization handlers.
375 */
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100376void rt2x00usb_clear_entry(struct queue_entry *entry)
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100377{
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100378 struct usb_device *usb_dev =
379 to_usb_device_intf(entry->queue->rt2x00dev->dev);
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200380 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100381 int pipe;
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100382
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100383 if (entry->queue->qid == QID_RX) {
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100384 pipe = usb_rcvbulkpipe(usb_dev, entry->queue->usb_endpoint);
385 usb_fill_bulk_urb(entry_priv->urb, usb_dev, pipe,
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100386 entry->skb->data, entry->skb->len,
387 rt2x00usb_interrupt_rxdone, entry);
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100388
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100389 set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
390 usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
391 } else {
392 entry->flags = 0;
393 }
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100394}
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100395EXPORT_SYMBOL_GPL(rt2x00usb_clear_entry);
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100396
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100397static void rt2x00usb_assign_endpoint(struct data_queue *queue,
398 struct usb_endpoint_descriptor *ep_desc)
399{
400 struct usb_device *usb_dev = to_usb_device_intf(queue->rt2x00dev->dev);
401 int pipe;
402
403 queue->usb_endpoint = usb_endpoint_num(ep_desc);
404
405 if (queue->qid == QID_RX) {
406 pipe = usb_rcvbulkpipe(usb_dev, queue->usb_endpoint);
407 queue->usb_maxpacket = usb_maxpacket(usb_dev, pipe, 0);
408 } else {
409 pipe = usb_sndbulkpipe(usb_dev, queue->usb_endpoint);
410 queue->usb_maxpacket = usb_maxpacket(usb_dev, pipe, 1);
411 }
412
413 if (!queue->usb_maxpacket)
414 queue->usb_maxpacket = 1;
415}
416
417static int rt2x00usb_find_endpoints(struct rt2x00_dev *rt2x00dev)
418{
419 struct usb_interface *intf = to_usb_interface(rt2x00dev->dev);
420 struct usb_host_interface *intf_desc = intf->cur_altsetting;
421 struct usb_endpoint_descriptor *ep_desc;
422 struct data_queue *queue = rt2x00dev->tx;
423 struct usb_endpoint_descriptor *tx_ep_desc = NULL;
424 unsigned int i;
425
426 /*
427 * Walk through all available endpoints to search for "bulk in"
428 * and "bulk out" endpoints. When we find such endpoints collect
429 * the information we need from the descriptor and assign it
430 * to the queue.
431 */
432 for (i = 0; i < intf_desc->desc.bNumEndpoints; i++) {
433 ep_desc = &intf_desc->endpoint[i].desc;
434
435 if (usb_endpoint_is_bulk_in(ep_desc)) {
436 rt2x00usb_assign_endpoint(rt2x00dev->rx, ep_desc);
Ivo van Doornd15cfc32008-12-20 11:00:23 +0100437 } else if (usb_endpoint_is_bulk_out(ep_desc) &&
438 (queue != queue_end(rt2x00dev))) {
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100439 rt2x00usb_assign_endpoint(queue, ep_desc);
Ivo van Doornd15cfc32008-12-20 11:00:23 +0100440 queue = queue_next(queue);
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100441
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100442 tx_ep_desc = ep_desc;
443 }
444 }
445
446 /*
447 * At least 1 endpoint for RX and 1 endpoint for TX must be available.
448 */
449 if (!rt2x00dev->rx->usb_endpoint || !rt2x00dev->tx->usb_endpoint) {
450 ERROR(rt2x00dev, "Bulk-in/Bulk-out endpoints not found\n");
451 return -EPIPE;
452 }
453
454 /*
455 * It might be possible not all queues have a dedicated endpoint.
456 * Loop through all TX queues and copy the endpoint information
457 * which we have gathered from already assigned endpoints.
458 */
459 txall_queue_for_each(rt2x00dev, queue) {
460 if (!queue->usb_endpoint)
461 rt2x00usb_assign_endpoint(queue, tx_ep_desc);
462 }
463
464 return 0;
465}
466
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700467static int rt2x00usb_alloc_urb(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500468 struct data_queue *queue)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700469{
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200470 struct queue_entry_priv_usb *entry_priv;
471 struct queue_entry_priv_usb_bcn *bcn_priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700472 unsigned int i;
473
Ivo van Doorn181d6902008-02-05 16:42:23 -0500474 for (i = 0; i < queue->limit; i++) {
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200475 entry_priv = queue->entries[i].priv_data;
476 entry_priv->urb = usb_alloc_urb(0, GFP_KERNEL);
477 if (!entry_priv->urb)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700478 return -ENOMEM;
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200479 }
Ivo van Doorn181d6902008-02-05 16:42:23 -0500480
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200481 /*
482 * If this is not the beacon queue or
483 * no guardian byte was required for the beacon,
484 * then we are done.
485 */
486 if (rt2x00dev->bcn != queue ||
487 !test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags))
488 return 0;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500489
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200490 for (i = 0; i < queue->limit; i++) {
491 bcn_priv = queue->entries[i].priv_data;
492 bcn_priv->guardian_urb = usb_alloc_urb(0, GFP_KERNEL);
493 if (!bcn_priv->guardian_urb)
494 return -ENOMEM;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700495 }
496
497 return 0;
498}
499
500static void rt2x00usb_free_urb(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500501 struct data_queue *queue)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700502{
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200503 struct queue_entry_priv_usb *entry_priv;
504 struct queue_entry_priv_usb_bcn *bcn_priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700505 unsigned int i;
506
Ivo van Doorn181d6902008-02-05 16:42:23 -0500507 if (!queue->entries)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700508 return;
509
Ivo van Doorn181d6902008-02-05 16:42:23 -0500510 for (i = 0; i < queue->limit; i++) {
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200511 entry_priv = queue->entries[i].priv_data;
512 usb_kill_urb(entry_priv->urb);
513 usb_free_urb(entry_priv->urb);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700514 }
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200515
516 /*
517 * If this is not the beacon queue or
518 * no guardian byte was required for the beacon,
519 * then we are done.
520 */
521 if (rt2x00dev->bcn != queue ||
522 !test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags))
523 return;
524
525 for (i = 0; i < queue->limit; i++) {
526 bcn_priv = queue->entries[i].priv_data;
527 usb_kill_urb(bcn_priv->guardian_urb);
528 usb_free_urb(bcn_priv->guardian_urb);
529 }
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700530}
531
532int rt2x00usb_initialize(struct rt2x00_dev *rt2x00dev)
533{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500534 struct data_queue *queue;
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200535 int status;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700536
537 /*
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100538 * Find endpoints for each queue
539 */
540 status = rt2x00usb_find_endpoints(rt2x00dev);
541 if (status)
542 goto exit;
543
544 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700545 * Allocate DMA
546 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500547 queue_for_each(rt2x00dev, queue) {
548 status = rt2x00usb_alloc_urb(rt2x00dev, queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700549 if (status)
550 goto exit;
551 }
552
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700553 return 0;
554
555exit:
556 rt2x00usb_uninitialize(rt2x00dev);
557
558 return status;
559}
560EXPORT_SYMBOL_GPL(rt2x00usb_initialize);
561
562void rt2x00usb_uninitialize(struct rt2x00_dev *rt2x00dev)
563{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500564 struct data_queue *queue;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700565
Ivo van Doorn181d6902008-02-05 16:42:23 -0500566 queue_for_each(rt2x00dev, queue)
567 rt2x00usb_free_urb(rt2x00dev, queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700568}
569EXPORT_SYMBOL_GPL(rt2x00usb_uninitialize);
570
571/*
572 * USB driver handlers.
573 */
574static void rt2x00usb_free_reg(struct rt2x00_dev *rt2x00dev)
575{
576 kfree(rt2x00dev->rf);
577 rt2x00dev->rf = NULL;
578
579 kfree(rt2x00dev->eeprom);
580 rt2x00dev->eeprom = NULL;
581
Ivo van Doorn21795092008-02-10 22:49:13 +0100582 kfree(rt2x00dev->csr.cache);
583 rt2x00dev->csr.cache = NULL;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700584}
585
586static int rt2x00usb_alloc_reg(struct rt2x00_dev *rt2x00dev)
587{
Ivo van Doorn21795092008-02-10 22:49:13 +0100588 rt2x00dev->csr.cache = kzalloc(CSR_CACHE_SIZE, GFP_KERNEL);
589 if (!rt2x00dev->csr.cache)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700590 goto exit;
591
592 rt2x00dev->eeprom = kzalloc(rt2x00dev->ops->eeprom_size, GFP_KERNEL);
593 if (!rt2x00dev->eeprom)
594 goto exit;
595
596 rt2x00dev->rf = kzalloc(rt2x00dev->ops->rf_size, GFP_KERNEL);
597 if (!rt2x00dev->rf)
598 goto exit;
599
600 return 0;
601
602exit:
603 ERROR_PROBE("Failed to allocate registers.\n");
604
605 rt2x00usb_free_reg(rt2x00dev);
606
607 return -ENOMEM;
608}
609
610int rt2x00usb_probe(struct usb_interface *usb_intf,
611 const struct usb_device_id *id)
612{
613 struct usb_device *usb_dev = interface_to_usbdev(usb_intf);
614 struct rt2x00_ops *ops = (struct rt2x00_ops *)id->driver_info;
615 struct ieee80211_hw *hw;
616 struct rt2x00_dev *rt2x00dev;
617 int retval;
618
619 usb_dev = usb_get_dev(usb_dev);
620
621 hw = ieee80211_alloc_hw(sizeof(struct rt2x00_dev), ops->hw);
622 if (!hw) {
623 ERROR_PROBE("Failed to allocate hardware.\n");
624 retval = -ENOMEM;
625 goto exit_put_device;
626 }
627
628 usb_set_intfdata(usb_intf, hw);
629
630 rt2x00dev = hw->priv;
Gertjan van Wingerde14a3bf82008-06-16 19:55:43 +0200631 rt2x00dev->dev = &usb_intf->dev;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700632 rt2x00dev->ops = ops;
633 rt2x00dev->hw = hw;
634
Gertjan van Wingerde2015d192009-11-08 12:30:14 +0100635 rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_USB);
636
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700637 retval = rt2x00usb_alloc_reg(rt2x00dev);
638 if (retval)
639 goto exit_free_device;
640
641 retval = rt2x00lib_probe_dev(rt2x00dev);
642 if (retval)
643 goto exit_free_reg;
644
645 return 0;
646
647exit_free_reg:
648 rt2x00usb_free_reg(rt2x00dev);
649
650exit_free_device:
651 ieee80211_free_hw(hw);
652
653exit_put_device:
654 usb_put_dev(usb_dev);
655
656 usb_set_intfdata(usb_intf, NULL);
657
658 return retval;
659}
660EXPORT_SYMBOL_GPL(rt2x00usb_probe);
661
662void rt2x00usb_disconnect(struct usb_interface *usb_intf)
663{
664 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
665 struct rt2x00_dev *rt2x00dev = hw->priv;
666
667 /*
668 * Free all allocated data.
669 */
670 rt2x00lib_remove_dev(rt2x00dev);
671 rt2x00usb_free_reg(rt2x00dev);
672 ieee80211_free_hw(hw);
673
674 /*
675 * Free the USB device data.
676 */
677 usb_set_intfdata(usb_intf, NULL);
678 usb_put_dev(interface_to_usbdev(usb_intf));
679}
680EXPORT_SYMBOL_GPL(rt2x00usb_disconnect);
681
682#ifdef CONFIG_PM
683int rt2x00usb_suspend(struct usb_interface *usb_intf, pm_message_t state)
684{
685 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
686 struct rt2x00_dev *rt2x00dev = hw->priv;
687 int retval;
688
689 retval = rt2x00lib_suspend(rt2x00dev, state);
690 if (retval)
691 return retval;
692
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700693 /*
694 * Decrease usbdev refcount.
695 */
696 usb_put_dev(interface_to_usbdev(usb_intf));
697
698 return 0;
699}
700EXPORT_SYMBOL_GPL(rt2x00usb_suspend);
701
702int rt2x00usb_resume(struct usb_interface *usb_intf)
703{
704 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
705 struct rt2x00_dev *rt2x00dev = hw->priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700706
707 usb_get_dev(interface_to_usbdev(usb_intf));
708
Ivo van Doorn499a2142009-03-28 20:51:58 +0100709 return rt2x00lib_resume(rt2x00dev);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700710}
711EXPORT_SYMBOL_GPL(rt2x00usb_resume);
712#endif /* CONFIG_PM */
713
714/*
Ivo van Doorn181d6902008-02-05 16:42:23 -0500715 * rt2x00usb module information.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700716 */
717MODULE_AUTHOR(DRV_PROJECT);
718MODULE_VERSION(DRV_VERSION);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500719MODULE_DESCRIPTION("rt2x00 usb library");
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700720MODULE_LICENSE("GPL");