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
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.
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
20 #include <linux/version.h>
21 #include <linux/module.h>
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>
29 #include "prismcompat.h"
31 #include "islpci_eth.h"
32 #include "islpci_mgt.h"
35 /******************************************************************************
36 Network Interface functions
37 ******************************************************************************/
39 islpci_eth_cleanup_transmit(islpci_private *priv,
40 isl38xx_control_block *control_block)
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;
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];
59 #if VERBOSE > SHOW_ERROR_MESSAGES
61 "cleanup skb %p skb->data %p skb->len %u truesize %u\n ",
62 skb, skb->data, skb->len, skb->truesize);
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);
71 /* increment the free data low queue pointer */
77 islpci_eth_transmit(struct sk_buff *skb, struct net_device *ndev)
79 islpci_private *priv = netdev_priv(ndev);
80 isl38xx_control_block *cb = priv->control_block;
82 dma_addr_t pci_map_address;
84 isl38xx_fragment *fragment;
86 struct sk_buff *newskb;
89 unsigned char wds_mac[6];
93 #if VERBOSE > SHOW_ERROR_MESSAGES
94 DEBUG(SHOW_FUNCTION_CALLS, "islpci_eth_transmit \n");
97 /* lock the driver code */
98 spin_lock_irqsave(&priv->slock, flags);
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",
105 netif_stop_queue(ndev);
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);
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;
123 /* check whether the current skb can be used */
124 if (!skb_cloned(skb) && (skb_tailroom(skb) >= offset)) {
125 unsigned char *src = skb->data;
127 #if VERBOSE > SHOW_ERROR_MESSAGES
128 DEBUG(SHOW_TRACING, "skb offset %i wds %i\n", offset,
132 /* align the buffer on 4-byte boundary */
133 skb_reserve(skb, (4 - (long) skb->data) & 0x03);
135 /* wds requires an additional address field of 6 bytes */
137 #ifdef ISLPCI_ETH_DEBUG
138 printk("islpci_eth_transmit:wds_mac\n");
140 memmove(skb->data + 6, src, skb->len);
141 memcpy(skb->data, wds_mac, 6);
143 memmove(skb->data, src, skb->len);
146 #if VERBOSE > SHOW_ERROR_MESSAGES
147 DEBUG(SHOW_TRACING, "memmove %p %p %i \n", skb->data,
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",
159 newskb_offset = (4 - (long) newskb->data) & 0x03;
161 /* Check if newskb->data is aligned */
163 skb_reserve(newskb, newskb_offset);
165 skb_put(newskb, init_wds ? skb->len + 6 : skb->len);
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");
173 memcpy(newskb->data, skb->data, skb->len);
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);
180 newskb->dev = skb->dev;
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);
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,
195 if (unlikely(pci_map_address == 0)) {
196 printk(KERN_WARNING "%s: cannot map buffer to PCI\n",
202 /* Place the fragment in the control block structure. */
203 index = curr_frag % ISL38XX_CB_TX_QSIZE;
204 fragment = &cb->tx_data_low[index];
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);
216 /* The fragment address in the control block must have been
217 * written before announcing the frame buffer to device. */
219 cb->driver_curr_frag[ISL38XX_CB_TX_DATA_LQ] = cpu_to_le32(curr_frag);
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);
226 /* set the full flag for the transmission queue */
227 priv->data_low_tx_full = 1;
230 /* trigger the device */
231 islpci_trigger(priv);
233 /* unlock the driver code */
234 spin_unlock_irqrestore(&priv->slock, flags);
236 /* set the transmission time */
237 ndev->trans_start = jiffies;
238 priv->statistics.tx_packets++;
239 priv->statistics.tx_bytes += skb->len;
244 priv->statistics.tx_dropped++;
245 spin_unlock_irqrestore(&priv->slock, flags);
252 islpci_monitor_rx(islpci_private *priv, struct sk_buff **skb)
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 ! */
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);
266 u16 freq = le16_to_cpu(hdr->freq);
269 skb_pull(*skb, sizeof (struct rfmon_header));
271 if (skb_headroom(*skb) < sizeof (struct avs_80211_1_header)) {
272 struct sk_buff *newskb = skb_copy_expand(*skb,
277 dev_kfree_skb_irq(*skb);
281 /* This behavior is not very subtile... */
284 /* make room for the new header and fill it. */
286 (struct avs_80211_1_header *) skb_push(*skb,
288 avs_80211_1_header));
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 */
305 skb_pull(*skb, sizeof (struct rfmon_header));
307 (*skb)->protocol = htons(ETH_P_802_2);
308 (*skb)->mac.raw = (*skb)->data;
309 (*skb)->pkt_type = PACKET_OTHERHOST;
315 islpci_eth_receive(islpci_private *priv)
317 struct net_device *ndev = priv->ndev;
318 isl38xx_control_block *control_block = priv->control_block;
325 #if VERBOSE > SHOW_ERROR_MESSAGES
326 DEBUG(SHOW_FUNCTION_CALLS, "islpci_eth_receive \n");
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;
338 #if VERBOSE > SHOW_ERROR_MESSAGES
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);
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);
350 /* update the skb structure and allign the buffer */
353 /* shift the buffer allocation offset bytes to get the right frame */
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);
363 /* check whether WDS is enabled and whether the data frame is a WDS frame */
366 /* WDS enabled, check for the wds address on the first 6 bytes of the buffer */
368 memmove(skb->data, src, skb->len - 6);
369 skb_trim(skb, skb->len - 6);
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);
375 /* display the buffer contents for debugging */
376 DEBUG(SHOW_BUFFER_CONTENTS, "\nrx %p ", skb->data);
377 display_buffer((char *) skb->data, skb->len);
380 /* do some additional sk_buff and network layer parameters */
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);
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.
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);
403 memcpy(skb->data + sizeof (struct rfmon_header),
404 skb->data, 2 * ETH_ALEN);
405 skb_pull(skb, sizeof (struct rfmon_header));
407 skb->protocol = eth_type_trans(skb, ndev);
409 skb->ip_summed = CHECKSUM_NONE;
410 priv->statistics.rx_packets++;
411 priv->statistics.rx_bytes += size;
413 /* deliver the skb to the network layer */
414 #ifdef ISLPCI_ETH_DEBUG
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]);
420 if (unlikely(discard)) {
421 dev_kfree_skb_irq(skb);
426 /* increment the read index for the rx data low queue */
427 priv->free_data_rx++;
429 /* add one or more sk_buff structures */
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");
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;
447 #if VERBOSE > SHOW_ERROR_MESSAGES
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);
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,
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");
463 /* free the skbuf structure before aborting */
464 dev_kfree_skb_irq((struct sk_buff *) skb);
468 /* update the fragment address */
469 control_block->rx_data_low[index].address = cpu_to_le32((u32)
475 /* increment the driver read pointer */
476 add_le32p((u32 *) &control_block->
477 driver_curr_frag[ISL38XX_CB_RX_DATA_LQ], 1);
480 /* trigger the device */
481 islpci_trigger(priv);
487 islpci_do_reset_and_wake(void *data)
489 islpci_private *priv = (islpci_private *) data;
490 islpci_reset(priv, 1);
491 netif_wake_queue(priv->ndev);
492 priv->reset_task_pending = 0;
496 islpci_eth_tx_timeout(struct net_device *ndev)
498 islpci_private *priv = netdev_priv(ndev);
499 struct net_device_stats *statistics = &priv->statistics;
501 /* increment the transmit error counter */
502 statistics->tx_errors++;
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);