hif_usb.c 25.4 KB
Newer Older
S
Sujith 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (c) 2010 Atheros Communications Inc.
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include "htc.h"

19 20 21 22 23 24 25 26 27
/* identify firmware images */
#define FIRMWARE_AR7010		"ar7010.fw"
#define FIRMWARE_AR7010_1_1	"ar7010_1_1.fw"
#define FIRMWARE_AR9271		"ar9271.fw"

MODULE_FIRMWARE(FIRMWARE_AR7010);
MODULE_FIRMWARE(FIRMWARE_AR7010_1_1);
MODULE_FIRMWARE(FIRMWARE_AR9271);

S
Sujith 已提交
28
static struct usb_device_id ath9k_hif_usb_ids[] = {
29 30 31 32 33 34
	{ USB_DEVICE(0x0cf3, 0x9271) }, /* Atheros */
	{ USB_DEVICE(0x0cf3, 0x1006) }, /* Atheros */
	{ USB_DEVICE(0x0846, 0x9030) }, /* Netgear N150 */
	{ USB_DEVICE(0x07D1, 0x3A10) }, /* Dlink Wireless 150 */
	{ USB_DEVICE(0x13D3, 0x3327) }, /* Azurewave */
	{ USB_DEVICE(0x13D3, 0x3328) }, /* Azurewave */
35
	{ USB_DEVICE(0x13D3, 0x3346) }, /* IMC Networks */
36 37 38
	{ USB_DEVICE(0x13D3, 0x3348) }, /* Azurewave */
	{ USB_DEVICE(0x13D3, 0x3349) }, /* Azurewave */
	{ USB_DEVICE(0x13D3, 0x3350) }, /* Azurewave */
39
	{ USB_DEVICE(0x04CA, 0x4605) }, /* Liteon */
40
	{ USB_DEVICE(0x040D, 0x3801) }, /* VIA */
41
	{ USB_DEVICE(0x0cf3, 0xb003) }, /* Ubiquiti WifiStation Ext */
42 43 44

	{ USB_DEVICE(0x0cf3, 0x7015),
	  .driver_info = AR9287_USB },  /* Atheros */
45
	{ USB_DEVICE(0x1668, 0x1200),
46 47 48 49 50 51 52 53 54
	  .driver_info = AR9287_USB },  /* Verizon */

	{ USB_DEVICE(0x0cf3, 0x7010),
	  .driver_info = AR9280_USB },  /* Atheros */
	{ USB_DEVICE(0x0846, 0x9018),
	  .driver_info = AR9280_USB },  /* Netgear WNDA3200 */
	{ USB_DEVICE(0x083A, 0xA704),
	  .driver_info = AR9280_USB },  /* SMC Networks */

S
Sujith 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
	{ },
};

MODULE_DEVICE_TABLE(usb, ath9k_hif_usb_ids);

static int __hif_usb_tx(struct hif_device_usb *hif_dev);

static void hif_usb_regout_cb(struct urb *urb)
{
	struct cmd_buf *cmd = (struct cmd_buf *)urb->context;

	switch (urb->status) {
	case 0:
		break;
	case -ENOENT:
	case -ECONNRESET:
	case -ENODEV:
	case -ESHUTDOWN:
S
Sujith 已提交
73
		goto free;
S
Sujith 已提交
74 75 76 77 78 79 80 81 82
	default:
		break;
	}

	if (cmd) {
		ath9k_htc_txcompletion_cb(cmd->hif_dev->htc_handle,
					  cmd->skb, 1);
		kfree(cmd);
	}
S
Sujith 已提交
83 84 85

	return;
free:
86
	kfree_skb(cmd->skb);
S
Sujith 已提交
87
	kfree(cmd);
S
Sujith 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
}

static int hif_usb_send_regout(struct hif_device_usb *hif_dev,
			       struct sk_buff *skb)
{
	struct urb *urb;
	struct cmd_buf *cmd;
	int ret = 0;

	urb = usb_alloc_urb(0, GFP_KERNEL);
	if (urb == NULL)
		return -ENOMEM;

	cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
	if (cmd == NULL) {
		usb_free_urb(urb);
		return -ENOMEM;
	}

	cmd->skb = skb;
	cmd->hif_dev = hif_dev;

110 111
	usb_fill_bulk_urb(urb, hif_dev->udev,
			 usb_sndbulkpipe(hif_dev->udev, USB_REG_OUT_PIPE),
S
Sujith 已提交
112
			 skb->data, skb->len,
113
			 hif_usb_regout_cb, cmd);
S
Sujith 已提交
114

S
Sujith 已提交
115
	usb_anchor_urb(urb, &hif_dev->regout_submitted);
S
Sujith 已提交
116 117
	ret = usb_submit_urb(urb, GFP_KERNEL);
	if (ret) {
S
Sujith 已提交
118
		usb_unanchor_urb(urb);
S
Sujith 已提交
119 120
		kfree(cmd);
	}
S
Sujith 已提交
121
	usb_free_urb(urb);
S
Sujith 已提交
122 123 124 125

	return ret;
}

S
Sujith 已提交
126 127 128 129 130 131 132 133 134 135 136
static inline void ath9k_skb_queue_purge(struct hif_device_usb *hif_dev,
					 struct sk_buff_head *list)
{
	struct sk_buff *skb;

	while ((skb = __skb_dequeue(list)) != NULL) {
		dev_kfree_skb_any(skb);
		TX_STAT_INC(skb_dropped);
	}
}

S
Sujith 已提交
137 138 139
static void hif_usb_tx_cb(struct urb *urb)
{
	struct tx_buf *tx_buf = (struct tx_buf *) urb->context;
140
	struct hif_device_usb *hif_dev;
S
Sujith 已提交
141 142
	struct sk_buff *skb;

143
	if (!tx_buf || !tx_buf->hif_dev)
S
Sujith 已提交
144 145
		return;

146 147
	hif_dev = tx_buf->hif_dev;

S
Sujith 已提交
148 149 150 151 152 153 154
	switch (urb->status) {
	case 0:
		break;
	case -ENOENT:
	case -ECONNRESET:
	case -ENODEV:
	case -ESHUTDOWN:
S
Sujith 已提交
155
		/*
156
		 * The URB has been killed, free the SKBs.
S
Sujith 已提交
157 158
		 */
		ath9k_skb_queue_purge(hif_dev, &tx_buf->skb_queue);
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175

		/*
		 * If the URBs are being flushed, no need to add this
		 * URB to the free list.
		 */
		spin_lock(&hif_dev->tx.tx_lock);
		if (hif_dev->tx.flags & HIF_USB_TX_FLUSH) {
			spin_unlock(&hif_dev->tx.tx_lock);
			return;
		}
		spin_unlock(&hif_dev->tx.tx_lock);

		/*
		 * In the stop() case, this URB has to be added to
		 * the free list.
		 */
		goto add_free;
S
Sujith 已提交
176 177 178 179
	default:
		break;
	}

180 181 182 183 184 185
	/*
	 * Check if TX has been stopped, this is needed because
	 * this CB could have been invoked just after the TX lock
	 * was released in hif_stop() and kill_urb() hasn't been
	 * called yet.
	 */
S
Sujith 已提交
186 187
	spin_lock(&hif_dev->tx.tx_lock);
	if (hif_dev->tx.flags & HIF_USB_TX_STOP) {
S
Sujith 已提交
188
		spin_unlock(&hif_dev->tx.tx_lock);
S
Sujith 已提交
189 190
		ath9k_skb_queue_purge(hif_dev, &tx_buf->skb_queue);
		goto add_free;
S
Sujith 已提交
191
	}
S
Sujith 已提交
192
	spin_unlock(&hif_dev->tx.tx_lock);
S
Sujith 已提交
193

S
Sujith 已提交
194 195 196 197 198
	/* Complete the queued SKBs. */
	while ((skb = __skb_dequeue(&tx_buf->skb_queue)) != NULL) {
		ath9k_htc_txcompletion_cb(hif_dev->htc_handle,
					  skb, 1);
		TX_STAT_INC(skb_completed);
199
	}
S
Sujith 已提交
200 201 202 203 204 205 206 207 208 209 210 211 212 213

add_free:
	/* Re-initialize the SKB queue */
	tx_buf->len = tx_buf->offset = 0;
	__skb_queue_head_init(&tx_buf->skb_queue);

	/* Add this TX buffer to the free list */
	spin_lock(&hif_dev->tx.tx_lock);
	list_move_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
	hif_dev->tx.tx_buf_cnt++;
	if (!(hif_dev->tx.flags & HIF_USB_TX_STOP))
		__hif_usb_tx(hif_dev); /* Check for pending SKBs */
	TX_STAT_INC(buf_completed);
	spin_unlock(&hif_dev->tx.tx_lock);
214 215
}

S
Sujith 已提交
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
/* TX lock has to be taken */
static int __hif_usb_tx(struct hif_device_usb *hif_dev)
{
	struct tx_buf *tx_buf = NULL;
	struct sk_buff *nskb = NULL;
	int ret = 0, i;
	u16 *hdr, tx_skb_cnt = 0;
	u8 *buf;

	if (hif_dev->tx.tx_skb_cnt == 0)
		return 0;

	/* Check if a free TX buffer is available */
	if (list_empty(&hif_dev->tx.tx_buf))
		return 0;

	tx_buf = list_first_entry(&hif_dev->tx.tx_buf, struct tx_buf, list);
S
Sujith 已提交
233
	list_move_tail(&tx_buf->list, &hif_dev->tx.tx_pending);
S
Sujith 已提交
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
	hif_dev->tx.tx_buf_cnt--;

	tx_skb_cnt = min_t(u16, hif_dev->tx.tx_skb_cnt, MAX_TX_AGGR_NUM);

	for (i = 0; i < tx_skb_cnt; i++) {
		nskb = __skb_dequeue(&hif_dev->tx.tx_skb_queue);

		/* Should never be NULL */
		BUG_ON(!nskb);

		hif_dev->tx.tx_skb_cnt--;

		buf = tx_buf->buf;
		buf += tx_buf->offset;
		hdr = (u16 *)buf;
		*hdr++ = nskb->len;
		*hdr++ = ATH_USB_TX_STREAM_MODE_TAG;
		buf += 4;
		memcpy(buf, nskb->data, nskb->len);
		tx_buf->len = nskb->len + 4;

		if (i < (tx_skb_cnt - 1))
			tx_buf->offset += (((tx_buf->len - 1) / 4) + 1) * 4;

		if (i == (tx_skb_cnt - 1))
			tx_buf->len += tx_buf->offset;

		__skb_queue_tail(&tx_buf->skb_queue, nskb);
		TX_STAT_INC(skb_queued);
	}

	usb_fill_bulk_urb(tx_buf->urb, hif_dev->udev,
			  usb_sndbulkpipe(hif_dev->udev, USB_WLAN_TX_PIPE),
			  tx_buf->buf, tx_buf->len,
			  hif_usb_tx_cb, tx_buf);

	ret = usb_submit_urb(tx_buf->urb, GFP_ATOMIC);
	if (ret) {
		tx_buf->len = tx_buf->offset = 0;
273
		ath9k_skb_queue_purge(hif_dev, &tx_buf->skb_queue);
S
Sujith 已提交
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
		__skb_queue_head_init(&tx_buf->skb_queue);
		list_move_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
		hif_dev->tx.tx_buf_cnt++;
	}

	if (!ret)
		TX_STAT_INC(buf_queued);

	return ret;
}

static int hif_usb_send_tx(struct hif_device_usb *hif_dev, struct sk_buff *skb,
			   struct ath9k_htc_tx_ctl *tx_ctl)
{
	unsigned long flags;

	spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);

	if (hif_dev->tx.flags & HIF_USB_TX_STOP) {
		spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
		return -ENODEV;
	}

	/* Check if the max queue count has been reached */
	if (hif_dev->tx.tx_skb_cnt > MAX_TX_BUF_NUM) {
		spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
		return -ENOMEM;
	}

	__skb_queue_tail(&hif_dev->tx.tx_skb_queue, skb);
	hif_dev->tx.tx_skb_cnt++;

	/* Send normal frames immediately */
	if (!tx_ctl || (tx_ctl && (tx_ctl->type == ATH9K_HTC_NORMAL)))
		__hif_usb_tx(hif_dev);

	/* Check if AMPDUs have to be sent immediately */
	if (tx_ctl && (tx_ctl->type == ATH9K_HTC_AMPDU) &&
	    (hif_dev->tx.tx_buf_cnt == MAX_TX_URB_NUM) &&
	    (hif_dev->tx.tx_skb_cnt < 2)) {
		__hif_usb_tx(hif_dev);
	}

	spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);

	return 0;
}

static void hif_usb_start(void *hif_handle, u8 pipe_id)
{
	struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
	unsigned long flags;

	hif_dev->flags |= HIF_USB_START;

	spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
	hif_dev->tx.flags &= ~HIF_USB_TX_STOP;
	spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
}

static void hif_usb_stop(void *hif_handle, u8 pipe_id)
{
	struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
337
	struct tx_buf *tx_buf = NULL, *tx_buf_tmp = NULL;
S
Sujith 已提交
338 339 340
	unsigned long flags;

	spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
341
	ath9k_skb_queue_purge(hif_dev, &hif_dev->tx.tx_skb_queue);
S
Sujith 已提交
342 343 344
	hif_dev->tx.tx_skb_cnt = 0;
	hif_dev->tx.flags |= HIF_USB_TX_STOP;
	spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
345 346 347 348 349 350

	/* The pending URBs have to be canceled. */
	list_for_each_entry_safe(tx_buf, tx_buf_tmp,
				 &hif_dev->tx.tx_pending, list) {
		usb_kill_urb(tx_buf->urb);
	}
S
Sujith 已提交
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
}

static int hif_usb_send(void *hif_handle, u8 pipe_id, struct sk_buff *skb,
			struct ath9k_htc_tx_ctl *tx_ctl)
{
	struct hif_device_usb *hif_dev = (struct hif_device_usb *)hif_handle;
	int ret = 0;

	switch (pipe_id) {
	case USB_WLAN_TX_PIPE:
		ret = hif_usb_send_tx(hif_dev, skb, tx_ctl);
		break;
	case USB_REG_OUT_PIPE:
		ret = hif_usb_send_regout(hif_dev, skb);
		break;
	default:
S
Sujith 已提交
367 368
		dev_err(&hif_dev->udev->dev,
			"ath9k_htc: Invalid TX pipe: %d\n", pipe_id);
S
Sujith 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
		ret = -EINVAL;
		break;
	}

	return ret;
}

static struct ath9k_htc_hif hif_usb = {
	.transport = ATH9K_HIF_USB,
	.name = "ath9k_hif_usb",

	.control_ul_pipe = USB_REG_OUT_PIPE,
	.control_dl_pipe = USB_REG_IN_PIPE,

	.start = hif_usb_start,
	.stop = hif_usb_stop,
	.send = hif_usb_send,
};

static void ath9k_hif_usb_rx_stream(struct hif_device_usb *hif_dev,
				    struct sk_buff *skb)
{
S
Sujith 已提交
391
	struct sk_buff *nskb, *skb_pool[MAX_PKT_NUM_IN_TRANSFER];
392 393 394
	int index = 0, i = 0, len = skb->len;
	int rx_remain_len, rx_pkt_len;
	u16 pool_index = 0;
S
Sujith 已提交
395 396
	u8 *ptr;

S
Sujith 已提交
397 398
	spin_lock(&hif_dev->rx_lock);

S
Sujith 已提交
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
	rx_remain_len = hif_dev->rx_remain_len;
	rx_pkt_len = hif_dev->rx_transfer_len;

	if (rx_remain_len != 0) {
		struct sk_buff *remain_skb = hif_dev->remain_skb;

		if (remain_skb) {
			ptr = (u8 *) remain_skb->data;

			index = rx_remain_len;
			rx_remain_len -= hif_dev->rx_pad_len;
			ptr += rx_pkt_len;

			memcpy(ptr, skb->data, rx_remain_len);

			rx_pkt_len += rx_remain_len;
			hif_dev->rx_remain_len = 0;
			skb_put(remain_skb, rx_pkt_len);

			skb_pool[pool_index++] = remain_skb;

		} else {
			index = rx_remain_len;
		}
	}

S
Sujith 已提交
425 426
	spin_unlock(&hif_dev->rx_lock);

S
Sujith 已提交
427
	while (index < len) {
428 429 430 431 432
		u16 pkt_len;
		u16 pkt_tag;
		u16 pad_len;
		int chk_idx;

S
Sujith 已提交
433 434 435 436 437
		ptr = (u8 *) skb->data;

		pkt_len = ptr[index] + (ptr[index+1] << 8);
		pkt_tag = ptr[index+2] + (ptr[index+3] << 8);

438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
		if (pkt_tag != ATH_USB_RX_STREAM_MODE_TAG) {
			RX_STAT_INC(skb_dropped);
			return;
		}

		pad_len = 4 - (pkt_len & 0x3);
		if (pad_len == 4)
			pad_len = 0;

		chk_idx = index;
		index = index + 4 + pkt_len + pad_len;

		if (index > MAX_RX_BUF_SIZE) {
			spin_lock(&hif_dev->rx_lock);
			hif_dev->rx_remain_len = index - MAX_RX_BUF_SIZE;
			hif_dev->rx_transfer_len =
				MAX_RX_BUF_SIZE - chk_idx - 4;
			hif_dev->rx_pad_len = pad_len;

			nskb = __dev_alloc_skb(pkt_len + 32, GFP_ATOMIC);
			if (!nskb) {
				dev_err(&hif_dev->udev->dev,
					"ath9k_htc: RX memory allocation error\n");
S
Sujith 已提交
461
				spin_unlock(&hif_dev->rx_lock);
462
				goto err;
S
Sujith 已提交
463
			}
464 465 466 467 468 469 470 471 472
			skb_reserve(nskb, 32);
			RX_STAT_INC(skb_allocated);

			memcpy(nskb->data, &(skb->data[chk_idx+4]),
			       hif_dev->rx_transfer_len);

			/* Record the buffer pointer */
			hif_dev->remain_skb = nskb;
			spin_unlock(&hif_dev->rx_lock);
S
Sujith 已提交
473
		} else {
474 475 476 477 478 479 480 481 482 483 484 485
			nskb = __dev_alloc_skb(pkt_len + 32, GFP_ATOMIC);
			if (!nskb) {
				dev_err(&hif_dev->udev->dev,
					"ath9k_htc: RX memory allocation error\n");
				goto err;
			}
			skb_reserve(nskb, 32);
			RX_STAT_INC(skb_allocated);

			memcpy(nskb->data, &(skb->data[chk_idx+4]), pkt_len);
			skb_put(nskb, pkt_len);
			skb_pool[pool_index++] = nskb;
S
Sujith 已提交
486 487 488 489 490 491 492 493 494 495 496 497 498 499
		}
	}

err:
	for (i = 0; i < pool_index; i++) {
		ath9k_htc_rx_msg(hif_dev->htc_handle, skb_pool[i],
				 skb_pool[i]->len, USB_WLAN_RX_PIPE);
		RX_STAT_INC(skb_completed);
	}
}

static void ath9k_hif_usb_rx_cb(struct urb *urb)
{
	struct sk_buff *skb = (struct sk_buff *) urb->context;
500
	struct hif_device_usb *hif_dev =
S
Sujith 已提交
501 502 503
		usb_get_intfdata(usb_ifnum_to_if(urb->dev, 0));
	int ret;

S
Sujith 已提交
504 505 506
	if (!skb)
		return;

S
Sujith 已提交
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
	if (!hif_dev)
		goto free;

	switch (urb->status) {
	case 0:
		break;
	case -ENOENT:
	case -ECONNRESET:
	case -ENODEV:
	case -ESHUTDOWN:
		goto free;
	default:
		goto resubmit;
	}

	if (likely(urb->actual_length != 0)) {
		skb_put(skb, urb->actual_length);
		ath9k_hif_usb_rx_stream(hif_dev, skb);
	}

resubmit:
	skb_reset_tail_pointer(skb);
	skb_trim(skb, 0);

S
Sujith 已提交
531
	usb_anchor_urb(urb, &hif_dev->rx_submitted);
S
Sujith 已提交
532
	ret = usb_submit_urb(urb, GFP_ATOMIC);
S
Sujith 已提交
533 534
	if (ret) {
		usb_unanchor_urb(urb);
S
Sujith 已提交
535
		goto free;
S
Sujith 已提交
536
	}
S
Sujith 已提交
537 538 539

	return;
free:
540
	kfree_skb(skb);
S
Sujith 已提交
541 542 543 544 545 546
}

static void ath9k_hif_usb_reg_in_cb(struct urb *urb)
{
	struct sk_buff *skb = (struct sk_buff *) urb->context;
	struct sk_buff *nskb;
547
	struct hif_device_usb *hif_dev =
S
Sujith 已提交
548 549 550
		usb_get_intfdata(usb_ifnum_to_if(urb->dev, 0));
	int ret;

S
Sujith 已提交
551 552 553
	if (!skb)
		return;

S
Sujith 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
	if (!hif_dev)
		goto free;

	switch (urb->status) {
	case 0:
		break;
	case -ENOENT:
	case -ECONNRESET:
	case -ENODEV:
	case -ESHUTDOWN:
		goto free;
	default:
		goto resubmit;
	}

	if (likely(urb->actual_length != 0)) {
		skb_put(skb, urb->actual_length);

572 573 574 575 576
		/* Process the command first */
		ath9k_htc_rx_msg(hif_dev->htc_handle, skb,
				 skb->len, USB_REG_IN_PIPE);


577
		nskb = alloc_skb(MAX_REG_IN_BUF_SIZE, GFP_ATOMIC);
578 579 580 581 582 583
		if (!nskb) {
			dev_err(&hif_dev->udev->dev,
				"ath9k_htc: REG_IN memory allocation failure\n");
			urb->context = NULL;
			return;
		}
S
Sujith 已提交
584

585
		usb_fill_bulk_urb(urb, hif_dev->udev,
586 587
				 usb_rcvbulkpipe(hif_dev->udev,
						 USB_REG_IN_PIPE),
S
Sujith 已提交
588
				 nskb->data, MAX_REG_IN_BUF_SIZE,
589
				 ath9k_hif_usb_reg_in_cb, nskb);
S
Sujith 已提交
590 591 592

		ret = usb_submit_urb(urb, GFP_ATOMIC);
		if (ret) {
593
			kfree_skb(nskb);
594
			urb->context = NULL;
S
Sujith 已提交
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
		}

		return;
	}

resubmit:
	skb_reset_tail_pointer(skb);
	skb_trim(skb, 0);

	ret = usb_submit_urb(urb, GFP_ATOMIC);
	if (ret)
		goto free;

	return;
free:
610
	kfree_skb(skb);
S
Sujith 已提交
611
	urb->context = NULL;
S
Sujith 已提交
612 613 614 615 616
}

static void ath9k_hif_usb_dealloc_tx_urbs(struct hif_device_usb *hif_dev)
{
	struct tx_buf *tx_buf = NULL, *tx_buf_tmp = NULL;
617
	unsigned long flags;
S
Sujith 已提交
618

S
Sujith 已提交
619 620 621
	list_for_each_entry_safe(tx_buf, tx_buf_tmp,
				 &hif_dev->tx.tx_buf, list) {
		usb_kill_urb(tx_buf->urb);
S
Sujith 已提交
622 623 624 625 626 627
		list_del(&tx_buf->list);
		usb_free_urb(tx_buf->urb);
		kfree(tx_buf->buf);
		kfree(tx_buf);
	}

628 629 630 631
	spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
	hif_dev->tx.flags |= HIF_USB_TX_FLUSH;
	spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);

S
Sujith 已提交
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
	list_for_each_entry_safe(tx_buf, tx_buf_tmp,
				 &hif_dev->tx.tx_pending, list) {
		usb_kill_urb(tx_buf->urb);
		list_del(&tx_buf->list);
		usb_free_urb(tx_buf->urb);
		kfree(tx_buf->buf);
		kfree(tx_buf);
	}
}

static int ath9k_hif_usb_alloc_tx_urbs(struct hif_device_usb *hif_dev)
{
	struct tx_buf *tx_buf;
	int i;

	INIT_LIST_HEAD(&hif_dev->tx.tx_buf);
	INIT_LIST_HEAD(&hif_dev->tx.tx_pending);
	spin_lock_init(&hif_dev->tx.tx_lock);
	__skb_queue_head_init(&hif_dev->tx.tx_skb_queue);

	for (i = 0; i < MAX_TX_URB_NUM; i++) {
		tx_buf = kzalloc(sizeof(struct tx_buf), GFP_KERNEL);
		if (!tx_buf)
			goto err;

		tx_buf->buf = kzalloc(MAX_TX_BUF_SIZE, GFP_KERNEL);
		if (!tx_buf->buf)
			goto err;

		tx_buf->urb = usb_alloc_urb(0, GFP_KERNEL);
		if (!tx_buf->urb)
			goto err;

		tx_buf->hif_dev = hif_dev;
		__skb_queue_head_init(&tx_buf->skb_queue);

		list_add_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
	}

	hif_dev->tx.tx_buf_cnt = MAX_TX_URB_NUM;

	return 0;
err:
675 676 677 678
	if (tx_buf) {
		kfree(tx_buf->buf);
		kfree(tx_buf);
	}
S
Sujith 已提交
679 680 681 682 683 684
	ath9k_hif_usb_dealloc_tx_urbs(hif_dev);
	return -ENOMEM;
}

static void ath9k_hif_usb_dealloc_rx_urbs(struct hif_device_usb *hif_dev)
{
S
Sujith 已提交
685
	usb_kill_anchored_urbs(&hif_dev->rx_submitted);
S
Sujith 已提交
686 687 688 689
}

static int ath9k_hif_usb_alloc_rx_urbs(struct hif_device_usb *hif_dev)
{
S
Sujith 已提交
690 691
	struct urb *urb = NULL;
	struct sk_buff *skb = NULL;
S
Sujith 已提交
692 693
	int i, ret;

S
Sujith 已提交
694
	init_usb_anchor(&hif_dev->rx_submitted);
S
Sujith 已提交
695
	spin_lock_init(&hif_dev->rx_lock);
S
Sujith 已提交
696

S
Sujith 已提交
697 698 699
	for (i = 0; i < MAX_RX_URB_NUM; i++) {

		/* Allocate URB */
S
Sujith 已提交
700 701
		urb = usb_alloc_urb(0, GFP_KERNEL);
		if (urb == NULL) {
S
Sujith 已提交
702
			ret = -ENOMEM;
S
Sujith 已提交
703
			goto err_urb;
S
Sujith 已提交
704 705 706
		}

		/* Allocate buffer */
707
		skb = alloc_skb(MAX_RX_BUF_SIZE, GFP_KERNEL);
S
Sujith 已提交
708 709 710 711
		if (!skb) {
			ret = -ENOMEM;
			goto err_skb;
		}
S
Sujith 已提交
712

S
Sujith 已提交
713 714 715 716 717 718 719 720
		usb_fill_bulk_urb(urb, hif_dev->udev,
				  usb_rcvbulkpipe(hif_dev->udev,
						  USB_WLAN_RX_PIPE),
				  skb->data, MAX_RX_BUF_SIZE,
				  ath9k_hif_usb_rx_cb, skb);

		/* Anchor URB */
		usb_anchor_urb(urb, &hif_dev->rx_submitted);
S
Sujith 已提交
721

S
Sujith 已提交
722 723 724 725 726 727
		/* Submit URB */
		ret = usb_submit_urb(urb, GFP_KERNEL);
		if (ret) {
			usb_unanchor_urb(urb);
			goto err_submit;
		}
S
Sujith 已提交
728 729 730 731 732 733

		/*
		 * Drop reference count.
		 * This ensures that the URB is freed when killing them.
		 */
		usb_free_urb(urb);
S
Sujith 已提交
734 735 736 737
	}

	return 0;

S
Sujith 已提交
738
err_submit:
739
	kfree_skb(skb);
S
Sujith 已提交
740 741 742
err_skb:
	usb_free_urb(urb);
err_urb:
S
Sujith 已提交
743 744 745 746 747 748 749 750
	ath9k_hif_usb_dealloc_rx_urbs(hif_dev);
	return ret;
}

static void ath9k_hif_usb_dealloc_reg_in_urb(struct hif_device_usb *hif_dev)
{
	if (hif_dev->reg_in_urb) {
		usb_kill_urb(hif_dev->reg_in_urb);
S
Sujith 已提交
751
		if (hif_dev->reg_in_urb->context)
752
			kfree_skb((void *)hif_dev->reg_in_urb->context);
S
Sujith 已提交
753 754 755 756 757 758 759 760 761 762 763 764 765
		usb_free_urb(hif_dev->reg_in_urb);
		hif_dev->reg_in_urb = NULL;
	}
}

static int ath9k_hif_usb_alloc_reg_in_urb(struct hif_device_usb *hif_dev)
{
	struct sk_buff *skb;

	hif_dev->reg_in_urb = usb_alloc_urb(0, GFP_KERNEL);
	if (hif_dev->reg_in_urb == NULL)
		return -ENOMEM;

766
	skb = alloc_skb(MAX_REG_IN_BUF_SIZE, GFP_KERNEL);
S
Sujith 已提交
767 768 769
	if (!skb)
		goto err;

770
	usb_fill_bulk_urb(hif_dev->reg_in_urb, hif_dev->udev,
771 772
			 usb_rcvbulkpipe(hif_dev->udev,
					 USB_REG_IN_PIPE),
S
Sujith 已提交
773
			 skb->data, MAX_REG_IN_BUF_SIZE,
774
			 ath9k_hif_usb_reg_in_cb, skb);
S
Sujith 已提交
775 776

	if (usb_submit_urb(hif_dev->reg_in_urb, GFP_KERNEL) != 0)
S
Sujith 已提交
777
		goto err;
S
Sujith 已提交
778 779 780 781 782 783 784 785 786 787

	return 0;

err:
	ath9k_hif_usb_dealloc_reg_in_urb(hif_dev);
	return -ENOMEM;
}

static int ath9k_hif_usb_alloc_urbs(struct hif_device_usb *hif_dev)
{
S
Sujith 已提交
788 789 790
	/* Register Write */
	init_usb_anchor(&hif_dev->regout_submitted);

S
Sujith 已提交
791 792 793 794 795 796
	/* TX */
	if (ath9k_hif_usb_alloc_tx_urbs(hif_dev) < 0)
		goto err;

	/* RX */
	if (ath9k_hif_usb_alloc_rx_urbs(hif_dev) < 0)
797
		goto err_rx;
S
Sujith 已提交
798

S
Sujith 已提交
799
	/* Register Read */
S
Sujith 已提交
800
	if (ath9k_hif_usb_alloc_reg_in_urb(hif_dev) < 0)
801
		goto err_reg;
S
Sujith 已提交
802 803

	return 0;
804 805 806 807
err_reg:
	ath9k_hif_usb_dealloc_rx_urbs(hif_dev);
err_rx:
	ath9k_hif_usb_dealloc_tx_urbs(hif_dev);
S
Sujith 已提交
808 809 810 811
err:
	return -ENOMEM;
}

812 813 814 815 816 817 818 819
static void ath9k_hif_usb_dealloc_urbs(struct hif_device_usb *hif_dev)
{
	usb_kill_anchored_urbs(&hif_dev->regout_submitted);
	ath9k_hif_usb_dealloc_reg_in_urb(hif_dev);
	ath9k_hif_usb_dealloc_tx_urbs(hif_dev);
	ath9k_hif_usb_dealloc_rx_urbs(hif_dev);
}

820 821
static int ath9k_hif_usb_download_fw(struct hif_device_usb *hif_dev,
				     u32 drv_info)
S
Sujith 已提交
822 823 824 825 826 827
{
	int transfer, err;
	const void *data = hif_dev->firmware->data;
	size_t len = hif_dev->firmware->size;
	u32 addr = AR9271_FIRMWARE;
	u8 *buf = kzalloc(4096, GFP_KERNEL);
S
Sujith 已提交
828
	u32 firm_offset;
S
Sujith 已提交
829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851

	if (!buf)
		return -ENOMEM;

	while (len) {
		transfer = min_t(int, len, 4096);
		memcpy(buf, data, transfer);

		err = usb_control_msg(hif_dev->udev,
				      usb_sndctrlpipe(hif_dev->udev, 0),
				      FIRMWARE_DOWNLOAD, 0x40 | USB_DIR_OUT,
				      addr >> 8, 0, buf, transfer, HZ);
		if (err < 0) {
			kfree(buf);
			return err;
		}

		len -= transfer;
		data += transfer;
		addr += transfer;
	}
	kfree(buf);

852
	if (IS_AR7010_DEVICE(drv_info))
S
Sujith 已提交
853
		firm_offset = AR7010_FIRMWARE_TEXT;
854
	else
S
Sujith 已提交
855 856
		firm_offset = AR9271_FIRMWARE_TEXT;

S
Sujith 已提交
857 858 859 860 861 862
	/*
	 * Issue FW download complete command to firmware.
	 */
	err = usb_control_msg(hif_dev->udev, usb_sndctrlpipe(hif_dev->udev, 0),
			      FIRMWARE_DOWNLOAD_COMP,
			      0x40 | USB_DIR_OUT,
S
Sujith 已提交
863
			      firm_offset >> 8, 0, NULL, 0, HZ);
S
Sujith 已提交
864 865 866 867
	if (err)
		return -EIO;

	dev_info(&hif_dev->udev->dev, "ath9k_htc: Transferred FW: %s, size: %ld\n",
S
Sujith 已提交
868
		 hif_dev->fw_name, (unsigned long) hif_dev->firmware->size);
S
Sujith 已提交
869 870 871 872

	return 0;
}

873
static int ath9k_hif_usb_dev_init(struct hif_device_usb *hif_dev, u32 drv_info)
S
Sujith 已提交
874
{
875 876 877
	int ret, idx;
	struct usb_host_interface *alt = &hif_dev->interface->altsetting[0];
	struct usb_endpoint_descriptor *endp;
S
Sujith 已提交
878 879

	/* Request firmware */
S
Sujith 已提交
880 881
	ret = request_firmware(&hif_dev->firmware, hif_dev->fw_name,
			       &hif_dev->udev->dev);
S
Sujith 已提交
882 883
	if (ret) {
		dev_err(&hif_dev->udev->dev,
S
Sujith 已提交
884
			"ath9k_htc: Firmware - %s not found\n", hif_dev->fw_name);
S
Sujith 已提交
885 886 887
		goto err_fw_req;
	}

888
	/* Download firmware */
889
	ret = ath9k_hif_usb_download_fw(hif_dev, drv_info);
890 891
	if (ret) {
		dev_err(&hif_dev->udev->dev,
S
Sujith 已提交
892 893
			"ath9k_htc: Firmware - %s download failed\n",
			hif_dev->fw_name);
894 895 896
		goto err_fw_download;
	}

897 898 899 900 901 902
	/* On downloading the firmware to the target, the USB descriptor of EP4
	 * is 'patched' to change the type of the endpoint to Bulk. This will
	 * bring down CPU usage during the scan period.
	 */
	for (idx = 0; idx < alt->desc.bNumEndpoints; idx++) {
		endp = &alt->endpoint[idx].desc;
903 904
		if ((endp->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
				== USB_ENDPOINT_XFER_INT) {
905 906 907 908 909 910
			endp->bmAttributes &= ~USB_ENDPOINT_XFERTYPE_MASK;
			endp->bmAttributes |= USB_ENDPOINT_XFER_BULK;
			endp->bInterval = 0;
		}
	}

911 912 913 914 915 916 917 918
	/* Alloc URBs */
	ret = ath9k_hif_usb_alloc_urbs(hif_dev);
	if (ret) {
		dev_err(&hif_dev->udev->dev,
			"ath9k_htc: Unable to allocate URBs\n");
		goto err_urb;
	}

S
Sujith 已提交
919 920
	return 0;

921
err_urb:
922 923
	ath9k_hif_usb_dealloc_urbs(hif_dev);
err_fw_download:
S
Sujith 已提交
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958
	release_firmware(hif_dev->firmware);
err_fw_req:
	hif_dev->firmware = NULL;
	return ret;
}

static void ath9k_hif_usb_dev_deinit(struct hif_device_usb *hif_dev)
{
	ath9k_hif_usb_dealloc_urbs(hif_dev);
	if (hif_dev->firmware)
		release_firmware(hif_dev->firmware);
}

static int ath9k_hif_usb_probe(struct usb_interface *interface,
			       const struct usb_device_id *id)
{
	struct usb_device *udev = interface_to_usbdev(interface);
	struct hif_device_usb *hif_dev;
	int ret = 0;

	hif_dev = kzalloc(sizeof(struct hif_device_usb), GFP_KERNEL);
	if (!hif_dev) {
		ret = -ENOMEM;
		goto err_alloc;
	}

	usb_get_dev(udev);
	hif_dev->udev = udev;
	hif_dev->interface = interface;
	hif_dev->device_id = id->idProduct;
#ifdef CONFIG_PM
	udev->reset_resume = 1;
#endif
	usb_set_intfdata(interface, hif_dev);

959 960 961 962 963 964 965
	hif_dev->htc_handle = ath9k_htc_hw_alloc(hif_dev, &hif_usb,
						 &hif_dev->udev->dev);
	if (hif_dev->htc_handle == NULL) {
		ret = -ENOMEM;
		goto err_htc_hw_alloc;
	}

S
Sujith 已提交
966 967
	/* Find out which firmware to load */

968
	if (IS_AR7010_DEVICE(id->driver_info))
S
Sujith 已提交
969
		if (le16_to_cpu(udev->descriptor.bcdDevice) == 0x0202)
970
			hif_dev->fw_name = FIRMWARE_AR7010_1_1;
S
Sujith 已提交
971
		else
972
			hif_dev->fw_name = FIRMWARE_AR7010;
973
	else
974
		hif_dev->fw_name = FIRMWARE_AR9271;
S
Sujith 已提交
975

976
	ret = ath9k_hif_usb_dev_init(hif_dev, id->driver_info);
S
Sujith 已提交
977 978 979 980 981
	if (ret) {
		ret = -EINVAL;
		goto err_hif_init_usb;
	}

982
	ret = ath9k_htc_hw_init(hif_dev->htc_handle,
983
				&hif_dev->udev->dev, hif_dev->device_id,
984
				hif_dev->udev->product, id->driver_info);
S
Sujith 已提交
985 986 987 988 989 990 991 992 993 994 995 996
	if (ret) {
		ret = -EINVAL;
		goto err_htc_hw_init;
	}

	dev_info(&hif_dev->udev->dev, "ath9k_htc: USB layer initialized\n");

	return 0;

err_htc_hw_init:
	ath9k_hif_usb_dev_deinit(hif_dev);
err_hif_init_usb:
997 998
	ath9k_htc_hw_free(hif_dev->htc_handle);
err_htc_hw_alloc:
S
Sujith 已提交
999 1000 1001 1002 1003 1004 1005
	usb_set_intfdata(interface, NULL);
	kfree(hif_dev);
	usb_put_dev(udev);
err_alloc:
	return ret;
}

S
Sujith 已提交
1006 1007 1008 1009 1010 1011
static void ath9k_hif_usb_reboot(struct usb_device *udev)
{
	u32 reboot_cmd = 0xffffffff;
	void *buf;
	int ret;

1012
	buf = kmemdup(&reboot_cmd, 4, GFP_KERNEL);
S
Sujith 已提交
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
	if (!buf)
		return;

	ret = usb_bulk_msg(udev, usb_sndbulkpipe(udev, USB_REG_OUT_PIPE),
			   buf, 4, NULL, HZ);
	if (ret)
		dev_err(&udev->dev, "ath9k_htc: USB reboot failed\n");

	kfree(buf);
}

S
Sujith 已提交
1024 1025 1026
static void ath9k_hif_usb_disconnect(struct usb_interface *interface)
{
	struct usb_device *udev = interface_to_usbdev(interface);
1027
	struct hif_device_usb *hif_dev = usb_get_intfdata(interface);
1028
	bool unplugged = (udev->state == USB_STATE_NOTATTACHED) ? true : false;
S
Sujith 已提交
1029 1030

	if (hif_dev) {
1031
		ath9k_htc_hw_deinit(hif_dev->htc_handle, unplugged);
S
Sujith 已提交
1032 1033 1034 1035 1036
		ath9k_htc_hw_free(hif_dev->htc_handle);
		ath9k_hif_usb_dev_deinit(hif_dev);
		usb_set_intfdata(interface, NULL);
	}

1037
	if (!unplugged && (hif_dev->flags & HIF_USB_START))
S
Sujith 已提交
1038
		ath9k_hif_usb_reboot(udev);
S
Sujith 已提交
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048

	kfree(hif_dev);
	dev_info(&udev->dev, "ath9k_htc: USB layer deinitialized\n");
	usb_put_dev(udev);
}

#ifdef CONFIG_PM
static int ath9k_hif_usb_suspend(struct usb_interface *interface,
				 pm_message_t message)
{
1049
	struct hif_device_usb *hif_dev = usb_get_intfdata(interface);
S
Sujith 已提交
1050

S
Sujith Manoharan 已提交
1051 1052 1053 1054 1055 1056 1057
	/*
	 * The device has to be set to FULLSLEEP mode in case no
	 * interface is up.
	 */
	if (!(hif_dev->flags & HIF_USB_START))
		ath9k_htc_suspend(hif_dev->htc_handle);

S
Sujith 已提交
1058 1059 1060 1061 1062 1063 1064
	ath9k_hif_usb_dealloc_urbs(hif_dev);

	return 0;
}

static int ath9k_hif_usb_resume(struct usb_interface *interface)
{
1065
	struct hif_device_usb *hif_dev = usb_get_intfdata(interface);
1066
	struct htc_target *htc_handle = hif_dev->htc_handle;
S
Sujith 已提交
1067 1068 1069 1070 1071 1072 1073
	int ret;

	ret = ath9k_hif_usb_alloc_urbs(hif_dev);
	if (ret)
		return ret;

	if (hif_dev->firmware) {
1074
		ret = ath9k_hif_usb_download_fw(hif_dev,
1075
				htc_handle->drv_priv->ah->hw_version.usbdev);
S
Sujith 已提交
1076 1077 1078 1079 1080 1081 1082 1083 1084
		if (ret)
			goto fail_resume;
	} else {
		ath9k_hif_usb_dealloc_urbs(hif_dev);
		return -EIO;
	}

	mdelay(100);

1085
	ret = ath9k_htc_resume(htc_handle);
S
Sujith 已提交
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120

	if (ret)
		goto fail_resume;

	return 0;

fail_resume:
	ath9k_hif_usb_dealloc_urbs(hif_dev);

	return ret;
}
#endif

static struct usb_driver ath9k_hif_usb_driver = {
	.name = "ath9k_hif_usb",
	.probe = ath9k_hif_usb_probe,
	.disconnect = ath9k_hif_usb_disconnect,
#ifdef CONFIG_PM
	.suspend = ath9k_hif_usb_suspend,
	.resume = ath9k_hif_usb_resume,
	.reset_resume = ath9k_hif_usb_resume,
#endif
	.id_table = ath9k_hif_usb_ids,
	.soft_unbind = 1,
};

int ath9k_hif_usb_init(void)
{
	return usb_register(&ath9k_hif_usb_driver);
}

void ath9k_hif_usb_exit(void)
{
	usb_deregister(&ath9k_hif_usb_driver);
}