blob: cee5febb8a4d8aa8d867fa3d4cc55d7296a8e95e [file] [log] [blame]
Sujithfb9987d2010-03-17 14:25:25 +05301/*
2 * Copyright (c) 2010 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include "htc.h"
18
19#define ATH9K_FW_USB_DEV(devid, fw) \
20 { USB_DEVICE(0x0cf3, devid), .driver_info = (unsigned long) fw }
21
22static struct usb_device_id ath9k_hif_usb_ids[] = {
23 ATH9K_FW_USB_DEV(0x9271, "ar9271.fw"),
Sujithe92119c2010-04-01 10:28:24 +053024 ATH9K_FW_USB_DEV(0x1006, "ar9271.fw"),
Sujithfb9987d2010-03-17 14:25:25 +053025 { },
26};
27
28MODULE_DEVICE_TABLE(usb, ath9k_hif_usb_ids);
29
30static int __hif_usb_tx(struct hif_device_usb *hif_dev);
31
32static void hif_usb_regout_cb(struct urb *urb)
33{
34 struct cmd_buf *cmd = (struct cmd_buf *)urb->context;
Sujithfb9987d2010-03-17 14:25:25 +053035
36 switch (urb->status) {
37 case 0:
38 break;
39 case -ENOENT:
40 case -ECONNRESET:
Sujithfb9987d2010-03-17 14:25:25 +053041 case -ENODEV:
42 case -ESHUTDOWN:
Sujith6f0f2662010-04-06 15:28:17 +053043 goto free;
Sujithfb9987d2010-03-17 14:25:25 +053044 default:
45 break;
46 }
47
48 if (cmd) {
49 ath9k_htc_txcompletion_cb(cmd->hif_dev->htc_handle,
50 cmd->skb, 1);
51 kfree(cmd);
Sujithfb9987d2010-03-17 14:25:25 +053052 }
Sujith6f0f2662010-04-06 15:28:17 +053053
54 return;
55free:
Ming Lei0fa35a52010-04-13 00:29:15 +080056 kfree_skb(cmd->skb);
Sujith6f0f2662010-04-06 15:28:17 +053057 kfree(cmd);
Sujithfb9987d2010-03-17 14:25:25 +053058}
59
60static int hif_usb_send_regout(struct hif_device_usb *hif_dev,
61 struct sk_buff *skb)
62{
63 struct urb *urb;
64 struct cmd_buf *cmd;
65 int ret = 0;
66
67 urb = usb_alloc_urb(0, GFP_KERNEL);
68 if (urb == NULL)
69 return -ENOMEM;
70
71 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
72 if (cmd == NULL) {
73 usb_free_urb(urb);
74 return -ENOMEM;
75 }
76
77 cmd->skb = skb;
78 cmd->hif_dev = hif_dev;
79
80 usb_fill_int_urb(urb, hif_dev->udev,
81 usb_sndintpipe(hif_dev->udev, USB_REG_OUT_PIPE),
82 skb->data, skb->len,
83 hif_usb_regout_cb, cmd, 1);
84
Sujith6f0f2662010-04-06 15:28:17 +053085 usb_anchor_urb(urb, &hif_dev->regout_submitted);
Sujithfb9987d2010-03-17 14:25:25 +053086 ret = usb_submit_urb(urb, GFP_KERNEL);
87 if (ret) {
Sujith6f0f2662010-04-06 15:28:17 +053088 usb_unanchor_urb(urb);
Sujithfb9987d2010-03-17 14:25:25 +053089 kfree(cmd);
90 }
Sujith6f0f2662010-04-06 15:28:17 +053091 usb_free_urb(urb);
Sujithfb9987d2010-03-17 14:25:25 +053092
93 return ret;
94}
95
Sujitheac8e382010-04-16 11:54:00 +053096static inline void ath9k_skb_queue_purge(struct hif_device_usb *hif_dev,
97 struct sk_buff_head *list)
Ming Leif8e1d082010-04-13 00:29:27 +080098{
99 struct sk_buff *skb;
Sujitheac8e382010-04-16 11:54:00 +0530100
101 while ((skb = __skb_dequeue(list)) != NULL) {
Ming Leif8e1d082010-04-13 00:29:27 +0800102 dev_kfree_skb_any(skb);
Sujitheac8e382010-04-16 11:54:00 +0530103 TX_STAT_INC(skb_dropped);
104 }
Ming Leif8e1d082010-04-13 00:29:27 +0800105}
106
Sujithc11d8f82010-04-23 10:28:09 +0530107static void hif_usb_tx_cb(struct urb *urb)
108{
109 struct tx_buf *tx_buf = (struct tx_buf *) urb->context;
110 struct hif_device_usb *hif_dev = tx_buf->hif_dev;
111 struct sk_buff *skb;
112
113 if (!hif_dev || !tx_buf)
114 return;
115
116 switch (urb->status) {
117 case 0:
118 break;
119 case -ENOENT:
120 case -ECONNRESET:
121 case -ENODEV:
122 case -ESHUTDOWN:
123 /*
124 * The URB has been killed, free the SKBs
125 * and return.
126 */
127 ath9k_skb_queue_purge(hif_dev, &tx_buf->skb_queue);
128 return;
129 default:
130 break;
131 }
132
133 /* Check if TX has been stopped */
134 spin_lock(&hif_dev->tx.tx_lock);
135 if (hif_dev->tx.flags & HIF_USB_TX_STOP) {
136 spin_unlock(&hif_dev->tx.tx_lock);
137 ath9k_skb_queue_purge(hif_dev, &tx_buf->skb_queue);
138 goto add_free;
139 }
140 spin_unlock(&hif_dev->tx.tx_lock);
141
142 /* Complete the queued SKBs. */
143 while ((skb = __skb_dequeue(&tx_buf->skb_queue)) != NULL) {
144 ath9k_htc_txcompletion_cb(hif_dev->htc_handle,
145 skb, 1);
146 TX_STAT_INC(skb_completed);
147 }
148
149add_free:
150 /* Re-initialize the SKB queue */
151 tx_buf->len = tx_buf->offset = 0;
152 __skb_queue_head_init(&tx_buf->skb_queue);
153
154 /* Add this TX buffer to the free list */
155 spin_lock(&hif_dev->tx.tx_lock);
156 list_move_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
157 hif_dev->tx.tx_buf_cnt++;
158 if (!(hif_dev->tx.flags & HIF_USB_TX_STOP))
159 __hif_usb_tx(hif_dev); /* Check for pending SKBs */
160 TX_STAT_INC(buf_completed);
161 spin_unlock(&hif_dev->tx.tx_lock);
162}
163
Sujithfb9987d2010-03-17 14:25:25 +0530164/* TX lock has to be taken */
165static int __hif_usb_tx(struct hif_device_usb *hif_dev)
166{
167 struct tx_buf *tx_buf = NULL;
168 struct sk_buff *nskb = NULL;
169 int ret = 0, i;
170 u16 *hdr, tx_skb_cnt = 0;
171 u8 *buf;
172
173 if (hif_dev->tx.tx_skb_cnt == 0)
174 return 0;
175
176 /* Check if a free TX buffer is available */
177 if (list_empty(&hif_dev->tx.tx_buf))
178 return 0;
179
180 tx_buf = list_first_entry(&hif_dev->tx.tx_buf, struct tx_buf, list);
Sujithc11d8f82010-04-23 10:28:09 +0530181 list_move_tail(&tx_buf->list, &hif_dev->tx.tx_pending);
Sujithfb9987d2010-03-17 14:25:25 +0530182 hif_dev->tx.tx_buf_cnt--;
183
184 tx_skb_cnt = min_t(u16, hif_dev->tx.tx_skb_cnt, MAX_TX_AGGR_NUM);
185
186 for (i = 0; i < tx_skb_cnt; i++) {
187 nskb = __skb_dequeue(&hif_dev->tx.tx_skb_queue);
188
189 /* Should never be NULL */
190 BUG_ON(!nskb);
191
192 hif_dev->tx.tx_skb_cnt--;
193
194 buf = tx_buf->buf;
195 buf += tx_buf->offset;
196 hdr = (u16 *)buf;
197 *hdr++ = nskb->len;
198 *hdr++ = ATH_USB_TX_STREAM_MODE_TAG;
199 buf += 4;
200 memcpy(buf, nskb->data, nskb->len);
201 tx_buf->len = nskb->len + 4;
202
203 if (i < (tx_skb_cnt - 1))
204 tx_buf->offset += (((tx_buf->len - 1) / 4) + 1) * 4;
205
206 if (i == (tx_skb_cnt - 1))
207 tx_buf->len += tx_buf->offset;
208
209 __skb_queue_tail(&tx_buf->skb_queue, nskb);
210 TX_STAT_INC(skb_queued);
211 }
212
213 usb_fill_bulk_urb(tx_buf->urb, hif_dev->udev,
214 usb_sndbulkpipe(hif_dev->udev, USB_WLAN_TX_PIPE),
215 tx_buf->buf, tx_buf->len,
216 hif_usb_tx_cb, tx_buf);
217
218 ret = usb_submit_urb(tx_buf->urb, GFP_ATOMIC);
219 if (ret) {
220 tx_buf->len = tx_buf->offset = 0;
Sujitheac8e382010-04-16 11:54:00 +0530221 ath9k_skb_queue_purge(hif_dev, &tx_buf->skb_queue);
Sujithfb9987d2010-03-17 14:25:25 +0530222 __skb_queue_head_init(&tx_buf->skb_queue);
223 list_move_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
224 hif_dev->tx.tx_buf_cnt++;
225 }
226
227 if (!ret)
228 TX_STAT_INC(buf_queued);
229
230 return ret;
231}
232
233static int hif_usb_send_tx(struct hif_device_usb *hif_dev, struct sk_buff *skb,
234 struct ath9k_htc_tx_ctl *tx_ctl)
235{
236 unsigned long flags;
237
238 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
239
240 if (hif_dev->tx.flags & HIF_USB_TX_STOP) {
241 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
242 return -ENODEV;
243 }
244
245 /* Check if the max queue count has been reached */
246 if (hif_dev->tx.tx_skb_cnt > MAX_TX_BUF_NUM) {
247 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
248 return -ENOMEM;
249 }
250
251 __skb_queue_tail(&hif_dev->tx.tx_skb_queue, skb);
252 hif_dev->tx.tx_skb_cnt++;
253
254 /* Send normal frames immediately */
255 if (!tx_ctl || (tx_ctl && (tx_ctl->type == ATH9K_HTC_NORMAL)))
256 __hif_usb_tx(hif_dev);
257
258 /* Check if AMPDUs have to be sent immediately */
259 if (tx_ctl && (tx_ctl->type == ATH9K_HTC_AMPDU) &&
260 (hif_dev->tx.tx_buf_cnt == MAX_TX_URB_NUM) &&
261 (hif_dev->tx.tx_skb_cnt < 2)) {
262 __hif_usb_tx(hif_dev);
263 }
264
265 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
266
267 return 0;
268}
269
270static void hif_usb_start(void *hif_handle, u8 pipe_id)
271{
272 struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
273 unsigned long flags;
274
275 hif_dev->flags |= HIF_USB_START;
276
277 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
278 hif_dev->tx.flags &= ~HIF_USB_TX_STOP;
279 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
280}
281
282static void hif_usb_stop(void *hif_handle, u8 pipe_id)
283{
284 struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
285 unsigned long flags;
286
287 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
Sujitheac8e382010-04-16 11:54:00 +0530288 ath9k_skb_queue_purge(hif_dev, &hif_dev->tx.tx_skb_queue);
Sujithfb9987d2010-03-17 14:25:25 +0530289 hif_dev->tx.tx_skb_cnt = 0;
290 hif_dev->tx.flags |= HIF_USB_TX_STOP;
291 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
292}
293
294static int hif_usb_send(void *hif_handle, u8 pipe_id, struct sk_buff *skb,
295 struct ath9k_htc_tx_ctl *tx_ctl)
296{
297 struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
298 int ret = 0;
299
300 switch (pipe_id) {
301 case USB_WLAN_TX_PIPE:
302 ret = hif_usb_send_tx(hif_dev, skb, tx_ctl);
303 break;
304 case USB_REG_OUT_PIPE:
305 ret = hif_usb_send_regout(hif_dev, skb);
306 break;
307 default:
Sujith6335ed02010-03-29 16:07:15 +0530308 dev_err(&hif_dev->udev->dev,
309 "ath9k_htc: Invalid TX pipe: %d\n", pipe_id);
Sujithfb9987d2010-03-17 14:25:25 +0530310 ret = -EINVAL;
311 break;
312 }
313
314 return ret;
315}
316
317static struct ath9k_htc_hif hif_usb = {
318 .transport = ATH9K_HIF_USB,
319 .name = "ath9k_hif_usb",
320
321 .control_ul_pipe = USB_REG_OUT_PIPE,
322 .control_dl_pipe = USB_REG_IN_PIPE,
323
324 .start = hif_usb_start,
325 .stop = hif_usb_stop,
326 .send = hif_usb_send,
327};
328
329static void ath9k_hif_usb_rx_stream(struct hif_device_usb *hif_dev,
330 struct sk_buff *skb)
331{
Sujithc5032692010-04-06 15:28:15 +0530332 struct sk_buff *nskb, *skb_pool[MAX_PKT_NUM_IN_TRANSFER];
Sujithfb9987d2010-03-17 14:25:25 +0530333 int index = 0, i = 0, chk_idx, len = skb->len;
334 int rx_remain_len = 0, rx_pkt_len = 0;
335 u16 pkt_len, pkt_tag, pool_index = 0;
336 u8 *ptr;
337
Sujith46baa1a2010-04-06 15:28:11 +0530338 spin_lock(&hif_dev->rx_lock);
339
Sujithfb9987d2010-03-17 14:25:25 +0530340 rx_remain_len = hif_dev->rx_remain_len;
341 rx_pkt_len = hif_dev->rx_transfer_len;
342
343 if (rx_remain_len != 0) {
344 struct sk_buff *remain_skb = hif_dev->remain_skb;
345
346 if (remain_skb) {
347 ptr = (u8 *) remain_skb->data;
348
349 index = rx_remain_len;
350 rx_remain_len -= hif_dev->rx_pad_len;
351 ptr += rx_pkt_len;
352
353 memcpy(ptr, skb->data, rx_remain_len);
354
355 rx_pkt_len += rx_remain_len;
356 hif_dev->rx_remain_len = 0;
357 skb_put(remain_skb, rx_pkt_len);
358
359 skb_pool[pool_index++] = remain_skb;
360
361 } else {
362 index = rx_remain_len;
363 }
364 }
365
Sujith46baa1a2010-04-06 15:28:11 +0530366 spin_unlock(&hif_dev->rx_lock);
367
Sujithfb9987d2010-03-17 14:25:25 +0530368 while (index < len) {
369 ptr = (u8 *) skb->data;
370
371 pkt_len = ptr[index] + (ptr[index+1] << 8);
372 pkt_tag = ptr[index+2] + (ptr[index+3] << 8);
373
374 if (pkt_tag == ATH_USB_RX_STREAM_MODE_TAG) {
375 u16 pad_len;
376
377 pad_len = 4 - (pkt_len & 0x3);
378 if (pad_len == 4)
379 pad_len = 0;
380
381 chk_idx = index;
382 index = index + 4 + pkt_len + pad_len;
383
384 if (index > MAX_RX_BUF_SIZE) {
Sujith46baa1a2010-04-06 15:28:11 +0530385 spin_lock(&hif_dev->rx_lock);
Sujithfb9987d2010-03-17 14:25:25 +0530386 hif_dev->rx_remain_len = index - MAX_RX_BUF_SIZE;
387 hif_dev->rx_transfer_len =
388 MAX_RX_BUF_SIZE - chk_idx - 4;
389 hif_dev->rx_pad_len = pad_len;
390
391 nskb = __dev_alloc_skb(pkt_len + 32,
392 GFP_ATOMIC);
393 if (!nskb) {
394 dev_err(&hif_dev->udev->dev,
395 "ath9k_htc: RX memory allocation"
396 " error\n");
Sujith46baa1a2010-04-06 15:28:11 +0530397 spin_unlock(&hif_dev->rx_lock);
Sujithfb9987d2010-03-17 14:25:25 +0530398 goto err;
399 }
400 skb_reserve(nskb, 32);
401 RX_STAT_INC(skb_allocated);
402
403 memcpy(nskb->data, &(skb->data[chk_idx+4]),
404 hif_dev->rx_transfer_len);
405
406 /* Record the buffer pointer */
407 hif_dev->remain_skb = nskb;
Sujith46baa1a2010-04-06 15:28:11 +0530408 spin_unlock(&hif_dev->rx_lock);
Sujithfb9987d2010-03-17 14:25:25 +0530409 } else {
410 nskb = __dev_alloc_skb(pkt_len + 32, GFP_ATOMIC);
411 if (!nskb) {
412 dev_err(&hif_dev->udev->dev,
413 "ath9k_htc: RX memory allocation"
414 " error\n");
415 goto err;
416 }
417 skb_reserve(nskb, 32);
418 RX_STAT_INC(skb_allocated);
419
420 memcpy(nskb->data, &(skb->data[chk_idx+4]), pkt_len);
421 skb_put(nskb, pkt_len);
422 skb_pool[pool_index++] = nskb;
423 }
424 } else {
425 RX_STAT_INC(skb_dropped);
Sujithfb9987d2010-03-17 14:25:25 +0530426 return;
427 }
428 }
429
430err:
Sujithfb9987d2010-03-17 14:25:25 +0530431 for (i = 0; i < pool_index; i++) {
432 ath9k_htc_rx_msg(hif_dev->htc_handle, skb_pool[i],
433 skb_pool[i]->len, USB_WLAN_RX_PIPE);
434 RX_STAT_INC(skb_completed);
435 }
436}
437
438static void ath9k_hif_usb_rx_cb(struct urb *urb)
439{
440 struct sk_buff *skb = (struct sk_buff *) urb->context;
Sujithfb9987d2010-03-17 14:25:25 +0530441 struct hif_device_usb *hif_dev = (struct hif_device_usb *)
442 usb_get_intfdata(usb_ifnum_to_if(urb->dev, 0));
443 int ret;
444
Sujith6335ed02010-03-29 16:07:15 +0530445 if (!skb)
446 return;
447
Sujithfb9987d2010-03-17 14:25:25 +0530448 if (!hif_dev)
449 goto free;
450
451 switch (urb->status) {
452 case 0:
453 break;
454 case -ENOENT:
455 case -ECONNRESET:
456 case -ENODEV:
457 case -ESHUTDOWN:
458 goto free;
459 default:
460 goto resubmit;
461 }
462
463 if (likely(urb->actual_length != 0)) {
464 skb_put(skb, urb->actual_length);
Sujithfb9987d2010-03-17 14:25:25 +0530465 ath9k_hif_usb_rx_stream(hif_dev, skb);
Sujithfb9987d2010-03-17 14:25:25 +0530466 }
467
468resubmit:
469 skb_reset_tail_pointer(skb);
470 skb_trim(skb, 0);
471
Sujith6335ed02010-03-29 16:07:15 +0530472 usb_anchor_urb(urb, &hif_dev->rx_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530473 ret = usb_submit_urb(urb, GFP_ATOMIC);
Sujith6335ed02010-03-29 16:07:15 +0530474 if (ret) {
475 usb_unanchor_urb(urb);
Sujithfb9987d2010-03-17 14:25:25 +0530476 goto free;
Sujith6335ed02010-03-29 16:07:15 +0530477 }
Sujithfb9987d2010-03-17 14:25:25 +0530478
479 return;
480free:
Ming Leif28a7b32010-04-13 00:28:53 +0800481 kfree_skb(skb);
Sujithfb9987d2010-03-17 14:25:25 +0530482}
483
484static void ath9k_hif_usb_reg_in_cb(struct urb *urb)
485{
486 struct sk_buff *skb = (struct sk_buff *) urb->context;
487 struct sk_buff *nskb;
488 struct hif_device_usb *hif_dev = (struct hif_device_usb *)
489 usb_get_intfdata(usb_ifnum_to_if(urb->dev, 0));
490 int ret;
491
Sujith6335ed02010-03-29 16:07:15 +0530492 if (!skb)
493 return;
494
Sujithfb9987d2010-03-17 14:25:25 +0530495 if (!hif_dev)
496 goto free;
497
498 switch (urb->status) {
499 case 0:
500 break;
501 case -ENOENT:
502 case -ECONNRESET:
503 case -ENODEV:
504 case -ESHUTDOWN:
505 goto free;
506 default:
507 goto resubmit;
508 }
509
510 if (likely(urb->actual_length != 0)) {
511 skb_put(skb, urb->actual_length);
512
Ming Leie6c6d332010-04-13 00:29:05 +0800513 nskb = alloc_skb(MAX_REG_IN_BUF_SIZE, GFP_ATOMIC);
Sujithfb9987d2010-03-17 14:25:25 +0530514 if (!nskb)
515 goto resubmit;
516
517 usb_fill_int_urb(urb, hif_dev->udev,
518 usb_rcvintpipe(hif_dev->udev, USB_REG_IN_PIPE),
519 nskb->data, MAX_REG_IN_BUF_SIZE,
520 ath9k_hif_usb_reg_in_cb, nskb, 1);
521
522 ret = usb_submit_urb(urb, GFP_ATOMIC);
523 if (ret) {
Ming Leie6c6d332010-04-13 00:29:05 +0800524 kfree_skb(nskb);
Sujithfb9987d2010-03-17 14:25:25 +0530525 goto free;
526 }
527
528 ath9k_htc_rx_msg(hif_dev->htc_handle, skb,
529 skb->len, USB_REG_IN_PIPE);
530
531 return;
532 }
533
534resubmit:
535 skb_reset_tail_pointer(skb);
536 skb_trim(skb, 0);
537
538 ret = usb_submit_urb(urb, GFP_ATOMIC);
539 if (ret)
540 goto free;
541
542 return;
543free:
Ming Leie6c6d332010-04-13 00:29:05 +0800544 kfree_skb(skb);
Sujith6335ed02010-03-29 16:07:15 +0530545 urb->context = NULL;
Sujithfb9987d2010-03-17 14:25:25 +0530546}
547
548static void ath9k_hif_usb_dealloc_tx_urbs(struct hif_device_usb *hif_dev)
549{
Sujithfb9987d2010-03-17 14:25:25 +0530550 struct tx_buf *tx_buf = NULL, *tx_buf_tmp = NULL;
551
Sujithc11d8f82010-04-23 10:28:09 +0530552 list_for_each_entry_safe(tx_buf, tx_buf_tmp,
553 &hif_dev->tx.tx_buf, list) {
554 usb_kill_urb(tx_buf->urb);
Sujithfb9987d2010-03-17 14:25:25 +0530555 list_del(&tx_buf->list);
556 usb_free_urb(tx_buf->urb);
557 kfree(tx_buf->buf);
558 kfree(tx_buf);
559 }
560
Sujithfb9987d2010-03-17 14:25:25 +0530561 list_for_each_entry_safe(tx_buf, tx_buf_tmp,
562 &hif_dev->tx.tx_pending, list) {
563 usb_kill_urb(tx_buf->urb);
564 list_del(&tx_buf->list);
565 usb_free_urb(tx_buf->urb);
566 kfree(tx_buf->buf);
567 kfree(tx_buf);
568 }
Sujithfb9987d2010-03-17 14:25:25 +0530569}
570
571static int ath9k_hif_usb_alloc_tx_urbs(struct hif_device_usb *hif_dev)
572{
573 struct tx_buf *tx_buf;
574 int i;
575
576 INIT_LIST_HEAD(&hif_dev->tx.tx_buf);
577 INIT_LIST_HEAD(&hif_dev->tx.tx_pending);
578 spin_lock_init(&hif_dev->tx.tx_lock);
579 __skb_queue_head_init(&hif_dev->tx.tx_skb_queue);
580
581 for (i = 0; i < MAX_TX_URB_NUM; i++) {
582 tx_buf = kzalloc(sizeof(struct tx_buf), GFP_KERNEL);
583 if (!tx_buf)
584 goto err;
585
586 tx_buf->buf = kzalloc(MAX_TX_BUF_SIZE, GFP_KERNEL);
587 if (!tx_buf->buf)
588 goto err;
589
590 tx_buf->urb = usb_alloc_urb(0, GFP_KERNEL);
591 if (!tx_buf->urb)
592 goto err;
593
594 tx_buf->hif_dev = hif_dev;
595 __skb_queue_head_init(&tx_buf->skb_queue);
596
597 list_add_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
598 }
599
600 hif_dev->tx.tx_buf_cnt = MAX_TX_URB_NUM;
601
602 return 0;
603err:
604 ath9k_hif_usb_dealloc_tx_urbs(hif_dev);
605 return -ENOMEM;
606}
607
Sujithfb9987d2010-03-17 14:25:25 +0530608static void ath9k_hif_usb_dealloc_rx_urbs(struct hif_device_usb *hif_dev)
609{
Sujith6335ed02010-03-29 16:07:15 +0530610 usb_kill_anchored_urbs(&hif_dev->rx_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530611}
612
613static int ath9k_hif_usb_alloc_rx_urbs(struct hif_device_usb *hif_dev)
614{
Sujith6335ed02010-03-29 16:07:15 +0530615 struct urb *urb = NULL;
616 struct sk_buff *skb = NULL;
Sujithfb9987d2010-03-17 14:25:25 +0530617 int i, ret;
618
Sujith6335ed02010-03-29 16:07:15 +0530619 init_usb_anchor(&hif_dev->rx_submitted);
Sujith46baa1a2010-04-06 15:28:11 +0530620 spin_lock_init(&hif_dev->rx_lock);
Sujith6335ed02010-03-29 16:07:15 +0530621
Sujithfb9987d2010-03-17 14:25:25 +0530622 for (i = 0; i < MAX_RX_URB_NUM; i++) {
623
624 /* Allocate URB */
Sujith6335ed02010-03-29 16:07:15 +0530625 urb = usb_alloc_urb(0, GFP_KERNEL);
626 if (urb == NULL) {
Sujithfb9987d2010-03-17 14:25:25 +0530627 ret = -ENOMEM;
Sujith6335ed02010-03-29 16:07:15 +0530628 goto err_urb;
Sujithfb9987d2010-03-17 14:25:25 +0530629 }
630
631 /* Allocate buffer */
Ming Leif28a7b32010-04-13 00:28:53 +0800632 skb = alloc_skb(MAX_RX_BUF_SIZE, GFP_KERNEL);
Sujith6335ed02010-03-29 16:07:15 +0530633 if (!skb) {
634 ret = -ENOMEM;
635 goto err_skb;
636 }
637
638 usb_fill_bulk_urb(urb, hif_dev->udev,
639 usb_rcvbulkpipe(hif_dev->udev,
640 USB_WLAN_RX_PIPE),
641 skb->data, MAX_RX_BUF_SIZE,
642 ath9k_hif_usb_rx_cb, skb);
643
644 /* Anchor URB */
645 usb_anchor_urb(urb, &hif_dev->rx_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530646
647 /* Submit URB */
Sujith6335ed02010-03-29 16:07:15 +0530648 ret = usb_submit_urb(urb, GFP_KERNEL);
649 if (ret) {
650 usb_unanchor_urb(urb);
651 goto err_submit;
652 }
Sujith66b10e32010-04-06 15:28:13 +0530653
654 /*
655 * Drop reference count.
656 * This ensures that the URB is freed when killing them.
657 */
658 usb_free_urb(urb);
Sujithfb9987d2010-03-17 14:25:25 +0530659 }
660
661 return 0;
662
Sujith6335ed02010-03-29 16:07:15 +0530663err_submit:
Ming Leif28a7b32010-04-13 00:28:53 +0800664 kfree_skb(skb);
Sujith6335ed02010-03-29 16:07:15 +0530665err_skb:
666 usb_free_urb(urb);
667err_urb:
Sujithfb9987d2010-03-17 14:25:25 +0530668 ath9k_hif_usb_dealloc_rx_urbs(hif_dev);
669 return ret;
670}
671
672static void ath9k_hif_usb_dealloc_reg_in_urb(struct hif_device_usb *hif_dev)
673{
674 if (hif_dev->reg_in_urb) {
675 usb_kill_urb(hif_dev->reg_in_urb);
Sujith6335ed02010-03-29 16:07:15 +0530676 if (hif_dev->reg_in_urb->context)
Ming Leie6c6d332010-04-13 00:29:05 +0800677 kfree_skb((void *)hif_dev->reg_in_urb->context);
Sujithfb9987d2010-03-17 14:25:25 +0530678 usb_free_urb(hif_dev->reg_in_urb);
679 hif_dev->reg_in_urb = NULL;
680 }
681}
682
683static int ath9k_hif_usb_alloc_reg_in_urb(struct hif_device_usb *hif_dev)
684{
685 struct sk_buff *skb;
686
687 hif_dev->reg_in_urb = usb_alloc_urb(0, GFP_KERNEL);
688 if (hif_dev->reg_in_urb == NULL)
689 return -ENOMEM;
690
Ming Leie6c6d332010-04-13 00:29:05 +0800691 skb = alloc_skb(MAX_REG_IN_BUF_SIZE, GFP_KERNEL);
Sujithfb9987d2010-03-17 14:25:25 +0530692 if (!skb)
693 goto err;
694
695 usb_fill_int_urb(hif_dev->reg_in_urb, hif_dev->udev,
696 usb_rcvintpipe(hif_dev->udev, USB_REG_IN_PIPE),
697 skb->data, MAX_REG_IN_BUF_SIZE,
698 ath9k_hif_usb_reg_in_cb, skb, 1);
699
700 if (usb_submit_urb(hif_dev->reg_in_urb, GFP_KERNEL) != 0)
Sujith6335ed02010-03-29 16:07:15 +0530701 goto err;
Sujithfb9987d2010-03-17 14:25:25 +0530702
703 return 0;
704
Sujithfb9987d2010-03-17 14:25:25 +0530705err:
706 ath9k_hif_usb_dealloc_reg_in_urb(hif_dev);
707 return -ENOMEM;
708}
709
710static int ath9k_hif_usb_alloc_urbs(struct hif_device_usb *hif_dev)
711{
Sujith6f0f2662010-04-06 15:28:17 +0530712 /* Register Write */
713 init_usb_anchor(&hif_dev->regout_submitted);
714
Sujithfb9987d2010-03-17 14:25:25 +0530715 /* TX */
716 if (ath9k_hif_usb_alloc_tx_urbs(hif_dev) < 0)
717 goto err;
718
719 /* RX */
720 if (ath9k_hif_usb_alloc_rx_urbs(hif_dev) < 0)
721 goto err;
722
Sujith6f0f2662010-04-06 15:28:17 +0530723 /* Register Read */
Sujithfb9987d2010-03-17 14:25:25 +0530724 if (ath9k_hif_usb_alloc_reg_in_urb(hif_dev) < 0)
725 goto err;
726
727 return 0;
728err:
729 return -ENOMEM;
730}
731
732static int ath9k_hif_usb_download_fw(struct hif_device_usb *hif_dev)
733{
734 int transfer, err;
735 const void *data = hif_dev->firmware->data;
736 size_t len = hif_dev->firmware->size;
737 u32 addr = AR9271_FIRMWARE;
738 u8 *buf = kzalloc(4096, GFP_KERNEL);
739
740 if (!buf)
741 return -ENOMEM;
742
743 while (len) {
744 transfer = min_t(int, len, 4096);
745 memcpy(buf, data, transfer);
746
747 err = usb_control_msg(hif_dev->udev,
748 usb_sndctrlpipe(hif_dev->udev, 0),
749 FIRMWARE_DOWNLOAD, 0x40 | USB_DIR_OUT,
750 addr >> 8, 0, buf, transfer, HZ);
751 if (err < 0) {
752 kfree(buf);
753 return err;
754 }
755
756 len -= transfer;
757 data += transfer;
758 addr += transfer;
759 }
760 kfree(buf);
761
762 /*
763 * Issue FW download complete command to firmware.
764 */
765 err = usb_control_msg(hif_dev->udev, usb_sndctrlpipe(hif_dev->udev, 0),
766 FIRMWARE_DOWNLOAD_COMP,
767 0x40 | USB_DIR_OUT,
768 AR9271_FIRMWARE_TEXT >> 8, 0, NULL, 0, HZ);
769 if (err)
770 return -EIO;
771
772 dev_info(&hif_dev->udev->dev, "ath9k_htc: Transferred FW: %s, size: %ld\n",
773 "ar9271.fw", (unsigned long) hif_dev->firmware->size);
774
775 return 0;
776}
777
778static int ath9k_hif_usb_dev_init(struct hif_device_usb *hif_dev,
779 const char *fw_name)
780{
781 int ret;
782
783 /* Request firmware */
784 ret = request_firmware(&hif_dev->firmware, fw_name, &hif_dev->udev->dev);
785 if (ret) {
786 dev_err(&hif_dev->udev->dev,
787 "ath9k_htc: Firmware - %s not found\n", fw_name);
788 goto err_fw_req;
789 }
790
791 /* Download firmware */
792 ret = ath9k_hif_usb_download_fw(hif_dev);
793 if (ret) {
794 dev_err(&hif_dev->udev->dev,
795 "ath9k_htc: Firmware - %s download failed\n", fw_name);
796 goto err_fw_download;
797 }
798
799 /* Alloc URBs */
800 ret = ath9k_hif_usb_alloc_urbs(hif_dev);
801 if (ret) {
802 dev_err(&hif_dev->udev->dev,
803 "ath9k_htc: Unable to allocate URBs\n");
804 goto err_urb;
805 }
806
807 return 0;
808
809err_urb:
810 /* Nothing */
811err_fw_download:
812 release_firmware(hif_dev->firmware);
813err_fw_req:
814 hif_dev->firmware = NULL;
815 return ret;
816}
817
818static void ath9k_hif_usb_dealloc_urbs(struct hif_device_usb *hif_dev)
819{
Sujith6f0f2662010-04-06 15:28:17 +0530820 usb_kill_anchored_urbs(&hif_dev->regout_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530821 ath9k_hif_usb_dealloc_reg_in_urb(hif_dev);
822 ath9k_hif_usb_dealloc_tx_urbs(hif_dev);
823 ath9k_hif_usb_dealloc_rx_urbs(hif_dev);
824}
825
826static void ath9k_hif_usb_dev_deinit(struct hif_device_usb *hif_dev)
827{
828 ath9k_hif_usb_dealloc_urbs(hif_dev);
829 if (hif_dev->firmware)
830 release_firmware(hif_dev->firmware);
831}
832
833static int ath9k_hif_usb_probe(struct usb_interface *interface,
834 const struct usb_device_id *id)
835{
836 struct usb_device *udev = interface_to_usbdev(interface);
837 struct hif_device_usb *hif_dev;
838 const char *fw_name = (const char *) id->driver_info;
839 int ret = 0;
840
841 hif_dev = kzalloc(sizeof(struct hif_device_usb), GFP_KERNEL);
842 if (!hif_dev) {
843 ret = -ENOMEM;
844 goto err_alloc;
845 }
846
847 usb_get_dev(udev);
848 hif_dev->udev = udev;
849 hif_dev->interface = interface;
850 hif_dev->device_id = id->idProduct;
851#ifdef CONFIG_PM
852 udev->reset_resume = 1;
853#endif
854 usb_set_intfdata(interface, hif_dev);
855
856 ret = ath9k_hif_usb_dev_init(hif_dev, fw_name);
857 if (ret) {
858 ret = -EINVAL;
859 goto err_hif_init_usb;
860 }
861
862 hif_dev->htc_handle = ath9k_htc_hw_alloc(hif_dev);
863 if (hif_dev->htc_handle == NULL) {
864 ret = -ENOMEM;
865 goto err_htc_hw_alloc;
866 }
867
868 ret = ath9k_htc_hw_init(&hif_usb, hif_dev->htc_handle, hif_dev,
869 &hif_dev->udev->dev, hif_dev->device_id,
870 ATH9K_HIF_USB);
871 if (ret) {
872 ret = -EINVAL;
873 goto err_htc_hw_init;
874 }
875
876 dev_info(&hif_dev->udev->dev, "ath9k_htc: USB layer initialized\n");
877
878 return 0;
879
880err_htc_hw_init:
881 ath9k_htc_hw_free(hif_dev->htc_handle);
882err_htc_hw_alloc:
883 ath9k_hif_usb_dev_deinit(hif_dev);
884err_hif_init_usb:
885 usb_set_intfdata(interface, NULL);
886 kfree(hif_dev);
887 usb_put_dev(udev);
888err_alloc:
889 return ret;
890}
891
892static void ath9k_hif_usb_disconnect(struct usb_interface *interface)
893{
894 struct usb_device *udev = interface_to_usbdev(interface);
895 struct hif_device_usb *hif_dev =
896 (struct hif_device_usb *) usb_get_intfdata(interface);
897
898 if (hif_dev) {
899 ath9k_htc_hw_deinit(hif_dev->htc_handle, true);
900 ath9k_htc_hw_free(hif_dev->htc_handle);
901 ath9k_hif_usb_dev_deinit(hif_dev);
902 usb_set_intfdata(interface, NULL);
903 }
904
905 if (hif_dev->flags & HIF_USB_START)
906 usb_reset_device(udev);
907
908 kfree(hif_dev);
909 dev_info(&udev->dev, "ath9k_htc: USB layer deinitialized\n");
910 usb_put_dev(udev);
911}
912
913#ifdef CONFIG_PM
914static int ath9k_hif_usb_suspend(struct usb_interface *interface,
915 pm_message_t message)
916{
917 struct hif_device_usb *hif_dev =
918 (struct hif_device_usb *) usb_get_intfdata(interface);
919
920 ath9k_hif_usb_dealloc_urbs(hif_dev);
921
922 return 0;
923}
924
925static int ath9k_hif_usb_resume(struct usb_interface *interface)
926{
927 struct hif_device_usb *hif_dev =
928 (struct hif_device_usb *) usb_get_intfdata(interface);
929 int ret;
930
931 ret = ath9k_hif_usb_alloc_urbs(hif_dev);
932 if (ret)
933 return ret;
934
935 if (hif_dev->firmware) {
936 ret = ath9k_hif_usb_download_fw(hif_dev);
937 if (ret)
938 goto fail_resume;
939 } else {
940 ath9k_hif_usb_dealloc_urbs(hif_dev);
941 return -EIO;
942 }
943
944 mdelay(100);
945
946 ret = ath9k_htc_resume(hif_dev->htc_handle);
947
948 if (ret)
949 goto fail_resume;
950
951 return 0;
952
953fail_resume:
954 ath9k_hif_usb_dealloc_urbs(hif_dev);
955
956 return ret;
957}
958#endif
959
960static struct usb_driver ath9k_hif_usb_driver = {
961 .name = "ath9k_hif_usb",
962 .probe = ath9k_hif_usb_probe,
963 .disconnect = ath9k_hif_usb_disconnect,
964#ifdef CONFIG_PM
965 .suspend = ath9k_hif_usb_suspend,
966 .resume = ath9k_hif_usb_resume,
967 .reset_resume = ath9k_hif_usb_resume,
968#endif
969 .id_table = ath9k_hif_usb_ids,
970 .soft_unbind = 1,
971};
972
973int ath9k_hif_usb_init(void)
974{
975 return usb_register(&ath9k_hif_usb_driver);
976}
977
978void ath9k_hif_usb_exit(void)
979{
980 usb_deregister(&ath9k_hif_usb_driver);
981}