blob: f02b48a90593c86a3daf0c71b5c13193ec851c6b [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
Sean Cross66f84d62009-11-05 20:22:03 +010050 if (!test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
51 return -ENODEV;
Adam Baker3d823462007-10-27 13:43:29 +020052
Ivo van Doorn95ea3622007-09-25 17:57:13 -070053 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
54 status = usb_control_msg(usb_dev, pipe, request, requesttype,
55 value, offset, buffer, buffer_length,
56 timeout);
57 if (status >= 0)
58 return 0;
59
60 /*
Ivo van Doorne9136552007-09-25 20:54:20 +020061 * Check for errors
Ivo van Doorn95ea3622007-09-25 17:57:13 -070062 * -ENODEV: Device has disappeared, no point continuing.
Ivo van Doorne9136552007-09-25 20:54:20 +020063 * All other errors: Try again.
Ivo van Doorn95ea3622007-09-25 17:57:13 -070064 */
Sean Cross66f84d62009-11-05 20:22:03 +010065 else if (status == -ENODEV) {
66 clear_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags);
Ivo van Doorn95ea3622007-09-25 17:57:13 -070067 break;
Sean Cross66f84d62009-11-05 20:22:03 +010068 }
Ivo van Doorn95ea3622007-09-25 17:57:13 -070069 }
70
71 ERROR(rt2x00dev,
72 "Vendor Request 0x%02x failed for offset 0x%04x with error %d.\n",
73 request, offset, status);
74
75 return status;
76}
77EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request);
78
Adam Baker3d823462007-10-27 13:43:29 +020079int rt2x00usb_vendor_req_buff_lock(struct rt2x00_dev *rt2x00dev,
80 const u8 request, const u8 requesttype,
81 const u16 offset, void *buffer,
82 const u16 buffer_length, const int timeout)
Ivo van Doorn95ea3622007-09-25 17:57:13 -070083{
84 int status;
85
Ivo van Doorn8ff48a82008-11-09 23:40:46 +010086 BUG_ON(!mutex_is_locked(&rt2x00dev->csr_mutex));
Adam Baker3d823462007-10-27 13:43:29 +020087
Ivo van Doorn95ea3622007-09-25 17:57:13 -070088 /*
89 * Check for Cache availability.
90 */
Ivo van Doorn21795092008-02-10 22:49:13 +010091 if (unlikely(!rt2x00dev->csr.cache || buffer_length > CSR_CACHE_SIZE)) {
Ivo van Doorn95ea3622007-09-25 17:57:13 -070092 ERROR(rt2x00dev, "CSR cache not available.\n");
93 return -ENOMEM;
94 }
95
96 if (requesttype == USB_VENDOR_REQUEST_OUT)
Ivo van Doorn21795092008-02-10 22:49:13 +010097 memcpy(rt2x00dev->csr.cache, buffer, buffer_length);
Ivo van Doorn95ea3622007-09-25 17:57:13 -070098
99 status = rt2x00usb_vendor_request(rt2x00dev, request, requesttype,
Ivo van Doorn21795092008-02-10 22:49:13 +0100100 offset, 0, rt2x00dev->csr.cache,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700101 buffer_length, timeout);
102
103 if (!status && requesttype == USB_VENDOR_REQUEST_IN)
Ivo van Doorn21795092008-02-10 22:49:13 +0100104 memcpy(buffer, rt2x00dev->csr.cache, buffer_length);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700105
106 return status;
107}
Adam Baker3d823462007-10-27 13:43:29 +0200108EXPORT_SYMBOL_GPL(rt2x00usb_vendor_req_buff_lock);
109
110int rt2x00usb_vendor_request_buff(struct rt2x00_dev *rt2x00dev,
111 const u8 request, const u8 requesttype,
112 const u16 offset, void *buffer,
113 const u16 buffer_length, const int timeout)
114{
115 int status;
116
Ivo van Doorn8ff48a82008-11-09 23:40:46 +0100117 mutex_lock(&rt2x00dev->csr_mutex);
Adam Baker3d823462007-10-27 13:43:29 +0200118
119 status = rt2x00usb_vendor_req_buff_lock(rt2x00dev, request,
120 requesttype, offset, buffer,
121 buffer_length, timeout);
122
Ivo van Doorn8ff48a82008-11-09 23:40:46 +0100123 mutex_unlock(&rt2x00dev->csr_mutex);
Adam Baker3d823462007-10-27 13:43:29 +0200124
125 return status;
126}
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700127EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_buff);
128
Iwo Merglered0dbee2008-07-19 16:16:54 +0200129int rt2x00usb_vendor_request_large_buff(struct rt2x00_dev *rt2x00dev,
130 const u8 request, const u8 requesttype,
Ivo van Doorn82f97b82008-08-02 01:31:09 -0700131 const u16 offset, const void *buffer,
Iwo Merglered0dbee2008-07-19 16:16:54 +0200132 const u16 buffer_length,
133 const int timeout)
134{
135 int status = 0;
136 unsigned char *tb;
137 u16 off, len, bsize;
138
Ivo van Doorn8ff48a82008-11-09 23:40:46 +0100139 mutex_lock(&rt2x00dev->csr_mutex);
Iwo Merglered0dbee2008-07-19 16:16:54 +0200140
Ivo van Doorn82f97b82008-08-02 01:31:09 -0700141 tb = (char *)buffer;
Iwo Merglered0dbee2008-07-19 16:16:54 +0200142 off = offset;
143 len = buffer_length;
144 while (len && !status) {
145 bsize = min_t(u16, CSR_CACHE_SIZE, len);
146 status = rt2x00usb_vendor_req_buff_lock(rt2x00dev, request,
147 requesttype, off, tb,
148 bsize, timeout);
149
150 tb += bsize;
151 len -= bsize;
152 off += bsize;
153 }
154
Ivo van Doorn8ff48a82008-11-09 23:40:46 +0100155 mutex_unlock(&rt2x00dev->csr_mutex);
Iwo Merglered0dbee2008-07-19 16:16:54 +0200156
157 return status;
158}
159EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_large_buff);
160
Ivo van Doorn0f829b12008-11-10 19:42:18 +0100161int rt2x00usb_regbusy_read(struct rt2x00_dev *rt2x00dev,
162 const unsigned int offset,
163 struct rt2x00_field32 field,
164 u32 *reg)
165{
166 unsigned int i;
167
Sean Cross66f84d62009-11-05 20:22:03 +0100168 if (!test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
169 return -ENODEV;
170
Ivo van Doorn0f829b12008-11-10 19:42:18 +0100171 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
172 rt2x00usb_register_read_lock(rt2x00dev, offset, reg);
173 if (!rt2x00_get_field32(*reg, field))
174 return 1;
175 udelay(REGISTER_BUSY_DELAY);
176 }
177
178 ERROR(rt2x00dev, "Indirect register access failed: "
179 "offset=0x%.08x, value=0x%.08x\n", offset, *reg);
180 *reg = ~0;
181
182 return 0;
183}
184EXPORT_SYMBOL_GPL(rt2x00usb_regbusy_read);
185
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700186/*
187 * TX data handlers.
188 */
189static void rt2x00usb_interrupt_txdone(struct urb *urb)
190{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500191 struct queue_entry *entry = (struct queue_entry *)urb->context;
192 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500193 struct txdone_entry_desc txdesc;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700194
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200195 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags) ||
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200196 !test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags))
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700197 return;
198
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700199 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700200 * Obtain the status about this packet.
Ivo van Doornfb55f4d12008-05-10 13:42:06 +0200201 * Note that when the status is 0 it does not mean the
202 * frame was send out correctly. It only means the frame
203 * was succesfully pushed to the hardware, we have no
204 * way to determine the transmission status right now.
205 * (Only indirectly by looking at the failed TX counters
206 * in the register).
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700207 */
Jochen Friedrichf126cba2008-08-15 14:47:46 +0200208 txdesc.flags = 0;
Ivo van Doornfb55f4d12008-05-10 13:42:06 +0200209 if (!urb->status)
210 __set_bit(TXDONE_UNKNOWN, &txdesc.flags);
211 else
212 __set_bit(TXDONE_FAILURE, &txdesc.flags);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500213 txdesc.retry = 0;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700214
Ivo van Doorn181d6902008-02-05 16:42:23 -0500215 rt2x00lib_txdone(entry, &txdesc);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700216}
217
Ivo van Doorn6db37862008-06-06 22:50:28 +0200218int rt2x00usb_write_tx_data(struct queue_entry *entry)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700219{
Ivo van Doorn6db37862008-06-06 22:50:28 +0200220 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Ivo van Doornc1d35df2008-06-16 19:57:11 +0200221 struct usb_device *usb_dev = to_usb_device_intf(rt2x00dev->dev);
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200222 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500223 struct skb_frame_desc *skbdesc;
Ivo van Doorndd9fa2d2007-10-06 14:15:46 +0200224 u32 length;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700225
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200226 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700227 * Add the descriptor in front of the skb.
228 */
Ivo van Doorn6db37862008-06-06 22:50:28 +0200229 skb_push(entry->skb, entry->queue->desc_size);
230 memset(entry->skb->data, 0, entry->queue->desc_size);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700231
Ivo van Doorn08992f72008-01-24 01:56:25 -0800232 /*
233 * Fill in skb descriptor
234 */
Ivo van Doorn6db37862008-06-06 22:50:28 +0200235 skbdesc = get_skb_frame_desc(entry->skb);
Ivo van Doorn6db37862008-06-06 22:50:28 +0200236 skbdesc->desc = entry->skb->data;
237 skbdesc->desc_len = entry->queue->desc_size;
Ivo van Doorn08992f72008-01-24 01:56:25 -0800238
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700239 /*
Ivo van Doorndd9fa2d2007-10-06 14:15:46 +0200240 * USB devices cannot blindly pass the skb->len as the
241 * length of the data to usb_fill_bulk_urb. Pass the skb
242 * to the driver to determine what the length should be.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700243 */
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100244 length = rt2x00dev->ops->lib->get_tx_data_len(entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700245
Ivo van Doorn6db37862008-06-06 22:50:28 +0200246 usb_fill_bulk_urb(entry_priv->urb, usb_dev,
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100247 usb_sndbulkpipe(usb_dev, entry->queue->usb_endpoint),
Ivo van Doorn6db37862008-06-06 22:50:28 +0200248 entry->skb->data, length,
249 rt2x00usb_interrupt_txdone, entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700250
Mattias Nissler1abc3652008-08-29 21:07:20 +0200251 /*
252 * Make sure the skb->data pointer points to the frame, not the
253 * descriptor.
254 */
255 skb_pull(entry->skb, entry->queue->desc_size);
256
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700257 return 0;
258}
259EXPORT_SYMBOL_GPL(rt2x00usb_write_tx_data);
260
Ivo van Doornf019d512008-06-06 22:47:39 +0200261static inline void rt2x00usb_kick_tx_entry(struct queue_entry *entry)
262{
263 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
264
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200265 if (test_and_clear_bit(ENTRY_DATA_PENDING, &entry->flags))
Ivo van Doornf019d512008-06-06 22:47:39 +0200266 usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
267}
268
269void rt2x00usb_kick_tx_queue(struct rt2x00_dev *rt2x00dev,
270 const enum data_queue_qid qid)
271{
272 struct data_queue *queue = rt2x00queue_get_queue(rt2x00dev, qid);
273 unsigned long irqflags;
274 unsigned int index;
275 unsigned int index_done;
276 unsigned int i;
277
278 /*
279 * Only protect the range we are going to loop over,
280 * if during our loop a extra entry is set to pending
281 * it should not be kicked during this run, since it
282 * is part of another TX operation.
283 */
284 spin_lock_irqsave(&queue->lock, irqflags);
285 index = queue->index[Q_INDEX];
286 index_done = queue->index[Q_INDEX_DONE];
287 spin_unlock_irqrestore(&queue->lock, irqflags);
288
289 /*
290 * Start from the TX done pointer, this guarentees that we will
291 * send out all frames in the correct order.
292 */
293 if (index_done < index) {
294 for (i = index_done; i < index; i++)
295 rt2x00usb_kick_tx_entry(&queue->entries[i]);
296 } else {
297 for (i = index_done; i < queue->limit; i++)
298 rt2x00usb_kick_tx_entry(&queue->entries[i]);
299
300 for (i = 0; i < index; i++)
301 rt2x00usb_kick_tx_entry(&queue->entries[i]);
302 }
303}
304EXPORT_SYMBOL_GPL(rt2x00usb_kick_tx_queue);
305
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100306void rt2x00usb_kill_tx_queue(struct rt2x00_dev *rt2x00dev,
307 const enum data_queue_qid qid)
308{
309 struct data_queue *queue = rt2x00queue_get_queue(rt2x00dev, qid);
310 struct queue_entry_priv_usb *entry_priv;
311 struct queue_entry_priv_usb_bcn *bcn_priv;
312 unsigned int i;
313 bool kill_guard;
314
315 /*
316 * When killing the beacon queue, we must also kill
317 * the beacon guard byte.
318 */
319 kill_guard =
320 (qid == QID_BEACON) &&
321 (test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags));
322
323 /*
324 * Cancel all entries.
325 */
326 for (i = 0; i < queue->limit; i++) {
327 entry_priv = queue->entries[i].priv_data;
328 usb_kill_urb(entry_priv->urb);
329
330 /*
331 * Kill guardian urb (if required by driver).
332 */
333 if (kill_guard) {
334 bcn_priv = queue->entries[i].priv_data;
335 usb_kill_urb(bcn_priv->guardian_urb);
336 }
337 }
338}
339EXPORT_SYMBOL_GPL(rt2x00usb_kill_tx_queue);
340
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700341/*
342 * RX data handlers.
343 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500344static void rt2x00usb_interrupt_rxdone(struct urb *urb)
345{
346 struct queue_entry *entry = (struct queue_entry *)urb->context;
347 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200348 struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
Gertjan van Wingerdea26cbc62008-06-06 22:54:28 +0200349 u8 rxd[32];
Ivo van Doorn181d6902008-02-05 16:42:23 -0500350
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200351 if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags) ||
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200352 !test_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags))
Ivo van Doorn181d6902008-02-05 16:42:23 -0500353 return;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700354
355 /*
Ivo van Doorn181d6902008-02-05 16:42:23 -0500356 * Check if the received data is simply too small
357 * to be actually valid, or if the urb is signaling
358 * a problem.
Ivo van Doorn08992f72008-01-24 01:56:25 -0800359 */
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200360 if (urb->actual_length < entry->queue->desc_size || urb->status) {
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200361 set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200362 usb_submit_urb(urb, GFP_ATOMIC);
363 return;
364 }
Ivo van Doorn181d6902008-02-05 16:42:23 -0500365
366 /*
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200367 * Fill in desc fields of the skb descriptor
Ivo van Doorn181d6902008-02-05 16:42:23 -0500368 */
Gertjan van Wingerdea26cbc62008-06-06 22:54:28 +0200369 skbdesc->desc = rxd;
370 skbdesc->desc_len = entry->queue->desc_size;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500371
Ivo van Doorn08992f72008-01-24 01:56:25 -0800372 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700373 * Send the frame to rt2x00lib for further processing.
374 */
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200375 rt2x00lib_rxdone(rt2x00dev, entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700376}
377
378/*
379 * Radio handlers
380 */
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700381void rt2x00usb_disable_radio(struct rt2x00_dev *rt2x00dev)
382{
Ivo van Doornbd394a72008-04-21 19:01:58 +0200383 rt2x00usb_vendor_request_sw(rt2x00dev, USB_RX_CONTROL, 0, 0,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700384 REGISTER_TIMEOUT);
385
386 /*
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100387 * The USB version of kill_tx_queue also works
388 * on the RX queue.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700389 */
Ivo van Doorna2c9b652009-01-28 00:32:33 +0100390 rt2x00dev->ops->lib->kill_tx_queue(rt2x00dev, QID_RX);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700391}
392EXPORT_SYMBOL_GPL(rt2x00usb_disable_radio);
393
394/*
395 * Device initialization handlers.
396 */
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100397void rt2x00usb_clear_entry(struct queue_entry *entry)
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100398{
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100399 struct usb_device *usb_dev =
400 to_usb_device_intf(entry->queue->rt2x00dev->dev);
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200401 struct queue_entry_priv_usb *entry_priv = entry->priv_data;
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100402 int pipe;
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100403
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100404 if (entry->queue->qid == QID_RX) {
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100405 pipe = usb_rcvbulkpipe(usb_dev, entry->queue->usb_endpoint);
406 usb_fill_bulk_urb(entry_priv->urb, usb_dev, pipe,
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100407 entry->skb->data, entry->skb->len,
408 rt2x00usb_interrupt_rxdone, entry);
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100409
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100410 set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
411 usb_submit_urb(entry_priv->urb, GFP_ATOMIC);
412 } else {
413 entry->flags = 0;
414 }
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100415}
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100416EXPORT_SYMBOL_GPL(rt2x00usb_clear_entry);
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100417
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100418static void rt2x00usb_assign_endpoint(struct data_queue *queue,
419 struct usb_endpoint_descriptor *ep_desc)
420{
421 struct usb_device *usb_dev = to_usb_device_intf(queue->rt2x00dev->dev);
422 int pipe;
423
424 queue->usb_endpoint = usb_endpoint_num(ep_desc);
425
426 if (queue->qid == QID_RX) {
427 pipe = usb_rcvbulkpipe(usb_dev, queue->usb_endpoint);
428 queue->usb_maxpacket = usb_maxpacket(usb_dev, pipe, 0);
429 } else {
430 pipe = usb_sndbulkpipe(usb_dev, queue->usb_endpoint);
431 queue->usb_maxpacket = usb_maxpacket(usb_dev, pipe, 1);
432 }
433
434 if (!queue->usb_maxpacket)
435 queue->usb_maxpacket = 1;
436}
437
438static int rt2x00usb_find_endpoints(struct rt2x00_dev *rt2x00dev)
439{
440 struct usb_interface *intf = to_usb_interface(rt2x00dev->dev);
441 struct usb_host_interface *intf_desc = intf->cur_altsetting;
442 struct usb_endpoint_descriptor *ep_desc;
443 struct data_queue *queue = rt2x00dev->tx;
444 struct usb_endpoint_descriptor *tx_ep_desc = NULL;
445 unsigned int i;
446
447 /*
448 * Walk through all available endpoints to search for "bulk in"
449 * and "bulk out" endpoints. When we find such endpoints collect
450 * the information we need from the descriptor and assign it
451 * to the queue.
452 */
453 for (i = 0; i < intf_desc->desc.bNumEndpoints; i++) {
454 ep_desc = &intf_desc->endpoint[i].desc;
455
456 if (usb_endpoint_is_bulk_in(ep_desc)) {
457 rt2x00usb_assign_endpoint(rt2x00dev->rx, ep_desc);
Ivo van Doornd15cfc32008-12-20 11:00:23 +0100458 } else if (usb_endpoint_is_bulk_out(ep_desc) &&
459 (queue != queue_end(rt2x00dev))) {
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100460 rt2x00usb_assign_endpoint(queue, ep_desc);
Ivo van Doornd15cfc32008-12-20 11:00:23 +0100461 queue = queue_next(queue);
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100462
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100463 tx_ep_desc = ep_desc;
464 }
465 }
466
467 /*
468 * At least 1 endpoint for RX and 1 endpoint for TX must be available.
469 */
470 if (!rt2x00dev->rx->usb_endpoint || !rt2x00dev->tx->usb_endpoint) {
471 ERROR(rt2x00dev, "Bulk-in/Bulk-out endpoints not found\n");
472 return -EPIPE;
473 }
474
475 /*
476 * It might be possible not all queues have a dedicated endpoint.
477 * Loop through all TX queues and copy the endpoint information
478 * which we have gathered from already assigned endpoints.
479 */
480 txall_queue_for_each(rt2x00dev, queue) {
481 if (!queue->usb_endpoint)
482 rt2x00usb_assign_endpoint(queue, tx_ep_desc);
483 }
484
485 return 0;
486}
487
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700488static int rt2x00usb_alloc_urb(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500489 struct data_queue *queue)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700490{
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200491 struct queue_entry_priv_usb *entry_priv;
492 struct queue_entry_priv_usb_bcn *bcn_priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700493 unsigned int i;
494
Ivo van Doorn181d6902008-02-05 16:42:23 -0500495 for (i = 0; i < queue->limit; i++) {
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200496 entry_priv = queue->entries[i].priv_data;
497 entry_priv->urb = usb_alloc_urb(0, GFP_KERNEL);
498 if (!entry_priv->urb)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700499 return -ENOMEM;
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200500 }
Ivo van Doorn181d6902008-02-05 16:42:23 -0500501
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200502 /*
503 * If this is not the beacon queue or
504 * no guardian byte was required for the beacon,
505 * then we are done.
506 */
507 if (rt2x00dev->bcn != queue ||
508 !test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags))
509 return 0;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500510
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200511 for (i = 0; i < queue->limit; i++) {
512 bcn_priv = queue->entries[i].priv_data;
513 bcn_priv->guardian_urb = usb_alloc_urb(0, GFP_KERNEL);
514 if (!bcn_priv->guardian_urb)
515 return -ENOMEM;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700516 }
517
518 return 0;
519}
520
521static void rt2x00usb_free_urb(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500522 struct data_queue *queue)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700523{
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200524 struct queue_entry_priv_usb *entry_priv;
525 struct queue_entry_priv_usb_bcn *bcn_priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700526 unsigned int i;
527
Ivo van Doorn181d6902008-02-05 16:42:23 -0500528 if (!queue->entries)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700529 return;
530
Ivo van Doorn181d6902008-02-05 16:42:23 -0500531 for (i = 0; i < queue->limit; i++) {
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200532 entry_priv = queue->entries[i].priv_data;
533 usb_kill_urb(entry_priv->urb);
534 usb_free_urb(entry_priv->urb);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700535 }
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200536
537 /*
538 * If this is not the beacon queue or
539 * no guardian byte was required for the beacon,
540 * then we are done.
541 */
542 if (rt2x00dev->bcn != queue ||
543 !test_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags))
544 return;
545
546 for (i = 0; i < queue->limit; i++) {
547 bcn_priv = queue->entries[i].priv_data;
548 usb_kill_urb(bcn_priv->guardian_urb);
549 usb_free_urb(bcn_priv->guardian_urb);
550 }
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700551}
552
553int rt2x00usb_initialize(struct rt2x00_dev *rt2x00dev)
554{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500555 struct data_queue *queue;
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200556 int status;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700557
558 /*
Ivo van Doornf1ca2162008-11-13 23:07:33 +0100559 * Find endpoints for each queue
560 */
561 status = rt2x00usb_find_endpoints(rt2x00dev);
562 if (status)
563 goto exit;
564
565 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700566 * Allocate DMA
567 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500568 queue_for_each(rt2x00dev, queue) {
569 status = rt2x00usb_alloc_urb(rt2x00dev, queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700570 if (status)
571 goto exit;
572 }
573
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700574 return 0;
575
576exit:
577 rt2x00usb_uninitialize(rt2x00dev);
578
579 return status;
580}
581EXPORT_SYMBOL_GPL(rt2x00usb_initialize);
582
583void rt2x00usb_uninitialize(struct rt2x00_dev *rt2x00dev)
584{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500585 struct data_queue *queue;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700586
Ivo van Doorn181d6902008-02-05 16:42:23 -0500587 queue_for_each(rt2x00dev, queue)
588 rt2x00usb_free_urb(rt2x00dev, queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700589}
590EXPORT_SYMBOL_GPL(rt2x00usb_uninitialize);
591
592/*
593 * USB driver handlers.
594 */
595static void rt2x00usb_free_reg(struct rt2x00_dev *rt2x00dev)
596{
597 kfree(rt2x00dev->rf);
598 rt2x00dev->rf = NULL;
599
600 kfree(rt2x00dev->eeprom);
601 rt2x00dev->eeprom = NULL;
602
Ivo van Doorn21795092008-02-10 22:49:13 +0100603 kfree(rt2x00dev->csr.cache);
604 rt2x00dev->csr.cache = NULL;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700605}
606
607static int rt2x00usb_alloc_reg(struct rt2x00_dev *rt2x00dev)
608{
Ivo van Doorn21795092008-02-10 22:49:13 +0100609 rt2x00dev->csr.cache = kzalloc(CSR_CACHE_SIZE, GFP_KERNEL);
610 if (!rt2x00dev->csr.cache)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700611 goto exit;
612
613 rt2x00dev->eeprom = kzalloc(rt2x00dev->ops->eeprom_size, GFP_KERNEL);
614 if (!rt2x00dev->eeprom)
615 goto exit;
616
617 rt2x00dev->rf = kzalloc(rt2x00dev->ops->rf_size, GFP_KERNEL);
618 if (!rt2x00dev->rf)
619 goto exit;
620
621 return 0;
622
623exit:
624 ERROR_PROBE("Failed to allocate registers.\n");
625
626 rt2x00usb_free_reg(rt2x00dev);
627
628 return -ENOMEM;
629}
630
631int rt2x00usb_probe(struct usb_interface *usb_intf,
632 const struct usb_device_id *id)
633{
634 struct usb_device *usb_dev = interface_to_usbdev(usb_intf);
635 struct rt2x00_ops *ops = (struct rt2x00_ops *)id->driver_info;
636 struct ieee80211_hw *hw;
637 struct rt2x00_dev *rt2x00dev;
638 int retval;
639
640 usb_dev = usb_get_dev(usb_dev);
641
642 hw = ieee80211_alloc_hw(sizeof(struct rt2x00_dev), ops->hw);
643 if (!hw) {
644 ERROR_PROBE("Failed to allocate hardware.\n");
645 retval = -ENOMEM;
646 goto exit_put_device;
647 }
648
649 usb_set_intfdata(usb_intf, hw);
650
651 rt2x00dev = hw->priv;
Gertjan van Wingerde14a3bf82008-06-16 19:55:43 +0200652 rt2x00dev->dev = &usb_intf->dev;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700653 rt2x00dev->ops = ops;
654 rt2x00dev->hw = hw;
655
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700656 retval = rt2x00usb_alloc_reg(rt2x00dev);
657 if (retval)
658 goto exit_free_device;
659
660 retval = rt2x00lib_probe_dev(rt2x00dev);
661 if (retval)
662 goto exit_free_reg;
663
664 return 0;
665
666exit_free_reg:
667 rt2x00usb_free_reg(rt2x00dev);
668
669exit_free_device:
670 ieee80211_free_hw(hw);
671
672exit_put_device:
673 usb_put_dev(usb_dev);
674
675 usb_set_intfdata(usb_intf, NULL);
676
677 return retval;
678}
679EXPORT_SYMBOL_GPL(rt2x00usb_probe);
680
681void rt2x00usb_disconnect(struct usb_interface *usb_intf)
682{
683 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
684 struct rt2x00_dev *rt2x00dev = hw->priv;
685
686 /*
687 * Free all allocated data.
688 */
689 rt2x00lib_remove_dev(rt2x00dev);
690 rt2x00usb_free_reg(rt2x00dev);
691 ieee80211_free_hw(hw);
692
693 /*
694 * Free the USB device data.
695 */
696 usb_set_intfdata(usb_intf, NULL);
697 usb_put_dev(interface_to_usbdev(usb_intf));
698}
699EXPORT_SYMBOL_GPL(rt2x00usb_disconnect);
700
701#ifdef CONFIG_PM
702int rt2x00usb_suspend(struct usb_interface *usb_intf, pm_message_t state)
703{
704 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
705 struct rt2x00_dev *rt2x00dev = hw->priv;
706 int retval;
707
708 retval = rt2x00lib_suspend(rt2x00dev, state);
709 if (retval)
710 return retval;
711
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700712 /*
713 * Decrease usbdev refcount.
714 */
715 usb_put_dev(interface_to_usbdev(usb_intf));
716
717 return 0;
718}
719EXPORT_SYMBOL_GPL(rt2x00usb_suspend);
720
721int rt2x00usb_resume(struct usb_interface *usb_intf)
722{
723 struct ieee80211_hw *hw = usb_get_intfdata(usb_intf);
724 struct rt2x00_dev *rt2x00dev = hw->priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700725
726 usb_get_dev(interface_to_usbdev(usb_intf));
727
Ivo van Doorn499a2142009-03-28 20:51:58 +0100728 return rt2x00lib_resume(rt2x00dev);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700729}
730EXPORT_SYMBOL_GPL(rt2x00usb_resume);
731#endif /* CONFIG_PM */
732
733/*
Ivo van Doorn181d6902008-02-05 16:42:23 -0500734 * rt2x00usb module information.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700735 */
736MODULE_AUTHOR(DRV_PROJECT);
737MODULE_VERSION(DRV_VERSION);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500738MODULE_DESCRIPTION("rt2x00 usb library");
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700739MODULE_LICENSE("GPL");