spidernet: move a block of code around
[linux-2.6/kmemtrace.git] / drivers / net / spider_net.c
blob8fa9ff72d1a61b453da369f65045bcfab4688631
1 /*
2 * Network device driver for Cell Processor-Based Blade and Celleb platform
4 * (C) Copyright IBM Corp. 2005
5 * (C) Copyright 2006 TOSHIBA CORPORATION
7 * Authors : Utz Bacher <utz.bacher@de.ibm.com>
8 * Jens Osterkamp <Jens.Osterkamp@de.ibm.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
13 * any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include <linux/compiler.h>
26 #include <linux/crc32.h>
27 #include <linux/delay.h>
28 #include <linux/etherdevice.h>
29 #include <linux/ethtool.h>
30 #include <linux/firmware.h>
31 #include <linux/if_vlan.h>
32 #include <linux/in.h>
33 #include <linux/init.h>
34 #include <linux/ioport.h>
35 #include <linux/ip.h>
36 #include <linux/kernel.h>
37 #include <linux/mii.h>
38 #include <linux/module.h>
39 #include <linux/netdevice.h>
40 #include <linux/device.h>
41 #include <linux/pci.h>
42 #include <linux/skbuff.h>
43 #include <linux/slab.h>
44 #include <linux/tcp.h>
45 #include <linux/types.h>
46 #include <linux/vmalloc.h>
47 #include <linux/wait.h>
48 #include <linux/workqueue.h>
49 #include <asm/bitops.h>
50 #include <asm/pci-bridge.h>
51 #include <net/checksum.h>
53 #include "spider_net.h"
55 MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com> and Jens Osterkamp " \
56 "<Jens.Osterkamp@de.ibm.com>");
57 MODULE_DESCRIPTION("Spider Southbridge Gigabit Ethernet driver");
58 MODULE_LICENSE("GPL");
59 MODULE_VERSION(VERSION);
61 static int rx_descriptors = SPIDER_NET_RX_DESCRIPTORS_DEFAULT;
62 static int tx_descriptors = SPIDER_NET_TX_DESCRIPTORS_DEFAULT;
64 module_param(rx_descriptors, int, 0444);
65 module_param(tx_descriptors, int, 0444);
67 MODULE_PARM_DESC(rx_descriptors, "number of descriptors used " \
68 "in rx chains");
69 MODULE_PARM_DESC(tx_descriptors, "number of descriptors used " \
70 "in tx chain");
72 char spider_net_driver_name[] = "spidernet";
74 static struct pci_device_id spider_net_pci_tbl[] = {
75 { PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_SPIDER_NET,
76 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
77 { 0, }
80 MODULE_DEVICE_TABLE(pci, spider_net_pci_tbl);
82 /**
83 * spider_net_read_reg - reads an SMMIO register of a card
84 * @card: device structure
85 * @reg: register to read from
87 * returns the content of the specified SMMIO register.
89 static inline u32
90 spider_net_read_reg(struct spider_net_card *card, u32 reg)
92 /* We use the powerpc specific variants instead of readl_be() because
93 * we know spidernet is not a real PCI device and we can thus avoid the
94 * performance hit caused by the PCI workarounds.
96 return in_be32(card->regs + reg);
99 /**
100 * spider_net_write_reg - writes to an SMMIO register of a card
101 * @card: device structure
102 * @reg: register to write to
103 * @value: value to write into the specified SMMIO register
105 static inline void
106 spider_net_write_reg(struct spider_net_card *card, u32 reg, u32 value)
108 /* We use the powerpc specific variants instead of writel_be() because
109 * we know spidernet is not a real PCI device and we can thus avoid the
110 * performance hit caused by the PCI workarounds.
112 out_be32(card->regs + reg, value);
115 /** spider_net_write_phy - write to phy register
116 * @netdev: adapter to be written to
117 * @mii_id: id of MII
118 * @reg: PHY register
119 * @val: value to be written to phy register
121 * spider_net_write_phy_register writes to an arbitrary PHY
122 * register via the spider GPCWOPCMD register. We assume the queue does
123 * not run full (not more than 15 commands outstanding).
125 static void
126 spider_net_write_phy(struct net_device *netdev, int mii_id,
127 int reg, int val)
129 struct spider_net_card *card = netdev_priv(netdev);
130 u32 writevalue;
132 writevalue = ((u32)mii_id << 21) |
133 ((u32)reg << 16) | ((u32)val);
135 spider_net_write_reg(card, SPIDER_NET_GPCWOPCMD, writevalue);
138 /** spider_net_read_phy - read from phy register
139 * @netdev: network device to be read from
140 * @mii_id: id of MII
141 * @reg: PHY register
143 * Returns value read from PHY register
145 * spider_net_write_phy reads from an arbitrary PHY
146 * register via the spider GPCROPCMD register
148 static int
149 spider_net_read_phy(struct net_device *netdev, int mii_id, int reg)
151 struct spider_net_card *card = netdev_priv(netdev);
152 u32 readvalue;
154 readvalue = ((u32)mii_id << 21) | ((u32)reg << 16);
155 spider_net_write_reg(card, SPIDER_NET_GPCROPCMD, readvalue);
157 /* we don't use semaphores to wait for an SPIDER_NET_GPROPCMPINT
158 * interrupt, as we poll for the completion of the read operation
159 * in spider_net_read_phy. Should take about 50 us */
160 do {
161 readvalue = spider_net_read_reg(card, SPIDER_NET_GPCROPCMD);
162 } while (readvalue & SPIDER_NET_GPREXEC);
164 readvalue &= SPIDER_NET_GPRDAT_MASK;
166 return readvalue;
170 * spider_net_setup_aneg - initial auto-negotiation setup
171 * @card: device structure
173 static void
174 spider_net_setup_aneg(struct spider_net_card *card)
176 struct mii_phy *phy = &card->phy;
177 u32 advertise = 0;
178 u16 bmsr, estat;
180 bmsr = spider_net_read_phy(card->netdev, phy->mii_id, MII_BMSR);
181 estat = spider_net_read_phy(card->netdev, phy->mii_id, MII_ESTATUS);
183 if (bmsr & BMSR_10HALF)
184 advertise |= ADVERTISED_10baseT_Half;
185 if (bmsr & BMSR_10FULL)
186 advertise |= ADVERTISED_10baseT_Full;
187 if (bmsr & BMSR_100HALF)
188 advertise |= ADVERTISED_100baseT_Half;
189 if (bmsr & BMSR_100FULL)
190 advertise |= ADVERTISED_100baseT_Full;
192 if ((bmsr & BMSR_ESTATEN) && (estat & ESTATUS_1000_TFULL))
193 advertise |= SUPPORTED_1000baseT_Full;
194 if ((bmsr & BMSR_ESTATEN) && (estat & ESTATUS_1000_THALF))
195 advertise |= SUPPORTED_1000baseT_Half;
197 mii_phy_probe(phy, phy->mii_id);
198 phy->def->ops->setup_aneg(phy, advertise);
203 * spider_net_rx_irq_off - switch off rx irq on this spider card
204 * @card: device structure
206 * switches off rx irq by masking them out in the GHIINTnMSK register
208 static void
209 spider_net_rx_irq_off(struct spider_net_card *card)
211 u32 regvalue;
213 regvalue = SPIDER_NET_INT0_MASK_VALUE & (~SPIDER_NET_RXINT);
214 spider_net_write_reg(card, SPIDER_NET_GHIINT0MSK, regvalue);
218 * spider_net_rx_irq_on - switch on rx irq on this spider card
219 * @card: device structure
221 * switches on rx irq by enabling them in the GHIINTnMSK register
223 static void
224 spider_net_rx_irq_on(struct spider_net_card *card)
226 u32 regvalue;
228 regvalue = SPIDER_NET_INT0_MASK_VALUE | SPIDER_NET_RXINT;
229 spider_net_write_reg(card, SPIDER_NET_GHIINT0MSK, regvalue);
233 * spider_net_set_promisc - sets the unicast address or the promiscuous mode
234 * @card: card structure
236 * spider_net_set_promisc sets the unicast destination address filter and
237 * thus either allows for non-promisc mode or promisc mode
239 static void
240 spider_net_set_promisc(struct spider_net_card *card)
242 u32 macu, macl;
243 struct net_device *netdev = card->netdev;
245 if (netdev->flags & IFF_PROMISC) {
246 /* clear destination entry 0 */
247 spider_net_write_reg(card, SPIDER_NET_GMRUAFILnR, 0);
248 spider_net_write_reg(card, SPIDER_NET_GMRUAFILnR + 0x04, 0);
249 spider_net_write_reg(card, SPIDER_NET_GMRUA0FIL15R,
250 SPIDER_NET_PROMISC_VALUE);
251 } else {
252 macu = netdev->dev_addr[0];
253 macu <<= 8;
254 macu |= netdev->dev_addr[1];
255 memcpy(&macl, &netdev->dev_addr[2], sizeof(macl));
257 macu |= SPIDER_NET_UA_DESCR_VALUE;
258 spider_net_write_reg(card, SPIDER_NET_GMRUAFILnR, macu);
259 spider_net_write_reg(card, SPIDER_NET_GMRUAFILnR + 0x04, macl);
260 spider_net_write_reg(card, SPIDER_NET_GMRUA0FIL15R,
261 SPIDER_NET_NONPROMISC_VALUE);
266 * spider_net_get_mac_address - read mac address from spider card
267 * @card: device structure
269 * reads MAC address from GMACUNIMACU and GMACUNIMACL registers
271 static int
272 spider_net_get_mac_address(struct net_device *netdev)
274 struct spider_net_card *card = netdev_priv(netdev);
275 u32 macl, macu;
277 macl = spider_net_read_reg(card, SPIDER_NET_GMACUNIMACL);
278 macu = spider_net_read_reg(card, SPIDER_NET_GMACUNIMACU);
280 netdev->dev_addr[0] = (macu >> 24) & 0xff;
281 netdev->dev_addr[1] = (macu >> 16) & 0xff;
282 netdev->dev_addr[2] = (macu >> 8) & 0xff;
283 netdev->dev_addr[3] = macu & 0xff;
284 netdev->dev_addr[4] = (macl >> 8) & 0xff;
285 netdev->dev_addr[5] = macl & 0xff;
287 if (!is_valid_ether_addr(&netdev->dev_addr[0]))
288 return -EINVAL;
290 return 0;
294 * spider_net_get_descr_status -- returns the status of a descriptor
295 * @descr: descriptor to look at
297 * returns the status as in the dmac_cmd_status field of the descriptor
299 static inline int
300 spider_net_get_descr_status(struct spider_net_hw_descr *hwdescr)
302 return hwdescr->dmac_cmd_status & SPIDER_NET_DESCR_IND_PROC_MASK;
306 * spider_net_free_chain - free descriptor chain
307 * @card: card structure
308 * @chain: address of chain
311 static void
312 spider_net_free_chain(struct spider_net_card *card,
313 struct spider_net_descr_chain *chain)
315 struct spider_net_descr *descr;
317 descr = chain->ring;
318 do {
319 descr->bus_addr = 0;
320 descr->hwdescr->next_descr_addr = 0;
321 descr = descr->next;
322 } while (descr != chain->ring);
324 dma_free_coherent(&card->pdev->dev, chain->num_desc,
325 chain->hwring, chain->dma_addr);
329 * spider_net_init_chain - alloc and link descriptor chain
330 * @card: card structure
331 * @chain: address of chain
333 * We manage a circular list that mirrors the hardware structure,
334 * except that the hardware uses bus addresses.
336 * Returns 0 on success, <0 on failure
338 static int
339 spider_net_init_chain(struct spider_net_card *card,
340 struct spider_net_descr_chain *chain)
342 int i;
343 struct spider_net_descr *descr;
344 struct spider_net_hw_descr *hwdescr;
345 dma_addr_t buf;
346 size_t alloc_size;
348 alloc_size = chain->num_desc * sizeof(struct spider_net_hw_descr);
350 chain->hwring = dma_alloc_coherent(&card->pdev->dev, alloc_size,
351 &chain->dma_addr, GFP_KERNEL);
353 if (!chain->hwring)
354 return -ENOMEM;
356 memset(chain->ring, 0, chain->num_desc * sizeof(struct spider_net_descr));
358 /* Set up the hardware pointers in each descriptor */
359 descr = chain->ring;
360 hwdescr = chain->hwring;
361 buf = chain->dma_addr;
362 for (i=0; i < chain->num_desc; i++, descr++, hwdescr++) {
363 hwdescr->dmac_cmd_status = SPIDER_NET_DESCR_NOT_IN_USE;
364 hwdescr->next_descr_addr = 0;
366 descr->hwdescr = hwdescr;
367 descr->bus_addr = buf;
368 descr->next = descr + 1;
369 descr->prev = descr - 1;
371 buf += sizeof(struct spider_net_hw_descr);
373 /* do actual circular list */
374 (descr-1)->next = chain->ring;
375 chain->ring->prev = descr-1;
377 spin_lock_init(&chain->lock);
378 chain->head = chain->ring;
379 chain->tail = chain->ring;
380 return 0;
384 * spider_net_free_rx_chain_contents - frees descr contents in rx chain
385 * @card: card structure
387 * returns 0 on success, <0 on failure
389 static void
390 spider_net_free_rx_chain_contents(struct spider_net_card *card)
392 struct spider_net_descr *descr;
394 descr = card->rx_chain.head;
395 do {
396 if (descr->skb) {
397 pci_unmap_single(card->pdev, descr->hwdescr->buf_addr,
398 SPIDER_NET_MAX_FRAME,
399 PCI_DMA_BIDIRECTIONAL);
400 dev_kfree_skb(descr->skb);
401 descr->skb = NULL;
403 descr = descr->next;
404 } while (descr != card->rx_chain.head);
408 * spider_net_prepare_rx_descr - Reinitialize RX descriptor
409 * @card: card structure
410 * @descr: descriptor to re-init
412 * Return 0 on succes, <0 on failure.
414 * Allocates a new rx skb, iommu-maps it and attaches it to the
415 * descriptor. Mark the descriptor as activated, ready-to-use.
417 static int
418 spider_net_prepare_rx_descr(struct spider_net_card *card,
419 struct spider_net_descr *descr)
421 struct spider_net_hw_descr *hwdescr = descr->hwdescr;
422 dma_addr_t buf;
423 int offset;
424 int bufsize;
426 /* we need to round up the buffer size to a multiple of 128 */
427 bufsize = (SPIDER_NET_MAX_FRAME + SPIDER_NET_RXBUF_ALIGN - 1) &
428 (~(SPIDER_NET_RXBUF_ALIGN - 1));
430 /* and we need to have it 128 byte aligned, therefore we allocate a
431 * bit more */
432 /* allocate an skb */
433 descr->skb = netdev_alloc_skb(card->netdev,
434 bufsize + SPIDER_NET_RXBUF_ALIGN - 1);
435 if (!descr->skb) {
436 if (netif_msg_rx_err(card) && net_ratelimit())
437 dev_err(&card->netdev->dev,
438 "Not enough memory to allocate rx buffer\n");
439 card->spider_stats.alloc_rx_skb_error++;
440 return -ENOMEM;
442 hwdescr->buf_size = bufsize;
443 hwdescr->result_size = 0;
444 hwdescr->valid_size = 0;
445 hwdescr->data_status = 0;
446 hwdescr->data_error = 0;
448 offset = ((unsigned long)descr->skb->data) &
449 (SPIDER_NET_RXBUF_ALIGN - 1);
450 if (offset)
451 skb_reserve(descr->skb, SPIDER_NET_RXBUF_ALIGN - offset);
452 /* iommu-map the skb */
453 buf = pci_map_single(card->pdev, descr->skb->data,
454 SPIDER_NET_MAX_FRAME, PCI_DMA_FROMDEVICE);
455 if (pci_dma_mapping_error(buf)) {
456 dev_kfree_skb_any(descr->skb);
457 descr->skb = NULL;
458 if (netif_msg_rx_err(card) && net_ratelimit())
459 dev_err(&card->netdev->dev, "Could not iommu-map rx buffer\n");
460 card->spider_stats.rx_iommu_map_error++;
461 hwdescr->dmac_cmd_status = SPIDER_NET_DESCR_NOT_IN_USE;
462 } else {
463 hwdescr->buf_addr = buf;
464 wmb();
465 hwdescr->dmac_cmd_status = SPIDER_NET_DESCR_CARDOWNED |
466 SPIDER_NET_DMAC_NOINTR_COMPLETE;
469 return 0;
473 * spider_net_enable_rxchtails - sets RX dmac chain tail addresses
474 * @card: card structure
476 * spider_net_enable_rxchtails sets the RX DMAC chain tail adresses in the
477 * chip by writing to the appropriate register. DMA is enabled in
478 * spider_net_enable_rxdmac.
480 static inline void
481 spider_net_enable_rxchtails(struct spider_net_card *card)
483 /* assume chain is aligned correctly */
484 spider_net_write_reg(card, SPIDER_NET_GDADCHA ,
485 card->rx_chain.tail->bus_addr);
489 * spider_net_enable_rxdmac - enables a receive DMA controller
490 * @card: card structure
492 * spider_net_enable_rxdmac enables the DMA controller by setting RX_DMA_EN
493 * in the GDADMACCNTR register
495 static inline void
496 spider_net_enable_rxdmac(struct spider_net_card *card)
498 wmb();
499 spider_net_write_reg(card, SPIDER_NET_GDADMACCNTR,
500 SPIDER_NET_DMA_RX_VALUE);
504 * spider_net_disable_rxdmac - disables the receive DMA controller
505 * @card: card structure
507 * spider_net_disable_rxdmac terminates processing on the DMA controller
508 * by turing off the DMA controller, with the force-end flag set.
510 static inline void
511 spider_net_disable_rxdmac(struct spider_net_card *card)
513 spider_net_write_reg(card, SPIDER_NET_GDADMACCNTR,
514 SPIDER_NET_DMA_RX_FEND_VALUE);
518 * spider_net_refill_rx_chain - refills descriptors/skbs in the rx chains
519 * @card: card structure
521 * refills descriptors in the rx chain: allocates skbs and iommu-maps them.
523 static void
524 spider_net_refill_rx_chain(struct spider_net_card *card)
526 struct spider_net_descr_chain *chain = &card->rx_chain;
527 unsigned long flags;
529 /* one context doing the refill (and a second context seeing that
530 * and omitting it) is ok. If called by NAPI, we'll be called again
531 * as spider_net_decode_one_descr is called several times. If some
532 * interrupt calls us, the NAPI is about to clean up anyway. */
533 if (!spin_trylock_irqsave(&chain->lock, flags))
534 return;
536 while (spider_net_get_descr_status(chain->head->hwdescr) ==
537 SPIDER_NET_DESCR_NOT_IN_USE) {
538 if (spider_net_prepare_rx_descr(card, chain->head))
539 break;
540 chain->head = chain->head->next;
543 spin_unlock_irqrestore(&chain->lock, flags);
547 * spider_net_alloc_rx_skbs - Allocates rx skbs in rx descriptor chains
548 * @card: card structure
550 * Returns 0 on success, <0 on failure.
552 static int
553 spider_net_alloc_rx_skbs(struct spider_net_card *card)
555 struct spider_net_descr_chain *chain = &card->rx_chain;
556 struct spider_net_descr *start = chain->tail;
557 struct spider_net_descr *descr = start;
559 /* Link up the hardware chain pointers */
560 do {
561 descr->prev->hwdescr->next_descr_addr = descr->bus_addr;
562 descr = descr->next;
563 } while (descr != start);
565 /* Put at least one buffer into the chain. if this fails,
566 * we've got a problem. If not, spider_net_refill_rx_chain
567 * will do the rest at the end of this function. */
568 if (spider_net_prepare_rx_descr(card, chain->head))
569 goto error;
570 else
571 chain->head = chain->head->next;
573 /* This will allocate the rest of the rx buffers;
574 * if not, it's business as usual later on. */
575 spider_net_refill_rx_chain(card);
576 spider_net_enable_rxdmac(card);
577 return 0;
579 error:
580 spider_net_free_rx_chain_contents(card);
581 return -ENOMEM;
585 * spider_net_get_multicast_hash - generates hash for multicast filter table
586 * @addr: multicast address
588 * returns the hash value.
590 * spider_net_get_multicast_hash calculates a hash value for a given multicast
591 * address, that is used to set the multicast filter tables
593 static u8
594 spider_net_get_multicast_hash(struct net_device *netdev, __u8 *addr)
596 u32 crc;
597 u8 hash;
598 char addr_for_crc[ETH_ALEN] = { 0, };
599 int i, bit;
601 for (i = 0; i < ETH_ALEN * 8; i++) {
602 bit = (addr[i / 8] >> (i % 8)) & 1;
603 addr_for_crc[ETH_ALEN - 1 - i / 8] += bit << (7 - (i % 8));
606 crc = crc32_be(~0, addr_for_crc, netdev->addr_len);
608 hash = (crc >> 27);
609 hash <<= 3;
610 hash |= crc & 7;
611 hash &= 0xff;
613 return hash;
617 * spider_net_set_multi - sets multicast addresses and promisc flags
618 * @netdev: interface device structure
620 * spider_net_set_multi configures multicast addresses as needed for the
621 * netdev interface. It also sets up multicast, allmulti and promisc
622 * flags appropriately
624 static void
625 spider_net_set_multi(struct net_device *netdev)
627 struct dev_mc_list *mc;
628 u8 hash;
629 int i;
630 u32 reg;
631 struct spider_net_card *card = netdev_priv(netdev);
632 unsigned long bitmask[SPIDER_NET_MULTICAST_HASHES / BITS_PER_LONG] =
633 {0, };
635 spider_net_set_promisc(card);
637 if (netdev->flags & IFF_ALLMULTI) {
638 for (i = 0; i < SPIDER_NET_MULTICAST_HASHES; i++) {
639 set_bit(i, bitmask);
641 goto write_hash;
644 /* well, we know, what the broadcast hash value is: it's xfd
645 hash = spider_net_get_multicast_hash(netdev, netdev->broadcast); */
646 set_bit(0xfd, bitmask);
648 for (mc = netdev->mc_list; mc; mc = mc->next) {
649 hash = spider_net_get_multicast_hash(netdev, mc->dmi_addr);
650 set_bit(hash, bitmask);
653 write_hash:
654 for (i = 0; i < SPIDER_NET_MULTICAST_HASHES / 4; i++) {
655 reg = 0;
656 if (test_bit(i * 4, bitmask))
657 reg += 0x08;
658 reg <<= 8;
659 if (test_bit(i * 4 + 1, bitmask))
660 reg += 0x08;
661 reg <<= 8;
662 if (test_bit(i * 4 + 2, bitmask))
663 reg += 0x08;
664 reg <<= 8;
665 if (test_bit(i * 4 + 3, bitmask))
666 reg += 0x08;
668 spider_net_write_reg(card, SPIDER_NET_GMRMHFILnR + i * 4, reg);
673 * spider_net_prepare_tx_descr - fill tx descriptor with skb data
674 * @card: card structure
675 * @descr: descriptor structure to fill out
676 * @skb: packet to use
678 * returns 0 on success, <0 on failure.
680 * fills out the descriptor structure with skb data and len. Copies data,
681 * if needed (32bit DMA!)
683 static int
684 spider_net_prepare_tx_descr(struct spider_net_card *card,
685 struct sk_buff *skb)
687 struct spider_net_descr_chain *chain = &card->tx_chain;
688 struct spider_net_descr *descr;
689 struct spider_net_hw_descr *hwdescr;
690 dma_addr_t buf;
691 unsigned long flags;
693 buf = pci_map_single(card->pdev, skb->data, skb->len, PCI_DMA_TODEVICE);
694 if (pci_dma_mapping_error(buf)) {
695 if (netif_msg_tx_err(card) && net_ratelimit())
696 dev_err(&card->netdev->dev, "could not iommu-map packet (%p, %i). "
697 "Dropping packet\n", skb->data, skb->len);
698 card->spider_stats.tx_iommu_map_error++;
699 return -ENOMEM;
702 spin_lock_irqsave(&chain->lock, flags);
703 descr = card->tx_chain.head;
704 if (descr->next == chain->tail->prev) {
705 spin_unlock_irqrestore(&chain->lock, flags);
706 pci_unmap_single(card->pdev, buf, skb->len, PCI_DMA_TODEVICE);
707 return -ENOMEM;
709 hwdescr = descr->hwdescr;
710 chain->head = descr->next;
712 descr->skb = skb;
713 hwdescr->buf_addr = buf;
714 hwdescr->buf_size = skb->len;
715 hwdescr->next_descr_addr = 0;
716 hwdescr->data_status = 0;
718 hwdescr->dmac_cmd_status =
719 SPIDER_NET_DESCR_CARDOWNED | SPIDER_NET_DMAC_NOCS;
720 spin_unlock_irqrestore(&chain->lock, flags);
722 if (skb->ip_summed == CHECKSUM_PARTIAL)
723 switch (ip_hdr(skb)->protocol) {
724 case IPPROTO_TCP:
725 hwdescr->dmac_cmd_status |= SPIDER_NET_DMAC_TCP;
726 break;
727 case IPPROTO_UDP:
728 hwdescr->dmac_cmd_status |= SPIDER_NET_DMAC_UDP;
729 break;
732 /* Chain the bus address, so that the DMA engine finds this descr. */
733 wmb();
734 descr->prev->hwdescr->next_descr_addr = descr->bus_addr;
736 card->netdev->trans_start = jiffies; /* set netdev watchdog timer */
737 return 0;
740 static int
741 spider_net_set_low_watermark(struct spider_net_card *card)
743 struct spider_net_descr *descr = card->tx_chain.tail;
744 struct spider_net_hw_descr *hwdescr;
745 unsigned long flags;
746 int status;
747 int cnt=0;
748 int i;
750 /* Measure the length of the queue. Measurement does not
751 * need to be precise -- does not need a lock. */
752 while (descr != card->tx_chain.head) {
753 status = descr->hwdescr->dmac_cmd_status & SPIDER_NET_DESCR_NOT_IN_USE;
754 if (status == SPIDER_NET_DESCR_NOT_IN_USE)
755 break;
756 descr = descr->next;
757 cnt++;
760 /* If TX queue is short, don't even bother with interrupts */
761 if (cnt < card->tx_chain.num_desc/4)
762 return cnt;
764 /* Set low-watermark 3/4th's of the way into the queue. */
765 descr = card->tx_chain.tail;
766 cnt = (cnt*3)/4;
767 for (i=0;i<cnt; i++)
768 descr = descr->next;
770 /* Set the new watermark, clear the old watermark */
771 spin_lock_irqsave(&card->tx_chain.lock, flags);
772 descr->hwdescr->dmac_cmd_status |= SPIDER_NET_DESCR_TXDESFLG;
773 if (card->low_watermark && card->low_watermark != descr) {
774 hwdescr = card->low_watermark->hwdescr;
775 hwdescr->dmac_cmd_status =
776 hwdescr->dmac_cmd_status & ~SPIDER_NET_DESCR_TXDESFLG;
778 card->low_watermark = descr;
779 spin_unlock_irqrestore(&card->tx_chain.lock, flags);
780 return cnt;
784 * spider_net_release_tx_chain - processes sent tx descriptors
785 * @card: adapter structure
786 * @brutal: if set, don't care about whether descriptor seems to be in use
788 * returns 0 if the tx ring is empty, otherwise 1.
790 * spider_net_release_tx_chain releases the tx descriptors that spider has
791 * finished with (if non-brutal) or simply release tx descriptors (if brutal).
792 * If some other context is calling this function, we return 1 so that we're
793 * scheduled again (if we were scheduled) and will not loose initiative.
795 static int
796 spider_net_release_tx_chain(struct spider_net_card *card, int brutal)
798 struct spider_net_descr_chain *chain = &card->tx_chain;
799 struct spider_net_descr *descr;
800 struct spider_net_hw_descr *hwdescr;
801 struct sk_buff *skb;
802 u32 buf_addr;
803 unsigned long flags;
804 int status;
806 while (1) {
807 spin_lock_irqsave(&chain->lock, flags);
808 if (chain->tail == chain->head) {
809 spin_unlock_irqrestore(&chain->lock, flags);
810 return 0;
812 descr = chain->tail;
813 hwdescr = descr->hwdescr;
815 status = spider_net_get_descr_status(hwdescr);
816 switch (status) {
817 case SPIDER_NET_DESCR_COMPLETE:
818 card->netdev_stats.tx_packets++;
819 card->netdev_stats.tx_bytes += descr->skb->len;
820 break;
822 case SPIDER_NET_DESCR_CARDOWNED:
823 if (!brutal) {
824 spin_unlock_irqrestore(&chain->lock, flags);
825 return 1;
828 /* fallthrough, if we release the descriptors
829 * brutally (then we don't care about
830 * SPIDER_NET_DESCR_CARDOWNED) */
832 case SPIDER_NET_DESCR_RESPONSE_ERROR:
833 case SPIDER_NET_DESCR_PROTECTION_ERROR:
834 case SPIDER_NET_DESCR_FORCE_END:
835 if (netif_msg_tx_err(card))
836 dev_err(&card->netdev->dev, "forcing end of tx descriptor "
837 "with status x%02x\n", status);
838 card->netdev_stats.tx_errors++;
839 break;
841 default:
842 card->netdev_stats.tx_dropped++;
843 if (!brutal) {
844 spin_unlock_irqrestore(&chain->lock, flags);
845 return 1;
849 chain->tail = descr->next;
850 hwdescr->dmac_cmd_status |= SPIDER_NET_DESCR_NOT_IN_USE;
851 skb = descr->skb;
852 descr->skb = NULL;
853 buf_addr = hwdescr->buf_addr;
854 spin_unlock_irqrestore(&chain->lock, flags);
856 /* unmap the skb */
857 if (skb) {
858 pci_unmap_single(card->pdev, buf_addr, skb->len,
859 PCI_DMA_TODEVICE);
860 dev_kfree_skb(skb);
863 return 0;
867 * spider_net_kick_tx_dma - enables TX DMA processing
868 * @card: card structure
869 * @descr: descriptor address to enable TX processing at
871 * This routine will start the transmit DMA running if
872 * it is not already running. This routine ned only be
873 * called when queueing a new packet to an empty tx queue.
874 * Writes the current tx chain head as start address
875 * of the tx descriptor chain and enables the transmission
876 * DMA engine.
878 static inline void
879 spider_net_kick_tx_dma(struct spider_net_card *card)
881 struct spider_net_descr *descr;
883 if (spider_net_read_reg(card, SPIDER_NET_GDTDMACCNTR) &
884 SPIDER_NET_TX_DMA_EN)
885 goto out;
887 descr = card->tx_chain.tail;
888 for (;;) {
889 if (spider_net_get_descr_status(descr->hwdescr) ==
890 SPIDER_NET_DESCR_CARDOWNED) {
891 spider_net_write_reg(card, SPIDER_NET_GDTDCHA,
892 descr->bus_addr);
893 spider_net_write_reg(card, SPIDER_NET_GDTDMACCNTR,
894 SPIDER_NET_DMA_TX_VALUE);
895 break;
897 if (descr == card->tx_chain.head)
898 break;
899 descr = descr->next;
902 out:
903 mod_timer(&card->tx_timer, jiffies + SPIDER_NET_TX_TIMER);
907 * spider_net_xmit - transmits a frame over the device
908 * @skb: packet to send out
909 * @netdev: interface device structure
911 * returns 0 on success, !0 on failure
913 static int
914 spider_net_xmit(struct sk_buff *skb, struct net_device *netdev)
916 int cnt;
917 struct spider_net_card *card = netdev_priv(netdev);
919 spider_net_release_tx_chain(card, 0);
921 if (spider_net_prepare_tx_descr(card, skb) != 0) {
922 card->netdev_stats.tx_dropped++;
923 netif_stop_queue(netdev);
924 return NETDEV_TX_BUSY;
927 cnt = spider_net_set_low_watermark(card);
928 if (cnt < 5)
929 spider_net_kick_tx_dma(card);
930 return NETDEV_TX_OK;
934 * spider_net_cleanup_tx_ring - cleans up the TX ring
935 * @card: card structure
937 * spider_net_cleanup_tx_ring is called by either the tx_timer
938 * or from the NAPI polling routine.
939 * This routine releases resources associted with transmitted
940 * packets, including updating the queue tail pointer.
942 static void
943 spider_net_cleanup_tx_ring(struct spider_net_card *card)
945 if ((spider_net_release_tx_chain(card, 0) != 0) &&
946 (card->netdev->flags & IFF_UP)) {
947 spider_net_kick_tx_dma(card);
948 netif_wake_queue(card->netdev);
953 * spider_net_do_ioctl - called for device ioctls
954 * @netdev: interface device structure
955 * @ifr: request parameter structure for ioctl
956 * @cmd: command code for ioctl
958 * returns 0 on success, <0 on failure. Currently, we have no special ioctls.
959 * -EOPNOTSUPP is returned, if an unknown ioctl was requested
961 static int
962 spider_net_do_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
964 switch (cmd) {
965 default:
966 return -EOPNOTSUPP;
971 * spider_net_pass_skb_up - takes an skb from a descriptor and passes it on
972 * @descr: descriptor to process
973 * @card: card structure
975 * Fills out skb structure and passes the data to the stack.
976 * The descriptor state is not changed.
978 static void
979 spider_net_pass_skb_up(struct spider_net_descr *descr,
980 struct spider_net_card *card)
982 struct spider_net_hw_descr *hwdescr= descr->hwdescr;
983 struct sk_buff *skb;
984 struct net_device *netdev;
985 u32 data_status, data_error;
987 data_status = hwdescr->data_status;
988 data_error = hwdescr->data_error;
989 netdev = card->netdev;
991 skb = descr->skb;
992 skb_put(skb, hwdescr->valid_size);
994 /* the card seems to add 2 bytes of junk in front
995 * of the ethernet frame */
996 #define SPIDER_MISALIGN 2
997 skb_pull(skb, SPIDER_MISALIGN);
998 skb->protocol = eth_type_trans(skb, netdev);
1000 /* checksum offload */
1001 if (card->options.rx_csum) {
1002 if ( ( (data_status & SPIDER_NET_DATA_STATUS_CKSUM_MASK) ==
1003 SPIDER_NET_DATA_STATUS_CKSUM_MASK) &&
1004 !(data_error & SPIDER_NET_DATA_ERR_CKSUM_MASK))
1005 skb->ip_summed = CHECKSUM_UNNECESSARY;
1006 else
1007 skb->ip_summed = CHECKSUM_NONE;
1008 } else
1009 skb->ip_summed = CHECKSUM_NONE;
1011 if (data_status & SPIDER_NET_VLAN_PACKET) {
1012 /* further enhancements: HW-accel VLAN
1013 * vlan_hwaccel_receive_skb
1017 /* update netdevice statistics */
1018 card->netdev_stats.rx_packets++;
1019 card->netdev_stats.rx_bytes += skb->len;
1021 /* pass skb up to stack */
1022 netif_receive_skb(skb);
1025 static void show_rx_chain(struct spider_net_card *card)
1027 struct spider_net_descr_chain *chain = &card->rx_chain;
1028 struct spider_net_descr *start= chain->tail;
1029 struct spider_net_descr *descr= start;
1030 struct spider_net_hw_descr *hwd = start->hwdescr;
1031 struct device *dev = &card->netdev->dev;
1032 u32 curr_desc, next_desc;
1033 int status;
1035 int tot = 0;
1036 int cnt = 0;
1037 int off = start - chain->ring;
1038 int cstat = hwd->dmac_cmd_status;
1040 dev_info(dev, "Total number of descrs=%d\n",
1041 chain->num_desc);
1042 dev_info(dev, "Chain tail located at descr=%d, status=0x%x\n",
1043 off, cstat);
1045 curr_desc = spider_net_read_reg(card, SPIDER_NET_GDACTDPA);
1046 next_desc = spider_net_read_reg(card, SPIDER_NET_GDACNEXTDA);
1048 status = cstat;
1051 hwd = descr->hwdescr;
1052 off = descr - chain->ring;
1053 status = hwd->dmac_cmd_status;
1055 if (descr == chain->head)
1056 dev_info(dev, "Chain head is at %d, head status=0x%x\n",
1057 off, status);
1059 if (curr_desc == descr->bus_addr)
1060 dev_info(dev, "HW curr desc (GDACTDPA) is at %d, status=0x%x\n",
1061 off, status);
1063 if (next_desc == descr->bus_addr)
1064 dev_info(dev, "HW next desc (GDACNEXTDA) is at %d, status=0x%x\n",
1065 off, status);
1067 if (hwd->next_descr_addr == 0)
1068 dev_info(dev, "chain is cut at %d\n", off);
1070 if (cstat != status) {
1071 int from = (chain->num_desc + off - cnt) % chain->num_desc;
1072 int to = (chain->num_desc + off - 1) % chain->num_desc;
1073 dev_info(dev, "Have %d (from %d to %d) descrs "
1074 "with stat=0x%08x\n", cnt, from, to, cstat);
1075 cstat = status;
1076 cnt = 0;
1079 cnt ++;
1080 tot ++;
1081 descr = descr->next;
1082 } while (descr != start);
1084 dev_info(dev, "Last %d descrs with stat=0x%08x "
1085 "for a total of %d descrs\n", cnt, cstat, tot);
1087 #ifdef DEBUG
1088 /* Now dump the whole ring */
1089 descr = start;
1092 struct spider_net_hw_descr *hwd = descr->hwdescr;
1093 status = spider_net_get_descr_status(hwd);
1094 cnt = descr - chain->ring;
1095 dev_info(dev, "Descr %d stat=0x%08x skb=%p\n",
1096 cnt, status, descr->skb);
1097 dev_info(dev, "bus addr=%08x buf addr=%08x sz=%d\n",
1098 descr->bus_addr, hwd->buf_addr, hwd->buf_size);
1099 dev_info(dev, "next=%08x result sz=%d valid sz=%d\n",
1100 hwd->next_descr_addr, hwd->result_size,
1101 hwd->valid_size);
1102 dev_info(dev, "dmac=%08x data stat=%08x data err=%08x\n",
1103 hwd->dmac_cmd_status, hwd->data_status,
1104 hwd->data_error);
1105 dev_info(dev, "\n");
1107 descr = descr->next;
1108 } while (descr != start);
1109 #endif
1114 * spider_net_resync_head_ptr - Advance head ptr past empty descrs
1116 * If the driver fails to keep up and empty the queue, then the
1117 * hardware wil run out of room to put incoming packets. This
1118 * will cause the hardware to skip descrs that are full (instead
1119 * of halting/retrying). Thus, once the driver runs, it wil need
1120 * to "catch up" to where the hardware chain pointer is at.
1122 static void spider_net_resync_head_ptr(struct spider_net_card *card)
1124 unsigned long flags;
1125 struct spider_net_descr_chain *chain = &card->rx_chain;
1126 struct spider_net_descr *descr;
1127 int i, status;
1129 /* Advance head pointer past any empty descrs */
1130 descr = chain->head;
1131 status = spider_net_get_descr_status(descr->hwdescr);
1133 if (status == SPIDER_NET_DESCR_NOT_IN_USE)
1134 return;
1136 spin_lock_irqsave(&chain->lock, flags);
1138 descr = chain->head;
1139 status = spider_net_get_descr_status(descr->hwdescr);
1140 for (i=0; i<chain->num_desc; i++) {
1141 if (status != SPIDER_NET_DESCR_CARDOWNED) break;
1142 descr = descr->next;
1143 status = spider_net_get_descr_status(descr->hwdescr);
1145 chain->head = descr;
1147 spin_unlock_irqrestore(&chain->lock, flags);
1150 static int spider_net_resync_tail_ptr(struct spider_net_card *card)
1152 struct spider_net_descr_chain *chain = &card->rx_chain;
1153 struct spider_net_descr *descr;
1154 int i, status;
1156 /* Advance tail pointer past any empty and reaped descrs */
1157 descr = chain->tail;
1158 status = spider_net_get_descr_status(descr->hwdescr);
1160 for (i=0; i<chain->num_desc; i++) {
1161 if ((status != SPIDER_NET_DESCR_CARDOWNED) &&
1162 (status != SPIDER_NET_DESCR_NOT_IN_USE)) break;
1163 descr = descr->next;
1164 status = spider_net_get_descr_status(descr->hwdescr);
1166 chain->tail = descr;
1168 if ((i == chain->num_desc) || (i == 0))
1169 return 1;
1170 return 0;
1174 * spider_net_decode_one_descr - processes an RX descriptor
1175 * @card: card structure
1177 * Returns 1 if a packet has been sent to the stack, otherwise 0.
1179 * Processes an RX descriptor by iommu-unmapping the data buffer
1180 * and passing the packet up to the stack. This function is called
1181 * in softirq context, e.g. either bottom half from interrupt or
1182 * NAPI polling context.
1184 static int
1185 spider_net_decode_one_descr(struct spider_net_card *card)
1187 struct spider_net_descr_chain *chain = &card->rx_chain;
1188 struct spider_net_descr *descr = chain->tail;
1189 struct spider_net_hw_descr *hwdescr = descr->hwdescr;
1190 u32 hw_buf_addr;
1191 int status;
1193 status = spider_net_get_descr_status(hwdescr);
1195 /* Nothing in the descriptor, or ring must be empty */
1196 if ((status == SPIDER_NET_DESCR_CARDOWNED) ||
1197 (status == SPIDER_NET_DESCR_NOT_IN_USE))
1198 return 0;
1200 /* descriptor definitively used -- move on tail */
1201 chain->tail = descr->next;
1203 /* unmap descriptor */
1204 hw_buf_addr = hwdescr->buf_addr;
1205 hwdescr->buf_addr = 0xffffffff;
1206 pci_unmap_single(card->pdev, hw_buf_addr,
1207 SPIDER_NET_MAX_FRAME, PCI_DMA_FROMDEVICE);
1209 if ( (status == SPIDER_NET_DESCR_RESPONSE_ERROR) ||
1210 (status == SPIDER_NET_DESCR_PROTECTION_ERROR) ||
1211 (status == SPIDER_NET_DESCR_FORCE_END) ) {
1212 if (netif_msg_rx_err(card))
1213 dev_err(&card->netdev->dev,
1214 "dropping RX descriptor with state %d\n", status);
1215 card->netdev_stats.rx_dropped++;
1216 goto bad_desc;
1219 if ( (status != SPIDER_NET_DESCR_COMPLETE) &&
1220 (status != SPIDER_NET_DESCR_FRAME_END) ) {
1221 if (netif_msg_rx_err(card))
1222 dev_err(&card->netdev->dev,
1223 "RX descriptor with unknown state %d\n", status);
1224 card->spider_stats.rx_desc_unk_state++;
1225 goto bad_desc;
1228 /* The cases we'll throw away the packet immediately */
1229 if (hwdescr->data_error & SPIDER_NET_DESTROY_RX_FLAGS) {
1230 if (netif_msg_rx_err(card))
1231 dev_err(&card->netdev->dev,
1232 "error in received descriptor found, "
1233 "data_status=x%08x, data_error=x%08x\n",
1234 hwdescr->data_status, hwdescr->data_error);
1235 goto bad_desc;
1238 if (hwdescr->dmac_cmd_status & 0xfcf4) {
1239 dev_err(&card->netdev->dev, "bad status, cmd_status=x%08x\n",
1240 hwdescr->dmac_cmd_status);
1241 pr_err("buf_addr=x%08x\n", hw_buf_addr);
1242 pr_err("buf_size=x%08x\n", hwdescr->buf_size);
1243 pr_err("next_descr_addr=x%08x\n", hwdescr->next_descr_addr);
1244 pr_err("result_size=x%08x\n", hwdescr->result_size);
1245 pr_err("valid_size=x%08x\n", hwdescr->valid_size);
1246 pr_err("data_status=x%08x\n", hwdescr->data_status);
1247 pr_err("data_error=x%08x\n", hwdescr->data_error);
1248 pr_err("which=%ld\n", descr - card->rx_chain.ring);
1250 card->spider_stats.rx_desc_error++;
1251 goto bad_desc;
1254 /* Ok, we've got a packet in descr */
1255 spider_net_pass_skb_up(descr, card);
1256 descr->skb = NULL;
1257 hwdescr->dmac_cmd_status = SPIDER_NET_DESCR_NOT_IN_USE;
1258 return 1;
1260 bad_desc:
1261 if (netif_msg_rx_err(card))
1262 show_rx_chain(card);
1263 dev_kfree_skb_irq(descr->skb);
1264 descr->skb = NULL;
1265 hwdescr->dmac_cmd_status = SPIDER_NET_DESCR_NOT_IN_USE;
1266 return 0;
1270 * spider_net_poll - NAPI poll function called by the stack to return packets
1271 * @netdev: interface device structure
1272 * @budget: number of packets we can pass to the stack at most
1274 * returns 0 if no more packets available to the driver/stack. Returns 1,
1275 * if the quota is exceeded, but the driver has still packets.
1277 * spider_net_poll returns all packets from the rx descriptors to the stack
1278 * (using netif_receive_skb). If all/enough packets are up, the driver
1279 * reenables interrupts and returns 0. If not, 1 is returned.
1281 static int
1282 spider_net_poll(struct net_device *netdev, int *budget)
1284 struct spider_net_card *card = netdev_priv(netdev);
1285 int packets_to_do, packets_done = 0;
1286 int no_more_packets = 0;
1288 packets_to_do = min(*budget, netdev->quota);
1290 while (packets_to_do) {
1291 if (spider_net_decode_one_descr(card)) {
1292 packets_done++;
1293 packets_to_do--;
1294 } else {
1295 /* no more packets for the stack */
1296 no_more_packets = 1;
1297 break;
1301 if ((packets_done == 0) && (card->num_rx_ints != 0)) {
1302 no_more_packets = spider_net_resync_tail_ptr(card);
1303 spider_net_resync_head_ptr(card);
1305 card->num_rx_ints = 0;
1307 netdev->quota -= packets_done;
1308 *budget -= packets_done;
1309 spider_net_refill_rx_chain(card);
1310 spider_net_enable_rxdmac(card);
1312 spider_net_cleanup_tx_ring(card);
1314 /* if all packets are in the stack, enable interrupts and return 0 */
1315 /* if not, return 1 */
1316 if (no_more_packets) {
1317 netif_rx_complete(netdev);
1318 spider_net_rx_irq_on(card);
1319 card->ignore_rx_ramfull = 0;
1320 return 0;
1323 return 1;
1327 * spider_net_get_stats - get interface statistics
1328 * @netdev: interface device structure
1330 * returns the interface statistics residing in the spider_net_card struct
1332 static struct net_device_stats *
1333 spider_net_get_stats(struct net_device *netdev)
1335 struct spider_net_card *card = netdev_priv(netdev);
1336 struct net_device_stats *stats = &card->netdev_stats;
1337 return stats;
1341 * spider_net_change_mtu - changes the MTU of an interface
1342 * @netdev: interface device structure
1343 * @new_mtu: new MTU value
1345 * returns 0 on success, <0 on failure
1347 static int
1348 spider_net_change_mtu(struct net_device *netdev, int new_mtu)
1350 /* no need to re-alloc skbs or so -- the max mtu is about 2.3k
1351 * and mtu is outbound only anyway */
1352 if ( (new_mtu < SPIDER_NET_MIN_MTU ) ||
1353 (new_mtu > SPIDER_NET_MAX_MTU) )
1354 return -EINVAL;
1355 netdev->mtu = new_mtu;
1356 return 0;
1360 * spider_net_set_mac - sets the MAC of an interface
1361 * @netdev: interface device structure
1362 * @ptr: pointer to new MAC address
1364 * Returns 0 on success, <0 on failure. Currently, we don't support this
1365 * and will always return EOPNOTSUPP.
1367 static int
1368 spider_net_set_mac(struct net_device *netdev, void *p)
1370 struct spider_net_card *card = netdev_priv(netdev);
1371 u32 macl, macu, regvalue;
1372 struct sockaddr *addr = p;
1374 if (!is_valid_ether_addr(addr->sa_data))
1375 return -EADDRNOTAVAIL;
1377 /* switch off GMACTPE and GMACRPE */
1378 regvalue = spider_net_read_reg(card, SPIDER_NET_GMACOPEMD);
1379 regvalue &= ~((1 << 5) | (1 << 6));
1380 spider_net_write_reg(card, SPIDER_NET_GMACOPEMD, regvalue);
1382 /* write mac */
1383 macu = (addr->sa_data[0]<<24) + (addr->sa_data[1]<<16) +
1384 (addr->sa_data[2]<<8) + (addr->sa_data[3]);
1385 macl = (addr->sa_data[4]<<8) + (addr->sa_data[5]);
1386 spider_net_write_reg(card, SPIDER_NET_GMACUNIMACU, macu);
1387 spider_net_write_reg(card, SPIDER_NET_GMACUNIMACL, macl);
1389 /* switch GMACTPE and GMACRPE back on */
1390 regvalue = spider_net_read_reg(card, SPIDER_NET_GMACOPEMD);
1391 regvalue |= ((1 << 5) | (1 << 6));
1392 spider_net_write_reg(card, SPIDER_NET_GMACOPEMD, regvalue);
1394 spider_net_set_promisc(card);
1396 /* look up, whether we have been successful */
1397 if (spider_net_get_mac_address(netdev))
1398 return -EADDRNOTAVAIL;
1399 if (memcmp(netdev->dev_addr,addr->sa_data,netdev->addr_len))
1400 return -EADDRNOTAVAIL;
1402 return 0;
1406 * spider_net_link_reset
1407 * @netdev: net device structure
1409 * This is called when the PHY_LINK signal is asserted. For the blade this is
1410 * not connected so we should never get here.
1413 static void
1414 spider_net_link_reset(struct net_device *netdev)
1417 struct spider_net_card *card = netdev_priv(netdev);
1419 del_timer_sync(&card->aneg_timer);
1421 /* clear interrupt, block further interrupts */
1422 spider_net_write_reg(card, SPIDER_NET_GMACST,
1423 spider_net_read_reg(card, SPIDER_NET_GMACST));
1424 spider_net_write_reg(card, SPIDER_NET_GMACINTEN, 0);
1426 /* reset phy and setup aneg */
1427 spider_net_setup_aneg(card);
1428 mod_timer(&card->aneg_timer, jiffies + SPIDER_NET_ANEG_TIMER);
1433 * spider_net_handle_error_irq - handles errors raised by an interrupt
1434 * @card: card structure
1435 * @status_reg: interrupt status register 0 (GHIINT0STS)
1437 * spider_net_handle_error_irq treats or ignores all error conditions
1438 * found when an interrupt is presented
1440 static void
1441 spider_net_handle_error_irq(struct spider_net_card *card, u32 status_reg)
1443 u32 error_reg1, error_reg2;
1444 u32 i;
1445 int show_error = 1;
1447 error_reg1 = spider_net_read_reg(card, SPIDER_NET_GHIINT1STS);
1448 error_reg2 = spider_net_read_reg(card, SPIDER_NET_GHIINT2STS);
1450 /* check GHIINT0STS ************************************/
1451 if (status_reg)
1452 for (i = 0; i < 32; i++)
1453 if (status_reg & (1<<i))
1454 switch (i)
1456 /* let error_reg1 and error_reg2 evaluation decide, what to do
1457 case SPIDER_NET_PHYINT:
1458 case SPIDER_NET_GMAC2INT:
1459 case SPIDER_NET_GMAC1INT:
1460 case SPIDER_NET_GFIFOINT:
1461 case SPIDER_NET_DMACINT:
1462 case SPIDER_NET_GSYSINT:
1463 break; */
1465 case SPIDER_NET_GIPSINT:
1466 show_error = 0;
1467 break;
1469 case SPIDER_NET_GPWOPCMPINT:
1470 /* PHY write operation completed */
1471 show_error = 0;
1472 break;
1473 case SPIDER_NET_GPROPCMPINT:
1474 /* PHY read operation completed */
1475 /* we don't use semaphores, as we poll for the completion
1476 * of the read operation in spider_net_read_phy. Should take
1477 * about 50 us */
1478 show_error = 0;
1479 break;
1480 case SPIDER_NET_GPWFFINT:
1481 /* PHY command queue full */
1482 if (netif_msg_intr(card))
1483 dev_err(&card->netdev->dev, "PHY write queue full\n");
1484 show_error = 0;
1485 break;
1487 /* case SPIDER_NET_GRMDADRINT: not used. print a message */
1488 /* case SPIDER_NET_GRMARPINT: not used. print a message */
1489 /* case SPIDER_NET_GRMMPINT: not used. print a message */
1491 case SPIDER_NET_GDTDEN0INT:
1492 /* someone has set TX_DMA_EN to 0 */
1493 show_error = 0;
1494 break;
1496 case SPIDER_NET_GDDDEN0INT: /* fallthrough */
1497 case SPIDER_NET_GDCDEN0INT: /* fallthrough */
1498 case SPIDER_NET_GDBDEN0INT: /* fallthrough */
1499 case SPIDER_NET_GDADEN0INT:
1500 /* someone has set RX_DMA_EN to 0 */
1501 show_error = 0;
1502 break;
1504 /* RX interrupts */
1505 case SPIDER_NET_GDDFDCINT:
1506 case SPIDER_NET_GDCFDCINT:
1507 case SPIDER_NET_GDBFDCINT:
1508 case SPIDER_NET_GDAFDCINT:
1509 /* case SPIDER_NET_GDNMINT: not used. print a message */
1510 /* case SPIDER_NET_GCNMINT: not used. print a message */
1511 /* case SPIDER_NET_GBNMINT: not used. print a message */
1512 /* case SPIDER_NET_GANMINT: not used. print a message */
1513 /* case SPIDER_NET_GRFNMINT: not used. print a message */
1514 show_error = 0;
1515 break;
1517 /* TX interrupts */
1518 case SPIDER_NET_GDTFDCINT:
1519 show_error = 0;
1520 break;
1521 case SPIDER_NET_GTTEDINT:
1522 show_error = 0;
1523 break;
1524 case SPIDER_NET_GDTDCEINT:
1525 /* chain end. If a descriptor should be sent, kick off
1526 * tx dma
1527 if (card->tx_chain.tail != card->tx_chain.head)
1528 spider_net_kick_tx_dma(card);
1530 show_error = 0;
1531 break;
1533 /* case SPIDER_NET_G1TMCNTINT: not used. print a message */
1534 /* case SPIDER_NET_GFREECNTINT: not used. print a message */
1537 /* check GHIINT1STS ************************************/
1538 if (error_reg1)
1539 for (i = 0; i < 32; i++)
1540 if (error_reg1 & (1<<i))
1541 switch (i)
1543 case SPIDER_NET_GTMFLLINT:
1544 /* TX RAM full may happen on a usual case.
1545 * Logging is not needed. */
1546 show_error = 0;
1547 break;
1548 case SPIDER_NET_GRFDFLLINT: /* fallthrough */
1549 case SPIDER_NET_GRFCFLLINT: /* fallthrough */
1550 case SPIDER_NET_GRFBFLLINT: /* fallthrough */
1551 case SPIDER_NET_GRFAFLLINT: /* fallthrough */
1552 case SPIDER_NET_GRMFLLINT:
1553 /* Could happen when rx chain is full */
1554 if (card->ignore_rx_ramfull == 0) {
1555 card->ignore_rx_ramfull = 1;
1556 spider_net_resync_head_ptr(card);
1557 spider_net_refill_rx_chain(card);
1558 spider_net_enable_rxdmac(card);
1559 card->num_rx_ints ++;
1560 netif_rx_schedule(card->netdev);
1562 show_error = 0;
1563 break;
1565 /* case SPIDER_NET_GTMSHTINT: problem, print a message */
1566 case SPIDER_NET_GDTINVDINT:
1567 /* allrighty. tx from previous descr ok */
1568 show_error = 0;
1569 break;
1571 /* chain end */
1572 case SPIDER_NET_GDDDCEINT: /* fallthrough */
1573 case SPIDER_NET_GDCDCEINT: /* fallthrough */
1574 case SPIDER_NET_GDBDCEINT: /* fallthrough */
1575 case SPIDER_NET_GDADCEINT:
1576 spider_net_resync_head_ptr(card);
1577 spider_net_refill_rx_chain(card);
1578 spider_net_enable_rxdmac(card);
1579 card->num_rx_ints ++;
1580 netif_rx_schedule(card->netdev);
1581 show_error = 0;
1582 break;
1584 /* invalid descriptor */
1585 case SPIDER_NET_GDDINVDINT: /* fallthrough */
1586 case SPIDER_NET_GDCINVDINT: /* fallthrough */
1587 case SPIDER_NET_GDBINVDINT: /* fallthrough */
1588 case SPIDER_NET_GDAINVDINT:
1589 /* Could happen when rx chain is full */
1590 spider_net_resync_head_ptr(card);
1591 spider_net_refill_rx_chain(card);
1592 spider_net_enable_rxdmac(card);
1593 card->num_rx_ints ++;
1594 netif_rx_schedule(card->netdev);
1595 show_error = 0;
1596 break;
1598 /* case SPIDER_NET_GDTRSERINT: problem, print a message */
1599 /* case SPIDER_NET_GDDRSERINT: problem, print a message */
1600 /* case SPIDER_NET_GDCRSERINT: problem, print a message */
1601 /* case SPIDER_NET_GDBRSERINT: problem, print a message */
1602 /* case SPIDER_NET_GDARSERINT: problem, print a message */
1603 /* case SPIDER_NET_GDSERINT: problem, print a message */
1604 /* case SPIDER_NET_GDTPTERINT: problem, print a message */
1605 /* case SPIDER_NET_GDDPTERINT: problem, print a message */
1606 /* case SPIDER_NET_GDCPTERINT: problem, print a message */
1607 /* case SPIDER_NET_GDBPTERINT: problem, print a message */
1608 /* case SPIDER_NET_GDAPTERINT: problem, print a message */
1609 default:
1610 show_error = 1;
1611 break;
1614 /* check GHIINT2STS ************************************/
1615 if (error_reg2)
1616 for (i = 0; i < 32; i++)
1617 if (error_reg2 & (1<<i))
1618 switch (i)
1620 /* there is nothing we can (want to) do at this time. Log a
1621 * message, we can switch on and off the specific values later on
1622 case SPIDER_NET_GPROPERINT:
1623 case SPIDER_NET_GMCTCRSNGINT:
1624 case SPIDER_NET_GMCTLCOLINT:
1625 case SPIDER_NET_GMCTTMOTINT:
1626 case SPIDER_NET_GMCRCAERINT:
1627 case SPIDER_NET_GMCRCALERINT:
1628 case SPIDER_NET_GMCRALNERINT:
1629 case SPIDER_NET_GMCROVRINT:
1630 case SPIDER_NET_GMCRRNTINT:
1631 case SPIDER_NET_GMCRRXERINT:
1632 case SPIDER_NET_GTITCSERINT:
1633 case SPIDER_NET_GTIFMTERINT:
1634 case SPIDER_NET_GTIPKTRVKINT:
1635 case SPIDER_NET_GTISPINGINT:
1636 case SPIDER_NET_GTISADNGINT:
1637 case SPIDER_NET_GTISPDNGINT:
1638 case SPIDER_NET_GRIFMTERINT:
1639 case SPIDER_NET_GRIPKTRVKINT:
1640 case SPIDER_NET_GRISPINGINT:
1641 case SPIDER_NET_GRISADNGINT:
1642 case SPIDER_NET_GRISPDNGINT:
1643 break;
1645 default:
1646 break;
1649 if ((show_error) && (netif_msg_intr(card)) && net_ratelimit())
1650 dev_err(&card->netdev->dev, "Error interrupt, GHIINT0STS = 0x%08x, "
1651 "GHIINT1STS = 0x%08x, GHIINT2STS = 0x%08x\n",
1652 status_reg, error_reg1, error_reg2);
1654 /* clear interrupt sources */
1655 spider_net_write_reg(card, SPIDER_NET_GHIINT1STS, error_reg1);
1656 spider_net_write_reg(card, SPIDER_NET_GHIINT2STS, error_reg2);
1660 * spider_net_interrupt - interrupt handler for spider_net
1661 * @irq: interupt number
1662 * @ptr: pointer to net_device
1663 * @regs: PU registers
1665 * returns IRQ_HANDLED, if interrupt was for driver, or IRQ_NONE, if no
1666 * interrupt found raised by card.
1668 * This is the interrupt handler, that turns off
1669 * interrupts for this device and makes the stack poll the driver
1671 static irqreturn_t
1672 spider_net_interrupt(int irq, void *ptr)
1674 struct net_device *netdev = ptr;
1675 struct spider_net_card *card = netdev_priv(netdev);
1676 u32 status_reg;
1678 status_reg = spider_net_read_reg(card, SPIDER_NET_GHIINT0STS);
1680 if (!status_reg)
1681 return IRQ_NONE;
1683 if (status_reg & SPIDER_NET_RXINT ) {
1684 spider_net_rx_irq_off(card);
1685 netif_rx_schedule(netdev);
1686 card->num_rx_ints ++;
1688 if (status_reg & SPIDER_NET_TXINT)
1689 netif_rx_schedule(netdev);
1691 if (status_reg & SPIDER_NET_LINKINT)
1692 spider_net_link_reset(netdev);
1694 if (status_reg & SPIDER_NET_ERRINT )
1695 spider_net_handle_error_irq(card, status_reg);
1697 /* clear interrupt sources */
1698 spider_net_write_reg(card, SPIDER_NET_GHIINT0STS, status_reg);
1700 return IRQ_HANDLED;
1703 #ifdef CONFIG_NET_POLL_CONTROLLER
1705 * spider_net_poll_controller - artificial interrupt for netconsole etc.
1706 * @netdev: interface device structure
1708 * see Documentation/networking/netconsole.txt
1710 static void
1711 spider_net_poll_controller(struct net_device *netdev)
1713 disable_irq(netdev->irq);
1714 spider_net_interrupt(netdev->irq, netdev);
1715 enable_irq(netdev->irq);
1717 #endif /* CONFIG_NET_POLL_CONTROLLER */
1720 * spider_net_init_card - initializes the card
1721 * @card: card structure
1723 * spider_net_init_card initializes the card so that other registers can
1724 * be used
1726 static void
1727 spider_net_init_card(struct spider_net_card *card)
1729 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
1730 SPIDER_NET_CKRCTRL_STOP_VALUE);
1732 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
1733 SPIDER_NET_CKRCTRL_RUN_VALUE);
1735 /* trigger ETOMOD signal */
1736 spider_net_write_reg(card, SPIDER_NET_GMACOPEMD,
1737 spider_net_read_reg(card, SPIDER_NET_GMACOPEMD) | 0x4);
1742 * spider_net_enable_card - enables the card by setting all kinds of regs
1743 * @card: card structure
1745 * spider_net_enable_card sets a lot of SMMIO registers to enable the device
1747 static void
1748 spider_net_enable_card(struct spider_net_card *card)
1750 int i;
1751 /* the following array consists of (register),(value) pairs
1752 * that are set in this function. A register of 0 ends the list */
1753 u32 regs[][2] = {
1754 { SPIDER_NET_GRESUMINTNUM, 0 },
1755 { SPIDER_NET_GREINTNUM, 0 },
1757 /* set interrupt frame number registers */
1758 /* clear the single DMA engine registers first */
1759 { SPIDER_NET_GFAFRMNUM, SPIDER_NET_GFXFRAMES_VALUE },
1760 { SPIDER_NET_GFBFRMNUM, SPIDER_NET_GFXFRAMES_VALUE },
1761 { SPIDER_NET_GFCFRMNUM, SPIDER_NET_GFXFRAMES_VALUE },
1762 { SPIDER_NET_GFDFRMNUM, SPIDER_NET_GFXFRAMES_VALUE },
1763 /* then set, what we really need */
1764 { SPIDER_NET_GFFRMNUM, SPIDER_NET_FRAMENUM_VALUE },
1766 /* timer counter registers and stuff */
1767 { SPIDER_NET_GFREECNNUM, 0 },
1768 { SPIDER_NET_GONETIMENUM, 0 },
1769 { SPIDER_NET_GTOUTFRMNUM, 0 },
1771 /* RX mode setting */
1772 { SPIDER_NET_GRXMDSET, SPIDER_NET_RXMODE_VALUE },
1773 /* TX mode setting */
1774 { SPIDER_NET_GTXMDSET, SPIDER_NET_TXMODE_VALUE },
1775 /* IPSEC mode setting */
1776 { SPIDER_NET_GIPSECINIT, SPIDER_NET_IPSECINIT_VALUE },
1778 { SPIDER_NET_GFTRESTRT, SPIDER_NET_RESTART_VALUE },
1780 { SPIDER_NET_GMRWOLCTRL, 0 },
1781 { SPIDER_NET_GTESTMD, 0x10000000 },
1782 { SPIDER_NET_GTTQMSK, 0x00400040 },
1784 { SPIDER_NET_GMACINTEN, 0 },
1786 /* flow control stuff */
1787 { SPIDER_NET_GMACAPAUSE, SPIDER_NET_MACAPAUSE_VALUE },
1788 { SPIDER_NET_GMACTXPAUSE, SPIDER_NET_TXPAUSE_VALUE },
1790 { SPIDER_NET_GMACBSTLMT, SPIDER_NET_BURSTLMT_VALUE },
1791 { 0, 0}
1794 i = 0;
1795 while (regs[i][0]) {
1796 spider_net_write_reg(card, regs[i][0], regs[i][1]);
1797 i++;
1800 /* clear unicast filter table entries 1 to 14 */
1801 for (i = 1; i <= 14; i++) {
1802 spider_net_write_reg(card,
1803 SPIDER_NET_GMRUAFILnR + i * 8,
1804 0x00080000);
1805 spider_net_write_reg(card,
1806 SPIDER_NET_GMRUAFILnR + i * 8 + 4,
1807 0x00000000);
1810 spider_net_write_reg(card, SPIDER_NET_GMRUA0FIL15R, 0x08080000);
1812 spider_net_write_reg(card, SPIDER_NET_ECMODE, SPIDER_NET_ECMODE_VALUE);
1814 /* set chain tail adress for RX chains and
1815 * enable DMA */
1816 spider_net_enable_rxchtails(card);
1817 spider_net_enable_rxdmac(card);
1819 spider_net_write_reg(card, SPIDER_NET_GRXDMAEN, SPIDER_NET_WOL_VALUE);
1821 spider_net_write_reg(card, SPIDER_NET_GMACLENLMT,
1822 SPIDER_NET_LENLMT_VALUE);
1823 spider_net_write_reg(card, SPIDER_NET_GMACOPEMD,
1824 SPIDER_NET_OPMODE_VALUE);
1826 /* set interrupt mask registers */
1827 spider_net_write_reg(card, SPIDER_NET_GHIINT0MSK,
1828 SPIDER_NET_INT0_MASK_VALUE);
1829 spider_net_write_reg(card, SPIDER_NET_GHIINT1MSK,
1830 SPIDER_NET_INT1_MASK_VALUE);
1831 spider_net_write_reg(card, SPIDER_NET_GHIINT2MSK,
1832 SPIDER_NET_INT2_MASK_VALUE);
1834 spider_net_write_reg(card, SPIDER_NET_GDTDMACCNTR,
1835 SPIDER_NET_GDTBSTA);
1839 * spider_net_download_firmware - loads firmware into the adapter
1840 * @card: card structure
1841 * @firmware_ptr: pointer to firmware data
1843 * spider_net_download_firmware loads the firmware data into the
1844 * adapter. It assumes the length etc. to be allright.
1846 static int
1847 spider_net_download_firmware(struct spider_net_card *card,
1848 const void *firmware_ptr)
1850 int sequencer, i;
1851 const u32 *fw_ptr = firmware_ptr;
1853 /* stop sequencers */
1854 spider_net_write_reg(card, SPIDER_NET_GSINIT,
1855 SPIDER_NET_STOP_SEQ_VALUE);
1857 for (sequencer = 0; sequencer < SPIDER_NET_FIRMWARE_SEQS;
1858 sequencer++) {
1859 spider_net_write_reg(card,
1860 SPIDER_NET_GSnPRGADR + sequencer * 8, 0);
1861 for (i = 0; i < SPIDER_NET_FIRMWARE_SEQWORDS; i++) {
1862 spider_net_write_reg(card, SPIDER_NET_GSnPRGDAT +
1863 sequencer * 8, *fw_ptr);
1864 fw_ptr++;
1868 if (spider_net_read_reg(card, SPIDER_NET_GSINIT))
1869 return -EIO;
1871 spider_net_write_reg(card, SPIDER_NET_GSINIT,
1872 SPIDER_NET_RUN_SEQ_VALUE);
1874 return 0;
1878 * spider_net_init_firmware - reads in firmware parts
1879 * @card: card structure
1881 * Returns 0 on success, <0 on failure
1883 * spider_net_init_firmware opens the sequencer firmware and does some basic
1884 * checks. This function opens and releases the firmware structure. A call
1885 * to download the firmware is performed before the release.
1887 * Firmware format
1888 * ===============
1889 * spider_fw.bin is expected to be a file containing 6*1024*4 bytes, 4k being
1890 * the program for each sequencer. Use the command
1891 * tail -q -n +2 Seq_code1_0x088.txt Seq_code2_0x090.txt \
1892 * Seq_code3_0x098.txt Seq_code4_0x0A0.txt Seq_code5_0x0A8.txt \
1893 * Seq_code6_0x0B0.txt | xxd -r -p -c4 > spider_fw.bin
1895 * to generate spider_fw.bin, if you have sequencer programs with something
1896 * like the following contents for each sequencer:
1897 * <ONE LINE COMMENT>
1898 * <FIRST 4-BYTES-WORD FOR SEQUENCER>
1899 * <SECOND 4-BYTES-WORD FOR SEQUENCER>
1900 * ...
1901 * <1024th 4-BYTES-WORD FOR SEQUENCER>
1903 static int
1904 spider_net_init_firmware(struct spider_net_card *card)
1906 struct firmware *firmware = NULL;
1907 struct device_node *dn;
1908 const u8 *fw_prop = NULL;
1909 int err = -ENOENT;
1910 int fw_size;
1912 if (request_firmware((const struct firmware **)&firmware,
1913 SPIDER_NET_FIRMWARE_NAME, &card->pdev->dev) == 0) {
1914 if ( (firmware->size != SPIDER_NET_FIRMWARE_LEN) &&
1915 netif_msg_probe(card) ) {
1916 dev_err(&card->netdev->dev,
1917 "Incorrect size of spidernet firmware in " \
1918 "filesystem. Looking in host firmware...\n");
1919 goto try_host_fw;
1921 err = spider_net_download_firmware(card, firmware->data);
1923 release_firmware(firmware);
1924 if (err)
1925 goto try_host_fw;
1927 goto done;
1930 try_host_fw:
1931 dn = pci_device_to_OF_node(card->pdev);
1932 if (!dn)
1933 goto out_err;
1935 fw_prop = of_get_property(dn, "firmware", &fw_size);
1936 if (!fw_prop)
1937 goto out_err;
1939 if ( (fw_size != SPIDER_NET_FIRMWARE_LEN) &&
1940 netif_msg_probe(card) ) {
1941 dev_err(&card->netdev->dev,
1942 "Incorrect size of spidernet firmware in host firmware\n");
1943 goto done;
1946 err = spider_net_download_firmware(card, fw_prop);
1948 done:
1949 return err;
1950 out_err:
1951 if (netif_msg_probe(card))
1952 dev_err(&card->netdev->dev,
1953 "Couldn't find spidernet firmware in filesystem " \
1954 "or host firmware\n");
1955 return err;
1959 * spider_net_open - called upon ifonfig up
1960 * @netdev: interface device structure
1962 * returns 0 on success, <0 on failure
1964 * spider_net_open allocates all the descriptors and memory needed for
1965 * operation, sets up multicast list and enables interrupts
1968 spider_net_open(struct net_device *netdev)
1970 struct spider_net_card *card = netdev_priv(netdev);
1971 int result;
1973 result = spider_net_init_firmware(card);
1974 if (result)
1975 goto init_firmware_failed;
1977 /* start probing with copper */
1978 spider_net_setup_aneg(card);
1979 if (card->phy.def->phy_id)
1980 mod_timer(&card->aneg_timer, jiffies + SPIDER_NET_ANEG_TIMER);
1982 result = spider_net_init_chain(card, &card->tx_chain);
1983 if (result)
1984 goto alloc_tx_failed;
1985 card->low_watermark = NULL;
1987 result = spider_net_init_chain(card, &card->rx_chain);
1988 if (result)
1989 goto alloc_rx_failed;
1991 /* Allocate rx skbs */
1992 if (spider_net_alloc_rx_skbs(card))
1993 goto alloc_skbs_failed;
1995 spider_net_set_multi(netdev);
1997 /* further enhancement: setup hw vlan, if needed */
1999 result = -EBUSY;
2000 if (request_irq(netdev->irq, spider_net_interrupt,
2001 IRQF_SHARED, netdev->name, netdev))
2002 goto register_int_failed;
2004 spider_net_enable_card(card);
2006 netif_start_queue(netdev);
2007 netif_carrier_on(netdev);
2008 netif_poll_enable(netdev);
2010 return 0;
2012 register_int_failed:
2013 spider_net_free_rx_chain_contents(card);
2014 alloc_skbs_failed:
2015 spider_net_free_chain(card, &card->rx_chain);
2016 alloc_rx_failed:
2017 spider_net_free_chain(card, &card->tx_chain);
2018 alloc_tx_failed:
2019 del_timer_sync(&card->aneg_timer);
2020 init_firmware_failed:
2021 return result;
2025 * spider_net_link_phy
2026 * @data: used for pointer to card structure
2029 static void spider_net_link_phy(unsigned long data)
2031 struct spider_net_card *card = (struct spider_net_card *)data;
2032 struct mii_phy *phy = &card->phy;
2034 /* if link didn't come up after SPIDER_NET_ANEG_TIMEOUT tries, setup phy again */
2035 if (card->aneg_count > SPIDER_NET_ANEG_TIMEOUT) {
2037 pr_info("%s: link is down trying to bring it up\n", card->netdev->name);
2039 switch (card->medium) {
2040 case BCM54XX_COPPER:
2041 /* enable fiber with autonegotiation first */
2042 if (phy->def->ops->enable_fiber)
2043 phy->def->ops->enable_fiber(phy, 1);
2044 card->medium = BCM54XX_FIBER;
2045 break;
2047 case BCM54XX_FIBER:
2048 /* fiber didn't come up, try to disable fiber autoneg */
2049 if (phy->def->ops->enable_fiber)
2050 phy->def->ops->enable_fiber(phy, 0);
2051 card->medium = BCM54XX_UNKNOWN;
2052 break;
2054 case BCM54XX_UNKNOWN:
2055 /* copper, fiber with and without failed,
2056 * retry from beginning */
2057 spider_net_setup_aneg(card);
2058 card->medium = BCM54XX_COPPER;
2059 break;
2062 card->aneg_count = 0;
2063 mod_timer(&card->aneg_timer, jiffies + SPIDER_NET_ANEG_TIMER);
2064 return;
2067 /* link still not up, try again later */
2068 if (!(phy->def->ops->poll_link(phy))) {
2069 card->aneg_count++;
2070 mod_timer(&card->aneg_timer, jiffies + SPIDER_NET_ANEG_TIMER);
2071 return;
2074 /* link came up, get abilities */
2075 phy->def->ops->read_link(phy);
2077 spider_net_write_reg(card, SPIDER_NET_GMACST,
2078 spider_net_read_reg(card, SPIDER_NET_GMACST));
2079 spider_net_write_reg(card, SPIDER_NET_GMACINTEN, 0x4);
2081 if (phy->speed == 1000)
2082 spider_net_write_reg(card, SPIDER_NET_GMACMODE, 0x00000001);
2083 else
2084 spider_net_write_reg(card, SPIDER_NET_GMACMODE, 0);
2086 card->aneg_count = 0;
2088 pr_debug("Found %s with %i Mbps, %s-duplex %sautoneg.\n",
2089 phy->def->name, phy->speed, phy->duplex==1 ? "Full" : "Half",
2090 phy->autoneg==1 ? "" : "no ");
2092 return;
2096 * spider_net_setup_phy - setup PHY
2097 * @card: card structure
2099 * returns 0 on success, <0 on failure
2101 * spider_net_setup_phy is used as part of spider_net_probe.
2103 static int
2104 spider_net_setup_phy(struct spider_net_card *card)
2106 struct mii_phy *phy = &card->phy;
2108 spider_net_write_reg(card, SPIDER_NET_GDTDMASEL,
2109 SPIDER_NET_DMASEL_VALUE);
2110 spider_net_write_reg(card, SPIDER_NET_GPCCTRL,
2111 SPIDER_NET_PHY_CTRL_VALUE);
2113 phy->dev = card->netdev;
2114 phy->mdio_read = spider_net_read_phy;
2115 phy->mdio_write = spider_net_write_phy;
2117 for (phy->mii_id = 1; phy->mii_id <= 31; phy->mii_id++) {
2118 unsigned short id;
2119 id = spider_net_read_phy(card->netdev, phy->mii_id, MII_BMSR);
2120 if (id != 0x0000 && id != 0xffff) {
2121 if (!mii_phy_probe(phy, phy->mii_id)) {
2122 pr_info("Found %s.\n", phy->def->name);
2123 break;
2128 return 0;
2132 * spider_net_workaround_rxramfull - work around firmware bug
2133 * @card: card structure
2135 * no return value
2137 static void
2138 spider_net_workaround_rxramfull(struct spider_net_card *card)
2140 int i, sequencer = 0;
2142 /* cancel reset */
2143 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
2144 SPIDER_NET_CKRCTRL_RUN_VALUE);
2146 /* empty sequencer data */
2147 for (sequencer = 0; sequencer < SPIDER_NET_FIRMWARE_SEQS;
2148 sequencer++) {
2149 spider_net_write_reg(card, SPIDER_NET_GSnPRGADR +
2150 sequencer * 8, 0x0);
2151 for (i = 0; i < SPIDER_NET_FIRMWARE_SEQWORDS; i++) {
2152 spider_net_write_reg(card, SPIDER_NET_GSnPRGDAT +
2153 sequencer * 8, 0x0);
2157 /* set sequencer operation */
2158 spider_net_write_reg(card, SPIDER_NET_GSINIT, 0x000000fe);
2160 /* reset */
2161 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
2162 SPIDER_NET_CKRCTRL_STOP_VALUE);
2166 * spider_net_stop - called upon ifconfig down
2167 * @netdev: interface device structure
2169 * always returns 0
2172 spider_net_stop(struct net_device *netdev)
2174 struct spider_net_card *card = netdev_priv(netdev);
2176 netif_poll_disable(netdev);
2177 netif_carrier_off(netdev);
2178 netif_stop_queue(netdev);
2179 del_timer_sync(&card->tx_timer);
2180 del_timer_sync(&card->aneg_timer);
2182 /* disable/mask all interrupts */
2183 spider_net_write_reg(card, SPIDER_NET_GHIINT0MSK, 0);
2184 spider_net_write_reg(card, SPIDER_NET_GHIINT1MSK, 0);
2185 spider_net_write_reg(card, SPIDER_NET_GHIINT2MSK, 0);
2186 spider_net_write_reg(card, SPIDER_NET_GMACINTEN, 0);
2188 free_irq(netdev->irq, netdev);
2190 spider_net_write_reg(card, SPIDER_NET_GDTDMACCNTR,
2191 SPIDER_NET_DMA_TX_FEND_VALUE);
2193 /* turn off DMA, force end */
2194 spider_net_disable_rxdmac(card);
2196 /* release chains */
2197 spider_net_release_tx_chain(card, 1);
2198 spider_net_free_rx_chain_contents(card);
2200 spider_net_free_chain(card, &card->tx_chain);
2201 spider_net_free_chain(card, &card->rx_chain);
2203 return 0;
2207 * spider_net_tx_timeout_task - task scheduled by the watchdog timeout
2208 * function (to be called not under interrupt status)
2209 * @data: data, is interface device structure
2211 * called as task when tx hangs, resets interface (if interface is up)
2213 static void
2214 spider_net_tx_timeout_task(struct work_struct *work)
2216 struct spider_net_card *card =
2217 container_of(work, struct spider_net_card, tx_timeout_task);
2218 struct net_device *netdev = card->netdev;
2220 if (!(netdev->flags & IFF_UP))
2221 goto out;
2223 netif_device_detach(netdev);
2224 spider_net_stop(netdev);
2226 spider_net_workaround_rxramfull(card);
2227 spider_net_init_card(card);
2229 if (spider_net_setup_phy(card))
2230 goto out;
2232 spider_net_open(netdev);
2233 spider_net_kick_tx_dma(card);
2234 netif_device_attach(netdev);
2236 out:
2237 atomic_dec(&card->tx_timeout_task_counter);
2241 * spider_net_tx_timeout - called when the tx timeout watchdog kicks in.
2242 * @netdev: interface device structure
2244 * called, if tx hangs. Schedules a task that resets the interface
2246 static void
2247 spider_net_tx_timeout(struct net_device *netdev)
2249 struct spider_net_card *card;
2251 card = netdev_priv(netdev);
2252 atomic_inc(&card->tx_timeout_task_counter);
2253 if (netdev->flags & IFF_UP)
2254 schedule_work(&card->tx_timeout_task);
2255 else
2256 atomic_dec(&card->tx_timeout_task_counter);
2257 card->spider_stats.tx_timeouts++;
2261 * spider_net_setup_netdev_ops - initialization of net_device operations
2262 * @netdev: net_device structure
2264 * fills out function pointers in the net_device structure
2266 static void
2267 spider_net_setup_netdev_ops(struct net_device *netdev)
2269 netdev->open = &spider_net_open;
2270 netdev->stop = &spider_net_stop;
2271 netdev->hard_start_xmit = &spider_net_xmit;
2272 netdev->get_stats = &spider_net_get_stats;
2273 netdev->set_multicast_list = &spider_net_set_multi;
2274 netdev->set_mac_address = &spider_net_set_mac;
2275 netdev->change_mtu = &spider_net_change_mtu;
2276 netdev->do_ioctl = &spider_net_do_ioctl;
2277 /* tx watchdog */
2278 netdev->tx_timeout = &spider_net_tx_timeout;
2279 netdev->watchdog_timeo = SPIDER_NET_WATCHDOG_TIMEOUT;
2280 /* NAPI */
2281 netdev->poll = &spider_net_poll;
2282 netdev->weight = SPIDER_NET_NAPI_WEIGHT;
2283 /* HW VLAN */
2284 #ifdef CONFIG_NET_POLL_CONTROLLER
2285 /* poll controller */
2286 netdev->poll_controller = &spider_net_poll_controller;
2287 #endif /* CONFIG_NET_POLL_CONTROLLER */
2288 /* ethtool ops */
2289 netdev->ethtool_ops = &spider_net_ethtool_ops;
2293 * spider_net_setup_netdev - initialization of net_device
2294 * @card: card structure
2296 * Returns 0 on success or <0 on failure
2298 * spider_net_setup_netdev initializes the net_device structure
2300 static int
2301 spider_net_setup_netdev(struct spider_net_card *card)
2303 int result;
2304 struct net_device *netdev = card->netdev;
2305 struct device_node *dn;
2306 struct sockaddr addr;
2307 const u8 *mac;
2309 SET_MODULE_OWNER(netdev);
2310 SET_NETDEV_DEV(netdev, &card->pdev->dev);
2312 pci_set_drvdata(card->pdev, netdev);
2314 init_timer(&card->tx_timer);
2315 card->tx_timer.function =
2316 (void (*)(unsigned long)) spider_net_cleanup_tx_ring;
2317 card->tx_timer.data = (unsigned long) card;
2318 netdev->irq = card->pdev->irq;
2320 card->aneg_count = 0;
2321 init_timer(&card->aneg_timer);
2322 card->aneg_timer.function = spider_net_link_phy;
2323 card->aneg_timer.data = (unsigned long) card;
2325 card->options.rx_csum = SPIDER_NET_RX_CSUM_DEFAULT;
2327 spider_net_setup_netdev_ops(netdev);
2329 netdev->features = NETIF_F_IP_CSUM | NETIF_F_LLTX;
2330 /* some time: NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX |
2331 * NETIF_F_HW_VLAN_FILTER */
2333 netdev->irq = card->pdev->irq;
2334 card->num_rx_ints = 0;
2335 card->ignore_rx_ramfull = 0;
2337 dn = pci_device_to_OF_node(card->pdev);
2338 if (!dn)
2339 return -EIO;
2341 mac = of_get_property(dn, "local-mac-address", NULL);
2342 if (!mac)
2343 return -EIO;
2344 memcpy(addr.sa_data, mac, ETH_ALEN);
2346 result = spider_net_set_mac(netdev, &addr);
2347 if ((result) && (netif_msg_probe(card)))
2348 dev_err(&card->netdev->dev,
2349 "Failed to set MAC address: %i\n", result);
2351 result = register_netdev(netdev);
2352 if (result) {
2353 if (netif_msg_probe(card))
2354 dev_err(&card->netdev->dev,
2355 "Couldn't register net_device: %i\n", result);
2356 return result;
2359 if (netif_msg_probe(card))
2360 pr_info("Initialized device %s.\n", netdev->name);
2362 return 0;
2366 * spider_net_alloc_card - allocates net_device and card structure
2368 * returns the card structure or NULL in case of errors
2370 * the card and net_device structures are linked to each other
2372 static struct spider_net_card *
2373 spider_net_alloc_card(void)
2375 struct net_device *netdev;
2376 struct spider_net_card *card;
2377 size_t alloc_size;
2379 alloc_size = sizeof(struct spider_net_card) +
2380 (tx_descriptors + rx_descriptors) * sizeof(struct spider_net_descr);
2381 netdev = alloc_etherdev(alloc_size);
2382 if (!netdev)
2383 return NULL;
2385 card = netdev_priv(netdev);
2386 card->netdev = netdev;
2387 card->msg_enable = SPIDER_NET_DEFAULT_MSG;
2388 INIT_WORK(&card->tx_timeout_task, spider_net_tx_timeout_task);
2389 init_waitqueue_head(&card->waitq);
2390 atomic_set(&card->tx_timeout_task_counter, 0);
2392 card->rx_chain.num_desc = rx_descriptors;
2393 card->rx_chain.ring = card->darray;
2394 card->tx_chain.num_desc = tx_descriptors;
2395 card->tx_chain.ring = card->darray + rx_descriptors;
2397 return card;
2401 * spider_net_undo_pci_setup - releases PCI ressources
2402 * @card: card structure
2404 * spider_net_undo_pci_setup releases the mapped regions
2406 static void
2407 spider_net_undo_pci_setup(struct spider_net_card *card)
2409 iounmap(card->regs);
2410 pci_release_regions(card->pdev);
2414 * spider_net_setup_pci_dev - sets up the device in terms of PCI operations
2415 * @card: card structure
2416 * @pdev: PCI device
2418 * Returns the card structure or NULL if any errors occur
2420 * spider_net_setup_pci_dev initializes pdev and together with the
2421 * functions called in spider_net_open configures the device so that
2422 * data can be transferred over it
2423 * The net_device structure is attached to the card structure, if the
2424 * function returns without error.
2426 static struct spider_net_card *
2427 spider_net_setup_pci_dev(struct pci_dev *pdev)
2429 struct spider_net_card *card;
2430 unsigned long mmio_start, mmio_len;
2432 if (pci_enable_device(pdev)) {
2433 dev_err(&pdev->dev, "Couldn't enable PCI device\n");
2434 return NULL;
2437 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
2438 dev_err(&pdev->dev,
2439 "Couldn't find proper PCI device base address.\n");
2440 goto out_disable_dev;
2443 if (pci_request_regions(pdev, spider_net_driver_name)) {
2444 dev_err(&pdev->dev,
2445 "Couldn't obtain PCI resources, aborting.\n");
2446 goto out_disable_dev;
2449 pci_set_master(pdev);
2451 card = spider_net_alloc_card();
2452 if (!card) {
2453 dev_err(&pdev->dev,
2454 "Couldn't allocate net_device structure, aborting.\n");
2455 goto out_release_regions;
2457 card->pdev = pdev;
2459 /* fetch base address and length of first resource */
2460 mmio_start = pci_resource_start(pdev, 0);
2461 mmio_len = pci_resource_len(pdev, 0);
2463 card->netdev->mem_start = mmio_start;
2464 card->netdev->mem_end = mmio_start + mmio_len;
2465 card->regs = ioremap(mmio_start, mmio_len);
2467 if (!card->regs) {
2468 dev_err(&pdev->dev,
2469 "Couldn't obtain PCI resources, aborting.\n");
2470 goto out_release_regions;
2473 return card;
2475 out_release_regions:
2476 pci_release_regions(pdev);
2477 out_disable_dev:
2478 pci_disable_device(pdev);
2479 pci_set_drvdata(pdev, NULL);
2480 return NULL;
2484 * spider_net_probe - initialization of a device
2485 * @pdev: PCI device
2486 * @ent: entry in the device id list
2488 * Returns 0 on success, <0 on failure
2490 * spider_net_probe initializes pdev and registers a net_device
2491 * structure for it. After that, the device can be ifconfig'ed up
2493 static int __devinit
2494 spider_net_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
2496 int err = -EIO;
2497 struct spider_net_card *card;
2499 card = spider_net_setup_pci_dev(pdev);
2500 if (!card)
2501 goto out;
2503 spider_net_workaround_rxramfull(card);
2504 spider_net_init_card(card);
2506 err = spider_net_setup_phy(card);
2507 if (err)
2508 goto out_undo_pci;
2510 err = spider_net_setup_netdev(card);
2511 if (err)
2512 goto out_undo_pci;
2514 return 0;
2516 out_undo_pci:
2517 spider_net_undo_pci_setup(card);
2518 free_netdev(card->netdev);
2519 out:
2520 return err;
2524 * spider_net_remove - removal of a device
2525 * @pdev: PCI device
2527 * Returns 0 on success, <0 on failure
2529 * spider_net_remove is called to remove the device and unregisters the
2530 * net_device
2532 static void __devexit
2533 spider_net_remove(struct pci_dev *pdev)
2535 struct net_device *netdev;
2536 struct spider_net_card *card;
2538 netdev = pci_get_drvdata(pdev);
2539 card = netdev_priv(netdev);
2541 wait_event(card->waitq,
2542 atomic_read(&card->tx_timeout_task_counter) == 0);
2544 unregister_netdev(netdev);
2546 /* switch off card */
2547 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
2548 SPIDER_NET_CKRCTRL_STOP_VALUE);
2549 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
2550 SPIDER_NET_CKRCTRL_RUN_VALUE);
2552 spider_net_undo_pci_setup(card);
2553 free_netdev(netdev);
2556 static struct pci_driver spider_net_driver = {
2557 .name = spider_net_driver_name,
2558 .id_table = spider_net_pci_tbl,
2559 .probe = spider_net_probe,
2560 .remove = __devexit_p(spider_net_remove)
2564 * spider_net_init - init function when the driver is loaded
2566 * spider_net_init registers the device driver
2568 static int __init spider_net_init(void)
2570 printk(KERN_INFO "Spidernet version %s.\n", VERSION);
2572 if (rx_descriptors < SPIDER_NET_RX_DESCRIPTORS_MIN) {
2573 rx_descriptors = SPIDER_NET_RX_DESCRIPTORS_MIN;
2574 pr_info("adjusting rx descriptors to %i.\n", rx_descriptors);
2576 if (rx_descriptors > SPIDER_NET_RX_DESCRIPTORS_MAX) {
2577 rx_descriptors = SPIDER_NET_RX_DESCRIPTORS_MAX;
2578 pr_info("adjusting rx descriptors to %i.\n", rx_descriptors);
2580 if (tx_descriptors < SPIDER_NET_TX_DESCRIPTORS_MIN) {
2581 tx_descriptors = SPIDER_NET_TX_DESCRIPTORS_MIN;
2582 pr_info("adjusting tx descriptors to %i.\n", tx_descriptors);
2584 if (tx_descriptors > SPIDER_NET_TX_DESCRIPTORS_MAX) {
2585 tx_descriptors = SPIDER_NET_TX_DESCRIPTORS_MAX;
2586 pr_info("adjusting tx descriptors to %i.\n", tx_descriptors);
2589 return pci_register_driver(&spider_net_driver);
2593 * spider_net_cleanup - exit function when driver is unloaded
2595 * spider_net_cleanup unregisters the device driver
2597 static void __exit spider_net_cleanup(void)
2599 pci_unregister_driver(&spider_net_driver);
2602 module_init(spider_net_init);
2603 module_exit(spider_net_cleanup);