blob: 978ed099e2852e45fa20c08a3bebf2011b927a0e [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
Michael Buesch9218e022006-08-16 00:25:16 +02007 Copyright (c) 2005, 2006 Michael Buesch <mbuesch@freenet.de>
John W. Linvillef2223132006-01-23 16:59:58 -05008
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
Michael Bueschd1ca6c42006-03-25 15:43:18 +010037#include <linux/dma-mapping.h>
John W. Linvillef2223132006-01-23 16:59:58 -050038#include <linux/pci.h>
39#include <linux/delay.h>
40#include <linux/skbuff.h>
John W. Linvillef2223132006-01-23 16:59:58 -050041
42
43static inline int free_slots(struct bcm43xx_dmaring *ring)
44{
45 return (ring->nr_slots - ring->used_slots);
46}
47
48static inline int next_slot(struct bcm43xx_dmaring *ring, int slot)
49{
50 assert(slot >= -1 && slot <= ring->nr_slots - 1);
51 if (slot == ring->nr_slots - 1)
52 return 0;
53 return slot + 1;
54}
55
56static inline int prev_slot(struct bcm43xx_dmaring *ring, int slot)
57{
58 assert(slot >= 0 && slot <= ring->nr_slots - 1);
59 if (slot == 0)
60 return ring->nr_slots - 1;
61 return slot - 1;
62}
63
64/* Request a slot for usage. */
65static inline
66int request_slot(struct bcm43xx_dmaring *ring)
67{
68 int slot;
69
70 assert(ring->tx);
71 assert(!ring->suspended);
72 assert(free_slots(ring) != 0);
73
74 slot = next_slot(ring, ring->current_slot);
75 ring->current_slot = slot;
76 ring->used_slots++;
77
78 /* Check the number of available slots and suspend TX,
79 * if we are running low on free slots.
80 */
81 if (unlikely(free_slots(ring) < ring->suspend_mark)) {
82 netif_stop_queue(ring->bcm->net_dev);
83 ring->suspended = 1;
84 }
85#ifdef CONFIG_BCM43XX_DEBUG
86 if (ring->used_slots > ring->max_used_slots)
87 ring->max_used_slots = ring->used_slots;
88#endif /* CONFIG_BCM43XX_DEBUG*/
89
90 return slot;
91}
92
93/* Return a slot to the free slots. */
94static inline
95void return_slot(struct bcm43xx_dmaring *ring, int slot)
96{
97 assert(ring->tx);
98
99 ring->used_slots--;
100
101 /* Check if TX is suspended and check if we have
102 * enough free slots to resume it again.
103 */
104 if (unlikely(ring->suspended)) {
105 if (free_slots(ring) >= ring->resume_mark) {
106 ring->suspended = 0;
107 netif_wake_queue(ring->bcm->net_dev);
108 }
109 }
110}
111
Michael Buesch9218e022006-08-16 00:25:16 +0200112u16 bcm43xx_dmacontroller_base(int dma64bit, int controller_idx)
113{
114 static const u16 map64[] = {
115 BCM43xx_MMIO_DMA64_BASE0,
116 BCM43xx_MMIO_DMA64_BASE1,
117 BCM43xx_MMIO_DMA64_BASE2,
118 BCM43xx_MMIO_DMA64_BASE3,
119 BCM43xx_MMIO_DMA64_BASE4,
120 BCM43xx_MMIO_DMA64_BASE5,
121 };
122 static const u16 map32[] = {
123 BCM43xx_MMIO_DMA32_BASE0,
124 BCM43xx_MMIO_DMA32_BASE1,
125 BCM43xx_MMIO_DMA32_BASE2,
126 BCM43xx_MMIO_DMA32_BASE3,
127 BCM43xx_MMIO_DMA32_BASE4,
128 BCM43xx_MMIO_DMA32_BASE5,
129 };
130
131 if (dma64bit) {
132 assert(controller_idx >= 0 &&
133 controller_idx < ARRAY_SIZE(map64));
134 return map64[controller_idx];
135 }
136 assert(controller_idx >= 0 &&
137 controller_idx < ARRAY_SIZE(map32));
138 return map32[controller_idx];
139}
140
John W. Linvillef2223132006-01-23 16:59:58 -0500141static inline
142dma_addr_t map_descbuffer(struct bcm43xx_dmaring *ring,
143 unsigned char *buf,
144 size_t len,
145 int tx)
146{
147 dma_addr_t dmaaddr;
148
149 if (tx) {
150 dmaaddr = dma_map_single(&ring->bcm->pci_dev->dev,
151 buf, len,
152 DMA_TO_DEVICE);
153 } else {
154 dmaaddr = dma_map_single(&ring->bcm->pci_dev->dev,
155 buf, len,
156 DMA_FROM_DEVICE);
157 }
158
159 return dmaaddr;
160}
161
162static inline
163void unmap_descbuffer(struct bcm43xx_dmaring *ring,
164 dma_addr_t addr,
165 size_t len,
166 int tx)
167{
168 if (tx) {
169 dma_unmap_single(&ring->bcm->pci_dev->dev,
170 addr, len,
171 DMA_TO_DEVICE);
172 } else {
173 dma_unmap_single(&ring->bcm->pci_dev->dev,
174 addr, len,
175 DMA_FROM_DEVICE);
176 }
177}
178
179static inline
180void sync_descbuffer_for_cpu(struct bcm43xx_dmaring *ring,
181 dma_addr_t addr,
182 size_t len)
183{
184 assert(!ring->tx);
185
186 dma_sync_single_for_cpu(&ring->bcm->pci_dev->dev,
187 addr, len, DMA_FROM_DEVICE);
188}
189
190static inline
191void sync_descbuffer_for_device(struct bcm43xx_dmaring *ring,
192 dma_addr_t addr,
193 size_t len)
194{
195 assert(!ring->tx);
196
197 dma_sync_single_for_device(&ring->bcm->pci_dev->dev,
198 addr, len, DMA_FROM_DEVICE);
199}
200
John W. Linvillef2223132006-01-23 16:59:58 -0500201/* Unmap and free a descriptor buffer. */
202static inline
203void free_descriptor_buffer(struct bcm43xx_dmaring *ring,
John W. Linvillef2223132006-01-23 16:59:58 -0500204 struct bcm43xx_dmadesc_meta *meta,
205 int irq_context)
206{
207 assert(meta->skb);
Pete Zaitcev512a8092006-03-07 01:37:51 +0100208 if (irq_context)
209 dev_kfree_skb_irq(meta->skb);
210 else
211 dev_kfree_skb(meta->skb);
John W. Linvillef2223132006-01-23 16:59:58 -0500212 meta->skb = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500213}
214
215static int alloc_ringmemory(struct bcm43xx_dmaring *ring)
216{
217 struct device *dev = &(ring->bcm->pci_dev->dev);
218
Michael Buesch9218e022006-08-16 00:25:16 +0200219 ring->descbase = dma_alloc_coherent(dev, BCM43xx_DMA_RINGMEMSIZE,
220 &(ring->dmabase), GFP_KERNEL);
221 if (!ring->descbase) {
John W. Linvillef2223132006-01-23 16:59:58 -0500222 printk(KERN_ERR PFX "DMA ringmemory allocation failed\n");
223 return -ENOMEM;
224 }
Michael Buesch9218e022006-08-16 00:25:16 +0200225 memset(ring->descbase, 0, BCM43xx_DMA_RINGMEMSIZE);
John W. Linvillef2223132006-01-23 16:59:58 -0500226
227 return 0;
228}
229
230static void free_ringmemory(struct bcm43xx_dmaring *ring)
231{
232 struct device *dev = &(ring->bcm->pci_dev->dev);
233
234 dma_free_coherent(dev, BCM43xx_DMA_RINGMEMSIZE,
Michael Buesch9218e022006-08-16 00:25:16 +0200235 ring->descbase, ring->dmabase);
John W. Linvillef2223132006-01-23 16:59:58 -0500236}
237
238/* Reset the RX DMA channel */
239int bcm43xx_dmacontroller_rx_reset(struct bcm43xx_private *bcm,
Michael Buesch9218e022006-08-16 00:25:16 +0200240 u16 mmio_base, int dma64)
John W. Linvillef2223132006-01-23 16:59:58 -0500241{
242 int i;
243 u32 value;
Michael Buesch9218e022006-08-16 00:25:16 +0200244 u16 offset;
John W. Linvillef2223132006-01-23 16:59:58 -0500245
Michael Buesch9218e022006-08-16 00:25:16 +0200246 offset = dma64 ? BCM43xx_DMA64_RXCTL : BCM43xx_DMA32_RXCTL;
247 bcm43xx_write32(bcm, mmio_base + offset, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500248 for (i = 0; i < 1000; i++) {
Michael Buesch9218e022006-08-16 00:25:16 +0200249 offset = dma64 ? BCM43xx_DMA64_RXSTATUS : BCM43xx_DMA32_RXSTATUS;
250 value = bcm43xx_read32(bcm, mmio_base + offset);
251 if (dma64) {
252 value &= BCM43xx_DMA64_RXSTAT;
253 if (value == BCM43xx_DMA64_RXSTAT_DISABLED) {
254 i = -1;
255 break;
256 }
257 } else {
258 value &= BCM43xx_DMA32_RXSTATE;
259 if (value == BCM43xx_DMA32_RXSTAT_DISABLED) {
260 i = -1;
261 break;
262 }
John W. Linvillef2223132006-01-23 16:59:58 -0500263 }
264 udelay(10);
265 }
266 if (i != -1) {
267 printk(KERN_ERR PFX "Error: Wait on DMA RX status timed out.\n");
268 return -ENODEV;
269 }
270
271 return 0;
272}
273
John W. Linvillef2223132006-01-23 16:59:58 -0500274/* Reset the RX DMA channel */
275int bcm43xx_dmacontroller_tx_reset(struct bcm43xx_private *bcm,
Michael Buesch9218e022006-08-16 00:25:16 +0200276 u16 mmio_base, int dma64)
John W. Linvillef2223132006-01-23 16:59:58 -0500277{
278 int i;
279 u32 value;
Michael Buesch9218e022006-08-16 00:25:16 +0200280 u16 offset;
John W. Linvillef2223132006-01-23 16:59:58 -0500281
282 for (i = 0; i < 1000; i++) {
Michael Buesch9218e022006-08-16 00:25:16 +0200283 offset = dma64 ? BCM43xx_DMA64_TXSTATUS : BCM43xx_DMA32_TXSTATUS;
284 value = bcm43xx_read32(bcm, mmio_base + offset);
285 if (dma64) {
286 value &= BCM43xx_DMA64_TXSTAT;
287 if (value == BCM43xx_DMA64_TXSTAT_DISABLED ||
288 value == BCM43xx_DMA64_TXSTAT_IDLEWAIT ||
289 value == BCM43xx_DMA64_TXSTAT_STOPPED)
290 break;
291 } else {
292 value &= BCM43xx_DMA32_TXSTATE;
293 if (value == BCM43xx_DMA32_TXSTAT_DISABLED ||
294 value == BCM43xx_DMA32_TXSTAT_IDLEWAIT ||
295 value == BCM43xx_DMA32_TXSTAT_STOPPED)
296 break;
297 }
John W. Linvillef2223132006-01-23 16:59:58 -0500298 udelay(10);
299 }
Michael Buesch9218e022006-08-16 00:25:16 +0200300 offset = dma64 ? BCM43xx_DMA64_TXCTL : BCM43xx_DMA32_TXCTL;
301 bcm43xx_write32(bcm, mmio_base + offset, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500302 for (i = 0; i < 1000; i++) {
Michael Buesch9218e022006-08-16 00:25:16 +0200303 offset = dma64 ? BCM43xx_DMA64_TXSTATUS : BCM43xx_DMA32_TXSTATUS;
304 value = bcm43xx_read32(bcm, mmio_base + offset);
305 if (dma64) {
306 value &= BCM43xx_DMA64_TXSTAT;
307 if (value == BCM43xx_DMA64_TXSTAT_DISABLED) {
308 i = -1;
309 break;
310 }
311 } else {
312 value &= BCM43xx_DMA32_TXSTATE;
313 if (value == BCM43xx_DMA32_TXSTAT_DISABLED) {
314 i = -1;
315 break;
316 }
John W. Linvillef2223132006-01-23 16:59:58 -0500317 }
318 udelay(10);
319 }
320 if (i != -1) {
321 printk(KERN_ERR PFX "Error: Wait on DMA TX status timed out.\n");
322 return -ENODEV;
323 }
324 /* ensure the reset is completed. */
325 udelay(300);
326
327 return 0;
328}
329
Michael Buesch9218e022006-08-16 00:25:16 +0200330static void fill_descriptor(struct bcm43xx_dmaring *ring,
331 struct bcm43xx_dmadesc_generic *desc,
332 dma_addr_t dmaaddr,
333 u16 bufsize,
334 int start, int end, int irq)
335{
336 int slot;
337
338 slot = bcm43xx_dma_desc2idx(ring, desc);
339 assert(slot >= 0 && slot < ring->nr_slots);
340
341 if (ring->dma64) {
342 u32 ctl0 = 0, ctl1 = 0;
343 u32 addrlo, addrhi;
344 u32 addrext;
345
346 addrlo = (u32)(dmaaddr & 0xFFFFFFFF);
347 addrhi = (((u64)dmaaddr >> 32) & ~BCM43xx_DMA64_ROUTING);
348 addrext = (((u64)dmaaddr >> 32) >> BCM43xx_DMA64_ROUTING_SHIFT);
349 addrhi |= ring->routing;
350 if (slot == ring->nr_slots - 1)
351 ctl0 |= BCM43xx_DMA64_DCTL0_DTABLEEND;
352 if (start)
353 ctl0 |= BCM43xx_DMA64_DCTL0_FRAMESTART;
354 if (end)
355 ctl0 |= BCM43xx_DMA64_DCTL0_FRAMEEND;
356 if (irq)
357 ctl0 |= BCM43xx_DMA64_DCTL0_IRQ;
358 ctl1 |= (bufsize - ring->frameoffset)
359 & BCM43xx_DMA64_DCTL1_BYTECNT;
360 ctl1 |= (addrext << BCM43xx_DMA64_DCTL1_ADDREXT_SHIFT)
361 & BCM43xx_DMA64_DCTL1_ADDREXT_MASK;
362
363 desc->dma64.control0 = cpu_to_le32(ctl0);
364 desc->dma64.control1 = cpu_to_le32(ctl1);
365 desc->dma64.address_low = cpu_to_le32(addrlo);
366 desc->dma64.address_high = cpu_to_le32(addrhi);
367 } else {
368 u32 ctl;
369 u32 addr;
370 u32 addrext;
371
372 addr = (u32)(dmaaddr & ~BCM43xx_DMA32_ROUTING);
373 addrext = (u32)(dmaaddr & BCM43xx_DMA32_ROUTING)
374 >> BCM43xx_DMA32_ROUTING_SHIFT;
375 addr |= ring->routing;
376 ctl = (bufsize - ring->frameoffset)
377 & BCM43xx_DMA32_DCTL_BYTECNT;
378 if (slot == ring->nr_slots - 1)
379 ctl |= BCM43xx_DMA32_DCTL_DTABLEEND;
380 if (start)
381 ctl |= BCM43xx_DMA32_DCTL_FRAMESTART;
382 if (end)
383 ctl |= BCM43xx_DMA32_DCTL_FRAMEEND;
384 if (irq)
385 ctl |= BCM43xx_DMA32_DCTL_IRQ;
386 ctl |= (addrext << BCM43xx_DMA32_DCTL_ADDREXT_SHIFT)
387 & BCM43xx_DMA32_DCTL_ADDREXT_MASK;
388
389 desc->dma32.control = cpu_to_le32(ctl);
390 desc->dma32.address = cpu_to_le32(addr);
391 }
392}
393
John W. Linvillef2223132006-01-23 16:59:58 -0500394static int setup_rx_descbuffer(struct bcm43xx_dmaring *ring,
Michael Buesch9218e022006-08-16 00:25:16 +0200395 struct bcm43xx_dmadesc_generic *desc,
John W. Linvillef2223132006-01-23 16:59:58 -0500396 struct bcm43xx_dmadesc_meta *meta,
397 gfp_t gfp_flags)
398{
399 struct bcm43xx_rxhdr *rxhdr;
Michael Buesch9218e022006-08-16 00:25:16 +0200400 struct bcm43xx_hwxmitstatus *xmitstat;
John W. Linvillef2223132006-01-23 16:59:58 -0500401 dma_addr_t dmaaddr;
John W. Linvillef2223132006-01-23 16:59:58 -0500402 struct sk_buff *skb;
403
John W. Linvillef2223132006-01-23 16:59:58 -0500404 assert(!ring->tx);
405
406 skb = __dev_alloc_skb(ring->rx_buffersize, gfp_flags);
407 if (unlikely(!skb))
408 return -ENOMEM;
409 dmaaddr = map_descbuffer(ring, skb->data, ring->rx_buffersize, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500410 meta->skb = skb;
411 meta->dmaaddr = dmaaddr;
412 skb->dev = ring->bcm->net_dev;
Michael Buesch9218e022006-08-16 00:25:16 +0200413
414 fill_descriptor(ring, desc, dmaaddr,
415 ring->rx_buffersize, 0, 0, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500416
417 rxhdr = (struct bcm43xx_rxhdr *)(skb->data);
418 rxhdr->frame_length = 0;
419 rxhdr->flags1 = 0;
Michael Buesch9218e022006-08-16 00:25:16 +0200420 xmitstat = (struct bcm43xx_hwxmitstatus *)(skb->data);
421 xmitstat->cookie = 0;
John W. Linvillef2223132006-01-23 16:59:58 -0500422
423 return 0;
424}
425
426/* Allocate the initial descbuffers.
427 * This is used for an RX ring only.
428 */
429static int alloc_initial_descbuffers(struct bcm43xx_dmaring *ring)
430{
431 int i, err = -ENOMEM;
Michael Buesch9218e022006-08-16 00:25:16 +0200432 struct bcm43xx_dmadesc_generic *desc;
John W. Linvillef2223132006-01-23 16:59:58 -0500433 struct bcm43xx_dmadesc_meta *meta;
434
435 for (i = 0; i < ring->nr_slots; i++) {
Michael Buesch9218e022006-08-16 00:25:16 +0200436 desc = bcm43xx_dma_idx2desc(ring, i, &meta);
John W. Linvillef2223132006-01-23 16:59:58 -0500437
438 err = setup_rx_descbuffer(ring, desc, meta, GFP_KERNEL);
439 if (err)
440 goto err_unwind;
John W. Linvillef2223132006-01-23 16:59:58 -0500441 }
Michael Buesch9218e022006-08-16 00:25:16 +0200442 mb();
John W. Linvillef2223132006-01-23 16:59:58 -0500443 ring->used_slots = ring->nr_slots;
John W. Linvillef2223132006-01-23 16:59:58 -0500444 err = 0;
445out:
446 return err;
447
448err_unwind:
Michael Bueschea72ab22006-01-27 17:26:20 +0100449 for (i--; i >= 0; i--) {
Michael Buesch9218e022006-08-16 00:25:16 +0200450 desc = bcm43xx_dma_idx2desc(ring, i, &meta);
John W. Linvillef2223132006-01-23 16:59:58 -0500451
452 unmap_descbuffer(ring, meta->dmaaddr, ring->rx_buffersize, 0);
453 dev_kfree_skb(meta->skb);
454 }
John W. Linvillef2223132006-01-23 16:59:58 -0500455 goto out;
456}
457
458/* Do initial setup of the DMA controller.
459 * Reset the controller, write the ring busaddress
460 * and switch the "enable" bit on.
461 */
462static int dmacontroller_setup(struct bcm43xx_dmaring *ring)
463{
464 int err = 0;
465 u32 value;
Michael Buesch9218e022006-08-16 00:25:16 +0200466 u32 addrext;
John W. Linvillef2223132006-01-23 16:59:58 -0500467
468 if (ring->tx) {
Michael Buesch9218e022006-08-16 00:25:16 +0200469 if (ring->dma64) {
470 u64 ringbase = (u64)(ring->dmabase);
471
472 addrext = ((ringbase >> 32) >> BCM43xx_DMA64_ROUTING_SHIFT);
473 value = BCM43xx_DMA64_TXENABLE;
474 value |= (addrext << BCM43xx_DMA64_TXADDREXT_SHIFT)
475 & BCM43xx_DMA64_TXADDREXT_MASK;
476 bcm43xx_dma_write(ring, BCM43xx_DMA64_TXCTL, value);
477 bcm43xx_dma_write(ring, BCM43xx_DMA64_TXRINGLO,
478 (ringbase & 0xFFFFFFFF));
479 bcm43xx_dma_write(ring, BCM43xx_DMA64_TXRINGHI,
480 ((ringbase >> 32) & ~BCM43xx_DMA64_ROUTING)
481 | ring->routing);
482 } else {
483 u32 ringbase = (u32)(ring->dmabase);
484
485 addrext = (ringbase >> BCM43xx_DMA32_ROUTING_SHIFT);
486 value = BCM43xx_DMA32_TXENABLE;
487 value |= (addrext << BCM43xx_DMA32_TXADDREXT_SHIFT)
488 & BCM43xx_DMA32_TXADDREXT_MASK;
489 bcm43xx_dma_write(ring, BCM43xx_DMA32_TXCTL, value);
490 bcm43xx_dma_write(ring, BCM43xx_DMA32_TXRING,
491 (ringbase & ~BCM43xx_DMA32_ROUTING)
492 | ring->routing);
493 }
John W. Linvillef2223132006-01-23 16:59:58 -0500494 } else {
495 err = alloc_initial_descbuffers(ring);
496 if (err)
497 goto out;
Michael Buesch9218e022006-08-16 00:25:16 +0200498 if (ring->dma64) {
499 u64 ringbase = (u64)(ring->dmabase);
500
501 addrext = ((ringbase >> 32) >> BCM43xx_DMA64_ROUTING_SHIFT);
502 value = (ring->frameoffset << BCM43xx_DMA64_RXFROFF_SHIFT);
503 value |= BCM43xx_DMA64_RXENABLE;
504 value |= (addrext << BCM43xx_DMA64_RXADDREXT_SHIFT)
505 & BCM43xx_DMA64_RXADDREXT_MASK;
506 bcm43xx_dma_write(ring, BCM43xx_DMA64_RXCTL, value);
507 bcm43xx_dma_write(ring, BCM43xx_DMA64_RXRINGLO,
508 (ringbase & 0xFFFFFFFF));
509 bcm43xx_dma_write(ring, BCM43xx_DMA64_RXRINGHI,
510 ((ringbase >> 32) & ~BCM43xx_DMA64_ROUTING)
511 | ring->routing);
512 bcm43xx_dma_write(ring, BCM43xx_DMA64_RXINDEX, 200);
513 } else {
514 u32 ringbase = (u32)(ring->dmabase);
515
516 addrext = (ringbase >> BCM43xx_DMA32_ROUTING_SHIFT);
517 value = (ring->frameoffset << BCM43xx_DMA32_RXFROFF_SHIFT);
518 value |= BCM43xx_DMA32_RXENABLE;
519 value |= (addrext << BCM43xx_DMA32_RXADDREXT_SHIFT)
520 & BCM43xx_DMA32_RXADDREXT_MASK;
521 bcm43xx_dma_write(ring, BCM43xx_DMA32_RXCTL, value);
522 bcm43xx_dma_write(ring, BCM43xx_DMA32_RXRING,
523 (ringbase & ~BCM43xx_DMA32_ROUTING)
524 | ring->routing);
525 bcm43xx_dma_write(ring, BCM43xx_DMA32_RXINDEX, 200);
526 }
John W. Linvillef2223132006-01-23 16:59:58 -0500527 }
528
529out:
530 return err;
531}
532
533/* Shutdown the DMA controller. */
534static void dmacontroller_cleanup(struct bcm43xx_dmaring *ring)
535{
536 if (ring->tx) {
Michael Buesch9218e022006-08-16 00:25:16 +0200537 bcm43xx_dmacontroller_tx_reset(ring->bcm, ring->mmio_base, ring->dma64);
538 if (ring->dma64) {
539 bcm43xx_dma_write(ring, BCM43xx_DMA64_TXRINGLO, 0);
540 bcm43xx_dma_write(ring, BCM43xx_DMA64_TXRINGHI, 0);
541 } else
542 bcm43xx_dma_write(ring, BCM43xx_DMA32_TXRING, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500543 } else {
Michael Buesch9218e022006-08-16 00:25:16 +0200544 bcm43xx_dmacontroller_rx_reset(ring->bcm, ring->mmio_base, ring->dma64);
545 if (ring->dma64) {
546 bcm43xx_dma_write(ring, BCM43xx_DMA64_RXRINGLO, 0);
547 bcm43xx_dma_write(ring, BCM43xx_DMA64_RXRINGHI, 0);
548 } else
549 bcm43xx_dma_write(ring, BCM43xx_DMA32_RXRING, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500550 }
551}
552
553static void free_all_descbuffers(struct bcm43xx_dmaring *ring)
554{
Michael Buesch9218e022006-08-16 00:25:16 +0200555 struct bcm43xx_dmadesc_generic *desc;
John W. Linvillef2223132006-01-23 16:59:58 -0500556 struct bcm43xx_dmadesc_meta *meta;
557 int i;
558
559 if (!ring->used_slots)
560 return;
561 for (i = 0; i < ring->nr_slots; i++) {
Michael Buesch9218e022006-08-16 00:25:16 +0200562 desc = bcm43xx_dma_idx2desc(ring, i, &meta);
John W. Linvillef2223132006-01-23 16:59:58 -0500563
564 if (!meta->skb) {
565 assert(ring->tx);
John W. Linvillef2223132006-01-23 16:59:58 -0500566 continue;
567 }
568 if (ring->tx) {
569 unmap_descbuffer(ring, meta->dmaaddr,
Michael Buesch9218e022006-08-16 00:25:16 +0200570 meta->skb->len, 1);
John W. Linvillef2223132006-01-23 16:59:58 -0500571 } else {
572 unmap_descbuffer(ring, meta->dmaaddr,
Michael Buesch9218e022006-08-16 00:25:16 +0200573 ring->rx_buffersize, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500574 }
Michael Buesch9218e022006-08-16 00:25:16 +0200575 free_descriptor_buffer(ring, meta, 0);
John W. Linvillef2223132006-01-23 16:59:58 -0500576 }
577}
578
579/* Main initialization function. */
580static
581struct bcm43xx_dmaring * bcm43xx_setup_dmaring(struct bcm43xx_private *bcm,
Michael Buesch9218e022006-08-16 00:25:16 +0200582 int controller_index,
583 int for_tx,
584 int dma64)
John W. Linvillef2223132006-01-23 16:59:58 -0500585{
586 struct bcm43xx_dmaring *ring;
587 int err;
Michael Buesch9218e022006-08-16 00:25:16 +0200588 int nr_slots;
John W. Linvillef2223132006-01-23 16:59:58 -0500589
590 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
591 if (!ring)
592 goto out;
593
Michael Buesch9218e022006-08-16 00:25:16 +0200594 nr_slots = BCM43xx_RXRING_SLOTS;
595 if (for_tx)
596 nr_slots = BCM43xx_TXRING_SLOTS;
597
598 ring->meta = kcalloc(nr_slots, sizeof(struct bcm43xx_dmadesc_meta),
John W. Linvillef2223132006-01-23 16:59:58 -0500599 GFP_KERNEL);
600 if (!ring->meta)
601 goto err_kfree_ring;
602
Michael Buesch9218e022006-08-16 00:25:16 +0200603 ring->routing = BCM43xx_DMA32_CLIENTTRANS;
604 if (dma64)
605 ring->routing = BCM43xx_DMA64_CLIENTTRANS;
John W. Linvillef2223132006-01-23 16:59:58 -0500606#ifdef CONFIG_BCM947XX
607 if (bcm->pci_dev->bus->number == 0)
Michael Buesch9218e022006-08-16 00:25:16 +0200608 ring->routing = dma64 ? BCM43xx_DMA64_NOTRANS : BCM43xx_DMA32_NOTRANS;
John W. Linvillef2223132006-01-23 16:59:58 -0500609#endif
Michael Bueschea72ab22006-01-27 17:26:20 +0100610
John W. Linvillef2223132006-01-23 16:59:58 -0500611 ring->bcm = bcm;
Michael Buesch9218e022006-08-16 00:25:16 +0200612 ring->nr_slots = nr_slots;
John W. Linvillef2223132006-01-23 16:59:58 -0500613 ring->suspend_mark = ring->nr_slots * BCM43xx_TXSUSPEND_PERCENT / 100;
614 ring->resume_mark = ring->nr_slots * BCM43xx_TXRESUME_PERCENT / 100;
615 assert(ring->suspend_mark < ring->resume_mark);
Michael Buesch9218e022006-08-16 00:25:16 +0200616 ring->mmio_base = bcm43xx_dmacontroller_base(dma64, controller_index);
617 ring->index = controller_index;
618 ring->dma64 = !!dma64;
619 if (for_tx) {
John W. Linvillef2223132006-01-23 16:59:58 -0500620 ring->tx = 1;
621 ring->current_slot = -1;
622 } else {
Michael Buesch9218e022006-08-16 00:25:16 +0200623 if (ring->index == 0) {
624 ring->rx_buffersize = BCM43xx_DMA0_RX_BUFFERSIZE;
625 ring->frameoffset = BCM43xx_DMA0_RX_FRAMEOFFSET;
626 } else if (ring->index == 3) {
627 ring->rx_buffersize = BCM43xx_DMA3_RX_BUFFERSIZE;
628 ring->frameoffset = BCM43xx_DMA3_RX_FRAMEOFFSET;
629 } else
John W. Linvillef2223132006-01-23 16:59:58 -0500630 assert(0);
John W. Linvillef2223132006-01-23 16:59:58 -0500631 }
632
633 err = alloc_ringmemory(ring);
634 if (err)
635 goto err_kfree_meta;
636 err = dmacontroller_setup(ring);
637 if (err)
638 goto err_free_ringmemory;
639
640out:
641 return ring;
642
643err_free_ringmemory:
644 free_ringmemory(ring);
645err_kfree_meta:
646 kfree(ring->meta);
647err_kfree_ring:
648 kfree(ring);
649 ring = NULL;
650 goto out;
651}
652
653/* Main cleanup function. */
654static void bcm43xx_destroy_dmaring(struct bcm43xx_dmaring *ring)
655{
656 if (!ring)
657 return;
658
Michael Buesch9218e022006-08-16 00:25:16 +0200659 dprintk(KERN_INFO PFX "DMA-%s 0x%04X (%s) max used slots: %d/%d\n",
660 (ring->dma64) ? "64" : "32",
John W. Linvillef2223132006-01-23 16:59:58 -0500661 ring->mmio_base,
662 (ring->tx) ? "TX" : "RX",
663 ring->max_used_slots, ring->nr_slots);
664 /* Device IRQs are disabled prior entering this function,
665 * so no need to take care of concurrency with rx handler stuff.
666 */
667 dmacontroller_cleanup(ring);
668 free_all_descbuffers(ring);
669 free_ringmemory(ring);
670
671 kfree(ring->meta);
672 kfree(ring);
673}
674
675void bcm43xx_dma_free(struct bcm43xx_private *bcm)
676{
Michael Buesch49f29efa2006-03-14 16:05:26 +0100677 struct bcm43xx_dma *dma;
678
679 if (bcm43xx_using_pio(bcm))
680 return;
681 dma = bcm43xx_current_dma(bcm);
Michael Bueschea72ab22006-01-27 17:26:20 +0100682
Michael Buesch9218e022006-08-16 00:25:16 +0200683 bcm43xx_destroy_dmaring(dma->rx_ring3);
684 dma->rx_ring3 = NULL;
Michael Bueschea72ab22006-01-27 17:26:20 +0100685 bcm43xx_destroy_dmaring(dma->rx_ring0);
686 dma->rx_ring0 = NULL;
Michael Buesch9218e022006-08-16 00:25:16 +0200687
688 bcm43xx_destroy_dmaring(dma->tx_ring5);
689 dma->tx_ring5 = NULL;
690 bcm43xx_destroy_dmaring(dma->tx_ring4);
691 dma->tx_ring4 = NULL;
Michael Bueschea72ab22006-01-27 17:26:20 +0100692 bcm43xx_destroy_dmaring(dma->tx_ring3);
693 dma->tx_ring3 = NULL;
694 bcm43xx_destroy_dmaring(dma->tx_ring2);
695 dma->tx_ring2 = NULL;
696 bcm43xx_destroy_dmaring(dma->tx_ring1);
697 dma->tx_ring1 = NULL;
698 bcm43xx_destroy_dmaring(dma->tx_ring0);
699 dma->tx_ring0 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500700}
701
702int bcm43xx_dma_init(struct bcm43xx_private *bcm)
703{
Michael Buesche9357c02006-03-13 19:27:34 +0100704 struct bcm43xx_dma *dma = bcm43xx_current_dma(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -0500705 struct bcm43xx_dmaring *ring;
706 int err = -ENOMEM;
Michael Buesch9218e022006-08-16 00:25:16 +0200707 int dma64 = 0;
Larry Finger8da81e52006-10-02 23:48:54 -0500708 u64 mask = bcm43xx_get_supported_dma_mask(bcm);
709 int nobits;
Michael Buesch9218e022006-08-16 00:25:16 +0200710
Larry Finger8da81e52006-10-02 23:48:54 -0500711 if (mask == DMA_64BIT_MASK) {
Michael Buesch9218e022006-08-16 00:25:16 +0200712 dma64 = 1;
Larry Finger8da81e52006-10-02 23:48:54 -0500713 nobits = 64;
714 } else if (mask == DMA_32BIT_MASK)
715 nobits = 32;
716 else
717 nobits = 30;
718 err = pci_set_dma_mask(bcm->pci_dev, mask);
719 err |= pci_set_consistent_dma_mask(bcm->pci_dev, mask);
720 if (err) {
721#ifdef CONFIG_BCM43XX_PIO
722 printk(KERN_WARNING PFX "DMA not supported on this device."
723 " Falling back to PIO.\n");
724 bcm->__using_pio = 1;
725 return -ENOSYS;
726#else
727 printk(KERN_ERR PFX "FATAL: DMA not supported and PIO not configured. "
728 "Please recompile the driver with PIO support.\n");
729 return -ENODEV;
730#endif /* CONFIG_BCM43XX_PIO */
731 }
John W. Linvillef2223132006-01-23 16:59:58 -0500732
733 /* setup TX DMA channels. */
Michael Buesch9218e022006-08-16 00:25:16 +0200734 ring = bcm43xx_setup_dmaring(bcm, 0, 1, dma64);
John W. Linvillef2223132006-01-23 16:59:58 -0500735 if (!ring)
736 goto out;
Michael Bueschea72ab22006-01-27 17:26:20 +0100737 dma->tx_ring0 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500738
Michael Buesch9218e022006-08-16 00:25:16 +0200739 ring = bcm43xx_setup_dmaring(bcm, 1, 1, dma64);
John W. Linvillef2223132006-01-23 16:59:58 -0500740 if (!ring)
741 goto err_destroy_tx0;
Michael Bueschea72ab22006-01-27 17:26:20 +0100742 dma->tx_ring1 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500743
Michael Buesch9218e022006-08-16 00:25:16 +0200744 ring = bcm43xx_setup_dmaring(bcm, 2, 1, dma64);
John W. Linvillef2223132006-01-23 16:59:58 -0500745 if (!ring)
746 goto err_destroy_tx1;
Michael Bueschea72ab22006-01-27 17:26:20 +0100747 dma->tx_ring2 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500748
Michael Buesch9218e022006-08-16 00:25:16 +0200749 ring = bcm43xx_setup_dmaring(bcm, 3, 1, dma64);
John W. Linvillef2223132006-01-23 16:59:58 -0500750 if (!ring)
751 goto err_destroy_tx2;
Michael Bueschea72ab22006-01-27 17:26:20 +0100752 dma->tx_ring3 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500753
Michael Buesch9218e022006-08-16 00:25:16 +0200754 ring = bcm43xx_setup_dmaring(bcm, 4, 1, dma64);
John W. Linvillef2223132006-01-23 16:59:58 -0500755 if (!ring)
756 goto err_destroy_tx3;
Michael Buesch9218e022006-08-16 00:25:16 +0200757 dma->tx_ring4 = ring;
758
759 ring = bcm43xx_setup_dmaring(bcm, 5, 1, dma64);
760 if (!ring)
761 goto err_destroy_tx4;
762 dma->tx_ring5 = ring;
763
764 /* setup RX DMA channels. */
765 ring = bcm43xx_setup_dmaring(bcm, 0, 0, dma64);
766 if (!ring)
767 goto err_destroy_tx5;
Michael Bueschea72ab22006-01-27 17:26:20 +0100768 dma->rx_ring0 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500769
770 if (bcm->current_core->rev < 5) {
Michael Buesch9218e022006-08-16 00:25:16 +0200771 ring = bcm43xx_setup_dmaring(bcm, 3, 0, dma64);
John W. Linvillef2223132006-01-23 16:59:58 -0500772 if (!ring)
773 goto err_destroy_rx0;
Michael Buesch9218e022006-08-16 00:25:16 +0200774 dma->rx_ring3 = ring;
John W. Linvillef2223132006-01-23 16:59:58 -0500775 }
776
Larry Finger8da81e52006-10-02 23:48:54 -0500777 dprintk(KERN_INFO PFX "%d-bit DMA initialized\n", nobits);
John W. Linvillef2223132006-01-23 16:59:58 -0500778 err = 0;
779out:
780 return err;
781
782err_destroy_rx0:
Michael Bueschea72ab22006-01-27 17:26:20 +0100783 bcm43xx_destroy_dmaring(dma->rx_ring0);
784 dma->rx_ring0 = NULL;
Michael Buesch9218e022006-08-16 00:25:16 +0200785err_destroy_tx5:
786 bcm43xx_destroy_dmaring(dma->tx_ring5);
787 dma->tx_ring5 = NULL;
788err_destroy_tx4:
789 bcm43xx_destroy_dmaring(dma->tx_ring4);
790 dma->tx_ring4 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500791err_destroy_tx3:
Michael Bueschea72ab22006-01-27 17:26:20 +0100792 bcm43xx_destroy_dmaring(dma->tx_ring3);
793 dma->tx_ring3 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500794err_destroy_tx2:
Michael Bueschea72ab22006-01-27 17:26:20 +0100795 bcm43xx_destroy_dmaring(dma->tx_ring2);
796 dma->tx_ring2 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500797err_destroy_tx1:
Michael Bueschea72ab22006-01-27 17:26:20 +0100798 bcm43xx_destroy_dmaring(dma->tx_ring1);
799 dma->tx_ring1 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500800err_destroy_tx0:
Michael Bueschea72ab22006-01-27 17:26:20 +0100801 bcm43xx_destroy_dmaring(dma->tx_ring0);
802 dma->tx_ring0 = NULL;
John W. Linvillef2223132006-01-23 16:59:58 -0500803 goto out;
804}
805
806/* Generate a cookie for the TX header. */
Michael Bueschea72ab22006-01-27 17:26:20 +0100807static u16 generate_cookie(struct bcm43xx_dmaring *ring,
808 int slot)
John W. Linvillef2223132006-01-23 16:59:58 -0500809{
Michael Buesch9218e022006-08-16 00:25:16 +0200810 u16 cookie = 0x1000;
John W. Linvillef2223132006-01-23 16:59:58 -0500811
812 /* Use the upper 4 bits of the cookie as
813 * DMA controller ID and store the slot number
Michael Bueschea9a7712006-06-04 02:20:42 +0200814 * in the lower 12 bits.
815 * Note that the cookie must never be 0, as this
816 * is a special value used in RX path.
John W. Linvillef2223132006-01-23 16:59:58 -0500817 */
Michael Buesch9218e022006-08-16 00:25:16 +0200818 switch (ring->index) {
819 case 0:
Michael Bueschea9a7712006-06-04 02:20:42 +0200820 cookie = 0xA000;
John W. Linvillef2223132006-01-23 16:59:58 -0500821 break;
Michael Buesch9218e022006-08-16 00:25:16 +0200822 case 1:
Michael Bueschea9a7712006-06-04 02:20:42 +0200823 cookie = 0xB000;
John W. Linvillef2223132006-01-23 16:59:58 -0500824 break;
Michael Buesch9218e022006-08-16 00:25:16 +0200825 case 2:
Michael Bueschea9a7712006-06-04 02:20:42 +0200826 cookie = 0xC000;
John W. Linvillef2223132006-01-23 16:59:58 -0500827 break;
Michael Buesch9218e022006-08-16 00:25:16 +0200828 case 3:
Michael Bueschea9a7712006-06-04 02:20:42 +0200829 cookie = 0xD000;
John W. Linvillef2223132006-01-23 16:59:58 -0500830 break;
Michael Buesch9218e022006-08-16 00:25:16 +0200831 case 4:
832 cookie = 0xE000;
833 break;
834 case 5:
835 cookie = 0xF000;
836 break;
John W. Linvillef2223132006-01-23 16:59:58 -0500837 }
838 assert(((u16)slot & 0xF000) == 0x0000);
839 cookie |= (u16)slot;
840
841 return cookie;
842}
843
844/* Inspect a cookie and find out to which controller/slot it belongs. */
Michael Bueschea72ab22006-01-27 17:26:20 +0100845static
John W. Linvillef2223132006-01-23 16:59:58 -0500846struct bcm43xx_dmaring * parse_cookie(struct bcm43xx_private *bcm,
847 u16 cookie, int *slot)
848{
Michael Buesche9357c02006-03-13 19:27:34 +0100849 struct bcm43xx_dma *dma = bcm43xx_current_dma(bcm);
John W. Linvillef2223132006-01-23 16:59:58 -0500850 struct bcm43xx_dmaring *ring = NULL;
851
852 switch (cookie & 0xF000) {
Michael Bueschea9a7712006-06-04 02:20:42 +0200853 case 0xA000:
Michael Bueschea72ab22006-01-27 17:26:20 +0100854 ring = dma->tx_ring0;
John W. Linvillef2223132006-01-23 16:59:58 -0500855 break;
Michael Bueschea9a7712006-06-04 02:20:42 +0200856 case 0xB000:
Michael Bueschea72ab22006-01-27 17:26:20 +0100857 ring = dma->tx_ring1;
John W. Linvillef2223132006-01-23 16:59:58 -0500858 break;
Michael Bueschea9a7712006-06-04 02:20:42 +0200859 case 0xC000:
Michael Bueschea72ab22006-01-27 17:26:20 +0100860 ring = dma->tx_ring2;
John W. Linvillef2223132006-01-23 16:59:58 -0500861 break;
Michael Bueschea9a7712006-06-04 02:20:42 +0200862 case 0xD000:
Michael Bueschea72ab22006-01-27 17:26:20 +0100863 ring = dma->tx_ring3;
John W. Linvillef2223132006-01-23 16:59:58 -0500864 break;
Michael Buesch9218e022006-08-16 00:25:16 +0200865 case 0xE000:
866 ring = dma->tx_ring4;
867 break;
868 case 0xF000:
869 ring = dma->tx_ring5;
870 break;
John W. Linvillef2223132006-01-23 16:59:58 -0500871 default:
872 assert(0);
873 }
874 *slot = (cookie & 0x0FFF);
875 assert(*slot >= 0 && *slot < ring->nr_slots);
876
877 return ring;
878}
879
Michael Bueschea72ab22006-01-27 17:26:20 +0100880static void dmacontroller_poke_tx(struct bcm43xx_dmaring *ring,
881 int slot)
John W. Linvillef2223132006-01-23 16:59:58 -0500882{
Michael Buesch9218e022006-08-16 00:25:16 +0200883 u16 offset;
884 int descsize;
885
John W. Linvillef2223132006-01-23 16:59:58 -0500886 /* Everything is ready to start. Buffers are DMA mapped and
887 * associated with slots.
888 * "slot" is the last slot of the new frame we want to transmit.
889 * Close your seat belts now, please.
890 */
891 wmb();
892 slot = next_slot(ring, slot);
Michael Buesch9218e022006-08-16 00:25:16 +0200893 offset = (ring->dma64) ? BCM43xx_DMA64_TXINDEX : BCM43xx_DMA32_TXINDEX;
894 descsize = (ring->dma64) ? sizeof(struct bcm43xx_dmadesc64)
895 : sizeof(struct bcm43xx_dmadesc32);
896 bcm43xx_dma_write(ring, offset,
897 (u32)(slot * descsize));
John W. Linvillef2223132006-01-23 16:59:58 -0500898}
899
Michael Buesch9218e022006-08-16 00:25:16 +0200900static void dma_tx_fragment(struct bcm43xx_dmaring *ring,
901 struct sk_buff *skb,
902 u8 cur_frag)
John W. Linvillef2223132006-01-23 16:59:58 -0500903{
904 int slot;
Michael Buesch9218e022006-08-16 00:25:16 +0200905 struct bcm43xx_dmadesc_generic *desc;
John W. Linvillef2223132006-01-23 16:59:58 -0500906 struct bcm43xx_dmadesc_meta *meta;
Michael Buesch9218e022006-08-16 00:25:16 +0200907 dma_addr_t dmaaddr;
John W. Linvillef2223132006-01-23 16:59:58 -0500908
909 assert(skb_shinfo(skb)->nr_frags == 0);
910
911 slot = request_slot(ring);
Michael Buesch9218e022006-08-16 00:25:16 +0200912 desc = bcm43xx_dma_idx2desc(ring, slot, &meta);
John W. Linvillef2223132006-01-23 16:59:58 -0500913
John W. Linvillef2223132006-01-23 16:59:58 -0500914 /* Add a device specific TX header. */
915 assert(skb_headroom(skb) >= sizeof(struct bcm43xx_txhdr));
916 /* Reserve enough headroom for the device tx header. */
917 __skb_push(skb, sizeof(struct bcm43xx_txhdr));
918 /* Now calculate and add the tx header.
919 * The tx header includes the PLCP header.
920 */
921 bcm43xx_generate_txhdr(ring->bcm,
922 (struct bcm43xx_txhdr *)skb->data,
923 skb->data + sizeof(struct bcm43xx_txhdr),
924 skb->len - sizeof(struct bcm43xx_txhdr),
925 (cur_frag == 0),
926 generate_cookie(ring, slot));
927
928 meta->skb = skb;
Michael Buesch9218e022006-08-16 00:25:16 +0200929 dmaaddr = map_descbuffer(ring, skb->data, skb->len, 1);
930 meta->dmaaddr = dmaaddr;
John W. Linvillef2223132006-01-23 16:59:58 -0500931
Michael Buesch9218e022006-08-16 00:25:16 +0200932 fill_descriptor(ring, desc, dmaaddr,
933 skb->len, 1, 1, 1);
John W. Linvillef2223132006-01-23 16:59:58 -0500934
John W. Linvillef2223132006-01-23 16:59:58 -0500935 /* Now transfer the whole frame. */
936 dmacontroller_poke_tx(ring, slot);
John W. Linvillef2223132006-01-23 16:59:58 -0500937}
938
Michael Bueschea72ab22006-01-27 17:26:20 +0100939int bcm43xx_dma_tx(struct bcm43xx_private *bcm,
940 struct ieee80211_txb *txb)
John W. Linvillef2223132006-01-23 16:59:58 -0500941{
942 /* We just received a packet from the kernel network subsystem.
943 * Add headers and DMA map the memory. Poke
944 * the device to send the stuff.
945 * Note that this is called from atomic context.
946 */
Michael Buesche9357c02006-03-13 19:27:34 +0100947 struct bcm43xx_dmaring *ring = bcm43xx_current_dma(bcm)->tx_ring1;
John W. Linvillef2223132006-01-23 16:59:58 -0500948 u8 i;
949 struct sk_buff *skb;
950
951 assert(ring->tx);
952 if (unlikely(free_slots(ring) < txb->nr_frags)) {
953 /* The queue should be stopped,
954 * if we are low on free slots.
955 * If this ever triggers, we have to lower the suspend_mark.
956 */
957 dprintkl(KERN_ERR PFX "Out of DMA descriptor slots!\n");
958 return -ENOMEM;
959 }
960
John W. Linvillef2223132006-01-23 16:59:58 -0500961 for (i = 0; i < txb->nr_frags; i++) {
962 skb = txb->fragments[i];
Pete Zaitcev512a8092006-03-07 01:37:51 +0100963 /* Take skb from ieee80211_txb_free */
964 txb->fragments[i] = NULL;
965 dma_tx_fragment(ring, skb, i);
John W. Linvillef2223132006-01-23 16:59:58 -0500966 }
Pete Zaitcev512a8092006-03-07 01:37:51 +0100967 ieee80211_txb_free(txb);
John W. Linvillef2223132006-01-23 16:59:58 -0500968
969 return 0;
970}
971
Michael Bueschea72ab22006-01-27 17:26:20 +0100972void bcm43xx_dma_handle_xmitstatus(struct bcm43xx_private *bcm,
973 struct bcm43xx_xmitstatus *status)
John W. Linvillef2223132006-01-23 16:59:58 -0500974{
975 struct bcm43xx_dmaring *ring;
Michael Buesch9218e022006-08-16 00:25:16 +0200976 struct bcm43xx_dmadesc_generic *desc;
John W. Linvillef2223132006-01-23 16:59:58 -0500977 struct bcm43xx_dmadesc_meta *meta;
978 int is_last_fragment;
979 int slot;
Michael Buesch9218e022006-08-16 00:25:16 +0200980 u32 tmp;
John W. Linvillef2223132006-01-23 16:59:58 -0500981
982 ring = parse_cookie(bcm, status->cookie, &slot);
983 assert(ring);
984 assert(ring->tx);
John W. Linvillef2223132006-01-23 16:59:58 -0500985 while (1) {
986 assert(slot >= 0 && slot < ring->nr_slots);
Michael Buesch9218e022006-08-16 00:25:16 +0200987 desc = bcm43xx_dma_idx2desc(ring, slot, &meta);
John W. Linvillef2223132006-01-23 16:59:58 -0500988
Michael Buesch9218e022006-08-16 00:25:16 +0200989 if (ring->dma64) {
990 tmp = le32_to_cpu(desc->dma64.control0);
991 is_last_fragment = !!(tmp & BCM43xx_DMA64_DCTL0_FRAMEEND);
992 } else {
993 tmp = le32_to_cpu(desc->dma32.control);
994 is_last_fragment = !!(tmp & BCM43xx_DMA32_DCTL_FRAMEEND);
995 }
John W. Linvillef2223132006-01-23 16:59:58 -0500996 unmap_descbuffer(ring, meta->dmaaddr, meta->skb->len, 1);
Michael Buesch9218e022006-08-16 00:25:16 +0200997 free_descriptor_buffer(ring, meta, 1);
John W. Linvillef2223132006-01-23 16:59:58 -0500998 /* Everything belonging to the slot is unmapped
999 * and freed, so we can return it.
1000 */
1001 return_slot(ring, slot);
1002
1003 if (is_last_fragment)
1004 break;
1005 slot = next_slot(ring, slot);
1006 }
1007 bcm->stats.last_tx = jiffies;
John W. Linvillef2223132006-01-23 16:59:58 -05001008}
1009
Michael Bueschea72ab22006-01-27 17:26:20 +01001010static void dma_rx(struct bcm43xx_dmaring *ring,
1011 int *slot)
John W. Linvillef2223132006-01-23 16:59:58 -05001012{
Michael Buesch9218e022006-08-16 00:25:16 +02001013 struct bcm43xx_dmadesc_generic *desc;
John W. Linvillef2223132006-01-23 16:59:58 -05001014 struct bcm43xx_dmadesc_meta *meta;
1015 struct bcm43xx_rxhdr *rxhdr;
1016 struct sk_buff *skb;
1017 u16 len;
1018 int err;
1019 dma_addr_t dmaaddr;
1020
Michael Buesch9218e022006-08-16 00:25:16 +02001021 desc = bcm43xx_dma_idx2desc(ring, *slot, &meta);
John W. Linvillef2223132006-01-23 16:59:58 -05001022
1023 sync_descbuffer_for_cpu(ring, meta->dmaaddr, ring->rx_buffersize);
1024 skb = meta->skb;
1025
Michael Buesch9218e022006-08-16 00:25:16 +02001026 if (ring->index == 3) {
John W. Linvillef2223132006-01-23 16:59:58 -05001027 /* We received an xmit status. */
1028 struct bcm43xx_hwxmitstatus *hw = (struct bcm43xx_hwxmitstatus *)skb->data;
1029 struct bcm43xx_xmitstatus stat;
Michael Bueschea9a7712006-06-04 02:20:42 +02001030 int i = 0;
John W. Linvillef2223132006-01-23 16:59:58 -05001031
1032 stat.cookie = le16_to_cpu(hw->cookie);
Michael Bueschea9a7712006-06-04 02:20:42 +02001033 while (stat.cookie == 0) {
1034 if (unlikely(++i >= 10000)) {
1035 assert(0);
1036 break;
1037 }
1038 udelay(2);
1039 barrier();
1040 stat.cookie = le16_to_cpu(hw->cookie);
1041 }
John W. Linvillef2223132006-01-23 16:59:58 -05001042 stat.flags = hw->flags;
1043 stat.cnt1 = hw->cnt1;
1044 stat.cnt2 = hw->cnt2;
1045 stat.seq = le16_to_cpu(hw->seq);
1046 stat.unknown = le16_to_cpu(hw->unknown);
1047
1048 bcm43xx_debugfs_log_txstat(ring->bcm, &stat);
1049 bcm43xx_dma_handle_xmitstatus(ring->bcm, &stat);
1050 /* recycle the descriptor buffer. */
1051 sync_descbuffer_for_device(ring, meta->dmaaddr, ring->rx_buffersize);
1052
1053 return;
1054 }
1055 rxhdr = (struct bcm43xx_rxhdr *)skb->data;
1056 len = le16_to_cpu(rxhdr->frame_length);
1057 if (len == 0) {
1058 int i = 0;
1059
1060 do {
1061 udelay(2);
1062 barrier();
1063 len = le16_to_cpu(rxhdr->frame_length);
1064 } while (len == 0 && i++ < 5);
Michael Bueschea72ab22006-01-27 17:26:20 +01001065 if (unlikely(len == 0)) {
1066 /* recycle the descriptor buffer. */
1067 sync_descbuffer_for_device(ring, meta->dmaaddr,
1068 ring->rx_buffersize);
John W. Linvillef2223132006-01-23 16:59:58 -05001069 goto drop;
Michael Bueschea72ab22006-01-27 17:26:20 +01001070 }
John W. Linvillef2223132006-01-23 16:59:58 -05001071 }
1072 if (unlikely(len > ring->rx_buffersize)) {
1073 /* The data did not fit into one descriptor buffer
1074 * and is split over multiple buffers.
1075 * This should never happen, as we try to allocate buffers
1076 * big enough. So simply ignore this packet.
1077 */
Michael Bueschea72ab22006-01-27 17:26:20 +01001078 int cnt = 0;
1079 s32 tmp = len;
John W. Linvillef2223132006-01-23 16:59:58 -05001080
Michael Bueschea72ab22006-01-27 17:26:20 +01001081 while (1) {
Michael Buesch9218e022006-08-16 00:25:16 +02001082 desc = bcm43xx_dma_idx2desc(ring, *slot, &meta);
Michael Bueschea72ab22006-01-27 17:26:20 +01001083 /* recycle the descriptor buffer. */
1084 sync_descbuffer_for_device(ring, meta->dmaaddr,
1085 ring->rx_buffersize);
John W. Linvillef2223132006-01-23 16:59:58 -05001086 *slot = next_slot(ring, *slot);
1087 cnt++;
Michael Bueschea72ab22006-01-27 17:26:20 +01001088 tmp -= ring->rx_buffersize;
1089 if (tmp <= 0)
1090 break;
John W. Linvillef2223132006-01-23 16:59:58 -05001091 }
Michael Bueschea72ab22006-01-27 17:26:20 +01001092 printkl(KERN_ERR PFX "DMA RX buffer too small "
Michael Buesch9218e022006-08-16 00:25:16 +02001093 "(len: %u, buffer: %u, nr-dropped: %d)\n",
1094 len, ring->rx_buffersize, cnt);
John W. Linvillef2223132006-01-23 16:59:58 -05001095 goto drop;
1096 }
1097 len -= IEEE80211_FCS_LEN;
1098
1099 dmaaddr = meta->dmaaddr;
1100 err = setup_rx_descbuffer(ring, desc, meta, GFP_ATOMIC);
1101 if (unlikely(err)) {
1102 dprintkl(KERN_ERR PFX "DMA RX: setup_rx_descbuffer() failed\n");
Michael Bueschea72ab22006-01-27 17:26:20 +01001103 sync_descbuffer_for_device(ring, dmaaddr,
1104 ring->rx_buffersize);
John W. Linvillef2223132006-01-23 16:59:58 -05001105 goto drop;
1106 }
1107
1108 unmap_descbuffer(ring, dmaaddr, ring->rx_buffersize, 0);
1109 skb_put(skb, len + ring->frameoffset);
1110 skb_pull(skb, ring->frameoffset);
1111
1112 err = bcm43xx_rx(ring->bcm, skb, rxhdr);
1113 if (err) {
1114 dev_kfree_skb_irq(skb);
1115 goto drop;
1116 }
1117
1118drop:
1119 return;
1120}
1121
Michael Bueschea72ab22006-01-27 17:26:20 +01001122void bcm43xx_dma_rx(struct bcm43xx_dmaring *ring)
John W. Linvillef2223132006-01-23 16:59:58 -05001123{
1124 u32 status;
1125 u16 descptr;
1126 int slot, current_slot;
1127#ifdef CONFIG_BCM43XX_DEBUG
1128 int used_slots = 0;
1129#endif
1130
1131 assert(!ring->tx);
Michael Buesch9218e022006-08-16 00:25:16 +02001132 if (ring->dma64) {
1133 status = bcm43xx_dma_read(ring, BCM43xx_DMA64_RXSTATUS);
1134 descptr = (status & BCM43xx_DMA64_RXSTATDPTR);
1135 current_slot = descptr / sizeof(struct bcm43xx_dmadesc64);
1136 } else {
1137 status = bcm43xx_dma_read(ring, BCM43xx_DMA32_RXSTATUS);
1138 descptr = (status & BCM43xx_DMA32_RXDPTR);
1139 current_slot = descptr / sizeof(struct bcm43xx_dmadesc32);
1140 }
John W. Linvillef2223132006-01-23 16:59:58 -05001141 assert(current_slot >= 0 && current_slot < ring->nr_slots);
1142
1143 slot = ring->current_slot;
1144 for ( ; slot != current_slot; slot = next_slot(ring, slot)) {
1145 dma_rx(ring, &slot);
1146#ifdef CONFIG_BCM43XX_DEBUG
1147 if (++used_slots > ring->max_used_slots)
1148 ring->max_used_slots = used_slots;
1149#endif
1150 }
Michael Buesch9218e022006-08-16 00:25:16 +02001151 if (ring->dma64) {
1152 bcm43xx_dma_write(ring, BCM43xx_DMA64_RXINDEX,
1153 (u32)(slot * sizeof(struct bcm43xx_dmadesc64)));
1154 } else {
1155 bcm43xx_dma_write(ring, BCM43xx_DMA32_RXINDEX,
1156 (u32)(slot * sizeof(struct bcm43xx_dmadesc32)));
1157 }
John W. Linvillef2223132006-01-23 16:59:58 -05001158 ring->current_slot = slot;
John W. Linvillef2223132006-01-23 16:59:58 -05001159}
1160
Michael Bueschaae37782006-03-13 15:54:56 +01001161void bcm43xx_dma_tx_suspend(struct bcm43xx_dmaring *ring)
1162{
1163 assert(ring->tx);
1164 bcm43xx_power_saving_ctl_bits(ring->bcm, -1, 1);
Michael Buesch9218e022006-08-16 00:25:16 +02001165 if (ring->dma64) {
1166 bcm43xx_dma_write(ring, BCM43xx_DMA64_TXCTL,
1167 bcm43xx_dma_read(ring, BCM43xx_DMA64_TXCTL)
1168 | BCM43xx_DMA64_TXSUSPEND);
1169 } else {
1170 bcm43xx_dma_write(ring, BCM43xx_DMA32_TXCTL,
1171 bcm43xx_dma_read(ring, BCM43xx_DMA32_TXCTL)
1172 | BCM43xx_DMA32_TXSUSPEND);
1173 }
Michael Bueschaae37782006-03-13 15:54:56 +01001174}
1175
1176void bcm43xx_dma_tx_resume(struct bcm43xx_dmaring *ring)
1177{
1178 assert(ring->tx);
Michael Buesch9218e022006-08-16 00:25:16 +02001179 if (ring->dma64) {
1180 bcm43xx_dma_write(ring, BCM43xx_DMA64_TXCTL,
1181 bcm43xx_dma_read(ring, BCM43xx_DMA64_TXCTL)
1182 & ~BCM43xx_DMA64_TXSUSPEND);
1183 } else {
1184 bcm43xx_dma_write(ring, BCM43xx_DMA32_TXCTL,
1185 bcm43xx_dma_read(ring, BCM43xx_DMA32_TXCTL)
1186 & ~BCM43xx_DMA32_TXSUSPEND);
1187 }
Michael Bueschaae37782006-03-13 15:54:56 +01001188 bcm43xx_power_saving_ctl_bits(ring->bcm, -1, -1);
1189}