blob: 501544882c2cdd1ee07899069edd8f64bbf7a101 [file] [log] [blame]
Ivo van Doorn95ea3622007-09-25 17:57:13 -07001/*
Ivo van Doorn4e54c712009-01-17 20:42:32 +01002 Copyright (C) 2004 - 2009 rt2x00 SourceForge Project
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>
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{
Ivo van Doornc1d35df2008-06-16 19:57:11 +020043 struct usb_device *usb_dev = to_usb_device_intf(rt2x00dev->dev);
Ivo van Doorn95ea3622007-09-25 17:57:13 -070044 int status;
45 unsigned int i;
46 unsigned int pipe =
47 (requesttype == USB_VENDOR_REQUEST_IN) ?
48 usb_rcvctrlpipe(usb_dev, 0) : usb_sndctrlpipe(usb_dev, 0);
49
Adam Baker3d823462007-10-27 13:43:29 +020050
Ivo van Doorn95ea3622007-09-25 17:57:13 -070051 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
52 status = usb_control_msg(usb_dev, pipe, request, requesttype,
53 value, offset, buffer, buffer_length,
54 timeout);
55 if (status >= 0)
56 return 0;
57
58 /*
Ivo van Doorne9136552007-09-25 20:54:20 +020059 * Check for errors
Ivo van Doorn95ea3622007-09-25 17:57:13 -070060 * -ENODEV: Device has disappeared, no point continuing.
Ivo van Doorne9136552007-09-25 20:54:20 +020061 * All other errors: Try again.
Ivo van Doorn95ea3622007-09-25 17:57:13 -070062 */
Ivo van Doorn95ea3622007-09-25 17:57:13 -070063 else if (status == -ENODEV)
64 break;
65 }
66
67 ERROR(rt2x00dev,
68 "Vendor Request 0x%02x failed for offset 0x%04x with error %d.\n",
69 request, offset, status);
70
71 return status;
72}
73EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request);
74
Adam Baker3d823462007-10-27 13:43:29 +020075int 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)
Ivo van Doorn95ea3622007-09-25 17:57:13 -070079{
80 int status;
81
Ivo van Doorn8ff48a82008-11-09 23:40:46 +010082 BUG_ON(!mutex_is_locked(&rt2x00dev->csr_mutex));
Adam Baker3d823462007-10-27 13:43:29 +020083
Ivo van Doorn95ea3622007-09-25 17:57:13 -070084 /*
85 * Check for Cache availability.
86 */
Ivo van Doorn21795092008-02-10 22:49:13 +010087 if (unlikely(!rt2x00dev->csr.cache || buffer_length > CSR_CACHE_SIZE)) {
Ivo van Doorn95ea3622007-09-25 17:57:13 -070088 ERROR(rt2x00dev, "CSR cache not available.\n");
89 return -ENOMEM;
90 }
91
92 if (requesttype == USB_VENDOR_REQUEST_OUT)
Ivo van Doorn21795092008-02-10 22:49:13 +010093 memcpy(rt2x00dev->csr.cache, buffer, buffer_length);
Ivo van Doorn95ea3622007-09-25 17:57:13 -070094
95 status = rt2x00usb_vendor_request(rt2x00dev, request, requesttype,
Ivo van Doorn21795092008-02-10 22:49:13 +010096 offset, 0, rt2x00dev->csr.cache,
Ivo van Doorn95ea3622007-09-25 17:57:13 -070097 buffer_length, timeout);
98
99 if (!status && requesttype == USB_VENDOR_REQUEST_IN)
Ivo van Doorn21795092008-02-10 22:49:13 +0100100 memcpy(buffer, rt2x00dev->csr.cache, buffer_length);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700101
102 return status;
103}
Adam Baker3d823462007-10-27 13:43:29 +0200104EXPORT_SYMBOL_GPL(rt2x00usb_vendor_req_buff_lock);
105
106int 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)
110{
111 int status;
112
Ivo van Doorn8ff48a82008-11-09 23:40:46 +0100113 mutex_lock(&rt2x00dev->csr_mutex);
Adam Baker3d823462007-10-27 13:43:29 +0200114
115 status = rt2x00usb_vendor_req_buff_lock(rt2x00dev, request,
116 requesttype, offset, buffer,
117 buffer_length, timeout);
118
Ivo van Doorn8ff48a82008-11-09 23:40:46 +0100119 mutex_unlock(&rt2x00dev->csr_mutex);
Adam Baker3d823462007-10-27 13:43:29 +0200120
121 return status;
122}
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700123EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_buff);
124
Iwo Merglered0dbee2008-07-19 16:16:54 +0200125int rt2x00usb_vendor_request_large_buff(struct rt2x00_dev *rt2x00dev,
126 const u8 request, const u8 requesttype,
Ivo van Doorn82f97b82008-08-02 01:31:09 -0700127 const u16 offset, const void *buffer,
Iwo Merglered0dbee2008-07-19 16:16:54 +0200128 const u16 buffer_length,
129 const int timeout)
130{
131 int status = 0;
132 unsigned char *tb;
133 u16 off, len, bsize;
134
Ivo van Doorn8ff48a82008-11-09 23:40:46 +0100135 mutex_lock(&rt2x00dev->csr_mutex);
Iwo Merglered0dbee2008-07-19 16:16:54 +0200136
Ivo van Doorn82f97b82008-08-02 01:31:09 -0700137 tb = (char *)buffer;
Iwo Merglered0dbee2008-07-19 16:16:54 +0200138 off = offset;
139 len = buffer_length;
140 while (len && !status) {
141 bsize = min_t(u16, CSR_CACHE_SIZE, len);
142 status = rt2x00usb_vendor_req_buff_lock(rt2x00dev, request,
143 requesttype, off, tb,
144 bsize, timeout);
145
146 tb += bsize;
147 len -= bsize;
148 off += bsize;
149 }
150
Ivo van Doorn8ff48a82008-11-09 23:40:46 +0100151 mutex_unlock(&rt2x00dev->csr_mutex);
Iwo Merglered0dbee2008-07-19 16:16:54 +0200152
153 return status;
154}
155EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_large_buff);
156
Ivo van Doorn0f829b12008-11-10 19:42:18 +0100157int rt2x00usb_regbusy_read(struct rt2x00_dev *rt2x00dev,
158 const unsigned int offset,
159 struct rt2x00_field32 field,
160 u32 *reg)
161{
162 unsigned int i;
163
164 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
165 rt2x00usb_register_read_lock(rt2x00dev, offset, reg);
166 if (!rt2x00_get_field32(*reg, field))
167 return 1;
168 udelay(REGISTER_BUSY_DELAY);
169 }
170
171 ERROR(rt2x00dev, "Indirect register access failed: "
172 "offset=0x%.08x, value=0x%.08x\n", offset, *reg);
173 *reg = ~0;
174
175 return 0;
176}
177EXPORT_SYMBOL_GPL(rt2x00usb_regbusy_read);
178
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700179/*
180 * TX data handlers.
181 */
182static void rt2x00usb_interrupt_txdone(struct urb *urb)
183{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500184 struct queue_entry *entry = (struct queue_entry *)urb->context;
185 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500186 struct txdone_entry_desc txdesc;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700187
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200188 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags) ||
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200189 !test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags))
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700190 return;
191
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700192 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700193 * Obtain the status about this packet.
Ivo van Doornfb55f4d12008-05-10 13:42:06 +0200194 * Note that when the status is 0 it does not mean the
195 * frame was send out correctly. It only means the frame
196 * was succesfully pushed to the hardware, we have no
197 * way to determine the transmission status right now.
198 * (Only indirectly by looking at the failed TX counters
199 * in the register).
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700200 */
Jochen Friedrichf126cba2008-08-15 14:47:46 +0200201 txdesc.flags = 0;
Ivo van Doornfb55f4d12008-05-10 13:42:06 +0200202 if (!urb->status)
203 __set_bit(TXDONE_UNKNOWN, &txdesc.flags);
204 else
205 __set_bit(TXDONE_FAILURE, &txdesc.flags);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500206 txdesc.retry = 0;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700207
Ivo van Doorn181d6902008-02-05 16:42:23 -0500208 rt2x00lib_txdone(entry, &txdesc);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700209}
210
Ivo van Doorn6db37862008-06-06 22:50:28 +0200211int rt2x00usb_write_tx_data(struct queue_entry *entry)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700212{
Ivo van Doorn6db37862008-06-06 22:50:28 +0200213 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Ivo van Doornc1d35df2008-06-16 19:57:11 +0200214 struct usb_device *usb_dev = to_usb_device_intf(rt2x00dev->dev);
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200215 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500216 struct skb_frame_desc *skbdesc;
Ivo van Doorndd9fa2d2007-10-06 14:15:46 +0200217 u32 length;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700218
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200219 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700220 * Add the descriptor in front of the skb.
221 */
Ivo van Doorn6db37862008-06-06 22:50:28 +0200222 skb_push(entry->skb, entry->queue->desc_size);
223 memset(entry->skb->data, 0, entry->queue->desc_size);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700224
Ivo van Doorn08992f72008-01-24 01:56:25 -0800225 /*
226 * Fill in skb descriptor
227 */
Ivo van Doorn6db37862008-06-06 22:50:28 +0200228 skbdesc = get_skb_frame_desc(entry->skb);
Ivo van Doorn6db37862008-06-06 22:50:28 +0200229 skbdesc->desc = entry->skb->data;
230 skbdesc->desc_len = entry->queue->desc_size;
Ivo van Doorn08992f72008-01-24 01:56:25 -0800231
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700232 /*
Ivo van Doorndd9fa2d2007-10-06 14:15:46 +0200233 * USB devices cannot blindly pass the skb->len as the
234 * length of the data to usb_fill_bulk_urb. Pass the skb
235 * to the driver to determine what the length should be.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700236 */
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100237 length = rt2x00dev->ops->lib->get_tx_data_len(entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700238
Ivo van Doorn6db37862008-06-06 22:50:28 +0200239 usb_fill_bulk_urb(entry_priv->urb, usb_dev,
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100240 usb_sndbulkpipe(usb_dev, entry->queue->usb_endpoint),
Ivo van Doorn6db37862008-06-06 22:50:28 +0200241 entry->skb->data, length,
242 rt2x00usb_interrupt_txdone, entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700243
Mattias Nissler1abc3652008-08-29 21:07:20 +0200244 /*
245 * Make sure the skb->data pointer points to the frame, not the
246 * descriptor.
247 */
248 skb_pull(entry->skb, entry->queue->desc_size);
249
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700250 return 0;
251}
252EXPORT_SYMBOL_GPL(rt2x00usb_write_tx_data);
253
Ivo van Doornf019d512008-06-06 22:47:39 +0200254static inline void rt2x00usb_kick_tx_entry(struct queue_entry *entry)
255{
256 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
257
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200258 if (test_and_clear_bit(ENTRY_DATA_PENDING, &entry->flags))
Ivo van Doornf019d512008-06-06 22:47:39 +0200259 usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
260}
261
262void rt2x00usb_kick_tx_queue(struct rt2x00_dev *rt2x00dev,
263 const enum data_queue_qid qid)
264{
265 struct data_queue *queue = rt2x00queue_get_queue(rt2x00dev, qid);
266 unsigned long irqflags;
267 unsigned int index;
268 unsigned int index_done;
269 unsigned int i;
270
271 /*
272 * Only protect the range we are going to loop over,
273 * if during our loop a extra entry is set to pending
274 * it should not be kicked during this run, since it
275 * is part of another TX operation.
276 */
277 spin_lock_irqsave(&queue->lock, irqflags);
278 index = queue->index[Q_INDEX];
279 index_done = queue->index[Q_INDEX_DONE];
280 spin_unlock_irqrestore(&queue->lock, irqflags);
281
282 /*
283 * Start from the TX done pointer, this guarentees that we will
284 * send out all frames in the correct order.
285 */
286 if (index_done < index) {
287 for (i = index_done; i < index; i++)
288 rt2x00usb_kick_tx_entry(&queue->entries[i]);
289 } else {
290 for (i = index_done; i < queue->limit; i++)
291 rt2x00usb_kick_tx_entry(&queue->entries[i]);
292
293 for (i = 0; i < index; i++)
294 rt2x00usb_kick_tx_entry(&queue->entries[i]);
295 }
296}
297EXPORT_SYMBOL_GPL(rt2x00usb_kick_tx_queue);
298
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100299void rt2x00usb_kill_tx_queue(struct rt2x00_dev *rt2x00dev,
300 const enum data_queue_qid qid)
301{
302 struct data_queue *queue = rt2x00queue_get_queue(rt2x00dev, qid);
303 struct queue_entry_priv_usb *entry_priv;
304 struct queue_entry_priv_usb_bcn *bcn_priv;
305 unsigned int i;
306 bool kill_guard;
307
308 /*
309 * When killing the beacon queue, we must also kill
310 * the beacon guard byte.
311 */
312 kill_guard =
313 (qid == QID_BEACON) &&
314 (test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags));
315
316 /*
317 * Cancel all entries.
318 */
319 for (i = 0; i < queue->limit; i++) {
320 entry_priv = queue->entries[i].priv_data;
321 usb_kill_urb(entry_priv->urb);
322
323 /*
324 * Kill guardian urb (if required by driver).
325 */
326 if (kill_guard) {
327 bcn_priv = queue->entries[i].priv_data;
328 usb_kill_urb(bcn_priv->guardian_urb);
329 }
330 }
331}
332EXPORT_SYMBOL_GPL(rt2x00usb_kill_tx_queue);
333
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700334/*
335 * RX data handlers.
336 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500337static void rt2x00usb_interrupt_rxdone(struct urb *urb)
338{
339 struct queue_entry *entry = (struct queue_entry *)urb->context;
340 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200341 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
Gertjan van Wingerdea26cbc62008-06-06 22:54:28 +0200342 u8 rxd[32];
Ivo van Doorn181d6902008-02-05 16:42:23 -0500343
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200344 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags) ||
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200345 !test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags))
Ivo van Doorn181d6902008-02-05 16:42:23 -0500346 return;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700347
348 /*
Ivo van Doorn181d6902008-02-05 16:42:23 -0500349 * Check if the received data is simply too small
350 * to be actually valid, or if the urb is signaling
351 * a problem.
Ivo van Doorn08992f72008-01-24 01:56:25 -0800352 */
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200353 if (urb->actual_length < entry->queue->desc_size || urb->status) {
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200354 set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200355 usb_submit_urb(urb, GFP_ATOMIC);
356 return;
357 }
Ivo van Doorn181d6902008-02-05 16:42:23 -0500358
359 /*
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200360 * Fill in desc fields of the skb descriptor
Ivo van Doorn181d6902008-02-05 16:42:23 -0500361 */
Gertjan van Wingerdea26cbc62008-06-06 22:54:28 +0200362 skbdesc->desc = rxd;
363 skbdesc->desc_len = entry->queue->desc_size;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500364
Ivo van Doorn08992f72008-01-24 01:56:25 -0800365 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700366 * Send the frame to rt2x00lib for further processing.
367 */
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200368 rt2x00lib_rxdone(rt2x00dev, entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700369}
370
371/*
372 * Radio handlers
373 */
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700374void rt2x00usb_disable_radio(struct rt2x00_dev *rt2x00dev)
375{
Ivo van Doornbd394a72008-04-21 19:01:58 +0200376 rt2x00usb_vendor_request_sw(rt2x00dev, USB_RX_CONTROL, 0, 0,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700377 REGISTER_TIMEOUT);
378
379 /*
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100380 * The USB version of kill_tx_queue also works
381 * on the RX queue.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700382 */
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100383 rt2x00dev->ops->lib->kill_tx_queue(rt2x00dev, QID_RX);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700384}
385EXPORT_SYMBOL_GPL(rt2x00usb_disable_radio);
386
387/*
388 * Device initialization handlers.
389 */
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100390void rt2x00usb_clear_entry(struct queue_entry *entry)
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100391{
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100392 struct usb_device *usb_dev =
393 to_usb_device_intf(entry->queue->rt2x00dev->dev);
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200394 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100395 int pipe;
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100396
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100397 if (entry->queue->qid == QID_RX) {
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100398 pipe = usb_rcvbulkpipe(usb_dev, entry->queue->usb_endpoint);
399 usb_fill_bulk_urb(entry_priv->urb, usb_dev, pipe,
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100400 entry->skb->data, entry->skb->len,
401 rt2x00usb_interrupt_rxdone, entry);
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100402
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100403 set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
404 usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
405 } else {
406 entry->flags = 0;
407 }
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100408}
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100409EXPORT_SYMBOL_GPL(rt2x00usb_clear_entry);
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100410
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100411static void rt2x00usb_assign_endpoint(struct data_queue *queue,
412 struct usb_endpoint_descriptor *ep_desc)
413{
414 struct usb_device *usb_dev = to_usb_device_intf(queue->rt2x00dev->dev);
415 int pipe;
416
417 queue->usb_endpoint = usb_endpoint_num(ep_desc);
418
419 if (queue->qid == QID_RX) {
420 pipe = usb_rcvbulkpipe(usb_dev, queue->usb_endpoint);
421 queue->usb_maxpacket = usb_maxpacket(usb_dev, pipe, 0);
422 } else {
423 pipe = usb_sndbulkpipe(usb_dev, queue->usb_endpoint);
424 queue->usb_maxpacket = usb_maxpacket(usb_dev, pipe, 1);
425 }
426
427 if (!queue->usb_maxpacket)
428 queue->usb_maxpacket = 1;
429}
430
431static int rt2x00usb_find_endpoints(struct rt2x00_dev *rt2x00dev)
432{
433 struct usb_interface *intf = to_usb_interface(rt2x00dev->dev);
434 struct usb_host_interface *intf_desc = intf->cur_altsetting;
435 struct usb_endpoint_descriptor *ep_desc;
436 struct data_queue *queue = rt2x00dev->tx;
437 struct usb_endpoint_descriptor *tx_ep_desc = NULL;
438 unsigned int i;
439
440 /*
441 * Walk through all available endpoints to search for "bulk in"
442 * and "bulk out" endpoints. When we find such endpoints collect
443 * the information we need from the descriptor and assign it
444 * to the queue.
445 */
446 for (i = 0; i < intf_desc->desc.bNumEndpoints; i++) {
447 ep_desc = &intf_desc->endpoint[i].desc;
448
449 if (usb_endpoint_is_bulk_in(ep_desc)) {
450 rt2x00usb_assign_endpoint(rt2x00dev->rx, ep_desc);
Ivo van Doornd15cfc32008-12-20 11:00:23 +0100451 } else if (usb_endpoint_is_bulk_out(ep_desc) &&
452 (queue != queue_end(rt2x00dev))) {
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100453 rt2x00usb_assign_endpoint(queue, ep_desc);
Ivo van Doornd15cfc32008-12-20 11:00:23 +0100454 queue = queue_next(queue);
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100455
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100456 tx_ep_desc = ep_desc;
457 }
458 }
459
460 /*
461 * At least 1 endpoint for RX and 1 endpoint for TX must be available.
462 */
463 if (!rt2x00dev->rx->usb_endpoint || !rt2x00dev->tx->usb_endpoint) {
464 ERROR(rt2x00dev, "Bulk-in/Bulk-out endpoints not found\n");
465 return -EPIPE;
466 }
467
468 /*
469 * It might be possible not all queues have a dedicated endpoint.
470 * Loop through all TX queues and copy the endpoint information
471 * which we have gathered from already assigned endpoints.
472 */
473 txall_queue_for_each(rt2x00dev, queue) {
474 if (!queue->usb_endpoint)
475 rt2x00usb_assign_endpoint(queue, tx_ep_desc);
476 }
477
478 return 0;
479}
480
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700481static int rt2x00usb_alloc_urb(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500482 struct data_queue *queue)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700483{
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200484 struct queue_entry_priv_usb *entry_priv;
485 struct queue_entry_priv_usb_bcn *bcn_priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700486 unsigned int i;
487
Ivo van Doorn181d6902008-02-05 16:42:23 -0500488 for (i = 0; i < queue->limit; i++) {
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200489 entry_priv = queue->entries[i].priv_data;
490 entry_priv->urb = usb_alloc_urb(0, GFP_KERNEL);
491 if (!entry_priv->urb)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700492 return -ENOMEM;
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200493 }
Ivo van Doorn181d6902008-02-05 16:42:23 -0500494
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200495 /*
496 * If this is not the beacon queue or
497 * no guardian byte was required for the beacon,
498 * then we are done.
499 */
500 if (rt2x00dev->bcn != queue ||
501 !test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags))
502 return 0;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500503
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200504 for (i = 0; i < queue->limit; i++) {
505 bcn_priv = queue->entries[i].priv_data;
506 bcn_priv->guardian_urb = usb_alloc_urb(0, GFP_KERNEL);
507 if (!bcn_priv->guardian_urb)
508 return -ENOMEM;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700509 }
510
511 return 0;
512}
513
514static void rt2x00usb_free_urb(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500515 struct data_queue *queue)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700516{
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200517 struct queue_entry_priv_usb *entry_priv;
518 struct queue_entry_priv_usb_bcn *bcn_priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700519 unsigned int i;
520
Ivo van Doorn181d6902008-02-05 16:42:23 -0500521 if (!queue->entries)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700522 return;
523
Ivo van Doorn181d6902008-02-05 16:42:23 -0500524 for (i = 0; i < queue->limit; i++) {
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200525 entry_priv = queue->entries[i].priv_data;
526 usb_kill_urb(entry_priv->urb);
527 usb_free_urb(entry_priv->urb);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700528 }
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200529
530 /*
531 * If this is not the beacon queue or
532 * no guardian byte was required for the beacon,
533 * then we are done.
534 */
535 if (rt2x00dev->bcn != queue ||
536 !test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags))
537 return;
538
539 for (i = 0; i < queue->limit; i++) {
540 bcn_priv = queue->entries[i].priv_data;
541 usb_kill_urb(bcn_priv->guardian_urb);
542 usb_free_urb(bcn_priv->guardian_urb);
543 }
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700544}
545
546int rt2x00usb_initialize(struct rt2x00_dev *rt2x00dev)
547{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500548 struct data_queue *queue;
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200549 int status;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700550
551 /*
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100552 * Find endpoints for each queue
553 */
554 status = rt2x00usb_find_endpoints(rt2x00dev);
555 if (status)
556 goto exit;
557
558 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700559 * Allocate DMA
560 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500561 queue_for_each(rt2x00dev, queue) {
562 status = rt2x00usb_alloc_urb(rt2x00dev, queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700563 if (status)
564 goto exit;
565 }
566
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700567 return 0;
568
569exit:
570 rt2x00usb_uninitialize(rt2x00dev);
571
572 return status;
573}
574EXPORT_SYMBOL_GPL(rt2x00usb_initialize);
575
576void rt2x00usb_uninitialize(struct rt2x00_dev *rt2x00dev)
577{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500578 struct data_queue *queue;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700579
Ivo van Doorn181d6902008-02-05 16:42:23 -0500580 queue_for_each(rt2x00dev, queue)
581 rt2x00usb_free_urb(rt2x00dev, queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700582}
583EXPORT_SYMBOL_GPL(rt2x00usb_uninitialize);
584
585/*
586 * USB driver handlers.
587 */
588static void rt2x00usb_free_reg(struct rt2x00_dev *rt2x00dev)
589{
590 kfree(rt2x00dev->rf);
591 rt2x00dev->rf = NULL;
592
593 kfree(rt2x00dev->eeprom);
594 rt2x00dev->eeprom = NULL;
595
Ivo van Doorn21795092008-02-10 22:49:13 +0100596 kfree(rt2x00dev->csr.cache);
597 rt2x00dev->csr.cache = NULL;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700598}
599
600static int rt2x00usb_alloc_reg(struct rt2x00_dev *rt2x00dev)
601{
Ivo van Doorn21795092008-02-10 22:49:13 +0100602 rt2x00dev->csr.cache = kzalloc(CSR_CACHE_SIZE, GFP_KERNEL);
603 if (!rt2x00dev->csr.cache)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700604 goto exit;
605
606 rt2x00dev->eeprom = kzalloc(rt2x00dev->ops->eeprom_size, GFP_KERNEL);
607 if (!rt2x00dev->eeprom)
608 goto exit;
609
610 rt2x00dev->rf = kzalloc(rt2x00dev->ops->rf_size, GFP_KERNEL);
611 if (!rt2x00dev->rf)
612 goto exit;
613
614 return 0;
615
616exit:
617 ERROR_PROBE("Failed to allocate registers.\n");
618
619 rt2x00usb_free_reg(rt2x00dev);
620
621 return -ENOMEM;
622}
623
624int rt2x00usb_probe(struct usb_interface *usb_intf,
625 const struct usb_device_id *id)
626{
627 struct usb_device *usb_dev = interface_to_usbdev(usb_intf);
628 struct rt2x00_ops *ops = (struct rt2x00_ops *)id->driver_info;
629 struct ieee80211_hw *hw;
630 struct rt2x00_dev *rt2x00dev;
631 int retval;
632
633 usb_dev = usb_get_dev(usb_dev);
634
635 hw = ieee80211_alloc_hw(sizeof(struct rt2x00_dev), ops->hw);
636 if (!hw) {
637 ERROR_PROBE("Failed to allocate hardware.\n");
638 retval = -ENOMEM;
639 goto exit_put_device;
640 }
641
642 usb_set_intfdata(usb_intf, hw);
643
644 rt2x00dev = hw->priv;
Gertjan van Wingerde14a3bf82008-06-16 19:55:43 +0200645 rt2x00dev->dev = &usb_intf->dev;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700646 rt2x00dev->ops = ops;
647 rt2x00dev->hw = hw;
648
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700649 retval = rt2x00usb_alloc_reg(rt2x00dev);
650 if (retval)
651 goto exit_free_device;
652
653 retval = rt2x00lib_probe_dev(rt2x00dev);
654 if (retval)
655 goto exit_free_reg;
656
657 return 0;
658
659exit_free_reg:
660 rt2x00usb_free_reg(rt2x00dev);
661
662exit_free_device:
663 ieee80211_free_hw(hw);
664
665exit_put_device:
666 usb_put_dev(usb_dev);
667
668 usb_set_intfdata(usb_intf, NULL);
669
670 return retval;
671}
672EXPORT_SYMBOL_GPL(rt2x00usb_probe);
673
674void rt2x00usb_disconnect(struct usb_interface *usb_intf)
675{
676 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
677 struct rt2x00_dev *rt2x00dev = hw->priv;
678
679 /*
680 * Free all allocated data.
681 */
682 rt2x00lib_remove_dev(rt2x00dev);
683 rt2x00usb_free_reg(rt2x00dev);
684 ieee80211_free_hw(hw);
685
686 /*
687 * Free the USB device data.
688 */
689 usb_set_intfdata(usb_intf, NULL);
690 usb_put_dev(interface_to_usbdev(usb_intf));
691}
692EXPORT_SYMBOL_GPL(rt2x00usb_disconnect);
693
694#ifdef CONFIG_PM
695int rt2x00usb_suspend(struct usb_interface *usb_intf, pm_message_t state)
696{
697 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
698 struct rt2x00_dev *rt2x00dev = hw->priv;
699 int retval;
700
701 retval = rt2x00lib_suspend(rt2x00dev, state);
702 if (retval)
703 return retval;
704
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700705 /*
706 * Decrease usbdev refcount.
707 */
708 usb_put_dev(interface_to_usbdev(usb_intf));
709
710 return 0;
711}
712EXPORT_SYMBOL_GPL(rt2x00usb_suspend);
713
714int rt2x00usb_resume(struct usb_interface *usb_intf)
715{
716 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
717 struct rt2x00_dev *rt2x00dev = hw->priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700718
719 usb_get_dev(interface_to_usbdev(usb_intf));
720
Ivo van Doorn499a2142009-03-28 20:51:58 +0100721 return rt2x00lib_resume(rt2x00dev);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700722}
723EXPORT_SYMBOL_GPL(rt2x00usb_resume);
724#endif /* CONFIG_PM */
725
726/*
Ivo van Doorn181d6902008-02-05 16:42:23 -0500727 * rt2x00usb module information.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700728 */
729MODULE_AUTHOR(DRV_PROJECT);
730MODULE_VERSION(DRV_VERSION);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500731MODULE_DESCRIPTION("rt2x00 usb library");
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700732MODULE_LICENSE("GPL");