bcm43xx_pio.c 16.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*

  Broadcom BCM43xx wireless driver

  PIO Transmission

  Copyright (c) 2005 Michael Buesch <mbuesch@freenet.de>

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; see the file COPYING.  If not, write to
  the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
  Boston, MA 02110-1301, USA.

*/

#include "bcm43xx.h"
#include "bcm43xx_pio.h"
#include "bcm43xx_main.h"
29
#include "bcm43xx_xmit.h"
30
#include "bcm43xx_power.h"
31 32 33 34

#include <linux/delay.h>


35
static void tx_start(struct bcm43xx_pioqueue *queue)
36
{
37 38
	bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
			  BCM43xx_PIO_TXCTL_INIT);
39 40
}

41 42
static void tx_octet(struct bcm43xx_pioqueue *queue,
		     u8 octet)
43
{
44 45 46 47
	if (queue->need_workarounds) {
		bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA,
				  octet);
		bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
48
				  BCM43xx_PIO_TXCTL_WRITELO);
49 50
	} else {
		bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
51
				  BCM43xx_PIO_TXCTL_WRITELO);
52 53 54
		bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA,
				  octet);
	}
55 56
}

57 58 59
static u16 tx_get_next_word(struct bcm43xx_txhdr *txhdr,
			    const u8 *packet,
			    unsigned int *pos)
60
{
61 62 63
	const u8 *source;
	unsigned int i = *pos;
	u16 ret;
64

65 66
	if (i < sizeof(*txhdr)) {
		source = (const u8 *)txhdr;
67
	} else {
68 69
		source = packet;
		i -= sizeof(*txhdr);
70
	}
A
Al Viro 已提交
71
	ret = le16_to_cpu( *((__le16 *)(source + i)) );
72 73 74
	*pos += 2;

	return ret;
75 76
}

77 78 79 80
static void tx_data(struct bcm43xx_pioqueue *queue,
		    struct bcm43xx_txhdr *txhdr,
		    const u8 *packet,
		    unsigned int octets)
81 82 83 84
{
	u16 data;
	unsigned int i = 0;

85 86
	if (queue->need_workarounds) {
		data = tx_get_next_word(txhdr, packet, &i);
87 88 89
		bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA, data);
	}
	bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
90 91 92 93
			  BCM43xx_PIO_TXCTL_WRITELO |
			  BCM43xx_PIO_TXCTL_WRITEHI);
	while (i < octets - 1) {
		data = tx_get_next_word(txhdr, packet, &i);
94 95 96
		bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA, data);
	}
	if (octets % 2)
97
		tx_octet(queue, packet[octets - sizeof(*txhdr) - 1]);
98 99
}

100 101
static void tx_complete(struct bcm43xx_pioqueue *queue,
			struct sk_buff *skb)
102
{
103 104 105
	if (queue->need_workarounds) {
		bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA,
				  skb->data[skb->len - 1]);
106
		bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
107
				  BCM43xx_PIO_TXCTL_WRITELO |
108
				  BCM43xx_PIO_TXCTL_COMPLETE);
109
	} else {
110 111
		bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
				  BCM43xx_PIO_TXCTL_COMPLETE);
112 113 114
	}
}

115
static u16 generate_cookie(struct bcm43xx_pioqueue *queue,
116
			   struct bcm43xx_pio_txpacket *packet)
117 118
{
	u16 cookie = 0x0000;
119
	int packetindex;
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136

	/* We use the upper 4 bits for the PIO
	 * controller ID and the lower 12 bits
	 * for the packet index (in the cache).
	 */
	switch (queue->mmio_base) {
	case BCM43xx_MMIO_PIO1_BASE:
		break;
	case BCM43xx_MMIO_PIO2_BASE:
		cookie = 0x1000;
		break;
	case BCM43xx_MMIO_PIO3_BASE:
		cookie = 0x2000;
		break;
	case BCM43xx_MMIO_PIO4_BASE:
		cookie = 0x3000;
		break;
137 138
	default:
		assert(0);
139
	}
140
	packetindex = pio_txpacket_getindex(packet);
141 142 143 144 145 146
	assert(((u16)packetindex & 0xF000) == 0x0000);
	cookie |= (u16)packetindex;

	return cookie;
}

147
static
148 149 150 151
struct bcm43xx_pioqueue * parse_cookie(struct bcm43xx_private *bcm,
				       u16 cookie,
				       struct bcm43xx_pio_txpacket **packet)
{
152
	struct bcm43xx_pio *pio = bcm43xx_current_pio(bcm);
153 154 155 156 157
	struct bcm43xx_pioqueue *queue = NULL;
	int packetindex;

	switch (cookie & 0xF000) {
	case 0x0000:
158
		queue = pio->queue0;
159 160
		break;
	case 0x1000:
161
		queue = pio->queue1;
162 163
		break;
	case 0x2000:
164
		queue = pio->queue2;
165 166
		break;
	case 0x3000:
167
		queue = pio->queue3;
168 169 170 171 172 173
		break;
	default:
		assert(0);
	}
	packetindex = (cookie & 0x0FFF);
	assert(packetindex >= 0 && packetindex < BCM43xx_PIO_MAXTXPACKETS);
174
	*packet = &(queue->tx_packets_cache[packetindex]);
175 176 177 178

	return queue;
}

179 180 181
static void pio_tx_write_fragment(struct bcm43xx_pioqueue *queue,
				  struct sk_buff *skb,
				  struct bcm43xx_pio_txpacket *packet)
182
{
183
	struct bcm43xx_txhdr txhdr;
184 185 186 187
	unsigned int octets;

	assert(skb_shinfo(skb)->nr_frags == 0);
	bcm43xx_generate_txhdr(queue->bcm,
188
			       &txhdr, skb->data, skb->len,
189
			       (packet->xmitted_frags == 0),
190
			       generate_cookie(queue, packet));
191 192

	tx_start(queue);
193 194 195 196
	octets = skb->len + sizeof(txhdr);
	if (queue->need_workarounds)
		octets--;
	tx_data(queue, &txhdr, (u8 *)skb->data, octets);
197 198 199
	tx_complete(queue, skb);
}

200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
static void free_txpacket(struct bcm43xx_pio_txpacket *packet,
			  int irq_context)
{
	struct bcm43xx_pioqueue *queue = packet->queue;

	ieee80211_txb_free(packet->txb);
	list_move(&packet->list, &queue->txfree);
	queue->nr_txfree++;

	assert(queue->tx_devq_used >= packet->xmitted_octets);
	assert(queue->tx_devq_packets >= packet->xmitted_frags);
	queue->tx_devq_used -= packet->xmitted_octets;
	queue->tx_devq_packets -= packet->xmitted_frags;
}

static int pio_tx_packet(struct bcm43xx_pio_txpacket *packet)
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
{
	struct bcm43xx_pioqueue *queue = packet->queue;
	struct ieee80211_txb *txb = packet->txb;
	struct sk_buff *skb;
	u16 octets;
	int i;

	for (i = packet->xmitted_frags; i < txb->nr_frags; i++) {
		skb = txb->fragments[i];

		octets = (u16)skb->len + sizeof(struct bcm43xx_txhdr);
		assert(queue->tx_devq_size >= octets);
		assert(queue->tx_devq_packets <= BCM43xx_PIO_MAXTXDEVQPACKETS);
		assert(queue->tx_devq_used <= queue->tx_devq_size);
		/* Check if there is sufficient free space on the device
231
		 * TX queue. If not, return and let the TX tasklet
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
		 * retry later.
		 */
		if (queue->tx_devq_packets == BCM43xx_PIO_MAXTXDEVQPACKETS)
			return -EBUSY;
		if (queue->tx_devq_used + octets > queue->tx_devq_size)
			return -EBUSY;
		/* Now poke the device. */
		pio_tx_write_fragment(queue, skb, packet);

		/* Account for the packet size.
		 * (We must not overflow the device TX queue)
		 */
		queue->tx_devq_packets++;
		queue->tx_devq_used += octets;

247
		assert(packet->xmitted_frags < packet->txb->nr_frags);
248 249 250 251 252 253 254 255
		packet->xmitted_frags++;
		packet->xmitted_octets += octets;
	}
	list_move_tail(&packet->list, &queue->txrunning);

	return 0;
}

256
static void tx_tasklet(unsigned long d)
257
{
258 259
	struct bcm43xx_pioqueue *queue = (struct bcm43xx_pioqueue *)d;
	struct bcm43xx_private *bcm = queue->bcm;
260 261 262
	unsigned long flags;
	struct bcm43xx_pio_txpacket *packet, *tmp_packet;
	int err;
263
	u16 txctl;
264

265
	spin_lock_irqsave(&bcm->irq_lock, flags);
266

267 268
	if (queue->tx_frozen)
		goto out_unlock;
269 270 271 272
	txctl = bcm43xx_pio_read(queue, BCM43xx_PIO_TXCTL);
	if (txctl & BCM43xx_PIO_TXCTL_SUSPEND)
		goto out_unlock;

273 274 275 276 277 278 279 280 281 282 283 284 285 286
	list_for_each_entry_safe(packet, tmp_packet, &queue->txqueue, list) {
		assert(packet->xmitted_frags < packet->txb->nr_frags);
		if (packet->xmitted_frags == 0) {
			int i;
			struct sk_buff *skb;

			/* Check if the device queue is big
			 * enough for every fragment. If not, drop the
			 * whole packet.
			 */
			for (i = 0; i < packet->txb->nr_frags; i++) {
				skb = packet->txb->fragments[i];
				if (unlikely(skb->len > queue->tx_devq_size)) {
					dprintkl(KERN_ERR PFX "PIO TX device queue too small. "
287 288
							      "Dropping packet.\n");
					free_txpacket(packet, 1);
289 290 291 292
					goto next_packet;
				}
			}
		}
293
		/* Try to transmit the packet.
294 295 296 297 298
		 * This may not completely succeed.
		 */
		err = pio_tx_packet(packet);
		if (err)
			break;
299
	next_packet:
300 301
		continue;
	}
302
out_unlock:
303
	spin_unlock_irqrestore(&bcm->irq_lock, flags);
304 305 306 307 308 309 310
}

static void setup_txqueues(struct bcm43xx_pioqueue *queue)
{
	struct bcm43xx_pio_txpacket *packet;
	int i;

311
	queue->nr_txfree = BCM43xx_PIO_MAXTXPACKETS;
312
	for (i = 0; i < BCM43xx_PIO_MAXTXPACKETS; i++) {
313
		packet = &(queue->tx_packets_cache[i]);
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329

		packet->queue = queue;
		INIT_LIST_HEAD(&packet->list);

		list_add(&packet->list, &queue->txfree);
	}
}

static
struct bcm43xx_pioqueue * bcm43xx_setup_pioqueue(struct bcm43xx_private *bcm,
						 u16 pio_mmio_base)
{
	struct bcm43xx_pioqueue *queue;
	u32 value;
	u16 qsize;

330
	queue = kzalloc(sizeof(*queue), GFP_KERNEL);
331 332 333 334 335
	if (!queue)
		goto out;

	queue->bcm = bcm;
	queue->mmio_base = pio_mmio_base;
336
	queue->need_workarounds = (bcm->current_core->rev < 3);
337 338 339 340

	INIT_LIST_HEAD(&queue->txfree);
	INIT_LIST_HEAD(&queue->txqueue);
	INIT_LIST_HEAD(&queue->txrunning);
341 342
	tasklet_init(&queue->txtask, tx_tasklet,
		     (unsigned long)queue);
343 344

	value = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
345
	value &= ~BCM43xx_SBF_XFER_REG_BYTESWAP;
346 347 348
	bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value);

	qsize = bcm43xx_read16(bcm, queue->mmio_base + BCM43xx_PIO_TXQBUFSIZE);
349 350 351 352 353 354
	if (qsize == 0) {
		printk(KERN_ERR PFX "ERROR: This card does not support PIO "
				    "operation mode. Please use DMA mode "
				    "(module parameter pio=0).\n");
		goto err_freequeue;
	}
355
	if (qsize <= BCM43xx_PIO_TXQADJUST) {
356 357
		printk(KERN_ERR PFX "PIO tx device-queue too small (%u)\n",
		       qsize);
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
		goto err_freequeue;
	}
	qsize -= BCM43xx_PIO_TXQADJUST;
	queue->tx_devq_size = qsize;

	setup_txqueues(queue);

out:
	return queue;

err_freequeue:
	kfree(queue);
	queue = NULL;
	goto out;
}

static void cancel_transfers(struct bcm43xx_pioqueue *queue)
{
	struct bcm43xx_pio_txpacket *packet, *tmp_packet;

	netif_tx_disable(queue->bcm->net_dev);
379
	tasklet_disable(&queue->txtask);
380 381

	list_for_each_entry_safe(packet, tmp_packet, &queue->txrunning, list)
382
		free_txpacket(packet, 0);
383
	list_for_each_entry_safe(packet, tmp_packet, &queue->txqueue, list)
384
		free_txpacket(packet, 0);
385 386 387 388 389 390 391 392 393 394 395 396 397
}

static void bcm43xx_destroy_pioqueue(struct bcm43xx_pioqueue *queue)
{
	if (!queue)
		return;

	cancel_transfers(queue);
	kfree(queue);
}

void bcm43xx_pio_free(struct bcm43xx_private *bcm)
{
398 399 400 401 402
	struct bcm43xx_pio *pio;

	if (!bcm43xx_using_pio(bcm))
		return;
	pio = bcm43xx_current_pio(bcm);
403 404 405 406 407 408 409 410 411

	bcm43xx_destroy_pioqueue(pio->queue3);
	pio->queue3 = NULL;
	bcm43xx_destroy_pioqueue(pio->queue2);
	pio->queue2 = NULL;
	bcm43xx_destroy_pioqueue(pio->queue1);
	pio->queue1 = NULL;
	bcm43xx_destroy_pioqueue(pio->queue0);
	pio->queue0 = NULL;
412 413 414 415
}

int bcm43xx_pio_init(struct bcm43xx_private *bcm)
{
416
	struct bcm43xx_pio *pio = bcm43xx_current_pio(bcm);
417 418 419 420 421 422
	struct bcm43xx_pioqueue *queue;
	int err = -ENOMEM;

	queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO1_BASE);
	if (!queue)
		goto out;
423
	pio->queue0 = queue;
424 425 426 427

	queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO2_BASE);
	if (!queue)
		goto err_destroy0;
428
	pio->queue1 = queue;
429 430 431 432

	queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO3_BASE);
	if (!queue)
		goto err_destroy1;
433
	pio->queue2 = queue;
434 435 436 437

	queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO4_BASE);
	if (!queue)
		goto err_destroy2;
438
	pio->queue3 = queue;
439 440 441 442 443 444 445 446 447 448

	if (bcm->current_core->rev < 3)
		bcm->irq_savedstate |= BCM43xx_IRQ_PIO_WORKAROUND;

	dprintk(KERN_INFO PFX "PIO initialized\n");
	err = 0;
out:
	return err;

err_destroy2:
449 450
	bcm43xx_destroy_pioqueue(pio->queue2);
	pio->queue2 = NULL;
451
err_destroy1:
452 453
	bcm43xx_destroy_pioqueue(pio->queue1);
	pio->queue1 = NULL;
454
err_destroy0:
455 456
	bcm43xx_destroy_pioqueue(pio->queue0);
	pio->queue0 = NULL;
457 458 459
	goto out;
}

460 461
int bcm43xx_pio_tx(struct bcm43xx_private *bcm,
		   struct ieee80211_txb *txb)
462
{
463
	struct bcm43xx_pioqueue *queue = bcm43xx_current_pio(bcm)->queue1;
464 465 466 467 468 469 470 471
	struct bcm43xx_pio_txpacket *packet;

	assert(!queue->tx_suspended);
	assert(!list_empty(&queue->txfree));

	packet = list_entry(queue->txfree.next, struct bcm43xx_pio_txpacket, list);
	packet->txb = txb;
	packet->xmitted_frags = 0;
472 473 474 475
	packet->xmitted_octets = 0;
	list_move_tail(&packet->list, &queue->txqueue);
	queue->nr_txfree--;
	assert(queue->nr_txfree < BCM43xx_PIO_MAXTXPACKETS);
476 477

	/* Suspend TX, if we are out of packets in the "free" queue. */
478
	if (list_empty(&queue->txfree)) {
479 480 481 482
		netif_stop_queue(queue->bcm->net_dev);
		queue->tx_suspended = 1;
	}

483
	tasklet_schedule(&queue->txtask);
484 485 486 487

	return 0;
}

488 489
void bcm43xx_pio_handle_xmitstatus(struct bcm43xx_private *bcm,
				   struct bcm43xx_xmitstatus *status)
490 491 492 493 494 495
{
	struct bcm43xx_pioqueue *queue;
	struct bcm43xx_pio_txpacket *packet;

	queue = parse_cookie(bcm, status->cookie, &packet);
	assert(queue);
496

497
	free_txpacket(packet, 1);
498
	if (queue->tx_suspended) {
499 500 501
		queue->tx_suspended = 0;
		netif_wake_queue(queue->bcm->net_dev);
	}
502 503 504
	/* If there are packets on the txqueue, poke the tasklet
	 * to transmit them.
	 */
505 506
	if (!list_empty(&queue->txqueue))
		tasklet_schedule(&queue->txtask);
507 508 509
}

static void pio_rx_error(struct bcm43xx_pioqueue *queue,
510
			 int clear_buffers,
511 512
			 const char *error)
{
513 514 515 516 517 518 519 520 521 522 523 524
	int i;

	printkl("PIO RX error: %s\n", error);
	bcm43xx_pio_write(queue, BCM43xx_PIO_RXCTL,
			  BCM43xx_PIO_RXCTL_READY);
	if (clear_buffers) {
		assert(queue->mmio_base == BCM43xx_MMIO_PIO1_BASE);
		for (i = 0; i < 15; i++) {
			/* Dummy read. */
			bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA);
		}
	}
525 526
}

527
void bcm43xx_pio_rx(struct bcm43xx_pioqueue *queue)
528
{
A
Al Viro 已提交
529
	__le16 preamble[21] = { 0 };
530
	struct bcm43xx_rxhdr *rxhdr;
531 532
	u16 tmp, len, rxflags2;
	int i, preamble_readwords;
533 534 535
	struct sk_buff *skb;

	tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXCTL);
536
	if (!(tmp & BCM43xx_PIO_RXCTL_DATAAVAILABLE))
537
		return;
538 539
	bcm43xx_pio_write(queue, BCM43xx_PIO_RXCTL,
			  BCM43xx_PIO_RXCTL_DATAAVAILABLE);
540 541 542 543 544 545 546 547 548 549 550

	for (i = 0; i < 10; i++) {
		tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXCTL);
		if (tmp & BCM43xx_PIO_RXCTL_READY)
			goto data_ready;
		udelay(10);
	}
	dprintkl(KERN_ERR PFX "PIO RX timed out\n");
	return;
data_ready:

551
	len = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA);
552
	if (unlikely(len > 0x700)) {
553
		pio_rx_error(queue, 0, "len > 0x700");
554 555 556
		return;
	}
	if (unlikely(len == 0 && queue->mmio_base != BCM43xx_MMIO_PIO4_BASE)) {
557
		pio_rx_error(queue, 0, "len == 0");
558 559 560 561 562 563 564 565 566
		return;
	}
	preamble[0] = cpu_to_le16(len);
	if (queue->mmio_base == BCM43xx_MMIO_PIO4_BASE)
		preamble_readwords = 14 / sizeof(u16);
	else
		preamble_readwords = 18 / sizeof(u16);
	for (i = 0; i < preamble_readwords; i++) {
		tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA);
567
		preamble[i + 1] = cpu_to_le16(tmp);
568 569
	}
	rxhdr = (struct bcm43xx_rxhdr *)preamble;
570 571 572 573 574
	rxflags2 = le16_to_cpu(rxhdr->flags2);
	if (unlikely(rxflags2 & BCM43xx_RXHDR_FLAGS2_INVALIDFRAME)) {
		pio_rx_error(queue,
			     (queue->mmio_base == BCM43xx_MMIO_PIO1_BASE),
			     "invalid frame");
575 576 577
		return;
	}
	if (queue->mmio_base == BCM43xx_MMIO_PIO4_BASE) {
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
		/* We received an xmit status. */
		struct bcm43xx_hwxmitstatus *hw;
		struct bcm43xx_xmitstatus stat;

		hw = (struct bcm43xx_hwxmitstatus *)(preamble + 1);
		stat.cookie = le16_to_cpu(hw->cookie);
		stat.flags = hw->flags;
		stat.cnt1 = hw->cnt1;
		stat.cnt2 = hw->cnt2;
		stat.seq = le16_to_cpu(hw->seq);
		stat.unknown = le16_to_cpu(hw->unknown);

		bcm43xx_debugfs_log_txstat(queue->bcm, &stat);
		bcm43xx_pio_handle_xmitstatus(queue->bcm, &stat);

593 594
		return;
	}
595

596 597
	skb = dev_alloc_skb(len);
	if (unlikely(!skb)) {
598
		pio_rx_error(queue, 1, "OOM");
599 600 601 602
		return;
	}
	skb_put(skb, len);
	for (i = 0; i < len - 1; i += 2) {
603
		tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA);
A
Al Viro 已提交
604
		*((__le16 *)(skb->data + i)) = cpu_to_le16(tmp);
605 606
	}
	if (len % 2) {
607
		tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA);
608
		skb->data[len - 1] = (tmp & 0x00FF);
609 610 611 612 613
/* The specs say the following is required, but
 * it is wrong and corrupts the PLCP. If we don't do
 * this, the PLCP seems to be correct. So ifdef it out for now.
 */
#if 0
614
		if (rxflags2 & BCM43xx_RXHDR_FLAGS2_TYPE2FRAME)
615
			skb->data[2] = (tmp & 0xFF00) >> 8;
616
		else
617 618
			skb->data[0] = (tmp & 0xFF00) >> 8;
#endif
619
	}
620
	skb_trim(skb, len - IEEE80211_FCS_LEN);
621
	bcm43xx_rx(queue->bcm, skb, rxhdr);
622
}
623 624 625 626 627 628 629 630 631 632 633 634 635 636 637

void bcm43xx_pio_tx_suspend(struct bcm43xx_pioqueue *queue)
{
	bcm43xx_power_saving_ctl_bits(queue->bcm, -1, 1);
	bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
			  bcm43xx_pio_read(queue, BCM43xx_PIO_TXCTL)
			  | BCM43xx_PIO_TXCTL_SUSPEND);
}

void bcm43xx_pio_tx_resume(struct bcm43xx_pioqueue *queue)
{
	bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
			  bcm43xx_pio_read(queue, BCM43xx_PIO_TXCTL)
			  & ~BCM43xx_PIO_TXCTL_SUSPEND);
	bcm43xx_power_saving_ctl_bits(queue->bcm, -1, -1);
638 639 640 641 642 643 644 645 646 647 648 649 650 651
	if (!list_empty(&queue->txqueue))
		tasklet_schedule(&queue->txtask);
}

void bcm43xx_pio_freeze_txqueues(struct bcm43xx_private *bcm)
{
	struct bcm43xx_pio *pio;

	assert(bcm43xx_using_pio(bcm));
	pio = bcm43xx_current_pio(bcm);
	pio->queue0->tx_frozen = 1;
	pio->queue1->tx_frozen = 1;
	pio->queue2->tx_frozen = 1;
	pio->queue3->tx_frozen = 1;
652
}
653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674

void bcm43xx_pio_thaw_txqueues(struct bcm43xx_private *bcm)
{
	struct bcm43xx_pio *pio;

	assert(bcm43xx_using_pio(bcm));
	pio = bcm43xx_current_pio(bcm);
	pio->queue0->tx_frozen = 0;
	pio->queue1->tx_frozen = 0;
	pio->queue2->tx_frozen = 0;
	pio->queue3->tx_frozen = 0;
	if (!list_empty(&pio->queue0->txqueue))
		tasklet_schedule(&pio->queue0->txtask);
	if (!list_empty(&pio->queue1->txqueue))
		tasklet_schedule(&pio->queue1->txtask);
	if (!list_empty(&pio->queue2->txqueue))
		tasklet_schedule(&pio->queue2->txtask);
	if (!list_empty(&pio->queue3->txqueue))
		tasklet_schedule(&pio->queue3->txtask);
}