GNU Linux-libre 4.9.284-gnu1
[releases.git] / drivers / net / wireless / ath / ath9k / hif_usb.c
1 /*
2  * Copyright (c) 2010-2011 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 <asm/unaligned.h>
18 #include "htc.h"
19
20 MODULE_FIRMWARE(HTC_7010_MODULE_FW);
21 MODULE_FIRMWARE(HTC_9271_MODULE_FW);
22
23 static struct usb_device_id ath9k_hif_usb_ids[] = {
24         { USB_DEVICE(0x0cf3, 0x9271) }, /* Atheros */
25         { USB_DEVICE(0x0cf3, 0x1006) }, /* Atheros */
26         { USB_DEVICE(0x0846, 0x9030) }, /* Netgear N150 */
27         { USB_DEVICE(0x07D1, 0x3A10) }, /* Dlink Wireless 150 */
28         { USB_DEVICE(0x13D3, 0x3327) }, /* Azurewave */
29         { USB_DEVICE(0x13D3, 0x3328) }, /* Azurewave */
30         { USB_DEVICE(0x13D3, 0x3346) }, /* IMC Networks */
31         { USB_DEVICE(0x13D3, 0x3348) }, /* Azurewave */
32         { USB_DEVICE(0x13D3, 0x3349) }, /* Azurewave */
33         { USB_DEVICE(0x13D3, 0x3350) }, /* Azurewave */
34         { USB_DEVICE(0x04CA, 0x4605) }, /* Liteon */
35         { USB_DEVICE(0x040D, 0x3801) }, /* VIA */
36         { USB_DEVICE(0x0cf3, 0xb003) }, /* Ubiquiti WifiStation Ext */
37         { USB_DEVICE(0x0cf3, 0xb002) }, /* Ubiquiti WifiStation */
38         { USB_DEVICE(0x057c, 0x8403) }, /* AVM FRITZ!WLAN 11N v2 USB */
39         { USB_DEVICE(0x0471, 0x209e) }, /* Philips (or NXP) PTA01 */
40         { USB_DEVICE(0x1eda, 0x2315) }, /* AirTies */
41
42         { USB_DEVICE(0x0cf3, 0x7015),
43           .driver_info = AR9287_USB },  /* Atheros */
44         { USB_DEVICE(0x1668, 0x1200),
45           .driver_info = AR9287_USB },  /* Verizon */
46
47         { USB_DEVICE(0x0cf3, 0x7010),
48           .driver_info = AR9280_USB },  /* Atheros */
49         { USB_DEVICE(0x0846, 0x9018),
50           .driver_info = AR9280_USB },  /* Netgear WNDA3200 */
51         { USB_DEVICE(0x083A, 0xA704),
52           .driver_info = AR9280_USB },  /* SMC Networks */
53         { USB_DEVICE(0x0411, 0x017f),
54           .driver_info = AR9280_USB },  /* Sony UWA-BR100 */
55         { USB_DEVICE(0x0411, 0x0197),
56           .driver_info = AR9280_USB },  /* Buffalo WLI-UV-AG300P */
57         { USB_DEVICE(0x04da, 0x3904),
58           .driver_info = AR9280_USB },
59         { USB_DEVICE(0x0930, 0x0a08),
60           .driver_info = AR9280_USB },  /* Toshiba WLM-20U2 and GN-1080 */
61
62         { USB_DEVICE(0x0cf3, 0x20ff),
63           .driver_info = STORAGE_DEVICE },
64
65         { },
66 };
67
68 MODULE_DEVICE_TABLE(usb, ath9k_hif_usb_ids);
69
70 static int __hif_usb_tx(struct hif_device_usb *hif_dev);
71
72 static void hif_usb_regout_cb(struct urb *urb)
73 {
74         struct cmd_buf *cmd = (struct cmd_buf *)urb->context;
75
76         switch (urb->status) {
77         case 0:
78                 break;
79         case -ENOENT:
80         case -ECONNRESET:
81         case -ENODEV:
82         case -ESHUTDOWN:
83                 goto free;
84         default:
85                 break;
86         }
87
88         if (cmd) {
89                 ath9k_htc_txcompletion_cb(cmd->hif_dev->htc_handle,
90                                           cmd->skb, true);
91                 kfree(cmd);
92         }
93
94         return;
95 free:
96         kfree_skb(cmd->skb);
97         kfree(cmd);
98 }
99
100 static int hif_usb_send_regout(struct hif_device_usb *hif_dev,
101                                struct sk_buff *skb)
102 {
103         struct urb *urb;
104         struct cmd_buf *cmd;
105         int ret = 0;
106
107         urb = usb_alloc_urb(0, GFP_KERNEL);
108         if (urb == NULL)
109                 return -ENOMEM;
110
111         cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
112         if (cmd == NULL) {
113                 usb_free_urb(urb);
114                 return -ENOMEM;
115         }
116
117         cmd->skb = skb;
118         cmd->hif_dev = hif_dev;
119
120         usb_fill_int_urb(urb, hif_dev->udev,
121                          usb_sndintpipe(hif_dev->udev, USB_REG_OUT_PIPE),
122                          skb->data, skb->len,
123                          hif_usb_regout_cb, cmd, 1);
124
125         usb_anchor_urb(urb, &hif_dev->regout_submitted);
126         ret = usb_submit_urb(urb, GFP_KERNEL);
127         if (ret) {
128                 usb_unanchor_urb(urb);
129                 kfree(cmd);
130         }
131         usb_free_urb(urb);
132
133         return ret;
134 }
135
136 static void hif_usb_mgmt_cb(struct urb *urb)
137 {
138         struct cmd_buf *cmd = (struct cmd_buf *)urb->context;
139         struct hif_device_usb *hif_dev;
140         bool txok = true;
141
142         if (!cmd || !cmd->skb || !cmd->hif_dev)
143                 return;
144
145         hif_dev = cmd->hif_dev;
146
147         switch (urb->status) {
148         case 0:
149                 break;
150         case -ENOENT:
151         case -ECONNRESET:
152         case -ENODEV:
153         case -ESHUTDOWN:
154                 txok = false;
155
156                 /*
157                  * If the URBs are being flushed, no need to complete
158                  * this packet.
159                  */
160                 spin_lock(&hif_dev->tx.tx_lock);
161                 if (hif_dev->tx.flags & HIF_USB_TX_FLUSH) {
162                         spin_unlock(&hif_dev->tx.tx_lock);
163                         dev_kfree_skb_any(cmd->skb);
164                         kfree(cmd);
165                         return;
166                 }
167                 spin_unlock(&hif_dev->tx.tx_lock);
168
169                 break;
170         default:
171                 txok = false;
172                 break;
173         }
174
175         skb_pull(cmd->skb, 4);
176         ath9k_htc_txcompletion_cb(cmd->hif_dev->htc_handle,
177                                   cmd->skb, txok);
178         kfree(cmd);
179 }
180
181 static int hif_usb_send_mgmt(struct hif_device_usb *hif_dev,
182                              struct sk_buff *skb)
183 {
184         struct urb *urb;
185         struct cmd_buf *cmd;
186         int ret = 0;
187         __le16 *hdr;
188
189         urb = usb_alloc_urb(0, GFP_ATOMIC);
190         if (urb == NULL)
191                 return -ENOMEM;
192
193         cmd = kzalloc(sizeof(*cmd), GFP_ATOMIC);
194         if (cmd == NULL) {
195                 usb_free_urb(urb);
196                 return -ENOMEM;
197         }
198
199         cmd->skb = skb;
200         cmd->hif_dev = hif_dev;
201
202         hdr = (__le16 *) skb_push(skb, 4);
203         *hdr++ = cpu_to_le16(skb->len - 4);
204         *hdr++ = cpu_to_le16(ATH_USB_TX_STREAM_MODE_TAG);
205
206         usb_fill_bulk_urb(urb, hif_dev->udev,
207                          usb_sndbulkpipe(hif_dev->udev, USB_WLAN_TX_PIPE),
208                          skb->data, skb->len,
209                          hif_usb_mgmt_cb, cmd);
210
211         usb_anchor_urb(urb, &hif_dev->mgmt_submitted);
212         ret = usb_submit_urb(urb, GFP_ATOMIC);
213         if (ret) {
214                 usb_unanchor_urb(urb);
215                 kfree(cmd);
216         }
217         usb_free_urb(urb);
218
219         return ret;
220 }
221
222 static inline void ath9k_skb_queue_purge(struct hif_device_usb *hif_dev,
223                                          struct sk_buff_head *list)
224 {
225         struct sk_buff *skb;
226
227         while ((skb = __skb_dequeue(list)) != NULL) {
228                 dev_kfree_skb_any(skb);
229         }
230 }
231
232 static inline void ath9k_skb_queue_complete(struct hif_device_usb *hif_dev,
233                                             struct sk_buff_head *queue,
234                                             bool txok)
235 {
236         struct sk_buff *skb;
237
238         while ((skb = __skb_dequeue(queue)) != NULL) {
239 #ifdef CONFIG_ATH9K_HTC_DEBUGFS
240                 int ln = skb->len;
241 #endif
242                 ath9k_htc_txcompletion_cb(hif_dev->htc_handle,
243                                           skb, txok);
244                 if (txok) {
245                         TX_STAT_INC(skb_success);
246                         TX_STAT_ADD(skb_success_bytes, ln);
247                 }
248                 else
249                         TX_STAT_INC(skb_failed);
250         }
251 }
252
253 static void hif_usb_tx_cb(struct urb *urb)
254 {
255         struct tx_buf *tx_buf = (struct tx_buf *) urb->context;
256         struct hif_device_usb *hif_dev;
257         bool txok = true;
258
259         if (!tx_buf || !tx_buf->hif_dev)
260                 return;
261
262         hif_dev = tx_buf->hif_dev;
263
264         switch (urb->status) {
265         case 0:
266                 break;
267         case -ENOENT:
268         case -ECONNRESET:
269         case -ENODEV:
270         case -ESHUTDOWN:
271                 txok = false;
272
273                 /*
274                  * If the URBs are being flushed, no need to add this
275                  * URB to the free list.
276                  */
277                 spin_lock(&hif_dev->tx.tx_lock);
278                 if (hif_dev->tx.flags & HIF_USB_TX_FLUSH) {
279                         spin_unlock(&hif_dev->tx.tx_lock);
280                         ath9k_skb_queue_purge(hif_dev, &tx_buf->skb_queue);
281                         return;
282                 }
283                 spin_unlock(&hif_dev->tx.tx_lock);
284
285                 break;
286         default:
287                 txok = false;
288                 break;
289         }
290
291         ath9k_skb_queue_complete(hif_dev, &tx_buf->skb_queue, txok);
292
293         /* Re-initialize the SKB queue */
294         tx_buf->len = tx_buf->offset = 0;
295         __skb_queue_head_init(&tx_buf->skb_queue);
296
297         /* Add this TX buffer to the free list */
298         spin_lock(&hif_dev->tx.tx_lock);
299         list_move_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
300         hif_dev->tx.tx_buf_cnt++;
301         if (!(hif_dev->tx.flags & HIF_USB_TX_STOP))
302                 __hif_usb_tx(hif_dev); /* Check for pending SKBs */
303         TX_STAT_INC(buf_completed);
304         spin_unlock(&hif_dev->tx.tx_lock);
305 }
306
307 /* TX lock has to be taken */
308 static int __hif_usb_tx(struct hif_device_usb *hif_dev)
309 {
310         struct tx_buf *tx_buf = NULL;
311         struct sk_buff *nskb = NULL;
312         int ret = 0, i;
313         u16 tx_skb_cnt = 0;
314         u8 *buf;
315         __le16 *hdr;
316
317         if (hif_dev->tx.tx_skb_cnt == 0)
318                 return 0;
319
320         /* Check if a free TX buffer is available */
321         if (list_empty(&hif_dev->tx.tx_buf))
322                 return 0;
323
324         tx_buf = list_first_entry(&hif_dev->tx.tx_buf, struct tx_buf, list);
325         list_move_tail(&tx_buf->list, &hif_dev->tx.tx_pending);
326         hif_dev->tx.tx_buf_cnt--;
327
328         tx_skb_cnt = min_t(u16, hif_dev->tx.tx_skb_cnt, MAX_TX_AGGR_NUM);
329
330         for (i = 0; i < tx_skb_cnt; i++) {
331                 nskb = __skb_dequeue(&hif_dev->tx.tx_skb_queue);
332
333                 /* Should never be NULL */
334                 BUG_ON(!nskb);
335
336                 hif_dev->tx.tx_skb_cnt--;
337
338                 buf = tx_buf->buf;
339                 buf += tx_buf->offset;
340                 hdr = (__le16 *)buf;
341                 *hdr++ = cpu_to_le16(nskb->len);
342                 *hdr++ = cpu_to_le16(ATH_USB_TX_STREAM_MODE_TAG);
343                 buf += 4;
344                 memcpy(buf, nskb->data, nskb->len);
345                 tx_buf->len = nskb->len + 4;
346
347                 if (i < (tx_skb_cnt - 1))
348                         tx_buf->offset += (((tx_buf->len - 1) / 4) + 1) * 4;
349
350                 if (i == (tx_skb_cnt - 1))
351                         tx_buf->len += tx_buf->offset;
352
353                 __skb_queue_tail(&tx_buf->skb_queue, nskb);
354                 TX_STAT_INC(skb_queued);
355         }
356
357         usb_fill_bulk_urb(tx_buf->urb, hif_dev->udev,
358                           usb_sndbulkpipe(hif_dev->udev, USB_WLAN_TX_PIPE),
359                           tx_buf->buf, tx_buf->len,
360                           hif_usb_tx_cb, tx_buf);
361
362         ret = usb_submit_urb(tx_buf->urb, GFP_ATOMIC);
363         if (ret) {
364                 tx_buf->len = tx_buf->offset = 0;
365                 ath9k_skb_queue_complete(hif_dev, &tx_buf->skb_queue, false);
366                 __skb_queue_head_init(&tx_buf->skb_queue);
367                 list_move_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
368                 hif_dev->tx.tx_buf_cnt++;
369         }
370
371         if (!ret)
372                 TX_STAT_INC(buf_queued);
373
374         return ret;
375 }
376
377 static int hif_usb_send_tx(struct hif_device_usb *hif_dev, struct sk_buff *skb)
378 {
379         struct ath9k_htc_tx_ctl *tx_ctl;
380         unsigned long flags;
381         int ret = 0;
382
383         spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
384
385         if (hif_dev->tx.flags & HIF_USB_TX_STOP) {
386                 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
387                 return -ENODEV;
388         }
389
390         /* Check if the max queue count has been reached */
391         if (hif_dev->tx.tx_skb_cnt > MAX_TX_BUF_NUM) {
392                 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
393                 return -ENOMEM;
394         }
395
396         spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
397
398         tx_ctl = HTC_SKB_CB(skb);
399
400         /* Mgmt/Beacon frames don't use the TX buffer pool */
401         if ((tx_ctl->type == ATH9K_HTC_MGMT) ||
402             (tx_ctl->type == ATH9K_HTC_BEACON)) {
403                 ret = hif_usb_send_mgmt(hif_dev, skb);
404         }
405
406         spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
407
408         if ((tx_ctl->type == ATH9K_HTC_NORMAL) ||
409             (tx_ctl->type == ATH9K_HTC_AMPDU)) {
410                 __skb_queue_tail(&hif_dev->tx.tx_skb_queue, skb);
411                 hif_dev->tx.tx_skb_cnt++;
412         }
413
414         /* Check if AMPDUs have to be sent immediately */
415         if ((hif_dev->tx.tx_buf_cnt == MAX_TX_URB_NUM) &&
416             (hif_dev->tx.tx_skb_cnt < 2)) {
417                 __hif_usb_tx(hif_dev);
418         }
419
420         spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
421
422         return ret;
423 }
424
425 static void hif_usb_start(void *hif_handle)
426 {
427         struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
428         unsigned long flags;
429
430         hif_dev->flags |= HIF_USB_START;
431
432         spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
433         hif_dev->tx.flags &= ~HIF_USB_TX_STOP;
434         spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
435 }
436
437 static void hif_usb_stop(void *hif_handle)
438 {
439         struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
440         struct tx_buf *tx_buf = NULL, *tx_buf_tmp = NULL;
441         unsigned long flags;
442
443         spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
444         ath9k_skb_queue_complete(hif_dev, &hif_dev->tx.tx_skb_queue, false);
445         hif_dev->tx.tx_skb_cnt = 0;
446         hif_dev->tx.flags |= HIF_USB_TX_STOP;
447         spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
448
449         /* The pending URBs have to be canceled. */
450         spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
451         list_for_each_entry_safe(tx_buf, tx_buf_tmp,
452                                  &hif_dev->tx.tx_pending, list) {
453                 usb_get_urb(tx_buf->urb);
454                 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
455                 usb_kill_urb(tx_buf->urb);
456                 list_del(&tx_buf->list);
457                 usb_free_urb(tx_buf->urb);
458                 kfree(tx_buf->buf);
459                 kfree(tx_buf);
460                 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
461         }
462         spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
463
464         usb_kill_anchored_urbs(&hif_dev->mgmt_submitted);
465 }
466
467 static int hif_usb_send(void *hif_handle, u8 pipe_id, struct sk_buff *skb)
468 {
469         struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
470         int ret = 0;
471
472         switch (pipe_id) {
473         case USB_WLAN_TX_PIPE:
474                 ret = hif_usb_send_tx(hif_dev, skb);
475                 break;
476         case USB_REG_OUT_PIPE:
477                 ret = hif_usb_send_regout(hif_dev, skb);
478                 break;
479         default:
480                 dev_err(&hif_dev->udev->dev,
481                         "ath9k_htc: Invalid TX pipe: %d\n", pipe_id);
482                 ret = -EINVAL;
483                 break;
484         }
485
486         return ret;
487 }
488
489 static inline bool check_index(struct sk_buff *skb, u8 idx)
490 {
491         struct ath9k_htc_tx_ctl *tx_ctl;
492
493         tx_ctl = HTC_SKB_CB(skb);
494
495         if ((tx_ctl->type == ATH9K_HTC_AMPDU) &&
496             (tx_ctl->sta_idx == idx))
497                 return true;
498
499         return false;
500 }
501
502 static void hif_usb_sta_drain(void *hif_handle, u8 idx)
503 {
504         struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
505         struct sk_buff *skb, *tmp;
506         unsigned long flags;
507
508         spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
509
510         skb_queue_walk_safe(&hif_dev->tx.tx_skb_queue, skb, tmp) {
511                 if (check_index(skb, idx)) {
512                         __skb_unlink(skb, &hif_dev->tx.tx_skb_queue);
513                         ath9k_htc_txcompletion_cb(hif_dev->htc_handle,
514                                                   skb, false);
515                         hif_dev->tx.tx_skb_cnt--;
516                         TX_STAT_INC(skb_failed);
517                 }
518         }
519
520         spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
521 }
522
523 static struct ath9k_htc_hif hif_usb = {
524         .transport = ATH9K_HIF_USB,
525         .name = "ath9k_hif_usb",
526
527         .control_ul_pipe = USB_REG_OUT_PIPE,
528         .control_dl_pipe = USB_REG_IN_PIPE,
529
530         .start = hif_usb_start,
531         .stop = hif_usb_stop,
532         .sta_drain = hif_usb_sta_drain,
533         .send = hif_usb_send,
534 };
535
536 static void ath9k_hif_usb_rx_stream(struct hif_device_usb *hif_dev,
537                                     struct sk_buff *skb)
538 {
539         struct sk_buff *nskb, *skb_pool[MAX_PKT_NUM_IN_TRANSFER];
540         int index = 0, i, len = skb->len;
541         int rx_remain_len, rx_pkt_len;
542         u16 pool_index = 0;
543         u8 *ptr;
544
545         spin_lock(&hif_dev->rx_lock);
546
547         rx_remain_len = hif_dev->rx_remain_len;
548         rx_pkt_len = hif_dev->rx_transfer_len;
549
550         if (rx_remain_len != 0) {
551                 struct sk_buff *remain_skb = hif_dev->remain_skb;
552
553                 if (remain_skb) {
554                         ptr = (u8 *) remain_skb->data;
555
556                         index = rx_remain_len;
557                         rx_remain_len -= hif_dev->rx_pad_len;
558                         ptr += rx_pkt_len;
559
560                         memcpy(ptr, skb->data, rx_remain_len);
561
562                         rx_pkt_len += rx_remain_len;
563                         hif_dev->rx_remain_len = 0;
564                         skb_put(remain_skb, rx_pkt_len);
565
566                         skb_pool[pool_index++] = remain_skb;
567
568                 } else {
569                         index = rx_remain_len;
570                 }
571         }
572
573         spin_unlock(&hif_dev->rx_lock);
574
575         while (index < len) {
576                 u16 pkt_len;
577                 u16 pkt_tag;
578                 u16 pad_len;
579                 int chk_idx;
580
581                 ptr = (u8 *) skb->data;
582
583                 pkt_len = get_unaligned_le16(ptr + index);
584                 pkt_tag = get_unaligned_le16(ptr + index + 2);
585
586                 if (pkt_tag != ATH_USB_RX_STREAM_MODE_TAG) {
587                         RX_STAT_INC(skb_dropped);
588                         return;
589                 }
590
591                 pad_len = 4 - (pkt_len & 0x3);
592                 if (pad_len == 4)
593                         pad_len = 0;
594
595                 chk_idx = index;
596                 index = index + 4 + pkt_len + pad_len;
597
598                 if (index > MAX_RX_BUF_SIZE) {
599                         spin_lock(&hif_dev->rx_lock);
600                         hif_dev->rx_remain_len = index - MAX_RX_BUF_SIZE;
601                         hif_dev->rx_transfer_len =
602                                 MAX_RX_BUF_SIZE - chk_idx - 4;
603                         hif_dev->rx_pad_len = pad_len;
604
605                         nskb = __dev_alloc_skb(pkt_len + 32, GFP_ATOMIC);
606                         if (!nskb) {
607                                 dev_err(&hif_dev->udev->dev,
608                                         "ath9k_htc: RX memory allocation error\n");
609                                 spin_unlock(&hif_dev->rx_lock);
610                                 goto err;
611                         }
612                         skb_reserve(nskb, 32);
613                         RX_STAT_INC(skb_allocated);
614
615                         memcpy(nskb->data, &(skb->data[chk_idx+4]),
616                                hif_dev->rx_transfer_len);
617
618                         /* Record the buffer pointer */
619                         hif_dev->remain_skb = nskb;
620                         spin_unlock(&hif_dev->rx_lock);
621                 } else {
622                         if (pool_index == MAX_PKT_NUM_IN_TRANSFER) {
623                                 dev_err(&hif_dev->udev->dev,
624                                         "ath9k_htc: over RX MAX_PKT_NUM\n");
625                                 goto err;
626                         }
627                         nskb = __dev_alloc_skb(pkt_len + 32, GFP_ATOMIC);
628                         if (!nskb) {
629                                 dev_err(&hif_dev->udev->dev,
630                                         "ath9k_htc: RX memory allocation error\n");
631                                 goto err;
632                         }
633                         skb_reserve(nskb, 32);
634                         RX_STAT_INC(skb_allocated);
635
636                         memcpy(nskb->data, &(skb->data[chk_idx+4]), pkt_len);
637                         skb_put(nskb, pkt_len);
638                         skb_pool[pool_index++] = nskb;
639                 }
640         }
641
642 err:
643         for (i = 0; i < pool_index; i++) {
644                 RX_STAT_ADD(skb_completed_bytes, skb_pool[i]->len);
645                 ath9k_htc_rx_msg(hif_dev->htc_handle, skb_pool[i],
646                                  skb_pool[i]->len, USB_WLAN_RX_PIPE);
647                 RX_STAT_INC(skb_completed);
648         }
649 }
650
651 static void ath9k_hif_usb_rx_cb(struct urb *urb)
652 {
653         struct rx_buf *rx_buf = (struct rx_buf *)urb->context;
654         struct hif_device_usb *hif_dev = rx_buf->hif_dev;
655         struct sk_buff *skb = rx_buf->skb;
656         int ret;
657
658         if (!skb)
659                 return;
660
661         if (!hif_dev)
662                 goto free;
663
664         switch (urb->status) {
665         case 0:
666                 break;
667         case -ENOENT:
668         case -ECONNRESET:
669         case -ENODEV:
670         case -ESHUTDOWN:
671                 goto free;
672         default:
673                 goto resubmit;
674         }
675
676         if (likely(urb->actual_length != 0)) {
677                 skb_put(skb, urb->actual_length);
678                 ath9k_hif_usb_rx_stream(hif_dev, skb);
679         }
680
681 resubmit:
682         skb_reset_tail_pointer(skb);
683         skb_trim(skb, 0);
684
685         usb_anchor_urb(urb, &hif_dev->rx_submitted);
686         ret = usb_submit_urb(urb, GFP_ATOMIC);
687         if (ret) {
688                 usb_unanchor_urb(urb);
689                 goto free;
690         }
691
692         return;
693 free:
694         kfree_skb(skb);
695         kfree(rx_buf);
696 }
697
698 static void ath9k_hif_usb_reg_in_cb(struct urb *urb)
699 {
700         struct rx_buf *rx_buf = (struct rx_buf *)urb->context;
701         struct hif_device_usb *hif_dev = rx_buf->hif_dev;
702         struct sk_buff *skb = rx_buf->skb;
703         struct sk_buff *nskb;
704         int ret;
705
706         if (!skb)
707                 return;
708
709         if (!hif_dev)
710                 goto free;
711
712         switch (urb->status) {
713         case 0:
714                 break;
715         case -ENOENT:
716         case -ECONNRESET:
717         case -ENODEV:
718         case -ESHUTDOWN:
719                 goto free;
720         default:
721                 skb_reset_tail_pointer(skb);
722                 skb_trim(skb, 0);
723
724                 goto resubmit;
725         }
726
727         if (likely(urb->actual_length != 0)) {
728                 skb_put(skb, urb->actual_length);
729
730                 /* Process the command first */
731                 ath9k_htc_rx_msg(hif_dev->htc_handle, skb,
732                                  skb->len, USB_REG_IN_PIPE);
733
734
735                 nskb = alloc_skb(MAX_REG_IN_BUF_SIZE, GFP_ATOMIC);
736                 if (!nskb) {
737                         dev_err(&hif_dev->udev->dev,
738                                 "ath9k_htc: REG_IN memory allocation failure\n");
739                         urb->context = NULL;
740                         return;
741                 }
742
743                 rx_buf->skb = nskb;
744
745                 usb_fill_int_urb(urb, hif_dev->udev,
746                                  usb_rcvintpipe(hif_dev->udev,
747                                                  USB_REG_IN_PIPE),
748                                  nskb->data, MAX_REG_IN_BUF_SIZE,
749                                  ath9k_hif_usb_reg_in_cb, rx_buf, 1);
750         }
751
752 resubmit:
753         usb_anchor_urb(urb, &hif_dev->reg_in_submitted);
754         ret = usb_submit_urb(urb, GFP_ATOMIC);
755         if (ret) {
756                 usb_unanchor_urb(urb);
757                 goto free;
758         }
759
760         return;
761 free:
762         kfree_skb(skb);
763         kfree(rx_buf);
764         urb->context = NULL;
765 }
766
767 static void ath9k_hif_usb_dealloc_tx_urbs(struct hif_device_usb *hif_dev)
768 {
769         struct tx_buf *tx_buf = NULL, *tx_buf_tmp = NULL;
770         unsigned long flags;
771
772         spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
773         list_for_each_entry_safe(tx_buf, tx_buf_tmp,
774                                  &hif_dev->tx.tx_buf, list) {
775                 usb_get_urb(tx_buf->urb);
776                 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
777                 usb_kill_urb(tx_buf->urb);
778                 list_del(&tx_buf->list);
779                 usb_free_urb(tx_buf->urb);
780                 kfree(tx_buf->buf);
781                 kfree(tx_buf);
782                 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
783         }
784         spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
785
786         spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
787         hif_dev->tx.flags |= HIF_USB_TX_FLUSH;
788         spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
789
790         spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
791         list_for_each_entry_safe(tx_buf, tx_buf_tmp,
792                                  &hif_dev->tx.tx_pending, list) {
793                 usb_get_urb(tx_buf->urb);
794                 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
795                 usb_kill_urb(tx_buf->urb);
796                 list_del(&tx_buf->list);
797                 usb_free_urb(tx_buf->urb);
798                 kfree(tx_buf->buf);
799                 kfree(tx_buf);
800                 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
801         }
802         spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
803
804         usb_kill_anchored_urbs(&hif_dev->mgmt_submitted);
805 }
806
807 static int ath9k_hif_usb_alloc_tx_urbs(struct hif_device_usb *hif_dev)
808 {
809         struct tx_buf *tx_buf;
810         int i;
811
812         INIT_LIST_HEAD(&hif_dev->tx.tx_buf);
813         INIT_LIST_HEAD(&hif_dev->tx.tx_pending);
814         spin_lock_init(&hif_dev->tx.tx_lock);
815         __skb_queue_head_init(&hif_dev->tx.tx_skb_queue);
816         init_usb_anchor(&hif_dev->mgmt_submitted);
817
818         for (i = 0; i < MAX_TX_URB_NUM; i++) {
819                 tx_buf = kzalloc(sizeof(*tx_buf), GFP_KERNEL);
820                 if (!tx_buf)
821                         goto err;
822
823                 tx_buf->buf = kzalloc(MAX_TX_BUF_SIZE, GFP_KERNEL);
824                 if (!tx_buf->buf)
825                         goto err;
826
827                 tx_buf->urb = usb_alloc_urb(0, GFP_KERNEL);
828                 if (!tx_buf->urb)
829                         goto err;
830
831                 tx_buf->hif_dev = hif_dev;
832                 __skb_queue_head_init(&tx_buf->skb_queue);
833
834                 list_add_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
835         }
836
837         hif_dev->tx.tx_buf_cnt = MAX_TX_URB_NUM;
838
839         return 0;
840 err:
841         if (tx_buf) {
842                 kfree(tx_buf->buf);
843                 kfree(tx_buf);
844         }
845         ath9k_hif_usb_dealloc_tx_urbs(hif_dev);
846         return -ENOMEM;
847 }
848
849 static void ath9k_hif_usb_dealloc_rx_urbs(struct hif_device_usb *hif_dev)
850 {
851         usb_kill_anchored_urbs(&hif_dev->rx_submitted);
852 }
853
854 static int ath9k_hif_usb_alloc_rx_urbs(struct hif_device_usb *hif_dev)
855 {
856         struct rx_buf *rx_buf = NULL;
857         struct sk_buff *skb = NULL;
858         struct urb *urb = NULL;
859         int i, ret;
860
861         init_usb_anchor(&hif_dev->rx_submitted);
862         spin_lock_init(&hif_dev->rx_lock);
863
864         for (i = 0; i < MAX_RX_URB_NUM; i++) {
865
866                 rx_buf = kzalloc(sizeof(*rx_buf), GFP_KERNEL);
867                 if (!rx_buf) {
868                         ret = -ENOMEM;
869                         goto err_rxb;
870                 }
871
872                 /* Allocate URB */
873                 urb = usb_alloc_urb(0, GFP_KERNEL);
874                 if (urb == NULL) {
875                         ret = -ENOMEM;
876                         goto err_urb;
877                 }
878
879                 /* Allocate buffer */
880                 skb = alloc_skb(MAX_RX_BUF_SIZE, GFP_KERNEL);
881                 if (!skb) {
882                         ret = -ENOMEM;
883                         goto err_skb;
884                 }
885
886                 rx_buf->hif_dev = hif_dev;
887                 rx_buf->skb = skb;
888
889                 usb_fill_bulk_urb(urb, hif_dev->udev,
890                                   usb_rcvbulkpipe(hif_dev->udev,
891                                                   USB_WLAN_RX_PIPE),
892                                   skb->data, MAX_RX_BUF_SIZE,
893                                   ath9k_hif_usb_rx_cb, rx_buf);
894
895                 /* Anchor URB */
896                 usb_anchor_urb(urb, &hif_dev->rx_submitted);
897
898                 /* Submit URB */
899                 ret = usb_submit_urb(urb, GFP_KERNEL);
900                 if (ret) {
901                         usb_unanchor_urb(urb);
902                         goto err_submit;
903                 }
904
905                 /*
906                  * Drop reference count.
907                  * This ensures that the URB is freed when killing them.
908                  */
909                 usb_free_urb(urb);
910         }
911
912         return 0;
913
914 err_submit:
915         kfree_skb(skb);
916 err_skb:
917         usb_free_urb(urb);
918 err_urb:
919         kfree(rx_buf);
920 err_rxb:
921         ath9k_hif_usb_dealloc_rx_urbs(hif_dev);
922         return ret;
923 }
924
925 static void ath9k_hif_usb_dealloc_reg_in_urbs(struct hif_device_usb *hif_dev)
926 {
927         usb_kill_anchored_urbs(&hif_dev->reg_in_submitted);
928 }
929
930 static int ath9k_hif_usb_alloc_reg_in_urbs(struct hif_device_usb *hif_dev)
931 {
932         struct rx_buf *rx_buf = NULL;
933         struct sk_buff *skb = NULL;
934         struct urb *urb = NULL;
935         int i, ret;
936
937         init_usb_anchor(&hif_dev->reg_in_submitted);
938
939         for (i = 0; i < MAX_REG_IN_URB_NUM; i++) {
940
941                 rx_buf = kzalloc(sizeof(*rx_buf), GFP_KERNEL);
942                 if (!rx_buf) {
943                         ret = -ENOMEM;
944                         goto err_rxb;
945                 }
946
947                 /* Allocate URB */
948                 urb = usb_alloc_urb(0, GFP_KERNEL);
949                 if (urb == NULL) {
950                         ret = -ENOMEM;
951                         goto err_urb;
952                 }
953
954                 /* Allocate buffer */
955                 skb = alloc_skb(MAX_REG_IN_BUF_SIZE, GFP_KERNEL);
956                 if (!skb) {
957                         ret = -ENOMEM;
958                         goto err_skb;
959                 }
960
961                 rx_buf->hif_dev = hif_dev;
962                 rx_buf->skb = skb;
963
964                 usb_fill_int_urb(urb, hif_dev->udev,
965                                   usb_rcvintpipe(hif_dev->udev,
966                                                   USB_REG_IN_PIPE),
967                                   skb->data, MAX_REG_IN_BUF_SIZE,
968                                   ath9k_hif_usb_reg_in_cb, rx_buf, 1);
969
970                 /* Anchor URB */
971                 usb_anchor_urb(urb, &hif_dev->reg_in_submitted);
972
973                 /* Submit URB */
974                 ret = usb_submit_urb(urb, GFP_KERNEL);
975                 if (ret) {
976                         usb_unanchor_urb(urb);
977                         goto err_submit;
978                 }
979
980                 /*
981                  * Drop reference count.
982                  * This ensures that the URB is freed when killing them.
983                  */
984                 usb_free_urb(urb);
985         }
986
987         return 0;
988
989 err_submit:
990         kfree_skb(skb);
991 err_skb:
992         usb_free_urb(urb);
993 err_urb:
994         kfree(rx_buf);
995 err_rxb:
996         ath9k_hif_usb_dealloc_reg_in_urbs(hif_dev);
997         return ret;
998 }
999
1000 static int ath9k_hif_usb_alloc_urbs(struct hif_device_usb *hif_dev)
1001 {
1002         /* Register Write */
1003         init_usb_anchor(&hif_dev->regout_submitted);
1004
1005         /* TX */
1006         if (ath9k_hif_usb_alloc_tx_urbs(hif_dev) < 0)
1007                 goto err;
1008
1009         /* RX */
1010         if (ath9k_hif_usb_alloc_rx_urbs(hif_dev) < 0)
1011                 goto err_rx;
1012
1013         /* Register Read */
1014         if (ath9k_hif_usb_alloc_reg_in_urbs(hif_dev) < 0)
1015                 goto err_reg;
1016
1017         return 0;
1018 err_reg:
1019         ath9k_hif_usb_dealloc_rx_urbs(hif_dev);
1020 err_rx:
1021         ath9k_hif_usb_dealloc_tx_urbs(hif_dev);
1022 err:
1023         return -ENOMEM;
1024 }
1025
1026 void ath9k_hif_usb_dealloc_urbs(struct hif_device_usb *hif_dev)
1027 {
1028         usb_kill_anchored_urbs(&hif_dev->regout_submitted);
1029         ath9k_hif_usb_dealloc_reg_in_urbs(hif_dev);
1030         ath9k_hif_usb_dealloc_tx_urbs(hif_dev);
1031         ath9k_hif_usb_dealloc_rx_urbs(hif_dev);
1032 }
1033
1034 static int ath9k_hif_usb_download_fw(struct hif_device_usb *hif_dev)
1035 {
1036         int transfer, err;
1037         const void *data = hif_dev->fw_data;
1038         size_t len = hif_dev->fw_size;
1039         u32 addr = AR9271_FIRMWARE;
1040         u8 *buf = kzalloc(4096, GFP_KERNEL);
1041         u32 firm_offset;
1042
1043         if (!buf)
1044                 return -ENOMEM;
1045
1046         while (len) {
1047                 transfer = min_t(size_t, len, 4096);
1048                 memcpy(buf, data, transfer);
1049
1050                 err = usb_control_msg(hif_dev->udev,
1051                                       usb_sndctrlpipe(hif_dev->udev, 0),
1052                                       FIRMWARE_DOWNLOAD, 0x40 | USB_DIR_OUT,
1053                                       addr >> 8, 0, buf, transfer, HZ);
1054                 if (err < 0) {
1055                         kfree(buf);
1056                         return err;
1057                 }
1058
1059                 len -= transfer;
1060                 data += transfer;
1061                 addr += transfer;
1062         }
1063         kfree(buf);
1064
1065         if (IS_AR7010_DEVICE(hif_dev->usb_device_id->driver_info))
1066                 firm_offset = AR7010_FIRMWARE_TEXT;
1067         else
1068                 firm_offset = AR9271_FIRMWARE_TEXT;
1069
1070         /*
1071          * Issue FW download complete command to firmware.
1072          */
1073         err = usb_control_msg(hif_dev->udev, usb_sndctrlpipe(hif_dev->udev, 0),
1074                               FIRMWARE_DOWNLOAD_COMP,
1075                               0x40 | USB_DIR_OUT,
1076                               firm_offset >> 8, 0, NULL, 0, HZ);
1077         if (err)
1078                 return -EIO;
1079
1080         dev_info(&hif_dev->udev->dev, "ath9k_htc: Transferred FW: %s, size: %ld\n",
1081                  hif_dev->fw_name, (unsigned long) hif_dev->fw_size);
1082
1083         return 0;
1084 }
1085
1086 static int ath9k_hif_usb_dev_init(struct hif_device_usb *hif_dev)
1087 {
1088         int ret;
1089
1090         ret = ath9k_hif_usb_download_fw(hif_dev);
1091         if (ret) {
1092                 dev_err(&hif_dev->udev->dev,
1093                         "ath9k_htc: Firmware - %s download failed\n",
1094                         hif_dev->fw_name);
1095                 return ret;
1096         }
1097
1098         /* Alloc URBs */
1099         ret = ath9k_hif_usb_alloc_urbs(hif_dev);
1100         if (ret) {
1101                 dev_err(&hif_dev->udev->dev,
1102                         "ath9k_htc: Unable to allocate URBs\n");
1103                 return ret;
1104         }
1105
1106         return 0;
1107 }
1108
1109 static void ath9k_hif_usb_dev_deinit(struct hif_device_usb *hif_dev)
1110 {
1111         ath9k_hif_usb_dealloc_urbs(hif_dev);
1112 }
1113
1114 /*
1115  * If initialization fails or the FW cannot be retrieved,
1116  * detach the device.
1117  */
1118 static void ath9k_hif_usb_firmware_fail(struct hif_device_usb *hif_dev)
1119 {
1120         struct device *dev = &hif_dev->udev->dev;
1121         struct device *parent = dev->parent;
1122
1123         complete_all(&hif_dev->fw_done);
1124
1125         if (parent)
1126                 device_lock(parent);
1127
1128         device_release_driver(dev);
1129
1130         if (parent)
1131                 device_unlock(parent);
1132 }
1133
1134 static void ath9k_hif_usb_firmware_cb(const struct firmware *fw, void *context);
1135
1136 /* taken from iwlwifi */
1137 static int ath9k_hif_request_firmware(struct hif_device_usb *hif_dev,
1138                                       bool first)
1139 {
1140         char index[8], *chip;
1141         int ret;
1142
1143         if (first) {
1144                 if (htc_use_dev_fw) {
1145                         hif_dev->fw_minor_index = FIRMWARE_MINOR_IDX_MAX + 1;
1146                         sprintf(index, "%s", "dev");
1147                 } else {
1148                         hif_dev->fw_minor_index = FIRMWARE_MINOR_IDX_MAX;
1149                         sprintf(index, "%d", hif_dev->fw_minor_index);
1150                 }
1151         } else {
1152                 hif_dev->fw_minor_index--;
1153                 sprintf(index, "%d", hif_dev->fw_minor_index);
1154         }
1155
1156         /* test for FW 1.3 */
1157         if (MAJOR_VERSION_REQ == 1 && hif_dev->fw_minor_index == 3) {
1158                 const char *filename;
1159
1160                 if (IS_AR7010_DEVICE(hif_dev->usb_device_id->driver_info))
1161                         filename = FIRMWARE_AR7010_1_1;
1162                 else
1163                         filename = FIRMWARE_AR9271;
1164
1165                 /* expected fw locations:
1166                  * - htc_9271.fw   (stable version 1.3, depricated)
1167                  */
1168                 snprintf(hif_dev->fw_name, sizeof(hif_dev->fw_name),
1169                          "%s", filename);
1170
1171         } else if (hif_dev->fw_minor_index < FIRMWARE_MINOR_IDX_MIN) {
1172                 dev_err(&hif_dev->udev->dev, "no suitable firmware found!\n");
1173
1174                 return -ENOENT;
1175         } else {
1176                 if (IS_AR7010_DEVICE(hif_dev->usb_device_id->driver_info))
1177                         chip = "7010";
1178                 else
1179                         chip = "9271";
1180
1181                 /* expected fw locations:
1182                  * - ath9k_htc/htc_9271-1.dev.0.fw (development version)
1183                  * - ath9k_htc/htc_9271-1.4.0.fw   (stable version)
1184                  */
1185                 snprintf(hif_dev->fw_name, sizeof(hif_dev->fw_name),
1186                          "%s/htc_%s-%d.%s.0.fw", HTC_FW_PATH,
1187                          chip, MAJOR_VERSION_REQ, index);
1188         }
1189
1190         ret = request_firmware_nowait(THIS_MODULE, true, hif_dev->fw_name,
1191                                       &hif_dev->udev->dev, GFP_KERNEL,
1192                                       hif_dev, ath9k_hif_usb_firmware_cb);
1193         if (ret) {
1194                 dev_err(&hif_dev->udev->dev,
1195                         "ath9k_htc: Async request for firmware %s failed\n",
1196                         hif_dev->fw_name);
1197                 return ret;
1198         }
1199
1200         dev_info(&hif_dev->udev->dev, "ath9k_htc: Firmware %s requested\n",
1201                  hif_dev->fw_name);
1202
1203         return ret;
1204 }
1205
1206 static void ath9k_hif_usb_firmware_cb(const struct firmware *fw, void *context)
1207 {
1208         struct hif_device_usb *hif_dev = context;
1209         int ret;
1210
1211         if (!fw) {
1212                 ret = ath9k_hif_request_firmware(hif_dev, false);
1213                 if (!ret)
1214                         return;
1215
1216                 dev_err(&hif_dev->udev->dev,
1217                         "ath9k_htc: Failed to get firmware %s\n",
1218                         hif_dev->fw_name);
1219                 goto err_fw;
1220         }
1221
1222         hif_dev->htc_handle = ath9k_htc_hw_alloc(hif_dev, &hif_usb,
1223                                                  &hif_dev->udev->dev);
1224         if (hif_dev->htc_handle == NULL)
1225                 goto err_dev_alloc;
1226
1227         hif_dev->fw_data = fw->data;
1228         hif_dev->fw_size = fw->size;
1229
1230         /* Proceed with initialization */
1231
1232         ret = ath9k_hif_usb_dev_init(hif_dev);
1233         if (ret)
1234                 goto err_dev_init;
1235
1236         ret = ath9k_htc_hw_init(hif_dev->htc_handle,
1237                                 &hif_dev->interface->dev,
1238                                 hif_dev->usb_device_id->idProduct,
1239                                 hif_dev->udev->product,
1240                                 hif_dev->usb_device_id->driver_info);
1241         if (ret) {
1242                 ret = -EINVAL;
1243                 goto err_htc_hw_init;
1244         }
1245
1246         release_firmware(fw);
1247         hif_dev->flags |= HIF_USB_READY;
1248         complete_all(&hif_dev->fw_done);
1249
1250         return;
1251
1252 err_htc_hw_init:
1253         ath9k_hif_usb_dev_deinit(hif_dev);
1254 err_dev_init:
1255         ath9k_htc_hw_free(hif_dev->htc_handle);
1256 err_dev_alloc:
1257         release_firmware(fw);
1258 err_fw:
1259         ath9k_hif_usb_firmware_fail(hif_dev);
1260 }
1261
1262 /*
1263  * An exact copy of the function from zd1211rw.
1264  */
1265 static int send_eject_command(struct usb_interface *interface)
1266 {
1267         struct usb_device *udev = interface_to_usbdev(interface);
1268         struct usb_host_interface *iface_desc = interface->cur_altsetting;
1269         struct usb_endpoint_descriptor *endpoint;
1270         unsigned char *cmd;
1271         u8 bulk_out_ep;
1272         int r;
1273
1274         if (iface_desc->desc.bNumEndpoints < 2)
1275                 return -ENODEV;
1276
1277         /* Find bulk out endpoint */
1278         for (r = 1; r >= 0; r--) {
1279                 endpoint = &iface_desc->endpoint[r].desc;
1280                 if (usb_endpoint_dir_out(endpoint) &&
1281                     usb_endpoint_xfer_bulk(endpoint)) {
1282                         bulk_out_ep = endpoint->bEndpointAddress;
1283                         break;
1284                 }
1285         }
1286         if (r == -1) {
1287                 dev_err(&udev->dev,
1288                         "ath9k_htc: Could not find bulk out endpoint\n");
1289                 return -ENODEV;
1290         }
1291
1292         cmd = kzalloc(31, GFP_KERNEL);
1293         if (cmd == NULL)
1294                 return -ENODEV;
1295
1296         /* USB bulk command block */
1297         cmd[0] = 0x55;  /* bulk command signature */
1298         cmd[1] = 0x53;  /* bulk command signature */
1299         cmd[2] = 0x42;  /* bulk command signature */
1300         cmd[3] = 0x43;  /* bulk command signature */
1301         cmd[14] = 6;    /* command length */
1302
1303         cmd[15] = 0x1b; /* SCSI command: START STOP UNIT */
1304         cmd[19] = 0x2;  /* eject disc */
1305
1306         dev_info(&udev->dev, "Ejecting storage device...\n");
1307         r = usb_bulk_msg(udev, usb_sndbulkpipe(udev, bulk_out_ep),
1308                 cmd, 31, NULL, 2000);
1309         kfree(cmd);
1310         if (r)
1311                 return r;
1312
1313         /* At this point, the device disconnects and reconnects with the real
1314          * ID numbers. */
1315
1316         usb_set_intfdata(interface, NULL);
1317         return 0;
1318 }
1319
1320 static int ath9k_hif_usb_probe(struct usb_interface *interface,
1321                                const struct usb_device_id *id)
1322 {
1323         struct usb_device *udev = interface_to_usbdev(interface);
1324         struct hif_device_usb *hif_dev;
1325         int ret = 0;
1326
1327         if (id->driver_info == STORAGE_DEVICE)
1328                 return send_eject_command(interface);
1329
1330         hif_dev = kzalloc(sizeof(struct hif_device_usb), GFP_KERNEL);
1331         if (!hif_dev) {
1332                 ret = -ENOMEM;
1333                 goto err_alloc;
1334         }
1335
1336         usb_get_dev(udev);
1337
1338         hif_dev->udev = udev;
1339         hif_dev->interface = interface;
1340         hif_dev->usb_device_id = id;
1341 #ifdef CONFIG_PM
1342         udev->reset_resume = 1;
1343 #endif
1344         usb_set_intfdata(interface, hif_dev);
1345
1346         init_completion(&hif_dev->fw_done);
1347
1348         ret = ath9k_hif_request_firmware(hif_dev, true);
1349         if (ret)
1350                 goto err_fw_req;
1351
1352         return ret;
1353
1354 err_fw_req:
1355         usb_set_intfdata(interface, NULL);
1356         kfree(hif_dev);
1357         usb_put_dev(udev);
1358 err_alloc:
1359         return ret;
1360 }
1361
1362 static void ath9k_hif_usb_reboot(struct usb_device *udev)
1363 {
1364         u32 reboot_cmd = 0xffffffff;
1365         void *buf;
1366         int ret;
1367
1368         buf = kmemdup(&reboot_cmd, 4, GFP_KERNEL);
1369         if (!buf)
1370                 return;
1371
1372         ret = usb_interrupt_msg(udev, usb_sndintpipe(udev, USB_REG_OUT_PIPE),
1373                            buf, 4, NULL, HZ);
1374         if (ret)
1375                 dev_err(&udev->dev, "ath9k_htc: USB reboot failed\n");
1376
1377         kfree(buf);
1378 }
1379
1380 static void ath9k_hif_usb_disconnect(struct usb_interface *interface)
1381 {
1382         struct usb_device *udev = interface_to_usbdev(interface);
1383         struct hif_device_usb *hif_dev = usb_get_intfdata(interface);
1384         bool unplugged = (udev->state == USB_STATE_NOTATTACHED) ? true : false;
1385
1386         if (!hif_dev)
1387                 return;
1388
1389         wait_for_completion(&hif_dev->fw_done);
1390
1391         if (hif_dev->flags & HIF_USB_READY) {
1392                 ath9k_htc_hw_deinit(hif_dev->htc_handle, unplugged);
1393                 ath9k_hif_usb_dev_deinit(hif_dev);
1394                 ath9k_destoy_wmi(hif_dev->htc_handle->drv_priv);
1395                 ath9k_htc_hw_free(hif_dev->htc_handle);
1396         }
1397
1398         usb_set_intfdata(interface, NULL);
1399
1400         /* If firmware was loaded we should drop it
1401          * go back to first stage bootloader. */
1402         if (!unplugged && (hif_dev->flags & HIF_USB_READY))
1403                 ath9k_hif_usb_reboot(udev);
1404
1405         kfree(hif_dev);
1406         dev_info(&udev->dev, "ath9k_htc: USB layer deinitialized\n");
1407         usb_put_dev(udev);
1408 }
1409
1410 #ifdef CONFIG_PM
1411 static int ath9k_hif_usb_suspend(struct usb_interface *interface,
1412                                  pm_message_t message)
1413 {
1414         struct hif_device_usb *hif_dev = usb_get_intfdata(interface);
1415
1416         /*
1417          * The device has to be set to FULLSLEEP mode in case no
1418          * interface is up.
1419          */
1420         if (!(hif_dev->flags & HIF_USB_START))
1421                 ath9k_htc_suspend(hif_dev->htc_handle);
1422
1423         wait_for_completion(&hif_dev->fw_done);
1424
1425         if (hif_dev->flags & HIF_USB_READY)
1426                 ath9k_hif_usb_dealloc_urbs(hif_dev);
1427
1428         return 0;
1429 }
1430
1431 static int ath9k_hif_usb_resume(struct usb_interface *interface)
1432 {
1433         struct hif_device_usb *hif_dev = usb_get_intfdata(interface);
1434         struct htc_target *htc_handle = hif_dev->htc_handle;
1435         int ret;
1436         const struct firmware *fw;
1437
1438         ret = ath9k_hif_usb_alloc_urbs(hif_dev);
1439         if (ret)
1440                 return ret;
1441
1442         if (hif_dev->flags & HIF_USB_READY) {
1443                 /* request cached firmware during suspend/resume cycle */
1444                 ret = request_firmware(&fw, hif_dev->fw_name,
1445                                        &hif_dev->udev->dev);
1446                 if (ret)
1447                         goto fail_resume;
1448
1449                 hif_dev->fw_data = fw->data;
1450                 hif_dev->fw_size = fw->size;
1451                 ret = ath9k_hif_usb_download_fw(hif_dev);
1452                 release_firmware(fw);
1453                 if (ret)
1454                         goto fail_resume;
1455         } else {
1456                 ath9k_hif_usb_dealloc_urbs(hif_dev);
1457                 return -EIO;
1458         }
1459
1460         mdelay(100);
1461
1462         ret = ath9k_htc_resume(htc_handle);
1463
1464         if (ret)
1465                 goto fail_resume;
1466
1467         return 0;
1468
1469 fail_resume:
1470         ath9k_hif_usb_dealloc_urbs(hif_dev);
1471
1472         return ret;
1473 }
1474 #endif
1475
1476 static struct usb_driver ath9k_hif_usb_driver = {
1477         .name = KBUILD_MODNAME,
1478         .probe = ath9k_hif_usb_probe,
1479         .disconnect = ath9k_hif_usb_disconnect,
1480 #ifdef CONFIG_PM
1481         .suspend = ath9k_hif_usb_suspend,
1482         .resume = ath9k_hif_usb_resume,
1483         .reset_resume = ath9k_hif_usb_resume,
1484 #endif
1485         .id_table = ath9k_hif_usb_ids,
1486         .soft_unbind = 1,
1487         .disable_hub_initiated_lpm = 1,
1488 };
1489
1490 int ath9k_hif_usb_init(void)
1491 {
1492         return usb_register(&ath9k_hif_usb_driver);
1493 }
1494
1495 void ath9k_hif_usb_exit(void)
1496 {
1497         usb_deregister(&ath9k_hif_usb_driver);
1498 }