John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1 | /* |
| 2 | |
| 3 | Broadcom BCM43xx wireless driver |
| 4 | |
| 5 | PIO Transmission |
| 6 | |
| 7 | Copyright (c) 2005 Michael Buesch <mbuesch@freenet.de> |
| 8 | |
| 9 | This program is free software; you can redistribute it and/or modify |
| 10 | it under the terms of the GNU General Public License as published by |
| 11 | the Free Software Foundation; either version 2 of the License, or |
| 12 | (at your option) any later version. |
| 13 | |
| 14 | This program is distributed in the hope that it will be useful, |
| 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | GNU General Public License for more details. |
| 18 | |
| 19 | You should have received a copy of the GNU General Public License |
| 20 | along with this program; see the file COPYING. If not, write to |
| 21 | the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, |
| 22 | Boston, MA 02110-1301, USA. |
| 23 | |
| 24 | */ |
| 25 | |
| 26 | #include "bcm43xx.h" |
| 27 | #include "bcm43xx_pio.h" |
| 28 | #include "bcm43xx_main.h" |
Michael Buesch | f398f02 | 2006-02-23 21:15:39 +0100 | [diff] [blame] | 29 | #include "bcm43xx_xmit.h" |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 30 | #include "bcm43xx_power.h" |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 31 | |
| 32 | #include <linux/delay.h> |
| 33 | |
| 34 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 35 | static void tx_start(struct bcm43xx_pioqueue *queue) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 36 | { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 37 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL, |
| 38 | BCM43xx_PIO_TXCTL_INIT); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 39 | } |
| 40 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 41 | static void tx_octet(struct bcm43xx_pioqueue *queue, |
| 42 | u8 octet) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 43 | { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 44 | if (queue->need_workarounds) { |
| 45 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA, |
| 46 | octet); |
| 47 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL, |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 48 | BCM43xx_PIO_TXCTL_WRITELO); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 49 | } else { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 50 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL, |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 51 | BCM43xx_PIO_TXCTL_WRITELO); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 52 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA, |
| 53 | octet); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 54 | } |
| 55 | } |
| 56 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 57 | static u16 tx_get_next_word(struct bcm43xx_txhdr *txhdr, |
| 58 | const u8 *packet, |
| 59 | unsigned int *pos) |
| 60 | { |
| 61 | const u8 *source; |
| 62 | unsigned int i = *pos; |
| 63 | u16 ret; |
| 64 | |
| 65 | if (i < sizeof(*txhdr)) { |
| 66 | source = (const u8 *)txhdr; |
| 67 | } else { |
| 68 | source = packet; |
| 69 | i -= sizeof(*txhdr); |
| 70 | } |
| 71 | ret = le16_to_cpu( *((u16 *)(source + i)) ); |
| 72 | *pos += 2; |
| 73 | |
| 74 | return ret; |
| 75 | } |
| 76 | |
| 77 | static void tx_data(struct bcm43xx_pioqueue *queue, |
| 78 | struct bcm43xx_txhdr *txhdr, |
| 79 | const u8 *packet, |
| 80 | unsigned int octets) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 81 | { |
| 82 | u16 data; |
| 83 | unsigned int i = 0; |
| 84 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 85 | if (queue->need_workarounds) { |
| 86 | data = tx_get_next_word(txhdr, packet, &i); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 87 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA, data); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 88 | } |
| 89 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL, |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 90 | BCM43xx_PIO_TXCTL_WRITELO | |
| 91 | BCM43xx_PIO_TXCTL_WRITEHI); |
| 92 | while (i < octets - 1) { |
| 93 | data = tx_get_next_word(txhdr, packet, &i); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 94 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA, data); |
| 95 | } |
| 96 | if (octets % 2) |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 97 | tx_octet(queue, packet[octets - sizeof(*txhdr) - 1]); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 98 | } |
| 99 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 100 | static void tx_complete(struct bcm43xx_pioqueue *queue, |
| 101 | struct sk_buff *skb) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 102 | { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 103 | if (queue->need_workarounds) { |
| 104 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXDATA, |
| 105 | skb->data[skb->len - 1]); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 106 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL, |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 107 | BCM43xx_PIO_TXCTL_WRITELO | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 108 | BCM43xx_PIO_TXCTL_COMPLETE); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 109 | } else { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 110 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL, |
| 111 | BCM43xx_PIO_TXCTL_COMPLETE); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 112 | } |
| 113 | } |
| 114 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 115 | static u16 generate_cookie(struct bcm43xx_pioqueue *queue, |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 116 | struct bcm43xx_pio_txpacket *packet) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 117 | { |
| 118 | u16 cookie = 0x0000; |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 119 | int packetindex; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 120 | |
| 121 | /* We use the upper 4 bits for the PIO |
| 122 | * controller ID and the lower 12 bits |
| 123 | * for the packet index (in the cache). |
| 124 | */ |
| 125 | switch (queue->mmio_base) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 126 | case BCM43xx_MMIO_PIO1_BASE: |
| 127 | break; |
| 128 | case BCM43xx_MMIO_PIO2_BASE: |
| 129 | cookie = 0x1000; |
| 130 | break; |
| 131 | case BCM43xx_MMIO_PIO3_BASE: |
| 132 | cookie = 0x2000; |
| 133 | break; |
| 134 | case BCM43xx_MMIO_PIO4_BASE: |
| 135 | cookie = 0x3000; |
| 136 | break; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 137 | default: |
| 138 | assert(0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 139 | } |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 140 | packetindex = pio_txpacket_getindex(packet); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 141 | assert(((u16)packetindex & 0xF000) == 0x0000); |
| 142 | cookie |= (u16)packetindex; |
| 143 | |
| 144 | return cookie; |
| 145 | } |
| 146 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 147 | static |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 148 | struct bcm43xx_pioqueue * parse_cookie(struct bcm43xx_private *bcm, |
| 149 | u16 cookie, |
| 150 | struct bcm43xx_pio_txpacket **packet) |
| 151 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 152 | struct bcm43xx_pio *pio = bcm43xx_current_pio(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 153 | struct bcm43xx_pioqueue *queue = NULL; |
| 154 | int packetindex; |
| 155 | |
| 156 | switch (cookie & 0xF000) { |
| 157 | case 0x0000: |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 158 | queue = pio->queue0; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 159 | break; |
| 160 | case 0x1000: |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 161 | queue = pio->queue1; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 162 | break; |
| 163 | case 0x2000: |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 164 | queue = pio->queue2; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 165 | break; |
| 166 | case 0x3000: |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 167 | queue = pio->queue3; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 168 | break; |
| 169 | default: |
| 170 | assert(0); |
| 171 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 172 | packetindex = (cookie & 0x0FFF); |
| 173 | assert(packetindex >= 0 && packetindex < BCM43xx_PIO_MAXTXPACKETS); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 174 | *packet = &(queue->tx_packets_cache[packetindex]); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 175 | |
| 176 | return queue; |
| 177 | } |
| 178 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 179 | static void pio_tx_write_fragment(struct bcm43xx_pioqueue *queue, |
| 180 | struct sk_buff *skb, |
| 181 | struct bcm43xx_pio_txpacket *packet) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 182 | { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 183 | struct bcm43xx_txhdr txhdr; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 184 | unsigned int octets; |
| 185 | |
| 186 | assert(skb_shinfo(skb)->nr_frags == 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 187 | bcm43xx_generate_txhdr(queue->bcm, |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 188 | &txhdr, skb->data, skb->len, |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 189 | (packet->xmitted_frags == 0), |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 190 | generate_cookie(queue, packet)); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 191 | |
| 192 | tx_start(queue); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 193 | octets = skb->len + sizeof(txhdr); |
| 194 | if (queue->need_workarounds) |
| 195 | octets--; |
| 196 | tx_data(queue, &txhdr, (u8 *)skb->data, octets); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 197 | tx_complete(queue, skb); |
| 198 | } |
| 199 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 200 | static void free_txpacket(struct bcm43xx_pio_txpacket *packet, |
| 201 | int irq_context) |
| 202 | { |
| 203 | struct bcm43xx_pioqueue *queue = packet->queue; |
| 204 | |
| 205 | ieee80211_txb_free(packet->txb); |
| 206 | list_move(&packet->list, &queue->txfree); |
| 207 | queue->nr_txfree++; |
| 208 | |
| 209 | assert(queue->tx_devq_used >= packet->xmitted_octets); |
| 210 | assert(queue->tx_devq_packets >= packet->xmitted_frags); |
| 211 | queue->tx_devq_used -= packet->xmitted_octets; |
| 212 | queue->tx_devq_packets -= packet->xmitted_frags; |
| 213 | } |
| 214 | |
| 215 | static int pio_tx_packet(struct bcm43xx_pio_txpacket *packet) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 216 | { |
| 217 | struct bcm43xx_pioqueue *queue = packet->queue; |
| 218 | struct ieee80211_txb *txb = packet->txb; |
| 219 | struct sk_buff *skb; |
| 220 | u16 octets; |
| 221 | int i; |
| 222 | |
| 223 | for (i = packet->xmitted_frags; i < txb->nr_frags; i++) { |
| 224 | skb = txb->fragments[i]; |
| 225 | |
| 226 | octets = (u16)skb->len + sizeof(struct bcm43xx_txhdr); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 227 | assert(queue->tx_devq_size >= octets); |
| 228 | assert(queue->tx_devq_packets <= BCM43xx_PIO_MAXTXDEVQPACKETS); |
| 229 | assert(queue->tx_devq_used <= queue->tx_devq_size); |
| 230 | /* Check if there is sufficient free space on the device |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 231 | * TX queue. If not, return and let the TX tasklet |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 232 | * retry later. |
| 233 | */ |
| 234 | if (queue->tx_devq_packets == BCM43xx_PIO_MAXTXDEVQPACKETS) |
| 235 | return -EBUSY; |
| 236 | if (queue->tx_devq_used + octets > queue->tx_devq_size) |
| 237 | return -EBUSY; |
| 238 | /* Now poke the device. */ |
| 239 | pio_tx_write_fragment(queue, skb, packet); |
| 240 | |
| 241 | /* Account for the packet size. |
| 242 | * (We must not overflow the device TX queue) |
| 243 | */ |
| 244 | queue->tx_devq_packets++; |
| 245 | queue->tx_devq_used += octets; |
| 246 | |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 247 | assert(packet->xmitted_frags < packet->txb->nr_frags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 248 | packet->xmitted_frags++; |
| 249 | packet->xmitted_octets += octets; |
| 250 | } |
| 251 | list_move_tail(&packet->list, &queue->txrunning); |
| 252 | |
| 253 | return 0; |
| 254 | } |
| 255 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 256 | static void tx_tasklet(unsigned long d) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 257 | { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 258 | struct bcm43xx_pioqueue *queue = (struct bcm43xx_pioqueue *)d; |
| 259 | struct bcm43xx_private *bcm = queue->bcm; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 260 | unsigned long flags; |
| 261 | struct bcm43xx_pio_txpacket *packet, *tmp_packet; |
| 262 | int err; |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 263 | u16 txctl; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 264 | |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 265 | spin_lock_irqsave(&bcm->irq_lock, flags); |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 266 | |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 267 | if (queue->tx_frozen) |
| 268 | goto out_unlock; |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 269 | txctl = bcm43xx_pio_read(queue, BCM43xx_PIO_TXCTL); |
| 270 | if (txctl & BCM43xx_PIO_TXCTL_SUSPEND) |
| 271 | goto out_unlock; |
| 272 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 273 | list_for_each_entry_safe(packet, tmp_packet, &queue->txqueue, list) { |
| 274 | assert(packet->xmitted_frags < packet->txb->nr_frags); |
| 275 | if (packet->xmitted_frags == 0) { |
| 276 | int i; |
| 277 | struct sk_buff *skb; |
| 278 | |
| 279 | /* Check if the device queue is big |
| 280 | * enough for every fragment. If not, drop the |
| 281 | * whole packet. |
| 282 | */ |
| 283 | for (i = 0; i < packet->txb->nr_frags; i++) { |
| 284 | skb = packet->txb->fragments[i]; |
| 285 | if (unlikely(skb->len > queue->tx_devq_size)) { |
| 286 | dprintkl(KERN_ERR PFX "PIO TX device queue too small. " |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 287 | "Dropping packet.\n"); |
| 288 | free_txpacket(packet, 1); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 289 | goto next_packet; |
| 290 | } |
| 291 | } |
| 292 | } |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 293 | /* Try to transmit the packet. |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 294 | * This may not completely succeed. |
| 295 | */ |
| 296 | err = pio_tx_packet(packet); |
| 297 | if (err) |
| 298 | break; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 299 | next_packet: |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 300 | continue; |
| 301 | } |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 302 | out_unlock: |
Michael Buesch | efa6a37 | 2006-06-27 21:38:40 +0200 | [diff] [blame] | 303 | spin_unlock_irqrestore(&bcm->irq_lock, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | static void setup_txqueues(struct bcm43xx_pioqueue *queue) |
| 307 | { |
| 308 | struct bcm43xx_pio_txpacket *packet; |
| 309 | int i; |
| 310 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 311 | queue->nr_txfree = BCM43xx_PIO_MAXTXPACKETS; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 312 | for (i = 0; i < BCM43xx_PIO_MAXTXPACKETS; i++) { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 313 | packet = &(queue->tx_packets_cache[i]); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 314 | |
| 315 | packet->queue = queue; |
| 316 | INIT_LIST_HEAD(&packet->list); |
| 317 | |
| 318 | list_add(&packet->list, &queue->txfree); |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | static |
| 323 | struct bcm43xx_pioqueue * bcm43xx_setup_pioqueue(struct bcm43xx_private *bcm, |
| 324 | u16 pio_mmio_base) |
| 325 | { |
| 326 | struct bcm43xx_pioqueue *queue; |
| 327 | u32 value; |
| 328 | u16 qsize; |
| 329 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 330 | queue = kzalloc(sizeof(*queue), GFP_KERNEL); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 331 | if (!queue) |
| 332 | goto out; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 333 | |
| 334 | queue->bcm = bcm; |
| 335 | queue->mmio_base = pio_mmio_base; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 336 | queue->need_workarounds = (bcm->current_core->rev < 3); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 337 | |
| 338 | INIT_LIST_HEAD(&queue->txfree); |
| 339 | INIT_LIST_HEAD(&queue->txqueue); |
| 340 | INIT_LIST_HEAD(&queue->txrunning); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 341 | tasklet_init(&queue->txtask, tx_tasklet, |
| 342 | (unsigned long)queue); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 343 | |
| 344 | value = bcm43xx_read32(bcm, BCM43xx_MMIO_STATUS_BITFIELD); |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 345 | value &= ~BCM43xx_SBF_XFER_REG_BYTESWAP; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 346 | bcm43xx_write32(bcm, BCM43xx_MMIO_STATUS_BITFIELD, value); |
| 347 | |
| 348 | qsize = bcm43xx_read16(bcm, queue->mmio_base + BCM43xx_PIO_TXQBUFSIZE); |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 349 | if (qsize == 0) { |
| 350 | printk(KERN_ERR PFX "ERROR: This card does not support PIO " |
| 351 | "operation mode. Please use DMA mode " |
| 352 | "(module parameter pio=0).\n"); |
| 353 | goto err_freequeue; |
| 354 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 355 | if (qsize <= BCM43xx_PIO_TXQADJUST) { |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 356 | printk(KERN_ERR PFX "PIO tx device-queue too small (%u)\n", |
| 357 | qsize); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 358 | goto err_freequeue; |
| 359 | } |
| 360 | qsize -= BCM43xx_PIO_TXQADJUST; |
| 361 | queue->tx_devq_size = qsize; |
| 362 | |
| 363 | setup_txqueues(queue); |
| 364 | |
| 365 | out: |
| 366 | return queue; |
| 367 | |
| 368 | err_freequeue: |
| 369 | kfree(queue); |
| 370 | queue = NULL; |
| 371 | goto out; |
| 372 | } |
| 373 | |
| 374 | static void cancel_transfers(struct bcm43xx_pioqueue *queue) |
| 375 | { |
| 376 | struct bcm43xx_pio_txpacket *packet, *tmp_packet; |
| 377 | |
| 378 | netif_tx_disable(queue->bcm->net_dev); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 379 | tasklet_disable(&queue->txtask); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 380 | |
| 381 | list_for_each_entry_safe(packet, tmp_packet, &queue->txrunning, list) |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 382 | free_txpacket(packet, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 383 | list_for_each_entry_safe(packet, tmp_packet, &queue->txqueue, list) |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 384 | free_txpacket(packet, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | static void bcm43xx_destroy_pioqueue(struct bcm43xx_pioqueue *queue) |
| 388 | { |
| 389 | if (!queue) |
| 390 | return; |
| 391 | |
| 392 | cancel_transfers(queue); |
| 393 | kfree(queue); |
| 394 | } |
| 395 | |
| 396 | void bcm43xx_pio_free(struct bcm43xx_private *bcm) |
| 397 | { |
Michael Buesch | 49f29efa | 2006-03-14 16:05:26 +0100 | [diff] [blame] | 398 | struct bcm43xx_pio *pio; |
| 399 | |
| 400 | if (!bcm43xx_using_pio(bcm)) |
| 401 | return; |
| 402 | pio = bcm43xx_current_pio(bcm); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 403 | |
| 404 | bcm43xx_destroy_pioqueue(pio->queue3); |
| 405 | pio->queue3 = NULL; |
| 406 | bcm43xx_destroy_pioqueue(pio->queue2); |
| 407 | pio->queue2 = NULL; |
| 408 | bcm43xx_destroy_pioqueue(pio->queue1); |
| 409 | pio->queue1 = NULL; |
| 410 | bcm43xx_destroy_pioqueue(pio->queue0); |
| 411 | pio->queue0 = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | int bcm43xx_pio_init(struct bcm43xx_private *bcm) |
| 415 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 416 | struct bcm43xx_pio *pio = bcm43xx_current_pio(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 417 | struct bcm43xx_pioqueue *queue; |
| 418 | int err = -ENOMEM; |
| 419 | |
| 420 | queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO1_BASE); |
| 421 | if (!queue) |
| 422 | goto out; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 423 | pio->queue0 = queue; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 424 | |
| 425 | queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO2_BASE); |
| 426 | if (!queue) |
| 427 | goto err_destroy0; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 428 | pio->queue1 = queue; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 429 | |
| 430 | queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO3_BASE); |
| 431 | if (!queue) |
| 432 | goto err_destroy1; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 433 | pio->queue2 = queue; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 434 | |
| 435 | queue = bcm43xx_setup_pioqueue(bcm, BCM43xx_MMIO_PIO4_BASE); |
| 436 | if (!queue) |
| 437 | goto err_destroy2; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 438 | pio->queue3 = queue; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 439 | |
| 440 | if (bcm->current_core->rev < 3) |
| 441 | bcm->irq_savedstate |= BCM43xx_IRQ_PIO_WORKAROUND; |
| 442 | |
| 443 | dprintk(KERN_INFO PFX "PIO initialized\n"); |
| 444 | err = 0; |
| 445 | out: |
| 446 | return err; |
| 447 | |
| 448 | err_destroy2: |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 449 | bcm43xx_destroy_pioqueue(pio->queue2); |
| 450 | pio->queue2 = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 451 | err_destroy1: |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 452 | bcm43xx_destroy_pioqueue(pio->queue1); |
| 453 | pio->queue1 = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 454 | err_destroy0: |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 455 | bcm43xx_destroy_pioqueue(pio->queue0); |
| 456 | pio->queue0 = NULL; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 457 | goto out; |
| 458 | } |
| 459 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 460 | int bcm43xx_pio_tx(struct bcm43xx_private *bcm, |
| 461 | struct ieee80211_txb *txb) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 462 | { |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 463 | struct bcm43xx_pioqueue *queue = bcm43xx_current_pio(bcm)->queue1; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 464 | struct bcm43xx_pio_txpacket *packet; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 465 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 466 | assert(!queue->tx_suspended); |
| 467 | assert(!list_empty(&queue->txfree)); |
| 468 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 469 | packet = list_entry(queue->txfree.next, struct bcm43xx_pio_txpacket, list); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 470 | packet->txb = txb; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 471 | packet->xmitted_frags = 0; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 472 | packet->xmitted_octets = 0; |
| 473 | list_move_tail(&packet->list, &queue->txqueue); |
| 474 | queue->nr_txfree--; |
| 475 | assert(queue->nr_txfree < BCM43xx_PIO_MAXTXPACKETS); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 476 | |
| 477 | /* Suspend TX, if we are out of packets in the "free" queue. */ |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 478 | if (list_empty(&queue->txfree)) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 479 | netif_stop_queue(queue->bcm->net_dev); |
| 480 | queue->tx_suspended = 1; |
| 481 | } |
| 482 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 483 | tasklet_schedule(&queue->txtask); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 484 | |
| 485 | return 0; |
| 486 | } |
| 487 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 488 | void bcm43xx_pio_handle_xmitstatus(struct bcm43xx_private *bcm, |
| 489 | struct bcm43xx_xmitstatus *status) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 490 | { |
| 491 | struct bcm43xx_pioqueue *queue; |
| 492 | struct bcm43xx_pio_txpacket *packet; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 493 | |
| 494 | queue = parse_cookie(bcm, status->cookie, &packet); |
| 495 | assert(queue); |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 496 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 497 | free_txpacket(packet, 1); |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 498 | if (queue->tx_suspended) { |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 499 | queue->tx_suspended = 0; |
| 500 | netif_wake_queue(queue->bcm->net_dev); |
| 501 | } |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 502 | /* If there are packets on the txqueue, poke the tasklet |
| 503 | * to transmit them. |
| 504 | */ |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 505 | if (!list_empty(&queue->txqueue)) |
| 506 | tasklet_schedule(&queue->txtask); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 507 | } |
| 508 | |
| 509 | static void pio_rx_error(struct bcm43xx_pioqueue *queue, |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 510 | int clear_buffers, |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 511 | const char *error) |
| 512 | { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 513 | int i; |
| 514 | |
| 515 | printkl("PIO RX error: %s\n", error); |
| 516 | bcm43xx_pio_write(queue, BCM43xx_PIO_RXCTL, |
| 517 | BCM43xx_PIO_RXCTL_READY); |
| 518 | if (clear_buffers) { |
| 519 | assert(queue->mmio_base == BCM43xx_MMIO_PIO1_BASE); |
| 520 | for (i = 0; i < 15; i++) { |
| 521 | /* Dummy read. */ |
| 522 | bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA); |
| 523 | } |
| 524 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 525 | } |
| 526 | |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 527 | void bcm43xx_pio_rx(struct bcm43xx_pioqueue *queue) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 528 | { |
| 529 | u16 preamble[21] = { 0 }; |
| 530 | struct bcm43xx_rxhdr *rxhdr; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 531 | u16 tmp, len, rxflags2; |
| 532 | int i, preamble_readwords; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 533 | struct sk_buff *skb; |
| 534 | |
| 535 | tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXCTL); |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 536 | if (!(tmp & BCM43xx_PIO_RXCTL_DATAAVAILABLE)) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 537 | return; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 538 | bcm43xx_pio_write(queue, BCM43xx_PIO_RXCTL, |
| 539 | BCM43xx_PIO_RXCTL_DATAAVAILABLE); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 540 | |
| 541 | for (i = 0; i < 10; i++) { |
| 542 | tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXCTL); |
| 543 | if (tmp & BCM43xx_PIO_RXCTL_READY) |
| 544 | goto data_ready; |
| 545 | udelay(10); |
| 546 | } |
| 547 | dprintkl(KERN_ERR PFX "PIO RX timed out\n"); |
| 548 | return; |
| 549 | data_ready: |
| 550 | |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 551 | len = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 552 | if (unlikely(len > 0x700)) { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 553 | pio_rx_error(queue, 0, "len > 0x700"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 554 | return; |
| 555 | } |
| 556 | if (unlikely(len == 0 && queue->mmio_base != BCM43xx_MMIO_PIO4_BASE)) { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 557 | pio_rx_error(queue, 0, "len == 0"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 558 | return; |
| 559 | } |
| 560 | preamble[0] = cpu_to_le16(len); |
| 561 | if (queue->mmio_base == BCM43xx_MMIO_PIO4_BASE) |
| 562 | preamble_readwords = 14 / sizeof(u16); |
| 563 | else |
| 564 | preamble_readwords = 18 / sizeof(u16); |
| 565 | for (i = 0; i < preamble_readwords; i++) { |
| 566 | tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA); |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 567 | preamble[i + 1] = cpu_to_le16(tmp); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 568 | } |
| 569 | rxhdr = (struct bcm43xx_rxhdr *)preamble; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 570 | rxflags2 = le16_to_cpu(rxhdr->flags2); |
| 571 | if (unlikely(rxflags2 & BCM43xx_RXHDR_FLAGS2_INVALIDFRAME)) { |
| 572 | pio_rx_error(queue, |
| 573 | (queue->mmio_base == BCM43xx_MMIO_PIO1_BASE), |
| 574 | "invalid frame"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 575 | return; |
| 576 | } |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 577 | if (queue->mmio_base == BCM43xx_MMIO_PIO4_BASE) { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 578 | /* We received an xmit status. */ |
| 579 | struct bcm43xx_hwxmitstatus *hw; |
| 580 | struct bcm43xx_xmitstatus stat; |
| 581 | |
| 582 | hw = (struct bcm43xx_hwxmitstatus *)(preamble + 1); |
| 583 | stat.cookie = le16_to_cpu(hw->cookie); |
| 584 | stat.flags = hw->flags; |
| 585 | stat.cnt1 = hw->cnt1; |
| 586 | stat.cnt2 = hw->cnt2; |
| 587 | stat.seq = le16_to_cpu(hw->seq); |
| 588 | stat.unknown = le16_to_cpu(hw->unknown); |
| 589 | |
| 590 | bcm43xx_debugfs_log_txstat(queue->bcm, &stat); |
| 591 | bcm43xx_pio_handle_xmitstatus(queue->bcm, &stat); |
| 592 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 593 | return; |
| 594 | } |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 595 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 596 | skb = dev_alloc_skb(len); |
| 597 | if (unlikely(!skb)) { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 598 | pio_rx_error(queue, 1, "OOM"); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 599 | return; |
| 600 | } |
| 601 | skb_put(skb, len); |
| 602 | for (i = 0; i < len - 1; i += 2) { |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 603 | tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA); |
| 604 | *((u16 *)(skb->data + i)) = cpu_to_le16(tmp); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 605 | } |
| 606 | if (len % 2) { |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 607 | tmp = bcm43xx_pio_read(queue, BCM43xx_PIO_RXDATA); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 608 | skb->data[len - 1] = (tmp & 0x00FF); |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 609 | /* The specs say the following is required, but |
| 610 | * it is wrong and corrupts the PLCP. If we don't do |
| 611 | * this, the PLCP seems to be correct. So ifdef it out for now. |
| 612 | */ |
| 613 | #if 0 |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 614 | if (rxflags2 & BCM43xx_RXHDR_FLAGS2_TYPE2FRAME) |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 615 | skb->data[2] = (tmp & 0xFF00) >> 8; |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 616 | else |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 617 | skb->data[0] = (tmp & 0xFF00) >> 8; |
| 618 | #endif |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 619 | } |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 620 | skb_trim(skb, len - IEEE80211_FCS_LEN); |
Michael Buesch | 77db31e | 2006-02-12 16:47:44 +0100 | [diff] [blame] | 621 | bcm43xx_rx(queue->bcm, skb, rxhdr); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 622 | } |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 623 | |
| 624 | void bcm43xx_pio_tx_suspend(struct bcm43xx_pioqueue *queue) |
| 625 | { |
| 626 | bcm43xx_power_saving_ctl_bits(queue->bcm, -1, 1); |
| 627 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL, |
| 628 | bcm43xx_pio_read(queue, BCM43xx_PIO_TXCTL) |
| 629 | | BCM43xx_PIO_TXCTL_SUSPEND); |
| 630 | } |
| 631 | |
| 632 | void bcm43xx_pio_tx_resume(struct bcm43xx_pioqueue *queue) |
| 633 | { |
| 634 | bcm43xx_pio_write(queue, BCM43xx_PIO_TXCTL, |
| 635 | bcm43xx_pio_read(queue, BCM43xx_PIO_TXCTL) |
| 636 | & ~BCM43xx_PIO_TXCTL_SUSPEND); |
| 637 | bcm43xx_power_saving_ctl_bits(queue->bcm, -1, -1); |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 638 | if (!list_empty(&queue->txqueue)) |
| 639 | tasklet_schedule(&queue->txtask); |
Michael Buesch | 7c241d3 | 2006-04-23 13:23:10 +0200 | [diff] [blame] | 640 | } |
Michael Buesch | 91769e7 | 2006-06-05 20:24:21 +0200 | [diff] [blame] | 641 | |
| 642 | void bcm43xx_pio_freeze_txqueues(struct bcm43xx_private *bcm) |
| 643 | { |
| 644 | struct bcm43xx_pio *pio; |
| 645 | |
| 646 | assert(bcm43xx_using_pio(bcm)); |
| 647 | pio = bcm43xx_current_pio(bcm); |
| 648 | pio->queue0->tx_frozen = 1; |
| 649 | pio->queue1->tx_frozen = 1; |
| 650 | pio->queue2->tx_frozen = 1; |
| 651 | pio->queue3->tx_frozen = 1; |
| 652 | } |
| 653 | |
| 654 | void bcm43xx_pio_thaw_txqueues(struct bcm43xx_private *bcm) |
| 655 | { |
| 656 | struct bcm43xx_pio *pio; |
| 657 | |
| 658 | assert(bcm43xx_using_pio(bcm)); |
| 659 | pio = bcm43xx_current_pio(bcm); |
| 660 | pio->queue0->tx_frozen = 0; |
| 661 | pio->queue1->tx_frozen = 0; |
| 662 | pio->queue2->tx_frozen = 0; |
| 663 | pio->queue3->tx_frozen = 0; |
| 664 | if (!list_empty(&pio->queue0->txqueue)) |
| 665 | tasklet_schedule(&pio->queue0->txtask); |
| 666 | if (!list_empty(&pio->queue1->txqueue)) |
| 667 | tasklet_schedule(&pio->queue1->txtask); |
| 668 | if (!list_empty(&pio->queue2->txqueue)) |
| 669 | tasklet_schedule(&pio->queue2->txtask); |
| 670 | if (!list_empty(&pio->queue3->txqueue)) |
| 671 | tasklet_schedule(&pio->queue3->txtask); |
| 672 | } |
| 673 | |
| 674 | |