John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1 | /* |
| 2 | |
| 3 | Broadcom BCM43xx wireless driver |
| 4 | |
| 5 | DMA ringbuffer and descriptor allocation/management |
| 6 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 7 | Copyright (c) 2005, 2006 Michael Buesch <mbuesch@freenet.de> |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 8 | |
| 9 | Some code in this file is derived from the b44.c driver |
| 10 | Copyright (C) 2002 David S. Miller |
| 11 | Copyright (C) Pekka Pietikainen |
| 12 | |
| 13 | This program is free software; you can redistribute it and/or modify |
| 14 | it under the terms of the GNU General Public License as published by |
| 15 | the Free Software Foundation; either version 2 of the License, or |
| 16 | (at your option) any later version. |
| 17 | |
| 18 | This program is distributed in the hope that it will be useful, |
| 19 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 21 | GNU General Public License for more details. |
| 22 | |
| 23 | You should have received a copy of the GNU General Public License |
| 24 | along with this program; see the file COPYING. If not, write to |
| 25 | the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, |
| 26 | Boston, MA 02110-1301, USA. |
| 27 | |
| 28 | */ |
| 29 | |
| 30 | #include "bcm43xx.h" |
| 31 | #include "bcm43xx_dma.h" |
| 32 | #include "bcm43xx_main.h" |
| 33 | #include "bcm43xx_debugfs.h" |
| 34 | #include "bcm43xx_power.h" |
Michael Buesch | f398f02 | 2006-02-23 21:15:39 +0100 | [diff] [blame] | 35 | #include "bcm43xx_xmit.h" |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 36 | |
Michael Buesch | d1ca6c4 | 2006-03-25 15:43:18 +0100 | [diff] [blame] | 37 | #include <linux/dma-mapping.h> |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 38 | #include <linux/pci.h> |
| 39 | #include <linux/delay.h> |
| 40 | #include <linux/skbuff.h> |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 41 | |
| 42 | |
| 43 | static inline int free_slots(struct bcm43xx_dmaring *ring) |
| 44 | { |
| 45 | return (ring->nr_slots - ring->used_slots); |
| 46 | } |
| 47 | |
| 48 | static inline int next_slot(struct bcm43xx_dmaring *ring, int slot) |
| 49 | { |
| 50 | assert(slot >= -1 && slot <= ring->nr_slots - 1); |
| 51 | if (slot == ring->nr_slots - 1) |
| 52 | return 0; |
| 53 | return slot + 1; |
| 54 | } |
| 55 | |
| 56 | static inline int prev_slot(struct bcm43xx_dmaring *ring, int slot) |
| 57 | { |
| 58 | assert(slot >= 0 && slot <= ring->nr_slots - 1); |
| 59 | if (slot == 0) |
| 60 | return ring->nr_slots - 1; |
| 61 | return slot - 1; |
| 62 | } |
| 63 | |
| 64 | /* Request a slot for usage. */ |
| 65 | static inline |
| 66 | int request_slot(struct bcm43xx_dmaring *ring) |
| 67 | { |
| 68 | int slot; |
| 69 | |
| 70 | assert(ring->tx); |
| 71 | assert(!ring->suspended); |
| 72 | assert(free_slots(ring) != 0); |
| 73 | |
| 74 | slot = next_slot(ring, ring->current_slot); |
| 75 | ring->current_slot = slot; |
| 76 | ring->used_slots++; |
| 77 | |
| 78 | /* Check the number of available slots and suspend TX, |
| 79 | * if we are running low on free slots. |
| 80 | */ |
| 81 | if (unlikely(free_slots(ring) < ring->suspend_mark)) { |
| 82 | netif_stop_queue(ring->bcm->net_dev); |
| 83 | ring->suspended = 1; |
| 84 | } |
| 85 | #ifdef CONFIG_BCM43XX_DEBUG |
| 86 | if (ring->used_slots > ring->max_used_slots) |
| 87 | ring->max_used_slots = ring->used_slots; |
| 88 | #endif /* CONFIG_BCM43XX_DEBUG*/ |
| 89 | |
| 90 | return slot; |
| 91 | } |
| 92 | |
| 93 | /* Return a slot to the free slots. */ |
| 94 | static inline |
| 95 | void return_slot(struct bcm43xx_dmaring *ring, int slot) |
| 96 | { |
| 97 | assert(ring->tx); |
| 98 | |
| 99 | ring->used_slots--; |
| 100 | |
| 101 | /* Check if TX is suspended and check if we have |
| 102 | * enough free slots to resume it again. |
| 103 | */ |
| 104 | if (unlikely(ring->suspended)) { |
| 105 | if (free_slots(ring) >= ring->resume_mark) { |
| 106 | ring->suspended = 0; |
| 107 | netif_wake_queue(ring->bcm->net_dev); |
| 108 | } |
| 109 | } |
| 110 | } |
| 111 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 112 | u16 bcm43xx_dmacontroller_base(int dma64bit, int controller_idx) |
| 113 | { |
| 114 | static const u16 map64[] = { |
| 115 | BCM43xx_MMIO_DMA64_BASE0, |
| 116 | BCM43xx_MMIO_DMA64_BASE1, |
| 117 | BCM43xx_MMIO_DMA64_BASE2, |
| 118 | BCM43xx_MMIO_DMA64_BASE3, |
| 119 | BCM43xx_MMIO_DMA64_BASE4, |
| 120 | BCM43xx_MMIO_DMA64_BASE5, |
| 121 | }; |
| 122 | static const u16 map32[] = { |
| 123 | BCM43xx_MMIO_DMA32_BASE0, |
| 124 | BCM43xx_MMIO_DMA32_BASE1, |
| 125 | BCM43xx_MMIO_DMA32_BASE2, |
| 126 | BCM43xx_MMIO_DMA32_BASE3, |
| 127 | BCM43xx_MMIO_DMA32_BASE4, |
| 128 | BCM43xx_MMIO_DMA32_BASE5, |
| 129 | }; |
| 130 | |
| 131 | if (dma64bit) { |
| 132 | assert(controller_idx >= 0 && |
| 133 | controller_idx < ARRAY_SIZE(map64)); |
| 134 | return map64[controller_idx]; |
| 135 | } |
| 136 | assert(controller_idx >= 0 && |
| 137 | controller_idx < ARRAY_SIZE(map32)); |
| 138 | return map32[controller_idx]; |
| 139 | } |
| 140 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 141 | static inline |
| 142 | dma_addr_t map_descbuffer(struct bcm43xx_dmaring *ring, |
| 143 | unsigned char *buf, |
| 144 | size_t len, |
| 145 | int tx) |
| 146 | { |
| 147 | dma_addr_t dmaaddr; |
| 148 | |
| 149 | if (tx) { |
| 150 | dmaaddr = dma_map_single(&ring->bcm->pci_dev->dev, |
| 151 | buf, len, |
| 152 | DMA_TO_DEVICE); |
| 153 | } else { |
| 154 | dmaaddr = dma_map_single(&ring->bcm->pci_dev->dev, |
| 155 | buf, len, |
| 156 | DMA_FROM_DEVICE); |
| 157 | } |
| 158 | |
| 159 | return dmaaddr; |
| 160 | } |
| 161 | |
| 162 | static inline |
| 163 | void unmap_descbuffer(struct bcm43xx_dmaring *ring, |
| 164 | dma_addr_t addr, |
| 165 | size_t len, |
| 166 | int tx) |
| 167 | { |
| 168 | if (tx) { |
| 169 | dma_unmap_single(&ring->bcm->pci_dev->dev, |
| 170 | addr, len, |
| 171 | DMA_TO_DEVICE); |
| 172 | } else { |
| 173 | dma_unmap_single(&ring->bcm->pci_dev->dev, |
| 174 | addr, len, |
| 175 | DMA_FROM_DEVICE); |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | static inline |
| 180 | void sync_descbuffer_for_cpu(struct bcm43xx_dmaring *ring, |
| 181 | dma_addr_t addr, |
| 182 | size_t len) |
| 183 | { |
| 184 | assert(!ring->tx); |
| 185 | |
| 186 | dma_sync_single_for_cpu(&ring->bcm->pci_dev->dev, |
| 187 | addr, len, DMA_FROM_DEVICE); |
| 188 | } |
| 189 | |
| 190 | static inline |
| 191 | void sync_descbuffer_for_device(struct bcm43xx_dmaring *ring, |
| 192 | dma_addr_t addr, |
| 193 | size_t len) |
| 194 | { |
| 195 | assert(!ring->tx); |
| 196 | |
| 197 | dma_sync_single_for_device(&ring->bcm->pci_dev->dev, |
| 198 | addr, len, DMA_FROM_DEVICE); |
| 199 | } |
| 200 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 201 | /* Unmap and free a descriptor buffer. */ |
| 202 | static inline |
| 203 | void free_descriptor_buffer(struct bcm43xx_dmaring *ring, |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 204 | struct bcm43xx_dmadesc_meta *meta, |
| 205 | int irq_context) |
| 206 | { |
| 207 | assert(meta->skb); |
Pete Zaitcev | 512a809 | 2006-03-07 01:37:51 +0100 | [diff] [blame] | 208 | if (irq_context) |
| 209 | dev_kfree_skb_irq(meta->skb); |
| 210 | else |
| 211 | dev_kfree_skb(meta->skb); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 212 | meta->skb = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | static int alloc_ringmemory(struct bcm43xx_dmaring *ring) |
| 216 | { |
| 217 | struct device *dev = &(ring->bcm->pci_dev->dev); |
| 218 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 219 | ring->descbase = dma_alloc_coherent(dev, BCM43xx_DMA_RINGMEMSIZE, |
| 220 | &(ring->dmabase), GFP_KERNEL); |
| 221 | if (!ring->descbase) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 222 | printk(KERN_ERR PFX "DMA ringmemory allocation failed\n"); |
| 223 | return -ENOMEM; |
| 224 | } |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 225 | memset(ring->descbase, 0, BCM43xx_DMA_RINGMEMSIZE); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 226 | |
| 227 | return 0; |
| 228 | } |
| 229 | |
| 230 | static void free_ringmemory(struct bcm43xx_dmaring *ring) |
| 231 | { |
| 232 | struct device *dev = &(ring->bcm->pci_dev->dev); |
| 233 | |
| 234 | dma_free_coherent(dev, BCM43xx_DMA_RINGMEMSIZE, |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 235 | ring->descbase, ring->dmabase); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | /* Reset the RX DMA channel */ |
| 239 | int bcm43xx_dmacontroller_rx_reset(struct bcm43xx_private *bcm, |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 240 | u16 mmio_base, int dma64) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 241 | { |
| 242 | int i; |
| 243 | u32 value; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 244 | u16 offset; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 245 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 246 | offset = dma64 ? BCM43xx_DMA64_RXCTL : BCM43xx_DMA32_RXCTL; |
| 247 | bcm43xx_write32(bcm, mmio_base + offset, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 248 | for (i = 0; i < 1000; i++) { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 249 | offset = dma64 ? BCM43xx_DMA64_RXSTATUS : BCM43xx_DMA32_RXSTATUS; |
| 250 | value = bcm43xx_read32(bcm, mmio_base + offset); |
| 251 | if (dma64) { |
| 252 | value &= BCM43xx_DMA64_RXSTAT; |
| 253 | if (value == BCM43xx_DMA64_RXSTAT_DISABLED) { |
| 254 | i = -1; |
| 255 | break; |
| 256 | } |
| 257 | } else { |
| 258 | value &= BCM43xx_DMA32_RXSTATE; |
| 259 | if (value == BCM43xx_DMA32_RXSTAT_DISABLED) { |
| 260 | i = -1; |
| 261 | break; |
| 262 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 263 | } |
| 264 | udelay(10); |
| 265 | } |
| 266 | if (i != -1) { |
| 267 | printk(KERN_ERR PFX "Error: Wait on DMA RX status timed out.\n"); |
| 268 | return -ENODEV; |
| 269 | } |
| 270 | |
| 271 | return 0; |
| 272 | } |
| 273 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 274 | /* Reset the RX DMA channel */ |
| 275 | int bcm43xx_dmacontroller_tx_reset(struct bcm43xx_private *bcm, |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 276 | u16 mmio_base, int dma64) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 277 | { |
| 278 | int i; |
| 279 | u32 value; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 280 | u16 offset; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 281 | |
| 282 | for (i = 0; i < 1000; i++) { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 283 | offset = dma64 ? BCM43xx_DMA64_TXSTATUS : BCM43xx_DMA32_TXSTATUS; |
| 284 | value = bcm43xx_read32(bcm, mmio_base + offset); |
| 285 | if (dma64) { |
| 286 | value &= BCM43xx_DMA64_TXSTAT; |
| 287 | if (value == BCM43xx_DMA64_TXSTAT_DISABLED || |
| 288 | value == BCM43xx_DMA64_TXSTAT_IDLEWAIT || |
| 289 | value == BCM43xx_DMA64_TXSTAT_STOPPED) |
| 290 | break; |
| 291 | } else { |
| 292 | value &= BCM43xx_DMA32_TXSTATE; |
| 293 | if (value == BCM43xx_DMA32_TXSTAT_DISABLED || |
| 294 | value == BCM43xx_DMA32_TXSTAT_IDLEWAIT || |
| 295 | value == BCM43xx_DMA32_TXSTAT_STOPPED) |
| 296 | break; |
| 297 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 298 | udelay(10); |
| 299 | } |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 300 | offset = dma64 ? BCM43xx_DMA64_TXCTL : BCM43xx_DMA32_TXCTL; |
| 301 | bcm43xx_write32(bcm, mmio_base + offset, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 302 | for (i = 0; i < 1000; i++) { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 303 | offset = dma64 ? BCM43xx_DMA64_TXSTATUS : BCM43xx_DMA32_TXSTATUS; |
| 304 | value = bcm43xx_read32(bcm, mmio_base + offset); |
| 305 | if (dma64) { |
| 306 | value &= BCM43xx_DMA64_TXSTAT; |
| 307 | if (value == BCM43xx_DMA64_TXSTAT_DISABLED) { |
| 308 | i = -1; |
| 309 | break; |
| 310 | } |
| 311 | } else { |
| 312 | value &= BCM43xx_DMA32_TXSTATE; |
| 313 | if (value == BCM43xx_DMA32_TXSTAT_DISABLED) { |
| 314 | i = -1; |
| 315 | break; |
| 316 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 317 | } |
| 318 | udelay(10); |
| 319 | } |
| 320 | if (i != -1) { |
| 321 | printk(KERN_ERR PFX "Error: Wait on DMA TX status timed out.\n"); |
| 322 | return -ENODEV; |
| 323 | } |
| 324 | /* ensure the reset is completed. */ |
| 325 | udelay(300); |
| 326 | |
| 327 | return 0; |
| 328 | } |
| 329 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 330 | static void fill_descriptor(struct bcm43xx_dmaring *ring, |
| 331 | struct bcm43xx_dmadesc_generic *desc, |
| 332 | dma_addr_t dmaaddr, |
| 333 | u16 bufsize, |
| 334 | int start, int end, int irq) |
| 335 | { |
| 336 | int slot; |
| 337 | |
| 338 | slot = bcm43xx_dma_desc2idx(ring, desc); |
| 339 | assert(slot >= 0 && slot < ring->nr_slots); |
| 340 | |
| 341 | if (ring->dma64) { |
| 342 | u32 ctl0 = 0, ctl1 = 0; |
| 343 | u32 addrlo, addrhi; |
| 344 | u32 addrext; |
| 345 | |
| 346 | addrlo = (u32)(dmaaddr & 0xFFFFFFFF); |
| 347 | addrhi = (((u64)dmaaddr >> 32) & ~BCM43xx_DMA64_ROUTING); |
| 348 | addrext = (((u64)dmaaddr >> 32) >> BCM43xx_DMA64_ROUTING_SHIFT); |
| 349 | addrhi |= ring->routing; |
| 350 | if (slot == ring->nr_slots - 1) |
| 351 | ctl0 |= BCM43xx_DMA64_DCTL0_DTABLEEND; |
| 352 | if (start) |
| 353 | ctl0 |= BCM43xx_DMA64_DCTL0_FRAMESTART; |
| 354 | if (end) |
| 355 | ctl0 |= BCM43xx_DMA64_DCTL0_FRAMEEND; |
| 356 | if (irq) |
| 357 | ctl0 |= BCM43xx_DMA64_DCTL0_IRQ; |
| 358 | ctl1 |= (bufsize - ring->frameoffset) |
| 359 | & BCM43xx_DMA64_DCTL1_BYTECNT; |
| 360 | ctl1 |= (addrext << BCM43xx_DMA64_DCTL1_ADDREXT_SHIFT) |
| 361 | & BCM43xx_DMA64_DCTL1_ADDREXT_MASK; |
| 362 | |
| 363 | desc->dma64.control0 = cpu_to_le32(ctl0); |
| 364 | desc->dma64.control1 = cpu_to_le32(ctl1); |
| 365 | desc->dma64.address_low = cpu_to_le32(addrlo); |
| 366 | desc->dma64.address_high = cpu_to_le32(addrhi); |
| 367 | } else { |
| 368 | u32 ctl; |
| 369 | u32 addr; |
| 370 | u32 addrext; |
| 371 | |
| 372 | addr = (u32)(dmaaddr & ~BCM43xx_DMA32_ROUTING); |
| 373 | addrext = (u32)(dmaaddr & BCM43xx_DMA32_ROUTING) |
| 374 | >> BCM43xx_DMA32_ROUTING_SHIFT; |
| 375 | addr |= ring->routing; |
| 376 | ctl = (bufsize - ring->frameoffset) |
| 377 | & BCM43xx_DMA32_DCTL_BYTECNT; |
| 378 | if (slot == ring->nr_slots - 1) |
| 379 | ctl |= BCM43xx_DMA32_DCTL_DTABLEEND; |
| 380 | if (start) |
| 381 | ctl |= BCM43xx_DMA32_DCTL_FRAMESTART; |
| 382 | if (end) |
| 383 | ctl |= BCM43xx_DMA32_DCTL_FRAMEEND; |
| 384 | if (irq) |
| 385 | ctl |= BCM43xx_DMA32_DCTL_IRQ; |
| 386 | ctl |= (addrext << BCM43xx_DMA32_DCTL_ADDREXT_SHIFT) |
| 387 | & BCM43xx_DMA32_DCTL_ADDREXT_MASK; |
| 388 | |
| 389 | desc->dma32.control = cpu_to_le32(ctl); |
| 390 | desc->dma32.address = cpu_to_le32(addr); |
| 391 | } |
| 392 | } |
| 393 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 394 | static int setup_rx_descbuffer(struct bcm43xx_dmaring *ring, |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 395 | struct bcm43xx_dmadesc_generic *desc, |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 396 | struct bcm43xx_dmadesc_meta *meta, |
| 397 | gfp_t gfp_flags) |
| 398 | { |
| 399 | struct bcm43xx_rxhdr *rxhdr; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 400 | struct bcm43xx_hwxmitstatus *xmitstat; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 401 | dma_addr_t dmaaddr; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 402 | struct sk_buff *skb; |
| 403 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 404 | assert(!ring->tx); |
| 405 | |
| 406 | skb = __dev_alloc_skb(ring->rx_buffersize, gfp_flags); |
| 407 | if (unlikely(!skb)) |
| 408 | return -ENOMEM; |
| 409 | dmaaddr = map_descbuffer(ring, skb->data, ring->rx_buffersize, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 410 | meta->skb = skb; |
| 411 | meta->dmaaddr = dmaaddr; |
| 412 | skb->dev = ring->bcm->net_dev; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 413 | |
| 414 | fill_descriptor(ring, desc, dmaaddr, |
| 415 | ring->rx_buffersize, 0, 0, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 416 | |
| 417 | rxhdr = (struct bcm43xx_rxhdr *)(skb->data); |
| 418 | rxhdr->frame_length = 0; |
| 419 | rxhdr->flags1 = 0; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 420 | xmitstat = (struct bcm43xx_hwxmitstatus *)(skb->data); |
| 421 | xmitstat->cookie = 0; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 422 | |
| 423 | return 0; |
| 424 | } |
| 425 | |
| 426 | /* Allocate the initial descbuffers. |
| 427 | * This is used for an RX ring only. |
| 428 | */ |
| 429 | static int alloc_initial_descbuffers(struct bcm43xx_dmaring *ring) |
| 430 | { |
| 431 | int i, err = -ENOMEM; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 432 | struct bcm43xx_dmadesc_generic *desc; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 433 | struct bcm43xx_dmadesc_meta *meta; |
| 434 | |
| 435 | for (i = 0; i < ring->nr_slots; i++) { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 436 | desc = bcm43xx_dma_idx2desc(ring, i, &meta); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 437 | |
| 438 | err = setup_rx_descbuffer(ring, desc, meta, GFP_KERNEL); |
| 439 | if (err) |
| 440 | goto err_unwind; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 441 | } |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 442 | mb(); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 443 | ring->used_slots = ring->nr_slots; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 444 | err = 0; |
| 445 | out: |
| 446 | return err; |
| 447 | |
| 448 | err_unwind: |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 449 | for (i--; i >= 0; i--) { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 450 | desc = bcm43xx_dma_idx2desc(ring, i, &meta); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 451 | |
| 452 | unmap_descbuffer(ring, meta->dmaaddr, ring->rx_buffersize, 0); |
| 453 | dev_kfree_skb(meta->skb); |
| 454 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 455 | goto out; |
| 456 | } |
| 457 | |
| 458 | /* Do initial setup of the DMA controller. |
| 459 | * Reset the controller, write the ring busaddress |
| 460 | * and switch the "enable" bit on. |
| 461 | */ |
| 462 | static int dmacontroller_setup(struct bcm43xx_dmaring *ring) |
| 463 | { |
| 464 | int err = 0; |
| 465 | u32 value; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 466 | u32 addrext; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 467 | |
| 468 | if (ring->tx) { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 469 | if (ring->dma64) { |
| 470 | u64 ringbase = (u64)(ring->dmabase); |
| 471 | |
| 472 | addrext = ((ringbase >> 32) >> BCM43xx_DMA64_ROUTING_SHIFT); |
| 473 | value = BCM43xx_DMA64_TXENABLE; |
| 474 | value |= (addrext << BCM43xx_DMA64_TXADDREXT_SHIFT) |
| 475 | & BCM43xx_DMA64_TXADDREXT_MASK; |
| 476 | bcm43xx_dma_write(ring, BCM43xx_DMA64_TXCTL, value); |
| 477 | bcm43xx_dma_write(ring, BCM43xx_DMA64_TXRINGLO, |
| 478 | (ringbase & 0xFFFFFFFF)); |
| 479 | bcm43xx_dma_write(ring, BCM43xx_DMA64_TXRINGHI, |
| 480 | ((ringbase >> 32) & ~BCM43xx_DMA64_ROUTING) |
| 481 | | ring->routing); |
| 482 | } else { |
| 483 | u32 ringbase = (u32)(ring->dmabase); |
| 484 | |
| 485 | addrext = (ringbase >> BCM43xx_DMA32_ROUTING_SHIFT); |
| 486 | value = BCM43xx_DMA32_TXENABLE; |
| 487 | value |= (addrext << BCM43xx_DMA32_TXADDREXT_SHIFT) |
| 488 | & BCM43xx_DMA32_TXADDREXT_MASK; |
| 489 | bcm43xx_dma_write(ring, BCM43xx_DMA32_TXCTL, value); |
| 490 | bcm43xx_dma_write(ring, BCM43xx_DMA32_TXRING, |
| 491 | (ringbase & ~BCM43xx_DMA32_ROUTING) |
| 492 | | ring->routing); |
| 493 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 494 | } else { |
| 495 | err = alloc_initial_descbuffers(ring); |
| 496 | if (err) |
| 497 | goto out; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 498 | if (ring->dma64) { |
| 499 | u64 ringbase = (u64)(ring->dmabase); |
| 500 | |
| 501 | addrext = ((ringbase >> 32) >> BCM43xx_DMA64_ROUTING_SHIFT); |
| 502 | value = (ring->frameoffset << BCM43xx_DMA64_RXFROFF_SHIFT); |
| 503 | value |= BCM43xx_DMA64_RXENABLE; |
| 504 | value |= (addrext << BCM43xx_DMA64_RXADDREXT_SHIFT) |
| 505 | & BCM43xx_DMA64_RXADDREXT_MASK; |
| 506 | bcm43xx_dma_write(ring, BCM43xx_DMA64_RXCTL, value); |
| 507 | bcm43xx_dma_write(ring, BCM43xx_DMA64_RXRINGLO, |
| 508 | (ringbase & 0xFFFFFFFF)); |
| 509 | bcm43xx_dma_write(ring, BCM43xx_DMA64_RXRINGHI, |
| 510 | ((ringbase >> 32) & ~BCM43xx_DMA64_ROUTING) |
| 511 | | ring->routing); |
| 512 | bcm43xx_dma_write(ring, BCM43xx_DMA64_RXINDEX, 200); |
| 513 | } else { |
| 514 | u32 ringbase = (u32)(ring->dmabase); |
| 515 | |
| 516 | addrext = (ringbase >> BCM43xx_DMA32_ROUTING_SHIFT); |
| 517 | value = (ring->frameoffset << BCM43xx_DMA32_RXFROFF_SHIFT); |
| 518 | value |= BCM43xx_DMA32_RXENABLE; |
| 519 | value |= (addrext << BCM43xx_DMA32_RXADDREXT_SHIFT) |
| 520 | & BCM43xx_DMA32_RXADDREXT_MASK; |
| 521 | bcm43xx_dma_write(ring, BCM43xx_DMA32_RXCTL, value); |
| 522 | bcm43xx_dma_write(ring, BCM43xx_DMA32_RXRING, |
| 523 | (ringbase & ~BCM43xx_DMA32_ROUTING) |
| 524 | | ring->routing); |
| 525 | bcm43xx_dma_write(ring, BCM43xx_DMA32_RXINDEX, 200); |
| 526 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | out: |
| 530 | return err; |
| 531 | } |
| 532 | |
| 533 | /* Shutdown the DMA controller. */ |
| 534 | static void dmacontroller_cleanup(struct bcm43xx_dmaring *ring) |
| 535 | { |
| 536 | if (ring->tx) { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 537 | bcm43xx_dmacontroller_tx_reset(ring->bcm, ring->mmio_base, ring->dma64); |
| 538 | if (ring->dma64) { |
| 539 | bcm43xx_dma_write(ring, BCM43xx_DMA64_TXRINGLO, 0); |
| 540 | bcm43xx_dma_write(ring, BCM43xx_DMA64_TXRINGHI, 0); |
| 541 | } else |
| 542 | bcm43xx_dma_write(ring, BCM43xx_DMA32_TXRING, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 543 | } else { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 544 | bcm43xx_dmacontroller_rx_reset(ring->bcm, ring->mmio_base, ring->dma64); |
| 545 | if (ring->dma64) { |
| 546 | bcm43xx_dma_write(ring, BCM43xx_DMA64_RXRINGLO, 0); |
| 547 | bcm43xx_dma_write(ring, BCM43xx_DMA64_RXRINGHI, 0); |
| 548 | } else |
| 549 | bcm43xx_dma_write(ring, BCM43xx_DMA32_RXRING, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 550 | } |
| 551 | } |
| 552 | |
| 553 | static void free_all_descbuffers(struct bcm43xx_dmaring *ring) |
| 554 | { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 555 | struct bcm43xx_dmadesc_generic *desc; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 556 | struct bcm43xx_dmadesc_meta *meta; |
| 557 | int i; |
| 558 | |
| 559 | if (!ring->used_slots) |
| 560 | return; |
| 561 | for (i = 0; i < ring->nr_slots; i++) { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 562 | desc = bcm43xx_dma_idx2desc(ring, i, &meta); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 563 | |
| 564 | if (!meta->skb) { |
| 565 | assert(ring->tx); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 566 | continue; |
| 567 | } |
| 568 | if (ring->tx) { |
| 569 | unmap_descbuffer(ring, meta->dmaaddr, |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 570 | meta->skb->len, 1); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 571 | } else { |
| 572 | unmap_descbuffer(ring, meta->dmaaddr, |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 573 | ring->rx_buffersize, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 574 | } |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 575 | free_descriptor_buffer(ring, meta, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 576 | } |
| 577 | } |
| 578 | |
| 579 | /* Main initialization function. */ |
| 580 | static |
| 581 | struct bcm43xx_dmaring * bcm43xx_setup_dmaring(struct bcm43xx_private *bcm, |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 582 | int controller_index, |
| 583 | int for_tx, |
| 584 | int dma64) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 585 | { |
| 586 | struct bcm43xx_dmaring *ring; |
| 587 | int err; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 588 | int nr_slots; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 589 | |
| 590 | ring = kzalloc(sizeof(*ring), GFP_KERNEL); |
| 591 | if (!ring) |
| 592 | goto out; |
| 593 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 594 | nr_slots = BCM43xx_RXRING_SLOTS; |
| 595 | if (for_tx) |
| 596 | nr_slots = BCM43xx_TXRING_SLOTS; |
| 597 | |
| 598 | ring->meta = kcalloc(nr_slots, sizeof(struct bcm43xx_dmadesc_meta), |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 599 | GFP_KERNEL); |
| 600 | if (!ring->meta) |
| 601 | goto err_kfree_ring; |
| 602 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 603 | ring->routing = BCM43xx_DMA32_CLIENTTRANS; |
| 604 | if (dma64) |
| 605 | ring->routing = BCM43xx_DMA64_CLIENTTRANS; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 606 | #ifdef CONFIG_BCM947XX |
| 607 | if (bcm->pci_dev->bus->number == 0) |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 608 | ring->routing = dma64 ? BCM43xx_DMA64_NOTRANS : BCM43xx_DMA32_NOTRANS; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 609 | #endif |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 610 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 611 | ring->bcm = bcm; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 612 | ring->nr_slots = nr_slots; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 613 | ring->suspend_mark = ring->nr_slots * BCM43xx_TXSUSPEND_PERCENT / 100; |
| 614 | ring->resume_mark = ring->nr_slots * BCM43xx_TXRESUME_PERCENT / 100; |
| 615 | assert(ring->suspend_mark < ring->resume_mark); |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 616 | ring->mmio_base = bcm43xx_dmacontroller_base(dma64, controller_index); |
| 617 | ring->index = controller_index; |
| 618 | ring->dma64 = !!dma64; |
| 619 | if (for_tx) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 620 | ring->tx = 1; |
| 621 | ring->current_slot = -1; |
| 622 | } else { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 623 | if (ring->index == 0) { |
| 624 | ring->rx_buffersize = BCM43xx_DMA0_RX_BUFFERSIZE; |
| 625 | ring->frameoffset = BCM43xx_DMA0_RX_FRAMEOFFSET; |
| 626 | } else if (ring->index == 3) { |
| 627 | ring->rx_buffersize = BCM43xx_DMA3_RX_BUFFERSIZE; |
| 628 | ring->frameoffset = BCM43xx_DMA3_RX_FRAMEOFFSET; |
| 629 | } else |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 630 | assert(0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | err = alloc_ringmemory(ring); |
| 634 | if (err) |
| 635 | goto err_kfree_meta; |
| 636 | err = dmacontroller_setup(ring); |
| 637 | if (err) |
| 638 | goto err_free_ringmemory; |
| 639 | |
| 640 | out: |
| 641 | return ring; |
| 642 | |
| 643 | err_free_ringmemory: |
| 644 | free_ringmemory(ring); |
| 645 | err_kfree_meta: |
| 646 | kfree(ring->meta); |
| 647 | err_kfree_ring: |
| 648 | kfree(ring); |
| 649 | ring = NULL; |
| 650 | goto out; |
| 651 | } |
| 652 | |
| 653 | /* Main cleanup function. */ |
| 654 | static void bcm43xx_destroy_dmaring(struct bcm43xx_dmaring *ring) |
| 655 | { |
| 656 | if (!ring) |
| 657 | return; |
| 658 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 659 | dprintk(KERN_INFO PFX "DMA-%s 0x%04X (%s) max used slots: %d/%d\n", |
| 660 | (ring->dma64) ? "64" : "32", |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 661 | ring->mmio_base, |
| 662 | (ring->tx) ? "TX" : "RX", |
| 663 | ring->max_used_slots, ring->nr_slots); |
| 664 | /* Device IRQs are disabled prior entering this function, |
| 665 | * so no need to take care of concurrency with rx handler stuff. |
| 666 | */ |
| 667 | dmacontroller_cleanup(ring); |
| 668 | free_all_descbuffers(ring); |
| 669 | free_ringmemory(ring); |
| 670 | |
| 671 | kfree(ring->meta); |
| 672 | kfree(ring); |
| 673 | } |
| 674 | |
| 675 | void bcm43xx_dma_free(struct bcm43xx_private *bcm) |
| 676 | { |
Michael Buesch | 49f29efa | 2006-03-14 16:05:26 +0100 | [diff] [blame] | 677 | struct bcm43xx_dma *dma; |
| 678 | |
| 679 | if (bcm43xx_using_pio(bcm)) |
| 680 | return; |
| 681 | dma = bcm43xx_current_dma(bcm); |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 682 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 683 | bcm43xx_destroy_dmaring(dma->rx_ring3); |
| 684 | dma->rx_ring3 = NULL; |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 685 | bcm43xx_destroy_dmaring(dma->rx_ring0); |
| 686 | dma->rx_ring0 = NULL; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 687 | |
| 688 | bcm43xx_destroy_dmaring(dma->tx_ring5); |
| 689 | dma->tx_ring5 = NULL; |
| 690 | bcm43xx_destroy_dmaring(dma->tx_ring4); |
| 691 | dma->tx_ring4 = NULL; |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 692 | bcm43xx_destroy_dmaring(dma->tx_ring3); |
| 693 | dma->tx_ring3 = NULL; |
| 694 | bcm43xx_destroy_dmaring(dma->tx_ring2); |
| 695 | dma->tx_ring2 = NULL; |
| 696 | bcm43xx_destroy_dmaring(dma->tx_ring1); |
| 697 | dma->tx_ring1 = NULL; |
| 698 | bcm43xx_destroy_dmaring(dma->tx_ring0); |
| 699 | dma->tx_ring0 = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | int bcm43xx_dma_init(struct bcm43xx_private *bcm) |
| 703 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 704 | struct bcm43xx_dma *dma = bcm43xx_current_dma(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 705 | struct bcm43xx_dmaring *ring; |
| 706 | int err = -ENOMEM; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 707 | int dma64 = 0; |
Larry Finger | 8da81e5 | 2006-10-02 23:48:54 -0500 | [diff] [blame] | 708 | u64 mask = bcm43xx_get_supported_dma_mask(bcm); |
| 709 | int nobits; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 710 | |
Larry Finger | 8da81e5 | 2006-10-02 23:48:54 -0500 | [diff] [blame] | 711 | if (mask == DMA_64BIT_MASK) { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 712 | dma64 = 1; |
Larry Finger | 8da81e5 | 2006-10-02 23:48:54 -0500 | [diff] [blame] | 713 | nobits = 64; |
| 714 | } else if (mask == DMA_32BIT_MASK) |
| 715 | nobits = 32; |
| 716 | else |
| 717 | nobits = 30; |
| 718 | err = pci_set_dma_mask(bcm->pci_dev, mask); |
| 719 | err |= pci_set_consistent_dma_mask(bcm->pci_dev, mask); |
| 720 | if (err) { |
| 721 | #ifdef CONFIG_BCM43XX_PIO |
| 722 | printk(KERN_WARNING PFX "DMA not supported on this device." |
| 723 | " Falling back to PIO.\n"); |
| 724 | bcm->__using_pio = 1; |
| 725 | return -ENOSYS; |
| 726 | #else |
| 727 | printk(KERN_ERR PFX "FATAL: DMA not supported and PIO not configured. " |
| 728 | "Please recompile the driver with PIO support.\n"); |
| 729 | return -ENODEV; |
| 730 | #endif /* CONFIG_BCM43XX_PIO */ |
| 731 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 732 | |
| 733 | /* setup TX DMA channels. */ |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 734 | ring = bcm43xx_setup_dmaring(bcm, 0, 1, dma64); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 735 | if (!ring) |
| 736 | goto out; |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 737 | dma->tx_ring0 = ring; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 738 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 739 | ring = bcm43xx_setup_dmaring(bcm, 1, 1, dma64); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 740 | if (!ring) |
| 741 | goto err_destroy_tx0; |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 742 | dma->tx_ring1 = ring; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 743 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 744 | ring = bcm43xx_setup_dmaring(bcm, 2, 1, dma64); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 745 | if (!ring) |
| 746 | goto err_destroy_tx1; |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 747 | dma->tx_ring2 = ring; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 748 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 749 | ring = bcm43xx_setup_dmaring(bcm, 3, 1, dma64); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 750 | if (!ring) |
| 751 | goto err_destroy_tx2; |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 752 | dma->tx_ring3 = ring; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 753 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 754 | ring = bcm43xx_setup_dmaring(bcm, 4, 1, dma64); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 755 | if (!ring) |
| 756 | goto err_destroy_tx3; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 757 | dma->tx_ring4 = ring; |
| 758 | |
| 759 | ring = bcm43xx_setup_dmaring(bcm, 5, 1, dma64); |
| 760 | if (!ring) |
| 761 | goto err_destroy_tx4; |
| 762 | dma->tx_ring5 = ring; |
| 763 | |
| 764 | /* setup RX DMA channels. */ |
| 765 | ring = bcm43xx_setup_dmaring(bcm, 0, 0, dma64); |
| 766 | if (!ring) |
| 767 | goto err_destroy_tx5; |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 768 | dma->rx_ring0 = ring; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 769 | |
| 770 | if (bcm->current_core->rev < 5) { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 771 | ring = bcm43xx_setup_dmaring(bcm, 3, 0, dma64); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 772 | if (!ring) |
| 773 | goto err_destroy_rx0; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 774 | dma->rx_ring3 = ring; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 775 | } |
| 776 | |
Larry Finger | 8da81e5 | 2006-10-02 23:48:54 -0500 | [diff] [blame] | 777 | dprintk(KERN_INFO PFX "%d-bit DMA initialized\n", nobits); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 778 | err = 0; |
| 779 | out: |
| 780 | return err; |
| 781 | |
| 782 | err_destroy_rx0: |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 783 | bcm43xx_destroy_dmaring(dma->rx_ring0); |
| 784 | dma->rx_ring0 = NULL; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 785 | err_destroy_tx5: |
| 786 | bcm43xx_destroy_dmaring(dma->tx_ring5); |
| 787 | dma->tx_ring5 = NULL; |
| 788 | err_destroy_tx4: |
| 789 | bcm43xx_destroy_dmaring(dma->tx_ring4); |
| 790 | dma->tx_ring4 = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 791 | err_destroy_tx3: |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 792 | bcm43xx_destroy_dmaring(dma->tx_ring3); |
| 793 | dma->tx_ring3 = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 794 | err_destroy_tx2: |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 795 | bcm43xx_destroy_dmaring(dma->tx_ring2); |
| 796 | dma->tx_ring2 = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 797 | err_destroy_tx1: |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 798 | bcm43xx_destroy_dmaring(dma->tx_ring1); |
| 799 | dma->tx_ring1 = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 800 | err_destroy_tx0: |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 801 | bcm43xx_destroy_dmaring(dma->tx_ring0); |
| 802 | dma->tx_ring0 = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 803 | goto out; |
| 804 | } |
| 805 | |
| 806 | /* Generate a cookie for the TX header. */ |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 807 | static u16 generate_cookie(struct bcm43xx_dmaring *ring, |
| 808 | int slot) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 809 | { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 810 | u16 cookie = 0x1000; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 811 | |
| 812 | /* Use the upper 4 bits of the cookie as |
| 813 | * DMA controller ID and store the slot number |
Michael Buesch | ea9a771 | 2006-06-04 02:20:42 +0200 | [diff] [blame] | 814 | * in the lower 12 bits. |
| 815 | * Note that the cookie must never be 0, as this |
| 816 | * is a special value used in RX path. |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 817 | */ |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 818 | switch (ring->index) { |
| 819 | case 0: |
Michael Buesch | ea9a771 | 2006-06-04 02:20:42 +0200 | [diff] [blame] | 820 | cookie = 0xA000; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 821 | break; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 822 | case 1: |
Michael Buesch | ea9a771 | 2006-06-04 02:20:42 +0200 | [diff] [blame] | 823 | cookie = 0xB000; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 824 | break; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 825 | case 2: |
Michael Buesch | ea9a771 | 2006-06-04 02:20:42 +0200 | [diff] [blame] | 826 | cookie = 0xC000; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 827 | break; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 828 | case 3: |
Michael Buesch | ea9a771 | 2006-06-04 02:20:42 +0200 | [diff] [blame] | 829 | cookie = 0xD000; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 830 | break; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 831 | case 4: |
| 832 | cookie = 0xE000; |
| 833 | break; |
| 834 | case 5: |
| 835 | cookie = 0xF000; |
| 836 | break; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 837 | } |
| 838 | assert(((u16)slot & 0xF000) == 0x0000); |
| 839 | cookie |= (u16)slot; |
| 840 | |
| 841 | return cookie; |
| 842 | } |
| 843 | |
| 844 | /* Inspect a cookie and find out to which controller/slot it belongs. */ |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 845 | static |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 846 | struct bcm43xx_dmaring * parse_cookie(struct bcm43xx_private *bcm, |
| 847 | u16 cookie, int *slot) |
| 848 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 849 | struct bcm43xx_dma *dma = bcm43xx_current_dma(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 850 | struct bcm43xx_dmaring *ring = NULL; |
| 851 | |
| 852 | switch (cookie & 0xF000) { |
Michael Buesch | ea9a771 | 2006-06-04 02:20:42 +0200 | [diff] [blame] | 853 | case 0xA000: |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 854 | ring = dma->tx_ring0; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 855 | break; |
Michael Buesch | ea9a771 | 2006-06-04 02:20:42 +0200 | [diff] [blame] | 856 | case 0xB000: |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 857 | ring = dma->tx_ring1; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 858 | break; |
Michael Buesch | ea9a771 | 2006-06-04 02:20:42 +0200 | [diff] [blame] | 859 | case 0xC000: |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 860 | ring = dma->tx_ring2; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 861 | break; |
Michael Buesch | ea9a771 | 2006-06-04 02:20:42 +0200 | [diff] [blame] | 862 | case 0xD000: |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 863 | ring = dma->tx_ring3; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 864 | break; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 865 | case 0xE000: |
| 866 | ring = dma->tx_ring4; |
| 867 | break; |
| 868 | case 0xF000: |
| 869 | ring = dma->tx_ring5; |
| 870 | break; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 871 | default: |
| 872 | assert(0); |
| 873 | } |
| 874 | *slot = (cookie & 0x0FFF); |
| 875 | assert(*slot >= 0 && *slot < ring->nr_slots); |
| 876 | |
| 877 | return ring; |
| 878 | } |
| 879 | |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 880 | static void dmacontroller_poke_tx(struct bcm43xx_dmaring *ring, |
| 881 | int slot) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 882 | { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 883 | u16 offset; |
| 884 | int descsize; |
| 885 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 886 | /* Everything is ready to start. Buffers are DMA mapped and |
| 887 | * associated with slots. |
| 888 | * "slot" is the last slot of the new frame we want to transmit. |
| 889 | * Close your seat belts now, please. |
| 890 | */ |
| 891 | wmb(); |
| 892 | slot = next_slot(ring, slot); |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 893 | offset = (ring->dma64) ? BCM43xx_DMA64_TXINDEX : BCM43xx_DMA32_TXINDEX; |
| 894 | descsize = (ring->dma64) ? sizeof(struct bcm43xx_dmadesc64) |
| 895 | : sizeof(struct bcm43xx_dmadesc32); |
| 896 | bcm43xx_dma_write(ring, offset, |
| 897 | (u32)(slot * descsize)); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 898 | } |
| 899 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 900 | static void dma_tx_fragment(struct bcm43xx_dmaring *ring, |
| 901 | struct sk_buff *skb, |
| 902 | u8 cur_frag) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 903 | { |
| 904 | int slot; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 905 | struct bcm43xx_dmadesc_generic *desc; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 906 | struct bcm43xx_dmadesc_meta *meta; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 907 | dma_addr_t dmaaddr; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 908 | |
| 909 | assert(skb_shinfo(skb)->nr_frags == 0); |
| 910 | |
| 911 | slot = request_slot(ring); |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 912 | desc = bcm43xx_dma_idx2desc(ring, slot, &meta); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 913 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 914 | /* Add a device specific TX header. */ |
| 915 | assert(skb_headroom(skb) >= sizeof(struct bcm43xx_txhdr)); |
| 916 | /* Reserve enough headroom for the device tx header. */ |
| 917 | __skb_push(skb, sizeof(struct bcm43xx_txhdr)); |
| 918 | /* Now calculate and add the tx header. |
| 919 | * The tx header includes the PLCP header. |
| 920 | */ |
| 921 | bcm43xx_generate_txhdr(ring->bcm, |
| 922 | (struct bcm43xx_txhdr *)skb->data, |
| 923 | skb->data + sizeof(struct bcm43xx_txhdr), |
| 924 | skb->len - sizeof(struct bcm43xx_txhdr), |
| 925 | (cur_frag == 0), |
| 926 | generate_cookie(ring, slot)); |
| 927 | |
| 928 | meta->skb = skb; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 929 | dmaaddr = map_descbuffer(ring, skb->data, skb->len, 1); |
| 930 | meta->dmaaddr = dmaaddr; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 931 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 932 | fill_descriptor(ring, desc, dmaaddr, |
| 933 | skb->len, 1, 1, 1); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 934 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 935 | /* Now transfer the whole frame. */ |
| 936 | dmacontroller_poke_tx(ring, slot); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 937 | } |
| 938 | |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 939 | int bcm43xx_dma_tx(struct bcm43xx_private *bcm, |
| 940 | struct ieee80211_txb *txb) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 941 | { |
| 942 | /* We just received a packet from the kernel network subsystem. |
| 943 | * Add headers and DMA map the memory. Poke |
| 944 | * the device to send the stuff. |
| 945 | * Note that this is called from atomic context. |
| 946 | */ |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 947 | struct bcm43xx_dmaring *ring = bcm43xx_current_dma(bcm)->tx_ring1; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 948 | u8 i; |
| 949 | struct sk_buff *skb; |
| 950 | |
| 951 | assert(ring->tx); |
| 952 | if (unlikely(free_slots(ring) < txb->nr_frags)) { |
| 953 | /* The queue should be stopped, |
| 954 | * if we are low on free slots. |
| 955 | * If this ever triggers, we have to lower the suspend_mark. |
| 956 | */ |
| 957 | dprintkl(KERN_ERR PFX "Out of DMA descriptor slots!\n"); |
| 958 | return -ENOMEM; |
| 959 | } |
| 960 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 961 | for (i = 0; i < txb->nr_frags; i++) { |
| 962 | skb = txb->fragments[i]; |
Pete Zaitcev | 512a809 | 2006-03-07 01:37:51 +0100 | [diff] [blame] | 963 | /* Take skb from ieee80211_txb_free */ |
| 964 | txb->fragments[i] = NULL; |
| 965 | dma_tx_fragment(ring, skb, i); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 966 | } |
Pete Zaitcev | 512a809 | 2006-03-07 01:37:51 +0100 | [diff] [blame] | 967 | ieee80211_txb_free(txb); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 968 | |
| 969 | return 0; |
| 970 | } |
| 971 | |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 972 | void bcm43xx_dma_handle_xmitstatus(struct bcm43xx_private *bcm, |
| 973 | struct bcm43xx_xmitstatus *status) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 974 | { |
| 975 | struct bcm43xx_dmaring *ring; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 976 | struct bcm43xx_dmadesc_generic *desc; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 977 | struct bcm43xx_dmadesc_meta *meta; |
| 978 | int is_last_fragment; |
| 979 | int slot; |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 980 | u32 tmp; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 981 | |
| 982 | ring = parse_cookie(bcm, status->cookie, &slot); |
| 983 | assert(ring); |
| 984 | assert(ring->tx); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 985 | while (1) { |
| 986 | assert(slot >= 0 && slot < ring->nr_slots); |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 987 | desc = bcm43xx_dma_idx2desc(ring, slot, &meta); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 988 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 989 | if (ring->dma64) { |
| 990 | tmp = le32_to_cpu(desc->dma64.control0); |
| 991 | is_last_fragment = !!(tmp & BCM43xx_DMA64_DCTL0_FRAMEEND); |
| 992 | } else { |
| 993 | tmp = le32_to_cpu(desc->dma32.control); |
| 994 | is_last_fragment = !!(tmp & BCM43xx_DMA32_DCTL_FRAMEEND); |
| 995 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 996 | unmap_descbuffer(ring, meta->dmaaddr, meta->skb->len, 1); |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 997 | free_descriptor_buffer(ring, meta, 1); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 998 | /* Everything belonging to the slot is unmapped |
| 999 | * and freed, so we can return it. |
| 1000 | */ |
| 1001 | return_slot(ring, slot); |
| 1002 | |
| 1003 | if (is_last_fragment) |
| 1004 | break; |
| 1005 | slot = next_slot(ring, slot); |
| 1006 | } |
| 1007 | bcm->stats.last_tx = jiffies; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1008 | } |
| 1009 | |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 1010 | static void dma_rx(struct bcm43xx_dmaring *ring, |
| 1011 | int *slot) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1012 | { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 1013 | struct bcm43xx_dmadesc_generic *desc; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1014 | struct bcm43xx_dmadesc_meta *meta; |
| 1015 | struct bcm43xx_rxhdr *rxhdr; |
| 1016 | struct sk_buff *skb; |
| 1017 | u16 len; |
| 1018 | int err; |
| 1019 | dma_addr_t dmaaddr; |
| 1020 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 1021 | desc = bcm43xx_dma_idx2desc(ring, *slot, &meta); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1022 | |
| 1023 | sync_descbuffer_for_cpu(ring, meta->dmaaddr, ring->rx_buffersize); |
| 1024 | skb = meta->skb; |
| 1025 | |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 1026 | if (ring->index == 3) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1027 | /* We received an xmit status. */ |
| 1028 | struct bcm43xx_hwxmitstatus *hw = (struct bcm43xx_hwxmitstatus *)skb->data; |
| 1029 | struct bcm43xx_xmitstatus stat; |
Michael Buesch | ea9a771 | 2006-06-04 02:20:42 +0200 | [diff] [blame] | 1030 | int i = 0; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1031 | |
| 1032 | stat.cookie = le16_to_cpu(hw->cookie); |
Michael Buesch | ea9a771 | 2006-06-04 02:20:42 +0200 | [diff] [blame] | 1033 | while (stat.cookie == 0) { |
| 1034 | if (unlikely(++i >= 10000)) { |
| 1035 | assert(0); |
| 1036 | break; |
| 1037 | } |
| 1038 | udelay(2); |
| 1039 | barrier(); |
| 1040 | stat.cookie = le16_to_cpu(hw->cookie); |
| 1041 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1042 | stat.flags = hw->flags; |
| 1043 | stat.cnt1 = hw->cnt1; |
| 1044 | stat.cnt2 = hw->cnt2; |
| 1045 | stat.seq = le16_to_cpu(hw->seq); |
| 1046 | stat.unknown = le16_to_cpu(hw->unknown); |
| 1047 | |
| 1048 | bcm43xx_debugfs_log_txstat(ring->bcm, &stat); |
| 1049 | bcm43xx_dma_handle_xmitstatus(ring->bcm, &stat); |
| 1050 | /* recycle the descriptor buffer. */ |
| 1051 | sync_descbuffer_for_device(ring, meta->dmaaddr, ring->rx_buffersize); |
| 1052 | |
| 1053 | return; |
| 1054 | } |
| 1055 | rxhdr = (struct bcm43xx_rxhdr *)skb->data; |
| 1056 | len = le16_to_cpu(rxhdr->frame_length); |
| 1057 | if (len == 0) { |
| 1058 | int i = 0; |
| 1059 | |
| 1060 | do { |
| 1061 | udelay(2); |
| 1062 | barrier(); |
| 1063 | len = le16_to_cpu(rxhdr->frame_length); |
| 1064 | } while (len == 0 && i++ < 5); |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 1065 | if (unlikely(len == 0)) { |
| 1066 | /* recycle the descriptor buffer. */ |
| 1067 | sync_descbuffer_for_device(ring, meta->dmaaddr, |
| 1068 | ring->rx_buffersize); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1069 | goto drop; |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 1070 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1071 | } |
| 1072 | if (unlikely(len > ring->rx_buffersize)) { |
| 1073 | /* The data did not fit into one descriptor buffer |
| 1074 | * and is split over multiple buffers. |
| 1075 | * This should never happen, as we try to allocate buffers |
| 1076 | * big enough. So simply ignore this packet. |
| 1077 | */ |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 1078 | int cnt = 0; |
| 1079 | s32 tmp = len; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1080 | |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 1081 | while (1) { |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 1082 | desc = bcm43xx_dma_idx2desc(ring, *slot, &meta); |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 1083 | /* recycle the descriptor buffer. */ |
| 1084 | sync_descbuffer_for_device(ring, meta->dmaaddr, |
| 1085 | ring->rx_buffersize); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1086 | *slot = next_slot(ring, *slot); |
| 1087 | cnt++; |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 1088 | tmp -= ring->rx_buffersize; |
| 1089 | if (tmp <= 0) |
| 1090 | break; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1091 | } |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 1092 | printkl(KERN_ERR PFX "DMA RX buffer too small " |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 1093 | "(len: %u, buffer: %u, nr-dropped: %d)\n", |
| 1094 | len, ring->rx_buffersize, cnt); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1095 | goto drop; |
| 1096 | } |
| 1097 | len -= IEEE80211_FCS_LEN; |
| 1098 | |
| 1099 | dmaaddr = meta->dmaaddr; |
| 1100 | err = setup_rx_descbuffer(ring, desc, meta, GFP_ATOMIC); |
| 1101 | if (unlikely(err)) { |
| 1102 | dprintkl(KERN_ERR PFX "DMA RX: setup_rx_descbuffer() failed\n"); |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 1103 | sync_descbuffer_for_device(ring, dmaaddr, |
| 1104 | ring->rx_buffersize); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1105 | goto drop; |
| 1106 | } |
| 1107 | |
| 1108 | unmap_descbuffer(ring, dmaaddr, ring->rx_buffersize, 0); |
| 1109 | skb_put(skb, len + ring->frameoffset); |
| 1110 | skb_pull(skb, ring->frameoffset); |
| 1111 | |
| 1112 | err = bcm43xx_rx(ring->bcm, skb, rxhdr); |
| 1113 | if (err) { |
| 1114 | dev_kfree_skb_irq(skb); |
| 1115 | goto drop; |
| 1116 | } |
| 1117 | |
| 1118 | drop: |
| 1119 | return; |
| 1120 | } |
| 1121 | |
Michael Buesch | ea72ab2 | 2006-01-27 17:26:20 +0100 | [diff] [blame] | 1122 | void bcm43xx_dma_rx(struct bcm43xx_dmaring *ring) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1123 | { |
| 1124 | u32 status; |
| 1125 | u16 descptr; |
| 1126 | int slot, current_slot; |
| 1127 | #ifdef CONFIG_BCM43XX_DEBUG |
| 1128 | int used_slots = 0; |
| 1129 | #endif |
| 1130 | |
| 1131 | assert(!ring->tx); |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 1132 | if (ring->dma64) { |
| 1133 | status = bcm43xx_dma_read(ring, BCM43xx_DMA64_RXSTATUS); |
| 1134 | descptr = (status & BCM43xx_DMA64_RXSTATDPTR); |
| 1135 | current_slot = descptr / sizeof(struct bcm43xx_dmadesc64); |
| 1136 | } else { |
| 1137 | status = bcm43xx_dma_read(ring, BCM43xx_DMA32_RXSTATUS); |
| 1138 | descptr = (status & BCM43xx_DMA32_RXDPTR); |
| 1139 | current_slot = descptr / sizeof(struct bcm43xx_dmadesc32); |
| 1140 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1141 | assert(current_slot >= 0 && current_slot < ring->nr_slots); |
| 1142 | |
| 1143 | slot = ring->current_slot; |
| 1144 | for ( ; slot != current_slot; slot = next_slot(ring, slot)) { |
| 1145 | dma_rx(ring, &slot); |
| 1146 | #ifdef CONFIG_BCM43XX_DEBUG |
| 1147 | if (++used_slots > ring->max_used_slots) |
| 1148 | ring->max_used_slots = used_slots; |
| 1149 | #endif |
| 1150 | } |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 1151 | if (ring->dma64) { |
| 1152 | bcm43xx_dma_write(ring, BCM43xx_DMA64_RXINDEX, |
| 1153 | (u32)(slot * sizeof(struct bcm43xx_dmadesc64))); |
| 1154 | } else { |
| 1155 | bcm43xx_dma_write(ring, BCM43xx_DMA32_RXINDEX, |
| 1156 | (u32)(slot * sizeof(struct bcm43xx_dmadesc32))); |
| 1157 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1158 | ring->current_slot = slot; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1159 | } |
| 1160 | |
Michael Buesch | aae3778 | 2006-03-13 15:54:56 +0100 | [diff] [blame] | 1161 | void bcm43xx_dma_tx_suspend(struct bcm43xx_dmaring *ring) |
| 1162 | { |
| 1163 | assert(ring->tx); |
| 1164 | bcm43xx_power_saving_ctl_bits(ring->bcm, -1, 1); |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 1165 | if (ring->dma64) { |
| 1166 | bcm43xx_dma_write(ring, BCM43xx_DMA64_TXCTL, |
| 1167 | bcm43xx_dma_read(ring, BCM43xx_DMA64_TXCTL) |
| 1168 | | BCM43xx_DMA64_TXSUSPEND); |
| 1169 | } else { |
| 1170 | bcm43xx_dma_write(ring, BCM43xx_DMA32_TXCTL, |
| 1171 | bcm43xx_dma_read(ring, BCM43xx_DMA32_TXCTL) |
| 1172 | | BCM43xx_DMA32_TXSUSPEND); |
| 1173 | } |
Michael Buesch | aae3778 | 2006-03-13 15:54:56 +0100 | [diff] [blame] | 1174 | } |
| 1175 | |
| 1176 | void bcm43xx_dma_tx_resume(struct bcm43xx_dmaring *ring) |
| 1177 | { |
| 1178 | assert(ring->tx); |
Michael Buesch | 9218e02 | 2006-08-16 00:25:16 +0200 | [diff] [blame] | 1179 | if (ring->dma64) { |
| 1180 | bcm43xx_dma_write(ring, BCM43xx_DMA64_TXCTL, |
| 1181 | bcm43xx_dma_read(ring, BCM43xx_DMA64_TXCTL) |
| 1182 | & ~BCM43xx_DMA64_TXSUSPEND); |
| 1183 | } else { |
| 1184 | bcm43xx_dma_write(ring, BCM43xx_DMA32_TXCTL, |
| 1185 | bcm43xx_dma_read(ring, BCM43xx_DMA32_TXCTL) |
| 1186 | & ~BCM43xx_DMA32_TXSUSPEND); |
| 1187 | } |
Michael Buesch | aae3778 | 2006-03-13 15:54:56 +0100 | [diff] [blame] | 1188 | bcm43xx_power_saving_ctl_bits(ring->bcm, -1, -1); |
| 1189 | } |