blob: 9c64438b767f5df04f76fc4a63297f1118088fd8 [file] [log] [blame]
John W. Linvillef2223132006-01-23 16:59:58 -05001/*
2
3 Broadcom BCM43xx wireless driver
4
5 DMA ringbuffer and descriptor allocation/management
6
7 Copyright (c) 2005 Michael Buesch <mbuesch@freenet.de>
8
9 Some code in this file is derived from the b44.c driver
10 Copyright (C) 2002 David S. Miller
11 Copyright (C) Pekka Pietikainen
12
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; see the file COPYING. If not, write to
25 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
26 Boston, MA 02110-1301, USA.
27
28*/
29
30#include "bcm43xx.h"
31#include "bcm43xx_dma.h"
32#include "bcm43xx_main.h"
33#include "bcm43xx_debugfs.h"
34#include "bcm43xx_power.h"
Michael Bueschf398f022006-02-23 21:15:39 +010035#include "bcm43xx_xmit.h"
John W. Linvillef2223132006-01-23 16:59:58 -050036
37#include <linux/dmapool.h>
38#include <linux/pci.h>
39#include <linux/delay.h>
40#include <linux/skbuff.h>
41#include <asm/semaphore.h>
42
43
44static inline int free_slots(struct bcm43xx_dmaring *ring)
45{
46 return (ring->nr_slots - ring->used_slots);
47}
48
49static inline int next_slot(struct bcm43xx_dmaring *ring, int slot)
50{
51 assert(slot >= -1 && slot <= ring->nr_slots - 1);
52 if (slot == ring->nr_slots - 1)
53 return 0;
54 return slot + 1;
55}
56
57static inline int prev_slot(struct bcm43xx_dmaring *ring, int slot)
58{
59 assert(slot >= 0 && slot <= ring->nr_slots - 1);
60 if (slot == 0)
61 return ring->nr_slots - 1;
62 return slot - 1;
63}
64
65/* Request a slot for usage. */
66static inline
67int request_slot(struct bcm43xx_dmaring *ring)
68{
69 int slot;
70
71 assert(ring->tx);
72 assert(!ring->suspended);
73 assert(free_slots(ring) != 0);
74
75 slot = next_slot(ring, ring->current_slot);
76 ring->current_slot = slot;
77 ring->used_slots++;
78
79 /* Check the number of available slots and suspend TX,
80 * if we are running low on free slots.
81 */
82 if (unlikely(free_slots(ring) < ring->suspend_mark)) {
83 netif_stop_queue(ring->bcm->net_dev);
84 ring->suspended = 1;
85 }
86#ifdef CONFIG_BCM43XX_DEBUG
87 if (ring->used_slots > ring->max_used_slots)
88 ring->max_used_slots = ring->used_slots;
89#endif /* CONFIG_BCM43XX_DEBUG*/
90
91 return slot;
92}
93
94/* Return a slot to the free slots. */
95static inline
96void return_slot(struct bcm43xx_dmaring *ring, int slot)
97{
98 assert(ring->tx);
99
100 ring->used_slots--;
101
102 /* Check if TX is suspended and check if we have
103 * enough free slots to resume it again.
104 */
105 if (unlikely(ring->suspended)) {
106 if (free_slots(ring) >= ring->resume_mark) {
107 ring->suspended = 0;
108 netif_wake_queue(ring->bcm->net_dev);
109 }
110 }
111}
112
113static inline
114dma_addr_t map_descbuffer(struct bcm43xx_dmaring *ring,
115 unsigned char *buf,
116 size_t len,
117 int tx)
118{
119 dma_addr_t dmaaddr;
120
121 if (tx) {
122 dmaaddr = dma_map_single(&ring->bcm->pci_dev->dev,
123 buf, len,
124 DMA_TO_DEVICE);
125 } else {
126 dmaaddr = dma_map_single(&ring->bcm->pci_dev->dev,
127 buf, len,
128 DMA_FROM_DEVICE);
129 }
130
131 return dmaaddr;
132}
133
134static inline
135void unmap_descbuffer(struct bcm43xx_dmaring *ring,
136 dma_addr_t addr,
137 size_t len,
138 int tx)
139{
140 if (tx) {
141 dma_unmap_single(&ring->bcm->pci_dev->dev,
142 addr, len,
143 DMA_TO_DEVICE);
144 } else {
145 dma_unmap_single(&ring->bcm->pci_dev->dev,
146 addr, len,
147 DMA_FROM_DEVICE);
148 }
149}
150
151static inline
152void sync_descbuffer_for_cpu(struct bcm43xx_dmaring *ring,
153 dma_addr_t addr,
154 size_t len)
155{
156 assert(!ring->tx);
157
158 dma_sync_single_for_cpu(&ring->bcm->pci_dev->dev,
159 addr, len, DMA_FROM_DEVICE);
160}
161
162static inline
163void sync_descbuffer_for_device(struct bcm43xx_dmaring *ring,
164 dma_addr_t addr,
165 size_t len)
166{
167 assert(!ring->tx);
168
169 dma_sync_single_for_device(&ring->bcm->pci_dev->dev,
170 addr, len, DMA_FROM_DEVICE);
171}
172
John W. Linvillef2223132006-01-23 16:59:58 -0500173/* Unmap and free a descriptor buffer. */
174static inline
175void free_descriptor_buffer(struct bcm43xx_dmaring *ring,
176 struct bcm43xx_dmadesc *desc,
177 struct bcm43xx_dmadesc_meta *meta,
178 int irq_context)
179{
180 assert(meta->skb);
Pete Zaitcev512a8092006-03-07 01:37:51 +0100181 if (irq_context)
182 dev_kfree_skb_irq(meta->skb);
183 else
184 dev_kfree_skb(meta->skb);
John W. Linvillef2223132006-01-23 16:59:58 -0500185 meta->skb = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500186}
187
188static int alloc_ringmemory(struct bcm43xx_dmaring *ring)
189{
190 struct device *dev = &(ring->bcm->pci_dev->dev);
191
192 ring->vbase = dma_alloc_coherent(dev, BCM43xx_DMA_RINGMEMSIZE,
193 &(ring->dmabase), GFP_KERNEL);
194 if (!ring->vbase) {
195 printk(KERN_ERR PFX "DMA ringmemory allocation failed\n");
196 return -ENOMEM;
197 }
198 if (ring->dmabase + BCM43xx_DMA_RINGMEMSIZE > BCM43xx_DMA_BUSADDRMAX) {
Michael Bueschea72ab22006-01-27 17:26:20 +0100199 printk(KERN_ERR PFX ">>>FATAL ERROR<<< DMA RINGMEMORY >1G "
200 "(0x%08x, len: %lu)\n",
201 ring->dmabase, BCM43xx_DMA_RINGMEMSIZE);
John W. Linvillef2223132006-01-23 16:59:58 -0500202 dma_free_coherent(dev, BCM43xx_DMA_RINGMEMSIZE,
203 ring->vbase, ring->dmabase);
204 return -ENOMEM;
205 }
206 assert(!(ring->dmabase & 0x000003FF));
207 memset(ring->vbase, 0, BCM43xx_DMA_RINGMEMSIZE);
208
209 return 0;
210}
211
212static void free_ringmemory(struct bcm43xx_dmaring *ring)
213{
214 struct device *dev = &(ring->bcm->pci_dev->dev);
215
216 dma_free_coherent(dev, BCM43xx_DMA_RINGMEMSIZE,
217 ring->vbase, ring->dmabase);
218}
219
220/* Reset the RX DMA channel */
221int bcm43xx_dmacontroller_rx_reset(struct bcm43xx_private *bcm,
222 u16 mmio_base)
223{
224 int i;
225 u32 value;
226
227 bcm43xx_write32(bcm,
228 mmio_base + BCM43xx_DMA_RX_CONTROL,
229 0x00000000);
230 for (i = 0; i < 1000; i++) {
231 value = bcm43xx_read32(bcm,
232 mmio_base + BCM43xx_DMA_RX_STATUS);
233 value &= BCM43xx_DMA_RXSTAT_STAT_MASK;
234 if (value == BCM43xx_DMA_RXSTAT_STAT_DISABLED) {
235 i = -1;
236 break;
237 }
238 udelay(10);
239 }
240 if (i != -1) {
241 printk(KERN_ERR PFX "Error: Wait on DMA RX status timed out.\n");
242 return -ENODEV;
243 }
244
245 return 0;
246}
247
John W. Linvillef2223132006-01-23 16:59:58 -0500248/* Reset the RX DMA channel */
249int bcm43xx_dmacontroller_tx_reset(struct bcm43xx_private *bcm,
250 u16 mmio_base)
251{
252 int i;
253 u32 value;
254
255 for (i = 0; i < 1000; i++) {
256 value = bcm43xx_read32(bcm,
257 mmio_base + BCM43xx_DMA_TX_STATUS);
258 value &= BCM43xx_DMA_TXSTAT_STAT_MASK;
259 if (value == BCM43xx_DMA_TXSTAT_STAT_DISABLED ||
260 value == BCM43xx_DMA_TXSTAT_STAT_IDLEWAIT ||
261 value == BCM43xx_DMA_TXSTAT_STAT_STOPPED)
262 break;
263 udelay(10);
264 }
265 bcm43xx_write32(bcm,
266 mmio_base + BCM43xx_DMA_TX_CONTROL,
267 0x00000000);
268 for (i = 0; i < 1000; i++) {
269 value = bcm43xx_read32(bcm,
270 mmio_base + BCM43xx_DMA_TX_STATUS);
271 value &= BCM43xx_DMA_TXSTAT_STAT_MASK;
272 if (value == BCM43xx_DMA_TXSTAT_STAT_DISABLED) {
273 i = -1;
274 break;
275 }
276 udelay(10);
277 }
278 if (i != -1) {
279 printk(KERN_ERR PFX "Error: Wait on DMA TX status timed out.\n");
280 return -ENODEV;
281 }
282 /* ensure the reset is completed. */
283 udelay(300);
284
285 return 0;
286}
287
John W. Linvillef2223132006-01-23 16:59:58 -0500288static int setup_rx_descbuffer(struct bcm43xx_dmaring *ring,
289 struct bcm43xx_dmadesc *desc,
290 struct bcm43xx_dmadesc_meta *meta,
291 gfp_t gfp_flags)
292{
293 struct bcm43xx_rxhdr *rxhdr;
294 dma_addr_t dmaaddr;
295 u32 desc_addr;
296 u32 desc_ctl;
297 const int slot = (int)(desc - ring->vbase);
298 struct sk_buff *skb;
299
300 assert(slot >= 0 && slot < ring->nr_slots);
301 assert(!ring->tx);
302
303 skb = __dev_alloc_skb(ring->rx_buffersize, gfp_flags);
304 if (unlikely(!skb))
305 return -ENOMEM;
306 dmaaddr = map_descbuffer(ring, skb->data, ring->rx_buffersize, 0);
307 if (unlikely(dmaaddr + ring->rx_buffersize > BCM43xx_DMA_BUSADDRMAX)) {
308 unmap_descbuffer(ring, dmaaddr, ring->rx_buffersize, 0);
309 dev_kfree_skb_any(skb);
Michael Bueschea72ab22006-01-27 17:26:20 +0100310 printk(KERN_ERR PFX ">>>FATAL ERROR<<< DMA RX SKB >1G "
311 "(0x%08x, len: %u)\n",
312 dmaaddr, ring->rx_buffersize);
John W. Linvillef2223132006-01-23 16:59:58 -0500313 return -ENOMEM;
314 }
315 meta->skb = skb;
316 meta->dmaaddr = dmaaddr;
317 skb->dev = ring->bcm->net_dev;
John W. Linvillef2223132006-01-23 16:59:58 -0500318 desc_addr = (u32)(dmaaddr + ring->memoffset);
319 desc_ctl = (BCM43xx_DMADTOR_BYTECNT_MASK &
320 (u32)(ring->rx_buffersize - ring->frameoffset));
321 if (slot == ring->nr_slots - 1)
322 desc_ctl |= BCM43xx_DMADTOR_DTABLEEND;
323 set_desc_addr(desc, desc_addr);
324 set_desc_ctl(desc, desc_ctl);
325
326 rxhdr = (struct bcm43xx_rxhdr *)(skb->data);
327 rxhdr->frame_length = 0;
328 rxhdr->flags1 = 0;
329
330 return 0;
331}
332
333/* Allocate the initial descbuffers.
334 * This is used for an RX ring only.
335 */
336static int alloc_initial_descbuffers(struct bcm43xx_dmaring *ring)
337{
338 int i, err = -ENOMEM;
Michael Bueschea72ab22006-01-27 17:26:20 +0100339 struct bcm43xx_dmadesc *desc;
John W. Linvillef2223132006-01-23 16:59:58 -0500340 struct bcm43xx_dmadesc_meta *meta;
341
342 for (i = 0; i < ring->nr_slots; i++) {
343 desc = ring->vbase + i;
344 meta = ring->meta + i;
345
346 err = setup_rx_descbuffer(ring, desc, meta, GFP_KERNEL);
347 if (err)
348 goto err_unwind;
John W. Linvillef2223132006-01-23 16:59:58 -0500349 }
350 ring->used_slots = ring->nr_slots;
John W. Linvillef2223132006-01-23 16:59:58 -0500351 err = 0;
352out:
353 return err;
354
355err_unwind:
Michael Bueschea72ab22006-01-27 17:26:20 +0100356 for (i--; i >= 0; i--) {
John W. Linvillef2223132006-01-23 16:59:58 -0500357 desc = ring->vbase + i;
358 meta = ring->meta + i;
359
360 unmap_descbuffer(ring, meta->dmaaddr, ring->rx_buffersize, 0);
361 dev_kfree_skb(meta->skb);
362 }
John W. Linvillef2223132006-01-23 16:59:58 -0500363 goto out;
364}
365
366/* Do initial setup of the DMA controller.
367 * Reset the controller, write the ring busaddress
368 * and switch the "enable" bit on.
369 */
370static int dmacontroller_setup(struct bcm43xx_dmaring *ring)
371{
372 int err = 0;
373 u32 value;
374
375 if (ring->tx) {
376 /* Set Transmit Control register to "transmit enable" */
Michael Bueschaae37782006-03-13 15:54:56 +0100377 bcm43xx_dma_write(ring, BCM43xx_DMA_TX_CONTROL,
378 BCM43xx_DMA_TXCTRL_ENABLE);
John W. Linvillef2223132006-01-23 16:59:58 -0500379 /* Set Transmit Descriptor ring address. */
Michael Bueschaae37782006-03-13 15:54:56 +0100380 bcm43xx_dma_write(ring, BCM43xx_DMA_TX_DESC_RING,
381 ring->dmabase + ring->memoffset);
John W. Linvillef2223132006-01-23 16:59:58 -0500382 } else {
383 err = alloc_initial_descbuffers(ring);
384 if (err)
385 goto out;
386 /* Set Receive Control "receive enable" and frame offset */
387 value = (ring->frameoffset << BCM43xx_DMA_RXCTRL_FRAMEOFF_SHIFT);
388 value |= BCM43xx_DMA_RXCTRL_ENABLE;
Michael Bueschaae37782006-03-13 15:54:56 +0100389 bcm43xx_dma_write(ring, BCM43xx_DMA_RX_CONTROL, value);
John W. Linvillef2223132006-01-23 16:59:58 -0500390 /* Set Receive Descriptor ring address. */
Michael Bueschaae37782006-03-13 15:54:56 +0100391 bcm43xx_dma_write(ring, BCM43xx_DMA_RX_DESC_RING,
392 ring->dmabase + ring->memoffset);
John W. Linvillef2223132006-01-23 16:59:58 -0500393 /* Init the descriptor pointer. */
Michael Bueschaae37782006-03-13 15:54:56 +0100394 bcm43xx_dma_write(ring, BCM43xx_DMA_RX_DESC_INDEX, 200);
John W. Linvillef2223132006-01-23 16:59:58 -0500395 }
396
397out:
398 return err;
399}
400
401/* Shutdown the DMA controller. */
402static void dmacontroller_cleanup(struct bcm43xx_dmaring *ring)
403{
404 if (ring->tx) {
Michael Bueschea72ab22006-01-27 17:26:20 +0100405 bcm43xx_dmacontroller_tx_reset(ring->bcm, ring->mmio_base);
John W. Linvillef2223132006-01-23 16:59:58 -0500406 /* Zero out Transmit Descriptor ring address. */
Michael Bueschaae37782006-03-13 15:54:56 +0100407 bcm43xx_dma_write(ring, BCM43xx_DMA_TX_DESC_RING, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500408 } else {
Michael Bueschea72ab22006-01-27 17:26:20 +0100409 bcm43xx_dmacontroller_rx_reset(ring->bcm, ring->mmio_base);
John W. Linvillef2223132006-01-23 16:59:58 -0500410 /* Zero out Receive Descriptor ring address. */
Michael Bueschaae37782006-03-13 15:54:56 +0100411 bcm43xx_dma_write(ring, BCM43xx_DMA_RX_DESC_RING, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500412 }
413}
414
415static void free_all_descbuffers(struct bcm43xx_dmaring *ring)
416{
417 struct bcm43xx_dmadesc *desc;
418 struct bcm43xx_dmadesc_meta *meta;
419 int i;
420
421 if (!ring->used_slots)
422 return;
423 for (i = 0; i < ring->nr_slots; i++) {
424 desc = ring->vbase + i;
425 meta = ring->meta + i;
426
427 if (!meta->skb) {
428 assert(ring->tx);
John W. Linvillef2223132006-01-23 16:59:58 -0500429 continue;
430 }
431 if (ring->tx) {
432 unmap_descbuffer(ring, meta->dmaaddr,
433 meta->skb->len, 1);
434 } else {
435 unmap_descbuffer(ring, meta->dmaaddr,
436 ring->rx_buffersize, 0);
437 }
438 free_descriptor_buffer(ring, desc, meta, 0);
439 }
440}
441
442/* Main initialization function. */
443static
444struct bcm43xx_dmaring * bcm43xx_setup_dmaring(struct bcm43xx_private *bcm,
445 u16 dma_controller_base,
446 int nr_descriptor_slots,
447 int tx)
448{
449 struct bcm43xx_dmaring *ring;
450 int err;
451
452 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
453 if (!ring)
454 goto out;
455
456 ring->meta = kzalloc(sizeof(*ring->meta) * nr_descriptor_slots,
457 GFP_KERNEL);
458 if (!ring->meta)
459 goto err_kfree_ring;
460
461 ring->memoffset = BCM43xx_DMA_DMABUSADDROFFSET;
462#ifdef CONFIG_BCM947XX
463 if (bcm->pci_dev->bus->number == 0)
464 ring->memoffset = 0;
465#endif
Michael Bueschea72ab22006-01-27 17:26:20 +0100466
John W. Linvillef2223132006-01-23 16:59:58 -0500467 ring->bcm = bcm;
468 ring->nr_slots = nr_descriptor_slots;
469 ring->suspend_mark = ring->nr_slots * BCM43xx_TXSUSPEND_PERCENT / 100;
470 ring->resume_mark = ring->nr_slots * BCM43xx_TXRESUME_PERCENT / 100;
471 assert(ring->suspend_mark < ring->resume_mark);
472 ring->mmio_base = dma_controller_base;
473 if (tx) {
474 ring->tx = 1;
475 ring->current_slot = -1;
476 } else {
477 switch (dma_controller_base) {
478 case BCM43xx_MMIO_DMA1_BASE:
479 ring->rx_buffersize = BCM43xx_DMA1_RXBUFFERSIZE;
480 ring->frameoffset = BCM43xx_DMA1_RX_FRAMEOFFSET;
481 break;
482 case BCM43xx_MMIO_DMA4_BASE:
483 ring->rx_buffersize = BCM43xx_DMA4_RXBUFFERSIZE;
484 ring->frameoffset = BCM43xx_DMA4_RX_FRAMEOFFSET;
485 break;
486 default:
487 assert(0);
488 }
489 }
490
491 err = alloc_ringmemory(ring);
492 if (err)
493 goto err_kfree_meta;
494 err = dmacontroller_setup(ring);
495 if (err)
496 goto err_free_ringmemory;
497
498out:
499 return ring;
500
501err_free_ringmemory:
502 free_ringmemory(ring);
503err_kfree_meta:
504 kfree(ring->meta);
505err_kfree_ring:
506 kfree(ring);
507 ring = NULL;
508 goto out;
509}
510
511/* Main cleanup function. */
512static void bcm43xx_destroy_dmaring(struct bcm43xx_dmaring *ring)
513{
514 if (!ring)
515 return;
516
517 dprintk(KERN_INFO PFX "DMA 0x%04x (%s) max used slots: %d/%d\n",
518 ring->mmio_base,
519 (ring->tx) ? "TX" : "RX",
520 ring->max_used_slots, ring->nr_slots);
521 /* Device IRQs are disabled prior entering this function,
522 * so no need to take care of concurrency with rx handler stuff.
523 */
524 dmacontroller_cleanup(ring);
525 free_all_descbuffers(ring);
526 free_ringmemory(ring);
527
528 kfree(ring->meta);
529 kfree(ring);
530}
531
532void bcm43xx_dma_free(struct bcm43xx_private *bcm)
533{
Michael Buesch49f29ef2006-03-14 16:05:26 +0100534 struct bcm43xx_dma *dma;
535
536 if (bcm43xx_using_pio(bcm))
537 return;
538 dma = bcm43xx_current_dma(bcm);
Michael Bueschea72ab22006-01-27 17:26:20 +0100539
540 bcm43xx_destroy_dmaring(dma->rx_ring1);
541 dma->rx_ring1 = NULL;
542 bcm43xx_destroy_dmaring(dma->rx_ring0);
543 dma->rx_ring0 = NULL;
544 bcm43xx_destroy_dmaring(dma->tx_ring3);
545 dma->tx_ring3 = NULL;
546 bcm43xx_destroy_dmaring(dma->tx_ring2);
547 dma->tx_ring2 = NULL;
548 bcm43xx_destroy_dmaring(dma->tx_ring1);
549 dma->tx_ring1 = NULL;
550 bcm43xx_destroy_dmaring(dma->tx_ring0);
551 dma->tx_ring0 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500552}
553
554int bcm43xx_dma_init(struct bcm43xx_private *bcm)
555{
Michael Buesche9357c02006-03-13 19:27:34 +0100556 struct bcm43xx_dma *dma = bcm43xx_current_dma(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -0500557 struct bcm43xx_dmaring *ring;
558 int err = -ENOMEM;
559
560 /* setup TX DMA channels. */
561 ring = bcm43xx_setup_dmaring(bcm, BCM43xx_MMIO_DMA1_BASE,
562 BCM43xx_TXRING_SLOTS, 1);
563 if (!ring)
564 goto out;
Michael Bueschea72ab22006-01-27 17:26:20 +0100565 dma->tx_ring0 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500566
567 ring = bcm43xx_setup_dmaring(bcm, BCM43xx_MMIO_DMA2_BASE,
568 BCM43xx_TXRING_SLOTS, 1);
569 if (!ring)
570 goto err_destroy_tx0;
Michael Bueschea72ab22006-01-27 17:26:20 +0100571 dma->tx_ring1 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500572
573 ring = bcm43xx_setup_dmaring(bcm, BCM43xx_MMIO_DMA3_BASE,
574 BCM43xx_TXRING_SLOTS, 1);
575 if (!ring)
576 goto err_destroy_tx1;
Michael Bueschea72ab22006-01-27 17:26:20 +0100577 dma->tx_ring2 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500578
579 ring = bcm43xx_setup_dmaring(bcm, BCM43xx_MMIO_DMA4_BASE,
580 BCM43xx_TXRING_SLOTS, 1);
581 if (!ring)
582 goto err_destroy_tx2;
Michael Bueschea72ab22006-01-27 17:26:20 +0100583 dma->tx_ring3 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500584
585 /* setup RX DMA channels. */
586 ring = bcm43xx_setup_dmaring(bcm, BCM43xx_MMIO_DMA1_BASE,
587 BCM43xx_RXRING_SLOTS, 0);
588 if (!ring)
589 goto err_destroy_tx3;
Michael Bueschea72ab22006-01-27 17:26:20 +0100590 dma->rx_ring0 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500591
592 if (bcm->current_core->rev < 5) {
593 ring = bcm43xx_setup_dmaring(bcm, BCM43xx_MMIO_DMA4_BASE,
594 BCM43xx_RXRING_SLOTS, 0);
595 if (!ring)
596 goto err_destroy_rx0;
Michael Bueschea72ab22006-01-27 17:26:20 +0100597 dma->rx_ring1 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500598 }
599
600 dprintk(KERN_INFO PFX "DMA initialized\n");
601 err = 0;
602out:
603 return err;
604
605err_destroy_rx0:
Michael Bueschea72ab22006-01-27 17:26:20 +0100606 bcm43xx_destroy_dmaring(dma->rx_ring0);
607 dma->rx_ring0 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500608err_destroy_tx3:
Michael Bueschea72ab22006-01-27 17:26:20 +0100609 bcm43xx_destroy_dmaring(dma->tx_ring3);
610 dma->tx_ring3 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500611err_destroy_tx2:
Michael Bueschea72ab22006-01-27 17:26:20 +0100612 bcm43xx_destroy_dmaring(dma->tx_ring2);
613 dma->tx_ring2 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500614err_destroy_tx1:
Michael Bueschea72ab22006-01-27 17:26:20 +0100615 bcm43xx_destroy_dmaring(dma->tx_ring1);
616 dma->tx_ring1 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500617err_destroy_tx0:
Michael Bueschea72ab22006-01-27 17:26:20 +0100618 bcm43xx_destroy_dmaring(dma->tx_ring0);
619 dma->tx_ring0 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500620 goto out;
621}
622
623/* Generate a cookie for the TX header. */
Michael Bueschea72ab22006-01-27 17:26:20 +0100624static u16 generate_cookie(struct bcm43xx_dmaring *ring,
625 int slot)
John W. Linvillef2223132006-01-23 16:59:58 -0500626{
627 u16 cookie = 0x0000;
628
629 /* Use the upper 4 bits of the cookie as
630 * DMA controller ID and store the slot number
631 * in the lower 12 bits
632 */
633 switch (ring->mmio_base) {
634 default:
635 assert(0);
636 case BCM43xx_MMIO_DMA1_BASE:
637 break;
638 case BCM43xx_MMIO_DMA2_BASE:
639 cookie = 0x1000;
640 break;
641 case BCM43xx_MMIO_DMA3_BASE:
642 cookie = 0x2000;
643 break;
644 case BCM43xx_MMIO_DMA4_BASE:
645 cookie = 0x3000;
646 break;
647 }
648 assert(((u16)slot & 0xF000) == 0x0000);
649 cookie |= (u16)slot;
650
651 return cookie;
652}
653
654/* Inspect a cookie and find out to which controller/slot it belongs. */
Michael Bueschea72ab22006-01-27 17:26:20 +0100655static
John W. Linvillef2223132006-01-23 16:59:58 -0500656struct bcm43xx_dmaring * parse_cookie(struct bcm43xx_private *bcm,
657 u16 cookie, int *slot)
658{
Michael Buesche9357c02006-03-13 19:27:34 +0100659 struct bcm43xx_dma *dma = bcm43xx_current_dma(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -0500660 struct bcm43xx_dmaring *ring = NULL;
661
662 switch (cookie & 0xF000) {
663 case 0x0000:
Michael Bueschea72ab22006-01-27 17:26:20 +0100664 ring = dma->tx_ring0;
John W. Linvillef2223132006-01-23 16:59:58 -0500665 break;
666 case 0x1000:
Michael Bueschea72ab22006-01-27 17:26:20 +0100667 ring = dma->tx_ring1;
John W. Linvillef2223132006-01-23 16:59:58 -0500668 break;
669 case 0x2000:
Michael Bueschea72ab22006-01-27 17:26:20 +0100670 ring = dma->tx_ring2;
John W. Linvillef2223132006-01-23 16:59:58 -0500671 break;
672 case 0x3000:
Michael Bueschea72ab22006-01-27 17:26:20 +0100673 ring = dma->tx_ring3;
John W. Linvillef2223132006-01-23 16:59:58 -0500674 break;
675 default:
676 assert(0);
677 }
678 *slot = (cookie & 0x0FFF);
679 assert(*slot >= 0 && *slot < ring->nr_slots);
680
681 return ring;
682}
683
Michael Bueschea72ab22006-01-27 17:26:20 +0100684static void dmacontroller_poke_tx(struct bcm43xx_dmaring *ring,
685 int slot)
John W. Linvillef2223132006-01-23 16:59:58 -0500686{
687 /* Everything is ready to start. Buffers are DMA mapped and
688 * associated with slots.
689 * "slot" is the last slot of the new frame we want to transmit.
690 * Close your seat belts now, please.
691 */
692 wmb();
693 slot = next_slot(ring, slot);
Michael Bueschaae37782006-03-13 15:54:56 +0100694 bcm43xx_dma_write(ring, BCM43xx_DMA_TX_DESC_INDEX,
695 (u32)(slot * sizeof(struct bcm43xx_dmadesc)));
John W. Linvillef2223132006-01-23 16:59:58 -0500696}
697
Michael Bueschea72ab22006-01-27 17:26:20 +0100698static int dma_tx_fragment(struct bcm43xx_dmaring *ring,
699 struct sk_buff *skb,
Michael Bueschea72ab22006-01-27 17:26:20 +0100700 u8 cur_frag)
John W. Linvillef2223132006-01-23 16:59:58 -0500701{
702 int slot;
703 struct bcm43xx_dmadesc *desc;
704 struct bcm43xx_dmadesc_meta *meta;
705 u32 desc_ctl;
706 u32 desc_addr;
707
708 assert(skb_shinfo(skb)->nr_frags == 0);
709
710 slot = request_slot(ring);
711 desc = ring->vbase + slot;
712 meta = ring->meta + slot;
713
John W. Linvillef2223132006-01-23 16:59:58 -0500714 /* Add a device specific TX header. */
715 assert(skb_headroom(skb) >= sizeof(struct bcm43xx_txhdr));
716 /* Reserve enough headroom for the device tx header. */
717 __skb_push(skb, sizeof(struct bcm43xx_txhdr));
718 /* Now calculate and add the tx header.
719 * The tx header includes the PLCP header.
720 */
721 bcm43xx_generate_txhdr(ring->bcm,
722 (struct bcm43xx_txhdr *)skb->data,
723 skb->data + sizeof(struct bcm43xx_txhdr),
724 skb->len - sizeof(struct bcm43xx_txhdr),
725 (cur_frag == 0),
726 generate_cookie(ring, slot));
727
728 meta->skb = skb;
729 meta->dmaaddr = map_descbuffer(ring, skb->data, skb->len, 1);
730 if (unlikely(meta->dmaaddr + skb->len > BCM43xx_DMA_BUSADDRMAX)) {
731 return_slot(ring, slot);
Michael Bueschea72ab22006-01-27 17:26:20 +0100732 printk(KERN_ERR PFX ">>>FATAL ERROR<<< DMA TX SKB >1G "
733 "(0x%08x, len: %u)\n",
734 meta->dmaaddr, skb->len);
John W. Linvillef2223132006-01-23 16:59:58 -0500735 return -ENOMEM;
736 }
737
738 desc_addr = (u32)(meta->dmaaddr + ring->memoffset);
739 desc_ctl = BCM43xx_DMADTOR_FRAMESTART | BCM43xx_DMADTOR_FRAMEEND;
740 desc_ctl |= BCM43xx_DMADTOR_COMPIRQ;
741 desc_ctl |= (BCM43xx_DMADTOR_BYTECNT_MASK &
742 (u32)(meta->skb->len - ring->frameoffset));
743 if (slot == ring->nr_slots - 1)
744 desc_ctl |= BCM43xx_DMADTOR_DTABLEEND;
745
746 set_desc_ctl(desc, desc_ctl);
747 set_desc_addr(desc, desc_addr);
748 /* Now transfer the whole frame. */
749 dmacontroller_poke_tx(ring, slot);
750
751 return 0;
752}
753
Michael Bueschea72ab22006-01-27 17:26:20 +0100754int bcm43xx_dma_tx(struct bcm43xx_private *bcm,
755 struct ieee80211_txb *txb)
John W. Linvillef2223132006-01-23 16:59:58 -0500756{
757 /* We just received a packet from the kernel network subsystem.
758 * Add headers and DMA map the memory. Poke
759 * the device to send the stuff.
760 * Note that this is called from atomic context.
761 */
Michael Buesche9357c02006-03-13 19:27:34 +0100762 struct bcm43xx_dmaring *ring = bcm43xx_current_dma(bcm)->tx_ring1;
John W. Linvillef2223132006-01-23 16:59:58 -0500763 u8 i;
764 struct sk_buff *skb;
765
766 assert(ring->tx);
767 if (unlikely(free_slots(ring) < txb->nr_frags)) {
768 /* The queue should be stopped,
769 * if we are low on free slots.
770 * If this ever triggers, we have to lower the suspend_mark.
771 */
772 dprintkl(KERN_ERR PFX "Out of DMA descriptor slots!\n");
773 return -ENOMEM;
774 }
775
John W. Linvillef2223132006-01-23 16:59:58 -0500776 for (i = 0; i < txb->nr_frags; i++) {
777 skb = txb->fragments[i];
Pete Zaitcev512a8092006-03-07 01:37:51 +0100778 /* Take skb from ieee80211_txb_free */
779 txb->fragments[i] = NULL;
780 dma_tx_fragment(ring, skb, i);
John W. Linvillef2223132006-01-23 16:59:58 -0500781 //TODO: handle failure of dma_tx_fragment
782 }
Pete Zaitcev512a8092006-03-07 01:37:51 +0100783 ieee80211_txb_free(txb);
John W. Linvillef2223132006-01-23 16:59:58 -0500784
785 return 0;
786}
787
Michael Bueschea72ab22006-01-27 17:26:20 +0100788void bcm43xx_dma_handle_xmitstatus(struct bcm43xx_private *bcm,
789 struct bcm43xx_xmitstatus *status)
John W. Linvillef2223132006-01-23 16:59:58 -0500790{
Michael Buesche9357c02006-03-13 19:27:34 +0100791 struct bcm43xx_dma *dma = bcm43xx_current_dma(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -0500792 struct bcm43xx_dmaring *ring;
793 struct bcm43xx_dmadesc *desc;
794 struct bcm43xx_dmadesc_meta *meta;
795 int is_last_fragment;
796 int slot;
797
798 ring = parse_cookie(bcm, status->cookie, &slot);
799 assert(ring);
800 assert(ring->tx);
John W. Linvillef2223132006-01-23 16:59:58 -0500801 assert(get_desc_ctl(ring->vbase + slot) & BCM43xx_DMADTOR_FRAMESTART);
802 while (1) {
803 assert(slot >= 0 && slot < ring->nr_slots);
804 desc = ring->vbase + slot;
805 meta = ring->meta + slot;
806
807 is_last_fragment = !!(get_desc_ctl(desc) & BCM43xx_DMADTOR_FRAMEEND);
808 unmap_descbuffer(ring, meta->dmaaddr, meta->skb->len, 1);
809 free_descriptor_buffer(ring, desc, meta, 1);
810 /* Everything belonging to the slot is unmapped
811 * and freed, so we can return it.
812 */
813 return_slot(ring, slot);
814
815 if (is_last_fragment)
816 break;
817 slot = next_slot(ring, slot);
818 }
819 bcm->stats.last_tx = jiffies;
John W. Linvillef2223132006-01-23 16:59:58 -0500820}
821
Michael Bueschea72ab22006-01-27 17:26:20 +0100822static void dma_rx(struct bcm43xx_dmaring *ring,
823 int *slot)
John W. Linvillef2223132006-01-23 16:59:58 -0500824{
825 struct bcm43xx_dmadesc *desc;
826 struct bcm43xx_dmadesc_meta *meta;
827 struct bcm43xx_rxhdr *rxhdr;
828 struct sk_buff *skb;
829 u16 len;
830 int err;
831 dma_addr_t dmaaddr;
832
833 desc = ring->vbase + *slot;
834 meta = ring->meta + *slot;
835
836 sync_descbuffer_for_cpu(ring, meta->dmaaddr, ring->rx_buffersize);
837 skb = meta->skb;
838
839 if (ring->mmio_base == BCM43xx_MMIO_DMA4_BASE) {
840 /* We received an xmit status. */
841 struct bcm43xx_hwxmitstatus *hw = (struct bcm43xx_hwxmitstatus *)skb->data;
842 struct bcm43xx_xmitstatus stat;
843
844 stat.cookie = le16_to_cpu(hw->cookie);
845 stat.flags = hw->flags;
846 stat.cnt1 = hw->cnt1;
847 stat.cnt2 = hw->cnt2;
848 stat.seq = le16_to_cpu(hw->seq);
849 stat.unknown = le16_to_cpu(hw->unknown);
850
851 bcm43xx_debugfs_log_txstat(ring->bcm, &stat);
852 bcm43xx_dma_handle_xmitstatus(ring->bcm, &stat);
853 /* recycle the descriptor buffer. */
854 sync_descbuffer_for_device(ring, meta->dmaaddr, ring->rx_buffersize);
855
856 return;
857 }
858 rxhdr = (struct bcm43xx_rxhdr *)skb->data;
859 len = le16_to_cpu(rxhdr->frame_length);
860 if (len == 0) {
861 int i = 0;
862
863 do {
864 udelay(2);
865 barrier();
866 len = le16_to_cpu(rxhdr->frame_length);
867 } while (len == 0 && i++ < 5);
Michael Bueschea72ab22006-01-27 17:26:20 +0100868 if (unlikely(len == 0)) {
869 /* recycle the descriptor buffer. */
870 sync_descbuffer_for_device(ring, meta->dmaaddr,
871 ring->rx_buffersize);
John W. Linvillef2223132006-01-23 16:59:58 -0500872 goto drop;
Michael Bueschea72ab22006-01-27 17:26:20 +0100873 }
John W. Linvillef2223132006-01-23 16:59:58 -0500874 }
875 if (unlikely(len > ring->rx_buffersize)) {
876 /* The data did not fit into one descriptor buffer
877 * and is split over multiple buffers.
878 * This should never happen, as we try to allocate buffers
879 * big enough. So simply ignore this packet.
880 */
Michael Bueschea72ab22006-01-27 17:26:20 +0100881 int cnt = 0;
882 s32 tmp = len;
John W. Linvillef2223132006-01-23 16:59:58 -0500883
Michael Bueschea72ab22006-01-27 17:26:20 +0100884 while (1) {
885 desc = ring->vbase + *slot;
886 meta = ring->meta + *slot;
887 /* recycle the descriptor buffer. */
888 sync_descbuffer_for_device(ring, meta->dmaaddr,
889 ring->rx_buffersize);
John W. Linvillef2223132006-01-23 16:59:58 -0500890 *slot = next_slot(ring, *slot);
891 cnt++;
Michael Bueschea72ab22006-01-27 17:26:20 +0100892 tmp -= ring->rx_buffersize;
893 if (tmp <= 0)
894 break;
John W. Linvillef2223132006-01-23 16:59:58 -0500895 }
Michael Bueschea72ab22006-01-27 17:26:20 +0100896 printkl(KERN_ERR PFX "DMA RX buffer too small "
897 "(len: %u, buffer: %u, nr-dropped: %d)\n",
898 len, ring->rx_buffersize, cnt);
John W. Linvillef2223132006-01-23 16:59:58 -0500899 goto drop;
900 }
901 len -= IEEE80211_FCS_LEN;
902
903 dmaaddr = meta->dmaaddr;
904 err = setup_rx_descbuffer(ring, desc, meta, GFP_ATOMIC);
905 if (unlikely(err)) {
906 dprintkl(KERN_ERR PFX "DMA RX: setup_rx_descbuffer() failed\n");
Michael Bueschea72ab22006-01-27 17:26:20 +0100907 sync_descbuffer_for_device(ring, dmaaddr,
908 ring->rx_buffersize);
John W. Linvillef2223132006-01-23 16:59:58 -0500909 goto drop;
910 }
911
912 unmap_descbuffer(ring, dmaaddr, ring->rx_buffersize, 0);
913 skb_put(skb, len + ring->frameoffset);
914 skb_pull(skb, ring->frameoffset);
915
916 err = bcm43xx_rx(ring->bcm, skb, rxhdr);
917 if (err) {
918 dev_kfree_skb_irq(skb);
919 goto drop;
920 }
921
922drop:
923 return;
924}
925
Michael Bueschea72ab22006-01-27 17:26:20 +0100926void bcm43xx_dma_rx(struct bcm43xx_dmaring *ring)
John W. Linvillef2223132006-01-23 16:59:58 -0500927{
928 u32 status;
929 u16 descptr;
930 int slot, current_slot;
931#ifdef CONFIG_BCM43XX_DEBUG
932 int used_slots = 0;
933#endif
934
935 assert(!ring->tx);
Michael Bueschaae37782006-03-13 15:54:56 +0100936 status = bcm43xx_dma_read(ring, BCM43xx_DMA_RX_STATUS);
John W. Linvillef2223132006-01-23 16:59:58 -0500937 descptr = (status & BCM43xx_DMA_RXSTAT_DPTR_MASK);
938 current_slot = descptr / sizeof(struct bcm43xx_dmadesc);
939 assert(current_slot >= 0 && current_slot < ring->nr_slots);
940
941 slot = ring->current_slot;
942 for ( ; slot != current_slot; slot = next_slot(ring, slot)) {
943 dma_rx(ring, &slot);
944#ifdef CONFIG_BCM43XX_DEBUG
945 if (++used_slots > ring->max_used_slots)
946 ring->max_used_slots = used_slots;
947#endif
948 }
Michael Bueschaae37782006-03-13 15:54:56 +0100949 bcm43xx_dma_write(ring, BCM43xx_DMA_RX_DESC_INDEX,
950 (u32)(slot * sizeof(struct bcm43xx_dmadesc)));
John W. Linvillef2223132006-01-23 16:59:58 -0500951 ring->current_slot = slot;
John W. Linvillef2223132006-01-23 16:59:58 -0500952}
953
Michael Bueschaae37782006-03-13 15:54:56 +0100954void bcm43xx_dma_tx_suspend(struct bcm43xx_dmaring *ring)
955{
956 assert(ring->tx);
957 bcm43xx_power_saving_ctl_bits(ring->bcm, -1, 1);
958 bcm43xx_dma_write(ring, BCM43xx_DMA_TX_CONTROL,
959 bcm43xx_dma_read(ring, BCM43xx_DMA_TX_CONTROL)
960 | BCM43xx_DMA_TXCTRL_SUSPEND);
961}
962
963void bcm43xx_dma_tx_resume(struct bcm43xx_dmaring *ring)
964{
965 assert(ring->tx);
966 bcm43xx_dma_write(ring, BCM43xx_DMA_TX_CONTROL,
967 bcm43xx_dma_read(ring, BCM43xx_DMA_TX_CONTROL)
968 & ~BCM43xx_DMA_TXCTRL_SUSPEND);
969 bcm43xx_power_saving_ctl_bits(ring->bcm, -1, -1);
970}
971
John W. Linvillef2223132006-01-23 16:59:58 -0500972/* vim: set ts=8 sw=8 sts=8: */