blob: 77c8ded8de57bd7738bf62925383414cb01da951 [file] [log] [blame]
Sujithfb9987d2010-03-17 14:25:25 +05301/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2010-2011 Atheros Communications Inc.
Sujithfb9987d2010-03-17 14:25:25 +05303 *
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
Pavel Roskin78fa99a2011-07-15 19:06:33 -040017#include <asm/unaligned.h>
Sujithfb9987d2010-03-17 14:25:25 +053018#include "htc.h"
19
John W. Linvilled0ee0eb2010-06-23 14:20:45 -040020/* identify firmware images */
Sujith Manoharance18f392011-04-13 11:22:42 +053021#define FIRMWARE_AR7010_1_1 "htc_7010.fw"
22#define FIRMWARE_AR9271 "htc_9271.fw"
John W. Linvilled0ee0eb2010-06-23 14:20:45 -040023
John W. Linvilled0ee0eb2010-06-23 14:20:45 -040024MODULE_FIRMWARE(FIRMWARE_AR7010_1_1);
25MODULE_FIRMWARE(FIRMWARE_AR9271);
26
Sujithfb9987d2010-03-17 14:25:25 +053027static struct usb_device_id ath9k_hif_usb_ids[] = {
Sujith4e63f762010-06-17 10:29:01 +053028 { USB_DEVICE(0x0cf3, 0x9271) }, /* Atheros */
29 { USB_DEVICE(0x0cf3, 0x1006) }, /* Atheros */
Sujith4e63f762010-06-17 10:29:01 +053030 { USB_DEVICE(0x0846, 0x9030) }, /* Netgear N150 */
Sujith4e63f762010-06-17 10:29:01 +053031 { USB_DEVICE(0x07D1, 0x3A10) }, /* Dlink Wireless 150 */
32 { USB_DEVICE(0x13D3, 0x3327) }, /* Azurewave */
33 { USB_DEVICE(0x13D3, 0x3328) }, /* Azurewave */
Haitao Zhangac618d72010-11-07 12:50:24 +080034 { USB_DEVICE(0x13D3, 0x3346) }, /* IMC Networks */
Rajkumar Manoharan32b08952010-11-10 17:51:24 +053035 { USB_DEVICE(0x13D3, 0x3348) }, /* Azurewave */
36 { USB_DEVICE(0x13D3, 0x3349) }, /* Azurewave */
37 { USB_DEVICE(0x13D3, 0x3350) }, /* Azurewave */
Sujith4e63f762010-06-17 10:29:01 +053038 { USB_DEVICE(0x04CA, 0x4605) }, /* Liteon */
Rajkumar Manoharan32b08952010-11-10 17:51:24 +053039 { USB_DEVICE(0x040D, 0x3801) }, /* VIA */
Sujith Manoharan452d7dd2010-12-13 07:39:32 +053040 { USB_DEVICE(0x0cf3, 0xb003) }, /* Ubiquiti WifiStation Ext */
Luis R. Rodriguez8c345592011-09-29 10:42:19 -070041 { USB_DEVICE(0x057c, 0x8403) }, /* AVM FRITZ!WLAN 11N v2 USB */
Sujith Manoharan0b5ead92010-12-07 16:31:38 +053042
43 { USB_DEVICE(0x0cf3, 0x7015),
44 .driver_info = AR9287_USB }, /* Atheros */
Rajkumar Manoharan64f12172010-11-19 16:53:20 +053045 { USB_DEVICE(0x1668, 0x1200),
Sujith Manoharan0b5ead92010-12-07 16:31:38 +053046 .driver_info = AR9287_USB }, /* Verizon */
47
48 { USB_DEVICE(0x0cf3, 0x7010),
49 .driver_info = AR9280_USB }, /* Atheros */
50 { USB_DEVICE(0x0846, 0x9018),
51 .driver_info = AR9280_USB }, /* Netgear WNDA3200 */
52 { USB_DEVICE(0x083A, 0xA704),
53 .driver_info = AR9280_USB }, /* SMC Networks */
Mohammed Shafi Shajakhan5cf6fa72011-06-28 20:13:41 +053054 { USB_DEVICE(0x0411, 0x017f),
55 .driver_info = AR9280_USB }, /* Sony UWA-BR100 */
Sujith Manoharan0b5ead92010-12-07 16:31:38 +053056
Sujith Manoharan36bcce42011-02-21 07:47:52 +053057 { USB_DEVICE(0x0cf3, 0x20ff),
58 .driver_info = STORAGE_DEVICE },
59
Sujithfb9987d2010-03-17 14:25:25 +053060 { },
61};
62
63MODULE_DEVICE_TABLE(usb, ath9k_hif_usb_ids);
64
65static int __hif_usb_tx(struct hif_device_usb *hif_dev);
66
67static void hif_usb_regout_cb(struct urb *urb)
68{
69 struct cmd_buf *cmd = (struct cmd_buf *)urb->context;
Sujithfb9987d2010-03-17 14:25:25 +053070
71 switch (urb->status) {
72 case 0:
73 break;
74 case -ENOENT:
75 case -ECONNRESET:
Sujithfb9987d2010-03-17 14:25:25 +053076 case -ENODEV:
77 case -ESHUTDOWN:
Sujith6f0f2662010-04-06 15:28:17 +053078 goto free;
Sujithfb9987d2010-03-17 14:25:25 +053079 default:
80 break;
81 }
82
83 if (cmd) {
84 ath9k_htc_txcompletion_cb(cmd->hif_dev->htc_handle,
Sujith Manoharan2f801942011-04-13 11:26:46 +053085 cmd->skb, true);
Sujithfb9987d2010-03-17 14:25:25 +053086 kfree(cmd);
Sujithfb9987d2010-03-17 14:25:25 +053087 }
Sujith6f0f2662010-04-06 15:28:17 +053088
89 return;
90free:
Ming Lei0fa35a52010-04-13 00:29:15 +080091 kfree_skb(cmd->skb);
Sujith6f0f2662010-04-06 15:28:17 +053092 kfree(cmd);
Sujithfb9987d2010-03-17 14:25:25 +053093}
94
95static int hif_usb_send_regout(struct hif_device_usb *hif_dev,
96 struct sk_buff *skb)
97{
98 struct urb *urb;
99 struct cmd_buf *cmd;
100 int ret = 0;
101
102 urb = usb_alloc_urb(0, GFP_KERNEL);
103 if (urb == NULL)
104 return -ENOMEM;
105
106 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
107 if (cmd == NULL) {
108 usb_free_urb(urb);
109 return -ENOMEM;
110 }
111
112 cmd->skb = skb;
113 cmd->hif_dev = hif_dev;
114
Rajkumar Manoharan4a0e8ecc2010-09-14 14:35:55 +0530115 usb_fill_bulk_urb(urb, hif_dev->udev,
116 usb_sndbulkpipe(hif_dev->udev, USB_REG_OUT_PIPE),
Sujithfb9987d2010-03-17 14:25:25 +0530117 skb->data, skb->len,
Rajkumar Manoharan4a0e8ecc2010-09-14 14:35:55 +0530118 hif_usb_regout_cb, cmd);
Sujithfb9987d2010-03-17 14:25:25 +0530119
Sujith6f0f2662010-04-06 15:28:17 +0530120 usb_anchor_urb(urb, &hif_dev->regout_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530121 ret = usb_submit_urb(urb, GFP_KERNEL);
122 if (ret) {
Sujith6f0f2662010-04-06 15:28:17 +0530123 usb_unanchor_urb(urb);
Sujithfb9987d2010-03-17 14:25:25 +0530124 kfree(cmd);
125 }
Sujith6f0f2662010-04-06 15:28:17 +0530126 usb_free_urb(urb);
Sujithfb9987d2010-03-17 14:25:25 +0530127
128 return ret;
129}
130
Sujith Manoharan2f801942011-04-13 11:26:46 +0530131static void hif_usb_mgmt_cb(struct urb *urb)
132{
133 struct cmd_buf *cmd = (struct cmd_buf *)urb->context;
Rajkumar Manoharan02c51722011-07-17 11:38:49 +0530134 struct hif_device_usb *hif_dev;
Sujith Manoharan2f801942011-04-13 11:26:46 +0530135 bool txok = true;
136
137 if (!cmd || !cmd->skb || !cmd->hif_dev)
138 return;
139
Rajkumar Manoharan02c51722011-07-17 11:38:49 +0530140 hif_dev = cmd->hif_dev;
141
Sujith Manoharan2f801942011-04-13 11:26:46 +0530142 switch (urb->status) {
143 case 0:
144 break;
145 case -ENOENT:
146 case -ECONNRESET:
147 case -ENODEV:
148 case -ESHUTDOWN:
149 txok = false;
150
151 /*
152 * If the URBs are being flushed, no need to complete
153 * this packet.
154 */
155 spin_lock(&hif_dev->tx.tx_lock);
156 if (hif_dev->tx.flags & HIF_USB_TX_FLUSH) {
157 spin_unlock(&hif_dev->tx.tx_lock);
158 dev_kfree_skb_any(cmd->skb);
159 kfree(cmd);
160 return;
161 }
162 spin_unlock(&hif_dev->tx.tx_lock);
163
164 break;
165 default:
166 txok = false;
167 break;
168 }
169
170 skb_pull(cmd->skb, 4);
171 ath9k_htc_txcompletion_cb(cmd->hif_dev->htc_handle,
172 cmd->skb, txok);
173 kfree(cmd);
174}
175
176static int hif_usb_send_mgmt(struct hif_device_usb *hif_dev,
177 struct sk_buff *skb)
178{
179 struct urb *urb;
180 struct cmd_buf *cmd;
181 int ret = 0;
182 __le16 *hdr;
183
184 urb = usb_alloc_urb(0, GFP_ATOMIC);
185 if (urb == NULL)
186 return -ENOMEM;
187
188 cmd = kzalloc(sizeof(*cmd), GFP_ATOMIC);
189 if (cmd == NULL) {
190 usb_free_urb(urb);
191 return -ENOMEM;
192 }
193
194 cmd->skb = skb;
195 cmd->hif_dev = hif_dev;
196
197 hdr = (__le16 *) skb_push(skb, 4);
198 *hdr++ = cpu_to_le16(skb->len - 4);
199 *hdr++ = cpu_to_le16(ATH_USB_TX_STREAM_MODE_TAG);
200
201 usb_fill_bulk_urb(urb, hif_dev->udev,
202 usb_sndbulkpipe(hif_dev->udev, USB_WLAN_TX_PIPE),
203 skb->data, skb->len,
204 hif_usb_mgmt_cb, cmd);
205
206 usb_anchor_urb(urb, &hif_dev->mgmt_submitted);
207 ret = usb_submit_urb(urb, GFP_ATOMIC);
208 if (ret) {
209 usb_unanchor_urb(urb);
210 kfree(cmd);
211 }
212 usb_free_urb(urb);
213
214 return ret;
215}
216
Sujitheac8e382010-04-16 11:54:00 +0530217static inline void ath9k_skb_queue_purge(struct hif_device_usb *hif_dev,
218 struct sk_buff_head *list)
Ming Leif8e1d082010-04-13 00:29:27 +0800219{
220 struct sk_buff *skb;
Sujitheac8e382010-04-16 11:54:00 +0530221
222 while ((skb = __skb_dequeue(list)) != NULL) {
Ming Leif8e1d082010-04-13 00:29:27 +0800223 dev_kfree_skb_any(skb);
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530224 }
225}
226
227static inline void ath9k_skb_queue_complete(struct hif_device_usb *hif_dev,
228 struct sk_buff_head *queue,
229 bool txok)
230{
231 struct sk_buff *skb;
232
233 while ((skb = __skb_dequeue(queue)) != NULL) {
234 ath9k_htc_txcompletion_cb(hif_dev->htc_handle,
235 skb, txok);
John W. Linvilledfa8fc62011-04-14 10:38:22 -0400236 if (txok)
237 TX_STAT_INC(skb_success);
238 else
239 TX_STAT_INC(skb_failed);
Sujitheac8e382010-04-16 11:54:00 +0530240 }
Ming Leif8e1d082010-04-13 00:29:27 +0800241}
242
Sujithc11d8f82010-04-23 10:28:09 +0530243static void hif_usb_tx_cb(struct urb *urb)
244{
245 struct tx_buf *tx_buf = (struct tx_buf *) urb->context;
Dan Carpenter690e7812010-05-14 16:50:56 +0200246 struct hif_device_usb *hif_dev;
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530247 bool txok = true;
Sujithc11d8f82010-04-23 10:28:09 +0530248
Dan Carpenter690e7812010-05-14 16:50:56 +0200249 if (!tx_buf || !tx_buf->hif_dev)
Sujithc11d8f82010-04-23 10:28:09 +0530250 return;
251
Dan Carpenter690e7812010-05-14 16:50:56 +0200252 hif_dev = tx_buf->hif_dev;
253
Sujithc11d8f82010-04-23 10:28:09 +0530254 switch (urb->status) {
255 case 0:
256 break;
257 case -ENOENT:
258 case -ECONNRESET:
259 case -ENODEV:
260 case -ESHUTDOWN:
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530261 txok = false;
Sujith Manoharanff8f59b2010-12-28 14:28:05 +0530262
263 /*
264 * If the URBs are being flushed, no need to add this
265 * URB to the free list.
266 */
267 spin_lock(&hif_dev->tx.tx_lock);
268 if (hif_dev->tx.flags & HIF_USB_TX_FLUSH) {
269 spin_unlock(&hif_dev->tx.tx_lock);
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530270 ath9k_skb_queue_purge(hif_dev, &tx_buf->skb_queue);
Sujith Manoharanff8f59b2010-12-28 14:28:05 +0530271 return;
272 }
273 spin_unlock(&hif_dev->tx.tx_lock);
274
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530275 break;
Sujithc11d8f82010-04-23 10:28:09 +0530276 default:
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530277 txok = false;
Sujithc11d8f82010-04-23 10:28:09 +0530278 break;
279 }
280
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530281 ath9k_skb_queue_complete(hif_dev, &tx_buf->skb_queue, txok);
Sujithc11d8f82010-04-23 10:28:09 +0530282
Sujithc11d8f82010-04-23 10:28:09 +0530283 /* Re-initialize the SKB queue */
284 tx_buf->len = tx_buf->offset = 0;
285 __skb_queue_head_init(&tx_buf->skb_queue);
286
287 /* Add this TX buffer to the free list */
288 spin_lock(&hif_dev->tx.tx_lock);
289 list_move_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
290 hif_dev->tx.tx_buf_cnt++;
291 if (!(hif_dev->tx.flags & HIF_USB_TX_STOP))
292 __hif_usb_tx(hif_dev); /* Check for pending SKBs */
293 TX_STAT_INC(buf_completed);
294 spin_unlock(&hif_dev->tx.tx_lock);
295}
296
Sujithfb9987d2010-03-17 14:25:25 +0530297/* TX lock has to be taken */
298static int __hif_usb_tx(struct hif_device_usb *hif_dev)
299{
300 struct tx_buf *tx_buf = NULL;
301 struct sk_buff *nskb = NULL;
302 int ret = 0, i;
Sujith Manoharan2c273922011-02-27 09:23:52 +0530303 u16 tx_skb_cnt = 0;
Sujithfb9987d2010-03-17 14:25:25 +0530304 u8 *buf;
Sujith Manoharan2c273922011-02-27 09:23:52 +0530305 __le16 *hdr;
Sujithfb9987d2010-03-17 14:25:25 +0530306
307 if (hif_dev->tx.tx_skb_cnt == 0)
308 return 0;
309
310 /* Check if a free TX buffer is available */
311 if (list_empty(&hif_dev->tx.tx_buf))
312 return 0;
313
314 tx_buf = list_first_entry(&hif_dev->tx.tx_buf, struct tx_buf, list);
Sujithc11d8f82010-04-23 10:28:09 +0530315 list_move_tail(&tx_buf->list, &hif_dev->tx.tx_pending);
Sujithfb9987d2010-03-17 14:25:25 +0530316 hif_dev->tx.tx_buf_cnt--;
317
318 tx_skb_cnt = min_t(u16, hif_dev->tx.tx_skb_cnt, MAX_TX_AGGR_NUM);
319
320 for (i = 0; i < tx_skb_cnt; i++) {
321 nskb = __skb_dequeue(&hif_dev->tx.tx_skb_queue);
322
323 /* Should never be NULL */
324 BUG_ON(!nskb);
325
326 hif_dev->tx.tx_skb_cnt--;
327
328 buf = tx_buf->buf;
329 buf += tx_buf->offset;
Sujith Manoharan2c273922011-02-27 09:23:52 +0530330 hdr = (__le16 *)buf;
331 *hdr++ = cpu_to_le16(nskb->len);
332 *hdr++ = cpu_to_le16(ATH_USB_TX_STREAM_MODE_TAG);
Sujithfb9987d2010-03-17 14:25:25 +0530333 buf += 4;
334 memcpy(buf, nskb->data, nskb->len);
335 tx_buf->len = nskb->len + 4;
336
337 if (i < (tx_skb_cnt - 1))
338 tx_buf->offset += (((tx_buf->len - 1) / 4) + 1) * 4;
339
340 if (i == (tx_skb_cnt - 1))
341 tx_buf->len += tx_buf->offset;
342
343 __skb_queue_tail(&tx_buf->skb_queue, nskb);
344 TX_STAT_INC(skb_queued);
345 }
346
347 usb_fill_bulk_urb(tx_buf->urb, hif_dev->udev,
348 usb_sndbulkpipe(hif_dev->udev, USB_WLAN_TX_PIPE),
349 tx_buf->buf, tx_buf->len,
350 hif_usb_tx_cb, tx_buf);
351
352 ret = usb_submit_urb(tx_buf->urb, GFP_ATOMIC);
353 if (ret) {
354 tx_buf->len = tx_buf->offset = 0;
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530355 ath9k_skb_queue_complete(hif_dev, &tx_buf->skb_queue, false);
Sujithfb9987d2010-03-17 14:25:25 +0530356 __skb_queue_head_init(&tx_buf->skb_queue);
357 list_move_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
358 hif_dev->tx.tx_buf_cnt++;
359 }
360
361 if (!ret)
362 TX_STAT_INC(buf_queued);
363
364 return ret;
365}
366
Sujith Manoharan40dc9e42011-04-13 11:24:31 +0530367static int hif_usb_send_tx(struct hif_device_usb *hif_dev, struct sk_buff *skb)
Sujithfb9987d2010-03-17 14:25:25 +0530368{
Sujith Manoharan40dc9e42011-04-13 11:24:31 +0530369 struct ath9k_htc_tx_ctl *tx_ctl;
Sujithfb9987d2010-03-17 14:25:25 +0530370 unsigned long flags;
Sujith Manoharan2f801942011-04-13 11:26:46 +0530371 int ret = 0;
Sujithfb9987d2010-03-17 14:25:25 +0530372
373 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
374
375 if (hif_dev->tx.flags & HIF_USB_TX_STOP) {
376 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
377 return -ENODEV;
378 }
379
380 /* Check if the max queue count has been reached */
381 if (hif_dev->tx.tx_skb_cnt > MAX_TX_BUF_NUM) {
382 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
383 return -ENOMEM;
384 }
385
Sujith Manoharan2f801942011-04-13 11:26:46 +0530386 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
Sujithfb9987d2010-03-17 14:25:25 +0530387
Sujith Manoharan40dc9e42011-04-13 11:24:31 +0530388 tx_ctl = HTC_SKB_CB(skb);
389
Sujith Manoharan2f801942011-04-13 11:26:46 +0530390 /* Mgmt/Beacon frames don't use the TX buffer pool */
391 if ((tx_ctl->type == ATH9K_HTC_MGMT) ||
392 (tx_ctl->type == ATH9K_HTC_BEACON)) {
393 ret = hif_usb_send_mgmt(hif_dev, skb);
394 }
395
396 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
397
398 if ((tx_ctl->type == ATH9K_HTC_NORMAL) ||
399 (tx_ctl->type == ATH9K_HTC_AMPDU)) {
400 __skb_queue_tail(&hif_dev->tx.tx_skb_queue, skb);
401 hif_dev->tx.tx_skb_cnt++;
402 }
Sujithfb9987d2010-03-17 14:25:25 +0530403
404 /* Check if AMPDUs have to be sent immediately */
Sujith Manoharan2f801942011-04-13 11:26:46 +0530405 if ((hif_dev->tx.tx_buf_cnt == MAX_TX_URB_NUM) &&
Sujithfb9987d2010-03-17 14:25:25 +0530406 (hif_dev->tx.tx_skb_cnt < 2)) {
407 __hif_usb_tx(hif_dev);
408 }
409
410 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
411
Sujith Manoharan2f801942011-04-13 11:26:46 +0530412 return ret;
Sujithfb9987d2010-03-17 14:25:25 +0530413}
414
Sujith Manoharane1fe7c32011-04-13 11:26:06 +0530415static void hif_usb_start(void *hif_handle)
Sujithfb9987d2010-03-17 14:25:25 +0530416{
417 struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
418 unsigned long flags;
419
420 hif_dev->flags |= HIF_USB_START;
421
422 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
423 hif_dev->tx.flags &= ~HIF_USB_TX_STOP;
424 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
425}
426
Sujith Manoharane1fe7c32011-04-13 11:26:06 +0530427static void hif_usb_stop(void *hif_handle)
Sujithfb9987d2010-03-17 14:25:25 +0530428{
429 struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
Sujith Manoharanff8f59b2010-12-28 14:28:05 +0530430 struct tx_buf *tx_buf = NULL, *tx_buf_tmp = NULL;
Sujithfb9987d2010-03-17 14:25:25 +0530431 unsigned long flags;
432
433 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
Sujith Manoharanb587fc82011-04-13 11:25:59 +0530434 ath9k_skb_queue_complete(hif_dev, &hif_dev->tx.tx_skb_queue, false);
Sujithfb9987d2010-03-17 14:25:25 +0530435 hif_dev->tx.tx_skb_cnt = 0;
436 hif_dev->tx.flags |= HIF_USB_TX_STOP;
437 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
Sujith Manoharanff8f59b2010-12-28 14:28:05 +0530438
439 /* The pending URBs have to be canceled. */
440 list_for_each_entry_safe(tx_buf, tx_buf_tmp,
441 &hif_dev->tx.tx_pending, list) {
442 usb_kill_urb(tx_buf->urb);
443 }
Sujith Manoharan2f801942011-04-13 11:26:46 +0530444
445 usb_kill_anchored_urbs(&hif_dev->mgmt_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530446}
447
Sujith Manoharan40dc9e42011-04-13 11:24:31 +0530448static int hif_usb_send(void *hif_handle, u8 pipe_id, struct sk_buff *skb)
Sujithfb9987d2010-03-17 14:25:25 +0530449{
450 struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
451 int ret = 0;
452
453 switch (pipe_id) {
454 case USB_WLAN_TX_PIPE:
Sujith Manoharan40dc9e42011-04-13 11:24:31 +0530455 ret = hif_usb_send_tx(hif_dev, skb);
Sujithfb9987d2010-03-17 14:25:25 +0530456 break;
457 case USB_REG_OUT_PIPE:
458 ret = hif_usb_send_regout(hif_dev, skb);
459 break;
460 default:
Sujith6335ed02010-03-29 16:07:15 +0530461 dev_err(&hif_dev->udev->dev,
462 "ath9k_htc: Invalid TX pipe: %d\n", pipe_id);
Sujithfb9987d2010-03-17 14:25:25 +0530463 ret = -EINVAL;
464 break;
465 }
466
467 return ret;
468}
469
Sujith Manoharan84c9e1642011-04-13 11:26:11 +0530470static inline bool check_index(struct sk_buff *skb, u8 idx)
471{
472 struct ath9k_htc_tx_ctl *tx_ctl;
473
474 tx_ctl = HTC_SKB_CB(skb);
475
476 if ((tx_ctl->type == ATH9K_HTC_AMPDU) &&
477 (tx_ctl->sta_idx == idx))
478 return true;
479
480 return false;
481}
482
483static void hif_usb_sta_drain(void *hif_handle, u8 idx)
484{
485 struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
486 struct sk_buff *skb, *tmp;
487 unsigned long flags;
488
489 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
490
491 skb_queue_walk_safe(&hif_dev->tx.tx_skb_queue, skb, tmp) {
492 if (check_index(skb, idx)) {
493 __skb_unlink(skb, &hif_dev->tx.tx_skb_queue);
494 ath9k_htc_txcompletion_cb(hif_dev->htc_handle,
495 skb, false);
496 hif_dev->tx.tx_skb_cnt--;
497 TX_STAT_INC(skb_failed);
498 }
499 }
500
501 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
502}
503
Sujithfb9987d2010-03-17 14:25:25 +0530504static struct ath9k_htc_hif hif_usb = {
505 .transport = ATH9K_HIF_USB,
506 .name = "ath9k_hif_usb",
507
508 .control_ul_pipe = USB_REG_OUT_PIPE,
509 .control_dl_pipe = USB_REG_IN_PIPE,
510
511 .start = hif_usb_start,
512 .stop = hif_usb_stop,
Sujith Manoharan84c9e1642011-04-13 11:26:11 +0530513 .sta_drain = hif_usb_sta_drain,
Sujithfb9987d2010-03-17 14:25:25 +0530514 .send = hif_usb_send,
515};
516
517static void ath9k_hif_usb_rx_stream(struct hif_device_usb *hif_dev,
518 struct sk_buff *skb)
519{
Sujithc5032692010-04-06 15:28:15 +0530520 struct sk_buff *nskb, *skb_pool[MAX_PKT_NUM_IN_TRANSFER];
Joe Perches44b23b42010-11-30 12:19:11 -0800521 int index = 0, i = 0, len = skb->len;
522 int rx_remain_len, rx_pkt_len;
523 u16 pool_index = 0;
Sujithfb9987d2010-03-17 14:25:25 +0530524 u8 *ptr;
525
Sujith46baa1a2010-04-06 15:28:11 +0530526 spin_lock(&hif_dev->rx_lock);
527
Sujithfb9987d2010-03-17 14:25:25 +0530528 rx_remain_len = hif_dev->rx_remain_len;
529 rx_pkt_len = hif_dev->rx_transfer_len;
530
531 if (rx_remain_len != 0) {
532 struct sk_buff *remain_skb = hif_dev->remain_skb;
533
534 if (remain_skb) {
535 ptr = (u8 *) remain_skb->data;
536
537 index = rx_remain_len;
538 rx_remain_len -= hif_dev->rx_pad_len;
539 ptr += rx_pkt_len;
540
541 memcpy(ptr, skb->data, rx_remain_len);
542
543 rx_pkt_len += rx_remain_len;
544 hif_dev->rx_remain_len = 0;
545 skb_put(remain_skb, rx_pkt_len);
546
547 skb_pool[pool_index++] = remain_skb;
548
549 } else {
550 index = rx_remain_len;
551 }
552 }
553
Sujith46baa1a2010-04-06 15:28:11 +0530554 spin_unlock(&hif_dev->rx_lock);
555
Sujithfb9987d2010-03-17 14:25:25 +0530556 while (index < len) {
Joe Perches44b23b42010-11-30 12:19:11 -0800557 u16 pkt_len;
558 u16 pkt_tag;
559 u16 pad_len;
560 int chk_idx;
561
Sujithfb9987d2010-03-17 14:25:25 +0530562 ptr = (u8 *) skb->data;
563
Pavel Roskin78fa99a2011-07-15 19:06:33 -0400564 pkt_len = get_unaligned_le16(ptr + index);
565 pkt_tag = get_unaligned_le16(ptr + index + 2);
Sujithfb9987d2010-03-17 14:25:25 +0530566
Joe Perches44b23b42010-11-30 12:19:11 -0800567 if (pkt_tag != ATH_USB_RX_STREAM_MODE_TAG) {
Sujithfb9987d2010-03-17 14:25:25 +0530568 RX_STAT_INC(skb_dropped);
Sujithfb9987d2010-03-17 14:25:25 +0530569 return;
570 }
Joe Perches44b23b42010-11-30 12:19:11 -0800571
572 pad_len = 4 - (pkt_len & 0x3);
573 if (pad_len == 4)
574 pad_len = 0;
575
576 chk_idx = index;
577 index = index + 4 + pkt_len + pad_len;
578
579 if (index > MAX_RX_BUF_SIZE) {
580 spin_lock(&hif_dev->rx_lock);
581 hif_dev->rx_remain_len = index - MAX_RX_BUF_SIZE;
582 hif_dev->rx_transfer_len =
583 MAX_RX_BUF_SIZE - chk_idx - 4;
584 hif_dev->rx_pad_len = pad_len;
585
586 nskb = __dev_alloc_skb(pkt_len + 32, GFP_ATOMIC);
587 if (!nskb) {
588 dev_err(&hif_dev->udev->dev,
589 "ath9k_htc: RX memory allocation error\n");
590 spin_unlock(&hif_dev->rx_lock);
591 goto err;
592 }
593 skb_reserve(nskb, 32);
594 RX_STAT_INC(skb_allocated);
595
596 memcpy(nskb->data, &(skb->data[chk_idx+4]),
597 hif_dev->rx_transfer_len);
598
599 /* Record the buffer pointer */
600 hif_dev->remain_skb = nskb;
601 spin_unlock(&hif_dev->rx_lock);
602 } else {
603 nskb = __dev_alloc_skb(pkt_len + 32, GFP_ATOMIC);
604 if (!nskb) {
605 dev_err(&hif_dev->udev->dev,
606 "ath9k_htc: RX memory allocation error\n");
607 goto err;
608 }
609 skb_reserve(nskb, 32);
610 RX_STAT_INC(skb_allocated);
611
612 memcpy(nskb->data, &(skb->data[chk_idx+4]), pkt_len);
613 skb_put(nskb, pkt_len);
614 skb_pool[pool_index++] = nskb;
615 }
Sujithfb9987d2010-03-17 14:25:25 +0530616 }
617
618err:
Sujithfb9987d2010-03-17 14:25:25 +0530619 for (i = 0; i < pool_index; i++) {
620 ath9k_htc_rx_msg(hif_dev->htc_handle, skb_pool[i],
621 skb_pool[i]->len, USB_WLAN_RX_PIPE);
622 RX_STAT_INC(skb_completed);
623 }
624}
625
626static void ath9k_hif_usb_rx_cb(struct urb *urb)
627{
628 struct sk_buff *skb = (struct sk_buff *) urb->context;
Joe Perchesb2767362010-11-30 13:42:08 -0800629 struct hif_device_usb *hif_dev =
Sujithfb9987d2010-03-17 14:25:25 +0530630 usb_get_intfdata(usb_ifnum_to_if(urb->dev, 0));
631 int ret;
632
Sujith6335ed02010-03-29 16:07:15 +0530633 if (!skb)
634 return;
635
Sujithfb9987d2010-03-17 14:25:25 +0530636 if (!hif_dev)
637 goto free;
638
639 switch (urb->status) {
640 case 0:
641 break;
642 case -ENOENT:
643 case -ECONNRESET:
644 case -ENODEV:
645 case -ESHUTDOWN:
646 goto free;
647 default:
648 goto resubmit;
649 }
650
651 if (likely(urb->actual_length != 0)) {
652 skb_put(skb, urb->actual_length);
Sujithfb9987d2010-03-17 14:25:25 +0530653 ath9k_hif_usb_rx_stream(hif_dev, skb);
Sujithfb9987d2010-03-17 14:25:25 +0530654 }
655
656resubmit:
657 skb_reset_tail_pointer(skb);
658 skb_trim(skb, 0);
659
Sujith6335ed02010-03-29 16:07:15 +0530660 usb_anchor_urb(urb, &hif_dev->rx_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530661 ret = usb_submit_urb(urb, GFP_ATOMIC);
Sujith6335ed02010-03-29 16:07:15 +0530662 if (ret) {
663 usb_unanchor_urb(urb);
Sujithfb9987d2010-03-17 14:25:25 +0530664 goto free;
Sujith6335ed02010-03-29 16:07:15 +0530665 }
Sujithfb9987d2010-03-17 14:25:25 +0530666
667 return;
668free:
Ming Leif28a7b32010-04-13 00:28:53 +0800669 kfree_skb(skb);
Sujithfb9987d2010-03-17 14:25:25 +0530670}
671
672static void ath9k_hif_usb_reg_in_cb(struct urb *urb)
673{
674 struct sk_buff *skb = (struct sk_buff *) urb->context;
675 struct sk_buff *nskb;
Joe Perchesb2767362010-11-30 13:42:08 -0800676 struct hif_device_usb *hif_dev =
Sujithfb9987d2010-03-17 14:25:25 +0530677 usb_get_intfdata(usb_ifnum_to_if(urb->dev, 0));
678 int ret;
679
Sujith6335ed02010-03-29 16:07:15 +0530680 if (!skb)
681 return;
682
Sujithfb9987d2010-03-17 14:25:25 +0530683 if (!hif_dev)
684 goto free;
685
686 switch (urb->status) {
687 case 0:
688 break;
689 case -ENOENT:
690 case -ECONNRESET:
691 case -ENODEV:
692 case -ESHUTDOWN:
693 goto free;
694 default:
Sujith Manoharan3deff762011-04-13 11:25:23 +0530695 skb_reset_tail_pointer(skb);
696 skb_trim(skb, 0);
697
Sujithfb9987d2010-03-17 14:25:25 +0530698 goto resubmit;
699 }
700
701 if (likely(urb->actual_length != 0)) {
702 skb_put(skb, urb->actual_length);
703
Sujith5ab0af32010-04-23 10:28:17 +0530704 /* Process the command first */
705 ath9k_htc_rx_msg(hif_dev->htc_handle, skb,
706 skb->len, USB_REG_IN_PIPE);
707
708
Ming Leie6c6d332010-04-13 00:29:05 +0800709 nskb = alloc_skb(MAX_REG_IN_BUF_SIZE, GFP_ATOMIC);
Sujith5ab0af32010-04-23 10:28:17 +0530710 if (!nskb) {
711 dev_err(&hif_dev->udev->dev,
712 "ath9k_htc: REG_IN memory allocation failure\n");
713 urb->context = NULL;
714 return;
715 }
Sujithfb9987d2010-03-17 14:25:25 +0530716
Rajkumar Manoharan490b3f42010-11-08 12:49:12 +0530717 usb_fill_bulk_urb(urb, hif_dev->udev,
Rajkumar Manoharan0f529e92010-09-16 19:56:55 +0530718 usb_rcvbulkpipe(hif_dev->udev,
719 USB_REG_IN_PIPE),
Sujithfb9987d2010-03-17 14:25:25 +0530720 nskb->data, MAX_REG_IN_BUF_SIZE,
Rajkumar Manoharan490b3f42010-11-08 12:49:12 +0530721 ath9k_hif_usb_reg_in_cb, nskb);
Sujithfb9987d2010-03-17 14:25:25 +0530722 }
723
724resubmit:
Sujith Manoharan3deff762011-04-13 11:25:23 +0530725 usb_anchor_urb(urb, &hif_dev->reg_in_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530726 ret = usb_submit_urb(urb, GFP_ATOMIC);
Sujith Manoharan3deff762011-04-13 11:25:23 +0530727 if (ret) {
728 usb_unanchor_urb(urb);
Sujithfb9987d2010-03-17 14:25:25 +0530729 goto free;
Sujith Manoharan3deff762011-04-13 11:25:23 +0530730 }
Sujithfb9987d2010-03-17 14:25:25 +0530731
732 return;
733free:
Ming Leie6c6d332010-04-13 00:29:05 +0800734 kfree_skb(skb);
Sujith6335ed02010-03-29 16:07:15 +0530735 urb->context = NULL;
Sujithfb9987d2010-03-17 14:25:25 +0530736}
737
738static void ath9k_hif_usb_dealloc_tx_urbs(struct hif_device_usb *hif_dev)
739{
Sujithfb9987d2010-03-17 14:25:25 +0530740 struct tx_buf *tx_buf = NULL, *tx_buf_tmp = NULL;
Sujith Manoharanff8f59b2010-12-28 14:28:05 +0530741 unsigned long flags;
Sujithfb9987d2010-03-17 14:25:25 +0530742
Sujithc11d8f82010-04-23 10:28:09 +0530743 list_for_each_entry_safe(tx_buf, tx_buf_tmp,
744 &hif_dev->tx.tx_buf, list) {
745 usb_kill_urb(tx_buf->urb);
Sujithfb9987d2010-03-17 14:25:25 +0530746 list_del(&tx_buf->list);
747 usb_free_urb(tx_buf->urb);
748 kfree(tx_buf->buf);
749 kfree(tx_buf);
750 }
751
Sujith Manoharanff8f59b2010-12-28 14:28:05 +0530752 spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
753 hif_dev->tx.flags |= HIF_USB_TX_FLUSH;
754 spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
755
Sujithfb9987d2010-03-17 14:25:25 +0530756 list_for_each_entry_safe(tx_buf, tx_buf_tmp,
757 &hif_dev->tx.tx_pending, list) {
758 usb_kill_urb(tx_buf->urb);
759 list_del(&tx_buf->list);
760 usb_free_urb(tx_buf->urb);
761 kfree(tx_buf->buf);
762 kfree(tx_buf);
763 }
Sujith Manoharan2f801942011-04-13 11:26:46 +0530764
765 usb_kill_anchored_urbs(&hif_dev->mgmt_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530766}
767
768static int ath9k_hif_usb_alloc_tx_urbs(struct hif_device_usb *hif_dev)
769{
770 struct tx_buf *tx_buf;
771 int i;
772
773 INIT_LIST_HEAD(&hif_dev->tx.tx_buf);
774 INIT_LIST_HEAD(&hif_dev->tx.tx_pending);
775 spin_lock_init(&hif_dev->tx.tx_lock);
776 __skb_queue_head_init(&hif_dev->tx.tx_skb_queue);
Sujith Manoharan2f801942011-04-13 11:26:46 +0530777 init_usb_anchor(&hif_dev->mgmt_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530778
779 for (i = 0; i < MAX_TX_URB_NUM; i++) {
780 tx_buf = kzalloc(sizeof(struct tx_buf), GFP_KERNEL);
781 if (!tx_buf)
782 goto err;
783
784 tx_buf->buf = kzalloc(MAX_TX_BUF_SIZE, GFP_KERNEL);
785 if (!tx_buf->buf)
786 goto err;
787
788 tx_buf->urb = usb_alloc_urb(0, GFP_KERNEL);
789 if (!tx_buf->urb)
790 goto err;
791
792 tx_buf->hif_dev = hif_dev;
793 __skb_queue_head_init(&tx_buf->skb_queue);
794
795 list_add_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
796 }
797
798 hif_dev->tx.tx_buf_cnt = MAX_TX_URB_NUM;
799
800 return 0;
801err:
Dan Carpenter76066882010-05-14 16:52:37 +0200802 if (tx_buf) {
803 kfree(tx_buf->buf);
804 kfree(tx_buf);
805 }
Sujithfb9987d2010-03-17 14:25:25 +0530806 ath9k_hif_usb_dealloc_tx_urbs(hif_dev);
807 return -ENOMEM;
808}
809
Sujithfb9987d2010-03-17 14:25:25 +0530810static void ath9k_hif_usb_dealloc_rx_urbs(struct hif_device_usb *hif_dev)
811{
Sujith6335ed02010-03-29 16:07:15 +0530812 usb_kill_anchored_urbs(&hif_dev->rx_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530813}
814
815static int ath9k_hif_usb_alloc_rx_urbs(struct hif_device_usb *hif_dev)
816{
Sujith6335ed02010-03-29 16:07:15 +0530817 struct urb *urb = NULL;
818 struct sk_buff *skb = NULL;
Sujithfb9987d2010-03-17 14:25:25 +0530819 int i, ret;
820
Sujith6335ed02010-03-29 16:07:15 +0530821 init_usb_anchor(&hif_dev->rx_submitted);
Sujith46baa1a2010-04-06 15:28:11 +0530822 spin_lock_init(&hif_dev->rx_lock);
Sujith6335ed02010-03-29 16:07:15 +0530823
Sujithfb9987d2010-03-17 14:25:25 +0530824 for (i = 0; i < MAX_RX_URB_NUM; i++) {
825
826 /* Allocate URB */
Sujith6335ed02010-03-29 16:07:15 +0530827 urb = usb_alloc_urb(0, GFP_KERNEL);
828 if (urb == NULL) {
Sujithfb9987d2010-03-17 14:25:25 +0530829 ret = -ENOMEM;
Sujith6335ed02010-03-29 16:07:15 +0530830 goto err_urb;
Sujithfb9987d2010-03-17 14:25:25 +0530831 }
832
833 /* Allocate buffer */
Ming Leif28a7b32010-04-13 00:28:53 +0800834 skb = alloc_skb(MAX_RX_BUF_SIZE, GFP_KERNEL);
Sujith6335ed02010-03-29 16:07:15 +0530835 if (!skb) {
836 ret = -ENOMEM;
837 goto err_skb;
838 }
839
840 usb_fill_bulk_urb(urb, hif_dev->udev,
841 usb_rcvbulkpipe(hif_dev->udev,
842 USB_WLAN_RX_PIPE),
843 skb->data, MAX_RX_BUF_SIZE,
844 ath9k_hif_usb_rx_cb, skb);
845
846 /* Anchor URB */
847 usb_anchor_urb(urb, &hif_dev->rx_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530848
849 /* Submit URB */
Sujith6335ed02010-03-29 16:07:15 +0530850 ret = usb_submit_urb(urb, GFP_KERNEL);
851 if (ret) {
852 usb_unanchor_urb(urb);
853 goto err_submit;
854 }
Sujith66b10e32010-04-06 15:28:13 +0530855
856 /*
857 * Drop reference count.
858 * This ensures that the URB is freed when killing them.
859 */
860 usb_free_urb(urb);
Sujithfb9987d2010-03-17 14:25:25 +0530861 }
862
863 return 0;
864
Sujith6335ed02010-03-29 16:07:15 +0530865err_submit:
Ming Leif28a7b32010-04-13 00:28:53 +0800866 kfree_skb(skb);
Sujith6335ed02010-03-29 16:07:15 +0530867err_skb:
868 usb_free_urb(urb);
869err_urb:
Sujithfb9987d2010-03-17 14:25:25 +0530870 ath9k_hif_usb_dealloc_rx_urbs(hif_dev);
871 return ret;
872}
873
Sujith Manoharan3deff762011-04-13 11:25:23 +0530874static void ath9k_hif_usb_dealloc_reg_in_urbs(struct hif_device_usb *hif_dev)
Sujithfb9987d2010-03-17 14:25:25 +0530875{
Sujith Manoharan3deff762011-04-13 11:25:23 +0530876 usb_kill_anchored_urbs(&hif_dev->reg_in_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530877}
878
Sujith Manoharan3deff762011-04-13 11:25:23 +0530879static int ath9k_hif_usb_alloc_reg_in_urbs(struct hif_device_usb *hif_dev)
Sujithfb9987d2010-03-17 14:25:25 +0530880{
Sujith Manoharan3deff762011-04-13 11:25:23 +0530881 struct urb *urb = NULL;
882 struct sk_buff *skb = NULL;
883 int i, ret;
Sujithfb9987d2010-03-17 14:25:25 +0530884
Sujith Manoharan3deff762011-04-13 11:25:23 +0530885 init_usb_anchor(&hif_dev->reg_in_submitted);
Sujithfb9987d2010-03-17 14:25:25 +0530886
Sujith Manoharan3deff762011-04-13 11:25:23 +0530887 for (i = 0; i < MAX_REG_IN_URB_NUM; i++) {
Sujithfb9987d2010-03-17 14:25:25 +0530888
Sujith Manoharan3deff762011-04-13 11:25:23 +0530889 /* Allocate URB */
890 urb = usb_alloc_urb(0, GFP_KERNEL);
891 if (urb == NULL) {
892 ret = -ENOMEM;
893 goto err_urb;
894 }
Sujithfb9987d2010-03-17 14:25:25 +0530895
Sujith Manoharan3deff762011-04-13 11:25:23 +0530896 /* Allocate buffer */
897 skb = alloc_skb(MAX_REG_IN_BUF_SIZE, GFP_KERNEL);
898 if (!skb) {
899 ret = -ENOMEM;
900 goto err_skb;
901 }
902
903 usb_fill_bulk_urb(urb, hif_dev->udev,
904 usb_rcvbulkpipe(hif_dev->udev,
905 USB_REG_IN_PIPE),
906 skb->data, MAX_REG_IN_BUF_SIZE,
907 ath9k_hif_usb_reg_in_cb, skb);
908
909 /* Anchor URB */
910 usb_anchor_urb(urb, &hif_dev->reg_in_submitted);
911
912 /* Submit URB */
913 ret = usb_submit_urb(urb, GFP_KERNEL);
914 if (ret) {
915 usb_unanchor_urb(urb);
916 goto err_submit;
917 }
918
919 /*
920 * Drop reference count.
921 * This ensures that the URB is freed when killing them.
922 */
923 usb_free_urb(urb);
924 }
Sujithfb9987d2010-03-17 14:25:25 +0530925
926 return 0;
927
Sujith Manoharan3deff762011-04-13 11:25:23 +0530928err_submit:
929 kfree_skb(skb);
930err_skb:
931 usb_free_urb(urb);
932err_urb:
933 ath9k_hif_usb_dealloc_reg_in_urbs(hif_dev);
934 return ret;
Sujithfb9987d2010-03-17 14:25:25 +0530935}
936
937static int ath9k_hif_usb_alloc_urbs(struct hif_device_usb *hif_dev)
938{
Sujith6f0f2662010-04-06 15:28:17 +0530939 /* Register Write */
940 init_usb_anchor(&hif_dev->regout_submitted);
941
Sujithfb9987d2010-03-17 14:25:25 +0530942 /* TX */
943 if (ath9k_hif_usb_alloc_tx_urbs(hif_dev) < 0)
944 goto err;
945
946 /* RX */
947 if (ath9k_hif_usb_alloc_rx_urbs(hif_dev) < 0)
Rajkumar Manoharanf8036962010-07-07 15:19:18 +0530948 goto err_rx;
Sujithfb9987d2010-03-17 14:25:25 +0530949
Sujith6f0f2662010-04-06 15:28:17 +0530950 /* Register Read */
Sujith Manoharan3deff762011-04-13 11:25:23 +0530951 if (ath9k_hif_usb_alloc_reg_in_urbs(hif_dev) < 0)
Rajkumar Manoharanf8036962010-07-07 15:19:18 +0530952 goto err_reg;
Sujithfb9987d2010-03-17 14:25:25 +0530953
954 return 0;
Rajkumar Manoharanf8036962010-07-07 15:19:18 +0530955err_reg:
956 ath9k_hif_usb_dealloc_rx_urbs(hif_dev);
957err_rx:
958 ath9k_hif_usb_dealloc_tx_urbs(hif_dev);
Sujithfb9987d2010-03-17 14:25:25 +0530959err:
960 return -ENOMEM;
961}
962
Sujith.Manoharan@atheros.com1d8af8c2010-05-11 16:24:40 +0530963static void ath9k_hif_usb_dealloc_urbs(struct hif_device_usb *hif_dev)
964{
965 usb_kill_anchored_urbs(&hif_dev->regout_submitted);
Sujith Manoharan3deff762011-04-13 11:25:23 +0530966 ath9k_hif_usb_dealloc_reg_in_urbs(hif_dev);
Sujith.Manoharan@atheros.com1d8af8c2010-05-11 16:24:40 +0530967 ath9k_hif_usb_dealloc_tx_urbs(hif_dev);
968 ath9k_hif_usb_dealloc_rx_urbs(hif_dev);
969}
970
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +0530971static int ath9k_hif_usb_download_fw(struct hif_device_usb *hif_dev,
972 u32 drv_info)
Sujithfb9987d2010-03-17 14:25:25 +0530973{
974 int transfer, err;
975 const void *data = hif_dev->firmware->data;
976 size_t len = hif_dev->firmware->size;
977 u32 addr = AR9271_FIRMWARE;
978 u8 *buf = kzalloc(4096, GFP_KERNEL);
Sujithb1762862010-06-02 15:53:34 +0530979 u32 firm_offset;
Sujithfb9987d2010-03-17 14:25:25 +0530980
981 if (!buf)
982 return -ENOMEM;
983
984 while (len) {
985 transfer = min_t(int, len, 4096);
986 memcpy(buf, data, transfer);
987
988 err = usb_control_msg(hif_dev->udev,
989 usb_sndctrlpipe(hif_dev->udev, 0),
990 FIRMWARE_DOWNLOAD, 0x40 | USB_DIR_OUT,
991 addr >> 8, 0, buf, transfer, HZ);
992 if (err < 0) {
993 kfree(buf);
994 return err;
995 }
996
997 len -= transfer;
998 data += transfer;
999 addr += transfer;
1000 }
1001 kfree(buf);
1002
Sujith Manoharan0b5ead92010-12-07 16:31:38 +05301003 if (IS_AR7010_DEVICE(drv_info))
Sujithb1762862010-06-02 15:53:34 +05301004 firm_offset = AR7010_FIRMWARE_TEXT;
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +05301005 else
Sujithb1762862010-06-02 15:53:34 +05301006 firm_offset = AR9271_FIRMWARE_TEXT;
1007
Sujithfb9987d2010-03-17 14:25:25 +05301008 /*
1009 * Issue FW download complete command to firmware.
1010 */
1011 err = usb_control_msg(hif_dev->udev, usb_sndctrlpipe(hif_dev->udev, 0),
1012 FIRMWARE_DOWNLOAD_COMP,
1013 0x40 | USB_DIR_OUT,
Sujithb1762862010-06-02 15:53:34 +05301014 firm_offset >> 8, 0, NULL, 0, HZ);
Sujithfb9987d2010-03-17 14:25:25 +05301015 if (err)
1016 return -EIO;
1017
1018 dev_info(&hif_dev->udev->dev, "ath9k_htc: Transferred FW: %s, size: %ld\n",
Sujithce43cee2010-06-02 15:53:30 +05301019 hif_dev->fw_name, (unsigned long) hif_dev->firmware->size);
Sujithfb9987d2010-03-17 14:25:25 +05301020
1021 return 0;
1022}
1023
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +05301024static int ath9k_hif_usb_dev_init(struct hif_device_usb *hif_dev, u32 drv_info)
Sujithfb9987d2010-03-17 14:25:25 +05301025{
Rajkumar Manoharan4a0e8ecc2010-09-14 14:35:55 +05301026 int ret, idx;
1027 struct usb_host_interface *alt = &hif_dev->interface->altsetting[0];
1028 struct usb_endpoint_descriptor *endp;
Sujithfb9987d2010-03-17 14:25:25 +05301029
1030 /* Request firmware */
Sujithce43cee2010-06-02 15:53:30 +05301031 ret = request_firmware(&hif_dev->firmware, hif_dev->fw_name,
1032 &hif_dev->udev->dev);
Sujithfb9987d2010-03-17 14:25:25 +05301033 if (ret) {
1034 dev_err(&hif_dev->udev->dev,
Sujithce43cee2010-06-02 15:53:30 +05301035 "ath9k_htc: Firmware - %s not found\n", hif_dev->fw_name);
Sujithfb9987d2010-03-17 14:25:25 +05301036 goto err_fw_req;
1037 }
1038
Sujith.Manoharan@atheros.com1d8af8c2010-05-11 16:24:40 +05301039 /* Download firmware */
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +05301040 ret = ath9k_hif_usb_download_fw(hif_dev, drv_info);
Sujith.Manoharan@atheros.com1d8af8c2010-05-11 16:24:40 +05301041 if (ret) {
1042 dev_err(&hif_dev->udev->dev,
Sujithce43cee2010-06-02 15:53:30 +05301043 "ath9k_htc: Firmware - %s download failed\n",
1044 hif_dev->fw_name);
Sujith.Manoharan@atheros.com1d8af8c2010-05-11 16:24:40 +05301045 goto err_fw_download;
1046 }
1047
Rajkumar Manoharan4a0e8ecc2010-09-14 14:35:55 +05301048 /* On downloading the firmware to the target, the USB descriptor of EP4
1049 * is 'patched' to change the type of the endpoint to Bulk. This will
1050 * bring down CPU usage during the scan period.
1051 */
1052 for (idx = 0; idx < alt->desc.bNumEndpoints; idx++) {
1053 endp = &alt->endpoint[idx].desc;
Rajkumar Manoharan490b3f42010-11-08 12:49:12 +05301054 if ((endp->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1055 == USB_ENDPOINT_XFER_INT) {
Rajkumar Manoharan4a0e8ecc2010-09-14 14:35:55 +05301056 endp->bmAttributes &= ~USB_ENDPOINT_XFERTYPE_MASK;
1057 endp->bmAttributes |= USB_ENDPOINT_XFER_BULK;
1058 endp->bInterval = 0;
1059 }
1060 }
1061
Rajkumar Manoharan490b3f42010-11-08 12:49:12 +05301062 /* Alloc URBs */
1063 ret = ath9k_hif_usb_alloc_urbs(hif_dev);
1064 if (ret) {
1065 dev_err(&hif_dev->udev->dev,
1066 "ath9k_htc: Unable to allocate URBs\n");
Sujith Manoharan512c0442011-02-21 07:50:38 +05301067 goto err_fw_download;
Rajkumar Manoharan490b3f42010-11-08 12:49:12 +05301068 }
1069
Sujithfb9987d2010-03-17 14:25:25 +05301070 return 0;
1071
Sujith Manoharancaa0a992010-12-07 16:32:02 +05301072err_fw_download:
Sujithfb9987d2010-03-17 14:25:25 +05301073 release_firmware(hif_dev->firmware);
1074err_fw_req:
1075 hif_dev->firmware = NULL;
1076 return ret;
1077}
1078
Sujithfb9987d2010-03-17 14:25:25 +05301079static void ath9k_hif_usb_dev_deinit(struct hif_device_usb *hif_dev)
1080{
1081 ath9k_hif_usb_dealloc_urbs(hif_dev);
1082 if (hif_dev->firmware)
1083 release_firmware(hif_dev->firmware);
1084}
1085
Sujith Manoharan36bcce42011-02-21 07:47:52 +05301086/*
1087 * An exact copy of the function from zd1211rw.
1088 */
1089static int send_eject_command(struct usb_interface *interface)
1090{
1091 struct usb_device *udev = interface_to_usbdev(interface);
1092 struct usb_host_interface *iface_desc = &interface->altsetting[0];
1093 struct usb_endpoint_descriptor *endpoint;
1094 unsigned char *cmd;
1095 u8 bulk_out_ep;
1096 int r;
1097
1098 /* Find bulk out endpoint */
1099 for (r = 1; r >= 0; r--) {
1100 endpoint = &iface_desc->endpoint[r].desc;
1101 if (usb_endpoint_dir_out(endpoint) &&
1102 usb_endpoint_xfer_bulk(endpoint)) {
1103 bulk_out_ep = endpoint->bEndpointAddress;
1104 break;
1105 }
1106 }
1107 if (r == -1) {
1108 dev_err(&udev->dev,
1109 "ath9k_htc: Could not find bulk out endpoint\n");
1110 return -ENODEV;
1111 }
1112
1113 cmd = kzalloc(31, GFP_KERNEL);
1114 if (cmd == NULL)
1115 return -ENODEV;
1116
1117 /* USB bulk command block */
1118 cmd[0] = 0x55; /* bulk command signature */
1119 cmd[1] = 0x53; /* bulk command signature */
1120 cmd[2] = 0x42; /* bulk command signature */
1121 cmd[3] = 0x43; /* bulk command signature */
1122 cmd[14] = 6; /* command length */
1123
1124 cmd[15] = 0x1b; /* SCSI command: START STOP UNIT */
1125 cmd[19] = 0x2; /* eject disc */
1126
1127 dev_info(&udev->dev, "Ejecting storage device...\n");
1128 r = usb_bulk_msg(udev, usb_sndbulkpipe(udev, bulk_out_ep),
1129 cmd, 31, NULL, 2000);
1130 kfree(cmd);
1131 if (r)
1132 return r;
1133
1134 /* At this point, the device disconnects and reconnects with the real
1135 * ID numbers. */
1136
1137 usb_set_intfdata(interface, NULL);
1138 return 0;
1139}
1140
Sujithfb9987d2010-03-17 14:25:25 +05301141static int ath9k_hif_usb_probe(struct usb_interface *interface,
1142 const struct usb_device_id *id)
1143{
1144 struct usb_device *udev = interface_to_usbdev(interface);
1145 struct hif_device_usb *hif_dev;
Sujithfb9987d2010-03-17 14:25:25 +05301146 int ret = 0;
1147
Sujith Manoharan36bcce42011-02-21 07:47:52 +05301148 if (id->driver_info == STORAGE_DEVICE)
1149 return send_eject_command(interface);
1150
Sujithfb9987d2010-03-17 14:25:25 +05301151 hif_dev = kzalloc(sizeof(struct hif_device_usb), GFP_KERNEL);
1152 if (!hif_dev) {
1153 ret = -ENOMEM;
1154 goto err_alloc;
1155 }
1156
1157 usb_get_dev(udev);
1158 hif_dev->udev = udev;
1159 hif_dev->interface = interface;
1160 hif_dev->device_id = id->idProduct;
1161#ifdef CONFIG_PM
1162 udev->reset_resume = 1;
1163#endif
1164 usb_set_intfdata(interface, hif_dev);
1165
Sujith.Manoharan@atheros.com47fce022010-05-11 16:24:41 +05301166 hif_dev->htc_handle = ath9k_htc_hw_alloc(hif_dev, &hif_usb,
1167 &hif_dev->udev->dev);
1168 if (hif_dev->htc_handle == NULL) {
1169 ret = -ENOMEM;
1170 goto err_htc_hw_alloc;
1171 }
1172
Sujithce43cee2010-06-02 15:53:30 +05301173 /* Find out which firmware to load */
1174
Sujith Manoharan0b5ead92010-12-07 16:31:38 +05301175 if (IS_AR7010_DEVICE(id->driver_info))
Sujith Manoharan9efabad2011-04-13 11:22:33 +05301176 hif_dev->fw_name = FIRMWARE_AR7010_1_1;
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +05301177 else
John W. Linvilled0ee0eb2010-06-23 14:20:45 -04001178 hif_dev->fw_name = FIRMWARE_AR9271;
Sujithce43cee2010-06-02 15:53:30 +05301179
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +05301180 ret = ath9k_hif_usb_dev_init(hif_dev, id->driver_info);
Sujithfb9987d2010-03-17 14:25:25 +05301181 if (ret) {
1182 ret = -EINVAL;
1183 goto err_hif_init_usb;
1184 }
1185
Sujith.Manoharan@atheros.com47fce022010-05-11 16:24:41 +05301186 ret = ath9k_htc_hw_init(hif_dev->htc_handle,
Sujith Manoharan50f68712011-04-11 22:56:55 +05301187 &interface->dev, hif_dev->device_id,
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +05301188 hif_dev->udev->product, id->driver_info);
Sujithfb9987d2010-03-17 14:25:25 +05301189 if (ret) {
1190 ret = -EINVAL;
1191 goto err_htc_hw_init;
1192 }
1193
1194 dev_info(&hif_dev->udev->dev, "ath9k_htc: USB layer initialized\n");
1195
1196 return 0;
1197
1198err_htc_hw_init:
Sujithfb9987d2010-03-17 14:25:25 +05301199 ath9k_hif_usb_dev_deinit(hif_dev);
1200err_hif_init_usb:
Sujith.Manoharan@atheros.com47fce022010-05-11 16:24:41 +05301201 ath9k_htc_hw_free(hif_dev->htc_handle);
1202err_htc_hw_alloc:
Sujithfb9987d2010-03-17 14:25:25 +05301203 usb_set_intfdata(interface, NULL);
1204 kfree(hif_dev);
1205 usb_put_dev(udev);
1206err_alloc:
1207 return ret;
1208}
1209
Sujith62e47162010-04-23 10:28:16 +05301210static void ath9k_hif_usb_reboot(struct usb_device *udev)
1211{
1212 u32 reboot_cmd = 0xffffffff;
1213 void *buf;
1214 int ret;
1215
Julia Lawalla465a2c2010-05-15 23:17:19 +02001216 buf = kmemdup(&reboot_cmd, 4, GFP_KERNEL);
Sujith62e47162010-04-23 10:28:16 +05301217 if (!buf)
1218 return;
1219
Sujith62e47162010-04-23 10:28:16 +05301220 ret = usb_bulk_msg(udev, usb_sndbulkpipe(udev, USB_REG_OUT_PIPE),
1221 buf, 4, NULL, HZ);
1222 if (ret)
1223 dev_err(&udev->dev, "ath9k_htc: USB reboot failed\n");
1224
1225 kfree(buf);
1226}
1227
Sujithfb9987d2010-03-17 14:25:25 +05301228static void ath9k_hif_usb_disconnect(struct usb_interface *interface)
1229{
1230 struct usb_device *udev = interface_to_usbdev(interface);
Joe Perchesb2767362010-11-30 13:42:08 -08001231 struct hif_device_usb *hif_dev = usb_get_intfdata(interface);
Sujith Manoharan97dcec52010-12-20 08:02:42 +05301232 bool unplugged = (udev->state == USB_STATE_NOTATTACHED) ? true : false;
Sujithfb9987d2010-03-17 14:25:25 +05301233
Sujith Manoharan36bcce42011-02-21 07:47:52 +05301234 if (!hif_dev)
1235 return;
1236
1237 ath9k_htc_hw_deinit(hif_dev->htc_handle, unplugged);
1238 ath9k_htc_hw_free(hif_dev->htc_handle);
1239 ath9k_hif_usb_dev_deinit(hif_dev);
1240 usb_set_intfdata(interface, NULL);
Sujithfb9987d2010-03-17 14:25:25 +05301241
Sujith Manoharan97dcec52010-12-20 08:02:42 +05301242 if (!unplugged && (hif_dev->flags & HIF_USB_START))
Sujith62e47162010-04-23 10:28:16 +05301243 ath9k_hif_usb_reboot(udev);
Sujithfb9987d2010-03-17 14:25:25 +05301244
1245 kfree(hif_dev);
1246 dev_info(&udev->dev, "ath9k_htc: USB layer deinitialized\n");
1247 usb_put_dev(udev);
1248}
1249
1250#ifdef CONFIG_PM
1251static int ath9k_hif_usb_suspend(struct usb_interface *interface,
1252 pm_message_t message)
1253{
Joe Perchesb2767362010-11-30 13:42:08 -08001254 struct hif_device_usb *hif_dev = usb_get_intfdata(interface);
Sujithfb9987d2010-03-17 14:25:25 +05301255
Sujith Manoharanf933ebe2010-12-01 12:30:27 +05301256 /*
1257 * The device has to be set to FULLSLEEP mode in case no
1258 * interface is up.
1259 */
1260 if (!(hif_dev->flags & HIF_USB_START))
1261 ath9k_htc_suspend(hif_dev->htc_handle);
1262
Sujithfb9987d2010-03-17 14:25:25 +05301263 ath9k_hif_usb_dealloc_urbs(hif_dev);
1264
1265 return 0;
1266}
1267
1268static int ath9k_hif_usb_resume(struct usb_interface *interface)
1269{
Joe Perchesb2767362010-11-30 13:42:08 -08001270 struct hif_device_usb *hif_dev = usb_get_intfdata(interface);
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +05301271 struct htc_target *htc_handle = hif_dev->htc_handle;
Sujithfb9987d2010-03-17 14:25:25 +05301272 int ret;
1273
1274 ret = ath9k_hif_usb_alloc_urbs(hif_dev);
1275 if (ret)
1276 return ret;
1277
1278 if (hif_dev->firmware) {
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +05301279 ret = ath9k_hif_usb_download_fw(hif_dev,
Sujith Manoharan0b5ead92010-12-07 16:31:38 +05301280 htc_handle->drv_priv->ah->hw_version.usbdev);
Sujithfb9987d2010-03-17 14:25:25 +05301281 if (ret)
1282 goto fail_resume;
1283 } else {
1284 ath9k_hif_usb_dealloc_urbs(hif_dev);
1285 return -EIO;
1286 }
1287
1288 mdelay(100);
1289
Rajkumar Manoharanfa6e15e2010-11-19 16:53:22 +05301290 ret = ath9k_htc_resume(htc_handle);
Sujithfb9987d2010-03-17 14:25:25 +05301291
1292 if (ret)
1293 goto fail_resume;
1294
1295 return 0;
1296
1297fail_resume:
1298 ath9k_hif_usb_dealloc_urbs(hif_dev);
1299
1300 return ret;
1301}
1302#endif
1303
1304static struct usb_driver ath9k_hif_usb_driver = {
Sujith Manoharan50f68712011-04-11 22:56:55 +05301305 .name = KBUILD_MODNAME,
Sujithfb9987d2010-03-17 14:25:25 +05301306 .probe = ath9k_hif_usb_probe,
1307 .disconnect = ath9k_hif_usb_disconnect,
1308#ifdef CONFIG_PM
1309 .suspend = ath9k_hif_usb_suspend,
1310 .resume = ath9k_hif_usb_resume,
1311 .reset_resume = ath9k_hif_usb_resume,
1312#endif
1313 .id_table = ath9k_hif_usb_ids,
1314 .soft_unbind = 1,
1315};
1316
1317int ath9k_hif_usb_init(void)
1318{
1319 return usb_register(&ath9k_hif_usb_driver);
1320}
1321
1322void ath9k_hif_usb_exit(void)
1323{
1324 usb_deregister(&ath9k_hif_usb_driver);
1325}