blob: 2d3c6644f82d9603ac5c18578a4d82c59ce5ac54 [file] [log] [blame]
Larry Finger75388ac2007-09-25 16:46:54 -07001/*
2
3 Broadcom B43legacy wireless driver
4
5 DMA ringbuffer and descriptor allocation/management
6
Michael Büscheb032b92011-07-04 20:50:05 +02007 Copyright (c) 2005, 2006 Michael Buesch <m@bues.ch>
Larry Finger75388ac2007-09-25 16:46:54 -07008
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 "b43legacy.h"
31#include "dma.h"
32#include "main.h"
33#include "debugfs.h"
34#include "xmit.h"
35
36#include <linux/dma-mapping.h>
37#include <linux/pci.h>
38#include <linux/delay.h>
39#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Larry Finger75388ac2007-09-25 16:46:54 -070041#include <net/dst.h>
42
43/* 32bit DMA ops. */
44static
Pavel Roskin191d6a82011-07-25 17:40:22 -040045struct b43legacy_dmadesc32 *op32_idx2desc(struct b43legacy_dmaring *ring,
46 int slot,
47 struct b43legacy_dmadesc_meta **meta)
Larry Finger75388ac2007-09-25 16:46:54 -070048{
49 struct b43legacy_dmadesc32 *desc;
50
51 *meta = &(ring->meta[slot]);
52 desc = ring->descbase;
53 desc = &(desc[slot]);
54
Joe Perches2c208892012-06-04 12:44:17 +000055 return desc;
Larry Finger75388ac2007-09-25 16:46:54 -070056}
57
58static void op32_fill_descriptor(struct b43legacy_dmaring *ring,
Pavel Roskin191d6a82011-07-25 17:40:22 -040059 struct b43legacy_dmadesc32 *desc,
Larry Finger75388ac2007-09-25 16:46:54 -070060 dma_addr_t dmaaddr, u16 bufsize,
61 int start, int end, int irq)
62{
63 struct b43legacy_dmadesc32 *descbase = ring->descbase;
64 int slot;
65 u32 ctl;
66 u32 addr;
67 u32 addrext;
68
Pavel Roskin191d6a82011-07-25 17:40:22 -040069 slot = (int)(desc - descbase);
Larry Finger75388ac2007-09-25 16:46:54 -070070 B43legacy_WARN_ON(!(slot >= 0 && slot < ring->nr_slots));
71
72 addr = (u32)(dmaaddr & ~SSB_DMA_TRANSLATION_MASK);
73 addrext = (u32)(dmaaddr & SSB_DMA_TRANSLATION_MASK)
74 >> SSB_DMA_TRANSLATION_SHIFT;
Rafał Miłecki8c95b742011-07-22 00:25:00 +020075 addr |= ring->dev->dma.translation;
Larry Finger75388ac2007-09-25 16:46:54 -070076 ctl = (bufsize - ring->frameoffset)
77 & B43legacy_DMA32_DCTL_BYTECNT;
78 if (slot == ring->nr_slots - 1)
79 ctl |= B43legacy_DMA32_DCTL_DTABLEEND;
80 if (start)
81 ctl |= B43legacy_DMA32_DCTL_FRAMESTART;
82 if (end)
83 ctl |= B43legacy_DMA32_DCTL_FRAMEEND;
84 if (irq)
85 ctl |= B43legacy_DMA32_DCTL_IRQ;
86 ctl |= (addrext << B43legacy_DMA32_DCTL_ADDREXT_SHIFT)
87 & B43legacy_DMA32_DCTL_ADDREXT_MASK;
88
Pavel Roskin191d6a82011-07-25 17:40:22 -040089 desc->control = cpu_to_le32(ctl);
90 desc->address = cpu_to_le32(addr);
Larry Finger75388ac2007-09-25 16:46:54 -070091}
92
93static void op32_poke_tx(struct b43legacy_dmaring *ring, int slot)
94{
95 b43legacy_dma_write(ring, B43legacy_DMA32_TXINDEX,
96 (u32)(slot * sizeof(struct b43legacy_dmadesc32)));
97}
98
99static void op32_tx_suspend(struct b43legacy_dmaring *ring)
100{
101 b43legacy_dma_write(ring, B43legacy_DMA32_TXCTL,
102 b43legacy_dma_read(ring, B43legacy_DMA32_TXCTL)
103 | B43legacy_DMA32_TXSUSPEND);
104}
105
106static void op32_tx_resume(struct b43legacy_dmaring *ring)
107{
108 b43legacy_dma_write(ring, B43legacy_DMA32_TXCTL,
109 b43legacy_dma_read(ring, B43legacy_DMA32_TXCTL)
110 & ~B43legacy_DMA32_TXSUSPEND);
111}
112
113static int op32_get_current_rxslot(struct b43legacy_dmaring *ring)
114{
115 u32 val;
116
117 val = b43legacy_dma_read(ring, B43legacy_DMA32_RXSTATUS);
118 val &= B43legacy_DMA32_RXDPTR;
119
120 return (val / sizeof(struct b43legacy_dmadesc32));
121}
122
123static void op32_set_current_rxslot(struct b43legacy_dmaring *ring,
124 int slot)
125{
126 b43legacy_dma_write(ring, B43legacy_DMA32_RXINDEX,
127 (u32)(slot * sizeof(struct b43legacy_dmadesc32)));
128}
129
Larry Finger75388ac2007-09-25 16:46:54 -0700130static inline int free_slots(struct b43legacy_dmaring *ring)
131{
132 return (ring->nr_slots - ring->used_slots);
133}
134
135static inline int next_slot(struct b43legacy_dmaring *ring, int slot)
136{
137 B43legacy_WARN_ON(!(slot >= -1 && slot <= ring->nr_slots - 1));
138 if (slot == ring->nr_slots - 1)
139 return 0;
140 return slot + 1;
141}
142
143static inline int prev_slot(struct b43legacy_dmaring *ring, int slot)
144{
145 B43legacy_WARN_ON(!(slot >= 0 && slot <= ring->nr_slots - 1));
146 if (slot == 0)
147 return ring->nr_slots - 1;
148 return slot - 1;
149}
150
151#ifdef CONFIG_B43LEGACY_DEBUG
152static void update_max_used_slots(struct b43legacy_dmaring *ring,
153 int current_used_slots)
154{
155 if (current_used_slots <= ring->max_used_slots)
156 return;
157 ring->max_used_slots = current_used_slots;
158 if (b43legacy_debug(ring->dev, B43legacy_DBG_DMAVERBOSE))
159 b43legacydbg(ring->dev->wl,
160 "max_used_slots increased to %d on %s ring %d\n",
161 ring->max_used_slots,
162 ring->tx ? "TX" : "RX",
163 ring->index);
164}
165#else
166static inline
167void update_max_used_slots(struct b43legacy_dmaring *ring,
168 int current_used_slots)
169{ }
170#endif /* DEBUG */
171
172/* Request a slot for usage. */
173static inline
174int request_slot(struct b43legacy_dmaring *ring)
175{
176 int slot;
177
178 B43legacy_WARN_ON(!ring->tx);
179 B43legacy_WARN_ON(ring->stopped);
180 B43legacy_WARN_ON(free_slots(ring) == 0);
181
182 slot = next_slot(ring, ring->current_slot);
183 ring->current_slot = slot;
184 ring->used_slots++;
185
186 update_max_used_slots(ring, ring->used_slots);
187
188 return slot;
189}
190
191/* Mac80211-queue to b43legacy-ring mapping */
192static struct b43legacy_dmaring *priority_to_txring(
193 struct b43legacy_wldev *dev,
194 int queue_priority)
195{
196 struct b43legacy_dmaring *ring;
197
198/*FIXME: For now we always run on TX-ring-1 */
199return dev->dma.tx_ring1;
200
201 /* 0 = highest priority */
202 switch (queue_priority) {
203 default:
204 B43legacy_WARN_ON(1);
205 /* fallthrough */
206 case 0:
207 ring = dev->dma.tx_ring3;
208 break;
209 case 1:
210 ring = dev->dma.tx_ring2;
211 break;
212 case 2:
213 ring = dev->dma.tx_ring1;
214 break;
215 case 3:
216 ring = dev->dma.tx_ring0;
217 break;
218 case 4:
219 ring = dev->dma.tx_ring4;
220 break;
221 case 5:
222 ring = dev->dma.tx_ring5;
223 break;
224 }
225
226 return ring;
227}
228
229/* Bcm4301-ring to mac80211-queue mapping */
230static inline int txring_to_priority(struct b43legacy_dmaring *ring)
231{
232 static const u8 idx_to_prio[] =
233 { 3, 2, 1, 0, 4, 5, };
234
235/*FIXME: have only one queue, for now */
236return 0;
237
238 return idx_to_prio[ring->index];
239}
240
241
Stefano Brivio8e118f02008-02-08 06:31:53 +0100242static u16 b43legacy_dmacontroller_base(enum b43legacy_dmatype type,
243 int controller_idx)
Larry Finger75388ac2007-09-25 16:46:54 -0700244{
Larry Finger75388ac2007-09-25 16:46:54 -0700245 static const u16 map32[] = {
246 B43legacy_MMIO_DMA32_BASE0,
247 B43legacy_MMIO_DMA32_BASE1,
248 B43legacy_MMIO_DMA32_BASE2,
249 B43legacy_MMIO_DMA32_BASE3,
250 B43legacy_MMIO_DMA32_BASE4,
251 B43legacy_MMIO_DMA32_BASE5,
252 };
253
Larry Finger75388ac2007-09-25 16:46:54 -0700254 B43legacy_WARN_ON(!(controller_idx >= 0 &&
255 controller_idx < ARRAY_SIZE(map32)));
256 return map32[controller_idx];
257}
258
259static inline
260dma_addr_t map_descbuffer(struct b43legacy_dmaring *ring,
261 unsigned char *buf,
262 size_t len,
263 int tx)
264{
265 dma_addr_t dmaaddr;
266
267 if (tx)
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700268 dmaaddr = dma_map_single(ring->dev->dev->dma_dev,
Michael Bueschf2257632008-06-20 11:50:29 +0200269 buf, len,
270 DMA_TO_DEVICE);
Larry Finger75388ac2007-09-25 16:46:54 -0700271 else
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700272 dmaaddr = dma_map_single(ring->dev->dev->dma_dev,
Michael Bueschf2257632008-06-20 11:50:29 +0200273 buf, len,
274 DMA_FROM_DEVICE);
Larry Finger75388ac2007-09-25 16:46:54 -0700275
276 return dmaaddr;
277}
278
279static inline
280void unmap_descbuffer(struct b43legacy_dmaring *ring,
281 dma_addr_t addr,
282 size_t len,
283 int tx)
284{
285 if (tx)
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700286 dma_unmap_single(ring->dev->dev->dma_dev,
Michael Bueschf2257632008-06-20 11:50:29 +0200287 addr, len,
288 DMA_TO_DEVICE);
Larry Finger75388ac2007-09-25 16:46:54 -0700289 else
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700290 dma_unmap_single(ring->dev->dev->dma_dev,
Michael Bueschf2257632008-06-20 11:50:29 +0200291 addr, len,
292 DMA_FROM_DEVICE);
Larry Finger75388ac2007-09-25 16:46:54 -0700293}
294
295static inline
296void sync_descbuffer_for_cpu(struct b43legacy_dmaring *ring,
297 dma_addr_t addr,
298 size_t len)
299{
300 B43legacy_WARN_ON(ring->tx);
301
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700302 dma_sync_single_for_cpu(ring->dev->dev->dma_dev,
303 addr, len, DMA_FROM_DEVICE);
Larry Finger75388ac2007-09-25 16:46:54 -0700304}
305
306static inline
307void sync_descbuffer_for_device(struct b43legacy_dmaring *ring,
308 dma_addr_t addr,
309 size_t len)
310{
311 B43legacy_WARN_ON(ring->tx);
312
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700313 dma_sync_single_for_device(ring->dev->dev->dma_dev,
314 addr, len, DMA_FROM_DEVICE);
Larry Finger75388ac2007-09-25 16:46:54 -0700315}
316
317static inline
318void free_descriptor_buffer(struct b43legacy_dmaring *ring,
319 struct b43legacy_dmadesc_meta *meta,
320 int irq_context)
321{
322 if (meta->skb) {
323 if (irq_context)
324 dev_kfree_skb_irq(meta->skb);
325 else
326 dev_kfree_skb(meta->skb);
327 meta->skb = NULL;
328 }
329}
330
331static int alloc_ringmemory(struct b43legacy_dmaring *ring)
332{
Michael Bueschf2257632008-06-20 11:50:29 +0200333 /* GFP flags must match the flags in free_ringmemory()! */
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700334 ring->descbase = dma_alloc_coherent(ring->dev->dev->dma_dev,
335 B43legacy_DMA_RINGMEMSIZE,
336 &(ring->dmabase),
337 GFP_KERNEL);
Larry Finger75388ac2007-09-25 16:46:54 -0700338 if (!ring->descbase) {
339 b43legacyerr(ring->dev->wl, "DMA ringmemory allocation"
340 " failed\n");
341 return -ENOMEM;
342 }
343 memset(ring->descbase, 0, B43legacy_DMA_RINGMEMSIZE);
344
345 return 0;
346}
347
348static void free_ringmemory(struct b43legacy_dmaring *ring)
349{
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700350 dma_free_coherent(ring->dev->dev->dma_dev, B43legacy_DMA_RINGMEMSIZE,
351 ring->descbase, ring->dmabase);
Larry Finger75388ac2007-09-25 16:46:54 -0700352}
353
354/* Reset the RX DMA channel */
Stefano Brivio8e118f02008-02-08 06:31:53 +0100355static int b43legacy_dmacontroller_rx_reset(struct b43legacy_wldev *dev,
356 u16 mmio_base,
357 enum b43legacy_dmatype type)
Larry Finger75388ac2007-09-25 16:46:54 -0700358{
359 int i;
360 u32 value;
361 u16 offset;
362
363 might_sleep();
364
Pavel Roskin191d6a82011-07-25 17:40:22 -0400365 offset = B43legacy_DMA32_RXCTL;
Larry Finger75388ac2007-09-25 16:46:54 -0700366 b43legacy_write32(dev, mmio_base + offset, 0);
367 for (i = 0; i < 10; i++) {
Pavel Roskin191d6a82011-07-25 17:40:22 -0400368 offset = B43legacy_DMA32_RXSTATUS;
Larry Finger75388ac2007-09-25 16:46:54 -0700369 value = b43legacy_read32(dev, mmio_base + offset);
Pavel Roskin191d6a82011-07-25 17:40:22 -0400370 value &= B43legacy_DMA32_RXSTATE;
371 if (value == B43legacy_DMA32_RXSTAT_DISABLED) {
372 i = -1;
373 break;
Larry Finger75388ac2007-09-25 16:46:54 -0700374 }
375 msleep(1);
376 }
377 if (i != -1) {
378 b43legacyerr(dev->wl, "DMA RX reset timed out\n");
379 return -ENODEV;
380 }
381
382 return 0;
383}
384
385/* Reset the RX DMA channel */
Stefano Brivio8e118f02008-02-08 06:31:53 +0100386static int b43legacy_dmacontroller_tx_reset(struct b43legacy_wldev *dev,
387 u16 mmio_base,
388 enum b43legacy_dmatype type)
Larry Finger75388ac2007-09-25 16:46:54 -0700389{
390 int i;
391 u32 value;
392 u16 offset;
393
394 might_sleep();
395
396 for (i = 0; i < 10; i++) {
Pavel Roskin191d6a82011-07-25 17:40:22 -0400397 offset = B43legacy_DMA32_TXSTATUS;
Larry Finger75388ac2007-09-25 16:46:54 -0700398 value = b43legacy_read32(dev, mmio_base + offset);
Pavel Roskin191d6a82011-07-25 17:40:22 -0400399 value &= B43legacy_DMA32_TXSTATE;
400 if (value == B43legacy_DMA32_TXSTAT_DISABLED ||
401 value == B43legacy_DMA32_TXSTAT_IDLEWAIT ||
402 value == B43legacy_DMA32_TXSTAT_STOPPED)
403 break;
Larry Finger75388ac2007-09-25 16:46:54 -0700404 msleep(1);
405 }
Pavel Roskin191d6a82011-07-25 17:40:22 -0400406 offset = B43legacy_DMA32_TXCTL;
Larry Finger75388ac2007-09-25 16:46:54 -0700407 b43legacy_write32(dev, mmio_base + offset, 0);
408 for (i = 0; i < 10; i++) {
Pavel Roskin191d6a82011-07-25 17:40:22 -0400409 offset = B43legacy_DMA32_TXSTATUS;
Larry Finger75388ac2007-09-25 16:46:54 -0700410 value = b43legacy_read32(dev, mmio_base + offset);
Pavel Roskin191d6a82011-07-25 17:40:22 -0400411 value &= B43legacy_DMA32_TXSTATE;
412 if (value == B43legacy_DMA32_TXSTAT_DISABLED) {
413 i = -1;
414 break;
Larry Finger75388ac2007-09-25 16:46:54 -0700415 }
416 msleep(1);
417 }
418 if (i != -1) {
419 b43legacyerr(dev->wl, "DMA TX reset timed out\n");
420 return -ENODEV;
421 }
422 /* ensure the reset is completed. */
423 msleep(1);
424
425 return 0;
426}
427
Stefano Brivio8e118f02008-02-08 06:31:53 +0100428/* Check if a DMA mapping address is invalid. */
429static bool b43legacy_dma_mapping_error(struct b43legacy_dmaring *ring,
Stefano Briviodc4ae1f2008-04-14 00:59:49 +0200430 dma_addr_t addr,
431 size_t buffersize,
432 bool dma_to_device)
Stefano Brivio8e118f02008-02-08 06:31:53 +0100433{
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700434 if (unlikely(dma_mapping_error(ring->dev->dev->dma_dev, addr)))
Stefano Brivio8e118f02008-02-08 06:31:53 +0100435 return 1;
436
437 switch (ring->type) {
438 case B43legacy_DMA_30BIT:
439 if ((u64)addr + buffersize > (1ULL << 30))
Stefano Briviodc4ae1f2008-04-14 00:59:49 +0200440 goto address_error;
Stefano Brivio8e118f02008-02-08 06:31:53 +0100441 break;
442 case B43legacy_DMA_32BIT:
443 if ((u64)addr + buffersize > (1ULL << 32))
Stefano Briviodc4ae1f2008-04-14 00:59:49 +0200444 goto address_error;
Stefano Brivio8e118f02008-02-08 06:31:53 +0100445 break;
Stefano Brivio8e118f02008-02-08 06:31:53 +0100446 }
447
448 /* The address is OK. */
449 return 0;
Stefano Briviodc4ae1f2008-04-14 00:59:49 +0200450
451address_error:
452 /* We can't support this address. Unmap it again. */
453 unmap_descbuffer(ring, addr, buffersize, dma_to_device);
454
455 return 1;
Stefano Brivio8e118f02008-02-08 06:31:53 +0100456}
457
Larry Finger75388ac2007-09-25 16:46:54 -0700458static int setup_rx_descbuffer(struct b43legacy_dmaring *ring,
Pavel Roskin191d6a82011-07-25 17:40:22 -0400459 struct b43legacy_dmadesc32 *desc,
Larry Finger75388ac2007-09-25 16:46:54 -0700460 struct b43legacy_dmadesc_meta *meta,
461 gfp_t gfp_flags)
462{
463 struct b43legacy_rxhdr_fw3 *rxhdr;
464 struct b43legacy_hwtxstatus *txstat;
465 dma_addr_t dmaaddr;
466 struct sk_buff *skb;
467
468 B43legacy_WARN_ON(ring->tx);
469
470 skb = __dev_alloc_skb(ring->rx_buffersize, gfp_flags);
471 if (unlikely(!skb))
472 return -ENOMEM;
473 dmaaddr = map_descbuffer(ring, skb->data,
474 ring->rx_buffersize, 0);
Stefano Briviodc4ae1f2008-04-14 00:59:49 +0200475 if (b43legacy_dma_mapping_error(ring, dmaaddr, ring->rx_buffersize, 0)) {
Larry Finger75388ac2007-09-25 16:46:54 -0700476 /* ugh. try to realloc in zone_dma */
477 gfp_flags |= GFP_DMA;
478
479 dev_kfree_skb_any(skb);
480
481 skb = __dev_alloc_skb(ring->rx_buffersize, gfp_flags);
482 if (unlikely(!skb))
483 return -ENOMEM;
484 dmaaddr = map_descbuffer(ring, skb->data,
485 ring->rx_buffersize, 0);
486 }
487
Stefano Briviodc4ae1f2008-04-14 00:59:49 +0200488 if (b43legacy_dma_mapping_error(ring, dmaaddr, ring->rx_buffersize, 0)) {
Larry Finger75388ac2007-09-25 16:46:54 -0700489 dev_kfree_skb_any(skb);
490 return -EIO;
491 }
492
493 meta->skb = skb;
494 meta->dmaaddr = dmaaddr;
Pavel Roskin191d6a82011-07-25 17:40:22 -0400495 op32_fill_descriptor(ring, desc, dmaaddr, ring->rx_buffersize, 0, 0, 0);
Larry Finger75388ac2007-09-25 16:46:54 -0700496
497 rxhdr = (struct b43legacy_rxhdr_fw3 *)(skb->data);
498 rxhdr->frame_len = 0;
499 txstat = (struct b43legacy_hwtxstatus *)(skb->data);
500 txstat->cookie = 0;
501
502 return 0;
503}
504
505/* Allocate the initial descbuffers.
506 * This is used for an RX ring only.
507 */
508static int alloc_initial_descbuffers(struct b43legacy_dmaring *ring)
509{
510 int i;
511 int err = -ENOMEM;
Pavel Roskin191d6a82011-07-25 17:40:22 -0400512 struct b43legacy_dmadesc32 *desc;
Larry Finger75388ac2007-09-25 16:46:54 -0700513 struct b43legacy_dmadesc_meta *meta;
514
515 for (i = 0; i < ring->nr_slots; i++) {
Pavel Roskin191d6a82011-07-25 17:40:22 -0400516 desc = op32_idx2desc(ring, i, &meta);
Larry Finger75388ac2007-09-25 16:46:54 -0700517
518 err = setup_rx_descbuffer(ring, desc, meta, GFP_KERNEL);
519 if (err) {
520 b43legacyerr(ring->dev->wl,
521 "Failed to allocate initial descbuffers\n");
522 goto err_unwind;
523 }
524 }
525 mb(); /* all descbuffer setup before next line */
526 ring->used_slots = ring->nr_slots;
527 err = 0;
528out:
529 return err;
530
531err_unwind:
532 for (i--; i >= 0; i--) {
Pavel Roskin191d6a82011-07-25 17:40:22 -0400533 desc = op32_idx2desc(ring, i, &meta);
Larry Finger75388ac2007-09-25 16:46:54 -0700534
535 unmap_descbuffer(ring, meta->dmaaddr, ring->rx_buffersize, 0);
536 dev_kfree_skb(meta->skb);
537 }
538 goto out;
539}
540
541/* Do initial setup of the DMA controller.
542 * Reset the controller, write the ring busaddress
543 * and switch the "enable" bit on.
544 */
545static int dmacontroller_setup(struct b43legacy_dmaring *ring)
546{
547 int err = 0;
548 u32 value;
549 u32 addrext;
Rafał Miłecki8c95b742011-07-22 00:25:00 +0200550 u32 trans = ring->dev->dma.translation;
Pavel Roskin191d6a82011-07-25 17:40:22 -0400551 u32 ringbase = (u32)(ring->dmabase);
Larry Finger75388ac2007-09-25 16:46:54 -0700552
553 if (ring->tx) {
Pavel Roskin191d6a82011-07-25 17:40:22 -0400554 addrext = (ringbase & SSB_DMA_TRANSLATION_MASK)
555 >> SSB_DMA_TRANSLATION_SHIFT;
556 value = B43legacy_DMA32_TXENABLE;
557 value |= (addrext << B43legacy_DMA32_TXADDREXT_SHIFT)
558 & B43legacy_DMA32_TXADDREXT_MASK;
559 b43legacy_dma_write(ring, B43legacy_DMA32_TXCTL, value);
560 b43legacy_dma_write(ring, B43legacy_DMA32_TXRING,
561 (ringbase & ~SSB_DMA_TRANSLATION_MASK)
562 | trans);
Larry Finger75388ac2007-09-25 16:46:54 -0700563 } else {
564 err = alloc_initial_descbuffers(ring);
565 if (err)
566 goto out;
Larry Finger75388ac2007-09-25 16:46:54 -0700567
Pavel Roskin191d6a82011-07-25 17:40:22 -0400568 addrext = (ringbase & SSB_DMA_TRANSLATION_MASK)
569 >> SSB_DMA_TRANSLATION_SHIFT;
570 value = (ring->frameoffset <<
571 B43legacy_DMA32_RXFROFF_SHIFT);
572 value |= B43legacy_DMA32_RXENABLE;
573 value |= (addrext << B43legacy_DMA32_RXADDREXT_SHIFT)
574 & B43legacy_DMA32_RXADDREXT_MASK;
575 b43legacy_dma_write(ring, B43legacy_DMA32_RXCTL, value);
576 b43legacy_dma_write(ring, B43legacy_DMA32_RXRING,
577 (ringbase & ~SSB_DMA_TRANSLATION_MASK)
578 | trans);
579 b43legacy_dma_write(ring, B43legacy_DMA32_RXINDEX, 200);
Larry Finger75388ac2007-09-25 16:46:54 -0700580 }
581
582out:
583 return err;
584}
585
586/* Shutdown the DMA controller. */
587static void dmacontroller_cleanup(struct b43legacy_dmaring *ring)
588{
589 if (ring->tx) {
590 b43legacy_dmacontroller_tx_reset(ring->dev, ring->mmio_base,
Stefano Brivio8e118f02008-02-08 06:31:53 +0100591 ring->type);
Pavel Roskin191d6a82011-07-25 17:40:22 -0400592 b43legacy_dma_write(ring, B43legacy_DMA32_TXRING, 0);
Larry Finger75388ac2007-09-25 16:46:54 -0700593 } else {
594 b43legacy_dmacontroller_rx_reset(ring->dev, ring->mmio_base,
Stefano Brivio8e118f02008-02-08 06:31:53 +0100595 ring->type);
Pavel Roskin191d6a82011-07-25 17:40:22 -0400596 b43legacy_dma_write(ring, B43legacy_DMA32_RXRING, 0);
Larry Finger75388ac2007-09-25 16:46:54 -0700597 }
598}
599
600static void free_all_descbuffers(struct b43legacy_dmaring *ring)
601{
Larry Finger75388ac2007-09-25 16:46:54 -0700602 struct b43legacy_dmadesc_meta *meta;
603 int i;
604
605 if (!ring->used_slots)
606 return;
607 for (i = 0; i < ring->nr_slots; i++) {
Pavel Roskin191d6a82011-07-25 17:40:22 -0400608 op32_idx2desc(ring, i, &meta);
Larry Finger75388ac2007-09-25 16:46:54 -0700609
610 if (!meta->skb) {
611 B43legacy_WARN_ON(!ring->tx);
612 continue;
613 }
614 if (ring->tx)
615 unmap_descbuffer(ring, meta->dmaaddr,
616 meta->skb->len, 1);
617 else
618 unmap_descbuffer(ring, meta->dmaaddr,
619 ring->rx_buffersize, 0);
620 free_descriptor_buffer(ring, meta, 0);
621 }
622}
623
624static u64 supported_dma_mask(struct b43legacy_wldev *dev)
625{
626 u32 tmp;
627 u16 mmio_base;
628
Larry Finger75388ac2007-09-25 16:46:54 -0700629 mmio_base = b43legacy_dmacontroller_base(0, 0);
630 b43legacy_write32(dev,
631 mmio_base + B43legacy_DMA32_TXCTL,
632 B43legacy_DMA32_TXADDREXT_MASK);
633 tmp = b43legacy_read32(dev, mmio_base +
634 B43legacy_DMA32_TXCTL);
635 if (tmp & B43legacy_DMA32_TXADDREXT_MASK)
Yang Hongyang284901a2009-04-06 19:01:15 -0700636 return DMA_BIT_MASK(32);
Larry Finger75388ac2007-09-25 16:46:54 -0700637
Yang Hongyang28b76792009-04-06 19:01:17 -0700638 return DMA_BIT_MASK(30);
Larry Finger75388ac2007-09-25 16:46:54 -0700639}
640
Larry Finger70197ed2008-07-04 08:39:01 -0500641static enum b43legacy_dmatype dma_mask_to_engine_type(u64 dmamask)
642{
Yang Hongyang28b76792009-04-06 19:01:17 -0700643 if (dmamask == DMA_BIT_MASK(30))
Larry Finger70197ed2008-07-04 08:39:01 -0500644 return B43legacy_DMA_30BIT;
Yang Hongyang284901a2009-04-06 19:01:15 -0700645 if (dmamask == DMA_BIT_MASK(32))
Larry Finger70197ed2008-07-04 08:39:01 -0500646 return B43legacy_DMA_32BIT;
Larry Finger70197ed2008-07-04 08:39:01 -0500647 B43legacy_WARN_ON(1);
648 return B43legacy_DMA_30BIT;
649}
650
Larry Finger75388ac2007-09-25 16:46:54 -0700651/* Main initialization function. */
652static
Stefano Brivio8e118f02008-02-08 06:31:53 +0100653struct b43legacy_dmaring *b43legacy_setup_dmaring(struct b43legacy_wldev *dev,
654 int controller_index,
655 int for_tx,
656 enum b43legacy_dmatype type)
Larry Finger75388ac2007-09-25 16:46:54 -0700657{
658 struct b43legacy_dmaring *ring;
659 int err;
660 int nr_slots;
661 dma_addr_t dma_test;
662
663 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
664 if (!ring)
665 goto out;
Stefano Brivio8e118f02008-02-08 06:31:53 +0100666 ring->type = type;
Michael Buesch2f9ec472008-06-20 11:40:46 +0200667 ring->dev = dev;
Larry Finger75388ac2007-09-25 16:46:54 -0700668
669 nr_slots = B43legacy_RXRING_SLOTS;
670 if (for_tx)
671 nr_slots = B43legacy_TXRING_SLOTS;
672
673 ring->meta = kcalloc(nr_slots, sizeof(struct b43legacy_dmadesc_meta),
674 GFP_KERNEL);
675 if (!ring->meta)
676 goto err_kfree_ring;
677 if (for_tx) {
678 ring->txhdr_cache = kcalloc(nr_slots,
679 sizeof(struct b43legacy_txhdr_fw3),
680 GFP_KERNEL);
681 if (!ring->txhdr_cache)
682 goto err_kfree_meta;
683
684 /* test for ability to dma to txhdr_cache */
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700685 dma_test = dma_map_single(dev->dev->dma_dev, ring->txhdr_cache,
Michael Bueschf2257632008-06-20 11:50:29 +0200686 sizeof(struct b43legacy_txhdr_fw3),
687 DMA_TO_DEVICE);
Larry Finger75388ac2007-09-25 16:46:54 -0700688
Stefano Brivio8e118f02008-02-08 06:31:53 +0100689 if (b43legacy_dma_mapping_error(ring, dma_test,
Stefano Briviodc4ae1f2008-04-14 00:59:49 +0200690 sizeof(struct b43legacy_txhdr_fw3), 1)) {
Larry Finger75388ac2007-09-25 16:46:54 -0700691 /* ugh realloc */
692 kfree(ring->txhdr_cache);
693 ring->txhdr_cache = kcalloc(nr_slots,
694 sizeof(struct b43legacy_txhdr_fw3),
695 GFP_KERNEL | GFP_DMA);
696 if (!ring->txhdr_cache)
697 goto err_kfree_meta;
698
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700699 dma_test = dma_map_single(dev->dev->dma_dev,
Larry Finger75388ac2007-09-25 16:46:54 -0700700 ring->txhdr_cache,
701 sizeof(struct b43legacy_txhdr_fw3),
702 DMA_TO_DEVICE);
703
Stefano Brivio8e118f02008-02-08 06:31:53 +0100704 if (b43legacy_dma_mapping_error(ring, dma_test,
Stefano Briviodc4ae1f2008-04-14 00:59:49 +0200705 sizeof(struct b43legacy_txhdr_fw3), 1))
Larry Finger75388ac2007-09-25 16:46:54 -0700706 goto err_kfree_txhdr_cache;
707 }
708
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700709 dma_unmap_single(dev->dev->dma_dev, dma_test,
710 sizeof(struct b43legacy_txhdr_fw3),
711 DMA_TO_DEVICE);
Larry Finger75388ac2007-09-25 16:46:54 -0700712 }
713
Larry Finger75388ac2007-09-25 16:46:54 -0700714 ring->nr_slots = nr_slots;
Stefano Brivio8e118f02008-02-08 06:31:53 +0100715 ring->mmio_base = b43legacy_dmacontroller_base(type, controller_index);
Larry Finger75388ac2007-09-25 16:46:54 -0700716 ring->index = controller_index;
Larry Finger75388ac2007-09-25 16:46:54 -0700717 if (for_tx) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000718 ring->tx = true;
Larry Finger75388ac2007-09-25 16:46:54 -0700719 ring->current_slot = -1;
720 } else {
721 if (ring->index == 0) {
722 ring->rx_buffersize = B43legacy_DMA0_RX_BUFFERSIZE;
723 ring->frameoffset = B43legacy_DMA0_RX_FRAMEOFFSET;
724 } else if (ring->index == 3) {
725 ring->rx_buffersize = B43legacy_DMA3_RX_BUFFERSIZE;
726 ring->frameoffset = B43legacy_DMA3_RX_FRAMEOFFSET;
727 } else
728 B43legacy_WARN_ON(1);
729 }
Larry Finger75388ac2007-09-25 16:46:54 -0700730#ifdef CONFIG_B43LEGACY_DEBUG
731 ring->last_injected_overflow = jiffies;
732#endif
733
734 err = alloc_ringmemory(ring);
735 if (err)
736 goto err_kfree_txhdr_cache;
737 err = dmacontroller_setup(ring);
738 if (err)
739 goto err_free_ringmemory;
740
741out:
742 return ring;
743
744err_free_ringmemory:
745 free_ringmemory(ring);
746err_kfree_txhdr_cache:
747 kfree(ring->txhdr_cache);
748err_kfree_meta:
749 kfree(ring->meta);
750err_kfree_ring:
751 kfree(ring);
752 ring = NULL;
753 goto out;
754}
755
756/* Main cleanup function. */
757static void b43legacy_destroy_dmaring(struct b43legacy_dmaring *ring)
758{
759 if (!ring)
760 return;
761
Stefano Brivio8e118f02008-02-08 06:31:53 +0100762 b43legacydbg(ring->dev->wl, "DMA-%u 0x%04X (%s) max used slots:"
763 " %d/%d\n", (unsigned int)(ring->type), ring->mmio_base,
764 (ring->tx) ? "TX" : "RX", ring->max_used_slots,
765 ring->nr_slots);
Larry Finger75388ac2007-09-25 16:46:54 -0700766 /* Device IRQs are disabled prior entering this function,
767 * so no need to take care of concurrency with rx handler stuff.
768 */
769 dmacontroller_cleanup(ring);
770 free_all_descbuffers(ring);
771 free_ringmemory(ring);
772
773 kfree(ring->txhdr_cache);
774 kfree(ring->meta);
775 kfree(ring);
776}
777
778void b43legacy_dma_free(struct b43legacy_wldev *dev)
779{
780 struct b43legacy_dma *dma;
781
782 if (b43legacy_using_pio(dev))
783 return;
784 dma = &dev->dma;
785
786 b43legacy_destroy_dmaring(dma->rx_ring3);
787 dma->rx_ring3 = NULL;
788 b43legacy_destroy_dmaring(dma->rx_ring0);
789 dma->rx_ring0 = NULL;
790
791 b43legacy_destroy_dmaring(dma->tx_ring5);
792 dma->tx_ring5 = NULL;
793 b43legacy_destroy_dmaring(dma->tx_ring4);
794 dma->tx_ring4 = NULL;
795 b43legacy_destroy_dmaring(dma->tx_ring3);
796 dma->tx_ring3 = NULL;
797 b43legacy_destroy_dmaring(dma->tx_ring2);
798 dma->tx_ring2 = NULL;
799 b43legacy_destroy_dmaring(dma->tx_ring1);
800 dma->tx_ring1 = NULL;
801 b43legacy_destroy_dmaring(dma->tx_ring0);
802 dma->tx_ring0 = NULL;
803}
804
Larry Finger70197ed2008-07-04 08:39:01 -0500805static int b43legacy_dma_set_mask(struct b43legacy_wldev *dev, u64 mask)
806{
807 u64 orig_mask = mask;
Rusty Russell3db1cd52011-12-19 13:56:45 +0000808 bool fallback = false;
Larry Finger70197ed2008-07-04 08:39:01 -0500809 int err;
810
811 /* Try to set the DMA mask. If it fails, try falling back to a
812 * lower mask, as we can always also support a lower one. */
813 while (1) {
FUJITA Tomonori4e803132010-06-03 19:37:33 -0700814 err = dma_set_mask(dev->dev->dma_dev, mask);
815 if (!err) {
816 err = dma_set_coherent_mask(dev->dev->dma_dev, mask);
817 if (!err)
818 break;
819 }
Yang Hongyang6a355282009-04-06 19:01:13 -0700820 if (mask == DMA_BIT_MASK(64)) {
Yang Hongyang284901a2009-04-06 19:01:15 -0700821 mask = DMA_BIT_MASK(32);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000822 fallback = true;
Larry Finger70197ed2008-07-04 08:39:01 -0500823 continue;
824 }
Yang Hongyang284901a2009-04-06 19:01:15 -0700825 if (mask == DMA_BIT_MASK(32)) {
Yang Hongyang28b76792009-04-06 19:01:17 -0700826 mask = DMA_BIT_MASK(30);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000827 fallback = true;
Larry Finger70197ed2008-07-04 08:39:01 -0500828 continue;
829 }
830 b43legacyerr(dev->wl, "The machine/kernel does not support "
831 "the required %u-bit DMA mask\n",
832 (unsigned int)dma_mask_to_engine_type(orig_mask));
833 return -EOPNOTSUPP;
834 }
835 if (fallback) {
836 b43legacyinfo(dev->wl, "DMA mask fallback from %u-bit to %u-"
837 "bit\n",
838 (unsigned int)dma_mask_to_engine_type(orig_mask),
839 (unsigned int)dma_mask_to_engine_type(mask));
840 }
841
842 return 0;
843}
844
Larry Finger75388ac2007-09-25 16:46:54 -0700845int b43legacy_dma_init(struct b43legacy_wldev *dev)
846{
847 struct b43legacy_dma *dma = &dev->dma;
848 struct b43legacy_dmaring *ring;
849 int err;
850 u64 dmamask;
Stefano Brivio8e118f02008-02-08 06:31:53 +0100851 enum b43legacy_dmatype type;
Larry Finger75388ac2007-09-25 16:46:54 -0700852
853 dmamask = supported_dma_mask(dev);
Larry Finger70197ed2008-07-04 08:39:01 -0500854 type = dma_mask_to_engine_type(dmamask);
855 err = b43legacy_dma_set_mask(dev, dmamask);
Larry Finger75388ac2007-09-25 16:46:54 -0700856 if (err) {
Stefano Brivio354807e2007-11-19 20:21:31 +0100857#ifdef CONFIG_B43LEGACY_PIO
Larry Finger75388ac2007-09-25 16:46:54 -0700858 b43legacywarn(dev->wl, "DMA for this device not supported. "
859 "Falling back to PIO\n");
Rusty Russell3db1cd52011-12-19 13:56:45 +0000860 dev->__using_pio = true;
Larry Finger75388ac2007-09-25 16:46:54 -0700861 return -EAGAIN;
862#else
863 b43legacyerr(dev->wl, "DMA for this device not supported and "
864 "no PIO support compiled in\n");
865 return -EOPNOTSUPP;
866#endif
867 }
Rafał Miłecki8c95b742011-07-22 00:25:00 +0200868 dma->translation = ssb_dma_translation(dev->dev);
Larry Finger75388ac2007-09-25 16:46:54 -0700869
870 err = -ENOMEM;
871 /* setup TX DMA channels. */
Stefano Brivio8e118f02008-02-08 06:31:53 +0100872 ring = b43legacy_setup_dmaring(dev, 0, 1, type);
Larry Finger75388ac2007-09-25 16:46:54 -0700873 if (!ring)
874 goto out;
875 dma->tx_ring0 = ring;
876
Stefano Brivio8e118f02008-02-08 06:31:53 +0100877 ring = b43legacy_setup_dmaring(dev, 1, 1, type);
Larry Finger75388ac2007-09-25 16:46:54 -0700878 if (!ring)
879 goto err_destroy_tx0;
880 dma->tx_ring1 = ring;
881
Stefano Brivio8e118f02008-02-08 06:31:53 +0100882 ring = b43legacy_setup_dmaring(dev, 2, 1, type);
Larry Finger75388ac2007-09-25 16:46:54 -0700883 if (!ring)
884 goto err_destroy_tx1;
885 dma->tx_ring2 = ring;
886
Stefano Brivio8e118f02008-02-08 06:31:53 +0100887 ring = b43legacy_setup_dmaring(dev, 3, 1, type);
Larry Finger75388ac2007-09-25 16:46:54 -0700888 if (!ring)
889 goto err_destroy_tx2;
890 dma->tx_ring3 = ring;
891
Stefano Brivio8e118f02008-02-08 06:31:53 +0100892 ring = b43legacy_setup_dmaring(dev, 4, 1, type);
Larry Finger75388ac2007-09-25 16:46:54 -0700893 if (!ring)
894 goto err_destroy_tx3;
895 dma->tx_ring4 = ring;
896
Stefano Brivio8e118f02008-02-08 06:31:53 +0100897 ring = b43legacy_setup_dmaring(dev, 5, 1, type);
Larry Finger75388ac2007-09-25 16:46:54 -0700898 if (!ring)
899 goto err_destroy_tx4;
900 dma->tx_ring5 = ring;
901
902 /* setup RX DMA channels. */
Stefano Brivio8e118f02008-02-08 06:31:53 +0100903 ring = b43legacy_setup_dmaring(dev, 0, 0, type);
Larry Finger75388ac2007-09-25 16:46:54 -0700904 if (!ring)
905 goto err_destroy_tx5;
906 dma->rx_ring0 = ring;
907
908 if (dev->dev->id.revision < 5) {
Stefano Brivio8e118f02008-02-08 06:31:53 +0100909 ring = b43legacy_setup_dmaring(dev, 3, 0, type);
Larry Finger75388ac2007-09-25 16:46:54 -0700910 if (!ring)
911 goto err_destroy_rx0;
912 dma->rx_ring3 = ring;
913 }
914
Stefano Brivio8e118f02008-02-08 06:31:53 +0100915 b43legacydbg(dev->wl, "%u-bit DMA initialized\n", (unsigned int)type);
Larry Finger75388ac2007-09-25 16:46:54 -0700916 err = 0;
917out:
918 return err;
919
920err_destroy_rx0:
921 b43legacy_destroy_dmaring(dma->rx_ring0);
922 dma->rx_ring0 = NULL;
923err_destroy_tx5:
924 b43legacy_destroy_dmaring(dma->tx_ring5);
925 dma->tx_ring5 = NULL;
926err_destroy_tx4:
927 b43legacy_destroy_dmaring(dma->tx_ring4);
928 dma->tx_ring4 = NULL;
929err_destroy_tx3:
930 b43legacy_destroy_dmaring(dma->tx_ring3);
931 dma->tx_ring3 = NULL;
932err_destroy_tx2:
933 b43legacy_destroy_dmaring(dma->tx_ring2);
934 dma->tx_ring2 = NULL;
935err_destroy_tx1:
936 b43legacy_destroy_dmaring(dma->tx_ring1);
937 dma->tx_ring1 = NULL;
938err_destroy_tx0:
939 b43legacy_destroy_dmaring(dma->tx_ring0);
940 dma->tx_ring0 = NULL;
941 goto out;
942}
943
944/* Generate a cookie for the TX header. */
945static u16 generate_cookie(struct b43legacy_dmaring *ring,
946 int slot)
947{
948 u16 cookie = 0x1000;
949
950 /* Use the upper 4 bits of the cookie as
951 * DMA controller ID and store the slot number
952 * in the lower 12 bits.
953 * Note that the cookie must never be 0, as this
954 * is a special value used in RX path.
955 */
956 switch (ring->index) {
957 case 0:
958 cookie = 0xA000;
959 break;
960 case 1:
961 cookie = 0xB000;
962 break;
963 case 2:
964 cookie = 0xC000;
965 break;
966 case 3:
967 cookie = 0xD000;
968 break;
969 case 4:
970 cookie = 0xE000;
971 break;
972 case 5:
973 cookie = 0xF000;
974 break;
975 }
976 B43legacy_WARN_ON(!(((u16)slot & 0xF000) == 0x0000));
977 cookie |= (u16)slot;
978
979 return cookie;
980}
981
982/* Inspect a cookie and find out to which controller/slot it belongs. */
983static
984struct b43legacy_dmaring *parse_cookie(struct b43legacy_wldev *dev,
985 u16 cookie, int *slot)
986{
987 struct b43legacy_dma *dma = &dev->dma;
988 struct b43legacy_dmaring *ring = NULL;
989
990 switch (cookie & 0xF000) {
991 case 0xA000:
992 ring = dma->tx_ring0;
993 break;
994 case 0xB000:
995 ring = dma->tx_ring1;
996 break;
997 case 0xC000:
998 ring = dma->tx_ring2;
999 break;
1000 case 0xD000:
1001 ring = dma->tx_ring3;
1002 break;
1003 case 0xE000:
1004 ring = dma->tx_ring4;
1005 break;
1006 case 0xF000:
1007 ring = dma->tx_ring5;
1008 break;
1009 default:
1010 B43legacy_WARN_ON(1);
1011 }
1012 *slot = (cookie & 0x0FFF);
1013 B43legacy_WARN_ON(!(ring && *slot >= 0 && *slot < ring->nr_slots));
1014
1015 return ring;
1016}
1017
1018static int dma_tx_fragment(struct b43legacy_dmaring *ring,
Larry Fingerd2d8cda2009-10-30 11:58:21 -05001019 struct sk_buff **in_skb)
Larry Finger75388ac2007-09-25 16:46:54 -07001020{
Larry Fingerd2d8cda2009-10-30 11:58:21 -05001021 struct sk_buff *skb = *in_skb;
Johannes Berge039fa42008-05-15 12:55:29 +02001022 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Larry Finger75388ac2007-09-25 16:46:54 -07001023 u8 *header;
Stefano Brivio8dd01002008-02-02 19:16:03 +01001024 int slot, old_top_slot, old_used_slots;
Larry Finger75388ac2007-09-25 16:46:54 -07001025 int err;
Pavel Roskin191d6a82011-07-25 17:40:22 -04001026 struct b43legacy_dmadesc32 *desc;
Larry Finger75388ac2007-09-25 16:46:54 -07001027 struct b43legacy_dmadesc_meta *meta;
1028 struct b43legacy_dmadesc_meta *meta_hdr;
1029 struct sk_buff *bounce_skb;
1030
1031#define SLOTS_PER_PACKET 2
1032 B43legacy_WARN_ON(skb_shinfo(skb)->nr_frags != 0);
1033
Stefano Brivio8dd01002008-02-02 19:16:03 +01001034 old_top_slot = ring->current_slot;
1035 old_used_slots = ring->used_slots;
1036
Larry Finger75388ac2007-09-25 16:46:54 -07001037 /* Get a slot for the header. */
1038 slot = request_slot(ring);
Pavel Roskin191d6a82011-07-25 17:40:22 -04001039 desc = op32_idx2desc(ring, slot, &meta_hdr);
Larry Finger75388ac2007-09-25 16:46:54 -07001040 memset(meta_hdr, 0, sizeof(*meta_hdr));
1041
1042 header = &(ring->txhdr_cache[slot * sizeof(
1043 struct b43legacy_txhdr_fw3)]);
Stefano Brivio9eca9a82008-02-02 19:16:01 +01001044 err = b43legacy_generate_txhdr(ring->dev, header,
Johannes Berge039fa42008-05-15 12:55:29 +02001045 skb->data, skb->len, info,
Larry Finger75388ac2007-09-25 16:46:54 -07001046 generate_cookie(ring, slot));
Stefano Brivio8dd01002008-02-02 19:16:03 +01001047 if (unlikely(err)) {
1048 ring->current_slot = old_top_slot;
1049 ring->used_slots = old_used_slots;
Stefano Brivio9eca9a82008-02-02 19:16:01 +01001050 return err;
Stefano Brivio8dd01002008-02-02 19:16:03 +01001051 }
Larry Finger75388ac2007-09-25 16:46:54 -07001052
1053 meta_hdr->dmaaddr = map_descbuffer(ring, (unsigned char *)header,
Stefano Brivio8e118f02008-02-08 06:31:53 +01001054 sizeof(struct b43legacy_txhdr_fw3), 1);
1055 if (b43legacy_dma_mapping_error(ring, meta_hdr->dmaaddr,
Stefano Briviodc4ae1f2008-04-14 00:59:49 +02001056 sizeof(struct b43legacy_txhdr_fw3), 1)) {
Stefano Brivio8e118f02008-02-08 06:31:53 +01001057 ring->current_slot = old_top_slot;
1058 ring->used_slots = old_used_slots;
Larry Finger75388ac2007-09-25 16:46:54 -07001059 return -EIO;
Stefano Brivio8e118f02008-02-08 06:31:53 +01001060 }
Pavel Roskin191d6a82011-07-25 17:40:22 -04001061 op32_fill_descriptor(ring, desc, meta_hdr->dmaaddr,
Larry Finger75388ac2007-09-25 16:46:54 -07001062 sizeof(struct b43legacy_txhdr_fw3), 1, 0, 0);
1063
1064 /* Get a slot for the payload. */
1065 slot = request_slot(ring);
Pavel Roskin191d6a82011-07-25 17:40:22 -04001066 desc = op32_idx2desc(ring, slot, &meta);
Larry Finger75388ac2007-09-25 16:46:54 -07001067 memset(meta, 0, sizeof(*meta));
1068
Larry Finger75388ac2007-09-25 16:46:54 -07001069 meta->skb = skb;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001070 meta->is_last_fragment = true;
Larry Finger75388ac2007-09-25 16:46:54 -07001071
1072 meta->dmaaddr = map_descbuffer(ring, skb->data, skb->len, 1);
1073 /* create a bounce buffer in zone_dma on mapping failure. */
Stefano Briviodc4ae1f2008-04-14 00:59:49 +02001074 if (b43legacy_dma_mapping_error(ring, meta->dmaaddr, skb->len, 1)) {
Eric Dumazetacfa9e92012-07-02 08:36:12 +00001075 bounce_skb = alloc_skb(skb->len, GFP_ATOMIC | GFP_DMA);
Larry Finger75388ac2007-09-25 16:46:54 -07001076 if (!bounce_skb) {
Stefano Brivio8dd01002008-02-02 19:16:03 +01001077 ring->current_slot = old_top_slot;
1078 ring->used_slots = old_used_slots;
Larry Finger75388ac2007-09-25 16:46:54 -07001079 err = -ENOMEM;
1080 goto out_unmap_hdr;
1081 }
1082
1083 memcpy(skb_put(bounce_skb, skb->len), skb->data, skb->len);
Larry Fingerd2d8cda2009-10-30 11:58:21 -05001084 memcpy(bounce_skb->cb, skb->cb, sizeof(skb->cb));
1085 bounce_skb->dev = skb->dev;
1086 skb_set_queue_mapping(bounce_skb, skb_get_queue_mapping(skb));
1087 info = IEEE80211_SKB_CB(bounce_skb);
1088
Larry Finger75388ac2007-09-25 16:46:54 -07001089 dev_kfree_skb_any(skb);
1090 skb = bounce_skb;
Larry Fingerd2d8cda2009-10-30 11:58:21 -05001091 *in_skb = bounce_skb;
Larry Finger75388ac2007-09-25 16:46:54 -07001092 meta->skb = skb;
1093 meta->dmaaddr = map_descbuffer(ring, skb->data, skb->len, 1);
Stefano Briviodc4ae1f2008-04-14 00:59:49 +02001094 if (b43legacy_dma_mapping_error(ring, meta->dmaaddr, skb->len, 1)) {
Stefano Brivio8dd01002008-02-02 19:16:03 +01001095 ring->current_slot = old_top_slot;
1096 ring->used_slots = old_used_slots;
Larry Finger75388ac2007-09-25 16:46:54 -07001097 err = -EIO;
1098 goto out_free_bounce;
1099 }
1100 }
1101
Pavel Roskin191d6a82011-07-25 17:40:22 -04001102 op32_fill_descriptor(ring, desc, meta->dmaaddr,
Larry Finger75388ac2007-09-25 16:46:54 -07001103 skb->len, 0, 1, 1);
1104
1105 wmb(); /* previous stuff MUST be done */
1106 /* Now transfer the whole frame. */
Pavel Roskin191d6a82011-07-25 17:40:22 -04001107 op32_poke_tx(ring, next_slot(ring, slot));
Larry Finger75388ac2007-09-25 16:46:54 -07001108 return 0;
1109
1110out_free_bounce:
1111 dev_kfree_skb_any(skb);
1112out_unmap_hdr:
1113 unmap_descbuffer(ring, meta_hdr->dmaaddr,
1114 sizeof(struct b43legacy_txhdr_fw3), 1);
1115 return err;
1116}
1117
1118static inline
1119int should_inject_overflow(struct b43legacy_dmaring *ring)
1120{
1121#ifdef CONFIG_B43LEGACY_DEBUG
1122 if (unlikely(b43legacy_debug(ring->dev,
1123 B43legacy_DBG_DMAOVERFLOW))) {
1124 /* Check if we should inject another ringbuffer overflow
1125 * to test handling of this situation in the stack. */
1126 unsigned long next_overflow;
1127
1128 next_overflow = ring->last_injected_overflow + HZ;
1129 if (time_after(jiffies, next_overflow)) {
1130 ring->last_injected_overflow = jiffies;
1131 b43legacydbg(ring->dev->wl,
1132 "Injecting TX ring overflow on "
1133 "DMA controller %d\n", ring->index);
1134 return 1;
1135 }
1136 }
1137#endif /* CONFIG_B43LEGACY_DEBUG */
1138 return 0;
1139}
1140
1141int b43legacy_dma_tx(struct b43legacy_wldev *dev,
Johannes Berge039fa42008-05-15 12:55:29 +02001142 struct sk_buff *skb)
Larry Finger75388ac2007-09-25 16:46:54 -07001143{
1144 struct b43legacy_dmaring *ring;
1145 int err = 0;
Larry Finger75388ac2007-09-25 16:46:54 -07001146
Johannes Berge2530082008-05-17 00:57:14 +02001147 ring = priority_to_txring(dev, skb_get_queue_mapping(skb));
Larry Finger75388ac2007-09-25 16:46:54 -07001148 B43legacy_WARN_ON(!ring->tx);
Larry Fingerc1be5152009-08-01 22:32:48 -05001149
1150 if (unlikely(ring->stopped)) {
1151 /* We get here only because of a bug in mac80211.
1152 * Because of a race, one packet may be queued after
1153 * the queue is stopped, thus we got called when we shouldn't.
1154 * For now, just refuse the transmit. */
1155 if (b43legacy_debug(dev, B43legacy_DBG_DMAVERBOSE))
1156 b43legacyerr(dev->wl, "Packet after queue stopped\n");
Larry Finger5d07a3d2011-12-21 18:47:59 -06001157 return -ENOSPC;
Larry Finger75388ac2007-09-25 16:46:54 -07001158 }
Larry Fingerc1be5152009-08-01 22:32:48 -05001159
1160 if (unlikely(WARN_ON(free_slots(ring) < SLOTS_PER_PACKET))) {
1161 /* If we get here, we have a real error with the queue
1162 * full, but queues not stopped. */
1163 b43legacyerr(dev->wl, "DMA queue overflow\n");
Larry Finger5d07a3d2011-12-21 18:47:59 -06001164 return -ENOSPC;
Larry Fingerc1be5152009-08-01 22:32:48 -05001165 }
Larry Finger75388ac2007-09-25 16:46:54 -07001166
Larry Fingerd2d8cda2009-10-30 11:58:21 -05001167 /* dma_tx_fragment might reallocate the skb, so invalidate pointers pointing
1168 * into the skb data or cb now. */
Larry Fingerd2d8cda2009-10-30 11:58:21 -05001169 err = dma_tx_fragment(ring, &skb);
Stefano Brivio9eca9a82008-02-02 19:16:01 +01001170 if (unlikely(err == -ENOKEY)) {
1171 /* Drop this packet, as we don't have the encryption key
1172 * anymore and must not transmit it unencrypted. */
1173 dev_kfree_skb_any(skb);
Larry Finger5d07a3d2011-12-21 18:47:59 -06001174 return 0;
Stefano Brivio9eca9a82008-02-02 19:16:01 +01001175 }
Larry Finger75388ac2007-09-25 16:46:54 -07001176 if (unlikely(err)) {
1177 b43legacyerr(dev->wl, "DMA tx mapping failure\n");
Larry Finger5d07a3d2011-12-21 18:47:59 -06001178 return err;
Larry Finger75388ac2007-09-25 16:46:54 -07001179 }
Larry Finger75388ac2007-09-25 16:46:54 -07001180 if ((free_slots(ring) < SLOTS_PER_PACKET) ||
1181 should_inject_overflow(ring)) {
1182 /* This TX ring is full. */
Larry Finger5d07a3d2011-12-21 18:47:59 -06001183 unsigned int skb_mapping = skb_get_queue_mapping(skb);
1184 ieee80211_stop_queue(dev->wl->hw, skb_mapping);
1185 dev->wl->tx_queue_stopped[skb_mapping] = 1;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001186 ring->stopped = true;
Larry Finger75388ac2007-09-25 16:46:54 -07001187 if (b43legacy_debug(dev, B43legacy_DBG_DMAVERBOSE))
1188 b43legacydbg(dev->wl, "Stopped TX ring %d\n",
1189 ring->index);
1190 }
Larry Finger75388ac2007-09-25 16:46:54 -07001191 return err;
1192}
1193
1194void b43legacy_dma_handle_txstatus(struct b43legacy_wldev *dev,
1195 const struct b43legacy_txstatus *status)
1196{
Larry Finger75388ac2007-09-25 16:46:54 -07001197 struct b43legacy_dmaring *ring;
Larry Finger75388ac2007-09-25 16:46:54 -07001198 struct b43legacy_dmadesc_meta *meta;
Johannes Berge6a98542008-10-21 12:40:02 +02001199 int retry_limit;
Larry Finger75388ac2007-09-25 16:46:54 -07001200 int slot;
Larry Finger5d07a3d2011-12-21 18:47:59 -06001201 int firstused;
Larry Finger75388ac2007-09-25 16:46:54 -07001202
1203 ring = parse_cookie(dev, status->cookie, &slot);
1204 if (unlikely(!ring))
1205 return;
Larry Finger75388ac2007-09-25 16:46:54 -07001206 B43legacy_WARN_ON(!ring->tx);
Larry Finger5d07a3d2011-12-21 18:47:59 -06001207
1208 /* Sanity check: TX packets are processed in-order on one ring.
1209 * Check if the slot deduced from the cookie really is the first
1210 * used slot. */
1211 firstused = ring->current_slot - ring->used_slots + 1;
1212 if (firstused < 0)
1213 firstused = ring->nr_slots + firstused;
1214 if (unlikely(slot != firstused)) {
1215 /* This possibly is a firmware bug and will result in
1216 * malfunction, memory leaks and/or stall of DMA functionality.
1217 */
1218 b43legacydbg(dev->wl, "Out of order TX status report on DMA "
1219 "ring %d. Expected %d, but got %d\n",
1220 ring->index, firstused, slot);
1221 return;
1222 }
1223
Larry Finger75388ac2007-09-25 16:46:54 -07001224 while (1) {
1225 B43legacy_WARN_ON(!(slot >= 0 && slot < ring->nr_slots));
Pavel Roskin191d6a82011-07-25 17:40:22 -04001226 op32_idx2desc(ring, slot, &meta);
Larry Finger75388ac2007-09-25 16:46:54 -07001227
1228 if (meta->skb)
1229 unmap_descbuffer(ring, meta->dmaaddr,
1230 meta->skb->len, 1);
1231 else
1232 unmap_descbuffer(ring, meta->dmaaddr,
1233 sizeof(struct b43legacy_txhdr_fw3),
1234 1);
1235
1236 if (meta->is_last_fragment) {
Johannes Berge039fa42008-05-15 12:55:29 +02001237 struct ieee80211_tx_info *info;
1238 BUG_ON(!meta->skb);
1239 info = IEEE80211_SKB_CB(meta->skb);
Johannes Berge6a98542008-10-21 12:40:02 +02001240
1241 /* preserve the confiured retry limit before clearing the status
1242 * The xmit function has overwritten the rc's value with the actual
1243 * retry limit done by the hardware */
1244 retry_limit = info->status.rates[0].count;
1245 ieee80211_tx_info_clear_status(info);
1246
1247 if (status->acked)
1248 info->flags |= IEEE80211_TX_STAT_ACK;
1249
1250 if (status->rts_count > dev->wl->hw->conf.short_frame_max_tx_count) {
1251 /*
1252 * If the short retries (RTS, not data frame) have exceeded
1253 * the limit, the hw will not have tried the selected rate,
1254 * but will have used the fallback rate instead.
1255 * Don't let the rate control count attempts for the selected
1256 * rate in this case, otherwise the statistics will be off.
1257 */
1258 info->status.rates[0].count = 0;
1259 info->status.rates[1].count = status->frame_count;
1260 } else {
1261 if (status->frame_count > retry_limit) {
1262 info->status.rates[0].count = retry_limit;
1263 info->status.rates[1].count = status->frame_count -
1264 retry_limit;
1265
1266 } else {
1267 info->status.rates[0].count = status->frame_count;
1268 info->status.rates[1].idx = -1;
1269 }
1270 }
1271
Larry Finger75388ac2007-09-25 16:46:54 -07001272 /* Call back to inform the ieee80211 subsystem about the
1273 * status of the transmission.
1274 * Some fields of txstat are already filled in dma_tx().
1275 */
Johannes Berge039fa42008-05-15 12:55:29 +02001276 ieee80211_tx_status_irqsafe(dev->wl->hw, meta->skb);
Larry Finger75388ac2007-09-25 16:46:54 -07001277 /* skb is freed by ieee80211_tx_status_irqsafe() */
1278 meta->skb = NULL;
1279 } else {
1280 /* No need to call free_descriptor_buffer here, as
1281 * this is only the txhdr, which is not allocated.
1282 */
1283 B43legacy_WARN_ON(meta->skb != NULL);
1284 }
1285
1286 /* Everything unmapped and free'd. So it's not used anymore. */
1287 ring->used_slots--;
1288
1289 if (meta->is_last_fragment)
1290 break;
1291 slot = next_slot(ring, slot);
1292 }
1293 dev->stats.last_tx = jiffies;
1294 if (ring->stopped) {
1295 B43legacy_WARN_ON(free_slots(ring) < SLOTS_PER_PACKET);
Rusty Russell3db1cd52011-12-19 13:56:45 +00001296 ring->stopped = false;
Larry Finger75388ac2007-09-25 16:46:54 -07001297 }
1298
Larry Finger5d07a3d2011-12-21 18:47:59 -06001299 if (dev->wl->tx_queue_stopped[ring->queue_prio]) {
1300 dev->wl->tx_queue_stopped[ring->queue_prio] = 0;
1301 } else {
1302 /* If the driver queue is running wake the corresponding
1303 * mac80211 queue. */
1304 ieee80211_wake_queue(dev->wl->hw, ring->queue_prio);
1305 if (b43legacy_debug(dev, B43legacy_DBG_DMAVERBOSE))
1306 b43legacydbg(dev->wl, "Woke up TX ring %d\n",
1307 ring->index);
1308 }
1309 /* Add work to the queue. */
1310 ieee80211_queue_work(dev->wl->hw, &dev->wl->tx_work);
Larry Finger75388ac2007-09-25 16:46:54 -07001311}
1312
Larry Finger75388ac2007-09-25 16:46:54 -07001313static void dma_rx(struct b43legacy_dmaring *ring,
1314 int *slot)
1315{
Pavel Roskin191d6a82011-07-25 17:40:22 -04001316 struct b43legacy_dmadesc32 *desc;
Larry Finger75388ac2007-09-25 16:46:54 -07001317 struct b43legacy_dmadesc_meta *meta;
1318 struct b43legacy_rxhdr_fw3 *rxhdr;
1319 struct sk_buff *skb;
1320 u16 len;
1321 int err;
1322 dma_addr_t dmaaddr;
1323
Pavel Roskin191d6a82011-07-25 17:40:22 -04001324 desc = op32_idx2desc(ring, *slot, &meta);
Larry Finger75388ac2007-09-25 16:46:54 -07001325
1326 sync_descbuffer_for_cpu(ring, meta->dmaaddr, ring->rx_buffersize);
1327 skb = meta->skb;
1328
1329 if (ring->index == 3) {
1330 /* We received an xmit status. */
1331 struct b43legacy_hwtxstatus *hw =
1332 (struct b43legacy_hwtxstatus *)skb->data;
1333 int i = 0;
1334
1335 while (hw->cookie == 0) {
1336 if (i > 100)
1337 break;
1338 i++;
1339 udelay(2);
1340 barrier();
1341 }
1342 b43legacy_handle_hwtxstatus(ring->dev, hw);
1343 /* recycle the descriptor buffer. */
1344 sync_descbuffer_for_device(ring, meta->dmaaddr,
1345 ring->rx_buffersize);
1346
1347 return;
1348 }
1349 rxhdr = (struct b43legacy_rxhdr_fw3 *)skb->data;
1350 len = le16_to_cpu(rxhdr->frame_len);
1351 if (len == 0) {
1352 int i = 0;
1353
1354 do {
1355 udelay(2);
1356 barrier();
1357 len = le16_to_cpu(rxhdr->frame_len);
1358 } while (len == 0 && i++ < 5);
1359 if (unlikely(len == 0)) {
1360 /* recycle the descriptor buffer. */
1361 sync_descbuffer_for_device(ring, meta->dmaaddr,
1362 ring->rx_buffersize);
1363 goto drop;
1364 }
1365 }
1366 if (unlikely(len > ring->rx_buffersize)) {
1367 /* The data did not fit into one descriptor buffer
1368 * and is split over multiple buffers.
1369 * This should never happen, as we try to allocate buffers
1370 * big enough. So simply ignore this packet.
1371 */
1372 int cnt = 0;
1373 s32 tmp = len;
1374
1375 while (1) {
Pavel Roskin191d6a82011-07-25 17:40:22 -04001376 desc = op32_idx2desc(ring, *slot, &meta);
Larry Finger75388ac2007-09-25 16:46:54 -07001377 /* recycle the descriptor buffer. */
1378 sync_descbuffer_for_device(ring, meta->dmaaddr,
1379 ring->rx_buffersize);
1380 *slot = next_slot(ring, *slot);
1381 cnt++;
1382 tmp -= ring->rx_buffersize;
1383 if (tmp <= 0)
1384 break;
1385 }
1386 b43legacyerr(ring->dev->wl, "DMA RX buffer too small "
1387 "(len: %u, buffer: %u, nr-dropped: %d)\n",
1388 len, ring->rx_buffersize, cnt);
1389 goto drop;
1390 }
1391
1392 dmaaddr = meta->dmaaddr;
1393 err = setup_rx_descbuffer(ring, desc, meta, GFP_ATOMIC);
1394 if (unlikely(err)) {
1395 b43legacydbg(ring->dev->wl, "DMA RX: setup_rx_descbuffer()"
1396 " failed\n");
1397 sync_descbuffer_for_device(ring, dmaaddr,
1398 ring->rx_buffersize);
1399 goto drop;
1400 }
1401
1402 unmap_descbuffer(ring, dmaaddr, ring->rx_buffersize, 0);
1403 skb_put(skb, len + ring->frameoffset);
1404 skb_pull(skb, ring->frameoffset);
1405
1406 b43legacy_rx(ring->dev, skb, rxhdr);
1407drop:
1408 return;
1409}
1410
1411void b43legacy_dma_rx(struct b43legacy_dmaring *ring)
1412{
Larry Finger75388ac2007-09-25 16:46:54 -07001413 int slot;
1414 int current_slot;
1415 int used_slots = 0;
1416
1417 B43legacy_WARN_ON(ring->tx);
Pavel Roskin191d6a82011-07-25 17:40:22 -04001418 current_slot = op32_get_current_rxslot(ring);
Larry Finger75388ac2007-09-25 16:46:54 -07001419 B43legacy_WARN_ON(!(current_slot >= 0 && current_slot <
1420 ring->nr_slots));
1421
1422 slot = ring->current_slot;
1423 for (; slot != current_slot; slot = next_slot(ring, slot)) {
1424 dma_rx(ring, &slot);
1425 update_max_used_slots(ring, ++used_slots);
1426 }
Pavel Roskin191d6a82011-07-25 17:40:22 -04001427 op32_set_current_rxslot(ring, slot);
Larry Finger75388ac2007-09-25 16:46:54 -07001428 ring->current_slot = slot;
1429}
1430
1431static void b43legacy_dma_tx_suspend_ring(struct b43legacy_dmaring *ring)
1432{
Larry Finger75388ac2007-09-25 16:46:54 -07001433 B43legacy_WARN_ON(!ring->tx);
Pavel Roskin191d6a82011-07-25 17:40:22 -04001434 op32_tx_suspend(ring);
Larry Finger75388ac2007-09-25 16:46:54 -07001435}
1436
1437static void b43legacy_dma_tx_resume_ring(struct b43legacy_dmaring *ring)
1438{
Larry Finger75388ac2007-09-25 16:46:54 -07001439 B43legacy_WARN_ON(!ring->tx);
Pavel Roskin191d6a82011-07-25 17:40:22 -04001440 op32_tx_resume(ring);
Larry Finger75388ac2007-09-25 16:46:54 -07001441}
1442
1443void b43legacy_dma_tx_suspend(struct b43legacy_wldev *dev)
1444{
1445 b43legacy_power_saving_ctl_bits(dev, -1, 1);
1446 b43legacy_dma_tx_suspend_ring(dev->dma.tx_ring0);
1447 b43legacy_dma_tx_suspend_ring(dev->dma.tx_ring1);
1448 b43legacy_dma_tx_suspend_ring(dev->dma.tx_ring2);
1449 b43legacy_dma_tx_suspend_ring(dev->dma.tx_ring3);
1450 b43legacy_dma_tx_suspend_ring(dev->dma.tx_ring4);
1451 b43legacy_dma_tx_suspend_ring(dev->dma.tx_ring5);
1452}
1453
1454void b43legacy_dma_tx_resume(struct b43legacy_wldev *dev)
1455{
1456 b43legacy_dma_tx_resume_ring(dev->dma.tx_ring5);
1457 b43legacy_dma_tx_resume_ring(dev->dma.tx_ring4);
1458 b43legacy_dma_tx_resume_ring(dev->dma.tx_ring3);
1459 b43legacy_dma_tx_resume_ring(dev->dma.tx_ring2);
1460 b43legacy_dma_tx_resume_ring(dev->dma.tx_ring1);
1461 b43legacy_dma_tx_resume_ring(dev->dma.tx_ring0);
1462 b43legacy_power_saving_ctl_bits(dev, -1, -1);
1463}