Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1 | /* |
| 2 | |
| 3 | Broadcom B43 wireless driver |
| 4 | |
| 5 | DMA ringbuffer and descriptor allocation/management |
| 6 | |
| 7 | Copyright (c) 2005, 2006 Michael Buesch <mb@bu3sch.de> |
| 8 | |
| 9 | Some code in this file is derived from the b44.c driver |
| 10 | Copyright (C) 2002 David S. Miller |
| 11 | Copyright (C) Pekka Pietikainen |
| 12 | |
| 13 | This program is free software; you can redistribute it and/or modify |
| 14 | it under the terms of the GNU General Public License as published by |
| 15 | the Free Software Foundation; either version 2 of the License, or |
| 16 | (at your option) any later version. |
| 17 | |
| 18 | This program is distributed in the hope that it will be useful, |
| 19 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 21 | GNU General Public License for more details. |
| 22 | |
| 23 | You should have received a copy of the GNU General Public License |
| 24 | along with this program; see the file COPYING. If not, write to |
| 25 | the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, |
| 26 | Boston, MA 02110-1301, USA. |
| 27 | |
| 28 | */ |
| 29 | |
| 30 | #include "b43.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> |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 40 | #include <linux/etherdevice.h> |
Michael Buesch | 57df40d | 2008-03-07 15:50:02 +0100 | [diff] [blame] | 41 | #include <asm/div64.h> |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 42 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 43 | |
Michael Buesch | bdceeb2 | 2009-02-19 23:45:43 +0100 | [diff] [blame] | 44 | /* Required number of TX DMA slots per TX frame. |
| 45 | * This currently is 2, because we put the header and the ieee80211 frame |
| 46 | * into separate slots. */ |
| 47 | #define TX_SLOTS_PER_FRAME 2 |
| 48 | |
| 49 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 50 | /* 32bit DMA ops. */ |
| 51 | static |
| 52 | struct b43_dmadesc_generic *op32_idx2desc(struct b43_dmaring *ring, |
| 53 | int slot, |
| 54 | struct b43_dmadesc_meta **meta) |
| 55 | { |
| 56 | struct b43_dmadesc32 *desc; |
| 57 | |
| 58 | *meta = &(ring->meta[slot]); |
| 59 | desc = ring->descbase; |
| 60 | desc = &(desc[slot]); |
| 61 | |
| 62 | return (struct b43_dmadesc_generic *)desc; |
| 63 | } |
| 64 | |
| 65 | static void op32_fill_descriptor(struct b43_dmaring *ring, |
| 66 | struct b43_dmadesc_generic *desc, |
| 67 | dma_addr_t dmaaddr, u16 bufsize, |
| 68 | int start, int end, int irq) |
| 69 | { |
| 70 | struct b43_dmadesc32 *descbase = ring->descbase; |
| 71 | int slot; |
| 72 | u32 ctl; |
| 73 | u32 addr; |
| 74 | u32 addrext; |
| 75 | |
| 76 | slot = (int)(&(desc->dma32) - descbase); |
| 77 | B43_WARN_ON(!(slot >= 0 && slot < ring->nr_slots)); |
| 78 | |
| 79 | addr = (u32) (dmaaddr & ~SSB_DMA_TRANSLATION_MASK); |
| 80 | addrext = (u32) (dmaaddr & SSB_DMA_TRANSLATION_MASK) |
| 81 | >> SSB_DMA_TRANSLATION_SHIFT; |
| 82 | addr |= ssb_dma_translation(ring->dev->dev); |
Michael Buesch | 8eccb53 | 2009-02-19 23:39:26 +0100 | [diff] [blame] | 83 | ctl = bufsize & B43_DMA32_DCTL_BYTECNT; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 84 | if (slot == ring->nr_slots - 1) |
| 85 | ctl |= B43_DMA32_DCTL_DTABLEEND; |
| 86 | if (start) |
| 87 | ctl |= B43_DMA32_DCTL_FRAMESTART; |
| 88 | if (end) |
| 89 | ctl |= B43_DMA32_DCTL_FRAMEEND; |
| 90 | if (irq) |
| 91 | ctl |= B43_DMA32_DCTL_IRQ; |
| 92 | ctl |= (addrext << B43_DMA32_DCTL_ADDREXT_SHIFT) |
| 93 | & B43_DMA32_DCTL_ADDREXT_MASK; |
| 94 | |
| 95 | desc->dma32.control = cpu_to_le32(ctl); |
| 96 | desc->dma32.address = cpu_to_le32(addr); |
| 97 | } |
| 98 | |
| 99 | static void op32_poke_tx(struct b43_dmaring *ring, int slot) |
| 100 | { |
| 101 | b43_dma_write(ring, B43_DMA32_TXINDEX, |
| 102 | (u32) (slot * sizeof(struct b43_dmadesc32))); |
| 103 | } |
| 104 | |
| 105 | static void op32_tx_suspend(struct b43_dmaring *ring) |
| 106 | { |
| 107 | b43_dma_write(ring, B43_DMA32_TXCTL, b43_dma_read(ring, B43_DMA32_TXCTL) |
| 108 | | B43_DMA32_TXSUSPEND); |
| 109 | } |
| 110 | |
| 111 | static void op32_tx_resume(struct b43_dmaring *ring) |
| 112 | { |
| 113 | b43_dma_write(ring, B43_DMA32_TXCTL, b43_dma_read(ring, B43_DMA32_TXCTL) |
| 114 | & ~B43_DMA32_TXSUSPEND); |
| 115 | } |
| 116 | |
| 117 | static int op32_get_current_rxslot(struct b43_dmaring *ring) |
| 118 | { |
| 119 | u32 val; |
| 120 | |
| 121 | val = b43_dma_read(ring, B43_DMA32_RXSTATUS); |
| 122 | val &= B43_DMA32_RXDPTR; |
| 123 | |
| 124 | return (val / sizeof(struct b43_dmadesc32)); |
| 125 | } |
| 126 | |
| 127 | static void op32_set_current_rxslot(struct b43_dmaring *ring, int slot) |
| 128 | { |
| 129 | b43_dma_write(ring, B43_DMA32_RXINDEX, |
| 130 | (u32) (slot * sizeof(struct b43_dmadesc32))); |
| 131 | } |
| 132 | |
| 133 | static const struct b43_dma_ops dma32_ops = { |
| 134 | .idx2desc = op32_idx2desc, |
| 135 | .fill_descriptor = op32_fill_descriptor, |
| 136 | .poke_tx = op32_poke_tx, |
| 137 | .tx_suspend = op32_tx_suspend, |
| 138 | .tx_resume = op32_tx_resume, |
| 139 | .get_current_rxslot = op32_get_current_rxslot, |
| 140 | .set_current_rxslot = op32_set_current_rxslot, |
| 141 | }; |
| 142 | |
| 143 | /* 64bit DMA ops. */ |
| 144 | static |
| 145 | struct b43_dmadesc_generic *op64_idx2desc(struct b43_dmaring *ring, |
| 146 | int slot, |
| 147 | struct b43_dmadesc_meta **meta) |
| 148 | { |
| 149 | struct b43_dmadesc64 *desc; |
| 150 | |
| 151 | *meta = &(ring->meta[slot]); |
| 152 | desc = ring->descbase; |
| 153 | desc = &(desc[slot]); |
| 154 | |
| 155 | return (struct b43_dmadesc_generic *)desc; |
| 156 | } |
| 157 | |
| 158 | static void op64_fill_descriptor(struct b43_dmaring *ring, |
| 159 | struct b43_dmadesc_generic *desc, |
| 160 | dma_addr_t dmaaddr, u16 bufsize, |
| 161 | int start, int end, int irq) |
| 162 | { |
| 163 | struct b43_dmadesc64 *descbase = ring->descbase; |
| 164 | int slot; |
| 165 | u32 ctl0 = 0, ctl1 = 0; |
| 166 | u32 addrlo, addrhi; |
| 167 | u32 addrext; |
| 168 | |
| 169 | slot = (int)(&(desc->dma64) - descbase); |
| 170 | B43_WARN_ON(!(slot >= 0 && slot < ring->nr_slots)); |
| 171 | |
| 172 | addrlo = (u32) (dmaaddr & 0xFFFFFFFF); |
| 173 | addrhi = (((u64) dmaaddr >> 32) & ~SSB_DMA_TRANSLATION_MASK); |
| 174 | addrext = (((u64) dmaaddr >> 32) & SSB_DMA_TRANSLATION_MASK) |
| 175 | >> SSB_DMA_TRANSLATION_SHIFT; |
Larry Finger | 013978b | 2007-11-26 10:29:47 -0600 | [diff] [blame] | 176 | addrhi |= (ssb_dma_translation(ring->dev->dev) << 1); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 177 | if (slot == ring->nr_slots - 1) |
| 178 | ctl0 |= B43_DMA64_DCTL0_DTABLEEND; |
| 179 | if (start) |
| 180 | ctl0 |= B43_DMA64_DCTL0_FRAMESTART; |
| 181 | if (end) |
| 182 | ctl0 |= B43_DMA64_DCTL0_FRAMEEND; |
| 183 | if (irq) |
| 184 | ctl0 |= B43_DMA64_DCTL0_IRQ; |
Michael Buesch | 8eccb53 | 2009-02-19 23:39:26 +0100 | [diff] [blame] | 185 | ctl1 |= bufsize & B43_DMA64_DCTL1_BYTECNT; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 186 | ctl1 |= (addrext << B43_DMA64_DCTL1_ADDREXT_SHIFT) |
| 187 | & B43_DMA64_DCTL1_ADDREXT_MASK; |
| 188 | |
| 189 | desc->dma64.control0 = cpu_to_le32(ctl0); |
| 190 | desc->dma64.control1 = cpu_to_le32(ctl1); |
| 191 | desc->dma64.address_low = cpu_to_le32(addrlo); |
| 192 | desc->dma64.address_high = cpu_to_le32(addrhi); |
| 193 | } |
| 194 | |
| 195 | static void op64_poke_tx(struct b43_dmaring *ring, int slot) |
| 196 | { |
| 197 | b43_dma_write(ring, B43_DMA64_TXINDEX, |
| 198 | (u32) (slot * sizeof(struct b43_dmadesc64))); |
| 199 | } |
| 200 | |
| 201 | static void op64_tx_suspend(struct b43_dmaring *ring) |
| 202 | { |
| 203 | b43_dma_write(ring, B43_DMA64_TXCTL, b43_dma_read(ring, B43_DMA64_TXCTL) |
| 204 | | B43_DMA64_TXSUSPEND); |
| 205 | } |
| 206 | |
| 207 | static void op64_tx_resume(struct b43_dmaring *ring) |
| 208 | { |
| 209 | b43_dma_write(ring, B43_DMA64_TXCTL, b43_dma_read(ring, B43_DMA64_TXCTL) |
| 210 | & ~B43_DMA64_TXSUSPEND); |
| 211 | } |
| 212 | |
| 213 | static int op64_get_current_rxslot(struct b43_dmaring *ring) |
| 214 | { |
| 215 | u32 val; |
| 216 | |
| 217 | val = b43_dma_read(ring, B43_DMA64_RXSTATUS); |
| 218 | val &= B43_DMA64_RXSTATDPTR; |
| 219 | |
| 220 | return (val / sizeof(struct b43_dmadesc64)); |
| 221 | } |
| 222 | |
| 223 | static void op64_set_current_rxslot(struct b43_dmaring *ring, int slot) |
| 224 | { |
| 225 | b43_dma_write(ring, B43_DMA64_RXINDEX, |
| 226 | (u32) (slot * sizeof(struct b43_dmadesc64))); |
| 227 | } |
| 228 | |
| 229 | static const struct b43_dma_ops dma64_ops = { |
| 230 | .idx2desc = op64_idx2desc, |
| 231 | .fill_descriptor = op64_fill_descriptor, |
| 232 | .poke_tx = op64_poke_tx, |
| 233 | .tx_suspend = op64_tx_suspend, |
| 234 | .tx_resume = op64_tx_resume, |
| 235 | .get_current_rxslot = op64_get_current_rxslot, |
| 236 | .set_current_rxslot = op64_set_current_rxslot, |
| 237 | }; |
| 238 | |
| 239 | static inline int free_slots(struct b43_dmaring *ring) |
| 240 | { |
| 241 | return (ring->nr_slots - ring->used_slots); |
| 242 | } |
| 243 | |
| 244 | static inline int next_slot(struct b43_dmaring *ring, int slot) |
| 245 | { |
| 246 | B43_WARN_ON(!(slot >= -1 && slot <= ring->nr_slots - 1)); |
| 247 | if (slot == ring->nr_slots - 1) |
| 248 | return 0; |
| 249 | return slot + 1; |
| 250 | } |
| 251 | |
| 252 | static inline int prev_slot(struct b43_dmaring *ring, int slot) |
| 253 | { |
| 254 | B43_WARN_ON(!(slot >= 0 && slot <= ring->nr_slots - 1)); |
| 255 | if (slot == 0) |
| 256 | return ring->nr_slots - 1; |
| 257 | return slot - 1; |
| 258 | } |
| 259 | |
| 260 | #ifdef CONFIG_B43_DEBUG |
| 261 | static void update_max_used_slots(struct b43_dmaring *ring, |
| 262 | int current_used_slots) |
| 263 | { |
| 264 | if (current_used_slots <= ring->max_used_slots) |
| 265 | return; |
| 266 | ring->max_used_slots = current_used_slots; |
| 267 | if (b43_debug(ring->dev, B43_DBG_DMAVERBOSE)) { |
| 268 | b43dbg(ring->dev->wl, |
| 269 | "max_used_slots increased to %d on %s ring %d\n", |
| 270 | ring->max_used_slots, |
| 271 | ring->tx ? "TX" : "RX", ring->index); |
| 272 | } |
| 273 | } |
| 274 | #else |
| 275 | static inline |
| 276 | void update_max_used_slots(struct b43_dmaring *ring, int current_used_slots) |
| 277 | { |
| 278 | } |
| 279 | #endif /* DEBUG */ |
| 280 | |
| 281 | /* Request a slot for usage. */ |
| 282 | static inline int request_slot(struct b43_dmaring *ring) |
| 283 | { |
| 284 | int slot; |
| 285 | |
| 286 | B43_WARN_ON(!ring->tx); |
| 287 | B43_WARN_ON(ring->stopped); |
| 288 | B43_WARN_ON(free_slots(ring) == 0); |
| 289 | |
| 290 | slot = next_slot(ring, ring->current_slot); |
| 291 | ring->current_slot = slot; |
| 292 | ring->used_slots++; |
| 293 | |
| 294 | update_max_used_slots(ring, ring->used_slots); |
| 295 | |
| 296 | return slot; |
| 297 | } |
| 298 | |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 299 | static u16 b43_dmacontroller_base(enum b43_dmatype type, int controller_idx) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 300 | { |
| 301 | static const u16 map64[] = { |
| 302 | B43_MMIO_DMA64_BASE0, |
| 303 | B43_MMIO_DMA64_BASE1, |
| 304 | B43_MMIO_DMA64_BASE2, |
| 305 | B43_MMIO_DMA64_BASE3, |
| 306 | B43_MMIO_DMA64_BASE4, |
| 307 | B43_MMIO_DMA64_BASE5, |
| 308 | }; |
| 309 | static const u16 map32[] = { |
| 310 | B43_MMIO_DMA32_BASE0, |
| 311 | B43_MMIO_DMA32_BASE1, |
| 312 | B43_MMIO_DMA32_BASE2, |
| 313 | B43_MMIO_DMA32_BASE3, |
| 314 | B43_MMIO_DMA32_BASE4, |
| 315 | B43_MMIO_DMA32_BASE5, |
| 316 | }; |
| 317 | |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 318 | if (type == B43_DMA_64BIT) { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 319 | B43_WARN_ON(!(controller_idx >= 0 && |
| 320 | controller_idx < ARRAY_SIZE(map64))); |
| 321 | return map64[controller_idx]; |
| 322 | } |
| 323 | B43_WARN_ON(!(controller_idx >= 0 && |
| 324 | controller_idx < ARRAY_SIZE(map32))); |
| 325 | return map32[controller_idx]; |
| 326 | } |
| 327 | |
| 328 | static inline |
| 329 | dma_addr_t map_descbuffer(struct b43_dmaring *ring, |
| 330 | unsigned char *buf, size_t len, int tx) |
| 331 | { |
| 332 | dma_addr_t dmaaddr; |
| 333 | |
| 334 | if (tx) { |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 335 | dmaaddr = ssb_dma_map_single(ring->dev->dev, |
| 336 | buf, len, DMA_TO_DEVICE); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 337 | } else { |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 338 | dmaaddr = ssb_dma_map_single(ring->dev->dev, |
| 339 | buf, len, DMA_FROM_DEVICE); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | return dmaaddr; |
| 343 | } |
| 344 | |
| 345 | static inline |
| 346 | void unmap_descbuffer(struct b43_dmaring *ring, |
| 347 | dma_addr_t addr, size_t len, int tx) |
| 348 | { |
| 349 | if (tx) { |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 350 | ssb_dma_unmap_single(ring->dev->dev, |
| 351 | addr, len, DMA_TO_DEVICE); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 352 | } else { |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 353 | ssb_dma_unmap_single(ring->dev->dev, |
| 354 | addr, len, DMA_FROM_DEVICE); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 355 | } |
| 356 | } |
| 357 | |
| 358 | static inline |
| 359 | void sync_descbuffer_for_cpu(struct b43_dmaring *ring, |
| 360 | dma_addr_t addr, size_t len) |
| 361 | { |
| 362 | B43_WARN_ON(ring->tx); |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 363 | ssb_dma_sync_single_for_cpu(ring->dev->dev, |
| 364 | addr, len, DMA_FROM_DEVICE); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | static inline |
| 368 | void sync_descbuffer_for_device(struct b43_dmaring *ring, |
| 369 | dma_addr_t addr, size_t len) |
| 370 | { |
| 371 | B43_WARN_ON(ring->tx); |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 372 | ssb_dma_sync_single_for_device(ring->dev->dev, |
| 373 | addr, len, DMA_FROM_DEVICE); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | static inline |
| 377 | void free_descriptor_buffer(struct b43_dmaring *ring, |
| 378 | struct b43_dmadesc_meta *meta) |
| 379 | { |
| 380 | if (meta->skb) { |
| 381 | dev_kfree_skb_any(meta->skb); |
| 382 | meta->skb = NULL; |
| 383 | } |
| 384 | } |
| 385 | |
| 386 | static int alloc_ringmemory(struct b43_dmaring *ring) |
| 387 | { |
Larry Finger | 013978b | 2007-11-26 10:29:47 -0600 | [diff] [blame] | 388 | gfp_t flags = GFP_KERNEL; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 389 | |
Larry Finger | 013978b | 2007-11-26 10:29:47 -0600 | [diff] [blame] | 390 | /* The specs call for 4K buffers for 30- and 32-bit DMA with 4K |
| 391 | * alignment and 8K buffers for 64-bit DMA with 8K alignment. Testing |
| 392 | * has shown that 4K is sufficient for the latter as long as the buffer |
| 393 | * does not cross an 8K boundary. |
| 394 | * |
| 395 | * For unknown reasons - possibly a hardware error - the BCM4311 rev |
| 396 | * 02, which uses 64-bit DMA, needs the ring buffer in very low memory, |
| 397 | * which accounts for the GFP_DMA flag below. |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 398 | * |
| 399 | * The flags here must match the flags in free_ringmemory below! |
Larry Finger | 013978b | 2007-11-26 10:29:47 -0600 | [diff] [blame] | 400 | */ |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 401 | if (ring->type == B43_DMA_64BIT) |
Larry Finger | 013978b | 2007-11-26 10:29:47 -0600 | [diff] [blame] | 402 | flags |= GFP_DMA; |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 403 | ring->descbase = ssb_dma_alloc_consistent(ring->dev->dev, |
| 404 | B43_DMA_RINGMEMSIZE, |
| 405 | &(ring->dmabase), flags); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 406 | if (!ring->descbase) { |
| 407 | b43err(ring->dev->wl, "DMA ringmemory allocation failed\n"); |
| 408 | return -ENOMEM; |
| 409 | } |
| 410 | memset(ring->descbase, 0, B43_DMA_RINGMEMSIZE); |
| 411 | |
| 412 | return 0; |
| 413 | } |
| 414 | |
| 415 | static void free_ringmemory(struct b43_dmaring *ring) |
| 416 | { |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 417 | gfp_t flags = GFP_KERNEL; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 418 | |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 419 | if (ring->type == B43_DMA_64BIT) |
| 420 | flags |= GFP_DMA; |
| 421 | |
| 422 | ssb_dma_free_consistent(ring->dev->dev, B43_DMA_RINGMEMSIZE, |
| 423 | ring->descbase, ring->dmabase, flags); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | /* Reset the RX DMA channel */ |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 427 | static int b43_dmacontroller_rx_reset(struct b43_wldev *dev, u16 mmio_base, |
| 428 | enum b43_dmatype type) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 429 | { |
| 430 | int i; |
| 431 | u32 value; |
| 432 | u16 offset; |
| 433 | |
| 434 | might_sleep(); |
| 435 | |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 436 | offset = (type == B43_DMA_64BIT) ? B43_DMA64_RXCTL : B43_DMA32_RXCTL; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 437 | b43_write32(dev, mmio_base + offset, 0); |
| 438 | for (i = 0; i < 10; i++) { |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 439 | offset = (type == B43_DMA_64BIT) ? B43_DMA64_RXSTATUS : |
| 440 | B43_DMA32_RXSTATUS; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 441 | value = b43_read32(dev, mmio_base + offset); |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 442 | if (type == B43_DMA_64BIT) { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 443 | value &= B43_DMA64_RXSTAT; |
| 444 | if (value == B43_DMA64_RXSTAT_DISABLED) { |
| 445 | i = -1; |
| 446 | break; |
| 447 | } |
| 448 | } else { |
| 449 | value &= B43_DMA32_RXSTATE; |
| 450 | if (value == B43_DMA32_RXSTAT_DISABLED) { |
| 451 | i = -1; |
| 452 | break; |
| 453 | } |
| 454 | } |
| 455 | msleep(1); |
| 456 | } |
| 457 | if (i != -1) { |
| 458 | b43err(dev->wl, "DMA RX reset timed out\n"); |
| 459 | return -ENODEV; |
| 460 | } |
| 461 | |
| 462 | return 0; |
| 463 | } |
| 464 | |
Larry Finger | 013978b | 2007-11-26 10:29:47 -0600 | [diff] [blame] | 465 | /* Reset the TX DMA channel */ |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 466 | static int b43_dmacontroller_tx_reset(struct b43_wldev *dev, u16 mmio_base, |
| 467 | enum b43_dmatype type) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 468 | { |
| 469 | int i; |
| 470 | u32 value; |
| 471 | u16 offset; |
| 472 | |
| 473 | might_sleep(); |
| 474 | |
| 475 | for (i = 0; i < 10; i++) { |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 476 | offset = (type == B43_DMA_64BIT) ? B43_DMA64_TXSTATUS : |
| 477 | B43_DMA32_TXSTATUS; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 478 | value = b43_read32(dev, mmio_base + offset); |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 479 | if (type == B43_DMA_64BIT) { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 480 | value &= B43_DMA64_TXSTAT; |
| 481 | if (value == B43_DMA64_TXSTAT_DISABLED || |
| 482 | value == B43_DMA64_TXSTAT_IDLEWAIT || |
| 483 | value == B43_DMA64_TXSTAT_STOPPED) |
| 484 | break; |
| 485 | } else { |
| 486 | value &= B43_DMA32_TXSTATE; |
| 487 | if (value == B43_DMA32_TXSTAT_DISABLED || |
| 488 | value == B43_DMA32_TXSTAT_IDLEWAIT || |
| 489 | value == B43_DMA32_TXSTAT_STOPPED) |
| 490 | break; |
| 491 | } |
| 492 | msleep(1); |
| 493 | } |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 494 | offset = (type == B43_DMA_64BIT) ? B43_DMA64_TXCTL : B43_DMA32_TXCTL; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 495 | b43_write32(dev, mmio_base + offset, 0); |
| 496 | for (i = 0; i < 10; i++) { |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 497 | offset = (type == B43_DMA_64BIT) ? B43_DMA64_TXSTATUS : |
| 498 | B43_DMA32_TXSTATUS; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 499 | value = b43_read32(dev, mmio_base + offset); |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 500 | if (type == B43_DMA_64BIT) { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 501 | value &= B43_DMA64_TXSTAT; |
| 502 | if (value == B43_DMA64_TXSTAT_DISABLED) { |
| 503 | i = -1; |
| 504 | break; |
| 505 | } |
| 506 | } else { |
| 507 | value &= B43_DMA32_TXSTATE; |
| 508 | if (value == B43_DMA32_TXSTAT_DISABLED) { |
| 509 | i = -1; |
| 510 | break; |
| 511 | } |
| 512 | } |
| 513 | msleep(1); |
| 514 | } |
| 515 | if (i != -1) { |
| 516 | b43err(dev->wl, "DMA TX reset timed out\n"); |
| 517 | return -ENODEV; |
| 518 | } |
| 519 | /* ensure the reset is completed. */ |
| 520 | msleep(1); |
| 521 | |
| 522 | return 0; |
| 523 | } |
| 524 | |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 525 | /* Check if a DMA mapping address is invalid. */ |
| 526 | static bool b43_dma_mapping_error(struct b43_dmaring *ring, |
| 527 | dma_addr_t addr, |
Michael Buesch | ffa9256 | 2008-03-22 22:04:45 +0100 | [diff] [blame] | 528 | size_t buffersize, bool dma_to_device) |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 529 | { |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 530 | if (unlikely(ssb_dma_mapping_error(ring->dev->dev, addr))) |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 531 | return 1; |
| 532 | |
| 533 | switch (ring->type) { |
| 534 | case B43_DMA_30BIT: |
| 535 | if ((u64)addr + buffersize > (1ULL << 30)) |
Michael Buesch | ffa9256 | 2008-03-22 22:04:45 +0100 | [diff] [blame] | 536 | goto address_error; |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 537 | break; |
| 538 | case B43_DMA_32BIT: |
| 539 | if ((u64)addr + buffersize > (1ULL << 32)) |
Michael Buesch | ffa9256 | 2008-03-22 22:04:45 +0100 | [diff] [blame] | 540 | goto address_error; |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 541 | break; |
| 542 | case B43_DMA_64BIT: |
| 543 | /* Currently we can't have addresses beyond |
| 544 | * 64bit in the kernel. */ |
| 545 | break; |
| 546 | } |
| 547 | |
| 548 | /* The address is OK. */ |
| 549 | return 0; |
Michael Buesch | ffa9256 | 2008-03-22 22:04:45 +0100 | [diff] [blame] | 550 | |
| 551 | address_error: |
| 552 | /* We can't support this address. Unmap it again. */ |
| 553 | unmap_descbuffer(ring, addr, buffersize, dma_to_device); |
| 554 | |
| 555 | return 1; |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 556 | } |
| 557 | |
Michael Buesch | ec9a1d8 | 2009-03-27 22:51:58 +0100 | [diff] [blame] | 558 | static bool b43_rx_buffer_is_poisoned(struct b43_dmaring *ring, struct sk_buff *skb) |
| 559 | { |
| 560 | unsigned char *f = skb->data + ring->frameoffset; |
| 561 | |
| 562 | return ((f[0] & f[1] & f[2] & f[3] & f[4] & f[5] & f[6] & f[7]) == 0xFF); |
| 563 | } |
| 564 | |
| 565 | static void b43_poison_rx_buffer(struct b43_dmaring *ring, struct sk_buff *skb) |
| 566 | { |
| 567 | struct b43_rxhdr_fw4 *rxhdr; |
| 568 | unsigned char *frame; |
| 569 | |
| 570 | /* This poisons the RX buffer to detect DMA failures. */ |
| 571 | |
| 572 | rxhdr = (struct b43_rxhdr_fw4 *)(skb->data); |
| 573 | rxhdr->frame_len = 0; |
| 574 | |
| 575 | B43_WARN_ON(ring->rx_buffersize < ring->frameoffset + sizeof(struct b43_plcp_hdr6) + 2); |
| 576 | frame = skb->data + ring->frameoffset; |
| 577 | memset(frame, 0xFF, sizeof(struct b43_plcp_hdr6) + 2 /* padding */); |
| 578 | } |
| 579 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 580 | static int setup_rx_descbuffer(struct b43_dmaring *ring, |
| 581 | struct b43_dmadesc_generic *desc, |
| 582 | struct b43_dmadesc_meta *meta, gfp_t gfp_flags) |
| 583 | { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 584 | dma_addr_t dmaaddr; |
| 585 | struct sk_buff *skb; |
| 586 | |
| 587 | B43_WARN_ON(ring->tx); |
| 588 | |
| 589 | skb = __dev_alloc_skb(ring->rx_buffersize, gfp_flags); |
| 590 | if (unlikely(!skb)) |
| 591 | return -ENOMEM; |
Michael Buesch | ec9a1d8 | 2009-03-27 22:51:58 +0100 | [diff] [blame] | 592 | b43_poison_rx_buffer(ring, skb); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 593 | dmaaddr = map_descbuffer(ring, skb->data, ring->rx_buffersize, 0); |
Michael Buesch | ffa9256 | 2008-03-22 22:04:45 +0100 | [diff] [blame] | 594 | if (b43_dma_mapping_error(ring, dmaaddr, ring->rx_buffersize, 0)) { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 595 | /* ugh. try to realloc in zone_dma */ |
| 596 | gfp_flags |= GFP_DMA; |
| 597 | |
| 598 | dev_kfree_skb_any(skb); |
| 599 | |
| 600 | skb = __dev_alloc_skb(ring->rx_buffersize, gfp_flags); |
| 601 | if (unlikely(!skb)) |
| 602 | return -ENOMEM; |
Michael Buesch | ec9a1d8 | 2009-03-27 22:51:58 +0100 | [diff] [blame] | 603 | b43_poison_rx_buffer(ring, skb); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 604 | dmaaddr = map_descbuffer(ring, skb->data, |
| 605 | ring->rx_buffersize, 0); |
Michael Buesch | bdceeb2 | 2009-02-19 23:45:43 +0100 | [diff] [blame] | 606 | if (b43_dma_mapping_error(ring, dmaaddr, ring->rx_buffersize, 0)) { |
| 607 | b43err(ring->dev->wl, "RX DMA buffer allocation failed\n"); |
| 608 | dev_kfree_skb_any(skb); |
| 609 | return -EIO; |
| 610 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 611 | } |
| 612 | |
| 613 | meta->skb = skb; |
| 614 | meta->dmaaddr = dmaaddr; |
| 615 | ring->ops->fill_descriptor(ring, desc, dmaaddr, |
| 616 | ring->rx_buffersize, 0, 0, 0); |
| 617 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 618 | return 0; |
| 619 | } |
| 620 | |
| 621 | /* Allocate the initial descbuffers. |
| 622 | * This is used for an RX ring only. |
| 623 | */ |
| 624 | static int alloc_initial_descbuffers(struct b43_dmaring *ring) |
| 625 | { |
| 626 | int i, err = -ENOMEM; |
| 627 | struct b43_dmadesc_generic *desc; |
| 628 | struct b43_dmadesc_meta *meta; |
| 629 | |
| 630 | for (i = 0; i < ring->nr_slots; i++) { |
| 631 | desc = ring->ops->idx2desc(ring, i, &meta); |
| 632 | |
| 633 | err = setup_rx_descbuffer(ring, desc, meta, GFP_KERNEL); |
| 634 | if (err) { |
| 635 | b43err(ring->dev->wl, |
| 636 | "Failed to allocate initial descbuffers\n"); |
| 637 | goto err_unwind; |
| 638 | } |
| 639 | } |
| 640 | mb(); |
| 641 | ring->used_slots = ring->nr_slots; |
| 642 | err = 0; |
| 643 | out: |
| 644 | return err; |
| 645 | |
| 646 | err_unwind: |
| 647 | for (i--; i >= 0; i--) { |
| 648 | desc = ring->ops->idx2desc(ring, i, &meta); |
| 649 | |
| 650 | unmap_descbuffer(ring, meta->dmaaddr, ring->rx_buffersize, 0); |
| 651 | dev_kfree_skb(meta->skb); |
| 652 | } |
| 653 | goto out; |
| 654 | } |
| 655 | |
| 656 | /* Do initial setup of the DMA controller. |
| 657 | * Reset the controller, write the ring busaddress |
| 658 | * and switch the "enable" bit on. |
| 659 | */ |
| 660 | static int dmacontroller_setup(struct b43_dmaring *ring) |
| 661 | { |
| 662 | int err = 0; |
| 663 | u32 value; |
| 664 | u32 addrext; |
| 665 | u32 trans = ssb_dma_translation(ring->dev->dev); |
| 666 | |
| 667 | if (ring->tx) { |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 668 | if (ring->type == B43_DMA_64BIT) { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 669 | u64 ringbase = (u64) (ring->dmabase); |
| 670 | |
| 671 | addrext = ((ringbase >> 32) & SSB_DMA_TRANSLATION_MASK) |
| 672 | >> SSB_DMA_TRANSLATION_SHIFT; |
| 673 | value = B43_DMA64_TXENABLE; |
| 674 | value |= (addrext << B43_DMA64_TXADDREXT_SHIFT) |
| 675 | & B43_DMA64_TXADDREXT_MASK; |
| 676 | b43_dma_write(ring, B43_DMA64_TXCTL, value); |
| 677 | b43_dma_write(ring, B43_DMA64_TXRINGLO, |
| 678 | (ringbase & 0xFFFFFFFF)); |
| 679 | b43_dma_write(ring, B43_DMA64_TXRINGHI, |
| 680 | ((ringbase >> 32) & |
| 681 | ~SSB_DMA_TRANSLATION_MASK) |
Larry Finger | 013978b | 2007-11-26 10:29:47 -0600 | [diff] [blame] | 682 | | (trans << 1)); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 683 | } else { |
| 684 | u32 ringbase = (u32) (ring->dmabase); |
| 685 | |
| 686 | addrext = (ringbase & SSB_DMA_TRANSLATION_MASK) |
| 687 | >> SSB_DMA_TRANSLATION_SHIFT; |
| 688 | value = B43_DMA32_TXENABLE; |
| 689 | value |= (addrext << B43_DMA32_TXADDREXT_SHIFT) |
| 690 | & B43_DMA32_TXADDREXT_MASK; |
| 691 | b43_dma_write(ring, B43_DMA32_TXCTL, value); |
| 692 | b43_dma_write(ring, B43_DMA32_TXRING, |
| 693 | (ringbase & ~SSB_DMA_TRANSLATION_MASK) |
| 694 | | trans); |
| 695 | } |
| 696 | } else { |
| 697 | err = alloc_initial_descbuffers(ring); |
| 698 | if (err) |
| 699 | goto out; |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 700 | if (ring->type == B43_DMA_64BIT) { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 701 | u64 ringbase = (u64) (ring->dmabase); |
| 702 | |
| 703 | addrext = ((ringbase >> 32) & SSB_DMA_TRANSLATION_MASK) |
| 704 | >> SSB_DMA_TRANSLATION_SHIFT; |
| 705 | value = (ring->frameoffset << B43_DMA64_RXFROFF_SHIFT); |
| 706 | value |= B43_DMA64_RXENABLE; |
| 707 | value |= (addrext << B43_DMA64_RXADDREXT_SHIFT) |
| 708 | & B43_DMA64_RXADDREXT_MASK; |
| 709 | b43_dma_write(ring, B43_DMA64_RXCTL, value); |
| 710 | b43_dma_write(ring, B43_DMA64_RXRINGLO, |
| 711 | (ringbase & 0xFFFFFFFF)); |
| 712 | b43_dma_write(ring, B43_DMA64_RXRINGHI, |
| 713 | ((ringbase >> 32) & |
| 714 | ~SSB_DMA_TRANSLATION_MASK) |
Larry Finger | 013978b | 2007-11-26 10:29:47 -0600 | [diff] [blame] | 715 | | (trans << 1)); |
| 716 | b43_dma_write(ring, B43_DMA64_RXINDEX, ring->nr_slots * |
| 717 | sizeof(struct b43_dmadesc64)); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 718 | } else { |
| 719 | u32 ringbase = (u32) (ring->dmabase); |
| 720 | |
| 721 | addrext = (ringbase & SSB_DMA_TRANSLATION_MASK) |
| 722 | >> SSB_DMA_TRANSLATION_SHIFT; |
| 723 | value = (ring->frameoffset << B43_DMA32_RXFROFF_SHIFT); |
| 724 | value |= B43_DMA32_RXENABLE; |
| 725 | value |= (addrext << B43_DMA32_RXADDREXT_SHIFT) |
| 726 | & B43_DMA32_RXADDREXT_MASK; |
| 727 | b43_dma_write(ring, B43_DMA32_RXCTL, value); |
| 728 | b43_dma_write(ring, B43_DMA32_RXRING, |
| 729 | (ringbase & ~SSB_DMA_TRANSLATION_MASK) |
| 730 | | trans); |
Larry Finger | 013978b | 2007-11-26 10:29:47 -0600 | [diff] [blame] | 731 | b43_dma_write(ring, B43_DMA32_RXINDEX, ring->nr_slots * |
| 732 | sizeof(struct b43_dmadesc32)); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 733 | } |
| 734 | } |
| 735 | |
Larry Finger | 013978b | 2007-11-26 10:29:47 -0600 | [diff] [blame] | 736 | out: |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 737 | return err; |
| 738 | } |
| 739 | |
| 740 | /* Shutdown the DMA controller. */ |
| 741 | static void dmacontroller_cleanup(struct b43_dmaring *ring) |
| 742 | { |
| 743 | if (ring->tx) { |
| 744 | b43_dmacontroller_tx_reset(ring->dev, ring->mmio_base, |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 745 | ring->type); |
| 746 | if (ring->type == B43_DMA_64BIT) { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 747 | b43_dma_write(ring, B43_DMA64_TXRINGLO, 0); |
| 748 | b43_dma_write(ring, B43_DMA64_TXRINGHI, 0); |
| 749 | } else |
| 750 | b43_dma_write(ring, B43_DMA32_TXRING, 0); |
| 751 | } else { |
| 752 | b43_dmacontroller_rx_reset(ring->dev, ring->mmio_base, |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 753 | ring->type); |
| 754 | if (ring->type == B43_DMA_64BIT) { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 755 | b43_dma_write(ring, B43_DMA64_RXRINGLO, 0); |
| 756 | b43_dma_write(ring, B43_DMA64_RXRINGHI, 0); |
| 757 | } else |
| 758 | b43_dma_write(ring, B43_DMA32_RXRING, 0); |
| 759 | } |
| 760 | } |
| 761 | |
| 762 | static void free_all_descbuffers(struct b43_dmaring *ring) |
| 763 | { |
| 764 | struct b43_dmadesc_generic *desc; |
| 765 | struct b43_dmadesc_meta *meta; |
| 766 | int i; |
| 767 | |
| 768 | if (!ring->used_slots) |
| 769 | return; |
| 770 | for (i = 0; i < ring->nr_slots; i++) { |
| 771 | desc = ring->ops->idx2desc(ring, i, &meta); |
| 772 | |
| 773 | if (!meta->skb) { |
| 774 | B43_WARN_ON(!ring->tx); |
| 775 | continue; |
| 776 | } |
| 777 | if (ring->tx) { |
| 778 | unmap_descbuffer(ring, meta->dmaaddr, |
| 779 | meta->skb->len, 1); |
| 780 | } else { |
| 781 | unmap_descbuffer(ring, meta->dmaaddr, |
| 782 | ring->rx_buffersize, 0); |
| 783 | } |
| 784 | free_descriptor_buffer(ring, meta); |
| 785 | } |
| 786 | } |
| 787 | |
| 788 | static u64 supported_dma_mask(struct b43_wldev *dev) |
| 789 | { |
| 790 | u32 tmp; |
| 791 | u16 mmio_base; |
| 792 | |
| 793 | tmp = b43_read32(dev, SSB_TMSHIGH); |
| 794 | if (tmp & SSB_TMSHIGH_DMA64) |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 795 | return DMA_BIT_MASK(64); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 796 | mmio_base = b43_dmacontroller_base(0, 0); |
| 797 | b43_write32(dev, mmio_base + B43_DMA32_TXCTL, B43_DMA32_TXADDREXT_MASK); |
| 798 | tmp = b43_read32(dev, mmio_base + B43_DMA32_TXCTL); |
| 799 | if (tmp & B43_DMA32_TXADDREXT_MASK) |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 800 | return DMA_BIT_MASK(32); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 801 | |
Yang Hongyang | 28b7679 | 2009-04-06 19:01:17 -0700 | [diff] [blame] | 802 | return DMA_BIT_MASK(30); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 803 | } |
| 804 | |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 805 | static enum b43_dmatype dma_mask_to_engine_type(u64 dmamask) |
| 806 | { |
Yang Hongyang | 28b7679 | 2009-04-06 19:01:17 -0700 | [diff] [blame] | 807 | if (dmamask == DMA_BIT_MASK(30)) |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 808 | return B43_DMA_30BIT; |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 809 | if (dmamask == DMA_BIT_MASK(32)) |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 810 | return B43_DMA_32BIT; |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 811 | if (dmamask == DMA_BIT_MASK(64)) |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 812 | return B43_DMA_64BIT; |
| 813 | B43_WARN_ON(1); |
| 814 | return B43_DMA_30BIT; |
| 815 | } |
| 816 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 817 | /* Main initialization function. */ |
| 818 | static |
| 819 | struct b43_dmaring *b43_setup_dmaring(struct b43_wldev *dev, |
| 820 | int controller_index, |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 821 | int for_tx, |
| 822 | enum b43_dmatype type) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 823 | { |
| 824 | struct b43_dmaring *ring; |
| 825 | int err; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 826 | dma_addr_t dma_test; |
| 827 | |
| 828 | ring = kzalloc(sizeof(*ring), GFP_KERNEL); |
| 829 | if (!ring) |
| 830 | goto out; |
| 831 | |
Michael Buesch | 028118a | 2008-06-12 11:58:56 +0200 | [diff] [blame] | 832 | ring->nr_slots = B43_RXRING_SLOTS; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 833 | if (for_tx) |
Michael Buesch | 028118a | 2008-06-12 11:58:56 +0200 | [diff] [blame] | 834 | ring->nr_slots = B43_TXRING_SLOTS; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 835 | |
Michael Buesch | 028118a | 2008-06-12 11:58:56 +0200 | [diff] [blame] | 836 | ring->meta = kcalloc(ring->nr_slots, sizeof(struct b43_dmadesc_meta), |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 837 | GFP_KERNEL); |
| 838 | if (!ring->meta) |
| 839 | goto err_kfree_ring; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 840 | |
Michael Buesch | 028118a | 2008-06-12 11:58:56 +0200 | [diff] [blame] | 841 | ring->type = type; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 842 | ring->dev = dev; |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 843 | ring->mmio_base = b43_dmacontroller_base(type, controller_index); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 844 | ring->index = controller_index; |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 845 | if (type == B43_DMA_64BIT) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 846 | ring->ops = &dma64_ops; |
| 847 | else |
| 848 | ring->ops = &dma32_ops; |
| 849 | if (for_tx) { |
| 850 | ring->tx = 1; |
| 851 | ring->current_slot = -1; |
| 852 | } else { |
| 853 | if (ring->index == 0) { |
| 854 | ring->rx_buffersize = B43_DMA0_RX_BUFFERSIZE; |
| 855 | ring->frameoffset = B43_DMA0_RX_FRAMEOFFSET; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 856 | } else |
| 857 | B43_WARN_ON(1); |
| 858 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 859 | #ifdef CONFIG_B43_DEBUG |
| 860 | ring->last_injected_overflow = jiffies; |
| 861 | #endif |
| 862 | |
Michael Buesch | 028118a | 2008-06-12 11:58:56 +0200 | [diff] [blame] | 863 | if (for_tx) { |
Michael Buesch | 2d071ca | 2009-02-20 12:24:52 +0100 | [diff] [blame] | 864 | /* Assumption: B43_TXRING_SLOTS can be divided by TX_SLOTS_PER_FRAME */ |
| 865 | BUILD_BUG_ON(B43_TXRING_SLOTS % TX_SLOTS_PER_FRAME != 0); |
| 866 | |
Michael Buesch | bdceeb2 | 2009-02-19 23:45:43 +0100 | [diff] [blame] | 867 | ring->txhdr_cache = kcalloc(ring->nr_slots / TX_SLOTS_PER_FRAME, |
Michael Buesch | 028118a | 2008-06-12 11:58:56 +0200 | [diff] [blame] | 868 | b43_txhdr_size(dev), |
| 869 | GFP_KERNEL); |
| 870 | if (!ring->txhdr_cache) |
| 871 | goto err_kfree_meta; |
| 872 | |
| 873 | /* test for ability to dma to txhdr_cache */ |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 874 | dma_test = ssb_dma_map_single(dev->dev, |
| 875 | ring->txhdr_cache, |
| 876 | b43_txhdr_size(dev), |
| 877 | DMA_TO_DEVICE); |
Michael Buesch | 028118a | 2008-06-12 11:58:56 +0200 | [diff] [blame] | 878 | |
| 879 | if (b43_dma_mapping_error(ring, dma_test, |
| 880 | b43_txhdr_size(dev), 1)) { |
| 881 | /* ugh realloc */ |
| 882 | kfree(ring->txhdr_cache); |
Michael Buesch | bdceeb2 | 2009-02-19 23:45:43 +0100 | [diff] [blame] | 883 | ring->txhdr_cache = kcalloc(ring->nr_slots / TX_SLOTS_PER_FRAME, |
Michael Buesch | 028118a | 2008-06-12 11:58:56 +0200 | [diff] [blame] | 884 | b43_txhdr_size(dev), |
| 885 | GFP_KERNEL | GFP_DMA); |
| 886 | if (!ring->txhdr_cache) |
| 887 | goto err_kfree_meta; |
| 888 | |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 889 | dma_test = ssb_dma_map_single(dev->dev, |
| 890 | ring->txhdr_cache, |
| 891 | b43_txhdr_size(dev), |
| 892 | DMA_TO_DEVICE); |
Michael Buesch | 028118a | 2008-06-12 11:58:56 +0200 | [diff] [blame] | 893 | |
| 894 | if (b43_dma_mapping_error(ring, dma_test, |
| 895 | b43_txhdr_size(dev), 1)) { |
| 896 | |
| 897 | b43err(dev->wl, |
| 898 | "TXHDR DMA allocation failed\n"); |
| 899 | goto err_kfree_txhdr_cache; |
| 900 | } |
| 901 | } |
| 902 | |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 903 | ssb_dma_unmap_single(dev->dev, |
| 904 | dma_test, b43_txhdr_size(dev), |
| 905 | DMA_TO_DEVICE); |
Michael Buesch | 028118a | 2008-06-12 11:58:56 +0200 | [diff] [blame] | 906 | } |
| 907 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 908 | err = alloc_ringmemory(ring); |
| 909 | if (err) |
| 910 | goto err_kfree_txhdr_cache; |
| 911 | err = dmacontroller_setup(ring); |
| 912 | if (err) |
| 913 | goto err_free_ringmemory; |
| 914 | |
| 915 | out: |
| 916 | return ring; |
| 917 | |
| 918 | err_free_ringmemory: |
| 919 | free_ringmemory(ring); |
| 920 | err_kfree_txhdr_cache: |
| 921 | kfree(ring->txhdr_cache); |
| 922 | err_kfree_meta: |
| 923 | kfree(ring->meta); |
| 924 | err_kfree_ring: |
| 925 | kfree(ring); |
| 926 | ring = NULL; |
| 927 | goto out; |
| 928 | } |
| 929 | |
Michael Buesch | 57df40d | 2008-03-07 15:50:02 +0100 | [diff] [blame] | 930 | #define divide(a, b) ({ \ |
| 931 | typeof(a) __a = a; \ |
| 932 | do_div(__a, b); \ |
| 933 | __a; \ |
| 934 | }) |
| 935 | |
| 936 | #define modulo(a, b) ({ \ |
| 937 | typeof(a) __a = a; \ |
| 938 | do_div(__a, b); \ |
| 939 | }) |
| 940 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 941 | /* Main cleanup function. */ |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 942 | static void b43_destroy_dmaring(struct b43_dmaring *ring, |
| 943 | const char *ringname) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 944 | { |
| 945 | if (!ring) |
| 946 | return; |
| 947 | |
Michael Buesch | 57df40d | 2008-03-07 15:50:02 +0100 | [diff] [blame] | 948 | #ifdef CONFIG_B43_DEBUG |
| 949 | { |
| 950 | /* Print some statistics. */ |
| 951 | u64 failed_packets = ring->nr_failed_tx_packets; |
| 952 | u64 succeed_packets = ring->nr_succeed_tx_packets; |
| 953 | u64 nr_packets = failed_packets + succeed_packets; |
| 954 | u64 permille_failed = 0, average_tries = 0; |
| 955 | |
| 956 | if (nr_packets) |
| 957 | permille_failed = divide(failed_packets * 1000, nr_packets); |
| 958 | if (nr_packets) |
| 959 | average_tries = divide(ring->nr_total_packet_tries * 100, nr_packets); |
| 960 | |
| 961 | b43dbg(ring->dev->wl, "DMA-%u %s: " |
| 962 | "Used slots %d/%d, Failed frames %llu/%llu = %llu.%01llu%%, " |
| 963 | "Average tries %llu.%02llu\n", |
| 964 | (unsigned int)(ring->type), ringname, |
| 965 | ring->max_used_slots, |
| 966 | ring->nr_slots, |
| 967 | (unsigned long long)failed_packets, |
Michael Buesch | 87d9611 | 2008-03-07 19:52:24 +0100 | [diff] [blame] | 968 | (unsigned long long)nr_packets, |
Michael Buesch | 57df40d | 2008-03-07 15:50:02 +0100 | [diff] [blame] | 969 | (unsigned long long)divide(permille_failed, 10), |
| 970 | (unsigned long long)modulo(permille_failed, 10), |
| 971 | (unsigned long long)divide(average_tries, 100), |
| 972 | (unsigned long long)modulo(average_tries, 100)); |
| 973 | } |
| 974 | #endif /* DEBUG */ |
| 975 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 976 | /* Device IRQs are disabled prior entering this function, |
| 977 | * so no need to take care of concurrency with rx handler stuff. |
| 978 | */ |
| 979 | dmacontroller_cleanup(ring); |
| 980 | free_all_descbuffers(ring); |
| 981 | free_ringmemory(ring); |
| 982 | |
| 983 | kfree(ring->txhdr_cache); |
| 984 | kfree(ring->meta); |
| 985 | kfree(ring); |
| 986 | } |
| 987 | |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 988 | #define destroy_ring(dma, ring) do { \ |
| 989 | b43_destroy_dmaring((dma)->ring, __stringify(ring)); \ |
| 990 | (dma)->ring = NULL; \ |
| 991 | } while (0) |
| 992 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 993 | void b43_dma_free(struct b43_wldev *dev) |
| 994 | { |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 995 | struct b43_dma *dma; |
| 996 | |
| 997 | if (b43_using_pio_transfers(dev)) |
| 998 | return; |
| 999 | dma = &dev->dma; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1000 | |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1001 | destroy_ring(dma, rx_ring); |
| 1002 | destroy_ring(dma, tx_ring_AC_BK); |
| 1003 | destroy_ring(dma, tx_ring_AC_BE); |
| 1004 | destroy_ring(dma, tx_ring_AC_VI); |
| 1005 | destroy_ring(dma, tx_ring_AC_VO); |
| 1006 | destroy_ring(dma, tx_ring_mcast); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1007 | } |
| 1008 | |
Michael Buesch | 1033b3e | 2008-04-23 19:13:01 +0200 | [diff] [blame] | 1009 | static int b43_dma_set_mask(struct b43_wldev *dev, u64 mask) |
| 1010 | { |
| 1011 | u64 orig_mask = mask; |
| 1012 | bool fallback = 0; |
| 1013 | int err; |
| 1014 | |
| 1015 | /* Try to set the DMA mask. If it fails, try falling back to a |
| 1016 | * lower mask, as we can always also support a lower one. */ |
| 1017 | while (1) { |
| 1018 | err = ssb_dma_set_mask(dev->dev, mask); |
| 1019 | if (!err) |
| 1020 | break; |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1021 | if (mask == DMA_BIT_MASK(64)) { |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 1022 | mask = DMA_BIT_MASK(32); |
Michael Buesch | 1033b3e | 2008-04-23 19:13:01 +0200 | [diff] [blame] | 1023 | fallback = 1; |
| 1024 | continue; |
| 1025 | } |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 1026 | if (mask == DMA_BIT_MASK(32)) { |
Yang Hongyang | 28b7679 | 2009-04-06 19:01:17 -0700 | [diff] [blame] | 1027 | mask = DMA_BIT_MASK(30); |
Michael Buesch | 1033b3e | 2008-04-23 19:13:01 +0200 | [diff] [blame] | 1028 | fallback = 1; |
| 1029 | continue; |
| 1030 | } |
| 1031 | b43err(dev->wl, "The machine/kernel does not support " |
| 1032 | "the required %u-bit DMA mask\n", |
| 1033 | (unsigned int)dma_mask_to_engine_type(orig_mask)); |
| 1034 | return -EOPNOTSUPP; |
| 1035 | } |
| 1036 | if (fallback) { |
| 1037 | b43info(dev->wl, "DMA mask fallback from %u-bit to %u-bit\n", |
| 1038 | (unsigned int)dma_mask_to_engine_type(orig_mask), |
| 1039 | (unsigned int)dma_mask_to_engine_type(mask)); |
| 1040 | } |
| 1041 | |
| 1042 | return 0; |
| 1043 | } |
| 1044 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1045 | int b43_dma_init(struct b43_wldev *dev) |
| 1046 | { |
| 1047 | struct b43_dma *dma = &dev->dma; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1048 | int err; |
| 1049 | u64 dmamask; |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 1050 | enum b43_dmatype type; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1051 | |
| 1052 | dmamask = supported_dma_mask(dev); |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 1053 | type = dma_mask_to_engine_type(dmamask); |
Michael Buesch | 1033b3e | 2008-04-23 19:13:01 +0200 | [diff] [blame] | 1054 | err = b43_dma_set_mask(dev, dmamask); |
| 1055 | if (err) |
| 1056 | return err; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1057 | |
| 1058 | err = -ENOMEM; |
| 1059 | /* setup TX DMA channels. */ |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1060 | dma->tx_ring_AC_BK = b43_setup_dmaring(dev, 0, 1, type); |
| 1061 | if (!dma->tx_ring_AC_BK) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1062 | goto out; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1063 | |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1064 | dma->tx_ring_AC_BE = b43_setup_dmaring(dev, 1, 1, type); |
| 1065 | if (!dma->tx_ring_AC_BE) |
| 1066 | goto err_destroy_bk; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1067 | |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1068 | dma->tx_ring_AC_VI = b43_setup_dmaring(dev, 2, 1, type); |
| 1069 | if (!dma->tx_ring_AC_VI) |
| 1070 | goto err_destroy_be; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1071 | |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1072 | dma->tx_ring_AC_VO = b43_setup_dmaring(dev, 3, 1, type); |
| 1073 | if (!dma->tx_ring_AC_VO) |
| 1074 | goto err_destroy_vi; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1075 | |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1076 | dma->tx_ring_mcast = b43_setup_dmaring(dev, 4, 1, type); |
| 1077 | if (!dma->tx_ring_mcast) |
| 1078 | goto err_destroy_vo; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1079 | |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1080 | /* setup RX DMA channel. */ |
| 1081 | dma->rx_ring = b43_setup_dmaring(dev, 0, 0, type); |
| 1082 | if (!dma->rx_ring) |
| 1083 | goto err_destroy_mcast; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1084 | |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1085 | /* No support for the TX status DMA ring. */ |
| 1086 | B43_WARN_ON(dev->dev->id.revision < 5); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1087 | |
Michael Buesch | b79caa6 | 2008-02-05 12:50:41 +0100 | [diff] [blame] | 1088 | b43dbg(dev->wl, "%u-bit DMA initialized\n", |
| 1089 | (unsigned int)type); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1090 | err = 0; |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1091 | out: |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1092 | return err; |
| 1093 | |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1094 | err_destroy_mcast: |
| 1095 | destroy_ring(dma, tx_ring_mcast); |
| 1096 | err_destroy_vo: |
| 1097 | destroy_ring(dma, tx_ring_AC_VO); |
| 1098 | err_destroy_vi: |
| 1099 | destroy_ring(dma, tx_ring_AC_VI); |
| 1100 | err_destroy_be: |
| 1101 | destroy_ring(dma, tx_ring_AC_BE); |
| 1102 | err_destroy_bk: |
| 1103 | destroy_ring(dma, tx_ring_AC_BK); |
| 1104 | return err; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1105 | } |
| 1106 | |
| 1107 | /* Generate a cookie for the TX header. */ |
| 1108 | static u16 generate_cookie(struct b43_dmaring *ring, int slot) |
| 1109 | { |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1110 | u16 cookie; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1111 | |
| 1112 | /* Use the upper 4 bits of the cookie as |
| 1113 | * DMA controller ID and store the slot number |
| 1114 | * in the lower 12 bits. |
| 1115 | * Note that the cookie must never be 0, as this |
| 1116 | * is a special value used in RX path. |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1117 | * It can also not be 0xFFFF because that is special |
| 1118 | * for multicast frames. |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1119 | */ |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1120 | cookie = (((u16)ring->index + 1) << 12); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1121 | B43_WARN_ON(slot & ~0x0FFF); |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1122 | cookie |= (u16)slot; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1123 | |
| 1124 | return cookie; |
| 1125 | } |
| 1126 | |
| 1127 | /* Inspect a cookie and find out to which controller/slot it belongs. */ |
| 1128 | static |
| 1129 | struct b43_dmaring *parse_cookie(struct b43_wldev *dev, u16 cookie, int *slot) |
| 1130 | { |
| 1131 | struct b43_dma *dma = &dev->dma; |
| 1132 | struct b43_dmaring *ring = NULL; |
| 1133 | |
| 1134 | switch (cookie & 0xF000) { |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1135 | case 0x1000: |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1136 | ring = dma->tx_ring_AC_BK; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1137 | break; |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1138 | case 0x2000: |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1139 | ring = dma->tx_ring_AC_BE; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1140 | break; |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1141 | case 0x3000: |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1142 | ring = dma->tx_ring_AC_VI; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1143 | break; |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1144 | case 0x4000: |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1145 | ring = dma->tx_ring_AC_VO; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1146 | break; |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1147 | case 0x5000: |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1148 | ring = dma->tx_ring_mcast; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1149 | break; |
| 1150 | default: |
| 1151 | B43_WARN_ON(1); |
| 1152 | } |
| 1153 | *slot = (cookie & 0x0FFF); |
| 1154 | B43_WARN_ON(!(ring && *slot >= 0 && *slot < ring->nr_slots)); |
| 1155 | |
| 1156 | return ring; |
| 1157 | } |
| 1158 | |
| 1159 | static int dma_tx_fragment(struct b43_dmaring *ring, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1160 | struct sk_buff *skb) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1161 | { |
| 1162 | const struct b43_dma_ops *ops = ring->ops; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1163 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1164 | u8 *header; |
Michael Buesch | 09552cc | 2008-01-23 21:44:15 +0100 | [diff] [blame] | 1165 | int slot, old_top_slot, old_used_slots; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1166 | int err; |
| 1167 | struct b43_dmadesc_generic *desc; |
| 1168 | struct b43_dmadesc_meta *meta; |
| 1169 | struct b43_dmadesc_meta *meta_hdr; |
| 1170 | struct sk_buff *bounce_skb; |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1171 | u16 cookie; |
Michael Buesch | eb189d8b | 2008-01-28 14:47:41 -0800 | [diff] [blame] | 1172 | size_t hdrsize = b43_txhdr_size(ring->dev); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1173 | |
Michael Buesch | bdceeb2 | 2009-02-19 23:45:43 +0100 | [diff] [blame] | 1174 | /* Important note: If the number of used DMA slots per TX frame |
| 1175 | * is changed here, the TX_SLOTS_PER_FRAME definition at the top of |
| 1176 | * the file has to be updated, too! |
| 1177 | */ |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1178 | |
Michael Buesch | 09552cc | 2008-01-23 21:44:15 +0100 | [diff] [blame] | 1179 | old_top_slot = ring->current_slot; |
| 1180 | old_used_slots = ring->used_slots; |
| 1181 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1182 | /* Get a slot for the header. */ |
| 1183 | slot = request_slot(ring); |
| 1184 | desc = ops->idx2desc(ring, slot, &meta_hdr); |
| 1185 | memset(meta_hdr, 0, sizeof(*meta_hdr)); |
| 1186 | |
Michael Buesch | bdceeb2 | 2009-02-19 23:45:43 +0100 | [diff] [blame] | 1187 | header = &(ring->txhdr_cache[(slot / TX_SLOTS_PER_FRAME) * hdrsize]); |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1188 | cookie = generate_cookie(ring, slot); |
Michael Buesch | 09552cc | 2008-01-23 21:44:15 +0100 | [diff] [blame] | 1189 | err = b43_generate_txhdr(ring->dev, header, |
gregor kowski | 035d024 | 2009-08-19 22:35:45 +0200 | [diff] [blame] | 1190 | skb, info, cookie); |
Michael Buesch | 09552cc | 2008-01-23 21:44:15 +0100 | [diff] [blame] | 1191 | if (unlikely(err)) { |
| 1192 | ring->current_slot = old_top_slot; |
| 1193 | ring->used_slots = old_used_slots; |
| 1194 | return err; |
| 1195 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1196 | |
| 1197 | meta_hdr->dmaaddr = map_descbuffer(ring, (unsigned char *)header, |
Michael Buesch | eb189d8b | 2008-01-28 14:47:41 -0800 | [diff] [blame] | 1198 | hdrsize, 1); |
Michael Buesch | ffa9256 | 2008-03-22 22:04:45 +0100 | [diff] [blame] | 1199 | if (b43_dma_mapping_error(ring, meta_hdr->dmaaddr, hdrsize, 1)) { |
Michael Buesch | 09552cc | 2008-01-23 21:44:15 +0100 | [diff] [blame] | 1200 | ring->current_slot = old_top_slot; |
| 1201 | ring->used_slots = old_used_slots; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1202 | return -EIO; |
Michael Buesch | 09552cc | 2008-01-23 21:44:15 +0100 | [diff] [blame] | 1203 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1204 | ops->fill_descriptor(ring, desc, meta_hdr->dmaaddr, |
Michael Buesch | eb189d8b | 2008-01-28 14:47:41 -0800 | [diff] [blame] | 1205 | hdrsize, 1, 0, 0); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1206 | |
| 1207 | /* Get a slot for the payload. */ |
| 1208 | slot = request_slot(ring); |
| 1209 | desc = ops->idx2desc(ring, slot, &meta); |
| 1210 | memset(meta, 0, sizeof(*meta)); |
| 1211 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1212 | meta->skb = skb; |
| 1213 | meta->is_last_fragment = 1; |
| 1214 | |
| 1215 | meta->dmaaddr = map_descbuffer(ring, skb->data, skb->len, 1); |
| 1216 | /* create a bounce buffer in zone_dma on mapping failure. */ |
Michael Buesch | ffa9256 | 2008-03-22 22:04:45 +0100 | [diff] [blame] | 1217 | if (b43_dma_mapping_error(ring, meta->dmaaddr, skb->len, 1)) { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1218 | bounce_skb = __dev_alloc_skb(skb->len, GFP_ATOMIC | GFP_DMA); |
| 1219 | if (!bounce_skb) { |
Michael Buesch | 09552cc | 2008-01-23 21:44:15 +0100 | [diff] [blame] | 1220 | ring->current_slot = old_top_slot; |
| 1221 | ring->used_slots = old_used_slots; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1222 | err = -ENOMEM; |
| 1223 | goto out_unmap_hdr; |
| 1224 | } |
| 1225 | |
| 1226 | memcpy(skb_put(bounce_skb, skb->len), skb->data, skb->len); |
| 1227 | dev_kfree_skb_any(skb); |
| 1228 | skb = bounce_skb; |
| 1229 | meta->skb = skb; |
| 1230 | meta->dmaaddr = map_descbuffer(ring, skb->data, skb->len, 1); |
Michael Buesch | ffa9256 | 2008-03-22 22:04:45 +0100 | [diff] [blame] | 1231 | if (b43_dma_mapping_error(ring, meta->dmaaddr, skb->len, 1)) { |
Michael Buesch | 09552cc | 2008-01-23 21:44:15 +0100 | [diff] [blame] | 1232 | ring->current_slot = old_top_slot; |
| 1233 | ring->used_slots = old_used_slots; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1234 | err = -EIO; |
| 1235 | goto out_free_bounce; |
| 1236 | } |
| 1237 | } |
| 1238 | |
| 1239 | ops->fill_descriptor(ring, desc, meta->dmaaddr, skb->len, 0, 1, 1); |
| 1240 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1241 | if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) { |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1242 | /* Tell the firmware about the cookie of the last |
| 1243 | * mcast frame, so it can clear the more-data bit in it. */ |
| 1244 | b43_shm_write16(ring->dev, B43_SHM_SHARED, |
| 1245 | B43_SHM_SH_MCASTCOOKIE, cookie); |
| 1246 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1247 | /* Now transfer the whole frame. */ |
| 1248 | wmb(); |
| 1249 | ops->poke_tx(ring, next_slot(ring, slot)); |
| 1250 | return 0; |
| 1251 | |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1252 | out_free_bounce: |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1253 | dev_kfree_skb_any(skb); |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1254 | out_unmap_hdr: |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1255 | unmap_descbuffer(ring, meta_hdr->dmaaddr, |
Michael Buesch | eb189d8b | 2008-01-28 14:47:41 -0800 | [diff] [blame] | 1256 | hdrsize, 1); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1257 | return err; |
| 1258 | } |
| 1259 | |
| 1260 | static inline int should_inject_overflow(struct b43_dmaring *ring) |
| 1261 | { |
| 1262 | #ifdef CONFIG_B43_DEBUG |
| 1263 | if (unlikely(b43_debug(ring->dev, B43_DBG_DMAOVERFLOW))) { |
| 1264 | /* Check if we should inject another ringbuffer overflow |
| 1265 | * to test handling of this situation in the stack. */ |
| 1266 | unsigned long next_overflow; |
| 1267 | |
| 1268 | next_overflow = ring->last_injected_overflow + HZ; |
| 1269 | if (time_after(jiffies, next_overflow)) { |
| 1270 | ring->last_injected_overflow = jiffies; |
| 1271 | b43dbg(ring->dev->wl, |
| 1272 | "Injecting TX ring overflow on " |
| 1273 | "DMA controller %d\n", ring->index); |
| 1274 | return 1; |
| 1275 | } |
| 1276 | } |
| 1277 | #endif /* CONFIG_B43_DEBUG */ |
| 1278 | return 0; |
| 1279 | } |
| 1280 | |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1281 | /* Static mapping of mac80211's queues (priorities) to b43 DMA rings. */ |
John Daiker | 99da185 | 2009-02-24 02:16:42 -0800 | [diff] [blame] | 1282 | static struct b43_dmaring *select_ring_by_priority(struct b43_wldev *dev, |
| 1283 | u8 queue_prio) |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1284 | { |
| 1285 | struct b43_dmaring *ring; |
| 1286 | |
Michael Buesch | 403a3a1 | 2009-06-08 21:04:57 +0200 | [diff] [blame] | 1287 | if (dev->qos_enabled) { |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1288 | /* 0 = highest priority */ |
| 1289 | switch (queue_prio) { |
| 1290 | default: |
| 1291 | B43_WARN_ON(1); |
| 1292 | /* fallthrough */ |
| 1293 | case 0: |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1294 | ring = dev->dma.tx_ring_AC_VO; |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1295 | break; |
| 1296 | case 1: |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1297 | ring = dev->dma.tx_ring_AC_VI; |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1298 | break; |
| 1299 | case 2: |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1300 | ring = dev->dma.tx_ring_AC_BE; |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1301 | break; |
| 1302 | case 3: |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1303 | ring = dev->dma.tx_ring_AC_BK; |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1304 | break; |
| 1305 | } |
| 1306 | } else |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1307 | ring = dev->dma.tx_ring_AC_BE; |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1308 | |
| 1309 | return ring; |
| 1310 | } |
| 1311 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1312 | int b43_dma_tx(struct b43_wldev *dev, struct sk_buff *skb) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1313 | { |
| 1314 | struct b43_dmaring *ring; |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1315 | struct ieee80211_hdr *hdr; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1316 | int err = 0; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1317 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1318 | |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1319 | hdr = (struct ieee80211_hdr *)skb->data; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1320 | if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) { |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1321 | /* The multicast ring will be sent after the DTIM */ |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1322 | ring = dev->dma.tx_ring_mcast; |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1323 | /* Set the more-data bit. Ucode will clear it on |
| 1324 | * the last frame for us. */ |
| 1325 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA); |
| 1326 | } else { |
| 1327 | /* Decide by priority where to put this frame. */ |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 1328 | ring = select_ring_by_priority( |
| 1329 | dev, skb_get_queue_mapping(skb)); |
Michael Buesch | 280d0e1 | 2007-12-26 18:26:17 +0100 | [diff] [blame] | 1330 | } |
| 1331 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1332 | B43_WARN_ON(!ring->tx); |
Michael Buesch | ca2d559 | 2009-02-19 20:17:36 +0100 | [diff] [blame] | 1333 | |
Larry Finger | 18c6951 | 2009-07-29 10:54:06 -0500 | [diff] [blame] | 1334 | if (unlikely(ring->stopped)) { |
| 1335 | /* We get here only because of a bug in mac80211. |
| 1336 | * Because of a race, one packet may be queued after |
| 1337 | * the queue is stopped, thus we got called when we shouldn't. |
| 1338 | * For now, just refuse the transmit. */ |
| 1339 | if (b43_debug(dev, B43_DBG_DMAVERBOSE)) |
| 1340 | b43err(dev->wl, "Packet after queue stopped\n"); |
| 1341 | err = -ENOSPC; |
Michael Buesch | 637dae3 | 2009-09-04 22:55:00 +0200 | [diff] [blame] | 1342 | goto out; |
Larry Finger | 18c6951 | 2009-07-29 10:54:06 -0500 | [diff] [blame] | 1343 | } |
| 1344 | |
| 1345 | if (unlikely(WARN_ON(free_slots(ring) < TX_SLOTS_PER_FRAME))) { |
| 1346 | /* If we get here, we have a real error with the queue |
| 1347 | * full, but queues not stopped. */ |
| 1348 | b43err(dev->wl, "DMA queue overflow\n"); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1349 | err = -ENOSPC; |
Michael Buesch | 637dae3 | 2009-09-04 22:55:00 +0200 | [diff] [blame] | 1350 | goto out; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1351 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1352 | |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1353 | /* Assign the queue number to the ring (if not already done before) |
| 1354 | * so TX status handling can use it. The queue to ring mapping is |
| 1355 | * static, so we don't need to store it per frame. */ |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 1356 | ring->queue_prio = skb_get_queue_mapping(skb); |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1357 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1358 | err = dma_tx_fragment(ring, skb); |
Michael Buesch | 09552cc | 2008-01-23 21:44:15 +0100 | [diff] [blame] | 1359 | if (unlikely(err == -ENOKEY)) { |
| 1360 | /* Drop this packet, as we don't have the encryption key |
| 1361 | * anymore and must not transmit it unencrypted. */ |
| 1362 | dev_kfree_skb_any(skb); |
| 1363 | err = 0; |
Michael Buesch | 637dae3 | 2009-09-04 22:55:00 +0200 | [diff] [blame] | 1364 | goto out; |
Michael Buesch | 09552cc | 2008-01-23 21:44:15 +0100 | [diff] [blame] | 1365 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1366 | if (unlikely(err)) { |
| 1367 | b43err(dev->wl, "DMA tx mapping failure\n"); |
Michael Buesch | 637dae3 | 2009-09-04 22:55:00 +0200 | [diff] [blame] | 1368 | goto out; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1369 | } |
| 1370 | ring->nr_tx_packets++; |
Michael Buesch | bdceeb2 | 2009-02-19 23:45:43 +0100 | [diff] [blame] | 1371 | if ((free_slots(ring) < TX_SLOTS_PER_FRAME) || |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1372 | should_inject_overflow(ring)) { |
| 1373 | /* This TX ring is full. */ |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 1374 | ieee80211_stop_queue(dev->wl->hw, skb_get_queue_mapping(skb)); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1375 | ring->stopped = 1; |
| 1376 | if (b43_debug(dev, B43_DBG_DMAVERBOSE)) { |
| 1377 | b43dbg(dev->wl, "Stopped TX ring %d\n", ring->index); |
| 1378 | } |
| 1379 | } |
Michael Buesch | 637dae3 | 2009-09-04 22:55:00 +0200 | [diff] [blame] | 1380 | out: |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1381 | |
| 1382 | return err; |
| 1383 | } |
| 1384 | |
| 1385 | void b43_dma_handle_txstatus(struct b43_wldev *dev, |
| 1386 | const struct b43_txstatus *status) |
| 1387 | { |
| 1388 | const struct b43_dma_ops *ops; |
| 1389 | struct b43_dmaring *ring; |
| 1390 | struct b43_dmadesc_generic *desc; |
| 1391 | struct b43_dmadesc_meta *meta; |
| 1392 | int slot; |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 1393 | bool frame_succeed; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1394 | |
| 1395 | ring = parse_cookie(dev, status->cookie, &slot); |
| 1396 | if (unlikely(!ring)) |
| 1397 | return; |
Michael Buesch | 7a193a5 | 2008-03-23 01:08:22 +0100 | [diff] [blame] | 1398 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1399 | B43_WARN_ON(!ring->tx); |
| 1400 | ops = ring->ops; |
| 1401 | while (1) { |
| 1402 | B43_WARN_ON(!(slot >= 0 && slot < ring->nr_slots)); |
| 1403 | desc = ops->idx2desc(ring, slot, &meta); |
| 1404 | |
| 1405 | if (meta->skb) |
| 1406 | unmap_descbuffer(ring, meta->dmaaddr, meta->skb->len, |
| 1407 | 1); |
| 1408 | else |
| 1409 | unmap_descbuffer(ring, meta->dmaaddr, |
Michael Buesch | eb189d8b | 2008-01-28 14:47:41 -0800 | [diff] [blame] | 1410 | b43_txhdr_size(dev), 1); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1411 | |
| 1412 | if (meta->is_last_fragment) { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1413 | struct ieee80211_tx_info *info; |
| 1414 | |
| 1415 | BUG_ON(!meta->skb); |
| 1416 | |
| 1417 | info = IEEE80211_SKB_CB(meta->skb); |
| 1418 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1419 | /* |
| 1420 | * Call back to inform the ieee80211 subsystem about |
| 1421 | * the status of the transmission. |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1422 | */ |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 1423 | frame_succeed = b43_fill_txstatus_report(dev, info, status); |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 1424 | #ifdef CONFIG_B43_DEBUG |
| 1425 | if (frame_succeed) |
| 1426 | ring->nr_succeed_tx_packets++; |
| 1427 | else |
| 1428 | ring->nr_failed_tx_packets++; |
| 1429 | ring->nr_total_packet_tries += status->frame_count; |
| 1430 | #endif /* DEBUG */ |
Michael Buesch | ce6c4a1 | 2009-09-10 20:22:02 +0200 | [diff] [blame^] | 1431 | ieee80211_tx_status(dev->wl->hw, meta->skb); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1432 | |
Michael Buesch | ce6c4a1 | 2009-09-10 20:22:02 +0200 | [diff] [blame^] | 1433 | /* skb is freed by ieee80211_tx_status() */ |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1434 | meta->skb = NULL; |
| 1435 | } else { |
| 1436 | /* No need to call free_descriptor_buffer here, as |
| 1437 | * this is only the txhdr, which is not allocated. |
| 1438 | */ |
| 1439 | B43_WARN_ON(meta->skb); |
| 1440 | } |
| 1441 | |
| 1442 | /* Everything unmapped and free'd. So it's not used anymore. */ |
| 1443 | ring->used_slots--; |
| 1444 | |
| 1445 | if (meta->is_last_fragment) |
| 1446 | break; |
| 1447 | slot = next_slot(ring, slot); |
| 1448 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1449 | if (ring->stopped) { |
Michael Buesch | bdceeb2 | 2009-02-19 23:45:43 +0100 | [diff] [blame] | 1450 | B43_WARN_ON(free_slots(ring) < TX_SLOTS_PER_FRAME); |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1451 | ieee80211_wake_queue(dev->wl->hw, ring->queue_prio); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1452 | ring->stopped = 0; |
| 1453 | if (b43_debug(dev, B43_DBG_DMAVERBOSE)) { |
| 1454 | b43dbg(dev->wl, "Woke up TX ring %d\n", ring->index); |
| 1455 | } |
| 1456 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1457 | } |
| 1458 | |
| 1459 | void b43_dma_get_tx_stats(struct b43_wldev *dev, |
| 1460 | struct ieee80211_tx_queue_stats *stats) |
| 1461 | { |
| 1462 | const int nr_queues = dev->wl->hw->queues; |
| 1463 | struct b43_dmaring *ring; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1464 | int i; |
| 1465 | |
| 1466 | for (i = 0; i < nr_queues; i++) { |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 1467 | ring = select_ring_by_priority(dev, i); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1468 | |
Michael Buesch | bdceeb2 | 2009-02-19 23:45:43 +0100 | [diff] [blame] | 1469 | stats[i].len = ring->used_slots / TX_SLOTS_PER_FRAME; |
| 1470 | stats[i].limit = ring->nr_slots / TX_SLOTS_PER_FRAME; |
Johannes Berg | 57ffc58 | 2008-04-29 17:18:59 +0200 | [diff] [blame] | 1471 | stats[i].count = ring->nr_tx_packets; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1472 | } |
| 1473 | } |
| 1474 | |
| 1475 | static void dma_rx(struct b43_dmaring *ring, int *slot) |
| 1476 | { |
| 1477 | const struct b43_dma_ops *ops = ring->ops; |
| 1478 | struct b43_dmadesc_generic *desc; |
| 1479 | struct b43_dmadesc_meta *meta; |
| 1480 | struct b43_rxhdr_fw4 *rxhdr; |
| 1481 | struct sk_buff *skb; |
| 1482 | u16 len; |
| 1483 | int err; |
| 1484 | dma_addr_t dmaaddr; |
| 1485 | |
| 1486 | desc = ops->idx2desc(ring, *slot, &meta); |
| 1487 | |
| 1488 | sync_descbuffer_for_cpu(ring, meta->dmaaddr, ring->rx_buffersize); |
| 1489 | skb = meta->skb; |
| 1490 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1491 | rxhdr = (struct b43_rxhdr_fw4 *)skb->data; |
| 1492 | len = le16_to_cpu(rxhdr->frame_len); |
| 1493 | if (len == 0) { |
| 1494 | int i = 0; |
| 1495 | |
| 1496 | do { |
| 1497 | udelay(2); |
| 1498 | barrier(); |
| 1499 | len = le16_to_cpu(rxhdr->frame_len); |
| 1500 | } while (len == 0 && i++ < 5); |
| 1501 | if (unlikely(len == 0)) { |
Michael Buesch | cf68636 | 2009-03-28 00:41:25 +0100 | [diff] [blame] | 1502 | dmaaddr = meta->dmaaddr; |
| 1503 | goto drop_recycle_buffer; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1504 | } |
| 1505 | } |
Michael Buesch | ec9a1d8 | 2009-03-27 22:51:58 +0100 | [diff] [blame] | 1506 | if (unlikely(b43_rx_buffer_is_poisoned(ring, skb))) { |
| 1507 | /* Something went wrong with the DMA. |
| 1508 | * The device did not touch the buffer and did not overwrite the poison. */ |
| 1509 | b43dbg(ring->dev->wl, "DMA RX: Dropping poisoned buffer.\n"); |
Michael Buesch | cf68636 | 2009-03-28 00:41:25 +0100 | [diff] [blame] | 1510 | dmaaddr = meta->dmaaddr; |
| 1511 | goto drop_recycle_buffer; |
Michael Buesch | ec9a1d8 | 2009-03-27 22:51:58 +0100 | [diff] [blame] | 1512 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1513 | if (unlikely(len > ring->rx_buffersize)) { |
| 1514 | /* The data did not fit into one descriptor buffer |
| 1515 | * and is split over multiple buffers. |
| 1516 | * This should never happen, as we try to allocate buffers |
| 1517 | * big enough. So simply ignore this packet. |
| 1518 | */ |
| 1519 | int cnt = 0; |
| 1520 | s32 tmp = len; |
| 1521 | |
| 1522 | while (1) { |
| 1523 | desc = ops->idx2desc(ring, *slot, &meta); |
| 1524 | /* recycle the descriptor buffer. */ |
Michael Buesch | cf68636 | 2009-03-28 00:41:25 +0100 | [diff] [blame] | 1525 | b43_poison_rx_buffer(ring, meta->skb); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1526 | sync_descbuffer_for_device(ring, meta->dmaaddr, |
| 1527 | ring->rx_buffersize); |
| 1528 | *slot = next_slot(ring, *slot); |
| 1529 | cnt++; |
| 1530 | tmp -= ring->rx_buffersize; |
| 1531 | if (tmp <= 0) |
| 1532 | break; |
| 1533 | } |
| 1534 | b43err(ring->dev->wl, "DMA RX buffer too small " |
| 1535 | "(len: %u, buffer: %u, nr-dropped: %d)\n", |
| 1536 | len, ring->rx_buffersize, cnt); |
| 1537 | goto drop; |
| 1538 | } |
| 1539 | |
| 1540 | dmaaddr = meta->dmaaddr; |
| 1541 | err = setup_rx_descbuffer(ring, desc, meta, GFP_ATOMIC); |
| 1542 | if (unlikely(err)) { |
| 1543 | b43dbg(ring->dev->wl, "DMA RX: setup_rx_descbuffer() failed\n"); |
Michael Buesch | cf68636 | 2009-03-28 00:41:25 +0100 | [diff] [blame] | 1544 | goto drop_recycle_buffer; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1545 | } |
| 1546 | |
| 1547 | unmap_descbuffer(ring, dmaaddr, ring->rx_buffersize, 0); |
| 1548 | skb_put(skb, len + ring->frameoffset); |
| 1549 | skb_pull(skb, ring->frameoffset); |
| 1550 | |
| 1551 | b43_rx(ring->dev, skb, rxhdr); |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1552 | drop: |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1553 | return; |
Michael Buesch | cf68636 | 2009-03-28 00:41:25 +0100 | [diff] [blame] | 1554 | |
| 1555 | drop_recycle_buffer: |
| 1556 | /* Poison and recycle the RX buffer. */ |
| 1557 | b43_poison_rx_buffer(ring, skb); |
| 1558 | sync_descbuffer_for_device(ring, dmaaddr, ring->rx_buffersize); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1559 | } |
| 1560 | |
| 1561 | void b43_dma_rx(struct b43_dmaring *ring) |
| 1562 | { |
| 1563 | const struct b43_dma_ops *ops = ring->ops; |
| 1564 | int slot, current_slot; |
| 1565 | int used_slots = 0; |
| 1566 | |
| 1567 | B43_WARN_ON(ring->tx); |
| 1568 | current_slot = ops->get_current_rxslot(ring); |
| 1569 | B43_WARN_ON(!(current_slot >= 0 && current_slot < ring->nr_slots)); |
| 1570 | |
| 1571 | slot = ring->current_slot; |
| 1572 | for (; slot != current_slot; slot = next_slot(ring, slot)) { |
| 1573 | dma_rx(ring, &slot); |
| 1574 | update_max_used_slots(ring, ++used_slots); |
| 1575 | } |
| 1576 | ops->set_current_rxslot(ring, slot); |
| 1577 | ring->current_slot = slot; |
| 1578 | } |
| 1579 | |
| 1580 | static void b43_dma_tx_suspend_ring(struct b43_dmaring *ring) |
| 1581 | { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1582 | B43_WARN_ON(!ring->tx); |
| 1583 | ring->ops->tx_suspend(ring); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1584 | } |
| 1585 | |
| 1586 | static void b43_dma_tx_resume_ring(struct b43_dmaring *ring) |
| 1587 | { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1588 | B43_WARN_ON(!ring->tx); |
| 1589 | ring->ops->tx_resume(ring); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1590 | } |
| 1591 | |
| 1592 | void b43_dma_tx_suspend(struct b43_wldev *dev) |
| 1593 | { |
| 1594 | b43_power_saving_ctl_bits(dev, B43_PS_AWAKE); |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1595 | b43_dma_tx_suspend_ring(dev->dma.tx_ring_AC_BK); |
| 1596 | b43_dma_tx_suspend_ring(dev->dma.tx_ring_AC_BE); |
| 1597 | b43_dma_tx_suspend_ring(dev->dma.tx_ring_AC_VI); |
| 1598 | b43_dma_tx_suspend_ring(dev->dma.tx_ring_AC_VO); |
| 1599 | b43_dma_tx_suspend_ring(dev->dma.tx_ring_mcast); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1600 | } |
| 1601 | |
| 1602 | void b43_dma_tx_resume(struct b43_wldev *dev) |
| 1603 | { |
Michael Buesch | b27faf8 | 2008-03-06 16:32:46 +0100 | [diff] [blame] | 1604 | b43_dma_tx_resume_ring(dev->dma.tx_ring_mcast); |
| 1605 | b43_dma_tx_resume_ring(dev->dma.tx_ring_AC_VO); |
| 1606 | b43_dma_tx_resume_ring(dev->dma.tx_ring_AC_VI); |
| 1607 | b43_dma_tx_resume_ring(dev->dma.tx_ring_AC_BE); |
| 1608 | b43_dma_tx_resume_ring(dev->dma.tx_ring_AC_BK); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1609 | b43_power_saving_ctl_bits(dev, 0); |
| 1610 | } |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 1611 | |
| 1612 | #ifdef CONFIG_B43_PIO |
| 1613 | static void direct_fifo_rx(struct b43_wldev *dev, enum b43_dmatype type, |
| 1614 | u16 mmio_base, bool enable) |
| 1615 | { |
| 1616 | u32 ctl; |
| 1617 | |
| 1618 | if (type == B43_DMA_64BIT) { |
| 1619 | ctl = b43_read32(dev, mmio_base + B43_DMA64_RXCTL); |
| 1620 | ctl &= ~B43_DMA64_RXDIRECTFIFO; |
| 1621 | if (enable) |
| 1622 | ctl |= B43_DMA64_RXDIRECTFIFO; |
| 1623 | b43_write32(dev, mmio_base + B43_DMA64_RXCTL, ctl); |
| 1624 | } else { |
| 1625 | ctl = b43_read32(dev, mmio_base + B43_DMA32_RXCTL); |
| 1626 | ctl &= ~B43_DMA32_RXDIRECTFIFO; |
| 1627 | if (enable) |
| 1628 | ctl |= B43_DMA32_RXDIRECTFIFO; |
| 1629 | b43_write32(dev, mmio_base + B43_DMA32_RXCTL, ctl); |
| 1630 | } |
| 1631 | } |
| 1632 | |
| 1633 | /* Enable/Disable Direct FIFO Receive Mode (PIO) on a RX engine. |
| 1634 | * This is called from PIO code, so DMA structures are not available. */ |
| 1635 | void b43_dma_direct_fifo_rx(struct b43_wldev *dev, |
| 1636 | unsigned int engine_index, bool enable) |
| 1637 | { |
| 1638 | enum b43_dmatype type; |
| 1639 | u16 mmio_base; |
| 1640 | |
| 1641 | type = dma_mask_to_engine_type(supported_dma_mask(dev)); |
| 1642 | |
| 1643 | mmio_base = b43_dmacontroller_base(type, engine_index); |
| 1644 | direct_fifo_rx(dev, type, mmio_base, enable); |
| 1645 | } |
| 1646 | #endif /* CONFIG_B43_PIO */ |