1 /* 8139cp.c: A Linux PCI Ethernet driver for the RealTek 8139C+ chips. */
3 Copyright 2001-2004 Jeff Garzik <jgarzik@pobox.com>
5 Copyright (C) 2001, 2002 David S. Miller (davem@redhat.com) [tg3.c]
6 Copyright (C) 2000, 2001 David S. Miller (davem@redhat.com) [sungem.c]
7 Copyright 2001 Manfred Spraul [natsemi.c]
8 Copyright 1999-2001 by Donald Becker. [natsemi.c]
9 Written 1997-2001 by Donald Becker. [8139too.c]
10 Copyright 1998-2001 by Jes Sorensen, <jes@trained-monkey.org>. [acenic.c]
12 This software may be used and distributed according to the terms of
13 the GNU General Public License (GPL), incorporated herein by reference.
14 Drivers based on or derived from this code fall under the GPL and must
15 retain the authorship, copyright and license notice. This file is not
16 a complete program and may only be used when the entire operating
17 system is licensed under the GPL.
19 See the file COPYING in this distribution for more information.
23 Wake-on-LAN support - Felipe Damasio <felipewd@terra.com.br>
24 PCI suspend/resume - Felipe Damasio <felipewd@terra.com.br>
25 LinkChg interrupt - Felipe Damasio <felipewd@terra.com.br>
28 * Test Tx checksumming thoroughly
29 * Implement dev->tx_timeout
32 * Complete reset on PciErr
33 * Consider Rx interrupt mitigation using TimerIntr
34 * Investigate using skb->priority with h/w VLAN priority
35 * Investigate using High Priority Tx Queue with skb->priority
36 * Adjust Rx FIFO threshold and Max Rx DMA burst on Rx FIFO error
37 * Adjust Tx FIFO threshold and Max Tx DMA burst on Tx FIFO error
38 * Implement Tx software interrupt mitigation via
40 * The real minimum of CP_MIN_MTU is 4 bytes. However,
41 for this to be supported, one must(?) turn on packet padding.
42 * Support external MII transceivers (patch available)
45 * TX checksumming is considered experimental. It is off by
46 default, use ethtool to turn it on.
50 #define DRV_NAME "8139cp"
51 #define DRV_VERSION "1.2"
52 #define DRV_RELDATE "Mar 22, 2004"
55 #include <linux/config.h>
56 #include <linux/module.h>
57 #include <linux/kernel.h>
58 #include <linux/compiler.h>
59 #include <linux/netdevice.h>
60 #include <linux/etherdevice.h>
61 #include <linux/init.h>
62 #include <linux/pci.h>
63 #include <linux/delay.h>
64 #include <linux/ethtool.h>
65 #include <linux/mii.h>
66 #include <linux/if_vlan.h>
67 #include <linux/crc32.h>
70 #include <linux/tcp.h>
71 #include <linux/udp.h>
72 #include <linux/cache.h>
74 #include <asm/uaccess.h>
76 /* VLAN tagging feature enable/disable */
77 #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
78 #define CP_VLAN_TAG_USED 1
79 #define CP_VLAN_TX_TAG(tx_desc,vlan_tag_value) \
80 do { (tx_desc)->opts2 = (vlan_tag_value); } while (0)
82 #define CP_VLAN_TAG_USED 0
83 #define CP_VLAN_TX_TAG(tx_desc,vlan_tag_value) \
84 do { (tx_desc)->opts2 = 0; } while (0)
87 /* These identify the driver base version and may not be removed. */
88 static char version
[] =
89 KERN_INFO DRV_NAME
": 10/100 PCI Ethernet driver v" DRV_VERSION
" (" DRV_RELDATE
")\n";
91 MODULE_AUTHOR("Jeff Garzik <jgarzik@pobox.com>");
92 MODULE_DESCRIPTION("RealTek RTL-8139C+ series 10/100 PCI Ethernet driver");
93 MODULE_LICENSE("GPL");
95 static int debug
= -1;
96 MODULE_PARM (debug
, "i");
97 MODULE_PARM_DESC (debug
, "8139cp: bitmapped message enable number");
99 /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
100 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
101 static int multicast_filter_limit
= 32;
102 MODULE_PARM (multicast_filter_limit
, "i");
103 MODULE_PARM_DESC (multicast_filter_limit
, "8139cp: maximum number of filtered multicast addresses");
105 #define PFX DRV_NAME ": "
109 #define TRUE (!FALSE)
112 #define CP_DEF_MSG_ENABLE (NETIF_MSG_DRV | \
115 #define CP_NUM_STATS 14 /* struct cp_dma_stats, plus one */
116 #define CP_STATS_SIZE 64 /* size in bytes of DMA stats block */
117 #define CP_REGS_SIZE (0xff + 1)
118 #define CP_REGS_VER 1 /* version 1 */
119 #define CP_RX_RING_SIZE 64
120 #define CP_TX_RING_SIZE 64
121 #define CP_RING_BYTES \
122 ((sizeof(struct cp_desc) * CP_RX_RING_SIZE) + \
123 (sizeof(struct cp_desc) * CP_TX_RING_SIZE) + \
125 #define NEXT_TX(N) (((N) + 1) & (CP_TX_RING_SIZE - 1))
126 #define NEXT_RX(N) (((N) + 1) & (CP_RX_RING_SIZE - 1))
127 #define TX_BUFFS_AVAIL(CP) \
128 (((CP)->tx_tail <= (CP)->tx_head) ? \
129 (CP)->tx_tail + (CP_TX_RING_SIZE - 1) - (CP)->tx_head : \
130 (CP)->tx_tail - (CP)->tx_head - 1)
132 #define PKT_BUF_SZ 1536 /* Size of each temporary Rx buffer.*/
134 #define CP_INTERNAL_PHY 32
136 /* The following settings are log_2(bytes)-4: 0 == 16 bytes .. 6==1024, 7==end of packet. */
137 #define RX_FIFO_THRESH 5 /* Rx buffer level before first PCI xfer. */
138 #define RX_DMA_BURST 4 /* Maximum PCI burst, '4' is 256 */
139 #define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
140 #define TX_EARLY_THRESH 256 /* Early Tx threshold, in bytes */
142 /* Time in jiffies before concluding the transmitter is hung. */
143 #define TX_TIMEOUT (6*HZ)
145 /* hardware minimum and maximum for a single frame's data payload */
146 #define CP_MIN_MTU 60 /* TODO: allow lower, but pad */
147 #define CP_MAX_MTU 4096
150 /* NIC register offsets */
151 MAC0
= 0x00, /* Ethernet hardware address. */
152 MAR0
= 0x08, /* Multicast filter. */
153 StatsAddr
= 0x10, /* 64-bit start addr of 64-byte DMA stats blk */
154 TxRingAddr
= 0x20, /* 64-bit start addr of Tx ring */
155 HiTxRingAddr
= 0x28, /* 64-bit start addr of high priority Tx ring */
156 Cmd
= 0x37, /* Command register */
157 IntrMask
= 0x3C, /* Interrupt mask */
158 IntrStatus
= 0x3E, /* Interrupt status */
159 TxConfig
= 0x40, /* Tx configuration */
160 ChipVersion
= 0x43, /* 8-bit chip version, inside TxConfig */
161 RxConfig
= 0x44, /* Rx configuration */
162 RxMissed
= 0x4C, /* 24 bits valid, write clears */
163 Cfg9346
= 0x50, /* EEPROM select/control; Cfg reg [un]lock */
164 Config1
= 0x52, /* Config1 */
165 Config3
= 0x59, /* Config3 */
166 Config4
= 0x5A, /* Config4 */
167 MultiIntr
= 0x5C, /* Multiple interrupt select */
168 BasicModeCtrl
= 0x62, /* MII BMCR */
169 BasicModeStatus
= 0x64, /* MII BMSR */
170 NWayAdvert
= 0x66, /* MII ADVERTISE */
171 NWayLPAR
= 0x68, /* MII LPA */
172 NWayExpansion
= 0x6A, /* MII Expansion */
173 Config5
= 0xD8, /* Config5 */
174 TxPoll
= 0xD9, /* Tell chip to check Tx descriptors for work */
175 RxMaxSize
= 0xDA, /* Max size of an Rx packet (8169 only) */
176 CpCmd
= 0xE0, /* C+ Command register (C+ mode only) */
177 IntrMitigate
= 0xE2, /* rx/tx interrupt mitigation control */
178 RxRingAddr
= 0xE4, /* 64-bit start addr of Rx ring */
179 TxThresh
= 0xEC, /* Early Tx threshold */
180 OldRxBufAddr
= 0x30, /* DMA address of Rx ring buffer (C mode) */
181 OldTSD0
= 0x10, /* DMA address of first Tx desc (C mode) */
183 /* Tx and Rx status descriptors */
184 DescOwn
= (1 << 31), /* Descriptor is owned by NIC */
185 RingEnd
= (1 << 30), /* End of descriptor ring */
186 FirstFrag
= (1 << 29), /* First segment of a packet */
187 LastFrag
= (1 << 28), /* Final segment of a packet */
188 TxError
= (1 << 23), /* Tx error summary */
189 RxError
= (1 << 20), /* Rx error summary */
190 IPCS
= (1 << 18), /* Calculate IP checksum */
191 UDPCS
= (1 << 17), /* Calculate UDP/IP checksum */
192 TCPCS
= (1 << 16), /* Calculate TCP/IP checksum */
193 TxVlanTag
= (1 << 17), /* Add VLAN tag */
194 RxVlanTagged
= (1 << 16), /* Rx VLAN tag available */
195 IPFail
= (1 << 15), /* IP checksum failed */
196 UDPFail
= (1 << 14), /* UDP/IP checksum failed */
197 TCPFail
= (1 << 13), /* TCP/IP checksum failed */
198 NormalTxPoll
= (1 << 6), /* One or more normal Tx packets to send */
199 PID1
= (1 << 17), /* 2 protocol id bits: 0==non-IP, */
200 PID0
= (1 << 16), /* 1==UDP/IP, 2==TCP/IP, 3==IP */
204 TxFIFOUnder
= (1 << 25), /* Tx FIFO underrun */
205 TxOWC
= (1 << 22), /* Tx Out-of-window collision */
206 TxLinkFail
= (1 << 21), /* Link failed during Tx of packet */
207 TxMaxCol
= (1 << 20), /* Tx aborted due to excessive collisions */
208 TxColCntShift
= 16, /* Shift, to get 4-bit Tx collision cnt */
209 TxColCntMask
= 0x01 | 0x02 | 0x04 | 0x08, /* 4-bit collision count */
210 RxErrFrame
= (1 << 27), /* Rx frame alignment error */
211 RxMcast
= (1 << 26), /* Rx multicast packet rcv'd */
212 RxErrCRC
= (1 << 18), /* Rx CRC error */
213 RxErrRunt
= (1 << 19), /* Rx error, packet < 64 bytes */
214 RxErrLong
= (1 << 21), /* Rx error, packet > 4096 bytes */
215 RxErrFIFO
= (1 << 22), /* Rx error, FIFO overflowed, pkt bad */
217 /* StatsAddr register */
218 DumpStats
= (1 << 3), /* Begin stats dump */
220 /* RxConfig register */
221 RxCfgFIFOShift
= 13, /* Shift, to get Rx FIFO thresh value */
222 RxCfgDMAShift
= 8, /* Shift, to get Rx Max DMA value */
223 AcceptErr
= 0x20, /* Accept packets with CRC errors */
224 AcceptRunt
= 0x10, /* Accept runt (<64 bytes) packets */
225 AcceptBroadcast
= 0x08, /* Accept broadcast packets */
226 AcceptMulticast
= 0x04, /* Accept multicast packets */
227 AcceptMyPhys
= 0x02, /* Accept pkts with our MAC as dest */
228 AcceptAllPhys
= 0x01, /* Accept all pkts w/ physical dest */
230 /* IntrMask / IntrStatus registers */
231 PciErr
= (1 << 15), /* System error on the PCI bus */
232 TimerIntr
= (1 << 14), /* Asserted when TCTR reaches TimerInt value */
233 LenChg
= (1 << 13), /* Cable length change */
234 SWInt
= (1 << 8), /* Software-requested interrupt */
235 TxEmpty
= (1 << 7), /* No Tx descriptors available */
236 RxFIFOOvr
= (1 << 6), /* Rx FIFO Overflow */
237 LinkChg
= (1 << 5), /* Packet underrun, or link change */
238 RxEmpty
= (1 << 4), /* No Rx descriptors available */
239 TxErr
= (1 << 3), /* Tx error */
240 TxOK
= (1 << 2), /* Tx packet sent */
241 RxErr
= (1 << 1), /* Rx error */
242 RxOK
= (1 << 0), /* Rx packet received */
243 IntrResvd
= (1 << 10), /* reserved, according to RealTek engineers,
244 but hardware likes to raise it */
246 IntrAll
= PciErr
| TimerIntr
| LenChg
| SWInt
| TxEmpty
|
247 RxFIFOOvr
| LinkChg
| RxEmpty
| TxErr
| TxOK
|
248 RxErr
| RxOK
| IntrResvd
,
250 /* C mode command register */
251 CmdReset
= (1 << 4), /* Enable to reset; self-clearing */
252 RxOn
= (1 << 3), /* Rx mode enable */
253 TxOn
= (1 << 2), /* Tx mode enable */
255 /* C+ mode command register */
256 RxVlanOn
= (1 << 6), /* Rx VLAN de-tagging enable */
257 RxChkSum
= (1 << 5), /* Rx checksum offload enable */
258 PCIDAC
= (1 << 4), /* PCI Dual Address Cycle (64-bit PCI) */
259 PCIMulRW
= (1 << 3), /* Enable PCI read/write multiple */
260 CpRxOn
= (1 << 1), /* Rx mode enable */
261 CpTxOn
= (1 << 0), /* Tx mode enable */
263 /* Cfg9436 EEPROM control register */
264 Cfg9346_Lock
= 0x00, /* Lock ConfigX/MII register access */
265 Cfg9346_Unlock
= 0xC0, /* Unlock ConfigX/MII register access */
267 /* TxConfig register */
268 IFG
= (1 << 25) | (1 << 24), /* standard IEEE interframe gap */
269 TxDMAShift
= 8, /* DMA burst value (0-7) is shift this many bits */
271 /* Early Tx Threshold register */
272 TxThreshMask
= 0x3f, /* Mask bits 5-0 */
273 TxThreshMax
= 2048, /* Max early Tx threshold */
275 /* Config1 register */
276 DriverLoaded
= (1 << 5), /* Software marker, driver is loaded */
277 LWACT
= (1 << 4), /* LWAKE active mode */
278 PMEnable
= (1 << 0), /* Enable various PM features of chip */
280 /* Config3 register */
281 PARMEnable
= (1 << 6), /* Enable auto-loading of PHY parms */
282 MagicPacket
= (1 << 5), /* Wake up when receives a Magic Packet */
283 LinkUp
= (1 << 4), /* Wake up when the cable connection is re-established */
285 /* Config4 register */
286 LWPTN
= (1 << 1), /* LWAKE Pattern */
287 LWPME
= (1 << 4), /* LANWAKE vs PMEB */
289 /* Config5 register */
290 BWF
= (1 << 6), /* Accept Broadcast wakeup frame */
291 MWF
= (1 << 5), /* Accept Multicast wakeup frame */
292 UWF
= (1 << 4), /* Accept Unicast wakeup frame */
293 LANWake
= (1 << 1), /* Enable LANWake signal */
294 PMEStatus
= (1 << 0), /* PME status can be reset by PCI RST# */
296 cp_norx_intr_mask
= PciErr
| LinkChg
| TxOK
| TxErr
| TxEmpty
,
297 cp_rx_intr_mask
= RxOK
| RxErr
| RxEmpty
| RxFIFOOvr
,
298 cp_intr_mask
= cp_rx_intr_mask
| cp_norx_intr_mask
,
301 static const unsigned int cp_rx_config
=
302 (RX_FIFO_THRESH
<< RxCfgFIFOShift
) |
303 (RX_DMA_BURST
<< RxCfgDMAShift
);
317 struct cp_dma_stats
{
331 } __attribute__((packed
));
333 struct cp_extra_stats
{
334 unsigned long rx_frags
;
339 struct net_device
*dev
;
343 struct pci_dev
*pdev
;
347 struct net_device_stats net_stats
;
348 struct cp_extra_stats cp_stats
;
349 struct cp_dma_stats
*nic_stats
;
350 dma_addr_t nic_stats_dma
;
352 unsigned rx_tail ____cacheline_aligned
;
353 struct cp_desc
*rx_ring
;
354 struct ring_info rx_skb
[CP_RX_RING_SIZE
];
357 unsigned tx_head ____cacheline_aligned
;
360 struct cp_desc
*tx_ring
;
361 struct ring_info tx_skb
[CP_TX_RING_SIZE
];
365 struct vlan_group
*vlgrp
;
368 unsigned int wol_enabled
: 1; /* Is Wake-on-LAN enabled? */
371 struct mii_if_info mii_if
;
374 #define cpr8(reg) readb(cp->regs + (reg))
375 #define cpr16(reg) readw(cp->regs + (reg))
376 #define cpr32(reg) readl(cp->regs + (reg))
377 #define cpw8(reg,val) writeb((val), cp->regs + (reg))
378 #define cpw16(reg,val) writew((val), cp->regs + (reg))
379 #define cpw32(reg,val) writel((val), cp->regs + (reg))
380 #define cpw8_f(reg,val) do { \
381 writeb((val), cp->regs + (reg)); \
382 readb(cp->regs + (reg)); \
384 #define cpw16_f(reg,val) do { \
385 writew((val), cp->regs + (reg)); \
386 readw(cp->regs + (reg)); \
388 #define cpw32_f(reg,val) do { \
389 writel((val), cp->regs + (reg)); \
390 readl(cp->regs + (reg)); \
394 static void __cp_set_rx_mode (struct net_device
*dev
);
395 static void cp_tx (struct cp_private
*cp
);
396 static void cp_clean_rings (struct cp_private
*cp
);
398 static struct pci_device_id cp_pci_tbl
[] = {
399 { PCI_VENDOR_ID_REALTEK
, PCI_DEVICE_ID_REALTEK_8139
,
400 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, },
401 #ifdef CONFIG_SH_SECUREEDGE5410
402 /* Bogus 8139 silicon reports 8129 without external PROM :-( */
403 { PCI_VENDOR_ID_REALTEK
, PCI_DEVICE_ID_REALTEK_8129
,
404 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, },
408 MODULE_DEVICE_TABLE(pci
, cp_pci_tbl
);
411 const char str
[ETH_GSTRING_LEN
];
412 } ethtool_stats_keys
[] = {
431 static void cp_vlan_rx_register(struct net_device
*dev
, struct vlan_group
*grp
)
433 struct cp_private
*cp
= netdev_priv(dev
);
436 spin_lock_irqsave(&cp
->lock
, flags
);
438 cp
->cpcmd
|= RxVlanOn
;
439 cpw16(CpCmd
, cp
->cpcmd
);
440 spin_unlock_irqrestore(&cp
->lock
, flags
);
443 static void cp_vlan_rx_kill_vid(struct net_device
*dev
, unsigned short vid
)
445 struct cp_private
*cp
= netdev_priv(dev
);
448 spin_lock_irqsave(&cp
->lock
, flags
);
449 cp
->cpcmd
&= ~RxVlanOn
;
450 cpw16(CpCmd
, cp
->cpcmd
);
452 cp
->vlgrp
->vlan_devices
[vid
] = NULL
;
453 spin_unlock_irqrestore(&cp
->lock
, flags
);
455 #endif /* CP_VLAN_TAG_USED */
457 static inline void cp_set_rxbufsize (struct cp_private
*cp
)
459 unsigned int mtu
= cp
->dev
->mtu
;
461 if (mtu
> ETH_DATA_LEN
)
462 /* MTU + ethernet header + FCS + optional VLAN tag */
463 cp
->rx_buf_sz
= mtu
+ ETH_HLEN
+ 8;
465 cp
->rx_buf_sz
= PKT_BUF_SZ
;
468 static inline void cp_rx_skb (struct cp_private
*cp
, struct sk_buff
*skb
,
469 struct cp_desc
*desc
)
471 skb
->protocol
= eth_type_trans (skb
, cp
->dev
);
473 cp
->net_stats
.rx_packets
++;
474 cp
->net_stats
.rx_bytes
+= skb
->len
;
475 cp
->dev
->last_rx
= jiffies
;
478 if (cp
->vlgrp
&& (desc
->opts2
& RxVlanTagged
)) {
479 vlan_hwaccel_receive_skb(skb
, cp
->vlgrp
,
480 be16_to_cpu(desc
->opts2
& 0xffff));
483 netif_receive_skb(skb
);
486 static void cp_rx_err_acct (struct cp_private
*cp
, unsigned rx_tail
,
489 if (netif_msg_rx_err (cp
))
491 "%s: rx err, slot %d status 0x%x len %d\n",
492 cp
->dev
->name
, rx_tail
, status
, len
);
493 cp
->net_stats
.rx_errors
++;
494 if (status
& RxErrFrame
)
495 cp
->net_stats
.rx_frame_errors
++;
496 if (status
& RxErrCRC
)
497 cp
->net_stats
.rx_crc_errors
++;
498 if ((status
& RxErrRunt
) || (status
& RxErrLong
))
499 cp
->net_stats
.rx_length_errors
++;
500 if ((status
& (FirstFrag
| LastFrag
)) != (FirstFrag
| LastFrag
))
501 cp
->net_stats
.rx_length_errors
++;
502 if (status
& RxErrFIFO
)
503 cp
->net_stats
.rx_fifo_errors
++;
506 static inline unsigned int cp_rx_csum_ok (u32 status
)
508 unsigned int protocol
= (status
>> 16) & 0x3;
510 if (likely((protocol
== RxProtoTCP
) && (!(status
& TCPFail
))))
512 else if ((protocol
== RxProtoUDP
) && (!(status
& UDPFail
)))
514 else if ((protocol
== RxProtoIP
) && (!(status
& IPFail
)))
519 static int cp_rx_poll (struct net_device
*dev
, int *budget
)
521 struct cp_private
*cp
= netdev_priv(dev
);
522 unsigned rx_tail
= cp
->rx_tail
;
523 unsigned rx_work
= dev
->quota
;
528 cpw16(IntrStatus
, cp_rx_intr_mask
);
533 struct sk_buff
*skb
, *new_skb
;
534 struct cp_desc
*desc
;
537 skb
= cp
->rx_skb
[rx_tail
].skb
;
541 desc
= &cp
->rx_ring
[rx_tail
];
542 status
= le32_to_cpu(desc
->opts1
);
543 if (status
& DescOwn
)
546 len
= (status
& 0x1fff) - 4;
547 mapping
= cp
->rx_skb
[rx_tail
].mapping
;
549 if ((status
& (FirstFrag
| LastFrag
)) != (FirstFrag
| LastFrag
)) {
550 /* we don't support incoming fragmented frames.
551 * instead, we attempt to ensure that the
552 * pre-allocated RX skbs are properly sized such
553 * that RX fragments are never encountered
555 cp_rx_err_acct(cp
, rx_tail
, status
, len
);
556 cp
->net_stats
.rx_dropped
++;
557 cp
->cp_stats
.rx_frags
++;
561 if (status
& (RxError
| RxErrFIFO
)) {
562 cp_rx_err_acct(cp
, rx_tail
, status
, len
);
566 if (netif_msg_rx_status(cp
))
567 printk(KERN_DEBUG
"%s: rx slot %d status 0x%x len %d\n",
568 cp
->dev
->name
, rx_tail
, status
, len
);
570 buflen
= cp
->rx_buf_sz
+ RX_OFFSET
;
571 new_skb
= dev_alloc_skb (buflen
);
573 cp
->net_stats
.rx_dropped
++;
577 skb_reserve(new_skb
, RX_OFFSET
);
578 new_skb
->dev
= cp
->dev
;
580 pci_unmap_single(cp
->pdev
, mapping
,
581 buflen
, PCI_DMA_FROMDEVICE
);
583 /* Handle checksum offloading for incoming packets. */
584 if (cp_rx_csum_ok(status
))
585 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
587 skb
->ip_summed
= CHECKSUM_NONE
;
592 cp
->rx_skb
[rx_tail
].mapping
=
593 pci_map_single(cp
->pdev
, new_skb
->tail
,
594 buflen
, PCI_DMA_FROMDEVICE
);
595 cp
->rx_skb
[rx_tail
].skb
= new_skb
;
597 cp_rx_skb(cp
, skb
, desc
);
601 cp
->rx_ring
[rx_tail
].opts2
= 0;
602 cp
->rx_ring
[rx_tail
].addr
= cpu_to_le64(mapping
);
603 if (rx_tail
== (CP_RX_RING_SIZE
- 1))
604 desc
->opts1
= cpu_to_le32(DescOwn
| RingEnd
|
607 desc
->opts1
= cpu_to_le32(DescOwn
| cp
->rx_buf_sz
);
608 rx_tail
= NEXT_RX(rx_tail
);
614 cp
->rx_tail
= rx_tail
;
619 /* if we did not reach work limit, then we're done with
620 * this round of polling
623 if (cpr16(IntrStatus
) & cp_rx_intr_mask
)
627 cpw16_f(IntrMask
, cp_intr_mask
);
628 __netif_rx_complete(dev
);
634 return 1; /* not done */
638 cp_interrupt (int irq
, void *dev_instance
, struct pt_regs
*regs
)
640 struct net_device
*dev
= dev_instance
;
641 struct cp_private
*cp
;
644 if (unlikely(dev
== NULL
))
646 cp
= netdev_priv(dev
);
648 status
= cpr16(IntrStatus
);
649 if (!status
|| (status
== 0xFFFF))
652 if (netif_msg_intr(cp
))
653 printk(KERN_DEBUG
"%s: intr, status %04x cmd %02x cpcmd %04x\n",
654 dev
->name
, status
, cpr8(Cmd
), cpr16(CpCmd
));
656 cpw16(IntrStatus
, status
& ~cp_rx_intr_mask
);
658 spin_lock(&cp
->lock
);
660 /* close possible race's with dev_close */
661 if (unlikely(!netif_running(dev
))) {
663 spin_unlock(&cp
->lock
);
667 if (status
& (RxOK
| RxErr
| RxEmpty
| RxFIFOOvr
))
668 if (netif_rx_schedule_prep(dev
)) {
669 cpw16_f(IntrMask
, cp_norx_intr_mask
);
670 __netif_rx_schedule(dev
);
673 if (status
& (TxOK
| TxErr
| TxEmpty
| SWInt
))
675 if (status
& LinkChg
)
676 mii_check_media(&cp
->mii_if
, netif_msg_link(cp
), FALSE
);
678 spin_unlock(&cp
->lock
);
680 if (status
& PciErr
) {
683 pci_read_config_word(cp
->pdev
, PCI_STATUS
, &pci_status
);
684 pci_write_config_word(cp
->pdev
, PCI_STATUS
, pci_status
);
685 printk(KERN_ERR
"%s: PCI bus error, status=%04x, PCI status=%04x\n",
686 dev
->name
, status
, pci_status
);
688 /* TODO: reset hardware */
694 static void cp_tx (struct cp_private
*cp
)
696 unsigned tx_head
= cp
->tx_head
;
697 unsigned tx_tail
= cp
->tx_tail
;
699 while (tx_tail
!= tx_head
) {
704 status
= le32_to_cpu(cp
->tx_ring
[tx_tail
].opts1
);
705 if (status
& DescOwn
)
708 skb
= cp
->tx_skb
[tx_tail
].skb
;
712 pci_unmap_single(cp
->pdev
, cp
->tx_skb
[tx_tail
].mapping
,
713 skb
->len
, PCI_DMA_TODEVICE
);
715 if (status
& LastFrag
) {
716 if (status
& (TxError
| TxFIFOUnder
)) {
717 if (netif_msg_tx_err(cp
))
718 printk(KERN_DEBUG
"%s: tx err, status 0x%x\n",
719 cp
->dev
->name
, status
);
720 cp
->net_stats
.tx_errors
++;
722 cp
->net_stats
.tx_window_errors
++;
723 if (status
& TxMaxCol
)
724 cp
->net_stats
.tx_aborted_errors
++;
725 if (status
& TxLinkFail
)
726 cp
->net_stats
.tx_carrier_errors
++;
727 if (status
& TxFIFOUnder
)
728 cp
->net_stats
.tx_fifo_errors
++;
730 cp
->net_stats
.collisions
+=
731 ((status
>> TxColCntShift
) & TxColCntMask
);
732 cp
->net_stats
.tx_packets
++;
733 cp
->net_stats
.tx_bytes
+= skb
->len
;
734 if (netif_msg_tx_done(cp
))
735 printk(KERN_DEBUG
"%s: tx done, slot %d\n", cp
->dev
->name
, tx_tail
);
737 dev_kfree_skb_irq(skb
);
740 cp
->tx_skb
[tx_tail
].skb
= NULL
;
742 tx_tail
= NEXT_TX(tx_tail
);
745 cp
->tx_tail
= tx_tail
;
747 if (TX_BUFFS_AVAIL(cp
) > (MAX_SKB_FRAGS
+ 1))
748 netif_wake_queue(cp
->dev
);
751 static int cp_start_xmit (struct sk_buff
*skb
, struct net_device
*dev
)
753 struct cp_private
*cp
= netdev_priv(dev
);
760 spin_lock_irq(&cp
->lock
);
762 /* This is a hard error, log it. */
763 if (TX_BUFFS_AVAIL(cp
) <= (skb_shinfo(skb
)->nr_frags
+ 1)) {
764 netif_stop_queue(dev
);
765 spin_unlock_irq(&cp
->lock
);
766 printk(KERN_ERR PFX
"%s: BUG! Tx Ring full when queue awake!\n",
772 if (cp
->vlgrp
&& vlan_tx_tag_present(skb
))
773 vlan_tag
= TxVlanTag
| cpu_to_be16(vlan_tx_tag_get(skb
));
777 eor
= (entry
== (CP_TX_RING_SIZE
- 1)) ? RingEnd
: 0;
778 if (skb_shinfo(skb
)->nr_frags
== 0) {
779 struct cp_desc
*txd
= &cp
->tx_ring
[entry
];
784 mapping
= pci_map_single(cp
->pdev
, skb
->data
, len
, PCI_DMA_TODEVICE
);
785 CP_VLAN_TX_TAG(txd
, vlan_tag
);
786 txd
->addr
= cpu_to_le64(mapping
);
789 if (skb
->ip_summed
== CHECKSUM_HW
) {
790 const struct iphdr
*ip
= skb
->nh
.iph
;
791 if (ip
->protocol
== IPPROTO_TCP
)
792 txd
->opts1
= cpu_to_le32(eor
| len
| DescOwn
|
793 FirstFrag
| LastFrag
|
795 else if (ip
->protocol
== IPPROTO_UDP
)
796 txd
->opts1
= cpu_to_le32(eor
| len
| DescOwn
|
797 FirstFrag
| LastFrag
|
802 txd
->opts1
= cpu_to_le32(eor
| len
| DescOwn
|
803 FirstFrag
| LastFrag
);
806 cp
->tx_skb
[entry
].skb
= skb
;
807 cp
->tx_skb
[entry
].mapping
= mapping
;
808 cp
->tx_skb
[entry
].frag
= 0;
809 entry
= NEXT_TX(entry
);
812 u32 first_len
, first_eor
;
813 dma_addr_t first_mapping
;
814 int frag
, first_entry
= entry
;
815 const struct iphdr
*ip
= skb
->nh
.iph
;
817 /* We must give this initial chunk to the device last.
818 * Otherwise we could race with the device.
821 first_len
= skb_headlen(skb
);
822 first_mapping
= pci_map_single(cp
->pdev
, skb
->data
,
823 first_len
, PCI_DMA_TODEVICE
);
824 cp
->tx_skb
[entry
].skb
= skb
;
825 cp
->tx_skb
[entry
].mapping
= first_mapping
;
826 cp
->tx_skb
[entry
].frag
= 1;
827 entry
= NEXT_TX(entry
);
829 for (frag
= 0; frag
< skb_shinfo(skb
)->nr_frags
; frag
++) {
830 skb_frag_t
*this_frag
= &skb_shinfo(skb
)->frags
[frag
];
835 len
= this_frag
->size
;
836 mapping
= pci_map_single(cp
->pdev
,
837 ((void *) page_address(this_frag
->page
) +
838 this_frag
->page_offset
),
839 len
, PCI_DMA_TODEVICE
);
840 eor
= (entry
== (CP_TX_RING_SIZE
- 1)) ? RingEnd
: 0;
842 if (skb
->ip_summed
== CHECKSUM_HW
) {
843 ctrl
= eor
| len
| DescOwn
| IPCS
;
844 if (ip
->protocol
== IPPROTO_TCP
)
846 else if (ip
->protocol
== IPPROTO_UDP
)
851 ctrl
= eor
| len
| DescOwn
;
853 if (frag
== skb_shinfo(skb
)->nr_frags
- 1)
856 txd
= &cp
->tx_ring
[entry
];
857 CP_VLAN_TX_TAG(txd
, vlan_tag
);
858 txd
->addr
= cpu_to_le64(mapping
);
861 txd
->opts1
= cpu_to_le32(ctrl
);
864 cp
->tx_skb
[entry
].skb
= skb
;
865 cp
->tx_skb
[entry
].mapping
= mapping
;
866 cp
->tx_skb
[entry
].frag
= frag
+ 2;
867 entry
= NEXT_TX(entry
);
870 txd
= &cp
->tx_ring
[first_entry
];
871 CP_VLAN_TX_TAG(txd
, vlan_tag
);
872 txd
->addr
= cpu_to_le64(first_mapping
);
875 if (skb
->ip_summed
== CHECKSUM_HW
) {
876 if (ip
->protocol
== IPPROTO_TCP
)
877 txd
->opts1
= cpu_to_le32(first_eor
| first_len
|
878 FirstFrag
| DescOwn
|
880 else if (ip
->protocol
== IPPROTO_UDP
)
881 txd
->opts1
= cpu_to_le32(first_eor
| first_len
|
882 FirstFrag
| DescOwn
|
887 txd
->opts1
= cpu_to_le32(first_eor
| first_len
|
888 FirstFrag
| DescOwn
);
892 if (netif_msg_tx_queued(cp
))
893 printk(KERN_DEBUG
"%s: tx queued, slot %d, skblen %d\n",
894 dev
->name
, entry
, skb
->len
);
895 if (TX_BUFFS_AVAIL(cp
) <= (MAX_SKB_FRAGS
+ 1))
896 netif_stop_queue(dev
);
898 spin_unlock_irq(&cp
->lock
);
900 cpw8(TxPoll
, NormalTxPoll
);
901 dev
->trans_start
= jiffies
;
906 /* Set or clear the multicast filter for this adaptor.
907 This routine is not state sensitive and need not be SMP locked. */
909 static void __cp_set_rx_mode (struct net_device
*dev
)
911 struct cp_private
*cp
= netdev_priv(dev
);
912 u32 mc_filter
[2]; /* Multicast hash filter */
916 /* Note: do not reorder, GCC is clever about common statements. */
917 if (dev
->flags
& IFF_PROMISC
) {
918 /* Unconditionally log net taps. */
919 printk (KERN_NOTICE
"%s: Promiscuous mode enabled.\n",
922 AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
|
924 mc_filter
[1] = mc_filter
[0] = 0xffffffff;
925 } else if ((dev
->mc_count
> multicast_filter_limit
)
926 || (dev
->flags
& IFF_ALLMULTI
)) {
927 /* Too many to filter perfectly -- accept all multicasts. */
928 rx_mode
= AcceptBroadcast
| AcceptMulticast
| AcceptMyPhys
;
929 mc_filter
[1] = mc_filter
[0] = 0xffffffff;
931 struct dev_mc_list
*mclist
;
932 rx_mode
= AcceptBroadcast
| AcceptMyPhys
;
933 mc_filter
[1] = mc_filter
[0] = 0;
934 for (i
= 0, mclist
= dev
->mc_list
; mclist
&& i
< dev
->mc_count
;
935 i
++, mclist
= mclist
->next
) {
936 int bit_nr
= ether_crc(ETH_ALEN
, mclist
->dmi_addr
) >> 26;
938 mc_filter
[bit_nr
>> 5] |= 1 << (bit_nr
& 31);
939 rx_mode
|= AcceptMulticast
;
943 /* We can safely update without stopping the chip. */
944 tmp
= cp_rx_config
| rx_mode
;
945 if (cp
->rx_config
!= tmp
) {
946 cpw32_f (RxConfig
, tmp
);
949 cpw32_f (MAR0
+ 0, mc_filter
[0]);
950 cpw32_f (MAR0
+ 4, mc_filter
[1]);
953 static void cp_set_rx_mode (struct net_device
*dev
)
956 struct cp_private
*cp
= netdev_priv(dev
);
958 spin_lock_irqsave (&cp
->lock
, flags
);
959 __cp_set_rx_mode(dev
);
960 spin_unlock_irqrestore (&cp
->lock
, flags
);
963 static void __cp_get_stats(struct cp_private
*cp
)
965 /* only lower 24 bits valid; write any value to clear */
966 cp
->net_stats
.rx_missed_errors
+= (cpr32 (RxMissed
) & 0xffffff);
970 static struct net_device_stats
*cp_get_stats(struct net_device
*dev
)
972 struct cp_private
*cp
= netdev_priv(dev
);
975 /* The chip only need report frame silently dropped. */
976 spin_lock_irqsave(&cp
->lock
, flags
);
977 if (netif_running(dev
) && netif_device_present(dev
))
979 spin_unlock_irqrestore(&cp
->lock
, flags
);
981 return &cp
->net_stats
;
984 static void cp_stop_hw (struct cp_private
*cp
)
986 cpw16(IntrStatus
, ~(cpr16(IntrStatus
)));
987 cpw16_f(IntrMask
, 0);
990 cpw16_f(IntrStatus
, ~(cpr16(IntrStatus
)));
993 cp
->tx_head
= cp
->tx_tail
= 0;
996 static void cp_reset_hw (struct cp_private
*cp
)
998 unsigned work
= 1000;
1000 cpw8(Cmd
, CmdReset
);
1003 if (!(cpr8(Cmd
) & CmdReset
))
1006 set_current_state(TASK_UNINTERRUPTIBLE
);
1007 schedule_timeout(10);
1010 printk(KERN_ERR
"%s: hardware reset timeout\n", cp
->dev
->name
);
1013 static inline void cp_start_hw (struct cp_private
*cp
)
1015 cpw16(CpCmd
, cp
->cpcmd
);
1016 cpw8(Cmd
, RxOn
| TxOn
);
1019 static void cp_init_hw (struct cp_private
*cp
)
1021 struct net_device
*dev
= cp
->dev
;
1022 dma_addr_t ring_dma
;
1026 cpw8_f (Cfg9346
, Cfg9346_Unlock
);
1028 /* Restore our idea of the MAC address. */
1029 cpw32_f (MAC0
+ 0, cpu_to_le32 (*(u32
*) (dev
->dev_addr
+ 0)));
1030 cpw32_f (MAC0
+ 4, cpu_to_le32 (*(u32
*) (dev
->dev_addr
+ 4)));
1033 cpw8(TxThresh
, 0x06); /* XXX convert magic num to a constant */
1035 __cp_set_rx_mode(dev
);
1036 cpw32_f (TxConfig
, IFG
| (TX_DMA_BURST
<< TxDMAShift
));
1038 cpw8(Config1
, cpr8(Config1
) | DriverLoaded
| PMEnable
);
1039 /* Disable Wake-on-LAN. Can be turned on with ETHTOOL_SWOL */
1040 cpw8(Config3
, PARMEnable
);
1041 cp
->wol_enabled
= 0;
1043 cpw8(Config5
, cpr8(Config5
) & PMEStatus
);
1045 cpw32_f(HiTxRingAddr
, 0);
1046 cpw32_f(HiTxRingAddr
+ 4, 0);
1048 ring_dma
= cp
->ring_dma
;
1049 cpw32_f(RxRingAddr
, ring_dma
& 0xffffffff);
1050 cpw32_f(RxRingAddr
+ 4, (ring_dma
>> 16) >> 16);
1052 ring_dma
+= sizeof(struct cp_desc
) * CP_RX_RING_SIZE
;
1053 cpw32_f(TxRingAddr
, ring_dma
& 0xffffffff);
1054 cpw32_f(TxRingAddr
+ 4, (ring_dma
>> 16) >> 16);
1056 cpw16(MultiIntr
, 0);
1058 cpw16_f(IntrMask
, cp_intr_mask
);
1060 cpw8_f(Cfg9346
, Cfg9346_Lock
);
1063 static int cp_refill_rx (struct cp_private
*cp
)
1067 for (i
= 0; i
< CP_RX_RING_SIZE
; i
++) {
1068 struct sk_buff
*skb
;
1070 skb
= dev_alloc_skb(cp
->rx_buf_sz
+ RX_OFFSET
);
1075 skb_reserve(skb
, RX_OFFSET
);
1077 cp
->rx_skb
[i
].mapping
= pci_map_single(cp
->pdev
,
1078 skb
->tail
, cp
->rx_buf_sz
, PCI_DMA_FROMDEVICE
);
1079 cp
->rx_skb
[i
].skb
= skb
;
1080 cp
->rx_skb
[i
].frag
= 0;
1082 cp
->rx_ring
[i
].opts2
= 0;
1083 cp
->rx_ring
[i
].addr
= cpu_to_le64(cp
->rx_skb
[i
].mapping
);
1084 if (i
== (CP_RX_RING_SIZE
- 1))
1085 cp
->rx_ring
[i
].opts1
=
1086 cpu_to_le32(DescOwn
| RingEnd
| cp
->rx_buf_sz
);
1088 cp
->rx_ring
[i
].opts1
=
1089 cpu_to_le32(DescOwn
| cp
->rx_buf_sz
);
1099 static int cp_init_rings (struct cp_private
*cp
)
1101 memset(cp
->tx_ring
, 0, sizeof(struct cp_desc
) * CP_TX_RING_SIZE
);
1102 cp
->tx_ring
[CP_TX_RING_SIZE
- 1].opts1
= cpu_to_le32(RingEnd
);
1105 cp
->tx_head
= cp
->tx_tail
= 0;
1107 return cp_refill_rx (cp
);
1110 static int cp_alloc_rings (struct cp_private
*cp
)
1114 mem
= pci_alloc_consistent(cp
->pdev
, CP_RING_BYTES
, &cp
->ring_dma
);
1119 cp
->tx_ring
= &cp
->rx_ring
[CP_RX_RING_SIZE
];
1121 mem
+= (CP_RING_BYTES
- CP_STATS_SIZE
);
1122 cp
->nic_stats
= mem
;
1123 cp
->nic_stats_dma
= cp
->ring_dma
+ (CP_RING_BYTES
- CP_STATS_SIZE
);
1125 return cp_init_rings(cp
);
1128 static void cp_clean_rings (struct cp_private
*cp
)
1132 memset(cp
->rx_ring
, 0, sizeof(struct cp_desc
) * CP_RX_RING_SIZE
);
1133 memset(cp
->tx_ring
, 0, sizeof(struct cp_desc
) * CP_TX_RING_SIZE
);
1135 for (i
= 0; i
< CP_RX_RING_SIZE
; i
++) {
1136 if (cp
->rx_skb
[i
].skb
) {
1137 pci_unmap_single(cp
->pdev
, cp
->rx_skb
[i
].mapping
,
1138 cp
->rx_buf_sz
, PCI_DMA_FROMDEVICE
);
1139 dev_kfree_skb(cp
->rx_skb
[i
].skb
);
1143 for (i
= 0; i
< CP_TX_RING_SIZE
; i
++) {
1144 if (cp
->tx_skb
[i
].skb
) {
1145 struct sk_buff
*skb
= cp
->tx_skb
[i
].skb
;
1146 pci_unmap_single(cp
->pdev
, cp
->tx_skb
[i
].mapping
,
1147 skb
->len
, PCI_DMA_TODEVICE
);
1149 cp
->net_stats
.tx_dropped
++;
1153 memset(&cp
->rx_skb
, 0, sizeof(struct ring_info
) * CP_RX_RING_SIZE
);
1154 memset(&cp
->tx_skb
, 0, sizeof(struct ring_info
) * CP_TX_RING_SIZE
);
1157 static void cp_free_rings (struct cp_private
*cp
)
1160 pci_free_consistent(cp
->pdev
, CP_RING_BYTES
, cp
->rx_ring
, cp
->ring_dma
);
1163 cp
->nic_stats
= NULL
;
1166 static int cp_open (struct net_device
*dev
)
1168 struct cp_private
*cp
= netdev_priv(dev
);
1171 if (netif_msg_ifup(cp
))
1172 printk(KERN_DEBUG
"%s: enabling interface\n", dev
->name
);
1174 rc
= cp_alloc_rings(cp
);
1180 rc
= request_irq(dev
->irq
, cp_interrupt
, SA_SHIRQ
, dev
->name
, dev
);
1184 netif_carrier_off(dev
);
1185 mii_check_media(&cp
->mii_if
, netif_msg_link(cp
), TRUE
);
1186 netif_start_queue(dev
);
1196 static int cp_close (struct net_device
*dev
)
1198 struct cp_private
*cp
= netdev_priv(dev
);
1199 unsigned long flags
;
1201 if (netif_msg_ifdown(cp
))
1202 printk(KERN_DEBUG
"%s: disabling interface\n", dev
->name
);
1204 spin_lock_irqsave(&cp
->lock
, flags
);
1206 netif_stop_queue(dev
);
1207 netif_carrier_off(dev
);
1211 spin_unlock_irqrestore(&cp
->lock
, flags
);
1213 synchronize_irq(dev
->irq
);
1214 free_irq(dev
->irq
, dev
);
1221 static int cp_change_mtu(struct net_device
*dev
, int new_mtu
)
1223 struct cp_private
*cp
= netdev_priv(dev
);
1225 unsigned long flags
;
1227 /* check for invalid MTU, according to hardware limits */
1228 if (new_mtu
< CP_MIN_MTU
|| new_mtu
> CP_MAX_MTU
)
1231 /* if network interface not up, no need for complexity */
1232 if (!netif_running(dev
)) {
1234 cp_set_rxbufsize(cp
); /* set new rx buf size */
1238 spin_lock_irqsave(&cp
->lock
, flags
);
1240 cp_stop_hw(cp
); /* stop h/w and free rings */
1244 cp_set_rxbufsize(cp
); /* set new rx buf size */
1246 rc
= cp_init_rings(cp
); /* realloc and restart h/w */
1249 spin_unlock_irqrestore(&cp
->lock
, flags
);
1255 static char mii_2_8139_map
[8] = {
1266 static int mdio_read(struct net_device
*dev
, int phy_id
, int location
)
1268 struct cp_private
*cp
= netdev_priv(dev
);
1270 return location
< 8 && mii_2_8139_map
[location
] ?
1271 readw(cp
->regs
+ mii_2_8139_map
[location
]) : 0;
1275 static void mdio_write(struct net_device
*dev
, int phy_id
, int location
,
1278 struct cp_private
*cp
= netdev_priv(dev
);
1280 if (location
== 0) {
1281 cpw8(Cfg9346
, Cfg9346_Unlock
);
1282 cpw16(BasicModeCtrl
, value
);
1283 cpw8(Cfg9346
, Cfg9346_Lock
);
1284 } else if (location
< 8 && mii_2_8139_map
[location
])
1285 cpw16(mii_2_8139_map
[location
], value
);
1288 /* Set the ethtool Wake-on-LAN settings */
1289 static int netdev_set_wol (struct cp_private
*cp
,
1290 const struct ethtool_wolinfo
*wol
)
1294 options
= cpr8 (Config3
) & ~(LinkUp
| MagicPacket
);
1295 /* If WOL is being disabled, no need for complexity */
1297 if (wol
->wolopts
& WAKE_PHY
) options
|= LinkUp
;
1298 if (wol
->wolopts
& WAKE_MAGIC
) options
|= MagicPacket
;
1301 cpw8 (Cfg9346
, Cfg9346_Unlock
);
1302 cpw8 (Config3
, options
);
1303 cpw8 (Cfg9346
, Cfg9346_Lock
);
1305 options
= 0; /* Paranoia setting */
1306 options
= cpr8 (Config5
) & ~(UWF
| MWF
| BWF
);
1307 /* If WOL is being disabled, no need for complexity */
1309 if (wol
->wolopts
& WAKE_UCAST
) options
|= UWF
;
1310 if (wol
->wolopts
& WAKE_BCAST
) options
|= BWF
;
1311 if (wol
->wolopts
& WAKE_MCAST
) options
|= MWF
;
1314 cpw8 (Config5
, options
);
1316 cp
->wol_enabled
= (wol
->wolopts
) ? 1 : 0;
1321 /* Get the ethtool Wake-on-LAN settings */
1322 static void netdev_get_wol (struct cp_private
*cp
,
1323 struct ethtool_wolinfo
*wol
)
1327 wol
->wolopts
= 0; /* Start from scratch */
1328 wol
->supported
= WAKE_PHY
| WAKE_BCAST
| WAKE_MAGIC
|
1329 WAKE_MCAST
| WAKE_UCAST
;
1330 /* We don't need to go on if WOL is disabled */
1331 if (!cp
->wol_enabled
) return;
1333 options
= cpr8 (Config3
);
1334 if (options
& LinkUp
) wol
->wolopts
|= WAKE_PHY
;
1335 if (options
& MagicPacket
) wol
->wolopts
|= WAKE_MAGIC
;
1337 options
= 0; /* Paranoia setting */
1338 options
= cpr8 (Config5
);
1339 if (options
& UWF
) wol
->wolopts
|= WAKE_UCAST
;
1340 if (options
& BWF
) wol
->wolopts
|= WAKE_BCAST
;
1341 if (options
& MWF
) wol
->wolopts
|= WAKE_MCAST
;
1344 static void cp_get_drvinfo (struct net_device
*dev
, struct ethtool_drvinfo
*info
)
1346 struct cp_private
*cp
= netdev_priv(dev
);
1348 strcpy (info
->driver
, DRV_NAME
);
1349 strcpy (info
->version
, DRV_VERSION
);
1350 strcpy (info
->bus_info
, pci_name(cp
->pdev
));
1353 static int cp_get_regs_len(struct net_device
*dev
)
1355 return CP_REGS_SIZE
;
1358 static int cp_get_stats_count (struct net_device
*dev
)
1360 return CP_NUM_STATS
;
1363 static int cp_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1365 struct cp_private
*cp
= netdev_priv(dev
);
1367 unsigned long flags
;
1369 spin_lock_irqsave(&cp
->lock
, flags
);
1370 rc
= mii_ethtool_gset(&cp
->mii_if
, cmd
);
1371 spin_unlock_irqrestore(&cp
->lock
, flags
);
1376 static int cp_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1378 struct cp_private
*cp
= netdev_priv(dev
);
1380 unsigned long flags
;
1382 spin_lock_irqsave(&cp
->lock
, flags
);
1383 rc
= mii_ethtool_sset(&cp
->mii_if
, cmd
);
1384 spin_unlock_irqrestore(&cp
->lock
, flags
);
1389 static int cp_nway_reset(struct net_device
*dev
)
1391 struct cp_private
*cp
= netdev_priv(dev
);
1392 return mii_nway_restart(&cp
->mii_if
);
1395 static u32
cp_get_msglevel(struct net_device
*dev
)
1397 struct cp_private
*cp
= netdev_priv(dev
);
1398 return cp
->msg_enable
;
1401 static void cp_set_msglevel(struct net_device
*dev
, u32 value
)
1403 struct cp_private
*cp
= netdev_priv(dev
);
1404 cp
->msg_enable
= value
;
1407 static u32
cp_get_rx_csum(struct net_device
*dev
)
1409 struct cp_private
*cp
= netdev_priv(dev
);
1410 return (cpr16(CpCmd
) & RxChkSum
) ? 1 : 0;
1413 static int cp_set_rx_csum(struct net_device
*dev
, u32 data
)
1415 struct cp_private
*cp
= netdev_priv(dev
);
1416 u16 cmd
= cp
->cpcmd
, newcmd
;
1423 newcmd
&= ~RxChkSum
;
1425 if (newcmd
!= cmd
) {
1426 unsigned long flags
;
1428 spin_lock_irqsave(&cp
->lock
, flags
);
1430 cpw16_f(CpCmd
, newcmd
);
1431 spin_unlock_irqrestore(&cp
->lock
, flags
);
1437 static void cp_get_regs(struct net_device
*dev
, struct ethtool_regs
*regs
,
1440 struct cp_private
*cp
= netdev_priv(dev
);
1441 unsigned long flags
;
1443 if (regs
->len
< CP_REGS_SIZE
)
1444 return /* -EINVAL */;
1446 regs
->version
= CP_REGS_VER
;
1448 spin_lock_irqsave(&cp
->lock
, flags
);
1449 memcpy_fromio(p
, cp
->regs
, CP_REGS_SIZE
);
1450 spin_unlock_irqrestore(&cp
->lock
, flags
);
1453 static void cp_get_wol (struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1455 struct cp_private
*cp
= netdev_priv(dev
);
1456 unsigned long flags
;
1458 spin_lock_irqsave (&cp
->lock
, flags
);
1459 netdev_get_wol (cp
, wol
);
1460 spin_unlock_irqrestore (&cp
->lock
, flags
);
1463 static int cp_set_wol (struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1465 struct cp_private
*cp
= netdev_priv(dev
);
1466 unsigned long flags
;
1469 spin_lock_irqsave (&cp
->lock
, flags
);
1470 rc
= netdev_set_wol (cp
, wol
);
1471 spin_unlock_irqrestore (&cp
->lock
, flags
);
1476 static void cp_get_strings (struct net_device
*dev
, u32 stringset
, u8
*buf
)
1478 switch (stringset
) {
1480 memcpy(buf
, ðtool_stats_keys
, sizeof(ethtool_stats_keys
));
1488 static void cp_get_ethtool_stats (struct net_device
*dev
,
1489 struct ethtool_stats
*estats
, u64
*tmp_stats
)
1491 struct cp_private
*cp
= netdev_priv(dev
);
1492 unsigned int work
= 100;
1495 /* begin NIC statistics dump */
1496 cpw32(StatsAddr
+ 4, (cp
->nic_stats_dma
>> 16) >> 16);
1497 cpw32(StatsAddr
, (cp
->nic_stats_dma
& 0xffffffff) | DumpStats
);
1500 while (work
-- > 0) {
1501 if ((cpr32(StatsAddr
) & DumpStats
) == 0)
1506 if (cpr32(StatsAddr
) & DumpStats
)
1510 tmp_stats
[i
++] = le64_to_cpu(cp
->nic_stats
->tx_ok
);
1511 tmp_stats
[i
++] = le64_to_cpu(cp
->nic_stats
->rx_ok
);
1512 tmp_stats
[i
++] = le64_to_cpu(cp
->nic_stats
->tx_err
);
1513 tmp_stats
[i
++] = le32_to_cpu(cp
->nic_stats
->rx_err
);
1514 tmp_stats
[i
++] = le16_to_cpu(cp
->nic_stats
->rx_fifo
);
1515 tmp_stats
[i
++] = le16_to_cpu(cp
->nic_stats
->frame_align
);
1516 tmp_stats
[i
++] = le32_to_cpu(cp
->nic_stats
->tx_ok_1col
);
1517 tmp_stats
[i
++] = le32_to_cpu(cp
->nic_stats
->tx_ok_mcol
);
1518 tmp_stats
[i
++] = le64_to_cpu(cp
->nic_stats
->rx_ok_phys
);
1519 tmp_stats
[i
++] = le64_to_cpu(cp
->nic_stats
->rx_ok_bcast
);
1520 tmp_stats
[i
++] = le32_to_cpu(cp
->nic_stats
->rx_ok_mcast
);
1521 tmp_stats
[i
++] = le16_to_cpu(cp
->nic_stats
->tx_abort
);
1522 tmp_stats
[i
++] = le16_to_cpu(cp
->nic_stats
->tx_underrun
);
1523 tmp_stats
[i
++] = cp
->cp_stats
.rx_frags
;
1524 if (i
!= CP_NUM_STATS
)
1528 static struct ethtool_ops cp_ethtool_ops
= {
1529 .get_drvinfo
= cp_get_drvinfo
,
1530 .get_regs_len
= cp_get_regs_len
,
1531 .get_stats_count
= cp_get_stats_count
,
1532 .get_settings
= cp_get_settings
,
1533 .set_settings
= cp_set_settings
,
1534 .nway_reset
= cp_nway_reset
,
1535 .get_link
= ethtool_op_get_link
,
1536 .get_msglevel
= cp_get_msglevel
,
1537 .set_msglevel
= cp_set_msglevel
,
1538 .get_rx_csum
= cp_get_rx_csum
,
1539 .set_rx_csum
= cp_set_rx_csum
,
1540 .get_tx_csum
= ethtool_op_get_tx_csum
,
1541 .set_tx_csum
= ethtool_op_set_tx_csum
, /* local! */
1542 .get_sg
= ethtool_op_get_sg
,
1543 .set_sg
= ethtool_op_set_sg
,
1544 .get_regs
= cp_get_regs
,
1545 .get_wol
= cp_get_wol
,
1546 .set_wol
= cp_set_wol
,
1547 .get_strings
= cp_get_strings
,
1548 .get_ethtool_stats
= cp_get_ethtool_stats
,
1551 static int cp_ioctl (struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
1553 struct cp_private
*cp
= netdev_priv(dev
);
1555 unsigned long flags
;
1557 if (!netif_running(dev
))
1560 spin_lock_irqsave(&cp
->lock
, flags
);
1561 rc
= generic_mii_ioctl(&cp
->mii_if
, if_mii(rq
), cmd
, NULL
);
1562 spin_unlock_irqrestore(&cp
->lock
, flags
);
1566 /* Serial EEPROM section. */
1568 /* EEPROM_Ctrl bits. */
1569 #define EE_SHIFT_CLK 0x04 /* EEPROM shift clock. */
1570 #define EE_CS 0x08 /* EEPROM chip select. */
1571 #define EE_DATA_WRITE 0x02 /* EEPROM chip data in. */
1572 #define EE_WRITE_0 0x00
1573 #define EE_WRITE_1 0x02
1574 #define EE_DATA_READ 0x01 /* EEPROM chip data out. */
1575 #define EE_ENB (0x80 | EE_CS)
1577 /* Delay between EEPROM clock transitions.
1578 No extra delay is needed with 33Mhz PCI, but 66Mhz may change this.
1581 #define eeprom_delay() readl(ee_addr)
1583 /* The EEPROM commands include the alway-set leading bit. */
1584 #define EE_WRITE_CMD (5)
1585 #define EE_READ_CMD (6)
1586 #define EE_ERASE_CMD (7)
1588 static int read_eeprom (void *ioaddr
, int location
, int addr_len
)
1591 unsigned retval
= 0;
1592 void *ee_addr
= ioaddr
+ Cfg9346
;
1593 int read_cmd
= location
| (EE_READ_CMD
<< addr_len
);
1595 writeb (EE_ENB
& ~EE_CS
, ee_addr
);
1596 writeb (EE_ENB
, ee_addr
);
1599 /* Shift the read command bits out. */
1600 for (i
= 4 + addr_len
; i
>= 0; i
--) {
1601 int dataval
= (read_cmd
& (1 << i
)) ? EE_DATA_WRITE
: 0;
1602 writeb (EE_ENB
| dataval
, ee_addr
);
1604 writeb (EE_ENB
| dataval
| EE_SHIFT_CLK
, ee_addr
);
1607 writeb (EE_ENB
, ee_addr
);
1610 for (i
= 16; i
> 0; i
--) {
1611 writeb (EE_ENB
| EE_SHIFT_CLK
, ee_addr
);
1614 (retval
<< 1) | ((readb (ee_addr
) & EE_DATA_READ
) ? 1 :
1616 writeb (EE_ENB
, ee_addr
);
1620 /* Terminate the EEPROM access. */
1621 writeb (~EE_CS
, ee_addr
);
1627 /* Put the board into D3cold state and wait for WakeUp signal */
1628 static void cp_set_d3_state (struct cp_private
*cp
)
1630 pci_enable_wake (cp
->pdev
, 0, 1); /* Enable PME# generation */
1631 pci_set_power_state (cp
->pdev
, 3);
1634 static int cp_init_one (struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
1636 struct net_device
*dev
;
1637 struct cp_private
*cp
;
1641 unsigned int addr_len
, i
, pci_using_dac
;
1645 static int version_printed
;
1646 if (version_printed
++ == 0)
1647 printk("%s", version
);
1650 pci_read_config_byte(pdev
, PCI_REVISION_ID
, &pci_rev
);
1652 if (pdev
->vendor
== PCI_VENDOR_ID_REALTEK
&&
1653 pdev
->device
== PCI_DEVICE_ID_REALTEK_8139
&& pci_rev
< 0x20) {
1654 printk(KERN_ERR PFX
"pci dev %s (id %04x:%04x rev %02x) is not an 8139C+ compatible chip\n",
1655 pci_name(pdev
), pdev
->vendor
, pdev
->device
, pci_rev
);
1656 printk(KERN_ERR PFX
"Try the \"8139too\" driver instead.\n");
1660 dev
= alloc_etherdev(sizeof(struct cp_private
));
1663 SET_MODULE_OWNER(dev
);
1664 SET_NETDEV_DEV(dev
, &pdev
->dev
);
1666 cp
= netdev_priv(dev
);
1669 cp
->msg_enable
= (debug
< 0 ? CP_DEF_MSG_ENABLE
: debug
);
1670 spin_lock_init (&cp
->lock
);
1671 cp
->mii_if
.dev
= dev
;
1672 cp
->mii_if
.mdio_read
= mdio_read
;
1673 cp
->mii_if
.mdio_write
= mdio_write
;
1674 cp
->mii_if
.phy_id
= CP_INTERNAL_PHY
;
1675 cp
->mii_if
.phy_id_mask
= 0x1f;
1676 cp
->mii_if
.reg_num_mask
= 0x1f;
1677 cp_set_rxbufsize(cp
);
1679 rc
= pci_enable_device(pdev
);
1683 rc
= pci_set_mwi(pdev
);
1685 goto err_out_disable
;
1687 rc
= pci_request_regions(pdev
, DRV_NAME
);
1691 pciaddr
= pci_resource_start(pdev
, 1);
1694 printk(KERN_ERR PFX
"no MMIO resource for pci dev %s\n",
1698 if (pci_resource_len(pdev
, 1) < CP_REGS_SIZE
) {
1700 printk(KERN_ERR PFX
"MMIO resource (%lx) too small on pci dev %s\n",
1701 pci_resource_len(pdev
, 1), pci_name(pdev
));
1705 /* Configure DMA attributes. */
1706 if ((sizeof(dma_addr_t
) > 4) &&
1707 !pci_set_consistent_dma_mask(pdev
, 0xffffffffffffffffULL
) &&
1708 !pci_set_dma_mask(pdev
, 0xffffffffffffffffULL
)) {
1713 rc
= pci_set_dma_mask(pdev
, 0xffffffffULL
);
1715 printk(KERN_ERR PFX
"No usable DMA configuration, "
1719 rc
= pci_set_consistent_dma_mask(pdev
, 0xffffffffULL
);
1721 printk(KERN_ERR PFX
"No usable consistent DMA configuration, "
1727 cp
->cpcmd
= (pci_using_dac
? PCIDAC
: 0) |
1728 PCIMulRW
| RxChkSum
| CpRxOn
| CpTxOn
;
1730 regs
= ioremap(pciaddr
, CP_REGS_SIZE
);
1733 printk(KERN_ERR PFX
"Cannot map PCI MMIO (%lx@%lx) on pci dev %s\n",
1734 pci_resource_len(pdev
, 1), pciaddr
, pci_name(pdev
));
1737 dev
->base_addr
= (unsigned long) regs
;
1742 #ifdef CONFIG_SH_SECUREEDGE5410
1743 /* Don't rely on the eeprom, get MAC from chip. */
1744 for (i
= 0; i
< 6; i
++)
1745 dev
->dev_addr
[i
] = readb(regs
+ MAC0
+ i
);
1747 /* read MAC address from EEPROM */
1748 addr_len
= read_eeprom (regs
, 0, 8) == 0x8129 ? 8 : 6;
1749 for (i
= 0; i
< 3; i
++)
1750 ((u16
*) (dev
->dev_addr
))[i
] =
1751 le16_to_cpu (read_eeprom (regs
, i
+ 7, addr_len
));
1754 dev
->open
= cp_open
;
1755 dev
->stop
= cp_close
;
1756 dev
->set_multicast_list
= cp_set_rx_mode
;
1757 dev
->hard_start_xmit
= cp_start_xmit
;
1758 dev
->get_stats
= cp_get_stats
;
1759 dev
->do_ioctl
= cp_ioctl
;
1760 dev
->poll
= cp_rx_poll
;
1761 dev
->weight
= 16; /* arbitrary? from NAPI_HOWTO.txt. */
1763 dev
->change_mtu
= cp_change_mtu
;
1765 dev
->ethtool_ops
= &cp_ethtool_ops
;
1767 dev
->tx_timeout
= cp_tx_timeout
;
1768 dev
->watchdog_timeo
= TX_TIMEOUT
;
1771 #if CP_VLAN_TAG_USED
1772 dev
->features
|= NETIF_F_HW_VLAN_TX
| NETIF_F_HW_VLAN_RX
;
1773 dev
->vlan_rx_register
= cp_vlan_rx_register
;
1774 dev
->vlan_rx_kill_vid
= cp_vlan_rx_kill_vid
;
1778 dev
->features
|= NETIF_F_HIGHDMA
;
1780 dev
->irq
= pdev
->irq
;
1782 rc
= register_netdev(dev
);
1786 printk (KERN_INFO
"%s: RTL-8139C+ at 0x%lx, "
1787 "%02x:%02x:%02x:%02x:%02x:%02x, "
1791 dev
->dev_addr
[0], dev
->dev_addr
[1],
1792 dev
->dev_addr
[2], dev
->dev_addr
[3],
1793 dev
->dev_addr
[4], dev
->dev_addr
[5],
1796 pci_set_drvdata(pdev
, dev
);
1798 /* enable busmastering and memory-write-invalidate */
1799 pci_set_master(pdev
);
1801 if (cp
->wol_enabled
) cp_set_d3_state (cp
);
1808 pci_release_regions(pdev
);
1810 pci_clear_mwi(pdev
);
1812 pci_disable_device(pdev
);
1818 static void cp_remove_one (struct pci_dev
*pdev
)
1820 struct net_device
*dev
= pci_get_drvdata(pdev
);
1821 struct cp_private
*cp
= netdev_priv(dev
);
1825 unregister_netdev(dev
);
1827 if (cp
->wol_enabled
) pci_set_power_state (pdev
, 0);
1828 pci_release_regions(pdev
);
1829 pci_clear_mwi(pdev
);
1830 pci_disable_device(pdev
);
1831 pci_set_drvdata(pdev
, NULL
);
1836 static int cp_suspend (struct pci_dev
*pdev
, u32 state
)
1838 struct net_device
*dev
;
1839 struct cp_private
*cp
;
1840 unsigned long flags
;
1842 dev
= pci_get_drvdata (pdev
);
1843 cp
= netdev_priv(dev
);
1845 if (!dev
|| !netif_running (dev
)) return 0;
1847 netif_device_detach (dev
);
1848 netif_stop_queue (dev
);
1850 spin_lock_irqsave (&cp
->lock
, flags
);
1852 /* Disable Rx and Tx */
1853 cpw16 (IntrMask
, 0);
1854 cpw8 (Cmd
, cpr8 (Cmd
) & (~RxOn
| ~TxOn
));
1856 spin_unlock_irqrestore (&cp
->lock
, flags
);
1858 if (cp
->pdev
&& cp
->wol_enabled
) {
1859 pci_save_state (cp
->pdev
, cp
->power_state
);
1860 cp_set_d3_state (cp
);
1866 static int cp_resume (struct pci_dev
*pdev
)
1868 struct net_device
*dev
;
1869 struct cp_private
*cp
;
1871 dev
= pci_get_drvdata (pdev
);
1872 cp
= netdev_priv(dev
);
1874 netif_device_attach (dev
);
1876 if (cp
->pdev
&& cp
->wol_enabled
) {
1877 pci_set_power_state (cp
->pdev
, 0);
1878 pci_restore_state (cp
->pdev
, cp
->power_state
);
1882 netif_start_queue (dev
);
1886 #endif /* CONFIG_PM */
1888 static struct pci_driver cp_driver
= {
1890 .id_table
= cp_pci_tbl
,
1891 .probe
= cp_init_one
,
1892 .remove
= cp_remove_one
,
1894 .resume
= cp_resume
,
1895 .suspend
= cp_suspend
,
1899 static int __init
cp_init (void)
1902 printk("%s", version
);
1904 return pci_module_init (&cp_driver
);
1907 static void __exit
cp_exit (void)
1909 pci_unregister_driver (&cp_driver
);
1912 module_init(cp_init
);
1913 module_exit(cp_exit
);