blob: c60c1743ea067d4b7535bc62ec331b1b63ba33fc [file] [log] [blame]
John W. Linvillef2223132006-01-23 16:59:58 -05001/*
2
3 Broadcom BCM43xx wireless driver
4
5 PIO Transmission
6
7 Copyright (c) 2005 Michael Buesch <mbuesch@freenet.de>
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; see the file COPYING. If not, write to
21 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
22 Boston, MA 02110-1301, USA.
23
24*/
25
26#include "bcm43xx.h"
27#include "bcm43xx_pio.h"
28#include "bcm43xx_main.h"
Michael Bueschf398f022006-02-23 21:15:39 +010029#include "bcm43xx_xmit.h"
Michael Buesch7c241d32006-04-23 13:23:10 +020030#include "bcm43xx_power.h"
John W. Linvillef2223132006-01-23 16:59:58 -050031
32#include <linux/delay.h>
33
34
Michael Buesch77db31e2006-02-12 16:47:44 +010035static void tx_start(struct bcm43xx_pioqueue *queue)
John W. Linvillef2223132006-01-23 16:59:58 -050036{
Michael Buesch77db31e2006-02-12 16:47:44 +010037 bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
38 BCM43xx_PIO_TXCTL_INIT);
John W. Linvillef2223132006-01-23 16:59:58 -050039}
40
Michael Buesch77db31e2006-02-12 16:47:44 +010041static void tx_octet(struct bcm43xx_pioqueue *queue,
42 u8 octet)
John W. Linvillef2223132006-01-23 16:59:58 -050043{
Michael Buesch77db31e2006-02-12 16:47:44 +010044 if (queue->need_workarounds) {
45 bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA,
46 octet);
47 bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
Michael Buesch7c241d32006-04-23 13:23:10 +020048 BCM43xx_PIO_TXCTL_WRITELO);
John W. Linvillef2223132006-01-23 16:59:58 -050049 } else {
Michael Buesch77db31e2006-02-12 16:47:44 +010050 bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
Michael Buesch7c241d32006-04-23 13:23:10 +020051 BCM43xx_PIO_TXCTL_WRITELO);
Michael Buesch77db31e2006-02-12 16:47:44 +010052 bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA,
53 octet);
John W. Linvillef2223132006-01-23 16:59:58 -050054 }
55}
56
Michael Buesch77db31e2006-02-12 16:47:44 +010057static u16 tx_get_next_word(struct bcm43xx_txhdr *txhdr,
58 const u8 *packet,
59 unsigned int *pos)
60{
61 const u8 *source;
62 unsigned int i = *pos;
63 u16 ret;
64
65 if (i < sizeof(*txhdr)) {
66 source = (const u8 *)txhdr;
67 } else {
68 source = packet;
69 i -= sizeof(*txhdr);
70 }
71 ret = le16_to_cpu( *((u16 *)(source + i)) );
72 *pos += 2;
73
74 return ret;
75}
76
77static void tx_data(struct bcm43xx_pioqueue *queue,
78 struct bcm43xx_txhdr *txhdr,
79 const u8 *packet,
80 unsigned int octets)
John W. Linvillef2223132006-01-23 16:59:58 -050081{
82 u16 data;
83 unsigned int i = 0;
84
Michael Buesch77db31e2006-02-12 16:47:44 +010085 if (queue->need_workarounds) {
86 data = tx_get_next_word(txhdr, packet, &i);
John W. Linvillef2223132006-01-23 16:59:58 -050087 bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA, data);
John W. Linvillef2223132006-01-23 16:59:58 -050088 }
89 bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
Michael Buesch77db31e2006-02-12 16:47:44 +010090 BCM43xx_PIO_TXCTL_WRITELO |
91 BCM43xx_PIO_TXCTL_WRITEHI);
92 while (i < octets - 1) {
93 data = tx_get_next_word(txhdr, packet, &i);
John W. Linvillef2223132006-01-23 16:59:58 -050094 bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA, data);
95 }
96 if (octets % 2)
Michael Buesch77db31e2006-02-12 16:47:44 +010097 tx_octet(queue, packet[octets - sizeof(*txhdr) - 1]);
John W. Linvillef2223132006-01-23 16:59:58 -050098}
99
Michael Buesch77db31e2006-02-12 16:47:44 +0100100static void tx_complete(struct bcm43xx_pioqueue *queue,
101 struct sk_buff *skb)
John W. Linvillef2223132006-01-23 16:59:58 -0500102{
Michael Buesch77db31e2006-02-12 16:47:44 +0100103 if (queue->need_workarounds) {
104 bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA,
105 skb->data[skb->len - 1]);
John W. Linvillef2223132006-01-23 16:59:58 -0500106 bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
Michael Buesch7c241d32006-04-23 13:23:10 +0200107 BCM43xx_PIO_TXCTL_WRITELO |
Michael Buesch77db31e2006-02-12 16:47:44 +0100108 BCM43xx_PIO_TXCTL_COMPLETE);
John W. Linvillef2223132006-01-23 16:59:58 -0500109 } else {
Michael Buesch77db31e2006-02-12 16:47:44 +0100110 bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
111 BCM43xx_PIO_TXCTL_COMPLETE);
John W. Linvillef2223132006-01-23 16:59:58 -0500112 }
113}
114
Michael Buesch77db31e2006-02-12 16:47:44 +0100115static u16 generate_cookie(struct bcm43xx_pioqueue *queue,
Michael Buesch7c241d32006-04-23 13:23:10 +0200116 struct bcm43xx_pio_txpacket *packet)
John W. Linvillef2223132006-01-23 16:59:58 -0500117{
118 u16 cookie = 0x0000;
Michael Buesch7c241d32006-04-23 13:23:10 +0200119 int packetindex;
John W. Linvillef2223132006-01-23 16:59:58 -0500120
121 /* We use the upper 4 bits for the PIO
122 * controller ID and the lower 12 bits
123 * for the packet index (in the cache).
124 */
125 switch (queue->mmio_base) {
John W. Linvillef2223132006-01-23 16:59:58 -0500126 case BCM43xx_MMIO_PIO1_BASE:
127 break;
128 case BCM43xx_MMIO_PIO2_BASE:
129 cookie = 0x1000;
130 break;
131 case BCM43xx_MMIO_PIO3_BASE:
132 cookie = 0x2000;
133 break;
134 case BCM43xx_MMIO_PIO4_BASE:
135 cookie = 0x3000;
136 break;
Michael Buesch77db31e2006-02-12 16:47:44 +0100137 default:
138 assert(0);
John W. Linvillef2223132006-01-23 16:59:58 -0500139 }
Michael Buesch7c241d32006-04-23 13:23:10 +0200140 packetindex = pio_txpacket_getindex(packet);
John W. Linvillef2223132006-01-23 16:59:58 -0500141 assert(((u16)packetindex & 0xF000) == 0x0000);
142 cookie |= (u16)packetindex;
143
144 return cookie;
145}
146
Michael Buesch77db31e2006-02-12 16:47:44 +0100147static
John W. Linvillef2223132006-01-23 16:59:58 -0500148struct bcm43xx_pioqueue * parse_cookie(struct bcm43xx_private *bcm,
149 u16 cookie,
150 struct bcm43xx_pio_txpacket **packet)
151{
Michael Buesche9357c02006-03-13 19:27:34 +0100152 struct bcm43xx_pio *pio = bcm43xx_current_pio(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -0500153 struct bcm43xx_pioqueue *queue = NULL;
154 int packetindex;
155
156 switch (cookie & 0xF000) {
157 case 0x0000:
Michael Buesch77db31e2006-02-12 16:47:44 +0100158 queue = pio->queue0;
John W. Linvillef2223132006-01-23 16:59:58 -0500159 break;
160 case 0x1000:
Michael Buesch77db31e2006-02-12 16:47:44 +0100161 queue = pio->queue1;
John W. Linvillef2223132006-01-23 16:59:58 -0500162 break;
163 case 0x2000:
Michael Buesch77db31e2006-02-12 16:47:44 +0100164 queue = pio->queue2;
John W. Linvillef2223132006-01-23 16:59:58 -0500165 break;
166 case 0x3000:
Michael Buesch77db31e2006-02-12 16:47:44 +0100167 queue = pio->queue3;
John W. Linvillef2223132006-01-23 16:59:58 -0500168 break;
169 default:
170 assert(0);
171 }
John W. Linvillef2223132006-01-23 16:59:58 -0500172 packetindex = (cookie & 0x0FFF);
173 assert(packetindex >= 0 && packetindex < BCM43xx_PIO_MAXTXPACKETS);
Michael Buesch77db31e2006-02-12 16:47:44 +0100174 *packet = &(queue->tx_packets_cache[packetindex]);
John W. Linvillef2223132006-01-23 16:59:58 -0500175
176 return queue;
177}
178
Michael Buesch77db31e2006-02-12 16:47:44 +0100179static void pio_tx_write_fragment(struct bcm43xx_pioqueue *queue,
180 struct sk_buff *skb,
181 struct bcm43xx_pio_txpacket *packet)
John W. Linvillef2223132006-01-23 16:59:58 -0500182{
Michael Buesch77db31e2006-02-12 16:47:44 +0100183 struct bcm43xx_txhdr txhdr;
John W. Linvillef2223132006-01-23 16:59:58 -0500184 unsigned int octets;
185
186 assert(skb_shinfo(skb)->nr_frags == 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500187 bcm43xx_generate_txhdr(queue->bcm,
Michael Buesch77db31e2006-02-12 16:47:44 +0100188 &txhdr, skb->data, skb->len,
John W. Linvillef2223132006-01-23 16:59:58 -0500189 (packet->xmitted_frags == 0),
Michael Buesch7c241d32006-04-23 13:23:10 +0200190 generate_cookie(queue, packet));
John W. Linvillef2223132006-01-23 16:59:58 -0500191
192 tx_start(queue);
Michael Buesch77db31e2006-02-12 16:47:44 +0100193 octets = skb->len + sizeof(txhdr);
194 if (queue->need_workarounds)
195 octets--;
196 tx_data(queue, &txhdr, (u8 *)skb->data, octets);
John W. Linvillef2223132006-01-23 16:59:58 -0500197 tx_complete(queue, skb);
198}
199
Michael Buesch77db31e2006-02-12 16:47:44 +0100200static void free_txpacket(struct bcm43xx_pio_txpacket *packet,
201 int irq_context)
202{
203 struct bcm43xx_pioqueue *queue = packet->queue;
204
205 ieee80211_txb_free(packet->txb);
206 list_move(&packet->list, &queue->txfree);
207 queue->nr_txfree++;
208
209 assert(queue->tx_devq_used >= packet->xmitted_octets);
210 assert(queue->tx_devq_packets >= packet->xmitted_frags);
211 queue->tx_devq_used -= packet->xmitted_octets;
212 queue->tx_devq_packets -= packet->xmitted_frags;
213}
214
215static int pio_tx_packet(struct bcm43xx_pio_txpacket *packet)
John W. Linvillef2223132006-01-23 16:59:58 -0500216{
217 struct bcm43xx_pioqueue *queue = packet->queue;
218 struct ieee80211_txb *txb = packet->txb;
219 struct sk_buff *skb;
220 u16 octets;
221 int i;
222
223 for (i = packet->xmitted_frags; i < txb->nr_frags; i++) {
224 skb = txb->fragments[i];
225
226 octets = (u16)skb->len + sizeof(struct bcm43xx_txhdr);
John W. Linvillef2223132006-01-23 16:59:58 -0500227 assert(queue->tx_devq_size >= octets);
228 assert(queue->tx_devq_packets <= BCM43xx_PIO_MAXTXDEVQPACKETS);
229 assert(queue->tx_devq_used <= queue->tx_devq_size);
230 /* Check if there is sufficient free space on the device
Michael Buesch77db31e2006-02-12 16:47:44 +0100231 * TX queue. If not, return and let the TX tasklet
John W. Linvillef2223132006-01-23 16:59:58 -0500232 * retry later.
233 */
234 if (queue->tx_devq_packets == BCM43xx_PIO_MAXTXDEVQPACKETS)
235 return -EBUSY;
236 if (queue->tx_devq_used + octets > queue->tx_devq_size)
237 return -EBUSY;
238 /* Now poke the device. */
239 pio_tx_write_fragment(queue, skb, packet);
240
241 /* Account for the packet size.
242 * (We must not overflow the device TX queue)
243 */
244 queue->tx_devq_packets++;
245 queue->tx_devq_used += octets;
246
Michael Buesch7c241d32006-04-23 13:23:10 +0200247 assert(packet->xmitted_frags < packet->txb->nr_frags);
John W. Linvillef2223132006-01-23 16:59:58 -0500248 packet->xmitted_frags++;
249 packet->xmitted_octets += octets;
250 }
251 list_move_tail(&packet->list, &queue->txrunning);
252
253 return 0;
254}
255
Michael Buesch77db31e2006-02-12 16:47:44 +0100256static void tx_tasklet(unsigned long d)
John W. Linvillef2223132006-01-23 16:59:58 -0500257{
Michael Buesch77db31e2006-02-12 16:47:44 +0100258 struct bcm43xx_pioqueue *queue = (struct bcm43xx_pioqueue *)d;
259 struct bcm43xx_private *bcm = queue->bcm;
John W. Linvillef2223132006-01-23 16:59:58 -0500260 unsigned long flags;
261 struct bcm43xx_pio_txpacket *packet, *tmp_packet;
262 int err;
Michael Buesch7c241d32006-04-23 13:23:10 +0200263 u16 txctl;
John W. Linvillef2223132006-01-23 16:59:58 -0500264
Michael Bueschefa6a372006-06-27 21:38:40 +0200265 spin_lock_irqsave(&bcm->irq_lock, flags);
Michael Buesch7c241d32006-04-23 13:23:10 +0200266
Michael Buesch91769e72006-06-05 20:24:21 +0200267 if (queue->tx_frozen)
268 goto out_unlock;
Michael Buesch7c241d32006-04-23 13:23:10 +0200269 txctl = bcm43xx_pio_read(queue, BCM43xx_PIO_TXCTL);
270 if (txctl & BCM43xx_PIO_TXCTL_SUSPEND)
271 goto out_unlock;
272
John W. Linvillef2223132006-01-23 16:59:58 -0500273 list_for_each_entry_safe(packet, tmp_packet, &queue->txqueue, list) {
274 assert(packet->xmitted_frags < packet->txb->nr_frags);
275 if (packet->xmitted_frags == 0) {
276 int i;
277 struct sk_buff *skb;
278
279 /* Check if the device queue is big
280 * enough for every fragment. If not, drop the
281 * whole packet.
282 */
283 for (i = 0; i < packet->txb->nr_frags; i++) {
284 skb = packet->txb->fragments[i];
285 if (unlikely(skb->len > queue->tx_devq_size)) {
286 dprintkl(KERN_ERR PFX "PIO TX device queue too small. "
Michael Buesch77db31e2006-02-12 16:47:44 +0100287 "Dropping packet.\n");
288 free_txpacket(packet, 1);
John W. Linvillef2223132006-01-23 16:59:58 -0500289 goto next_packet;
290 }
291 }
292 }
Michael Buesch77db31e2006-02-12 16:47:44 +0100293 /* Try to transmit the packet.
John W. Linvillef2223132006-01-23 16:59:58 -0500294 * This may not completely succeed.
295 */
296 err = pio_tx_packet(packet);
297 if (err)
298 break;
Michael Buesch77db31e2006-02-12 16:47:44 +0100299 next_packet:
John W. Linvillef2223132006-01-23 16:59:58 -0500300 continue;
301 }
Michael Buesch7c241d32006-04-23 13:23:10 +0200302out_unlock:
Michael Bueschefa6a372006-06-27 21:38:40 +0200303 spin_unlock_irqrestore(&bcm->irq_lock, flags);
John W. Linvillef2223132006-01-23 16:59:58 -0500304}
305
306static void setup_txqueues(struct bcm43xx_pioqueue *queue)
307{
308 struct bcm43xx_pio_txpacket *packet;
309 int i;
310
Michael Buesch77db31e2006-02-12 16:47:44 +0100311 queue->nr_txfree = BCM43xx_PIO_MAXTXPACKETS;
John W. Linvillef2223132006-01-23 16:59:58 -0500312 for (i = 0; i < BCM43xx_PIO_MAXTXPACKETS; i++) {
Michael Buesch77db31e2006-02-12 16:47:44 +0100313 packet = &(queue->tx_packets_cache[i]);
John W. Linvillef2223132006-01-23 16:59:58 -0500314
315 packet->queue = queue;
316 INIT_LIST_HEAD(&packet->list);
317
318 list_add(&packet->list, &queue->txfree);
319 }
320}
321
322static
323struct bcm43xx_pioqueue * bcm43xx_setup_pioqueue(struct bcm43xx_private *bcm,
324 u16 pio_mmio_base)
325{
326 struct bcm43xx_pioqueue *queue;
327 u32 value;
328 u16 qsize;
329
Michael Buesch77db31e2006-02-12 16:47:44 +0100330 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
John W. Linvillef2223132006-01-23 16:59:58 -0500331 if (!queue)
332 goto out;
John W. Linvillef2223132006-01-23 16:59:58 -0500333
334 queue->bcm = bcm;
335 queue->mmio_base = pio_mmio_base;
Michael Buesch77db31e2006-02-12 16:47:44 +0100336 queue->need_workarounds = (bcm->current_core->rev < 3);
John W. Linvillef2223132006-01-23 16:59:58 -0500337
338 INIT_LIST_HEAD(&queue->txfree);
339 INIT_LIST_HEAD(&queue->txqueue);
340 INIT_LIST_HEAD(&queue->txrunning);
Michael Buesch77db31e2006-02-12 16:47:44 +0100341 tasklet_init(&queue->txtask, tx_tasklet,
342 (unsigned long)queue);
John W. Linvillef2223132006-01-23 16:59:58 -0500343
344 value = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD);
Michael Buesch7c241d32006-04-23 13:23:10 +0200345 value &= ~BCM43xx_SBF_XFER_REG_BYTESWAP;
John W. Linvillef2223132006-01-23 16:59:58 -0500346 bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value);
347
348 qsize = bcm43xx_read16(bcm, queue->mmio_base + BCM43xx_PIO_TXQBUFSIZE);
Michael Buesch7c241d32006-04-23 13:23:10 +0200349 if (qsize == 0) {
350 printk(KERN_ERR PFX "ERROR: This card does not support PIO "
351 "operation mode. Please use DMA mode "
352 "(module parameter pio=0).\n");
353 goto err_freequeue;
354 }
John W. Linvillef2223132006-01-23 16:59:58 -0500355 if (qsize <= BCM43xx_PIO_TXQADJUST) {
Michael Buesch7c241d32006-04-23 13:23:10 +0200356 printk(KERN_ERR PFX "PIO tx device-queue too small (%u)\n",
357 qsize);
John W. Linvillef2223132006-01-23 16:59:58 -0500358 goto err_freequeue;
359 }
360 qsize -= BCM43xx_PIO_TXQADJUST;
361 queue->tx_devq_size = qsize;
362
363 setup_txqueues(queue);
364
365out:
366 return queue;
367
368err_freequeue:
369 kfree(queue);
370 queue = NULL;
371 goto out;
372}
373
374static void cancel_transfers(struct bcm43xx_pioqueue *queue)
375{
376 struct bcm43xx_pio_txpacket *packet, *tmp_packet;
377
378 netif_tx_disable(queue->bcm->net_dev);
Michael Buesch77db31e2006-02-12 16:47:44 +0100379 tasklet_disable(&queue->txtask);
John W. Linvillef2223132006-01-23 16:59:58 -0500380
381 list_for_each_entry_safe(packet, tmp_packet, &queue->txrunning, list)
Michael Buesch77db31e2006-02-12 16:47:44 +0100382 free_txpacket(packet, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500383 list_for_each_entry_safe(packet, tmp_packet, &queue->txqueue, list)
Michael Buesch77db31e2006-02-12 16:47:44 +0100384 free_txpacket(packet, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500385}
386
387static void bcm43xx_destroy_pioqueue(struct bcm43xx_pioqueue *queue)
388{
389 if (!queue)
390 return;
391
392 cancel_transfers(queue);
393 kfree(queue);
394}
395
396void bcm43xx_pio_free(struct bcm43xx_private *bcm)
397{
Michael Buesch49f29efa2006-03-14 16:05:26 +0100398 struct bcm43xx_pio *pio;
399
400 if (!bcm43xx_using_pio(bcm))
401 return;
402 pio = bcm43xx_current_pio(bcm);
Michael Buesch77db31e2006-02-12 16:47:44 +0100403
404 bcm43xx_destroy_pioqueue(pio->queue3);
405 pio->queue3 = NULL;
406 bcm43xx_destroy_pioqueue(pio->queue2);
407 pio->queue2 = NULL;
408 bcm43xx_destroy_pioqueue(pio->queue1);
409 pio->queue1 = NULL;
410 bcm43xx_destroy_pioqueue(pio->queue0);
411 pio->queue0 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500412}
413
414int bcm43xx_pio_init(struct bcm43xx_private *bcm)
415{
Michael Buesche9357c02006-03-13 19:27:34 +0100416 struct bcm43xx_pio *pio = bcm43xx_current_pio(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -0500417 struct bcm43xx_pioqueue *queue;
418 int err = -ENOMEM;
419
420 queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO1_BASE);
421 if (!queue)
422 goto out;
Michael Buesch77db31e2006-02-12 16:47:44 +0100423 pio->queue0 = queue;
John W. Linvillef2223132006-01-23 16:59:58 -0500424
425 queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO2_BASE);
426 if (!queue)
427 goto err_destroy0;
Michael Buesch77db31e2006-02-12 16:47:44 +0100428 pio->queue1 = queue;
John W. Linvillef2223132006-01-23 16:59:58 -0500429
430 queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO3_BASE);
431 if (!queue)
432 goto err_destroy1;
Michael Buesch77db31e2006-02-12 16:47:44 +0100433 pio->queue2 = queue;
John W. Linvillef2223132006-01-23 16:59:58 -0500434
435 queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO4_BASE);
436 if (!queue)
437 goto err_destroy2;
Michael Buesch77db31e2006-02-12 16:47:44 +0100438 pio->queue3 = queue;
John W. Linvillef2223132006-01-23 16:59:58 -0500439
440 if (bcm->current_core->rev < 3)
441 bcm->irq_savedstate |= BCM43xx_IRQ_PIO_WORKAROUND;
442
443 dprintk(KERN_INFO PFX "PIO initialized\n");
444 err = 0;
445out:
446 return err;
447
448err_destroy2:
Michael Buesch77db31e2006-02-12 16:47:44 +0100449 bcm43xx_destroy_pioqueue(pio->queue2);
450 pio->queue2 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500451err_destroy1:
Michael Buesch77db31e2006-02-12 16:47:44 +0100452 bcm43xx_destroy_pioqueue(pio->queue1);
453 pio->queue1 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500454err_destroy0:
Michael Buesch77db31e2006-02-12 16:47:44 +0100455 bcm43xx_destroy_pioqueue(pio->queue0);
456 pio->queue0 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500457 goto out;
458}
459
Michael Buesch77db31e2006-02-12 16:47:44 +0100460int bcm43xx_pio_tx(struct bcm43xx_private *bcm,
461 struct ieee80211_txb *txb)
John W. Linvillef2223132006-01-23 16:59:58 -0500462{
Michael Buesche9357c02006-03-13 19:27:34 +0100463 struct bcm43xx_pioqueue *queue = bcm43xx_current_pio(bcm)->queue1;
John W. Linvillef2223132006-01-23 16:59:58 -0500464 struct bcm43xx_pio_txpacket *packet;
John W. Linvillef2223132006-01-23 16:59:58 -0500465
John W. Linvillef2223132006-01-23 16:59:58 -0500466 assert(!queue->tx_suspended);
467 assert(!list_empty(&queue->txfree));
468
John W. Linvillef2223132006-01-23 16:59:58 -0500469 packet = list_entry(queue->txfree.next, struct bcm43xx_pio_txpacket, list);
John W. Linvillef2223132006-01-23 16:59:58 -0500470 packet->txb = txb;
John W. Linvillef2223132006-01-23 16:59:58 -0500471 packet->xmitted_frags = 0;
Michael Buesch77db31e2006-02-12 16:47:44 +0100472 packet->xmitted_octets = 0;
473 list_move_tail(&packet->list, &queue->txqueue);
474 queue->nr_txfree--;
475 assert(queue->nr_txfree < BCM43xx_PIO_MAXTXPACKETS);
John W. Linvillef2223132006-01-23 16:59:58 -0500476
477 /* Suspend TX, if we are out of packets in the "free" queue. */
Michael Buesch7c241d32006-04-23 13:23:10 +0200478 if (list_empty(&queue->txfree)) {
John W. Linvillef2223132006-01-23 16:59:58 -0500479 netif_stop_queue(queue->bcm->net_dev);
480 queue->tx_suspended = 1;
481 }
482
Michael Buesch77db31e2006-02-12 16:47:44 +0100483 tasklet_schedule(&queue->txtask);
John W. Linvillef2223132006-01-23 16:59:58 -0500484
485 return 0;
486}
487
Michael Buesch77db31e2006-02-12 16:47:44 +0100488void bcm43xx_pio_handle_xmitstatus(struct bcm43xx_private *bcm,
489 struct bcm43xx_xmitstatus *status)
John W. Linvillef2223132006-01-23 16:59:58 -0500490{
491 struct bcm43xx_pioqueue *queue;
492 struct bcm43xx_pio_txpacket *packet;
John W. Linvillef2223132006-01-23 16:59:58 -0500493
494 queue = parse_cookie(bcm, status->cookie, &packet);
495 assert(queue);
Michael Buesch7c241d32006-04-23 13:23:10 +0200496
Michael Buesch77db31e2006-02-12 16:47:44 +0100497 free_txpacket(packet, 1);
Michael Buesch7c241d32006-04-23 13:23:10 +0200498 if (queue->tx_suspended) {
John W. Linvillef2223132006-01-23 16:59:58 -0500499 queue->tx_suspended = 0;
500 netif_wake_queue(queue->bcm->net_dev);
501 }
Michael Buesch7c241d32006-04-23 13:23:10 +0200502 /* If there are packets on the txqueue, poke the tasklet
503 * to transmit them.
504 */
Michael Buesch77db31e2006-02-12 16:47:44 +0100505 if (!list_empty(&queue->txqueue))
506 tasklet_schedule(&queue->txtask);
John W. Linvillef2223132006-01-23 16:59:58 -0500507}
508
509static void pio_rx_error(struct bcm43xx_pioqueue *queue,
Michael Buesch77db31e2006-02-12 16:47:44 +0100510 int clear_buffers,
John W. Linvillef2223132006-01-23 16:59:58 -0500511 const char *error)
512{
Michael Buesch77db31e2006-02-12 16:47:44 +0100513 int i;
514
515 printkl("PIO RX error: %s\n", error);
516 bcm43xx_pio_write(queue, BCM43xx_PIO_RXCTL,
517 BCM43xx_PIO_RXCTL_READY);
518 if (clear_buffers) {
519 assert(queue->mmio_base == BCM43xx_MMIO_PIO1_BASE);
520 for (i = 0; i < 15; i++) {
521 /* Dummy read. */
522 bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA);
523 }
524 }
John W. Linvillef2223132006-01-23 16:59:58 -0500525}
526
Michael Buesch77db31e2006-02-12 16:47:44 +0100527void bcm43xx_pio_rx(struct bcm43xx_pioqueue *queue)
John W. Linvillef2223132006-01-23 16:59:58 -0500528{
529 u16 preamble[21] = { 0 };
530 struct bcm43xx_rxhdr *rxhdr;
Michael Buesch77db31e2006-02-12 16:47:44 +0100531 u16 tmp, len, rxflags2;
532 int i, preamble_readwords;
John W. Linvillef2223132006-01-23 16:59:58 -0500533 struct sk_buff *skb;
534
535 tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXCTL);
Michael Buesch7c241d32006-04-23 13:23:10 +0200536 if (!(tmp & BCM43xx_PIO_RXCTL_DATAAVAILABLE))
John W. Linvillef2223132006-01-23 16:59:58 -0500537 return;
Michael Buesch77db31e2006-02-12 16:47:44 +0100538 bcm43xx_pio_write(queue, BCM43xx_PIO_RXCTL,
539 BCM43xx_PIO_RXCTL_DATAAVAILABLE);
John W. Linvillef2223132006-01-23 16:59:58 -0500540
541 for (i = 0; i < 10; i++) {
542 tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXCTL);
543 if (tmp & BCM43xx_PIO_RXCTL_READY)
544 goto data_ready;
545 udelay(10);
546 }
547 dprintkl(KERN_ERR PFX "PIO RX timed out\n");
548 return;
549data_ready:
550
Michael Buesch7c241d32006-04-23 13:23:10 +0200551 len = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA);
John W. Linvillef2223132006-01-23 16:59:58 -0500552 if (unlikely(len > 0x700)) {
Michael Buesch77db31e2006-02-12 16:47:44 +0100553 pio_rx_error(queue, 0, "len > 0x700");
John W. Linvillef2223132006-01-23 16:59:58 -0500554 return;
555 }
556 if (unlikely(len == 0 && queue->mmio_base != BCM43xx_MMIO_PIO4_BASE)) {
Michael Buesch77db31e2006-02-12 16:47:44 +0100557 pio_rx_error(queue, 0, "len == 0");
John W. Linvillef2223132006-01-23 16:59:58 -0500558 return;
559 }
560 preamble[0] = cpu_to_le16(len);
561 if (queue->mmio_base == BCM43xx_MMIO_PIO4_BASE)
562 preamble_readwords = 14 / sizeof(u16);
563 else
564 preamble_readwords = 18 / sizeof(u16);
565 for (i = 0; i < preamble_readwords; i++) {
566 tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA);
Michael Buesch7c241d32006-04-23 13:23:10 +0200567 preamble[i + 1] = cpu_to_le16(tmp);
John W. Linvillef2223132006-01-23 16:59:58 -0500568 }
569 rxhdr = (struct bcm43xx_rxhdr *)preamble;
Michael Buesch77db31e2006-02-12 16:47:44 +0100570 rxflags2 = le16_to_cpu(rxhdr->flags2);
571 if (unlikely(rxflags2 & BCM43xx_RXHDR_FLAGS2_INVALIDFRAME)) {
572 pio_rx_error(queue,
573 (queue->mmio_base == BCM43xx_MMIO_PIO1_BASE),
574 "invalid frame");
John W. Linvillef2223132006-01-23 16:59:58 -0500575 return;
576 }
John W. Linvillef2223132006-01-23 16:59:58 -0500577 if (queue->mmio_base == BCM43xx_MMIO_PIO4_BASE) {
Michael Buesch77db31e2006-02-12 16:47:44 +0100578 /* We received an xmit status. */
579 struct bcm43xx_hwxmitstatus *hw;
580 struct bcm43xx_xmitstatus stat;
581
582 hw = (struct bcm43xx_hwxmitstatus *)(preamble + 1);
583 stat.cookie = le16_to_cpu(hw->cookie);
584 stat.flags = hw->flags;
585 stat.cnt1 = hw->cnt1;
586 stat.cnt2 = hw->cnt2;
587 stat.seq = le16_to_cpu(hw->seq);
588 stat.unknown = le16_to_cpu(hw->unknown);
589
590 bcm43xx_debugfs_log_txstat(queue->bcm, &stat);
591 bcm43xx_pio_handle_xmitstatus(queue->bcm, &stat);
592
John W. Linvillef2223132006-01-23 16:59:58 -0500593 return;
594 }
Michael Buesch77db31e2006-02-12 16:47:44 +0100595
John W. Linvillef2223132006-01-23 16:59:58 -0500596 skb = dev_alloc_skb(len);
597 if (unlikely(!skb)) {
Michael Buesch77db31e2006-02-12 16:47:44 +0100598 pio_rx_error(queue, 1, "OOM");
John W. Linvillef2223132006-01-23 16:59:58 -0500599 return;
600 }
601 skb_put(skb, len);
602 for (i = 0; i < len - 1; i += 2) {
Michael Buesch7c241d32006-04-23 13:23:10 +0200603 tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA);
604 *((u16 *)(skb->data + i)) = cpu_to_le16(tmp);
John W. Linvillef2223132006-01-23 16:59:58 -0500605 }
606 if (len % 2) {
Michael Buesch77db31e2006-02-12 16:47:44 +0100607 tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA);
John W. Linvillef2223132006-01-23 16:59:58 -0500608 skb->data[len - 1] = (tmp & 0x00FF);
Michael Buesch7c241d32006-04-23 13:23:10 +0200609/* The specs say the following is required, but
610 * it is wrong and corrupts the PLCP. If we don't do
611 * this, the PLCP seems to be correct. So ifdef it out for now.
612 */
613#if 0
Michael Buesch77db31e2006-02-12 16:47:44 +0100614 if (rxflags2 & BCM43xx_RXHDR_FLAGS2_TYPE2FRAME)
Michael Buesch7c241d32006-04-23 13:23:10 +0200615 skb->data[2] = (tmp & 0xFF00) >> 8;
Michael Buesch77db31e2006-02-12 16:47:44 +0100616 else
Michael Buesch7c241d32006-04-23 13:23:10 +0200617 skb->data[0] = (tmp & 0xFF00) >> 8;
618#endif
John W. Linvillef2223132006-01-23 16:59:58 -0500619 }
Michael Buesch7c241d32006-04-23 13:23:10 +0200620 skb_trim(skb, len - IEEE80211_FCS_LEN);
Michael Buesch77db31e2006-02-12 16:47:44 +0100621 bcm43xx_rx(queue->bcm, skb, rxhdr);
John W. Linvillef2223132006-01-23 16:59:58 -0500622}
Michael Buesch7c241d32006-04-23 13:23:10 +0200623
624void bcm43xx_pio_tx_suspend(struct bcm43xx_pioqueue *queue)
625{
626 bcm43xx_power_saving_ctl_bits(queue->bcm, -1, 1);
627 bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
628 bcm43xx_pio_read(queue, BCM43xx_PIO_TXCTL)
629 | BCM43xx_PIO_TXCTL_SUSPEND);
630}
631
632void bcm43xx_pio_tx_resume(struct bcm43xx_pioqueue *queue)
633{
634 bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL,
635 bcm43xx_pio_read(queue, BCM43xx_PIO_TXCTL)
636 & ~BCM43xx_PIO_TXCTL_SUSPEND);
637 bcm43xx_power_saving_ctl_bits(queue->bcm, -1, -1);
Michael Buesch91769e72006-06-05 20:24:21 +0200638 if (!list_empty(&queue->txqueue))
639 tasklet_schedule(&queue->txtask);
Michael Buesch7c241d32006-04-23 13:23:10 +0200640}
Michael Buesch91769e72006-06-05 20:24:21 +0200641
642void bcm43xx_pio_freeze_txqueues(struct bcm43xx_private *bcm)
643{
644 struct bcm43xx_pio *pio;
645
646 assert(bcm43xx_using_pio(bcm));
647 pio = bcm43xx_current_pio(bcm);
648 pio->queue0->tx_frozen = 1;
649 pio->queue1->tx_frozen = 1;
650 pio->queue2->tx_frozen = 1;
651 pio->queue3->tx_frozen = 1;
652}
653
654void bcm43xx_pio_thaw_txqueues(struct bcm43xx_private *bcm)
655{
656 struct bcm43xx_pio *pio;
657
658 assert(bcm43xx_using_pio(bcm));
659 pio = bcm43xx_current_pio(bcm);
660 pio->queue0->tx_frozen = 0;
661 pio->queue1->tx_frozen = 0;
662 pio->queue2->tx_frozen = 0;
663 pio->queue3->tx_frozen = 0;
664 if (!list_empty(&pio->queue0->txqueue))
665 tasklet_schedule(&pio->queue0->txtask);
666 if (!list_empty(&pio->queue1->txqueue))
667 tasklet_schedule(&pio->queue1->txtask);
668 if (!list_empty(&pio->queue2->txqueue))
669 tasklet_schedule(&pio->queue2->txtask);
670 if (!list_empty(&pio->queue3->txqueue))
671 tasklet_schedule(&pio->queue3->txtask);
672}
673
674