[PATCH] prism54 : Transmit stats updated in wrong place
[safe/jmp/linux-2.6] / drivers / net / wireless / prism54 / islpci_eth.c
1 /*
2  *  
3  *  Copyright (C) 2002 Intersil Americas Inc.
4  *  Copyright (C) 2004 Aurelien Alleaume <slts@free.fr>
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  *
18  */
19
20 #include <linux/version.h>
21 #include <linux/module.h>
22
23 #include <linux/pci.h>
24 #include <linux/delay.h>
25 #include <linux/netdevice.h>
26 #include <linux/etherdevice.h>
27 #include <linux/if_arp.h>
28
29 #include "prismcompat.h"
30 #include "isl_38xx.h"
31 #include "islpci_eth.h"
32 #include "islpci_mgt.h"
33 #include "oid_mgt.h"
34
35 /******************************************************************************
36     Network Interface functions
37 ******************************************************************************/
38 void
39 islpci_eth_cleanup_transmit(islpci_private *priv,
40                             isl38xx_control_block *control_block)
41 {
42         struct sk_buff *skb;
43         u32 index;
44
45         /* compare the control block read pointer with the free pointer */
46         while (priv->free_data_tx !=
47                le32_to_cpu(control_block->
48                            device_curr_frag[ISL38XX_CB_TX_DATA_LQ])) {
49                 /* read the index of the first fragment to be freed */
50                 index = priv->free_data_tx % ISL38XX_CB_TX_QSIZE;
51
52                 /* check for holes in the arrays caused by multi fragment frames 
53                  * searching for the last fragment of a frame */
54                 if (priv->pci_map_tx_address[index] != (dma_addr_t) NULL) {
55                         /* entry is the last fragment of a frame
56                          * free the skb structure and unmap pci memory */
57                         skb = priv->data_low_tx[index];
58
59 #if VERBOSE > SHOW_ERROR_MESSAGES
60                         DEBUG(SHOW_TRACING,
61                               "cleanup skb %p skb->data %p skb->len %u truesize %u\n ",
62                               skb, skb->data, skb->len, skb->truesize);
63 #endif
64
65                         pci_unmap_single(priv->pdev,
66                                          priv->pci_map_tx_address[index],
67                                          skb->len, PCI_DMA_TODEVICE);
68                         dev_kfree_skb_irq(skb);
69                         skb = NULL;
70                 }
71                 /* increment the free data low queue pointer */
72                 priv->free_data_tx++;
73         }
74 }
75
76 int
77 islpci_eth_transmit(struct sk_buff *skb, struct net_device *ndev)
78 {
79         islpci_private *priv = netdev_priv(ndev);
80         isl38xx_control_block *cb = priv->control_block;
81         u32 index;
82         dma_addr_t pci_map_address;
83         int frame_size;
84         isl38xx_fragment *fragment;
85         int offset;
86         struct sk_buff *newskb;
87         int newskb_offset;
88         unsigned long flags;
89         unsigned char wds_mac[6];
90         u32 curr_frag;
91         int err = 0;
92
93 #if VERBOSE > SHOW_ERROR_MESSAGES
94         DEBUG(SHOW_FUNCTION_CALLS, "islpci_eth_transmit \n");
95 #endif
96
97         /* lock the driver code */
98         spin_lock_irqsave(&priv->slock, flags);
99
100         /* check whether the destination queue has enough fragments for the frame */
101         curr_frag = le32_to_cpu(cb->driver_curr_frag[ISL38XX_CB_TX_DATA_LQ]);
102         if (unlikely(curr_frag - priv->free_data_tx >= ISL38XX_CB_TX_QSIZE)) {
103                 printk(KERN_ERR "%s: transmit device queue full when awake\n",
104                        ndev->name);
105                 netif_stop_queue(ndev);
106
107                 /* trigger the device */
108                 isl38xx_w32_flush(priv->device_base, ISL38XX_DEV_INT_UPDATE,
109                                   ISL38XX_DEV_INT_REG);
110                 udelay(ISL38XX_WRITEIO_DELAY);
111
112                 err = -EBUSY;
113                 goto drop_free;
114         }
115         /* Check alignment and WDS frame formatting. The start of the packet should
116          * be aligned on a 4-byte boundary. If WDS is enabled add another 6 bytes
117          * and add WDS address information */
118         if (likely(((long) skb->data & 0x03) | init_wds)) {
119                 /* get the number of bytes to add and re-allign */
120                 offset = (4 - (long) skb->data) & 0x03;
121                 offset += init_wds ? 6 : 0;
122
123                 /* check whether the current skb can be used  */
124                 if (!skb_cloned(skb) && (skb_tailroom(skb) >= offset)) {
125                         unsigned char *src = skb->data;
126
127 #if VERBOSE > SHOW_ERROR_MESSAGES
128                         DEBUG(SHOW_TRACING, "skb offset %i wds %i\n", offset,
129                               init_wds);
130 #endif
131
132                         /* align the buffer on 4-byte boundary */
133                         skb_reserve(skb, (4 - (long) skb->data) & 0x03);
134                         if (init_wds) {
135                                 /* wds requires an additional address field of 6 bytes */
136                                 skb_put(skb, 6);
137 #ifdef ISLPCI_ETH_DEBUG
138                                 printk("islpci_eth_transmit:wds_mac\n");
139 #endif
140                                 memmove(skb->data + 6, src, skb->len);
141                                 memcpy(skb->data, wds_mac, 6);
142                         } else {
143                                 memmove(skb->data, src, skb->len);
144                         }
145
146 #if VERBOSE > SHOW_ERROR_MESSAGES
147                         DEBUG(SHOW_TRACING, "memmove %p %p %i \n", skb->data,
148                               src, skb->len);
149 #endif
150                 } else {
151                         newskb =
152                             dev_alloc_skb(init_wds ? skb->len + 6 : skb->len);
153                         if (unlikely(newskb == NULL)) {
154                                 printk(KERN_ERR "%s: Cannot allocate skb\n",
155                                        ndev->name);
156                                 err = -ENOMEM;
157                                 goto drop_free;
158                         }
159                         newskb_offset = (4 - (long) newskb->data) & 0x03;
160
161                         /* Check if newskb->data is aligned */
162                         if (newskb_offset)
163                                 skb_reserve(newskb, newskb_offset);
164
165                         skb_put(newskb, init_wds ? skb->len + 6 : skb->len);
166                         if (init_wds) {
167                                 memcpy(newskb->data + 6, skb->data, skb->len);
168                                 memcpy(newskb->data, wds_mac, 6);
169 #ifdef ISLPCI_ETH_DEBUG
170                                 printk("islpci_eth_transmit:wds_mac\n");
171 #endif
172                         } else
173                                 memcpy(newskb->data, skb->data, skb->len);
174
175 #if VERBOSE > SHOW_ERROR_MESSAGES
176                         DEBUG(SHOW_TRACING, "memcpy %p %p %i wds %i\n",
177                               newskb->data, skb->data, skb->len, init_wds);
178 #endif
179
180                         newskb->dev = skb->dev;
181                         dev_kfree_skb(skb);
182                         skb = newskb;
183                 }
184         }
185         /* display the buffer contents for debugging */
186 #if VERBOSE > SHOW_ERROR_MESSAGES
187         DEBUG(SHOW_BUFFER_CONTENTS, "\ntx %p ", skb->data);
188         display_buffer((char *) skb->data, skb->len);
189 #endif
190
191         /* map the skb buffer to pci memory for DMA operation */
192         pci_map_address = pci_map_single(priv->pdev,
193                                          (void *) skb->data, skb->len,
194                                          PCI_DMA_TODEVICE);
195         if (unlikely(pci_map_address == 0)) {
196                 printk(KERN_WARNING "%s: cannot map buffer to PCI\n",
197                        ndev->name);
198
199                 err = -EIO;
200                 goto drop_free;
201         }
202         /* Place the fragment in the control block structure. */
203         index = curr_frag % ISL38XX_CB_TX_QSIZE;
204         fragment = &cb->tx_data_low[index];
205
206         priv->pci_map_tx_address[index] = pci_map_address;
207         /* store the skb address for future freeing  */
208         priv->data_low_tx[index] = skb;
209         /* set the proper fragment start address and size information */
210         frame_size = skb->len;
211         fragment->size = cpu_to_le16(frame_size);
212         fragment->flags = cpu_to_le16(0);       /* set to 1 if more fragments */
213         fragment->address = cpu_to_le32(pci_map_address);
214         curr_frag++;
215
216         /* The fragment address in the control block must have been
217          * written before announcing the frame buffer to device. */
218         wmb();
219         cb->driver_curr_frag[ISL38XX_CB_TX_DATA_LQ] = cpu_to_le32(curr_frag);
220
221         if (curr_frag - priv->free_data_tx + ISL38XX_MIN_QTHRESHOLD
222             > ISL38XX_CB_TX_QSIZE) {
223                 /* stop sends from upper layers */
224                 netif_stop_queue(ndev);
225
226                 /* set the full flag for the transmission queue */
227                 priv->data_low_tx_full = 1;
228         }
229
230         /* set the transmission time */
231         ndev->trans_start = jiffies;
232         priv->statistics.tx_packets++;
233         priv->statistics.tx_bytes += skb->len;
234
235         /* trigger the device */
236         islpci_trigger(priv);
237
238         /* unlock the driver code */
239         spin_unlock_irqrestore(&priv->slock, flags);
240
241         return 0;
242
243       drop_free:
244         priv->statistics.tx_dropped++;
245         spin_unlock_irqrestore(&priv->slock, flags);
246         dev_kfree_skb(skb);
247         skb = NULL;
248         return err;
249 }
250
251 static inline int
252 islpci_monitor_rx(islpci_private *priv, struct sk_buff **skb)
253 {
254         /* The card reports full 802.11 packets but with a 20 bytes
255          * header and without the FCS. But there a is a bit that
256          * indicates if the packet is corrupted :-) */
257         struct rfmon_header *hdr = (struct rfmon_header *) (*skb)->data;
258         if (hdr->flags & 0x01)
259                 /* This one is bad. Drop it ! */
260                 return -1;
261         if (priv->ndev->type == ARPHRD_IEEE80211_PRISM) {
262                 struct avs_80211_1_header *avs;
263                 /* extract the relevant data from the header */
264                 u32 clock = le32_to_cpu(hdr->clock);
265                 u8 rate = hdr->rate;
266                 u16 freq = le16_to_cpu(hdr->freq);
267                 u8 rssi = hdr->rssi;
268
269                 skb_pull(*skb, sizeof (struct rfmon_header));
270
271                 if (skb_headroom(*skb) < sizeof (struct avs_80211_1_header)) {
272                         struct sk_buff *newskb = skb_copy_expand(*skb,
273                                                                  sizeof (struct
274                                                                          avs_80211_1_header),
275                                                                  0, GFP_ATOMIC);
276                         if (newskb) {
277                                 dev_kfree_skb_irq(*skb);
278                                 *skb = newskb;
279                         } else
280                                 return -1;
281                         /* This behavior is not very subtile... */
282                 }
283
284                 /* make room for the new header and fill it. */
285                 avs =
286                     (struct avs_80211_1_header *) skb_push(*skb,
287                                                            sizeof (struct
288                                                                    avs_80211_1_header));
289                 
290                 avs->version = cpu_to_be32(P80211CAPTURE_VERSION);
291                 avs->length = cpu_to_be32(sizeof (struct avs_80211_1_header));
292                 avs->mactime = cpu_to_be64(le64_to_cpu(clock));
293                 avs->hosttime = cpu_to_be64(jiffies);
294                 avs->phytype = cpu_to_be32(6);  /*OFDM: 6 for (g), 8 for (a) */
295                 avs->channel = cpu_to_be32(channel_of_freq(freq));
296                 avs->datarate = cpu_to_be32(rate * 5);
297                 avs->antenna = cpu_to_be32(0);  /*unknown */
298                 avs->priority = cpu_to_be32(0); /*unknown */
299                 avs->ssi_type = cpu_to_be32(3); /*2: dBm, 3: raw RSSI */
300                 avs->ssi_signal = cpu_to_be32(rssi & 0x7f);
301                 avs->ssi_noise = cpu_to_be32(priv->local_iwstatistics.qual.noise);      /*better than 'undefined', I assume */
302                 avs->preamble = cpu_to_be32(0); /*unknown */
303                 avs->encoding = cpu_to_be32(0); /*unknown */
304         } else
305                 skb_pull(*skb, sizeof (struct rfmon_header));
306
307         (*skb)->protocol = htons(ETH_P_802_2);
308         (*skb)->mac.raw = (*skb)->data;
309         (*skb)->pkt_type = PACKET_OTHERHOST;
310
311         return 0;
312 }
313
314 int
315 islpci_eth_receive(islpci_private *priv)
316 {
317         struct net_device *ndev = priv->ndev;
318         isl38xx_control_block *control_block = priv->control_block;
319         struct sk_buff *skb;
320         u16 size;
321         u32 index, offset;
322         unsigned char *src;
323         int discard = 0;
324
325 #if VERBOSE > SHOW_ERROR_MESSAGES
326         DEBUG(SHOW_FUNCTION_CALLS, "islpci_eth_receive \n");
327 #endif
328
329         /* the device has written an Ethernet frame in the data area
330          * of the sk_buff without updating the structure, do it now */
331         index = priv->free_data_rx % ISL38XX_CB_RX_QSIZE;
332         size = le16_to_cpu(control_block->rx_data_low[index].size);
333         skb = priv->data_low_rx[index];
334         offset = ((unsigned long)
335                   le32_to_cpu(control_block->rx_data_low[index].address) -
336                   (unsigned long) skb->data) & 3;
337
338 #if VERBOSE > SHOW_ERROR_MESSAGES
339         DEBUG(SHOW_TRACING,
340               "frq->addr %x skb->data %p skb->len %u offset %u truesize %u\n ",
341               control_block->rx_data_low[priv->free_data_rx].address, skb->data,
342               skb->len, offset, skb->truesize);
343 #endif
344
345         /* delete the streaming DMA mapping before processing the skb */
346         pci_unmap_single(priv->pdev,
347                          priv->pci_map_rx_address[index],
348                          MAX_FRAGMENT_SIZE_RX + 2, PCI_DMA_FROMDEVICE);
349
350         /* update the skb structure and allign the buffer */
351         skb_put(skb, size);
352         if (offset) {
353                 /* shift the buffer allocation offset bytes to get the right frame */
354                 skb_pull(skb, 2);
355                 skb_put(skb, 2);
356         }
357 #if VERBOSE > SHOW_ERROR_MESSAGES
358         /* display the buffer contents for debugging */
359         DEBUG(SHOW_BUFFER_CONTENTS, "\nrx %p ", skb->data);
360         display_buffer((char *) skb->data, skb->len);
361 #endif
362
363         /* check whether WDS is enabled and whether the data frame is a WDS frame */
364
365         if (init_wds) {
366                 /* WDS enabled, check for the wds address on the first 6 bytes of the buffer */
367                 src = skb->data + 6;
368                 memmove(skb->data, src, skb->len - 6);
369                 skb_trim(skb, skb->len - 6);
370         }
371 #if VERBOSE > SHOW_ERROR_MESSAGES
372         DEBUG(SHOW_TRACING, "Fragment size %i in skb at %p\n", size, skb);
373         DEBUG(SHOW_TRACING, "Skb data at %p, length %i\n", skb->data, skb->len);
374
375         /* display the buffer contents for debugging */
376         DEBUG(SHOW_BUFFER_CONTENTS, "\nrx %p ", skb->data);
377         display_buffer((char *) skb->data, skb->len);
378 #endif
379
380         /* do some additional sk_buff and network layer parameters */
381         skb->dev = ndev;
382
383         /* take care of monitor mode and spy monitoring. */
384         if (unlikely(priv->iw_mode == IW_MODE_MONITOR))
385                 discard = islpci_monitor_rx(priv, &skb);
386         else {
387                 if (unlikely(skb->data[2 * ETH_ALEN] == 0)) {
388                         /* The packet has a rx_annex. Read it for spy monitoring, Then
389                          * remove it, while keeping the 2 leading MAC addr.
390                          */
391                         struct iw_quality wstats;
392                         struct rx_annex_header *annex =
393                             (struct rx_annex_header *) skb->data;
394                         wstats.level = annex->rfmon.rssi;
395                         /* The noise value can be a bit outdated if nobody's 
396                          * reading wireless stats... */
397                         wstats.noise = priv->local_iwstatistics.qual.noise;
398                         wstats.qual = wstats.level - wstats.noise;
399                         wstats.updated = 0x07;
400                         /* Update spy records */
401                         wireless_spy_update(ndev, annex->addr2, &wstats);
402
403                         memcpy(skb->data + sizeof (struct rfmon_header),
404                                skb->data, 2 * ETH_ALEN);
405                         skb_pull(skb, sizeof (struct rfmon_header));
406                 }
407                 skb->protocol = eth_type_trans(skb, ndev);
408         }
409         skb->ip_summed = CHECKSUM_NONE;
410         priv->statistics.rx_packets++;
411         priv->statistics.rx_bytes += size;
412
413         /* deliver the skb to the network layer */
414 #ifdef ISLPCI_ETH_DEBUG
415         printk
416             ("islpci_eth_receive:netif_rx %2.2X %2.2X %2.2X %2.2X %2.2X %2.2X\n",
417              skb->data[0], skb->data[1], skb->data[2], skb->data[3],
418              skb->data[4], skb->data[5]);
419 #endif
420         if (unlikely(discard)) {
421                 dev_kfree_skb_irq(skb);
422                 skb = NULL;
423         } else
424                 netif_rx(skb);
425
426         /* increment the read index for the rx data low queue */
427         priv->free_data_rx++;
428
429         /* add one or more sk_buff structures */
430         while (index =
431                le32_to_cpu(control_block->
432                            driver_curr_frag[ISL38XX_CB_RX_DATA_LQ]),
433                index - priv->free_data_rx < ISL38XX_CB_RX_QSIZE) {
434                 /* allocate an sk_buff for received data frames storage
435                  * include any required allignment operations */
436                 skb = dev_alloc_skb(MAX_FRAGMENT_SIZE_RX + 2);
437                 if (unlikely(skb == NULL)) {
438                         /* error allocating an sk_buff structure elements */
439                         DEBUG(SHOW_ERROR_MESSAGES, "Error allocating skb \n");
440                         break;
441                 }
442                 skb_reserve(skb, (4 - (long) skb->data) & 0x03);
443                 /* store the new skb structure pointer */
444                 index = index % ISL38XX_CB_RX_QSIZE;
445                 priv->data_low_rx[index] = skb;
446
447 #if VERBOSE > SHOW_ERROR_MESSAGES
448                 DEBUG(SHOW_TRACING,
449                       "new alloc skb %p skb->data %p skb->len %u index %u truesize %u\n ",
450                       skb, skb->data, skb->len, index, skb->truesize);
451 #endif
452
453                 /* set the streaming DMA mapping for proper PCI bus operation */
454                 priv->pci_map_rx_address[index] =
455                     pci_map_single(priv->pdev, (void *) skb->data,
456                                    MAX_FRAGMENT_SIZE_RX + 2,
457                                    PCI_DMA_FROMDEVICE);
458                 if (unlikely(priv->pci_map_rx_address[index] == (dma_addr_t) NULL)) {
459                         /* error mapping the buffer to device accessable memory address */
460                         DEBUG(SHOW_ERROR_MESSAGES,
461                               "Error mapping DMA address\n");
462
463                         /* free the skbuf structure before aborting */
464                         dev_kfree_skb_irq((struct sk_buff *) skb);
465                         skb = NULL;
466                         break;
467                 }
468                 /* update the fragment address */
469                 control_block->rx_data_low[index].address = cpu_to_le32((u32)
470                                                                         priv->
471                                                                         pci_map_rx_address
472                                                                         [index]);
473                 wmb();
474
475                 /* increment the driver read pointer */
476                 add_le32p((u32 *) &control_block->
477                           driver_curr_frag[ISL38XX_CB_RX_DATA_LQ], 1);
478         }
479
480         /* trigger the device */
481         islpci_trigger(priv);
482
483         return 0;
484 }
485
486 void
487 islpci_do_reset_and_wake(void *data)
488 {
489         islpci_private *priv = (islpci_private *) data;
490         islpci_reset(priv, 1);
491         netif_wake_queue(priv->ndev);
492         priv->reset_task_pending = 0;
493 }
494
495 void
496 islpci_eth_tx_timeout(struct net_device *ndev)
497 {
498         islpci_private *priv = netdev_priv(ndev);
499         struct net_device_stats *statistics = &priv->statistics;
500
501         /* increment the transmit error counter */
502         statistics->tx_errors++;
503
504         printk(KERN_WARNING "%s: tx_timeout", ndev->name);
505         if (!priv->reset_task_pending) {
506                 priv->reset_task_pending = 1;
507                 printk(", scheduling a reset");
508                 netif_stop_queue(ndev);
509                 schedule_work(&priv->reset_task);
510         }
511         printk("\n");
512 }