1 /* sundance.c: A Linux device driver for the Sundance ST201 "Alta". */
3 Written 1999-2000 by Donald Becker.
5 This software may be used and distributed according to the terms of
6 the GNU General Public License (GPL), incorporated herein by reference.
7 Drivers based on or derived from this code fall under the GPL and must
8 retain the authorship, copyright and license notice. This file is not
9 a complete program and may only be used when the entire operating
10 system is licensed under the GPL.
12 The author may be reached as becker@scyld.com, or C/O
13 Scyld Computing Corporation
14 410 Severn Ave., Suite 210
17 Support and updates available at
18 http://www.scyld.com/network/sundance.html
19 [link no longer provides useful info -jgarzik]
20 Archives of the mailing list are still available at
21 http://www.beowulf.org/pipermail/netdrivers/
25 #define DRV_NAME "sundance"
26 #define DRV_VERSION "1.2"
27 #define DRV_RELDATE "11-Sep-2006"
30 /* The user-configurable values.
31 These may be modified when a driver module is loaded.*/
32 static int debug
= 1; /* 1 normal messages, 0 quiet .. 7 verbose. */
33 /* Maximum number of multicast addresses to filter (vs. rx-all-multicast).
34 Typical is a 64 element hash table based on the Ethernet CRC. */
35 static const int multicast_filter_limit
= 32;
37 /* Set the copy breakpoint for the copy-only-tiny-frames scheme.
38 Setting to > 1518 effectively disables this feature.
39 This chip can receive into offset buffers, so the Alpha does not
41 static int rx_copybreak
;
42 static int flowctrl
=1;
44 /* media[] specifies the media type the NIC operates at.
45 autosense Autosensing active media.
46 10mbps_hd 10Mbps half duplex.
47 10mbps_fd 10Mbps full duplex.
48 100mbps_hd 100Mbps half duplex.
49 100mbps_fd 100Mbps full duplex.
50 0 Autosensing active media.
53 3 100Mbps half duplex.
54 4 100Mbps full duplex.
57 static char *media
[MAX_UNITS
];
60 /* Operational parameters that are set at compile time. */
62 /* Keep the ring sizes a power of two for compile efficiency.
63 The compiler will convert <unsigned>'%'<2^N> into a bit mask.
64 Making the Tx ring too large decreases the effectiveness of channel
65 bonding and packet priority, and more than 128 requires modifying the
67 Large receive rings merely waste memory. */
68 #define TX_RING_SIZE 32
69 #define TX_QUEUE_LEN (TX_RING_SIZE - 1) /* Limit ring entries actually used. */
70 #define RX_RING_SIZE 64
72 #define TX_TOTAL_SIZE TX_RING_SIZE*sizeof(struct netdev_desc)
73 #define RX_TOTAL_SIZE RX_RING_SIZE*sizeof(struct netdev_desc)
75 /* Operational parameters that usually are not changed. */
76 /* Time in jiffies before concluding the transmitter is hung. */
77 #define TX_TIMEOUT (4*HZ)
78 #define PKT_BUF_SZ 1536 /* Size of each temporary Rx buffer.*/
80 /* Include files, designed to support most kernel versions 2.0.0 and later. */
81 #include <linux/module.h>
82 #include <linux/kernel.h>
83 #include <linux/string.h>
84 #include <linux/timer.h>
85 #include <linux/errno.h>
86 #include <linux/ioport.h>
87 #include <linux/interrupt.h>
88 #include <linux/pci.h>
89 #include <linux/netdevice.h>
90 #include <linux/etherdevice.h>
91 #include <linux/skbuff.h>
92 #include <linux/init.h>
93 #include <linux/bitops.h>
94 #include <asm/uaccess.h>
95 #include <asm/processor.h> /* Processor type for cache alignment. */
97 #include <linux/delay.h>
98 #include <linux/spinlock.h>
99 #include <linux/dma-mapping.h>
100 #include <linux/crc32.h>
101 #include <linux/ethtool.h>
102 #include <linux/mii.h>
104 /* These identify the driver base version and may not be removed. */
105 static const char version
[] =
106 KERN_INFO DRV_NAME
".c:v" DRV_VERSION
" " DRV_RELDATE
107 " Written by Donald Becker\n";
109 MODULE_AUTHOR("Donald Becker <becker@scyld.com>");
110 MODULE_DESCRIPTION("Sundance Alta Ethernet driver");
111 MODULE_LICENSE("GPL");
113 module_param(debug
, int, 0);
114 module_param(rx_copybreak
, int, 0);
115 module_param_array(media
, charp
, NULL
, 0);
116 module_param(flowctrl
, int, 0);
117 MODULE_PARM_DESC(debug
, "Sundance Alta debug level (0-5)");
118 MODULE_PARM_DESC(rx_copybreak
, "Sundance Alta copy breakpoint for copy-only-tiny-frames");
119 MODULE_PARM_DESC(flowctrl
, "Sundance Alta flow control [0|1]");
124 I. Board Compatibility
126 This driver is designed for the Sundance Technologies "Alta" ST201 chip.
128 II. Board-specific settings
130 III. Driver operation
134 This driver uses two statically allocated fixed-size descriptor lists
135 formed into rings by a branch from the final descriptor to the beginning of
136 the list. The ring sizes are set at compile time by RX/TX_RING_SIZE.
137 Some chips explicitly use only 2^N sized rings, while others use a
138 'next descriptor' pointer that the driver forms into rings.
140 IIIb/c. Transmit/Receive Structure
142 This driver uses a zero-copy receive and transmit scheme.
143 The driver allocates full frame size skbuffs for the Rx ring buffers at
144 open() time and passes the skb->data field to the chip as receive data
145 buffers. When an incoming frame is less than RX_COPYBREAK bytes long,
146 a fresh skbuff is allocated and the frame is copied to the new skbuff.
147 When the incoming frame is larger, the skbuff is passed directly up the
148 protocol stack. Buffers consumed this way are replaced by newly allocated
149 skbuffs in a later phase of receives.
151 The RX_COPYBREAK value is chosen to trade-off the memory wasted by
152 using a full-sized skbuff for small frames vs. the copying costs of larger
153 frames. New boards are typically used in generously configured machines
154 and the underfilled buffers have negligible impact compared to the benefit of
155 a single allocation size, so the default value of zero results in never
156 copying packets. When copying is done, the cost is usually mitigated by using
157 a combined copy/checksum routine. Copying also preloads the cache, which is
158 most useful with small frames.
160 A subtle aspect of the operation is that the IP header at offset 14 in an
161 ethernet frame isn't longword aligned for further processing.
162 Unaligned buffers are permitted by the Sundance hardware, so
163 frames are received into the skbuff at an offset of "+2", 16-byte aligning
166 IIId. Synchronization
168 The driver runs as two independent, single-threaded flows of control. One
169 is the send-packet routine, which enforces single-threaded use by the
170 dev->tbusy flag. The other thread is the interrupt handler, which is single
171 threaded by the hardware and interrupt handling software.
173 The send packet thread has partial control over the Tx ring and 'dev->tbusy'
174 flag. It sets the tbusy flag whenever it's queuing a Tx packet. If the next
175 queue slot is empty, it clears the tbusy flag when finished otherwise it sets
176 the 'lp->tx_full' flag.
178 The interrupt handler has exclusive control over the Rx ring and records stats
179 from the Tx ring. After reaping the stats, it marks the Tx queue entry as
180 empty by incrementing the dirty_tx mark. Iff the 'lp->tx_full' flag is set, it
181 clears both the tx_full and tbusy flags.
187 The Sundance ST201 datasheet, preliminary version.
188 The Kendin KS8723 datasheet, preliminary version.
189 The ICplus IP100 datasheet, preliminary version.
190 http://www.scyld.com/expert/100mbps.html
191 http://www.scyld.com/expert/NWay.html
197 /* Work-around for Kendin chip bugs. */
198 #ifndef CONFIG_SUNDANCE_MMIO
202 static const struct pci_device_id sundance_pci_tbl
[] = {
203 { 0x1186, 0x1002, 0x1186, 0x1002, 0, 0, 0 },
204 { 0x1186, 0x1002, 0x1186, 0x1003, 0, 0, 1 },
205 { 0x1186, 0x1002, 0x1186, 0x1012, 0, 0, 2 },
206 { 0x1186, 0x1002, 0x1186, 0x1040, 0, 0, 3 },
207 { 0x1186, 0x1002, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 4 },
208 { 0x13F0, 0x0201, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 5 },
209 { 0x13F0, 0x0200, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 6 },
212 MODULE_DEVICE_TABLE(pci
, sundance_pci_tbl
);
221 static const struct pci_id_info pci_id_tbl
[] = {
222 {"D-Link DFE-550TX FAST Ethernet Adapter"},
223 {"D-Link DFE-550FX 100Mbps Fiber-optics Adapter"},
224 {"D-Link DFE-580TX 4 port Server Adapter"},
225 {"D-Link DFE-530TXS FAST Ethernet Adapter"},
226 {"D-Link DL10050-based FAST Ethernet Adapter"},
227 {"Sundance Technology Alta"},
228 {"IC Plus Corporation IP100A FAST Ethernet Adapter"},
229 { } /* terminate list. */
232 /* This driver was written to use PCI memory space, however x86-oriented
233 hardware often uses I/O space accesses. */
235 /* Offsets to the device registers.
236 Unlike software-only systems, device drivers interact with complex hardware.
237 It's not useful to define symbolic names for every register bit in the
238 device. The name can only partially document the semantics and make
239 the driver longer and more difficult to read.
240 In general, only the important configuration values or bits changed
241 multiple times should be defined symbolically.
246 TxDMABurstThresh
= 0x08,
247 TxDMAUrgentThresh
= 0x09,
248 TxDMAPollPeriod
= 0x0a,
253 RxDMABurstThresh
= 0x14,
254 RxDMAUrgentThresh
= 0x15,
255 RxDMAPollPeriod
= 0x16,
275 MulticastFilter0
= 0x60,
276 MulticastFilter1
= 0x64,
283 StatsCarrierError
= 0x74,
284 StatsLateColl
= 0x75,
285 StatsMultiColl
= 0x76,
289 StatsTxXSDefer
= 0x7a,
295 /* Aliased and bogus values! */
299 #define ASIC_HI_WORD(x) ((x) + 2)
301 enum ASICCtrl_HiWord_bit
{
302 GlobalReset
= 0x0001,
307 NetworkReset
= 0x0020,
312 /* Bits in the interrupt status/mask registers. */
313 enum intr_status_bits
{
314 IntrSummary
=0x0001, IntrPCIErr
=0x0002, IntrMACCtrl
=0x0008,
315 IntrTxDone
=0x0004, IntrRxDone
=0x0010, IntrRxStart
=0x0020,
317 StatsMax
=0x0080, LinkChange
=0x0100,
318 IntrTxDMADone
=0x0200, IntrRxDMADone
=0x0400,
321 /* Bits in the RxMode register. */
323 AcceptAllIPMulti
=0x20, AcceptMultiHash
=0x10, AcceptAll
=0x08,
324 AcceptBroadcast
=0x04, AcceptMulticast
=0x02, AcceptMyPhys
=0x01,
326 /* Bits in MACCtrl. */
327 enum mac_ctrl0_bits
{
328 EnbFullDuplex
=0x20, EnbRcvLargeFrame
=0x40,
329 EnbFlowCtrl
=0x100, EnbPassRxCRC
=0x200,
331 enum mac_ctrl1_bits
{
332 StatsEnable
=0x0020, StatsDisable
=0x0040, StatsEnabled
=0x0080,
333 TxEnable
=0x0100, TxDisable
=0x0200, TxEnabled
=0x0400,
334 RxEnable
=0x0800, RxDisable
=0x1000, RxEnabled
=0x2000,
337 /* Bits in WakeEvent register. */
338 enum wake_event_bits
{
339 WakePktEnable
= 0x01,
340 MagicPktEnable
= 0x02,
341 LinkEventEnable
= 0x04,
345 /* The Rx and Tx buffer descriptors. */
346 /* Note that using only 32 bit fields simplifies conversion to big-endian
351 struct desc_frag
{ __le32 addr
, length
; } frag
[1];
354 /* Bits in netdev_desc.status */
355 enum desc_status_bits
{
357 DescEndPacket
=0x4000,
361 DescIntrOnDMADone
=0x80000000,
362 DisableAlign
= 0x00000001,
365 #define PRIV_ALIGN 15 /* Required alignment mask */
366 /* Use __attribute__((aligned (L1_CACHE_BYTES))) to maintain alignment
367 within the structure. */
369 struct netdev_private
{
370 /* Descriptor rings first for alignment. */
371 struct netdev_desc
*rx_ring
;
372 struct netdev_desc
*tx_ring
;
373 struct sk_buff
* rx_skbuff
[RX_RING_SIZE
];
374 struct sk_buff
* tx_skbuff
[TX_RING_SIZE
];
375 dma_addr_t tx_ring_dma
;
376 dma_addr_t rx_ring_dma
;
377 struct timer_list timer
; /* Media monitoring timer. */
378 /* ethtool extra stats */
380 u64 tx_multiple_collisions
;
381 u64 tx_single_collisions
;
382 u64 tx_late_collisions
;
384 u64 tx_deferred_excessive
;
391 /* Frequently used values: keep some adjacent for cache effect. */
395 unsigned int cur_rx
, dirty_rx
; /* Producer/consumer ring indices */
396 unsigned int rx_buf_sz
; /* Based on MTU+slack. */
397 struct netdev_desc
*last_tx
; /* Last Tx descriptor used. */
398 unsigned int cur_tx
, dirty_tx
;
399 /* These values are keep track of the transceiver/media in use. */
400 unsigned int flowctrl
:1;
401 unsigned int default_port
:4; /* Last dev->if_port value. */
402 unsigned int an_enable
:1;
404 unsigned int wol_enabled
:1; /* Wake on LAN enabled */
405 struct tasklet_struct rx_tasklet
;
406 struct tasklet_struct tx_tasklet
;
409 /* Multicast and receive mode. */
410 spinlock_t mcastlock
; /* SMP lock multicast updates. */
412 /* MII transceiver section. */
413 struct mii_if_info mii_if
;
414 int mii_preamble_required
;
415 unsigned char phys
[MII_CNT
]; /* MII device addresses, only first one used. */
416 struct pci_dev
*pci_dev
;
421 /* The station address location in the EEPROM. */
422 #define EEPROM_SA_OFFSET 0x10
423 #define DEFAULT_INTR (IntrRxDMADone | IntrPCIErr | \
424 IntrDrvRqst | IntrTxDone | StatsMax | \
427 static int change_mtu(struct net_device
*dev
, int new_mtu
);
428 static int eeprom_read(void __iomem
*ioaddr
, int location
);
429 static int mdio_read(struct net_device
*dev
, int phy_id
, int location
);
430 static void mdio_write(struct net_device
*dev
, int phy_id
, int location
, int value
);
431 static int mdio_wait_link(struct net_device
*dev
, int wait
);
432 static int netdev_open(struct net_device
*dev
);
433 static void check_duplex(struct net_device
*dev
);
434 static void netdev_timer(unsigned long data
);
435 static void tx_timeout(struct net_device
*dev
);
436 static void init_ring(struct net_device
*dev
);
437 static netdev_tx_t
start_tx(struct sk_buff
*skb
, struct net_device
*dev
);
438 static int reset_tx (struct net_device
*dev
);
439 static irqreturn_t
intr_handler(int irq
, void *dev_instance
);
440 static void rx_poll(unsigned long data
);
441 static void tx_poll(unsigned long data
);
442 static void refill_rx (struct net_device
*dev
);
443 static void netdev_error(struct net_device
*dev
, int intr_status
);
444 static void netdev_error(struct net_device
*dev
, int intr_status
);
445 static void set_rx_mode(struct net_device
*dev
);
446 static int __set_mac_addr(struct net_device
*dev
);
447 static int sundance_set_mac_addr(struct net_device
*dev
, void *data
);
448 static struct net_device_stats
*get_stats(struct net_device
*dev
);
449 static int netdev_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
450 static int netdev_close(struct net_device
*dev
);
451 static const struct ethtool_ops ethtool_ops
;
453 static void sundance_reset(struct net_device
*dev
, unsigned long reset_cmd
)
455 struct netdev_private
*np
= netdev_priv(dev
);
456 void __iomem
*ioaddr
= np
->base
+ ASICCtrl
;
459 /* ST201 documentation states ASICCtrl is a 32bit register */
460 iowrite32 (reset_cmd
| ioread32 (ioaddr
), ioaddr
);
461 /* ST201 documentation states reset can take up to 1 ms */
463 while (ioread32 (ioaddr
) & (ResetBusy
<< 16)) {
464 if (--countdown
== 0) {
465 printk(KERN_WARNING
"%s : reset not completed !!\n", dev
->name
);
472 #ifdef CONFIG_NET_POLL_CONTROLLER
473 static void sundance_poll_controller(struct net_device
*dev
)
475 struct netdev_private
*np
= netdev_priv(dev
);
477 disable_irq(np
->pci_dev
->irq
);
478 intr_handler(np
->pci_dev
->irq
, dev
);
479 enable_irq(np
->pci_dev
->irq
);
483 static const struct net_device_ops netdev_ops
= {
484 .ndo_open
= netdev_open
,
485 .ndo_stop
= netdev_close
,
486 .ndo_start_xmit
= start_tx
,
487 .ndo_get_stats
= get_stats
,
488 .ndo_set_rx_mode
= set_rx_mode
,
489 .ndo_do_ioctl
= netdev_ioctl
,
490 .ndo_tx_timeout
= tx_timeout
,
491 .ndo_change_mtu
= change_mtu
,
492 .ndo_set_mac_address
= sundance_set_mac_addr
,
493 .ndo_validate_addr
= eth_validate_addr
,
494 #ifdef CONFIG_NET_POLL_CONTROLLER
495 .ndo_poll_controller
= sundance_poll_controller
,
499 static int sundance_probe1(struct pci_dev
*pdev
,
500 const struct pci_device_id
*ent
)
502 struct net_device
*dev
;
503 struct netdev_private
*np
;
505 int chip_idx
= ent
->driver_data
;
508 void __iomem
*ioaddr
;
517 int phy
, phy_end
, phy_idx
= 0;
519 /* when built into the kernel, we only print version if device is found */
521 static int printed_version
;
522 if (!printed_version
++)
526 if (pci_enable_device(pdev
))
528 pci_set_master(pdev
);
532 dev
= alloc_etherdev(sizeof(*np
));
535 SET_NETDEV_DEV(dev
, &pdev
->dev
);
537 if (pci_request_regions(pdev
, DRV_NAME
))
540 ioaddr
= pci_iomap(pdev
, bar
, netdev_io_size
);
544 for (i
= 0; i
< 3; i
++)
545 ((__le16
*)dev
->dev_addr
)[i
] =
546 cpu_to_le16(eeprom_read(ioaddr
, i
+ EEPROM_SA_OFFSET
));
548 np
= netdev_priv(dev
);
551 np
->chip_id
= chip_idx
;
552 np
->msg_enable
= (1 << debug
) - 1;
553 spin_lock_init(&np
->lock
);
554 spin_lock_init(&np
->statlock
);
555 tasklet_init(&np
->rx_tasklet
, rx_poll
, (unsigned long)dev
);
556 tasklet_init(&np
->tx_tasklet
, tx_poll
, (unsigned long)dev
);
558 ring_space
= dma_alloc_coherent(&pdev
->dev
, TX_TOTAL_SIZE
,
559 &ring_dma
, GFP_KERNEL
);
561 goto err_out_cleardev
;
562 np
->tx_ring
= (struct netdev_desc
*)ring_space
;
563 np
->tx_ring_dma
= ring_dma
;
565 ring_space
= dma_alloc_coherent(&pdev
->dev
, RX_TOTAL_SIZE
,
566 &ring_dma
, GFP_KERNEL
);
568 goto err_out_unmap_tx
;
569 np
->rx_ring
= (struct netdev_desc
*)ring_space
;
570 np
->rx_ring_dma
= ring_dma
;
572 np
->mii_if
.dev
= dev
;
573 np
->mii_if
.mdio_read
= mdio_read
;
574 np
->mii_if
.mdio_write
= mdio_write
;
575 np
->mii_if
.phy_id_mask
= 0x1f;
576 np
->mii_if
.reg_num_mask
= 0x1f;
578 /* The chip-specific entries in the device structure. */
579 dev
->netdev_ops
= &netdev_ops
;
580 dev
->ethtool_ops
= ðtool_ops
;
581 dev
->watchdog_timeo
= TX_TIMEOUT
;
583 pci_set_drvdata(pdev
, dev
);
585 i
= register_netdev(dev
);
587 goto err_out_unmap_rx
;
589 printk(KERN_INFO
"%s: %s at %p, %pM, IRQ %d.\n",
590 dev
->name
, pci_id_tbl
[chip_idx
].name
, ioaddr
,
593 np
->phys
[0] = 1; /* Default setting */
594 np
->mii_preamble_required
++;
597 * It seems some phys doesn't deal well with address 0 being accessed
600 if (sundance_pci_tbl
[np
->chip_id
].device
== 0x0200) {
605 phy_end
= 32; /* wraps to zero, due to 'phy & 0x1f' */
607 for (; phy
<= phy_end
&& phy_idx
< MII_CNT
; phy
++) {
608 int phyx
= phy
& 0x1f;
609 int mii_status
= mdio_read(dev
, phyx
, MII_BMSR
);
610 if (mii_status
!= 0xffff && mii_status
!= 0x0000) {
611 np
->phys
[phy_idx
++] = phyx
;
612 np
->mii_if
.advertising
= mdio_read(dev
, phyx
, MII_ADVERTISE
);
613 if ((mii_status
& 0x0040) == 0)
614 np
->mii_preamble_required
++;
615 printk(KERN_INFO
"%s: MII PHY found at address %d, status "
616 "0x%4.4x advertising %4.4x.\n",
617 dev
->name
, phyx
, mii_status
, np
->mii_if
.advertising
);
620 np
->mii_preamble_required
--;
623 printk(KERN_INFO
"%s: No MII transceiver found, aborting. ASIC status %x\n",
624 dev
->name
, ioread32(ioaddr
+ ASICCtrl
));
625 goto err_out_unregister
;
628 np
->mii_if
.phy_id
= np
->phys
[0];
630 /* Parse override configuration */
632 if (card_idx
< MAX_UNITS
) {
633 if (media
[card_idx
] != NULL
) {
635 if (strcmp (media
[card_idx
], "100mbps_fd") == 0 ||
636 strcmp (media
[card_idx
], "4") == 0) {
638 np
->mii_if
.full_duplex
= 1;
639 } else if (strcmp (media
[card_idx
], "100mbps_hd") == 0 ||
640 strcmp (media
[card_idx
], "3") == 0) {
642 np
->mii_if
.full_duplex
= 0;
643 } else if (strcmp (media
[card_idx
], "10mbps_fd") == 0 ||
644 strcmp (media
[card_idx
], "2") == 0) {
646 np
->mii_if
.full_duplex
= 1;
647 } else if (strcmp (media
[card_idx
], "10mbps_hd") == 0 ||
648 strcmp (media
[card_idx
], "1") == 0) {
650 np
->mii_if
.full_duplex
= 0;
660 if (ioread32 (ioaddr
+ ASICCtrl
) & 0x80) {
661 /* Default 100Mbps Full */
664 np
->mii_if
.full_duplex
= 1;
669 mdio_write (dev
, np
->phys
[0], MII_BMCR
, BMCR_RESET
);
671 /* If flow control enabled, we need to advertise it.*/
673 mdio_write (dev
, np
->phys
[0], MII_ADVERTISE
, np
->mii_if
.advertising
| 0x0400);
674 mdio_write (dev
, np
->phys
[0], MII_BMCR
, BMCR_ANENABLE
|BMCR_ANRESTART
);
675 /* Force media type */
676 if (!np
->an_enable
) {
678 mii_ctl
|= (np
->speed
== 100) ? BMCR_SPEED100
: 0;
679 mii_ctl
|= (np
->mii_if
.full_duplex
) ? BMCR_FULLDPLX
: 0;
680 mdio_write (dev
, np
->phys
[0], MII_BMCR
, mii_ctl
);
681 printk (KERN_INFO
"Override speed=%d, %s duplex\n",
682 np
->speed
, np
->mii_if
.full_duplex
? "Full" : "Half");
686 /* Perhaps move the reset here? */
687 /* Reset the chip to erase previous misconfiguration. */
688 if (netif_msg_hw(np
))
689 printk("ASIC Control is %x.\n", ioread32(ioaddr
+ ASICCtrl
));
690 sundance_reset(dev
, 0x00ff << 16);
691 if (netif_msg_hw(np
))
692 printk("ASIC Control is now %x.\n", ioread32(ioaddr
+ ASICCtrl
));
698 unregister_netdev(dev
);
700 dma_free_coherent(&pdev
->dev
, RX_TOTAL_SIZE
,
701 np
->rx_ring
, np
->rx_ring_dma
);
703 dma_free_coherent(&pdev
->dev
, TX_TOTAL_SIZE
,
704 np
->tx_ring
, np
->tx_ring_dma
);
706 pci_iounmap(pdev
, ioaddr
);
708 pci_release_regions(pdev
);
714 static int change_mtu(struct net_device
*dev
, int new_mtu
)
716 if ((new_mtu
< 68) || (new_mtu
> 8191)) /* Set by RxDMAFrameLen */
718 if (netif_running(dev
))
724 #define eeprom_delay(ee_addr) ioread32(ee_addr)
725 /* Read the EEPROM and MII Management Data I/O (MDIO) interfaces. */
726 static int eeprom_read(void __iomem
*ioaddr
, int location
)
728 int boguscnt
= 10000; /* Typical 1900 ticks. */
729 iowrite16(0x0200 | (location
& 0xff), ioaddr
+ EECtrl
);
731 eeprom_delay(ioaddr
+ EECtrl
);
732 if (! (ioread16(ioaddr
+ EECtrl
) & 0x8000)) {
733 return ioread16(ioaddr
+ EEData
);
735 } while (--boguscnt
> 0);
739 /* MII transceiver control section.
740 Read and write the MII registers using software-generated serial
741 MDIO protocol. See the MII specifications or DP83840A data sheet
744 The maximum data clock rate is 2.5 Mhz. The minimum timing is usually
745 met by back-to-back 33Mhz PCI cycles. */
746 #define mdio_delay() ioread8(mdio_addr)
749 MDIO_ShiftClk
=0x0001, MDIO_Data
=0x0002, MDIO_EnbOutput
=0x0004,
751 #define MDIO_EnbIn (0)
752 #define MDIO_WRITE0 (MDIO_EnbOutput)
753 #define MDIO_WRITE1 (MDIO_Data | MDIO_EnbOutput)
755 /* Generate the preamble required for initial synchronization and
756 a few older transceivers. */
757 static void mdio_sync(void __iomem
*mdio_addr
)
761 /* Establish sync by sending at least 32 logic ones. */
762 while (--bits
>= 0) {
763 iowrite8(MDIO_WRITE1
, mdio_addr
);
765 iowrite8(MDIO_WRITE1
| MDIO_ShiftClk
, mdio_addr
);
770 static int mdio_read(struct net_device
*dev
, int phy_id
, int location
)
772 struct netdev_private
*np
= netdev_priv(dev
);
773 void __iomem
*mdio_addr
= np
->base
+ MIICtrl
;
774 int mii_cmd
= (0xf6 << 10) | (phy_id
<< 5) | location
;
777 if (np
->mii_preamble_required
)
778 mdio_sync(mdio_addr
);
780 /* Shift the read command bits out. */
781 for (i
= 15; i
>= 0; i
--) {
782 int dataval
= (mii_cmd
& (1 << i
)) ? MDIO_WRITE1
: MDIO_WRITE0
;
784 iowrite8(dataval
, mdio_addr
);
786 iowrite8(dataval
| MDIO_ShiftClk
, mdio_addr
);
789 /* Read the two transition, 16 data, and wire-idle bits. */
790 for (i
= 19; i
> 0; i
--) {
791 iowrite8(MDIO_EnbIn
, mdio_addr
);
793 retval
= (retval
<< 1) | ((ioread8(mdio_addr
) & MDIO_Data
) ? 1 : 0);
794 iowrite8(MDIO_EnbIn
| MDIO_ShiftClk
, mdio_addr
);
797 return (retval
>>1) & 0xffff;
800 static void mdio_write(struct net_device
*dev
, int phy_id
, int location
, int value
)
802 struct netdev_private
*np
= netdev_priv(dev
);
803 void __iomem
*mdio_addr
= np
->base
+ MIICtrl
;
804 int mii_cmd
= (0x5002 << 16) | (phy_id
<< 23) | (location
<<18) | value
;
807 if (np
->mii_preamble_required
)
808 mdio_sync(mdio_addr
);
810 /* Shift the command bits out. */
811 for (i
= 31; i
>= 0; i
--) {
812 int dataval
= (mii_cmd
& (1 << i
)) ? MDIO_WRITE1
: MDIO_WRITE0
;
814 iowrite8(dataval
, mdio_addr
);
816 iowrite8(dataval
| MDIO_ShiftClk
, mdio_addr
);
819 /* Clear out extra bits. */
820 for (i
= 2; i
> 0; i
--) {
821 iowrite8(MDIO_EnbIn
, mdio_addr
);
823 iowrite8(MDIO_EnbIn
| MDIO_ShiftClk
, mdio_addr
);
828 static int mdio_wait_link(struct net_device
*dev
, int wait
)
832 struct netdev_private
*np
;
834 np
= netdev_priv(dev
);
835 phy_id
= np
->phys
[0];
838 bmsr
= mdio_read(dev
, phy_id
, MII_BMSR
);
842 } while (--wait
> 0);
846 static int netdev_open(struct net_device
*dev
)
848 struct netdev_private
*np
= netdev_priv(dev
);
849 void __iomem
*ioaddr
= np
->base
;
850 const int irq
= np
->pci_dev
->irq
;
854 sundance_reset(dev
, 0x00ff << 16);
856 i
= request_irq(irq
, intr_handler
, IRQF_SHARED
, dev
->name
, dev
);
860 if (netif_msg_ifup(np
))
861 printk(KERN_DEBUG
"%s: netdev_open() irq %d\n", dev
->name
, irq
);
865 iowrite32(np
->rx_ring_dma
, ioaddr
+ RxListPtr
);
866 /* The Tx list pointer is written as packets are queued. */
868 /* Initialize other registers. */
870 #if IS_ENABLED(CONFIG_VLAN_8021Q)
871 iowrite16(dev
->mtu
+ 18, ioaddr
+ MaxFrameSize
);
873 iowrite16(dev
->mtu
+ 14, ioaddr
+ MaxFrameSize
);
876 iowrite32(ioread32(ioaddr
+ ASICCtrl
) | 0x0C, ioaddr
+ ASICCtrl
);
878 /* Configure the PCI bus bursts and FIFO thresholds. */
880 if (dev
->if_port
== 0)
881 dev
->if_port
= np
->default_port
;
883 spin_lock_init(&np
->mcastlock
);
886 iowrite16(0, ioaddr
+ IntrEnable
);
887 iowrite16(0, ioaddr
+ DownCounter
);
888 /* Set the chip to poll every N*320nsec. */
889 iowrite8(100, ioaddr
+ RxDMAPollPeriod
);
890 iowrite8(127, ioaddr
+ TxDMAPollPeriod
);
891 /* Fix DFE-580TX packet drop issue */
892 if (np
->pci_dev
->revision
>= 0x14)
893 iowrite8(0x01, ioaddr
+ DebugCtrl1
);
894 netif_start_queue(dev
);
896 spin_lock_irqsave(&np
->lock
, flags
);
898 spin_unlock_irqrestore(&np
->lock
, flags
);
900 iowrite16 (StatsEnable
| RxEnable
| TxEnable
, ioaddr
+ MACCtrl1
);
903 iowrite8(ioread8(ioaddr
+ WakeEvent
) | 0x00, ioaddr
+ WakeEvent
);
906 if (netif_msg_ifup(np
))
907 printk(KERN_DEBUG
"%s: Done netdev_open(), status: Rx %x Tx %x "
908 "MAC Control %x, %4.4x %4.4x.\n",
909 dev
->name
, ioread32(ioaddr
+ RxStatus
), ioread8(ioaddr
+ TxStatus
),
910 ioread32(ioaddr
+ MACCtrl0
),
911 ioread16(ioaddr
+ MACCtrl1
), ioread16(ioaddr
+ MACCtrl0
));
913 /* Set the timer to check for link beat. */
914 init_timer(&np
->timer
);
915 np
->timer
.expires
= jiffies
+ 3*HZ
;
916 np
->timer
.data
= (unsigned long)dev
;
917 np
->timer
.function
= netdev_timer
; /* timer handler */
918 add_timer(&np
->timer
);
920 /* Enable interrupts by setting the interrupt mask. */
921 iowrite16(DEFAULT_INTR
, ioaddr
+ IntrEnable
);
926 static void check_duplex(struct net_device
*dev
)
928 struct netdev_private
*np
= netdev_priv(dev
);
929 void __iomem
*ioaddr
= np
->base
;
930 int mii_lpa
= mdio_read(dev
, np
->phys
[0], MII_LPA
);
931 int negotiated
= mii_lpa
& np
->mii_if
.advertising
;
935 if (!np
->an_enable
|| mii_lpa
== 0xffff) {
936 if (np
->mii_if
.full_duplex
)
937 iowrite16 (ioread16 (ioaddr
+ MACCtrl0
) | EnbFullDuplex
,
942 /* Autonegotiation */
943 duplex
= (negotiated
& 0x0100) || (negotiated
& 0x01C0) == 0x0040;
944 if (np
->mii_if
.full_duplex
!= duplex
) {
945 np
->mii_if
.full_duplex
= duplex
;
946 if (netif_msg_link(np
))
947 printk(KERN_INFO
"%s: Setting %s-duplex based on MII #%d "
948 "negotiated capability %4.4x.\n", dev
->name
,
949 duplex
? "full" : "half", np
->phys
[0], negotiated
);
950 iowrite16(ioread16(ioaddr
+ MACCtrl0
) | (duplex
? 0x20 : 0), ioaddr
+ MACCtrl0
);
954 static void netdev_timer(unsigned long data
)
956 struct net_device
*dev
= (struct net_device
*)data
;
957 struct netdev_private
*np
= netdev_priv(dev
);
958 void __iomem
*ioaddr
= np
->base
;
959 int next_tick
= 10*HZ
;
961 if (netif_msg_timer(np
)) {
962 printk(KERN_DEBUG
"%s: Media selection timer tick, intr status %4.4x, "
964 dev
->name
, ioread16(ioaddr
+ IntrEnable
),
965 ioread8(ioaddr
+ TxStatus
), ioread32(ioaddr
+ RxStatus
));
968 np
->timer
.expires
= jiffies
+ next_tick
;
969 add_timer(&np
->timer
);
972 static void tx_timeout(struct net_device
*dev
)
974 struct netdev_private
*np
= netdev_priv(dev
);
975 void __iomem
*ioaddr
= np
->base
;
978 netif_stop_queue(dev
);
979 tasklet_disable(&np
->tx_tasklet
);
980 iowrite16(0, ioaddr
+ IntrEnable
);
981 printk(KERN_WARNING
"%s: Transmit timed out, TxStatus %2.2x "
983 " resetting...\n", dev
->name
, ioread8(ioaddr
+ TxStatus
),
984 ioread8(ioaddr
+ TxFrameId
));
988 for (i
=0; i
<TX_RING_SIZE
; i
++) {
989 printk(KERN_DEBUG
"%02x %08llx %08x %08x(%02x) %08x %08x\n", i
,
990 (unsigned long long)(np
->tx_ring_dma
+ i
*sizeof(*np
->tx_ring
)),
991 le32_to_cpu(np
->tx_ring
[i
].next_desc
),
992 le32_to_cpu(np
->tx_ring
[i
].status
),
993 (le32_to_cpu(np
->tx_ring
[i
].status
) >> 2) & 0xff,
994 le32_to_cpu(np
->tx_ring
[i
].frag
[0].addr
),
995 le32_to_cpu(np
->tx_ring
[i
].frag
[0].length
));
997 printk(KERN_DEBUG
"TxListPtr=%08x netif_queue_stopped=%d\n",
998 ioread32(np
->base
+ TxListPtr
),
999 netif_queue_stopped(dev
));
1000 printk(KERN_DEBUG
"cur_tx=%d(%02x) dirty_tx=%d(%02x)\n",
1001 np
->cur_tx
, np
->cur_tx
% TX_RING_SIZE
,
1002 np
->dirty_tx
, np
->dirty_tx
% TX_RING_SIZE
);
1003 printk(KERN_DEBUG
"cur_rx=%d dirty_rx=%d\n", np
->cur_rx
, np
->dirty_rx
);
1004 printk(KERN_DEBUG
"cur_task=%d\n", np
->cur_task
);
1006 spin_lock_irqsave(&np
->lock
, flag
);
1008 /* Stop and restart the chip's Tx processes . */
1010 spin_unlock_irqrestore(&np
->lock
, flag
);
1014 netif_trans_update(dev
); /* prevent tx timeout */
1015 dev
->stats
.tx_errors
++;
1016 if (np
->cur_tx
- np
->dirty_tx
< TX_QUEUE_LEN
- 4) {
1017 netif_wake_queue(dev
);
1019 iowrite16(DEFAULT_INTR
, ioaddr
+ IntrEnable
);
1020 tasklet_enable(&np
->tx_tasklet
);
1024 /* Initialize the Rx and Tx rings, along with various 'dev' bits. */
1025 static void init_ring(struct net_device
*dev
)
1027 struct netdev_private
*np
= netdev_priv(dev
);
1030 np
->cur_rx
= np
->cur_tx
= 0;
1031 np
->dirty_rx
= np
->dirty_tx
= 0;
1034 np
->rx_buf_sz
= (dev
->mtu
<= 1520 ? PKT_BUF_SZ
: dev
->mtu
+ 16);
1036 /* Initialize all Rx descriptors. */
1037 for (i
= 0; i
< RX_RING_SIZE
; i
++) {
1038 np
->rx_ring
[i
].next_desc
= cpu_to_le32(np
->rx_ring_dma
+
1039 ((i
+1)%RX_RING_SIZE
)*sizeof(*np
->rx_ring
));
1040 np
->rx_ring
[i
].status
= 0;
1041 np
->rx_ring
[i
].frag
[0].length
= 0;
1042 np
->rx_skbuff
[i
] = NULL
;
1045 /* Fill in the Rx buffers. Handle allocation failure gracefully. */
1046 for (i
= 0; i
< RX_RING_SIZE
; i
++) {
1047 struct sk_buff
*skb
=
1048 netdev_alloc_skb(dev
, np
->rx_buf_sz
+ 2);
1049 np
->rx_skbuff
[i
] = skb
;
1052 skb_reserve(skb
, 2); /* 16 byte align the IP header. */
1053 np
->rx_ring
[i
].frag
[0].addr
= cpu_to_le32(
1054 dma_map_single(&np
->pci_dev
->dev
, skb
->data
,
1055 np
->rx_buf_sz
, DMA_FROM_DEVICE
));
1056 if (dma_mapping_error(&np
->pci_dev
->dev
,
1057 np
->rx_ring
[i
].frag
[0].addr
)) {
1059 np
->rx_skbuff
[i
] = NULL
;
1062 np
->rx_ring
[i
].frag
[0].length
= cpu_to_le32(np
->rx_buf_sz
| LastFrag
);
1064 np
->dirty_rx
= (unsigned int)(i
- RX_RING_SIZE
);
1066 for (i
= 0; i
< TX_RING_SIZE
; i
++) {
1067 np
->tx_skbuff
[i
] = NULL
;
1068 np
->tx_ring
[i
].status
= 0;
1072 static void tx_poll (unsigned long data
)
1074 struct net_device
*dev
= (struct net_device
*)data
;
1075 struct netdev_private
*np
= netdev_priv(dev
);
1076 unsigned head
= np
->cur_task
% TX_RING_SIZE
;
1077 struct netdev_desc
*txdesc
=
1078 &np
->tx_ring
[(np
->cur_tx
- 1) % TX_RING_SIZE
];
1080 /* Chain the next pointer */
1081 for (; np
->cur_tx
- np
->cur_task
> 0; np
->cur_task
++) {
1082 int entry
= np
->cur_task
% TX_RING_SIZE
;
1083 txdesc
= &np
->tx_ring
[entry
];
1085 np
->last_tx
->next_desc
= cpu_to_le32(np
->tx_ring_dma
+
1086 entry
*sizeof(struct netdev_desc
));
1088 np
->last_tx
= txdesc
;
1090 /* Indicate the latest descriptor of tx ring */
1091 txdesc
->status
|= cpu_to_le32(DescIntrOnTx
);
1093 if (ioread32 (np
->base
+ TxListPtr
) == 0)
1094 iowrite32 (np
->tx_ring_dma
+ head
* sizeof(struct netdev_desc
),
1095 np
->base
+ TxListPtr
);
1099 start_tx (struct sk_buff
*skb
, struct net_device
*dev
)
1101 struct netdev_private
*np
= netdev_priv(dev
);
1102 struct netdev_desc
*txdesc
;
1105 /* Calculate the next Tx descriptor entry. */
1106 entry
= np
->cur_tx
% TX_RING_SIZE
;
1107 np
->tx_skbuff
[entry
] = skb
;
1108 txdesc
= &np
->tx_ring
[entry
];
1110 txdesc
->next_desc
= 0;
1111 txdesc
->status
= cpu_to_le32 ((entry
<< 2) | DisableAlign
);
1112 txdesc
->frag
[0].addr
= cpu_to_le32(dma_map_single(&np
->pci_dev
->dev
,
1113 skb
->data
, skb
->len
, DMA_TO_DEVICE
));
1114 if (dma_mapping_error(&np
->pci_dev
->dev
,
1115 txdesc
->frag
[0].addr
))
1117 txdesc
->frag
[0].length
= cpu_to_le32 (skb
->len
| LastFrag
);
1119 /* Increment cur_tx before tasklet_schedule() */
1122 /* Schedule a tx_poll() task */
1123 tasklet_schedule(&np
->tx_tasklet
);
1125 /* On some architectures: explicitly flush cache lines here. */
1126 if (np
->cur_tx
- np
->dirty_tx
< TX_QUEUE_LEN
- 1 &&
1127 !netif_queue_stopped(dev
)) {
1130 netif_stop_queue (dev
);
1132 if (netif_msg_tx_queued(np
)) {
1134 "%s: Transmit frame #%d queued in slot %d.\n",
1135 dev
->name
, np
->cur_tx
, entry
);
1137 return NETDEV_TX_OK
;
1140 dev_kfree_skb_any(skb
);
1141 np
->tx_skbuff
[entry
] = NULL
;
1142 dev
->stats
.tx_dropped
++;
1143 return NETDEV_TX_OK
;
1146 /* Reset hardware tx and free all of tx buffers */
1148 reset_tx (struct net_device
*dev
)
1150 struct netdev_private
*np
= netdev_priv(dev
);
1151 void __iomem
*ioaddr
= np
->base
;
1152 struct sk_buff
*skb
;
1155 /* Reset tx logic, TxListPtr will be cleaned */
1156 iowrite16 (TxDisable
, ioaddr
+ MACCtrl1
);
1157 sundance_reset(dev
, (NetworkReset
|FIFOReset
|DMAReset
|TxReset
) << 16);
1159 /* free all tx skbuff */
1160 for (i
= 0; i
< TX_RING_SIZE
; i
++) {
1161 np
->tx_ring
[i
].next_desc
= 0;
1163 skb
= np
->tx_skbuff
[i
];
1165 dma_unmap_single(&np
->pci_dev
->dev
,
1166 le32_to_cpu(np
->tx_ring
[i
].frag
[0].addr
),
1167 skb
->len
, DMA_TO_DEVICE
);
1168 dev_kfree_skb_any(skb
);
1169 np
->tx_skbuff
[i
] = NULL
;
1170 dev
->stats
.tx_dropped
++;
1173 np
->cur_tx
= np
->dirty_tx
= 0;
1177 iowrite8(127, ioaddr
+ TxDMAPollPeriod
);
1179 iowrite16 (StatsEnable
| RxEnable
| TxEnable
, ioaddr
+ MACCtrl1
);
1183 /* The interrupt handler cleans up after the Tx thread,
1184 and schedule a Rx thread work */
1185 static irqreturn_t
intr_handler(int irq
, void *dev_instance
)
1187 struct net_device
*dev
= (struct net_device
*)dev_instance
;
1188 struct netdev_private
*np
= netdev_priv(dev
);
1189 void __iomem
*ioaddr
= np
->base
;
1198 int intr_status
= ioread16(ioaddr
+ IntrStatus
);
1199 iowrite16(intr_status
, ioaddr
+ IntrStatus
);
1201 if (netif_msg_intr(np
))
1202 printk(KERN_DEBUG
"%s: Interrupt, status %4.4x.\n",
1203 dev
->name
, intr_status
);
1205 if (!(intr_status
& DEFAULT_INTR
))
1210 if (intr_status
& (IntrRxDMADone
)) {
1211 iowrite16(DEFAULT_INTR
& ~(IntrRxDone
|IntrRxDMADone
),
1212 ioaddr
+ IntrEnable
);
1214 np
->budget
= RX_BUDGET
;
1215 tasklet_schedule(&np
->rx_tasklet
);
1217 if (intr_status
& (IntrTxDone
| IntrDrvRqst
)) {
1218 tx_status
= ioread16 (ioaddr
+ TxStatus
);
1219 for (tx_cnt
=32; tx_status
& 0x80; --tx_cnt
) {
1220 if (netif_msg_tx_done(np
))
1222 ("%s: Transmit status is %2.2x.\n",
1223 dev
->name
, tx_status
);
1224 if (tx_status
& 0x1e) {
1225 if (netif_msg_tx_err(np
))
1226 printk("%s: Transmit error status %4.4x.\n",
1227 dev
->name
, tx_status
);
1228 dev
->stats
.tx_errors
++;
1229 if (tx_status
& 0x10)
1230 dev
->stats
.tx_fifo_errors
++;
1231 if (tx_status
& 0x08)
1232 dev
->stats
.collisions
++;
1233 if (tx_status
& 0x04)
1234 dev
->stats
.tx_fifo_errors
++;
1235 if (tx_status
& 0x02)
1236 dev
->stats
.tx_window_errors
++;
1239 ** This reset has been verified on
1240 ** DFE-580TX boards ! phdm@macqel.be.
1242 if (tx_status
& 0x10) { /* TxUnderrun */
1243 /* Restart Tx FIFO and transmitter */
1244 sundance_reset(dev
, (NetworkReset
|FIFOReset
|TxReset
) << 16);
1245 /* No need to reset the Tx pointer here */
1247 /* Restart the Tx. Need to make sure tx enabled */
1250 iowrite16(ioread16(ioaddr
+ MACCtrl1
) | TxEnable
, ioaddr
+ MACCtrl1
);
1251 if (ioread16(ioaddr
+ MACCtrl1
) & TxEnabled
)
1256 /* Yup, this is a documentation bug. It cost me *hours*. */
1257 iowrite16 (0, ioaddr
+ TxStatus
);
1259 iowrite32(5000, ioaddr
+ DownCounter
);
1262 tx_status
= ioread16 (ioaddr
+ TxStatus
);
1264 hw_frame_id
= (tx_status
>> 8) & 0xff;
1266 hw_frame_id
= ioread8(ioaddr
+ TxFrameId
);
1269 if (np
->pci_dev
->revision
>= 0x14) {
1270 spin_lock(&np
->lock
);
1271 for (; np
->cur_tx
- np
->dirty_tx
> 0; np
->dirty_tx
++) {
1272 int entry
= np
->dirty_tx
% TX_RING_SIZE
;
1273 struct sk_buff
*skb
;
1275 sw_frame_id
= (le32_to_cpu(
1276 np
->tx_ring
[entry
].status
) >> 2) & 0xff;
1277 if (sw_frame_id
== hw_frame_id
&&
1278 !(le32_to_cpu(np
->tx_ring
[entry
].status
)
1281 if (sw_frame_id
== (hw_frame_id
+ 1) %
1284 skb
= np
->tx_skbuff
[entry
];
1285 /* Free the original skb. */
1286 dma_unmap_single(&np
->pci_dev
->dev
,
1287 le32_to_cpu(np
->tx_ring
[entry
].frag
[0].addr
),
1288 skb
->len
, DMA_TO_DEVICE
);
1289 dev_kfree_skb_irq (np
->tx_skbuff
[entry
]);
1290 np
->tx_skbuff
[entry
] = NULL
;
1291 np
->tx_ring
[entry
].frag
[0].addr
= 0;
1292 np
->tx_ring
[entry
].frag
[0].length
= 0;
1294 spin_unlock(&np
->lock
);
1296 spin_lock(&np
->lock
);
1297 for (; np
->cur_tx
- np
->dirty_tx
> 0; np
->dirty_tx
++) {
1298 int entry
= np
->dirty_tx
% TX_RING_SIZE
;
1299 struct sk_buff
*skb
;
1300 if (!(le32_to_cpu(np
->tx_ring
[entry
].status
)
1303 skb
= np
->tx_skbuff
[entry
];
1304 /* Free the original skb. */
1305 dma_unmap_single(&np
->pci_dev
->dev
,
1306 le32_to_cpu(np
->tx_ring
[entry
].frag
[0].addr
),
1307 skb
->len
, DMA_TO_DEVICE
);
1308 dev_kfree_skb_irq (np
->tx_skbuff
[entry
]);
1309 np
->tx_skbuff
[entry
] = NULL
;
1310 np
->tx_ring
[entry
].frag
[0].addr
= 0;
1311 np
->tx_ring
[entry
].frag
[0].length
= 0;
1313 spin_unlock(&np
->lock
);
1316 if (netif_queue_stopped(dev
) &&
1317 np
->cur_tx
- np
->dirty_tx
< TX_QUEUE_LEN
- 4) {
1318 /* The ring is no longer full, clear busy flag. */
1319 netif_wake_queue (dev
);
1321 /* Abnormal error summary/uncommon events handlers. */
1322 if (intr_status
& (IntrPCIErr
| LinkChange
| StatsMax
))
1323 netdev_error(dev
, intr_status
);
1325 if (netif_msg_intr(np
))
1326 printk(KERN_DEBUG
"%s: exiting interrupt, status=%#4.4x.\n",
1327 dev
->name
, ioread16(ioaddr
+ IntrStatus
));
1328 return IRQ_RETVAL(handled
);
1331 static void rx_poll(unsigned long data
)
1333 struct net_device
*dev
= (struct net_device
*)data
;
1334 struct netdev_private
*np
= netdev_priv(dev
);
1335 int entry
= np
->cur_rx
% RX_RING_SIZE
;
1336 int boguscnt
= np
->budget
;
1337 void __iomem
*ioaddr
= np
->base
;
1340 /* If EOP is set on the next entry, it's a new packet. Send it up. */
1342 struct netdev_desc
*desc
= &(np
->rx_ring
[entry
]);
1343 u32 frame_status
= le32_to_cpu(desc
->status
);
1346 if (--boguscnt
< 0) {
1349 if (!(frame_status
& DescOwn
))
1351 pkt_len
= frame_status
& 0x1fff; /* Chip omits the CRC. */
1352 if (netif_msg_rx_status(np
))
1353 printk(KERN_DEBUG
" netdev_rx() status was %8.8x.\n",
1355 if (frame_status
& 0x001f4000) {
1356 /* There was a error. */
1357 if (netif_msg_rx_err(np
))
1358 printk(KERN_DEBUG
" netdev_rx() Rx error was %8.8x.\n",
1360 dev
->stats
.rx_errors
++;
1361 if (frame_status
& 0x00100000)
1362 dev
->stats
.rx_length_errors
++;
1363 if (frame_status
& 0x00010000)
1364 dev
->stats
.rx_fifo_errors
++;
1365 if (frame_status
& 0x00060000)
1366 dev
->stats
.rx_frame_errors
++;
1367 if (frame_status
& 0x00080000)
1368 dev
->stats
.rx_crc_errors
++;
1369 if (frame_status
& 0x00100000) {
1370 printk(KERN_WARNING
"%s: Oversized Ethernet frame,"
1372 dev
->name
, frame_status
);
1375 struct sk_buff
*skb
;
1376 #ifndef final_version
1377 if (netif_msg_rx_status(np
))
1378 printk(KERN_DEBUG
" netdev_rx() normal Rx pkt length %d"
1379 ", bogus_cnt %d.\n",
1382 /* Check if the packet is long enough to accept without copying
1383 to a minimally-sized skbuff. */
1384 if (pkt_len
< rx_copybreak
&&
1385 (skb
= netdev_alloc_skb(dev
, pkt_len
+ 2)) != NULL
) {
1386 skb_reserve(skb
, 2); /* 16 byte align the IP header */
1387 dma_sync_single_for_cpu(&np
->pci_dev
->dev
,
1388 le32_to_cpu(desc
->frag
[0].addr
),
1389 np
->rx_buf_sz
, DMA_FROM_DEVICE
);
1390 skb_copy_to_linear_data(skb
, np
->rx_skbuff
[entry
]->data
, pkt_len
);
1391 dma_sync_single_for_device(&np
->pci_dev
->dev
,
1392 le32_to_cpu(desc
->frag
[0].addr
),
1393 np
->rx_buf_sz
, DMA_FROM_DEVICE
);
1394 skb_put(skb
, pkt_len
);
1396 dma_unmap_single(&np
->pci_dev
->dev
,
1397 le32_to_cpu(desc
->frag
[0].addr
),
1398 np
->rx_buf_sz
, DMA_FROM_DEVICE
);
1399 skb_put(skb
= np
->rx_skbuff
[entry
], pkt_len
);
1400 np
->rx_skbuff
[entry
] = NULL
;
1402 skb
->protocol
= eth_type_trans(skb
, dev
);
1403 /* Note: checksum -> skb->ip_summed = CHECKSUM_UNNECESSARY; */
1406 entry
= (entry
+ 1) % RX_RING_SIZE
;
1411 np
->budget
-= received
;
1412 iowrite16(DEFAULT_INTR
, ioaddr
+ IntrEnable
);
1420 np
->budget
-= received
;
1421 if (np
->budget
<= 0)
1422 np
->budget
= RX_BUDGET
;
1423 tasklet_schedule(&np
->rx_tasklet
);
1426 static void refill_rx (struct net_device
*dev
)
1428 struct netdev_private
*np
= netdev_priv(dev
);
1432 /* Refill the Rx ring buffers. */
1433 for (;(np
->cur_rx
- np
->dirty_rx
+ RX_RING_SIZE
) % RX_RING_SIZE
> 0;
1434 np
->dirty_rx
= (np
->dirty_rx
+ 1) % RX_RING_SIZE
) {
1435 struct sk_buff
*skb
;
1436 entry
= np
->dirty_rx
% RX_RING_SIZE
;
1437 if (np
->rx_skbuff
[entry
] == NULL
) {
1438 skb
= netdev_alloc_skb(dev
, np
->rx_buf_sz
+ 2);
1439 np
->rx_skbuff
[entry
] = skb
;
1441 break; /* Better luck next round. */
1442 skb_reserve(skb
, 2); /* Align IP on 16 byte boundaries */
1443 np
->rx_ring
[entry
].frag
[0].addr
= cpu_to_le32(
1444 dma_map_single(&np
->pci_dev
->dev
, skb
->data
,
1445 np
->rx_buf_sz
, DMA_FROM_DEVICE
));
1446 if (dma_mapping_error(&np
->pci_dev
->dev
,
1447 np
->rx_ring
[entry
].frag
[0].addr
)) {
1448 dev_kfree_skb_irq(skb
);
1449 np
->rx_skbuff
[entry
] = NULL
;
1453 /* Perhaps we need not reset this field. */
1454 np
->rx_ring
[entry
].frag
[0].length
=
1455 cpu_to_le32(np
->rx_buf_sz
| LastFrag
);
1456 np
->rx_ring
[entry
].status
= 0;
1460 static void netdev_error(struct net_device
*dev
, int intr_status
)
1462 struct netdev_private
*np
= netdev_priv(dev
);
1463 void __iomem
*ioaddr
= np
->base
;
1464 u16 mii_ctl
, mii_advertise
, mii_lpa
;
1467 if (intr_status
& LinkChange
) {
1468 if (mdio_wait_link(dev
, 10) == 0) {
1469 printk(KERN_INFO
"%s: Link up\n", dev
->name
);
1470 if (np
->an_enable
) {
1471 mii_advertise
= mdio_read(dev
, np
->phys
[0],
1473 mii_lpa
= mdio_read(dev
, np
->phys
[0], MII_LPA
);
1474 mii_advertise
&= mii_lpa
;
1475 printk(KERN_INFO
"%s: Link changed: ",
1477 if (mii_advertise
& ADVERTISE_100FULL
) {
1479 printk("100Mbps, full duplex\n");
1480 } else if (mii_advertise
& ADVERTISE_100HALF
) {
1482 printk("100Mbps, half duplex\n");
1483 } else if (mii_advertise
& ADVERTISE_10FULL
) {
1485 printk("10Mbps, full duplex\n");
1486 } else if (mii_advertise
& ADVERTISE_10HALF
) {
1488 printk("10Mbps, half duplex\n");
1493 mii_ctl
= mdio_read(dev
, np
->phys
[0], MII_BMCR
);
1494 speed
= (mii_ctl
& BMCR_SPEED100
) ? 100 : 10;
1496 printk(KERN_INFO
"%s: Link changed: %dMbps ,",
1498 printk("%s duplex.\n",
1499 (mii_ctl
& BMCR_FULLDPLX
) ?
1503 if (np
->flowctrl
&& np
->mii_if
.full_duplex
) {
1504 iowrite16(ioread16(ioaddr
+ MulticastFilter1
+2) | 0x0200,
1505 ioaddr
+ MulticastFilter1
+2);
1506 iowrite16(ioread16(ioaddr
+ MACCtrl0
) | EnbFlowCtrl
,
1509 netif_carrier_on(dev
);
1511 printk(KERN_INFO
"%s: Link down\n", dev
->name
);
1512 netif_carrier_off(dev
);
1515 if (intr_status
& StatsMax
) {
1518 if (intr_status
& IntrPCIErr
) {
1519 printk(KERN_ERR
"%s: Something Wicked happened! %4.4x.\n",
1520 dev
->name
, intr_status
);
1521 /* We must do a global reset of DMA to continue. */
1525 static struct net_device_stats
*get_stats(struct net_device
*dev
)
1527 struct netdev_private
*np
= netdev_priv(dev
);
1528 void __iomem
*ioaddr
= np
->base
;
1529 unsigned long flags
;
1530 u8 late_coll
, single_coll
, mult_coll
;
1532 spin_lock_irqsave(&np
->statlock
, flags
);
1533 /* The chip only need report frame silently dropped. */
1534 dev
->stats
.rx_missed_errors
+= ioread8(ioaddr
+ RxMissed
);
1535 dev
->stats
.tx_packets
+= ioread16(ioaddr
+ TxFramesOK
);
1536 dev
->stats
.rx_packets
+= ioread16(ioaddr
+ RxFramesOK
);
1537 dev
->stats
.tx_carrier_errors
+= ioread8(ioaddr
+ StatsCarrierError
);
1539 mult_coll
= ioread8(ioaddr
+ StatsMultiColl
);
1540 np
->xstats
.tx_multiple_collisions
+= mult_coll
;
1541 single_coll
= ioread8(ioaddr
+ StatsOneColl
);
1542 np
->xstats
.tx_single_collisions
+= single_coll
;
1543 late_coll
= ioread8(ioaddr
+ StatsLateColl
);
1544 np
->xstats
.tx_late_collisions
+= late_coll
;
1545 dev
->stats
.collisions
+= mult_coll
1549 np
->xstats
.tx_deferred
+= ioread8(ioaddr
+ StatsTxDefer
);
1550 np
->xstats
.tx_deferred_excessive
+= ioread8(ioaddr
+ StatsTxXSDefer
);
1551 np
->xstats
.tx_aborted
+= ioread8(ioaddr
+ StatsTxAbort
);
1552 np
->xstats
.tx_bcasts
+= ioread8(ioaddr
+ StatsBcastTx
);
1553 np
->xstats
.rx_bcasts
+= ioread8(ioaddr
+ StatsBcastRx
);
1554 np
->xstats
.tx_mcasts
+= ioread8(ioaddr
+ StatsMcastTx
);
1555 np
->xstats
.rx_mcasts
+= ioread8(ioaddr
+ StatsMcastRx
);
1557 dev
->stats
.tx_bytes
+= ioread16(ioaddr
+ TxOctetsLow
);
1558 dev
->stats
.tx_bytes
+= ioread16(ioaddr
+ TxOctetsHigh
) << 16;
1559 dev
->stats
.rx_bytes
+= ioread16(ioaddr
+ RxOctetsLow
);
1560 dev
->stats
.rx_bytes
+= ioread16(ioaddr
+ RxOctetsHigh
) << 16;
1562 spin_unlock_irqrestore(&np
->statlock
, flags
);
1567 static void set_rx_mode(struct net_device
*dev
)
1569 struct netdev_private
*np
= netdev_priv(dev
);
1570 void __iomem
*ioaddr
= np
->base
;
1571 u16 mc_filter
[4]; /* Multicast hash filter */
1575 if (dev
->flags
& IFF_PROMISC
) { /* Set promiscuous. */
1576 memset(mc_filter
, 0xff, sizeof(mc_filter
));
1577 rx_mode
= AcceptBroadcast
| AcceptMulticast
| AcceptAll
| AcceptMyPhys
;
1578 } else if ((netdev_mc_count(dev
) > multicast_filter_limit
) ||
1579 (dev
->flags
& IFF_ALLMULTI
)) {
1580 /* Too many to match, or accept all multicasts. */
1581 memset(mc_filter
, 0xff, sizeof(mc_filter
));
1582 rx_mode
= AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
;
1583 } else if (!netdev_mc_empty(dev
)) {
1584 struct netdev_hw_addr
*ha
;
1588 memset (mc_filter
, 0, sizeof (mc_filter
));
1589 netdev_for_each_mc_addr(ha
, dev
) {
1590 crc
= ether_crc_le(ETH_ALEN
, ha
->addr
);
1591 for (index
=0, bit
=0; bit
< 6; bit
++, crc
<<= 1)
1592 if (crc
& 0x80000000) index
|= 1 << bit
;
1593 mc_filter
[index
/16] |= (1 << (index
% 16));
1595 rx_mode
= AcceptBroadcast
| AcceptMultiHash
| AcceptMyPhys
;
1597 iowrite8(AcceptBroadcast
| AcceptMyPhys
, ioaddr
+ RxMode
);
1600 if (np
->mii_if
.full_duplex
&& np
->flowctrl
)
1601 mc_filter
[3] |= 0x0200;
1603 for (i
= 0; i
< 4; i
++)
1604 iowrite16(mc_filter
[i
], ioaddr
+ MulticastFilter0
+ i
*2);
1605 iowrite8(rx_mode
, ioaddr
+ RxMode
);
1608 static int __set_mac_addr(struct net_device
*dev
)
1610 struct netdev_private
*np
= netdev_priv(dev
);
1613 addr16
= (dev
->dev_addr
[0] | (dev
->dev_addr
[1] << 8));
1614 iowrite16(addr16
, np
->base
+ StationAddr
);
1615 addr16
= (dev
->dev_addr
[2] | (dev
->dev_addr
[3] << 8));
1616 iowrite16(addr16
, np
->base
+ StationAddr
+2);
1617 addr16
= (dev
->dev_addr
[4] | (dev
->dev_addr
[5] << 8));
1618 iowrite16(addr16
, np
->base
+ StationAddr
+4);
1622 /* Invoked with rtnl_lock held */
1623 static int sundance_set_mac_addr(struct net_device
*dev
, void *data
)
1625 const struct sockaddr
*addr
= data
;
1627 if (!is_valid_ether_addr(addr
->sa_data
))
1628 return -EADDRNOTAVAIL
;
1629 memcpy(dev
->dev_addr
, addr
->sa_data
, ETH_ALEN
);
1630 __set_mac_addr(dev
);
1635 static const struct {
1636 const char name
[ETH_GSTRING_LEN
];
1637 } sundance_stats
[] = {
1638 { "tx_multiple_collisions" },
1639 { "tx_single_collisions" },
1640 { "tx_late_collisions" },
1642 { "tx_deferred_excessive" },
1650 static int check_if_running(struct net_device
*dev
)
1652 if (!netif_running(dev
))
1657 static void get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
1659 struct netdev_private
*np
= netdev_priv(dev
);
1660 strlcpy(info
->driver
, DRV_NAME
, sizeof(info
->driver
));
1661 strlcpy(info
->version
, DRV_VERSION
, sizeof(info
->version
));
1662 strlcpy(info
->bus_info
, pci_name(np
->pci_dev
), sizeof(info
->bus_info
));
1665 static int get_settings(struct net_device
*dev
, struct ethtool_cmd
*ecmd
)
1667 struct netdev_private
*np
= netdev_priv(dev
);
1668 spin_lock_irq(&np
->lock
);
1669 mii_ethtool_gset(&np
->mii_if
, ecmd
);
1670 spin_unlock_irq(&np
->lock
);
1674 static int set_settings(struct net_device
*dev
, struct ethtool_cmd
*ecmd
)
1676 struct netdev_private
*np
= netdev_priv(dev
);
1678 spin_lock_irq(&np
->lock
);
1679 res
= mii_ethtool_sset(&np
->mii_if
, ecmd
);
1680 spin_unlock_irq(&np
->lock
);
1684 static int nway_reset(struct net_device
*dev
)
1686 struct netdev_private
*np
= netdev_priv(dev
);
1687 return mii_nway_restart(&np
->mii_if
);
1690 static u32
get_link(struct net_device
*dev
)
1692 struct netdev_private
*np
= netdev_priv(dev
);
1693 return mii_link_ok(&np
->mii_if
);
1696 static u32
get_msglevel(struct net_device
*dev
)
1698 struct netdev_private
*np
= netdev_priv(dev
);
1699 return np
->msg_enable
;
1702 static void set_msglevel(struct net_device
*dev
, u32 val
)
1704 struct netdev_private
*np
= netdev_priv(dev
);
1705 np
->msg_enable
= val
;
1708 static void get_strings(struct net_device
*dev
, u32 stringset
,
1711 if (stringset
== ETH_SS_STATS
)
1712 memcpy(data
, sundance_stats
, sizeof(sundance_stats
));
1715 static int get_sset_count(struct net_device
*dev
, int sset
)
1719 return ARRAY_SIZE(sundance_stats
);
1725 static void get_ethtool_stats(struct net_device
*dev
,
1726 struct ethtool_stats
*stats
, u64
*data
)
1728 struct netdev_private
*np
= netdev_priv(dev
);
1732 data
[i
++] = np
->xstats
.tx_multiple_collisions
;
1733 data
[i
++] = np
->xstats
.tx_single_collisions
;
1734 data
[i
++] = np
->xstats
.tx_late_collisions
;
1735 data
[i
++] = np
->xstats
.tx_deferred
;
1736 data
[i
++] = np
->xstats
.tx_deferred_excessive
;
1737 data
[i
++] = np
->xstats
.tx_aborted
;
1738 data
[i
++] = np
->xstats
.tx_bcasts
;
1739 data
[i
++] = np
->xstats
.rx_bcasts
;
1740 data
[i
++] = np
->xstats
.tx_mcasts
;
1741 data
[i
++] = np
->xstats
.rx_mcasts
;
1746 static void sundance_get_wol(struct net_device
*dev
,
1747 struct ethtool_wolinfo
*wol
)
1749 struct netdev_private
*np
= netdev_priv(dev
);
1750 void __iomem
*ioaddr
= np
->base
;
1755 wol
->supported
= (WAKE_PHY
| WAKE_MAGIC
);
1756 if (!np
->wol_enabled
)
1759 wol_bits
= ioread8(ioaddr
+ WakeEvent
);
1760 if (wol_bits
& MagicPktEnable
)
1761 wol
->wolopts
|= WAKE_MAGIC
;
1762 if (wol_bits
& LinkEventEnable
)
1763 wol
->wolopts
|= WAKE_PHY
;
1766 static int sundance_set_wol(struct net_device
*dev
,
1767 struct ethtool_wolinfo
*wol
)
1769 struct netdev_private
*np
= netdev_priv(dev
);
1770 void __iomem
*ioaddr
= np
->base
;
1773 if (!device_can_wakeup(&np
->pci_dev
->dev
))
1776 np
->wol_enabled
= !!(wol
->wolopts
);
1777 wol_bits
= ioread8(ioaddr
+ WakeEvent
);
1778 wol_bits
&= ~(WakePktEnable
| MagicPktEnable
|
1779 LinkEventEnable
| WolEnable
);
1781 if (np
->wol_enabled
) {
1782 if (wol
->wolopts
& WAKE_MAGIC
)
1783 wol_bits
|= (MagicPktEnable
| WolEnable
);
1784 if (wol
->wolopts
& WAKE_PHY
)
1785 wol_bits
|= (LinkEventEnable
| WolEnable
);
1787 iowrite8(wol_bits
, ioaddr
+ WakeEvent
);
1789 device_set_wakeup_enable(&np
->pci_dev
->dev
, np
->wol_enabled
);
1794 #define sundance_get_wol NULL
1795 #define sundance_set_wol NULL
1796 #endif /* CONFIG_PM */
1798 static const struct ethtool_ops ethtool_ops
= {
1799 .begin
= check_if_running
,
1800 .get_drvinfo
= get_drvinfo
,
1801 .get_settings
= get_settings
,
1802 .set_settings
= set_settings
,
1803 .nway_reset
= nway_reset
,
1804 .get_link
= get_link
,
1805 .get_wol
= sundance_get_wol
,
1806 .set_wol
= sundance_set_wol
,
1807 .get_msglevel
= get_msglevel
,
1808 .set_msglevel
= set_msglevel
,
1809 .get_strings
= get_strings
,
1810 .get_sset_count
= get_sset_count
,
1811 .get_ethtool_stats
= get_ethtool_stats
,
1814 static int netdev_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
1816 struct netdev_private
*np
= netdev_priv(dev
);
1819 if (!netif_running(dev
))
1822 spin_lock_irq(&np
->lock
);
1823 rc
= generic_mii_ioctl(&np
->mii_if
, if_mii(rq
), cmd
, NULL
);
1824 spin_unlock_irq(&np
->lock
);
1829 static int netdev_close(struct net_device
*dev
)
1831 struct netdev_private
*np
= netdev_priv(dev
);
1832 void __iomem
*ioaddr
= np
->base
;
1833 struct sk_buff
*skb
;
1836 /* Wait and kill tasklet */
1837 tasklet_kill(&np
->rx_tasklet
);
1838 tasklet_kill(&np
->tx_tasklet
);
1844 netif_stop_queue(dev
);
1846 if (netif_msg_ifdown(np
)) {
1847 printk(KERN_DEBUG
"%s: Shutting down ethercard, status was Tx %2.2x "
1848 "Rx %4.4x Int %2.2x.\n",
1849 dev
->name
, ioread8(ioaddr
+ TxStatus
),
1850 ioread32(ioaddr
+ RxStatus
), ioread16(ioaddr
+ IntrStatus
));
1851 printk(KERN_DEBUG
"%s: Queue pointers were Tx %d / %d, Rx %d / %d.\n",
1852 dev
->name
, np
->cur_tx
, np
->dirty_tx
, np
->cur_rx
, np
->dirty_rx
);
1855 /* Disable interrupts by clearing the interrupt mask. */
1856 iowrite16(0x0000, ioaddr
+ IntrEnable
);
1858 /* Disable Rx and Tx DMA for safely release resource */
1859 iowrite32(0x500, ioaddr
+ DMACtrl
);
1861 /* Stop the chip's Tx and Rx processes. */
1862 iowrite16(TxDisable
| RxDisable
| StatsDisable
, ioaddr
+ MACCtrl1
);
1864 for (i
= 2000; i
> 0; i
--) {
1865 if ((ioread32(ioaddr
+ DMACtrl
) & 0xc000) == 0)
1870 iowrite16(GlobalReset
| DMAReset
| FIFOReset
| NetworkReset
,
1871 ioaddr
+ ASIC_HI_WORD(ASICCtrl
));
1873 for (i
= 2000; i
> 0; i
--) {
1874 if ((ioread16(ioaddr
+ ASIC_HI_WORD(ASICCtrl
)) & ResetBusy
) == 0)
1880 if (netif_msg_hw(np
)) {
1881 printk(KERN_DEBUG
" Tx ring at %8.8x:\n",
1882 (int)(np
->tx_ring_dma
));
1883 for (i
= 0; i
< TX_RING_SIZE
; i
++)
1884 printk(KERN_DEBUG
" #%d desc. %4.4x %8.8x %8.8x.\n",
1885 i
, np
->tx_ring
[i
].status
, np
->tx_ring
[i
].frag
[0].addr
,
1886 np
->tx_ring
[i
].frag
[0].length
);
1887 printk(KERN_DEBUG
" Rx ring %8.8x:\n",
1888 (int)(np
->rx_ring_dma
));
1889 for (i
= 0; i
< /*RX_RING_SIZE*/4 ; i
++) {
1890 printk(KERN_DEBUG
" #%d desc. %4.4x %4.4x %8.8x\n",
1891 i
, np
->rx_ring
[i
].status
, np
->rx_ring
[i
].frag
[0].addr
,
1892 np
->rx_ring
[i
].frag
[0].length
);
1895 #endif /* __i386__ debugging only */
1897 free_irq(np
->pci_dev
->irq
, dev
);
1899 del_timer_sync(&np
->timer
);
1901 /* Free all the skbuffs in the Rx queue. */
1902 for (i
= 0; i
< RX_RING_SIZE
; i
++) {
1903 np
->rx_ring
[i
].status
= 0;
1904 skb
= np
->rx_skbuff
[i
];
1906 dma_unmap_single(&np
->pci_dev
->dev
,
1907 le32_to_cpu(np
->rx_ring
[i
].frag
[0].addr
),
1908 np
->rx_buf_sz
, DMA_FROM_DEVICE
);
1910 np
->rx_skbuff
[i
] = NULL
;
1912 np
->rx_ring
[i
].frag
[0].addr
= cpu_to_le32(0xBADF00D0); /* poison */
1914 for (i
= 0; i
< TX_RING_SIZE
; i
++) {
1915 np
->tx_ring
[i
].next_desc
= 0;
1916 skb
= np
->tx_skbuff
[i
];
1918 dma_unmap_single(&np
->pci_dev
->dev
,
1919 le32_to_cpu(np
->tx_ring
[i
].frag
[0].addr
),
1920 skb
->len
, DMA_TO_DEVICE
);
1922 np
->tx_skbuff
[i
] = NULL
;
1929 static void sundance_remove1(struct pci_dev
*pdev
)
1931 struct net_device
*dev
= pci_get_drvdata(pdev
);
1934 struct netdev_private
*np
= netdev_priv(dev
);
1935 unregister_netdev(dev
);
1936 dma_free_coherent(&pdev
->dev
, RX_TOTAL_SIZE
,
1937 np
->rx_ring
, np
->rx_ring_dma
);
1938 dma_free_coherent(&pdev
->dev
, TX_TOTAL_SIZE
,
1939 np
->tx_ring
, np
->tx_ring_dma
);
1940 pci_iounmap(pdev
, np
->base
);
1941 pci_release_regions(pdev
);
1948 static int sundance_suspend(struct pci_dev
*pci_dev
, pm_message_t state
)
1950 struct net_device
*dev
= pci_get_drvdata(pci_dev
);
1951 struct netdev_private
*np
= netdev_priv(dev
);
1952 void __iomem
*ioaddr
= np
->base
;
1954 if (!netif_running(dev
))
1958 netif_device_detach(dev
);
1960 pci_save_state(pci_dev
);
1961 if (np
->wol_enabled
) {
1962 iowrite8(AcceptBroadcast
| AcceptMyPhys
, ioaddr
+ RxMode
);
1963 iowrite16(RxEnable
, ioaddr
+ MACCtrl1
);
1965 pci_enable_wake(pci_dev
, pci_choose_state(pci_dev
, state
),
1967 pci_set_power_state(pci_dev
, pci_choose_state(pci_dev
, state
));
1972 static int sundance_resume(struct pci_dev
*pci_dev
)
1974 struct net_device
*dev
= pci_get_drvdata(pci_dev
);
1977 if (!netif_running(dev
))
1980 pci_set_power_state(pci_dev
, PCI_D0
);
1981 pci_restore_state(pci_dev
);
1982 pci_enable_wake(pci_dev
, PCI_D0
, 0);
1984 err
= netdev_open(dev
);
1986 printk(KERN_ERR
"%s: Can't resume interface!\n",
1991 netif_device_attach(dev
);
1997 #endif /* CONFIG_PM */
1999 static struct pci_driver sundance_driver
= {
2001 .id_table
= sundance_pci_tbl
,
2002 .probe
= sundance_probe1
,
2003 .remove
= sundance_remove1
,
2005 .suspend
= sundance_suspend
,
2006 .resume
= sundance_resume
,
2007 #endif /* CONFIG_PM */
2010 static int __init
sundance_init(void)
2012 /* when a module, this is printed whether or not devices are found in probe */
2016 return pci_register_driver(&sundance_driver
);
2019 static void __exit
sundance_exit(void)
2021 pci_unregister_driver(&sundance_driver
);
2024 module_init(sundance_init
);
2025 module_exit(sundance_exit
);