[NET]: Make NAPI polling independent of struct net_device objects.
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / net / spider_net.c
CommitLineData
aaec0fab 1/*
3342cf0e 2 * Network device driver for Cell Processor-Based Blade and Celleb platform
aaec0fab
JO
3 *
4 * (C) Copyright IBM Corp. 2005
3342cf0e 5 * (C) Copyright 2006 TOSHIBA CORPORATION
aaec0fab
JO
6 *
7 * Authors : Utz Bacher <utz.bacher@de.ibm.com>
8 * Jens Osterkamp <Jens.Osterkamp@de.ibm.com>
9 *
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.
14 *
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.
19 *
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.
23 */
24
aaec0fab
JO
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>
7c5c220e 32#include <linux/in.h>
aaec0fab
JO
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>
11f1a52b 46#include <linux/vmalloc.h>
aaec0fab
JO
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>
52
53#include "spider_net.h"
54
55MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com> and Jens Osterkamp " \
56 "<Jens.Osterkamp@de.ibm.com>");
57MODULE_DESCRIPTION("Spider Southbridge Gigabit Ethernet driver");
58MODULE_LICENSE("GPL");
90f10841 59MODULE_VERSION(VERSION);
aaec0fab
JO
60
61static int rx_descriptors = SPIDER_NET_RX_DESCRIPTORS_DEFAULT;
62static int tx_descriptors = SPIDER_NET_TX_DESCRIPTORS_DEFAULT;
63
e2874f2e
LV
64module_param(rx_descriptors, int, 0444);
65module_param(tx_descriptors, int, 0444);
aaec0fab
JO
66
67MODULE_PARM_DESC(rx_descriptors, "number of descriptors used " \
68 "in rx chains");
69MODULE_PARM_DESC(tx_descriptors, "number of descriptors used " \
70 "in tx chain");
71
72char spider_net_driver_name[] = "spidernet";
73
74static 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, }
78};
79
80MODULE_DEVICE_TABLE(pci, spider_net_pci_tbl);
81
82/**
83 * spider_net_read_reg - reads an SMMIO register of a card
84 * @card: device structure
85 * @reg: register to read from
86 *
87 * returns the content of the specified SMMIO register.
88 */
bdd01503 89static inline u32
aaec0fab
JO
90spider_net_read_reg(struct spider_net_card *card, u32 reg)
91{
3bc0f40c
BH
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.
95 */
96 return in_be32(card->regs + reg);
aaec0fab
JO
97}
98
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
104 */
bdd01503 105static inline void
aaec0fab
JO
106spider_net_write_reg(struct spider_net_card *card, u32 reg, u32 value)
107{
3bc0f40c
BH
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.
111 */
112 out_be32(card->regs + reg, value);
aaec0fab
JO
113}
114
aaec0fab
JO
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
120 *
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).
124 **/
125static void
126spider_net_write_phy(struct net_device *netdev, int mii_id,
127 int reg, int val)
128{
129 struct spider_net_card *card = netdev_priv(netdev);
130 u32 writevalue;
131
132 writevalue = ((u32)mii_id << 21) |
133 ((u32)reg << 16) | ((u32)val);
134
135 spider_net_write_reg(card, SPIDER_NET_GPCWOPCMD, writevalue);
136}
137
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
142 *
143 * Returns value read from PHY register
144 *
145 * spider_net_write_phy reads from an arbitrary PHY
146 * register via the spider GPCROPCMD register
147 **/
148static int
149spider_net_read_phy(struct net_device *netdev, int mii_id, int reg)
150{
151 struct spider_net_card *card = netdev_priv(netdev);
152 u32 readvalue;
153
154 readvalue = ((u32)mii_id << 21) | ((u32)reg << 16);
155 spider_net_write_reg(card, SPIDER_NET_GPCROPCMD, readvalue);
156
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);
163
164 readvalue &= SPIDER_NET_GPRDAT_MASK;
165
166 return readvalue;
167}
168
abdb66b5
KI
169/**
170 * spider_net_setup_aneg - initial auto-negotiation setup
171 * @card: device structure
172 **/
173static void
174spider_net_setup_aneg(struct spider_net_card *card)
175{
176 struct mii_phy *phy = &card->phy;
177 u32 advertise = 0;
a1c38a4a 178 u16 bmsr, estat;
abdb66b5 179
a1c38a4a
IK
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);
abdb66b5
KI
182
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;
191
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;
196
197 mii_phy_probe(phy, phy->mii_id);
198 phy->def->ops->setup_aneg(phy, advertise);
199
200}
201
aaec0fab 202/**
11f1a52b 203 * spider_net_rx_irq_off - switch off rx irq on this spider card
aaec0fab
JO
204 * @card: device structure
205 *
11f1a52b 206 * switches off rx irq by masking them out in the GHIINTnMSK register
aaec0fab
JO
207 */
208static void
11f1a52b 209spider_net_rx_irq_off(struct spider_net_card *card)
aaec0fab
JO
210{
211 u32 regvalue;
aaec0fab 212
11f1a52b
AB
213 regvalue = SPIDER_NET_INT0_MASK_VALUE & (~SPIDER_NET_RXINT);
214 spider_net_write_reg(card, SPIDER_NET_GHIINT0MSK, regvalue);
aaec0fab
JO
215}
216
217/**
11f1a52b 218 * spider_net_rx_irq_on - switch on rx irq on this spider card
aaec0fab
JO
219 * @card: device structure
220 *
11f1a52b 221 * switches on rx irq by enabling them in the GHIINTnMSK register
aaec0fab
JO
222 */
223static void
11f1a52b 224spider_net_rx_irq_on(struct spider_net_card *card)
aaec0fab
JO
225{
226 u32 regvalue;
aaec0fab 227
11f1a52b
AB
228 regvalue = SPIDER_NET_INT0_MASK_VALUE | SPIDER_NET_RXINT;
229 spider_net_write_reg(card, SPIDER_NET_GHIINT0MSK, regvalue);
aaec0fab
JO
230}
231
232/**
233 * spider_net_set_promisc - sets the unicast address or the promiscuous mode
234 * @card: card structure
235 *
236 * spider_net_set_promisc sets the unicast destination address filter and
237 * thus either allows for non-promisc mode or promisc mode
238 */
239static void
240spider_net_set_promisc(struct spider_net_card *card)
241{
242 u32 macu, macl;
243 struct net_device *netdev = card->netdev;
244
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));
256
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);
262 }
263}
264
265/**
266 * spider_net_get_mac_address - read mac address from spider card
267 * @card: device structure
268 *
269 * reads MAC address from GMACUNIMACU and GMACUNIMACL registers
270 */
271static int
272spider_net_get_mac_address(struct net_device *netdev)
273{
274 struct spider_net_card *card = netdev_priv(netdev);
275 u32 macl, macu;
276
277 macl = spider_net_read_reg(card, SPIDER_NET_GMACUNIMACL);
278 macu = spider_net_read_reg(card, SPIDER_NET_GMACUNIMACU);
279
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;
286
287 if (!is_valid_ether_addr(&netdev->dev_addr[0]))
288 return -EINVAL;
289
290 return 0;
291}
292
293/**
294 * spider_net_get_descr_status -- returns the status of a descriptor
295 * @descr: descriptor to look at
296 *
297 * returns the status as in the dmac_cmd_status field of the descriptor
298 */
bdd01503 299static inline int
4cb6f9e5 300spider_net_get_descr_status(struct spider_net_hw_descr *hwdescr)
aaec0fab 301{
4cb6f9e5 302 return hwdescr->dmac_cmd_status & SPIDER_NET_DESCR_IND_PROC_MASK;
aaec0fab
JO
303}
304
305/**
306 * spider_net_free_chain - free descriptor chain
307 * @card: card structure
308 * @chain: address of chain
309 *
310 */
311static void
312spider_net_free_chain(struct spider_net_card *card,
313 struct spider_net_descr_chain *chain)
314{
315 struct spider_net_descr *descr;
316
d4ed8f8d
LV
317 descr = chain->ring;
318 do {
aaec0fab 319 descr->bus_addr = 0;
4cb6f9e5 320 descr->hwdescr->next_descr_addr = 0;
d4ed8f8d
LV
321 descr = descr->next;
322 } while (descr != chain->ring);
323
324 dma_free_coherent(&card->pdev->dev, chain->num_desc,
4cb6f9e5 325 chain->hwring, chain->dma_addr);
aaec0fab
JO
326}
327
328/**
d4ed8f8d 329 * spider_net_init_chain - alloc and link descriptor chain
aaec0fab
JO
330 * @card: card structure
331 * @chain: address of chain
aaec0fab 332 *
d4ed8f8d 333 * We manage a circular list that mirrors the hardware structure,
aaec0fab
JO
334 * except that the hardware uses bus addresses.
335 *
d4ed8f8d 336 * Returns 0 on success, <0 on failure
aaec0fab
JO
337 */
338static int
339spider_net_init_chain(struct spider_net_card *card,
d4ed8f8d 340 struct spider_net_descr_chain *chain)
aaec0fab
JO
341{
342 int i;
343 struct spider_net_descr *descr;
4cb6f9e5 344 struct spider_net_hw_descr *hwdescr;
11f1a52b 345 dma_addr_t buf;
d4ed8f8d 346 size_t alloc_size;
aaec0fab 347
4cb6f9e5 348 alloc_size = chain->num_desc * sizeof(struct spider_net_hw_descr);
aaec0fab 349
4cb6f9e5 350 chain->hwring = dma_alloc_coherent(&card->pdev->dev, alloc_size,
d4ed8f8d 351 &chain->dma_addr, GFP_KERNEL);
aaec0fab 352
4cb6f9e5 353 if (!chain->hwring)
d4ed8f8d 354 return -ENOMEM;
aaec0fab 355
4cb6f9e5 356 memset(chain->ring, 0, chain->num_desc * sizeof(struct spider_net_descr));
d4ed8f8d
LV
357
358 /* Set up the hardware pointers in each descriptor */
4cb6f9e5
LV
359 descr = chain->ring;
360 hwdescr = chain->hwring;
d4ed8f8d 361 buf = chain->dma_addr;
4cb6f9e5
LV
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;
aaec0fab 365
4cb6f9e5 366 descr->hwdescr = hwdescr;
11f1a52b 367 descr->bus_addr = buf;
aaec0fab
JO
368 descr->next = descr + 1;
369 descr->prev = descr - 1;
370
4cb6f9e5 371 buf += sizeof(struct spider_net_hw_descr);
aaec0fab
JO
372 }
373 /* do actual circular list */
d4ed8f8d
LV
374 (descr-1)->next = chain->ring;
375 chain->ring->prev = descr-1;
aaec0fab 376
bdd01503 377 spin_lock_init(&chain->lock);
d4ed8f8d
LV
378 chain->head = chain->ring;
379 chain->tail = chain->ring;
aaec0fab 380 return 0;
aaec0fab
JO
381}
382
383/**
384 * spider_net_free_rx_chain_contents - frees descr contents in rx chain
385 * @card: card structure
386 *
387 * returns 0 on success, <0 on failure
388 */
389static void
390spider_net_free_rx_chain_contents(struct spider_net_card *card)
391{
392 struct spider_net_descr *descr;
393
394 descr = card->rx_chain.head;
64751910 395 do {
aaec0fab 396 if (descr->skb) {
4cb6f9e5 397 pci_unmap_single(card->pdev, descr->hwdescr->buf_addr,
11f1a52b 398 SPIDER_NET_MAX_FRAME,
348bc2a6 399 PCI_DMA_BIDIRECTIONAL);
d9c199ee
LV
400 dev_kfree_skb(descr->skb);
401 descr->skb = NULL;
aaec0fab
JO
402 }
403 descr = descr->next;
64751910 404 } while (descr != card->rx_chain.head);
aaec0fab
JO
405}
406
407/**
a4182c50 408 * spider_net_prepare_rx_descr - Reinitialize RX descriptor
aaec0fab
JO
409 * @card: card structure
410 * @descr: descriptor to re-init
411 *
a4182c50 412 * Return 0 on succes, <0 on failure.
aaec0fab 413 *
a4182c50
LV
414 * Allocates a new rx skb, iommu-maps it and attaches it to the
415 * descriptor. Mark the descriptor as activated, ready-to-use.
aaec0fab
JO
416 */
417static int
418spider_net_prepare_rx_descr(struct spider_net_card *card,
419 struct spider_net_descr *descr)
420{
4cb6f9e5 421 struct spider_net_hw_descr *hwdescr = descr->hwdescr;
8e0a613b 422 dma_addr_t buf;
aaec0fab
JO
423 int offset;
424 int bufsize;
425
426 /* we need to round up the buffer size to a multiple of 128 */
11f1a52b 427 bufsize = (SPIDER_NET_MAX_FRAME + SPIDER_NET_RXBUF_ALIGN - 1) &
aaec0fab
JO
428 (~(SPIDER_NET_RXBUF_ALIGN - 1));
429
430 /* and we need to have it 128 byte aligned, therefore we allocate a
431 * bit more */
432 /* allocate an skb */
98739407
CH
433 descr->skb = netdev_alloc_skb(card->netdev,
434 bufsize + SPIDER_NET_RXBUF_ALIGN - 1);
aaec0fab 435 if (!descr->skb) {
11f1a52b 436 if (netif_msg_rx_err(card) && net_ratelimit())
e6311d85
LV
437 dev_err(&card->netdev->dev,
438 "Not enough memory to allocate rx buffer\n");
9b6b0b81 439 card->spider_stats.alloc_rx_skb_error++;
aaec0fab
JO
440 return -ENOMEM;
441 }
4cb6f9e5
LV
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;
aaec0fab
JO
447
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);
a4182c50 452 /* iommu-map the skb */
8e0a613b 453 buf = pci_map_single(card->pdev, descr->skb->data,
bdd01503 454 SPIDER_NET_MAX_FRAME, PCI_DMA_FROMDEVICE);
d4b0a4c1 455 if (pci_dma_mapping_error(buf)) {
aaec0fab 456 dev_kfree_skb_any(descr->skb);
d9c199ee 457 descr->skb = NULL;
11f1a52b 458 if (netif_msg_rx_err(card) && net_ratelimit())
e6311d85 459 dev_err(&card->netdev->dev, "Could not iommu-map rx buffer\n");
9b6b0b81 460 card->spider_stats.rx_iommu_map_error++;
4cb6f9e5 461 hwdescr->dmac_cmd_status = SPIDER_NET_DESCR_NOT_IN_USE;
aaec0fab 462 } else {
4cb6f9e5 463 hwdescr->buf_addr = buf;
90476a20 464 wmb();
4cb6f9e5 465 hwdescr->dmac_cmd_status = SPIDER_NET_DESCR_CARDOWNED |
bdd01503 466 SPIDER_NET_DMAC_NOINTR_COMPLETE;
aaec0fab
JO
467 }
468
a4182c50 469 return 0;
aaec0fab
JO
470}
471
472/**
11f1a52b 473 * spider_net_enable_rxchtails - sets RX dmac chain tail addresses
aaec0fab
JO
474 * @card: card structure
475 *
11f1a52b 476 * spider_net_enable_rxchtails sets the RX DMAC chain tail adresses in the
aaec0fab
JO
477 * chip by writing to the appropriate register. DMA is enabled in
478 * spider_net_enable_rxdmac.
479 */
bdd01503 480static inline void
aaec0fab
JO
481spider_net_enable_rxchtails(struct spider_net_card *card)
482{
483 /* assume chain is aligned correctly */
484 spider_net_write_reg(card, SPIDER_NET_GDADCHA ,
485 card->rx_chain.tail->bus_addr);
486}
487
488/**
489 * spider_net_enable_rxdmac - enables a receive DMA controller
490 * @card: card structure
491 *
492 * spider_net_enable_rxdmac enables the DMA controller by setting RX_DMA_EN
493 * in the GDADMACCNTR register
494 */
bdd01503 495static inline void
aaec0fab
JO
496spider_net_enable_rxdmac(struct spider_net_card *card)
497{
11f1a52b 498 wmb();
aaec0fab
JO
499 spider_net_write_reg(card, SPIDER_NET_GDADMACCNTR,
500 SPIDER_NET_DMA_RX_VALUE);
501}
502
59a11f88
LV
503/**
504 * spider_net_disable_rxdmac - disables the receive DMA controller
505 * @card: card structure
506 *
507 * spider_net_disable_rxdmac terminates processing on the DMA controller
508 * by turing off the DMA controller, with the force-end flag set.
509 */
510static inline void
511spider_net_disable_rxdmac(struct spider_net_card *card)
512{
513 spider_net_write_reg(card, SPIDER_NET_GDADMACCNTR,
514 SPIDER_NET_DMA_RX_FEND_VALUE);
515}
516
aaec0fab
JO
517/**
518 * spider_net_refill_rx_chain - refills descriptors/skbs in the rx chains
519 * @card: card structure
520 *
11f1a52b 521 * refills descriptors in the rx chain: allocates skbs and iommu-maps them.
aaec0fab
JO
522 */
523static void
524spider_net_refill_rx_chain(struct spider_net_card *card)
525{
bdd01503
JO
526 struct spider_net_descr_chain *chain = &card->rx_chain;
527 unsigned long flags;
aaec0fab 528
11f1a52b
AB
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. */
bdd01503
JO
533 if (!spin_trylock_irqsave(&chain->lock, flags))
534 return;
535
4cb6f9e5 536 while (spider_net_get_descr_status(chain->head->hwdescr) ==
bdd01503
JO
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;
541 }
aaec0fab 542
bdd01503 543 spin_unlock_irqrestore(&chain->lock, flags);
aaec0fab
JO
544}
545
546/**
2c307db7 547 * spider_net_alloc_rx_skbs - Allocates rx skbs in rx descriptor chains
aaec0fab
JO
548 * @card: card structure
549 *
2c307db7 550 * Returns 0 on success, <0 on failure.
aaec0fab
JO
551 */
552static int
553spider_net_alloc_rx_skbs(struct spider_net_card *card)
554{
2bf27a0d
LV
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;
aaec0fab 558
2bf27a0d
LV
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);
aaec0fab 564
2c307db7
LV
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. */
aaec0fab
JO
568 if (spider_net_prepare_rx_descr(card, chain->head))
569 goto error;
570 else
571 chain->head = chain->head->next;
572
2c307db7
LV
573 /* This will allocate the rest of the rx buffers;
574 * if not, it's business as usual later on. */
aaec0fab 575 spider_net_refill_rx_chain(card);
11f1a52b 576 spider_net_enable_rxdmac(card);
aaec0fab
JO
577 return 0;
578
579error:
580 spider_net_free_rx_chain_contents(card);
2bf27a0d 581 return -ENOMEM;
aaec0fab
JO
582}
583
aaec0fab
JO
584/**
585 * spider_net_get_multicast_hash - generates hash for multicast filter table
586 * @addr: multicast address
587 *
588 * returns the hash value.
589 *
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
592 */
593static u8
594spider_net_get_multicast_hash(struct net_device *netdev, __u8 *addr)
595{
aaec0fab
JO
596 u32 crc;
597 u8 hash;
11f1a52b
AB
598 char addr_for_crc[ETH_ALEN] = { 0, };
599 int i, bit;
600
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));
604 }
aaec0fab 605
11f1a52b 606 crc = crc32_be(~0, addr_for_crc, netdev->addr_len);
aaec0fab
JO
607
608 hash = (crc >> 27);
609 hash <<= 3;
610 hash |= crc & 7;
11f1a52b 611 hash &= 0xff;
aaec0fab
JO
612
613 return hash;
614}
615
616/**
617 * spider_net_set_multi - sets multicast addresses and promisc flags
618 * @netdev: interface device structure
619 *
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
623 */
624static void
625spider_net_set_multi(struct net_device *netdev)
626{
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, };
634
635 spider_net_set_promisc(card);
636
637 if (netdev->flags & IFF_ALLMULTI) {
638 for (i = 0; i < SPIDER_NET_MULTICAST_HASHES; i++) {
639 set_bit(i, bitmask);
640 }
641 goto write_hash;
642 }
643
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);
647
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);
651 }
652
653write_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;
667
668 spider_net_write_reg(card, SPIDER_NET_GMRMHFILnR + i * 4, reg);
669 }
670}
671
aaec0fab
JO
672/**
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
677 *
678 * returns 0 on success, <0 on failure.
679 *
680 * fills out the descriptor structure with skb data and len. Copies data,
681 * if needed (32bit DMA!)
682 */
683static int
684spider_net_prepare_tx_descr(struct spider_net_card *card,
aaec0fab
JO
685 struct sk_buff *skb)
686{
d9c199ee 687 struct spider_net_descr_chain *chain = &card->tx_chain;
9cc7bf7e 688 struct spider_net_descr *descr;
4cb6f9e5 689 struct spider_net_hw_descr *hwdescr;
11f1a52b 690 dma_addr_t buf;
9cc7bf7e 691 unsigned long flags;
11f1a52b 692
9c434f5e 693 buf = pci_map_single(card->pdev, skb->data, skb->len, PCI_DMA_TODEVICE);
d4b0a4c1 694 if (pci_dma_mapping_error(buf)) {
11f1a52b 695 if (netif_msg_tx_err(card) && net_ratelimit())
e6311d85 696 dev_err(&card->netdev->dev, "could not iommu-map packet (%p, %i). "
9c434f5e 697 "Dropping packet\n", skb->data, skb->len);
9b6b0b81 698 card->spider_stats.tx_iommu_map_error++;
aaec0fab
JO
699 return -ENOMEM;
700 }
701
d9c199ee 702 spin_lock_irqsave(&chain->lock, flags);
9cc7bf7e 703 descr = card->tx_chain.head;
d9c199ee
LV
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;
708 }
4cb6f9e5 709 hwdescr = descr->hwdescr;
d9c199ee 710 chain->head = descr->next;
9cc7bf7e 711
aaec0fab 712 descr->skb = skb;
4cb6f9e5
LV
713 hwdescr->buf_addr = buf;
714 hwdescr->buf_size = skb->len;
715 hwdescr->next_descr_addr = 0;
716 hwdescr->data_status = 0;
aaec0fab 717
4cb6f9e5 718 hwdescr->dmac_cmd_status =
5f309b90 719 SPIDER_NET_DESCR_CARDOWNED | SPIDER_NET_DMAC_TXFRMTL;
d9c199ee 720 spin_unlock_irqrestore(&chain->lock, flags);
9cc7bf7e 721
3a2c892d 722 if (skb->ip_summed == CHECKSUM_PARTIAL)
eddc9ec5 723 switch (ip_hdr(skb)->protocol) {
bdd01503 724 case IPPROTO_TCP:
4cb6f9e5 725 hwdescr->dmac_cmd_status |= SPIDER_NET_DMAC_TCP;
bdd01503
JO
726 break;
727 case IPPROTO_UDP:
4cb6f9e5 728 hwdescr->dmac_cmd_status |= SPIDER_NET_DMAC_UDP;
bdd01503
JO
729 break;
730 }
731
204e5fa1 732 /* Chain the bus address, so that the DMA engine finds this descr. */
4cb6f9e5
LV
733 wmb();
734 descr->prev->hwdescr->next_descr_addr = descr->bus_addr;
bdd01503 735
917a5b8e 736 card->netdev->trans_start = jiffies; /* set netdev watchdog timer */
bdd01503
JO
737 return 0;
738}
739
a664ccf4 740static int
204e5fa1
LV
741spider_net_set_low_watermark(struct spider_net_card *card)
742{
4cb6f9e5
LV
743 struct spider_net_descr *descr = card->tx_chain.tail;
744 struct spider_net_hw_descr *hwdescr;
9cc7bf7e 745 unsigned long flags;
204e5fa1
LV
746 int status;
747 int cnt=0;
748 int i;
204e5fa1 749
9cc7bf7e
LV
750 /* Measure the length of the queue. Measurement does not
751 * need to be precise -- does not need a lock. */
204e5fa1 752 while (descr != card->tx_chain.head) {
4cb6f9e5 753 status = descr->hwdescr->dmac_cmd_status & SPIDER_NET_DESCR_NOT_IN_USE;
204e5fa1
LV
754 if (status == SPIDER_NET_DESCR_NOT_IN_USE)
755 break;
756 descr = descr->next;
757 cnt++;
758 }
759
760 /* If TX queue is short, don't even bother with interrupts */
d4ed8f8d 761 if (cnt < card->tx_chain.num_desc/4)
a664ccf4 762 return cnt;
204e5fa1
LV
763
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;
769
770 /* Set the new watermark, clear the old watermark */
9cc7bf7e 771 spin_lock_irqsave(&card->tx_chain.lock, flags);
4cb6f9e5
LV
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;
777 }
204e5fa1 778 card->low_watermark = descr;
9cc7bf7e 779 spin_unlock_irqrestore(&card->tx_chain.lock, flags);
a664ccf4 780 return cnt;
204e5fa1
LV
781}
782
bdd01503
JO
783/**
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
787 *
788 * returns 0 if the tx ring is empty, otherwise 1.
789 *
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.
794 */
795static int
796spider_net_release_tx_chain(struct spider_net_card *card, int brutal)
797{
798 struct spider_net_descr_chain *chain = &card->tx_chain;
9cc7bf7e 799 struct spider_net_descr *descr;
4cb6f9e5 800 struct spider_net_hw_descr *hwdescr;
9cc7bf7e
LV
801 struct sk_buff *skb;
802 u32 buf_addr;
803 unsigned long flags;
bdd01503
JO
804 int status;
805
5c8e98fe 806 while (1) {
9cc7bf7e 807 spin_lock_irqsave(&chain->lock, flags);
5c8e98fe
LV
808 if (chain->tail == chain->head) {
809 spin_unlock_irqrestore(&chain->lock, flags);
810 return 0;
811 }
9cc7bf7e 812 descr = chain->tail;
4cb6f9e5 813 hwdescr = descr->hwdescr;
9cc7bf7e 814
4cb6f9e5 815 status = spider_net_get_descr_status(hwdescr);
bdd01503
JO
816 switch (status) {
817 case SPIDER_NET_DESCR_COMPLETE:
818 card->netdev_stats.tx_packets++;
9cc7bf7e 819 card->netdev_stats.tx_bytes += descr->skb->len;
bdd01503
JO
820 break;
821
822 case SPIDER_NET_DESCR_CARDOWNED:
9cc7bf7e
LV
823 if (!brutal) {
824 spin_unlock_irqrestore(&chain->lock, flags);
bdd01503 825 return 1;
9cc7bf7e
LV
826 }
827
bdd01503
JO
828 /* fallthrough, if we release the descriptors
829 * brutally (then we don't care about
830 * SPIDER_NET_DESCR_CARDOWNED) */
831
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))
e6311d85
LV
836 dev_err(&card->netdev->dev, "forcing end of tx descriptor "
837 "with status x%02x\n", status);
bdd01503
JO
838 card->netdev_stats.tx_errors++;
839 break;
840
841 default:
842 card->netdev_stats.tx_dropped++;
9cc7bf7e
LV
843 if (!brutal) {
844 spin_unlock_irqrestore(&chain->lock, flags);
c3fee4c5 845 return 1;
9cc7bf7e 846 }
bdd01503 847 }
aaec0fab 848
9cc7bf7e 849 chain->tail = descr->next;
4cb6f9e5 850 hwdescr->dmac_cmd_status |= SPIDER_NET_DESCR_NOT_IN_USE;
9cc7bf7e 851 skb = descr->skb;
d9c199ee 852 descr->skb = NULL;
4cb6f9e5 853 buf_addr = hwdescr->buf_addr;
9cc7bf7e
LV
854 spin_unlock_irqrestore(&chain->lock, flags);
855
856 /* unmap the skb */
857 if (skb) {
9c434f5e
JL
858 pci_unmap_single(card->pdev, buf_addr, skb->len,
859 PCI_DMA_TODEVICE);
9cc7bf7e
LV
860 dev_kfree_skb(skb);
861 }
862 }
aaec0fab
JO
863 return 0;
864}
865
866/**
867 * spider_net_kick_tx_dma - enables TX DMA processing
868 * @card: card structure
869 * @descr: descriptor address to enable TX processing at
870 *
a664ccf4
LV
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.
aaec0fab 877 */
bdd01503
JO
878static inline void
879spider_net_kick_tx_dma(struct spider_net_card *card)
aaec0fab 880{
bdd01503 881 struct spider_net_descr *descr;
aaec0fab 882
bdd01503
JO
883 if (spider_net_read_reg(card, SPIDER_NET_GDTDMACCNTR) &
884 SPIDER_NET_TX_DMA_EN)
885 goto out;
aaec0fab 886
bdd01503
JO
887 descr = card->tx_chain.tail;
888 for (;;) {
4cb6f9e5 889 if (spider_net_get_descr_status(descr->hwdescr) ==
bdd01503
JO
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;
896 }
897 if (descr == card->tx_chain.head)
898 break;
899 descr = descr->next;
900 }
901
902out:
903 mod_timer(&card->tx_timer, jiffies + SPIDER_NET_TX_TIMER);
aaec0fab
JO
904}
905
906/**
907 * spider_net_xmit - transmits a frame over the device
908 * @skb: packet to send out
909 * @netdev: interface device structure
910 *
bdd01503 911 * returns 0 on success, !0 on failure
aaec0fab
JO
912 */
913static int
914spider_net_xmit(struct sk_buff *skb, struct net_device *netdev)
915{
a664ccf4 916 int cnt;
aaec0fab 917 struct spider_net_card *card = netdev_priv(netdev);
bdd01503 918
11f1a52b 919 spider_net_release_tx_chain(card, 0);
aaec0fab 920
d9c199ee 921 if (spider_net_prepare_tx_descr(card, skb) != 0) {
9b6b0b81 922 card->netdev_stats.tx_dropped++;
313ef4b7
LV
923 netif_stop_queue(netdev);
924 return NETDEV_TX_BUSY;
bdd01503 925 }
aaec0fab 926
a664ccf4
LV
927 cnt = spider_net_set_low_watermark(card);
928 if (cnt < 5)
929 spider_net_kick_tx_dma(card);
313ef4b7 930 return NETDEV_TX_OK;
bdd01503 931}
11f1a52b 932
bdd01503
JO
933/**
934 * spider_net_cleanup_tx_ring - cleans up the TX ring
935 * @card: card structure
936 *
68a8c609
LV
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.
bdd01503
JO
941 */
942static void
943spider_net_cleanup_tx_ring(struct spider_net_card *card)
944{
bdd01503 945 if ((spider_net_release_tx_chain(card, 0) != 0) &&
313ef4b7 946 (card->netdev->flags & IFF_UP)) {
bdd01503 947 spider_net_kick_tx_dma(card);
313ef4b7
LV
948 netif_wake_queue(card->netdev);
949 }
aaec0fab
JO
950}
951
952/**
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
957 *
958 * returns 0 on success, <0 on failure. Currently, we have no special ioctls.
959 * -EOPNOTSUPP is returned, if an unknown ioctl was requested
960 */
961static int
962spider_net_do_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
963{
964 switch (cmd) {
965 default:
966 return -EOPNOTSUPP;
967 }
968}
969
970/**
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
974 *
05b346b5
LV
975 * Fills out skb structure and passes the data to the stack.
976 * The descriptor state is not changed.
aaec0fab 977 */
7f7223b8 978static void
aaec0fab 979spider_net_pass_skb_up(struct spider_net_descr *descr,
1cd173f6 980 struct spider_net_card *card)
aaec0fab 981{
4cb6f9e5 982 struct spider_net_hw_descr *hwdescr= descr->hwdescr;
aaec0fab
JO
983 struct sk_buff *skb;
984 struct net_device *netdev;
985 u32 data_status, data_error;
986
4cb6f9e5
LV
987 data_status = hwdescr->data_status;
988 data_error = hwdescr->data_error;
aaec0fab
JO
989 netdev = card->netdev;
990
11f1a52b 991 skb = descr->skb;
4cb6f9e5 992 skb_put(skb, hwdescr->valid_size);
aaec0fab
JO
993
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);
999
1000 /* checksum offload */
1001 if (card->options.rx_csum) {
11f1a52b
AB
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))
aaec0fab
JO
1005 skb->ip_summed = CHECKSUM_UNNECESSARY;
1006 else
1007 skb->ip_summed = CHECKSUM_NONE;
11f1a52b 1008 } else
aaec0fab 1009 skb->ip_summed = CHECKSUM_NONE;
aaec0fab
JO
1010
1011 if (data_status & SPIDER_NET_VLAN_PACKET) {
1012 /* further enhancements: HW-accel VLAN
1013 * vlan_hwaccel_receive_skb
1014 */
1015 }
1016
aaec0fab
JO
1017 /* update netdevice statistics */
1018 card->netdev_stats.rx_packets++;
1019 card->netdev_stats.rx_bytes += skb->len;
93c1d3b7
FM
1020
1021 /* pass skb up to stack */
1022 netif_receive_skb(skb);
aaec0fab
JO
1023}
1024
6d24998f
LV
1025static void show_rx_chain(struct spider_net_card *card)
1026{
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;
9948357d
LV
1030 struct spider_net_hw_descr *hwd = start->hwdescr;
1031 struct device *dev = &card->netdev->dev;
1032 u32 curr_desc, next_desc;
6d24998f
LV
1033 int status;
1034
9948357d 1035 int tot = 0;
6d24998f 1036 int cnt = 0;
9948357d
LV
1037 int off = start - chain->ring;
1038 int cstat = hwd->dmac_cmd_status;
1039
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);
1044
1045 curr_desc = spider_net_read_reg(card, SPIDER_NET_GDACTDPA);
1046 next_desc = spider_net_read_reg(card, SPIDER_NET_GDACNEXTDA);
1047
6d24998f
LV
1048 status = cstat;
1049 do
1050 {
9948357d
LV
1051 hwd = descr->hwdescr;
1052 off = descr - chain->ring;
1053 status = hwd->dmac_cmd_status;
1054
1055 if (descr == chain->head)
1056 dev_info(dev, "Chain head is at %d, head status=0x%x\n",
1057 off, status);
1058
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);
1062
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);
1066
1067 if (hwd->next_descr_addr == 0)
1068 dev_info(dev, "chain is cut at %d\n", off);
1069
6d24998f 1070 if (cstat != status) {
9948357d
LV
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);
6d24998f
LV
1075 cstat = status;
1076 cnt = 0;
1077 }
9948357d 1078
6d24998f 1079 cnt ++;
9948357d
LV
1080 tot ++;
1081 descr = descr->next;
1082 } while (descr != start);
1083
1084 dev_info(dev, "Last %d descrs with stat=0x%08x "
1085 "for a total of %d descrs\n", cnt, cstat, tot);
1086
1087#ifdef DEBUG
1088 /* Now dump the whole ring */
1089 descr = start;
1090 do
1091 {
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");
1106
6d24998f
LV
1107 descr = descr->next;
1108 } while (descr != start);
6d24998f
LV
1109#endif
1110
9948357d
LV
1111}
1112
4c4bd5a9
LV
1113/**
1114 * spider_net_resync_head_ptr - Advance head ptr past empty descrs
1115 *
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.
1121 */
1122static void spider_net_resync_head_ptr(struct spider_net_card *card)
1123{
1124 unsigned long flags;
1125 struct spider_net_descr_chain *chain = &card->rx_chain;
1126 struct spider_net_descr *descr;
1127 int i, status;
1128
1129 /* Advance head pointer past any empty descrs */
1130 descr = chain->head;
1131 status = spider_net_get_descr_status(descr->hwdescr);
1132
1133 if (status == SPIDER_NET_DESCR_NOT_IN_USE)
1134 return;
1135
1136 spin_lock_irqsave(&chain->lock, flags);
1137
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);
1144 }
1145 chain->head = descr;
1146
1147 spin_unlock_irqrestore(&chain->lock, flags);
1148}
1149
1150static int spider_net_resync_tail_ptr(struct spider_net_card *card)
1151{
1152 struct spider_net_descr_chain *chain = &card->rx_chain;
1153 struct spider_net_descr *descr;
1154 int i, status;
1155
1156 /* Advance tail pointer past any empty and reaped descrs */
1157 descr = chain->tail;
1158 status = spider_net_get_descr_status(descr->hwdescr);
1159
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);
1165 }
1166 chain->tail = descr;
1167
1168 if ((i == chain->num_desc) || (i == 0))
1169 return 1;
1170 return 0;
1171}
1172
aaec0fab 1173/**
7376e732 1174 * spider_net_decode_one_descr - processes an RX descriptor
aaec0fab
JO
1175 * @card: card structure
1176 *
7376e732 1177 * Returns 1 if a packet has been sent to the stack, otherwise 0.
aaec0fab 1178 *
7376e732
LV
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.
aaec0fab
JO
1183 */
1184static int
1cd173f6 1185spider_net_decode_one_descr(struct spider_net_card *card)
aaec0fab 1186{
bdd01503
JO
1187 struct spider_net_descr_chain *chain = &card->rx_chain;
1188 struct spider_net_descr *descr = chain->tail;
4cb6f9e5 1189 struct spider_net_hw_descr *hwdescr = descr->hwdescr;
9e0a6e25 1190 u32 hw_buf_addr;
bdd01503 1191 int status;
aaec0fab 1192
4cb6f9e5 1193 status = spider_net_get_descr_status(hwdescr);
aaec0fab 1194
80dab7c7
LV
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))
1cd173f6 1198 return 0;
aaec0fab 1199
11f1a52b 1200 /* descriptor definitively used -- move on tail */
aaec0fab
JO
1201 chain->tail = descr->next;
1202
05b346b5 1203 /* unmap descriptor */
9e0a6e25
LV
1204 hw_buf_addr = hwdescr->buf_addr;
1205 hwdescr->buf_addr = 0xffffffff;
1206 pci_unmap_single(card->pdev, hw_buf_addr,
05b346b5
LV
1207 SPIDER_NET_MAX_FRAME, PCI_DMA_FROMDEVICE);
1208
aaec0fab
JO
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))
e6311d85
LV
1213 dev_err(&card->netdev->dev,
1214 "dropping RX descriptor with state %d\n", status);
aaec0fab 1215 card->netdev_stats.rx_dropped++;
7f7223b8 1216 goto bad_desc;
aaec0fab
JO
1217 }
1218
1219 if ( (status != SPIDER_NET_DESCR_COMPLETE) &&
1220 (status != SPIDER_NET_DESCR_FRAME_END) ) {
5a028877 1221 if (netif_msg_rx_err(card))
e6311d85
LV
1222 dev_err(&card->netdev->dev,
1223 "RX descriptor with unknown state %d\n", status);
5a028877 1224 card->spider_stats.rx_desc_unk_state++;
7f7223b8 1225 goto bad_desc;
aaec0fab
JO
1226 }
1227
366684bd 1228 /* The cases we'll throw away the packet immediately */
4cb6f9e5 1229 if (hwdescr->data_error & SPIDER_NET_DESTROY_RX_FLAGS) {
366684bd 1230 if (netif_msg_rx_err(card))
e6311d85
LV
1231 dev_err(&card->netdev->dev,
1232 "error in received descriptor found, "
366684bd 1233 "data_status=x%08x, data_error=x%08x\n",
4cb6f9e5 1234 hwdescr->data_status, hwdescr->data_error);
7f7223b8 1235 goto bad_desc;
366684bd
LV
1236 }
1237
e65bbf13 1238 if (hwdescr->dmac_cmd_status & SPIDER_NET_DESCR_BAD_STATUS) {
e6311d85 1239 dev_err(&card->netdev->dev, "bad status, cmd_status=x%08x\n",
4cb6f9e5 1240 hwdescr->dmac_cmd_status);
9e0a6e25 1241 pr_err("buf_addr=x%08x\n", hw_buf_addr);
4cb6f9e5
LV
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);
6d24998f
LV
1248 pr_err("which=%ld\n", descr - card->rx_chain.ring);
1249
1250 card->spider_stats.rx_desc_error++;
1251 goto bad_desc;
1252 }
1253
7f7223b8
LV
1254 /* Ok, we've got a packet in descr */
1255 spider_net_pass_skb_up(descr, card);
83d35145 1256 descr->skb = NULL;
4cb6f9e5 1257 hwdescr->dmac_cmd_status = SPIDER_NET_DESCR_NOT_IN_USE;
7f7223b8
LV
1258 return 1;
1259
1260bad_desc:
9948357d
LV
1261 if (netif_msg_rx_err(card))
1262 show_rx_chain(card);
7f7223b8 1263 dev_kfree_skb_irq(descr->skb);
d9c199ee 1264 descr->skb = NULL;
4cb6f9e5 1265 hwdescr->dmac_cmd_status = SPIDER_NET_DESCR_NOT_IN_USE;
7f7223b8 1266 return 0;
aaec0fab
JO
1267}
1268
1269/**
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
1273 *
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.
1276 *
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.
1280 */
bea3348e 1281static int spider_net_poll(struct napi_struct *napi, int budget)
aaec0fab 1282{
bea3348e
SH
1283 struct spider_net_card *card = container_of(napi, struct spider_net_card, napi);
1284 struct net_device *netdev = card->netdev;
1285 int packets_done = 0;
1286
1287 while (packets_done < budget) {
1288 if (!spider_net_decode_one_descr(card))
aaec0fab 1289 break;
bea3348e
SH
1290
1291 packets_done++;
aaec0fab
JO
1292 }
1293
4c4bd5a9 1294 if ((packets_done == 0) && (card->num_rx_ints != 0)) {
bea3348e
SH
1295 if (!spider_net_resync_tail_ptr(card))
1296 packets_done = budget;
4c4bd5a9
LV
1297 spider_net_resync_head_ptr(card);
1298 }
1299 card->num_rx_ints = 0;
1300
11f1a52b 1301 spider_net_refill_rx_chain(card);
80dab7c7 1302 spider_net_enable_rxdmac(card);
aaec0fab 1303
e1fd9070
LV
1304 spider_net_cleanup_tx_ring(card);
1305
aaec0fab
JO
1306 /* if all packets are in the stack, enable interrupts and return 0 */
1307 /* if not, return 1 */
bea3348e
SH
1308 if (packets_done < budget) {
1309 netif_rx_complete(netdev, napi);
aaec0fab 1310 spider_net_rx_irq_on(card);
c3d1182a 1311 card->ignore_rx_ramfull = 0;
aaec0fab
JO
1312 }
1313
bea3348e 1314 return packets_done;
aaec0fab
JO
1315}
1316
aaec0fab
JO
1317/**
1318 * spider_net_get_stats - get interface statistics
1319 * @netdev: interface device structure
1320 *
1321 * returns the interface statistics residing in the spider_net_card struct
1322 */
1323static struct net_device_stats *
1324spider_net_get_stats(struct net_device *netdev)
1325{
1326 struct spider_net_card *card = netdev_priv(netdev);
1327 struct net_device_stats *stats = &card->netdev_stats;
1328 return stats;
1329}
1330
1331/**
1332 * spider_net_change_mtu - changes the MTU of an interface
1333 * @netdev: interface device structure
1334 * @new_mtu: new MTU value
1335 *
1336 * returns 0 on success, <0 on failure
1337 */
1338static int
1339spider_net_change_mtu(struct net_device *netdev, int new_mtu)
1340{
1341 /* no need to re-alloc skbs or so -- the max mtu is about 2.3k
1342 * and mtu is outbound only anyway */
1343 if ( (new_mtu < SPIDER_NET_MIN_MTU ) ||
1344 (new_mtu > SPIDER_NET_MAX_MTU) )
1345 return -EINVAL;
1346 netdev->mtu = new_mtu;
1347 return 0;
1348}
1349
1350/**
1351 * spider_net_set_mac - sets the MAC of an interface
1352 * @netdev: interface device structure
1353 * @ptr: pointer to new MAC address
1354 *
1355 * Returns 0 on success, <0 on failure. Currently, we don't support this
1356 * and will always return EOPNOTSUPP.
1357 */
1358static int
1359spider_net_set_mac(struct net_device *netdev, void *p)
1360{
1361 struct spider_net_card *card = netdev_priv(netdev);
054034db 1362 u32 macl, macu, regvalue;
aaec0fab
JO
1363 struct sockaddr *addr = p;
1364
aaec0fab
JO
1365 if (!is_valid_ether_addr(addr->sa_data))
1366 return -EADDRNOTAVAIL;
1367
054034db
JO
1368 /* switch off GMACTPE and GMACRPE */
1369 regvalue = spider_net_read_reg(card, SPIDER_NET_GMACOPEMD);
1370 regvalue &= ~((1 << 5) | (1 << 6));
1371 spider_net_write_reg(card, SPIDER_NET_GMACOPEMD, regvalue);
1372
1373 /* write mac */
aaec0fab
JO
1374 macu = (addr->sa_data[0]<<24) + (addr->sa_data[1]<<16) +
1375 (addr->sa_data[2]<<8) + (addr->sa_data[3]);
1376 macl = (addr->sa_data[4]<<8) + (addr->sa_data[5]);
1377 spider_net_write_reg(card, SPIDER_NET_GMACUNIMACU, macu);
1378 spider_net_write_reg(card, SPIDER_NET_GMACUNIMACL, macl);
1379
054034db
JO
1380 /* switch GMACTPE and GMACRPE back on */
1381 regvalue = spider_net_read_reg(card, SPIDER_NET_GMACOPEMD);
1382 regvalue |= ((1 << 5) | (1 << 6));
1383 spider_net_write_reg(card, SPIDER_NET_GMACOPEMD, regvalue);
1384
aaec0fab
JO
1385 spider_net_set_promisc(card);
1386
1387 /* look up, whether we have been successful */
1388 if (spider_net_get_mac_address(netdev))
1389 return -EADDRNOTAVAIL;
1390 if (memcmp(netdev->dev_addr,addr->sa_data,netdev->addr_len))
1391 return -EADDRNOTAVAIL;
1392
1393 return 0;
1394}
1395
abdb66b5
KI
1396/**
1397 * spider_net_link_reset
1398 * @netdev: net device structure
1399 *
1400 * This is called when the PHY_LINK signal is asserted. For the blade this is
1401 * not connected so we should never get here.
1402 *
1403 */
1404static void
1405spider_net_link_reset(struct net_device *netdev)
1406{
1407
1408 struct spider_net_card *card = netdev_priv(netdev);
1409
1410 del_timer_sync(&card->aneg_timer);
1411
1412 /* clear interrupt, block further interrupts */
1413 spider_net_write_reg(card, SPIDER_NET_GMACST,
1414 spider_net_read_reg(card, SPIDER_NET_GMACST));
1415 spider_net_write_reg(card, SPIDER_NET_GMACINTEN, 0);
1416
1417 /* reset phy and setup aneg */
1418 spider_net_setup_aneg(card);
1419 mod_timer(&card->aneg_timer, jiffies + SPIDER_NET_ANEG_TIMER);
1420
1421}
1422
aaec0fab
JO
1423/**
1424 * spider_net_handle_error_irq - handles errors raised by an interrupt
1425 * @card: card structure
1426 * @status_reg: interrupt status register 0 (GHIINT0STS)
1427 *
1428 * spider_net_handle_error_irq treats or ignores all error conditions
1429 * found when an interrupt is presented
1430 */
1431static void
1432spider_net_handle_error_irq(struct spider_net_card *card, u32 status_reg)
1433{
1434 u32 error_reg1, error_reg2;
1435 u32 i;
1436 int show_error = 1;
1437
1438 error_reg1 = spider_net_read_reg(card, SPIDER_NET_GHIINT1STS);
1439 error_reg2 = spider_net_read_reg(card, SPIDER_NET_GHIINT2STS);
7a627558 1440
a041fe2e
IK
1441 error_reg1 &= SPIDER_NET_INT1_MASK_VALUE;
1442 error_reg2 &= SPIDER_NET_INT2_MASK_VALUE;
aaec0fab
JO
1443
1444 /* check GHIINT0STS ************************************/
1445 if (status_reg)
1446 for (i = 0; i < 32; i++)
1447 if (status_reg & (1<<i))
1448 switch (i)
1449 {
1450 /* let error_reg1 and error_reg2 evaluation decide, what to do
1451 case SPIDER_NET_PHYINT:
1452 case SPIDER_NET_GMAC2INT:
1453 case SPIDER_NET_GMAC1INT:
aaec0fab
JO
1454 case SPIDER_NET_GFIFOINT:
1455 case SPIDER_NET_DMACINT:
1456 case SPIDER_NET_GSYSINT:
1457 break; */
1458
98b9040c
LV
1459 case SPIDER_NET_GIPSINT:
1460 show_error = 0;
1461 break;
1462
aaec0fab
JO
1463 case SPIDER_NET_GPWOPCMPINT:
1464 /* PHY write operation completed */
1465 show_error = 0;
1466 break;
1467 case SPIDER_NET_GPROPCMPINT:
1468 /* PHY read operation completed */
1469 /* we don't use semaphores, as we poll for the completion
1470 * of the read operation in spider_net_read_phy. Should take
1471 * about 50 us */
1472 show_error = 0;
1473 break;
1474 case SPIDER_NET_GPWFFINT:
1475 /* PHY command queue full */
1476 if (netif_msg_intr(card))
e6311d85 1477 dev_err(&card->netdev->dev, "PHY write queue full\n");
aaec0fab
JO
1478 show_error = 0;
1479 break;
1480
1481 /* case SPIDER_NET_GRMDADRINT: not used. print a message */
1482 /* case SPIDER_NET_GRMARPINT: not used. print a message */
1483 /* case SPIDER_NET_GRMMPINT: not used. print a message */
1484
1485 case SPIDER_NET_GDTDEN0INT:
1486 /* someone has set TX_DMA_EN to 0 */
1487 show_error = 0;
1488 break;
1489
1490 case SPIDER_NET_GDDDEN0INT: /* fallthrough */
1491 case SPIDER_NET_GDCDEN0INT: /* fallthrough */
1492 case SPIDER_NET_GDBDEN0INT: /* fallthrough */
1493 case SPIDER_NET_GDADEN0INT:
1494 /* someone has set RX_DMA_EN to 0 */
1495 show_error = 0;
1496 break;
1497
1498 /* RX interrupts */
1499 case SPIDER_NET_GDDFDCINT:
1500 case SPIDER_NET_GDCFDCINT:
1501 case SPIDER_NET_GDBFDCINT:
1502 case SPIDER_NET_GDAFDCINT:
1503 /* case SPIDER_NET_GDNMINT: not used. print a message */
1504 /* case SPIDER_NET_GCNMINT: not used. print a message */
1505 /* case SPIDER_NET_GBNMINT: not used. print a message */
1506 /* case SPIDER_NET_GANMINT: not used. print a message */
1507 /* case SPIDER_NET_GRFNMINT: not used. print a message */
1508 show_error = 0;
1509 break;
1510
1511 /* TX interrupts */
1512 case SPIDER_NET_GDTFDCINT:
1513 show_error = 0;
1514 break;
1515 case SPIDER_NET_GTTEDINT:
1516 show_error = 0;
1517 break;
1518 case SPIDER_NET_GDTDCEINT:
1519 /* chain end. If a descriptor should be sent, kick off
1520 * tx dma
98b9040c 1521 if (card->tx_chain.tail != card->tx_chain.head)
aaec0fab 1522 spider_net_kick_tx_dma(card);
98b9040c
LV
1523 */
1524 show_error = 0;
aaec0fab
JO
1525 break;
1526
1527 /* case SPIDER_NET_G1TMCNTINT: not used. print a message */
1528 /* case SPIDER_NET_GFREECNTINT: not used. print a message */
1529 }
1530
1531 /* check GHIINT1STS ************************************/
1532 if (error_reg1)
1533 for (i = 0; i < 32; i++)
1534 if (error_reg1 & (1<<i))
1535 switch (i)
1536 {
1537 case SPIDER_NET_GTMFLLINT:
fc8e13da
IK
1538 /* TX RAM full may happen on a usual case.
1539 * Logging is not needed. */
aaec0fab
JO
1540 show_error = 0;
1541 break;
11f1a52b
AB
1542 case SPIDER_NET_GRFDFLLINT: /* fallthrough */
1543 case SPIDER_NET_GRFCFLLINT: /* fallthrough */
1544 case SPIDER_NET_GRFBFLLINT: /* fallthrough */
1545 case SPIDER_NET_GRFAFLLINT: /* fallthrough */
aaec0fab 1546 case SPIDER_NET_GRMFLLINT:
4c4bd5a9 1547 /* Could happen when rx chain is full */
c3d1182a
LV
1548 if (card->ignore_rx_ramfull == 0) {
1549 card->ignore_rx_ramfull = 1;
1550 spider_net_resync_head_ptr(card);
1551 spider_net_refill_rx_chain(card);
1552 spider_net_enable_rxdmac(card);
1553 card->num_rx_ints ++;
bea3348e
SH
1554 netif_rx_schedule(card->netdev,
1555 &card->napi);
c3d1182a 1556 }
11f1a52b 1557 show_error = 0;
aaec0fab
JO
1558 break;
1559
1560 /* case SPIDER_NET_GTMSHTINT: problem, print a message */
1561 case SPIDER_NET_GDTINVDINT:
1562 /* allrighty. tx from previous descr ok */
1563 show_error = 0;
1564 break;
aaec0fab
JO
1565
1566 /* chain end */
1567 case SPIDER_NET_GDDDCEINT: /* fallthrough */
1568 case SPIDER_NET_GDCDCEINT: /* fallthrough */
1569 case SPIDER_NET_GDBDCEINT: /* fallthrough */
1570 case SPIDER_NET_GDADCEINT:
4c4bd5a9 1571 spider_net_resync_head_ptr(card);
aaec0fab 1572 spider_net_refill_rx_chain(card);
11f1a52b 1573 spider_net_enable_rxdmac(card);
4c4bd5a9 1574 card->num_rx_ints ++;
bea3348e
SH
1575 netif_rx_schedule(card->netdev,
1576 &card->napi);
aaec0fab
JO
1577 show_error = 0;
1578 break;
1579
1580 /* invalid descriptor */
1581 case SPIDER_NET_GDDINVDINT: /* fallthrough */
1582 case SPIDER_NET_GDCINVDINT: /* fallthrough */
1583 case SPIDER_NET_GDBINVDINT: /* fallthrough */
1584 case SPIDER_NET_GDAINVDINT:
4c4bd5a9
LV
1585 /* Could happen when rx chain is full */
1586 spider_net_resync_head_ptr(card);
aaec0fab 1587 spider_net_refill_rx_chain(card);
11f1a52b 1588 spider_net_enable_rxdmac(card);
4c4bd5a9 1589 card->num_rx_ints ++;
bea3348e
SH
1590 netif_rx_schedule(card->netdev,
1591 &card->napi);
aaec0fab
JO
1592 show_error = 0;
1593 break;
1594
1595 /* case SPIDER_NET_GDTRSERINT: problem, print a message */
1596 /* case SPIDER_NET_GDDRSERINT: problem, print a message */
1597 /* case SPIDER_NET_GDCRSERINT: problem, print a message */
1598 /* case SPIDER_NET_GDBRSERINT: problem, print a message */
1599 /* case SPIDER_NET_GDARSERINT: problem, print a message */
1600 /* case SPIDER_NET_GDSERINT: problem, print a message */
1601 /* case SPIDER_NET_GDTPTERINT: problem, print a message */
1602 /* case SPIDER_NET_GDDPTERINT: problem, print a message */
1603 /* case SPIDER_NET_GDCPTERINT: problem, print a message */
1604 /* case SPIDER_NET_GDBPTERINT: problem, print a message */
1605 /* case SPIDER_NET_GDAPTERINT: problem, print a message */
1606 default:
1607 show_error = 1;
1608 break;
1609 }
1610
1611 /* check GHIINT2STS ************************************/
1612 if (error_reg2)
1613 for (i = 0; i < 32; i++)
1614 if (error_reg2 & (1<<i))
1615 switch (i)
1616 {
1617 /* there is nothing we can (want to) do at this time. Log a
1618 * message, we can switch on and off the specific values later on
1619 case SPIDER_NET_GPROPERINT:
1620 case SPIDER_NET_GMCTCRSNGINT:
1621 case SPIDER_NET_GMCTLCOLINT:
1622 case SPIDER_NET_GMCTTMOTINT:
1623 case SPIDER_NET_GMCRCAERINT:
1624 case SPIDER_NET_GMCRCALERINT:
1625 case SPIDER_NET_GMCRALNERINT:
1626 case SPIDER_NET_GMCROVRINT:
1627 case SPIDER_NET_GMCRRNTINT:
1628 case SPIDER_NET_GMCRRXERINT:
1629 case SPIDER_NET_GTITCSERINT:
1630 case SPIDER_NET_GTIFMTERINT:
1631 case SPIDER_NET_GTIPKTRVKINT:
1632 case SPIDER_NET_GTISPINGINT:
1633 case SPIDER_NET_GTISADNGINT:
1634 case SPIDER_NET_GTISPDNGINT:
1635 case SPIDER_NET_GRIFMTERINT:
1636 case SPIDER_NET_GRIPKTRVKINT:
1637 case SPIDER_NET_GRISPINGINT:
1638 case SPIDER_NET_GRISADNGINT:
1639 case SPIDER_NET_GRISPDNGINT:
1640 break;
1641 */
1642 default:
1643 break;
1644 }
1645
5a028877 1646 if ((show_error) && (netif_msg_intr(card)) && net_ratelimit())
e6311d85 1647 dev_err(&card->netdev->dev, "Error interrupt, GHIINT0STS = 0x%08x, "
aaec0fab
JO
1648 "GHIINT1STS = 0x%08x, GHIINT2STS = 0x%08x\n",
1649 status_reg, error_reg1, error_reg2);
1650
1651 /* clear interrupt sources */
1652 spider_net_write_reg(card, SPIDER_NET_GHIINT1STS, error_reg1);
1653 spider_net_write_reg(card, SPIDER_NET_GHIINT2STS, error_reg2);
1654}
1655
1656/**
1657 * spider_net_interrupt - interrupt handler for spider_net
1658 * @irq: interupt number
1659 * @ptr: pointer to net_device
1660 * @regs: PU registers
1661 *
1662 * returns IRQ_HANDLED, if interrupt was for driver, or IRQ_NONE, if no
1663 * interrupt found raised by card.
1664 *
1665 * This is the interrupt handler, that turns off
1666 * interrupts for this device and makes the stack poll the driver
1667 */
1668static irqreturn_t
7d12e780 1669spider_net_interrupt(int irq, void *ptr)
aaec0fab
JO
1670{
1671 struct net_device *netdev = ptr;
1672 struct spider_net_card *card = netdev_priv(netdev);
a041fe2e 1673 u32 status_reg;
aaec0fab
JO
1674
1675 status_reg = spider_net_read_reg(card, SPIDER_NET_GHIINT0STS);
a041fe2e 1676 status_reg &= SPIDER_NET_INT0_MASK_VALUE;
aaec0fab
JO
1677
1678 if (!status_reg)
1679 return IRQ_NONE;
1680
aaec0fab
JO
1681 if (status_reg & SPIDER_NET_RXINT ) {
1682 spider_net_rx_irq_off(card);
bea3348e 1683 netif_rx_schedule(netdev, &card->napi);
4c4bd5a9 1684 card->num_rx_ints ++;
aaec0fab 1685 }
68a8c609 1686 if (status_reg & SPIDER_NET_TXINT)
bea3348e 1687 netif_rx_schedule(netdev, &card->napi);
aaec0fab 1688
abdb66b5
KI
1689 if (status_reg & SPIDER_NET_LINKINT)
1690 spider_net_link_reset(netdev);
1691
11f1a52b
AB
1692 if (status_reg & SPIDER_NET_ERRINT )
1693 spider_net_handle_error_irq(card, status_reg);
aaec0fab
JO
1694
1695 /* clear interrupt sources */
1696 spider_net_write_reg(card, SPIDER_NET_GHIINT0STS, status_reg);
1697
1698 return IRQ_HANDLED;
1699}
1700
1701#ifdef CONFIG_NET_POLL_CONTROLLER
1702/**
1703 * spider_net_poll_controller - artificial interrupt for netconsole etc.
1704 * @netdev: interface device structure
1705 *
1706 * see Documentation/networking/netconsole.txt
1707 */
1708static void
1709spider_net_poll_controller(struct net_device *netdev)
1710{
1711 disable_irq(netdev->irq);
7d12e780 1712 spider_net_interrupt(netdev->irq, netdev);
aaec0fab
JO
1713 enable_irq(netdev->irq);
1714}
1715#endif /* CONFIG_NET_POLL_CONTROLLER */
1716
7a627558
IK
1717/**
1718 * spider_net_enable_interrupts - enable interrupts
1719 * @card: card structure
1720 *
1721 * spider_net_enable_interrupt enables several interrupts
1722 */
1723static void
1724spider_net_enable_interrupts(struct spider_net_card *card)
1725{
1726 spider_net_write_reg(card, SPIDER_NET_GHIINT0MSK,
1727 SPIDER_NET_INT0_MASK_VALUE);
1728 spider_net_write_reg(card, SPIDER_NET_GHIINT1MSK,
1729 SPIDER_NET_INT1_MASK_VALUE);
1730 spider_net_write_reg(card, SPIDER_NET_GHIINT2MSK,
1731 SPIDER_NET_INT2_MASK_VALUE);
1732}
1733
1734/**
1735 * spider_net_disable_interrupts - disable interrupts
1736 * @card: card structure
1737 *
1738 * spider_net_disable_interrupts disables all the interrupts
1739 */
1740static void
1741spider_net_disable_interrupts(struct spider_net_card *card)
1742{
1743 spider_net_write_reg(card, SPIDER_NET_GHIINT0MSK, 0);
1744 spider_net_write_reg(card, SPIDER_NET_GHIINT1MSK, 0);
1745 spider_net_write_reg(card, SPIDER_NET_GHIINT2MSK, 0);
1746 spider_net_write_reg(card, SPIDER_NET_GMACINTEN, 0);
1747}
1748
aaec0fab
JO
1749/**
1750 * spider_net_init_card - initializes the card
1751 * @card: card structure
1752 *
1753 * spider_net_init_card initializes the card so that other registers can
1754 * be used
1755 */
1756static void
1757spider_net_init_card(struct spider_net_card *card)
1758{
1759 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
1760 SPIDER_NET_CKRCTRL_STOP_VALUE);
1761
1762 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
1763 SPIDER_NET_CKRCTRL_RUN_VALUE);
3342cf0e
KI
1764
1765 /* trigger ETOMOD signal */
1766 spider_net_write_reg(card, SPIDER_NET_GMACOPEMD,
1767 spider_net_read_reg(card, SPIDER_NET_GMACOPEMD) | 0x4);
1768
7a627558 1769 spider_net_disable_interrupts(card);
aaec0fab
JO
1770}
1771
1772/**
1773 * spider_net_enable_card - enables the card by setting all kinds of regs
1774 * @card: card structure
1775 *
1776 * spider_net_enable_card sets a lot of SMMIO registers to enable the device
1777 */
1778static void
1779spider_net_enable_card(struct spider_net_card *card)
1780{
1781 int i;
1782 /* the following array consists of (register),(value) pairs
1783 * that are set in this function. A register of 0 ends the list */
1784 u32 regs[][2] = {
1785 { SPIDER_NET_GRESUMINTNUM, 0 },
1786 { SPIDER_NET_GREINTNUM, 0 },
1787
1788 /* set interrupt frame number registers */
1789 /* clear the single DMA engine registers first */
1790 { SPIDER_NET_GFAFRMNUM, SPIDER_NET_GFXFRAMES_VALUE },
1791 { SPIDER_NET_GFBFRMNUM, SPIDER_NET_GFXFRAMES_VALUE },
1792 { SPIDER_NET_GFCFRMNUM, SPIDER_NET_GFXFRAMES_VALUE },
1793 { SPIDER_NET_GFDFRMNUM, SPIDER_NET_GFXFRAMES_VALUE },
1794 /* then set, what we really need */
1795 { SPIDER_NET_GFFRMNUM, SPIDER_NET_FRAMENUM_VALUE },
1796
1797 /* timer counter registers and stuff */
1798 { SPIDER_NET_GFREECNNUM, 0 },
1799 { SPIDER_NET_GONETIMENUM, 0 },
1800 { SPIDER_NET_GTOUTFRMNUM, 0 },
1801
1802 /* RX mode setting */
1803 { SPIDER_NET_GRXMDSET, SPIDER_NET_RXMODE_VALUE },
1804 /* TX mode setting */
1805 { SPIDER_NET_GTXMDSET, SPIDER_NET_TXMODE_VALUE },
1806 /* IPSEC mode setting */
1807 { SPIDER_NET_GIPSECINIT, SPIDER_NET_IPSECINIT_VALUE },
1808
1809 { SPIDER_NET_GFTRESTRT, SPIDER_NET_RESTART_VALUE },
1810
1811 { SPIDER_NET_GMRWOLCTRL, 0 },
b636d17a
JO
1812 { SPIDER_NET_GTESTMD, 0x10000000 },
1813 { SPIDER_NET_GTTQMSK, 0x00400040 },
aaec0fab
JO
1814
1815 { SPIDER_NET_GMACINTEN, 0 },
1816
1817 /* flow control stuff */
1818 { SPIDER_NET_GMACAPAUSE, SPIDER_NET_MACAPAUSE_VALUE },
1819 { SPIDER_NET_GMACTXPAUSE, SPIDER_NET_TXPAUSE_VALUE },
1820
1821 { SPIDER_NET_GMACBSTLMT, SPIDER_NET_BURSTLMT_VALUE },
1822 { 0, 0}
1823 };
1824
1825 i = 0;
1826 while (regs[i][0]) {
1827 spider_net_write_reg(card, regs[i][0], regs[i][1]);
1828 i++;
1829 }
1830
1831 /* clear unicast filter table entries 1 to 14 */
1832 for (i = 1; i <= 14; i++) {
1833 spider_net_write_reg(card,
1834 SPIDER_NET_GMRUAFILnR + i * 8,
1835 0x00080000);
1836 spider_net_write_reg(card,
1837 SPIDER_NET_GMRUAFILnR + i * 8 + 4,
1838 0x00000000);
1839 }
1840
1841 spider_net_write_reg(card, SPIDER_NET_GMRUA0FIL15R, 0x08080000);
1842
1843 spider_net_write_reg(card, SPIDER_NET_ECMODE, SPIDER_NET_ECMODE_VALUE);
1844
1845 /* set chain tail adress for RX chains and
1846 * enable DMA */
1847 spider_net_enable_rxchtails(card);
1848 spider_net_enable_rxdmac(card);
1849
1850 spider_net_write_reg(card, SPIDER_NET_GRXDMAEN, SPIDER_NET_WOL_VALUE);
1851
aaec0fab
JO
1852 spider_net_write_reg(card, SPIDER_NET_GMACLENLMT,
1853 SPIDER_NET_LENLMT_VALUE);
aaec0fab
JO
1854 spider_net_write_reg(card, SPIDER_NET_GMACOPEMD,
1855 SPIDER_NET_OPMODE_VALUE);
1856
bdd01503 1857 spider_net_write_reg(card, SPIDER_NET_GDTDMACCNTR,
7bd54c86 1858 SPIDER_NET_GDTBSTA);
aaec0fab
JO
1859}
1860
3cf761dd
KI
1861/**
1862 * spider_net_download_firmware - loads firmware into the adapter
1863 * @card: card structure
1864 * @firmware_ptr: pointer to firmware data
1865 *
1866 * spider_net_download_firmware loads the firmware data into the
1867 * adapter. It assumes the length etc. to be allright.
1868 */
1869static int
1870spider_net_download_firmware(struct spider_net_card *card,
1871 const void *firmware_ptr)
1872{
1873 int sequencer, i;
1874 const u32 *fw_ptr = firmware_ptr;
1875
1876 /* stop sequencers */
1877 spider_net_write_reg(card, SPIDER_NET_GSINIT,
1878 SPIDER_NET_STOP_SEQ_VALUE);
1879
1880 for (sequencer = 0; sequencer < SPIDER_NET_FIRMWARE_SEQS;
1881 sequencer++) {
1882 spider_net_write_reg(card,
1883 SPIDER_NET_GSnPRGADR + sequencer * 8, 0);
1884 for (i = 0; i < SPIDER_NET_FIRMWARE_SEQWORDS; i++) {
1885 spider_net_write_reg(card, SPIDER_NET_GSnPRGDAT +
1886 sequencer * 8, *fw_ptr);
1887 fw_ptr++;
1888 }
1889 }
1890
1891 if (spider_net_read_reg(card, SPIDER_NET_GSINIT))
1892 return -EIO;
1893
1894 spider_net_write_reg(card, SPIDER_NET_GSINIT,
1895 SPIDER_NET_RUN_SEQ_VALUE);
1896
1897 return 0;
1898}
1899
1900/**
1901 * spider_net_init_firmware - reads in firmware parts
1902 * @card: card structure
1903 *
1904 * Returns 0 on success, <0 on failure
1905 *
1906 * spider_net_init_firmware opens the sequencer firmware and does some basic
1907 * checks. This function opens and releases the firmware structure. A call
1908 * to download the firmware is performed before the release.
1909 *
1910 * Firmware format
1911 * ===============
1912 * spider_fw.bin is expected to be a file containing 6*1024*4 bytes, 4k being
1913 * the program for each sequencer. Use the command
1914 * tail -q -n +2 Seq_code1_0x088.txt Seq_code2_0x090.txt \
1915 * Seq_code3_0x098.txt Seq_code4_0x0A0.txt Seq_code5_0x0A8.txt \
1916 * Seq_code6_0x0B0.txt | xxd -r -p -c4 > spider_fw.bin
1917 *
1918 * to generate spider_fw.bin, if you have sequencer programs with something
1919 * like the following contents for each sequencer:
1920 * <ONE LINE COMMENT>
1921 * <FIRST 4-BYTES-WORD FOR SEQUENCER>
1922 * <SECOND 4-BYTES-WORD FOR SEQUENCER>
1923 * ...
1924 * <1024th 4-BYTES-WORD FOR SEQUENCER>
1925 */
1926static int
1927spider_net_init_firmware(struct spider_net_card *card)
1928{
1929 struct firmware *firmware = NULL;
1930 struct device_node *dn;
1931 const u8 *fw_prop = NULL;
1932 int err = -ENOENT;
1933 int fw_size;
1934
1935 if (request_firmware((const struct firmware **)&firmware,
1936 SPIDER_NET_FIRMWARE_NAME, &card->pdev->dev) == 0) {
1937 if ( (firmware->size != SPIDER_NET_FIRMWARE_LEN) &&
1938 netif_msg_probe(card) ) {
e6311d85
LV
1939 dev_err(&card->netdev->dev,
1940 "Incorrect size of spidernet firmware in " \
3cf761dd
KI
1941 "filesystem. Looking in host firmware...\n");
1942 goto try_host_fw;
1943 }
1944 err = spider_net_download_firmware(card, firmware->data);
1945
1946 release_firmware(firmware);
1947 if (err)
1948 goto try_host_fw;
1949
1950 goto done;
1951 }
1952
1953try_host_fw:
1954 dn = pci_device_to_OF_node(card->pdev);
1955 if (!dn)
1956 goto out_err;
1957
40cd3a45 1958 fw_prop = of_get_property(dn, "firmware", &fw_size);
3cf761dd
KI
1959 if (!fw_prop)
1960 goto out_err;
1961
1962 if ( (fw_size != SPIDER_NET_FIRMWARE_LEN) &&
1963 netif_msg_probe(card) ) {
e6311d85
LV
1964 dev_err(&card->netdev->dev,
1965 "Incorrect size of spidernet firmware in host firmware\n");
3cf761dd
KI
1966 goto done;
1967 }
1968
1969 err = spider_net_download_firmware(card, fw_prop);
1970
1971done:
1972 return err;
1973out_err:
1974 if (netif_msg_probe(card))
e6311d85
LV
1975 dev_err(&card->netdev->dev,
1976 "Couldn't find spidernet firmware in filesystem " \
3cf761dd
KI
1977 "or host firmware\n");
1978 return err;
1979}
1980
aaec0fab
JO
1981/**
1982 * spider_net_open - called upon ifonfig up
1983 * @netdev: interface device structure
1984 *
1985 * returns 0 on success, <0 on failure
1986 *
1987 * spider_net_open allocates all the descriptors and memory needed for
1988 * operation, sets up multicast list and enables interrupts
1989 */
1990int
1991spider_net_open(struct net_device *netdev)
1992{
1993 struct spider_net_card *card = netdev_priv(netdev);
d4ed8f8d 1994 int result;
aaec0fab 1995
3cf761dd
KI
1996 result = spider_net_init_firmware(card);
1997 if (result)
1998 goto init_firmware_failed;
1999
abdb66b5
KI
2000 /* start probing with copper */
2001 spider_net_setup_aneg(card);
2002 if (card->phy.def->phy_id)
2003 mod_timer(&card->aneg_timer, jiffies + SPIDER_NET_ANEG_TIMER);
2004
d4ed8f8d
LV
2005 result = spider_net_init_chain(card, &card->tx_chain);
2006 if (result)
aaec0fab 2007 goto alloc_tx_failed;
204e5fa1
LV
2008 card->low_watermark = NULL;
2009
d4ed8f8d
LV
2010 result = spider_net_init_chain(card, &card->rx_chain);
2011 if (result)
aaec0fab
JO
2012 goto alloc_rx_failed;
2013
d4ed8f8d 2014 /* Allocate rx skbs */
aaec0fab
JO
2015 if (spider_net_alloc_rx_skbs(card))
2016 goto alloc_skbs_failed;
2017
2018 spider_net_set_multi(netdev);
2019
2020 /* further enhancement: setup hw vlan, if needed */
2021
2022 result = -EBUSY;
2023 if (request_irq(netdev->irq, spider_net_interrupt,
1fb9df5d 2024 IRQF_SHARED, netdev->name, netdev))
aaec0fab
JO
2025 goto register_int_failed;
2026
2027 spider_net_enable_card(card);
2028
543cec51
JO
2029 netif_start_queue(netdev);
2030 netif_carrier_on(netdev);
bea3348e 2031 napi_enable(&card->napi);
543cec51 2032
7a627558
IK
2033 spider_net_enable_interrupts(card);
2034
aaec0fab
JO
2035 return 0;
2036
2037register_int_failed:
2038 spider_net_free_rx_chain_contents(card);
2039alloc_skbs_failed:
2040 spider_net_free_chain(card, &card->rx_chain);
2041alloc_rx_failed:
2042 spider_net_free_chain(card, &card->tx_chain);
2043alloc_tx_failed:
abdb66b5 2044 del_timer_sync(&card->aneg_timer);
3cf761dd 2045init_firmware_failed:
aaec0fab
JO
2046 return result;
2047}
2048
abdb66b5
KI
2049/**
2050 * spider_net_link_phy
2051 * @data: used for pointer to card structure
2052 *
2053 */
2054static void spider_net_link_phy(unsigned long data)
2055{
2056 struct spider_net_card *card = (struct spider_net_card *)data;
2057 struct mii_phy *phy = &card->phy;
2058
2059 /* if link didn't come up after SPIDER_NET_ANEG_TIMEOUT tries, setup phy again */
2060 if (card->aneg_count > SPIDER_NET_ANEG_TIMEOUT) {
2061
2062 pr_info("%s: link is down trying to bring it up\n", card->netdev->name);
2063
4b23a554
JO
2064 switch (card->medium) {
2065 case BCM54XX_COPPER:
abdb66b5
KI
2066 /* enable fiber with autonegotiation first */
2067 if (phy->def->ops->enable_fiber)
2068 phy->def->ops->enable_fiber(phy, 1);
4b23a554 2069 card->medium = BCM54XX_FIBER;
abdb66b5
KI
2070 break;
2071
4b23a554 2072 case BCM54XX_FIBER:
abdb66b5
KI
2073 /* fiber didn't come up, try to disable fiber autoneg */
2074 if (phy->def->ops->enable_fiber)
2075 phy->def->ops->enable_fiber(phy, 0);
4b23a554 2076 card->medium = BCM54XX_UNKNOWN;
abdb66b5
KI
2077 break;
2078
4b23a554 2079 case BCM54XX_UNKNOWN:
abdb66b5
KI
2080 /* copper, fiber with and without failed,
2081 * retry from beginning */
2082 spider_net_setup_aneg(card);
4b23a554 2083 card->medium = BCM54XX_COPPER;
abdb66b5
KI
2084 break;
2085 }
2086
2087 card->aneg_count = 0;
2088 mod_timer(&card->aneg_timer, jiffies + SPIDER_NET_ANEG_TIMER);
2089 return;
2090 }
2091
2092 /* link still not up, try again later */
2093 if (!(phy->def->ops->poll_link(phy))) {
2094 card->aneg_count++;
2095 mod_timer(&card->aneg_timer, jiffies + SPIDER_NET_ANEG_TIMER);
2096 return;
2097 }
2098
2099 /* link came up, get abilities */
2100 phy->def->ops->read_link(phy);
2101
2102 spider_net_write_reg(card, SPIDER_NET_GMACST,
2103 spider_net_read_reg(card, SPIDER_NET_GMACST));
2104 spider_net_write_reg(card, SPIDER_NET_GMACINTEN, 0x4);
2105
2106 if (phy->speed == 1000)
2107 spider_net_write_reg(card, SPIDER_NET_GMACMODE, 0x00000001);
2108 else
2109 spider_net_write_reg(card, SPIDER_NET_GMACMODE, 0);
2110
2111 card->aneg_count = 0;
2112
2113 pr_debug("Found %s with %i Mbps, %s-duplex %sautoneg.\n",
2114 phy->def->name, phy->speed, phy->duplex==1 ? "Full" : "Half",
2115 phy->autoneg==1 ? "" : "no ");
2116
2117 return;
2118}
2119
aaec0fab
JO
2120/**
2121 * spider_net_setup_phy - setup PHY
2122 * @card: card structure
2123 *
2124 * returns 0 on success, <0 on failure
2125 *
abdb66b5 2126 * spider_net_setup_phy is used as part of spider_net_probe.
aaec0fab
JO
2127 **/
2128static int
2129spider_net_setup_phy(struct spider_net_card *card)
2130{
2131 struct mii_phy *phy = &card->phy;
2132
2133 spider_net_write_reg(card, SPIDER_NET_GDTDMASEL,
2134 SPIDER_NET_DMASEL_VALUE);
2135 spider_net_write_reg(card, SPIDER_NET_GPCCTRL,
2136 SPIDER_NET_PHY_CTRL_VALUE);
abdb66b5 2137
aaec0fab
JO
2138 phy->dev = card->netdev;
2139 phy->mdio_read = spider_net_read_phy;
2140 phy->mdio_write = spider_net_write_phy;
2141
abdb66b5
KI
2142 for (phy->mii_id = 1; phy->mii_id <= 31; phy->mii_id++) {
2143 unsigned short id;
2144 id = spider_net_read_phy(card->netdev, phy->mii_id, MII_BMSR);
2145 if (id != 0x0000 && id != 0xffff) {
2146 if (!mii_phy_probe(phy, phy->mii_id)) {
2147 pr_info("Found %s.\n", phy->def->name);
2148 break;
2149 }
2150 }
2151 }
aaec0fab
JO
2152
2153 return 0;
2154}
2155
aaec0fab
JO
2156/**
2157 * spider_net_workaround_rxramfull - work around firmware bug
2158 * @card: card structure
2159 *
2160 * no return value
2161 **/
2162static void
2163spider_net_workaround_rxramfull(struct spider_net_card *card)
2164{
2165 int i, sequencer = 0;
2166
2167 /* cancel reset */
2168 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
2169 SPIDER_NET_CKRCTRL_RUN_VALUE);
2170
2171 /* empty sequencer data */
11f1a52b
AB
2172 for (sequencer = 0; sequencer < SPIDER_NET_FIRMWARE_SEQS;
2173 sequencer++) {
ee962a5c 2174 spider_net_write_reg(card, SPIDER_NET_GSnPRGADR +
aaec0fab 2175 sequencer * 8, 0x0);
11f1a52b 2176 for (i = 0; i < SPIDER_NET_FIRMWARE_SEQWORDS; i++) {
aaec0fab
JO
2177 spider_net_write_reg(card, SPIDER_NET_GSnPRGDAT +
2178 sequencer * 8, 0x0);
2179 }
2180 }
2181
2182 /* set sequencer operation */
2183 spider_net_write_reg(card, SPIDER_NET_GSINIT, 0x000000fe);
2184
2185 /* reset */
2186 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
2187 SPIDER_NET_CKRCTRL_STOP_VALUE);
2188}
2189
bdd01503
JO
2190/**
2191 * spider_net_stop - called upon ifconfig down
2192 * @netdev: interface device structure
2193 *
2194 * always returns 0
2195 */
2196int
2197spider_net_stop(struct net_device *netdev)
2198{
2199 struct spider_net_card *card = netdev_priv(netdev);
2200
bea3348e 2201 napi_disable(&card->napi);
bdd01503
JO
2202 netif_carrier_off(netdev);
2203 netif_stop_queue(netdev);
2204 del_timer_sync(&card->tx_timer);
abdb66b5 2205 del_timer_sync(&card->aneg_timer);
bdd01503 2206
7a627558 2207 spider_net_disable_interrupts(card);
bdd01503 2208
d406eafe 2209 free_irq(netdev->irq, netdev);
bdd01503
JO
2210
2211 spider_net_write_reg(card, SPIDER_NET_GDTDMACCNTR,
2212 SPIDER_NET_DMA_TX_FEND_VALUE);
2213
2214 /* turn off DMA, force end */
2215 spider_net_disable_rxdmac(card);
2216
2217 /* release chains */
9cc7bf7e 2218 spider_net_release_tx_chain(card, 1);
d4ed8f8d 2219 spider_net_free_rx_chain_contents(card);
bdd01503
JO
2220
2221 spider_net_free_chain(card, &card->tx_chain);
2222 spider_net_free_chain(card, &card->rx_chain);
2223
2224 return 0;
2225}
2226
aaec0fab
JO
2227/**
2228 * spider_net_tx_timeout_task - task scheduled by the watchdog timeout
2229 * function (to be called not under interrupt status)
2230 * @data: data, is interface device structure
2231 *
2232 * called as task when tx hangs, resets interface (if interface is up)
2233 */
2234static void
c4028958 2235spider_net_tx_timeout_task(struct work_struct *work)
aaec0fab 2236{
c4028958
DH
2237 struct spider_net_card *card =
2238 container_of(work, struct spider_net_card, tx_timeout_task);
2239 struct net_device *netdev = card->netdev;
aaec0fab
JO
2240
2241 if (!(netdev->flags & IFF_UP))
2242 goto out;
2243
2244 netif_device_detach(netdev);
2245 spider_net_stop(netdev);
2246
2247 spider_net_workaround_rxramfull(card);
2248 spider_net_init_card(card);
2249
2250 if (spider_net_setup_phy(card))
2251 goto out;
aaec0fab
JO
2252
2253 spider_net_open(netdev);
bdd01503 2254 spider_net_kick_tx_dma(card);
aaec0fab
JO
2255 netif_device_attach(netdev);
2256
2257out:
2258 atomic_dec(&card->tx_timeout_task_counter);
2259}
2260
2261/**
2262 * spider_net_tx_timeout - called when the tx timeout watchdog kicks in.
2263 * @netdev: interface device structure
2264 *
2265 * called, if tx hangs. Schedules a task that resets the interface
2266 */
2267static void
2268spider_net_tx_timeout(struct net_device *netdev)
2269{
2270 struct spider_net_card *card;
2271
2272 card = netdev_priv(netdev);
2273 atomic_inc(&card->tx_timeout_task_counter);
2274 if (netdev->flags & IFF_UP)
2275 schedule_work(&card->tx_timeout_task);
2276 else
2277 atomic_dec(&card->tx_timeout_task_counter);
9b6b0b81 2278 card->spider_stats.tx_timeouts++;
aaec0fab
JO
2279}
2280
2281/**
2282 * spider_net_setup_netdev_ops - initialization of net_device operations
2283 * @netdev: net_device structure
2284 *
2285 * fills out function pointers in the net_device structure
2286 */
2287static void
2288spider_net_setup_netdev_ops(struct net_device *netdev)
2289{
2290 netdev->open = &spider_net_open;
2291 netdev->stop = &spider_net_stop;
2292 netdev->hard_start_xmit = &spider_net_xmit;
2293 netdev->get_stats = &spider_net_get_stats;
2294 netdev->set_multicast_list = &spider_net_set_multi;
2295 netdev->set_mac_address = &spider_net_set_mac;
2296 netdev->change_mtu = &spider_net_change_mtu;
2297 netdev->do_ioctl = &spider_net_do_ioctl;
2298 /* tx watchdog */
2299 netdev->tx_timeout = &spider_net_tx_timeout;
2300 netdev->watchdog_timeo = SPIDER_NET_WATCHDOG_TIMEOUT;
aaec0fab 2301 /* HW VLAN */
aaec0fab
JO
2302#ifdef CONFIG_NET_POLL_CONTROLLER
2303 /* poll controller */
2304 netdev->poll_controller = &spider_net_poll_controller;
2305#endif /* CONFIG_NET_POLL_CONTROLLER */
2306 /* ethtool ops */
2307 netdev->ethtool_ops = &spider_net_ethtool_ops;
2308}
2309
2310/**
2311 * spider_net_setup_netdev - initialization of net_device
2312 * @card: card structure
2313 *
2314 * Returns 0 on success or <0 on failure
2315 *
2316 * spider_net_setup_netdev initializes the net_device structure
2317 **/
2318static int
2319spider_net_setup_netdev(struct spider_net_card *card)
2320{
2321 int result;
2322 struct net_device *netdev = card->netdev;
2323 struct device_node *dn;
2324 struct sockaddr addr;
1a2509c9 2325 const u8 *mac;
aaec0fab
JO
2326
2327 SET_MODULE_OWNER(netdev);
2328 SET_NETDEV_DEV(netdev, &card->pdev->dev);
2329
2330 pci_set_drvdata(card->pdev, netdev);
11f1a52b 2331
11f1a52b
AB
2332 init_timer(&card->tx_timer);
2333 card->tx_timer.function =
2334 (void (*)(unsigned long)) spider_net_cleanup_tx_ring;
2335 card->tx_timer.data = (unsigned long) card;
aaec0fab
JO
2336 netdev->irq = card->pdev->irq;
2337
abdb66b5
KI
2338 card->aneg_count = 0;
2339 init_timer(&card->aneg_timer);
2340 card->aneg_timer.function = spider_net_link_phy;
2341 card->aneg_timer.data = (unsigned long) card;
2342
aaec0fab
JO
2343 card->options.rx_csum = SPIDER_NET_RX_CSUM_DEFAULT;
2344
bea3348e
SH
2345 netif_napi_add(netdev, &card->napi,
2346 spider_net_poll, SPIDER_NET_NAPI_WEIGHT);
2347
aaec0fab
JO
2348 spider_net_setup_netdev_ops(netdev);
2349
3a2c892d 2350 netdev->features = NETIF_F_IP_CSUM | NETIF_F_LLTX;
aaec0fab
JO
2351 /* some time: NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX |
2352 * NETIF_F_HW_VLAN_FILTER */
2353
2354 netdev->irq = card->pdev->irq;
4c4bd5a9 2355 card->num_rx_ints = 0;
c3d1182a 2356 card->ignore_rx_ramfull = 0;
aaec0fab
JO
2357
2358 dn = pci_device_to_OF_node(card->pdev);
543cec51
JO
2359 if (!dn)
2360 return -EIO;
2361
40cd3a45 2362 mac = of_get_property(dn, "local-mac-address", NULL);
543cec51
JO
2363 if (!mac)
2364 return -EIO;
aaec0fab
JO
2365 memcpy(addr.sa_data, mac, ETH_ALEN);
2366
2367 result = spider_net_set_mac(netdev, &addr);
2368 if ((result) && (netif_msg_probe(card)))
e6311d85
LV
2369 dev_err(&card->netdev->dev,
2370 "Failed to set MAC address: %i\n", result);
aaec0fab
JO
2371
2372 result = register_netdev(netdev);
2373 if (result) {
2374 if (netif_msg_probe(card))
e6311d85
LV
2375 dev_err(&card->netdev->dev,
2376 "Couldn't register net_device: %i\n", result);
aaec0fab
JO
2377 return result;
2378 }
2379
2380 if (netif_msg_probe(card))
2381 pr_info("Initialized device %s.\n", netdev->name);
2382
2383 return 0;
2384}
2385
2386/**
2387 * spider_net_alloc_card - allocates net_device and card structure
2388 *
2389 * returns the card structure or NULL in case of errors
2390 *
2391 * the card and net_device structures are linked to each other
2392 */
2393static struct spider_net_card *
2394spider_net_alloc_card(void)
2395{
2396 struct net_device *netdev;
2397 struct spider_net_card *card;
4cb6f9e5 2398 size_t alloc_size;
aaec0fab 2399
4cb6f9e5
LV
2400 alloc_size = sizeof(struct spider_net_card) +
2401 (tx_descriptors + rx_descriptors) * sizeof(struct spider_net_descr);
2402 netdev = alloc_etherdev(alloc_size);
aaec0fab
JO
2403 if (!netdev)
2404 return NULL;
2405
2406 card = netdev_priv(netdev);
2407 card->netdev = netdev;
2408 card->msg_enable = SPIDER_NET_DEFAULT_MSG;
c4028958 2409 INIT_WORK(&card->tx_timeout_task, spider_net_tx_timeout_task);
aaec0fab
JO
2410 init_waitqueue_head(&card->waitq);
2411 atomic_set(&card->tx_timeout_task_counter, 0);
2412
4cb6f9e5
LV
2413 card->rx_chain.num_desc = rx_descriptors;
2414 card->rx_chain.ring = card->darray;
2415 card->tx_chain.num_desc = tx_descriptors;
2416 card->tx_chain.ring = card->darray + rx_descriptors;
2417
aaec0fab
JO
2418 return card;
2419}
2420
2421/**
2422 * spider_net_undo_pci_setup - releases PCI ressources
2423 * @card: card structure
2424 *
2425 * spider_net_undo_pci_setup releases the mapped regions
2426 */
2427static void
2428spider_net_undo_pci_setup(struct spider_net_card *card)
2429{
2430 iounmap(card->regs);
2431 pci_release_regions(card->pdev);
2432}
2433
2434/**
2435 * spider_net_setup_pci_dev - sets up the device in terms of PCI operations
2436 * @card: card structure
2437 * @pdev: PCI device
2438 *
2439 * Returns the card structure or NULL if any errors occur
2440 *
2441 * spider_net_setup_pci_dev initializes pdev and together with the
2442 * functions called in spider_net_open configures the device so that
2443 * data can be transferred over it
2444 * The net_device structure is attached to the card structure, if the
2445 * function returns without error.
2446 **/
2447static struct spider_net_card *
2448spider_net_setup_pci_dev(struct pci_dev *pdev)
2449{
2450 struct spider_net_card *card;
2451 unsigned long mmio_start, mmio_len;
2452
2453 if (pci_enable_device(pdev)) {
e6311d85 2454 dev_err(&pdev->dev, "Couldn't enable PCI device\n");
aaec0fab
JO
2455 return NULL;
2456 }
2457
2458 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
e6311d85
LV
2459 dev_err(&pdev->dev,
2460 "Couldn't find proper PCI device base address.\n");
aaec0fab
JO
2461 goto out_disable_dev;
2462 }
2463
2464 if (pci_request_regions(pdev, spider_net_driver_name)) {
e6311d85
LV
2465 dev_err(&pdev->dev,
2466 "Couldn't obtain PCI resources, aborting.\n");
aaec0fab
JO
2467 goto out_disable_dev;
2468 }
2469
2470 pci_set_master(pdev);
2471
2472 card = spider_net_alloc_card();
2473 if (!card) {
e6311d85
LV
2474 dev_err(&pdev->dev,
2475 "Couldn't allocate net_device structure, aborting.\n");
aaec0fab
JO
2476 goto out_release_regions;
2477 }
2478 card->pdev = pdev;
2479
2480 /* fetch base address and length of first resource */
2481 mmio_start = pci_resource_start(pdev, 0);
2482 mmio_len = pci_resource_len(pdev, 0);
2483
2484 card->netdev->mem_start = mmio_start;
2485 card->netdev->mem_end = mmio_start + mmio_len;
2486 card->regs = ioremap(mmio_start, mmio_len);
2487
2488 if (!card->regs) {
e6311d85
LV
2489 dev_err(&pdev->dev,
2490 "Couldn't obtain PCI resources, aborting.\n");
aaec0fab
JO
2491 goto out_release_regions;
2492 }
2493
2494 return card;
2495
2496out_release_regions:
2497 pci_release_regions(pdev);
2498out_disable_dev:
2499 pci_disable_device(pdev);
2500 pci_set_drvdata(pdev, NULL);
2501 return NULL;
2502}
2503
2504/**
2505 * spider_net_probe - initialization of a device
2506 * @pdev: PCI device
2507 * @ent: entry in the device id list
2508 *
2509 * Returns 0 on success, <0 on failure
2510 *
2511 * spider_net_probe initializes pdev and registers a net_device
2512 * structure for it. After that, the device can be ifconfig'ed up
2513 **/
2514static int __devinit
2515spider_net_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
2516{
2517 int err = -EIO;
2518 struct spider_net_card *card;
2519
2520 card = spider_net_setup_pci_dev(pdev);
2521 if (!card)
2522 goto out;
2523
2524 spider_net_workaround_rxramfull(card);
2525 spider_net_init_card(card);
2526
2527 err = spider_net_setup_phy(card);
2528 if (err)
2529 goto out_undo_pci;
2530
aaec0fab
JO
2531 err = spider_net_setup_netdev(card);
2532 if (err)
2533 goto out_undo_pci;
2534
2535 return 0;
2536
2537out_undo_pci:
2538 spider_net_undo_pci_setup(card);
2539 free_netdev(card->netdev);
2540out:
2541 return err;
2542}
2543
2544/**
2545 * spider_net_remove - removal of a device
2546 * @pdev: PCI device
2547 *
2548 * Returns 0 on success, <0 on failure
2549 *
2550 * spider_net_remove is called to remove the device and unregisters the
2551 * net_device
2552 **/
2553static void __devexit
2554spider_net_remove(struct pci_dev *pdev)
2555{
2556 struct net_device *netdev;
2557 struct spider_net_card *card;
2558
2559 netdev = pci_get_drvdata(pdev);
2560 card = netdev_priv(netdev);
2561
2562 wait_event(card->waitq,
2563 atomic_read(&card->tx_timeout_task_counter) == 0);
2564
2565 unregister_netdev(netdev);
543cec51
JO
2566
2567 /* switch off card */
2568 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
2569 SPIDER_NET_CKRCTRL_STOP_VALUE);
2570 spider_net_write_reg(card, SPIDER_NET_CKRCTRL,
2571 SPIDER_NET_CKRCTRL_RUN_VALUE);
2572
aaec0fab
JO
2573 spider_net_undo_pci_setup(card);
2574 free_netdev(netdev);
aaec0fab
JO
2575}
2576
2577static struct pci_driver spider_net_driver = {
aaec0fab
JO
2578 .name = spider_net_driver_name,
2579 .id_table = spider_net_pci_tbl,
2580 .probe = spider_net_probe,
2581 .remove = __devexit_p(spider_net_remove)
2582};
2583
2584/**
2585 * spider_net_init - init function when the driver is loaded
2586 *
2587 * spider_net_init registers the device driver
2588 */
2589static int __init spider_net_init(void)
2590{
90f10841
LV
2591 printk(KERN_INFO "Spidernet version %s.\n", VERSION);
2592
aaec0fab
JO
2593 if (rx_descriptors < SPIDER_NET_RX_DESCRIPTORS_MIN) {
2594 rx_descriptors = SPIDER_NET_RX_DESCRIPTORS_MIN;
2595 pr_info("adjusting rx descriptors to %i.\n", rx_descriptors);
2596 }
2597 if (rx_descriptors > SPIDER_NET_RX_DESCRIPTORS_MAX) {
2598 rx_descriptors = SPIDER_NET_RX_DESCRIPTORS_MAX;
2599 pr_info("adjusting rx descriptors to %i.\n", rx_descriptors);
2600 }
2601 if (tx_descriptors < SPIDER_NET_TX_DESCRIPTORS_MIN) {
2602 tx_descriptors = SPIDER_NET_TX_DESCRIPTORS_MIN;
2603 pr_info("adjusting tx descriptors to %i.\n", tx_descriptors);
2604 }
2605 if (tx_descriptors > SPIDER_NET_TX_DESCRIPTORS_MAX) {
2606 tx_descriptors = SPIDER_NET_TX_DESCRIPTORS_MAX;
2607 pr_info("adjusting tx descriptors to %i.\n", tx_descriptors);
2608 }
2609
2610 return pci_register_driver(&spider_net_driver);
2611}
2612
2613/**
2614 * spider_net_cleanup - exit function when driver is unloaded
2615 *
2616 * spider_net_cleanup unregisters the device driver
2617 */
2618static void __exit spider_net_cleanup(void)
2619{
2620 pci_unregister_driver(&spider_net_driver);
2621}
2622
2623module_init(spider_net_init);
2624module_exit(spider_net_cleanup);