blob: e9592f523507f17d6f80a96474aaf5f27e978d14 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2=========================================================================
3 r8169.c: A RealTek RTL-8169 Gigabit Ethernet driver for Linux kernel 2.4.x.
4 --------------------------------------------------------------------
5
6 History:
7 Feb 4 2002 - created initially by ShuChen <shuchen@realtek.com.tw>.
8 May 20 2002 - Add link status force-mode and TBI mode support.
9 2004 - Massive updates. See kernel SCM system for details.
10=========================================================================
11 1. [DEPRECATED: use ethtool instead] The media can be forced in 5 modes.
12 Command: 'insmod r8169 media = SET_MEDIA'
13 Ex: 'insmod r8169 media = 0x04' will force PHY to operate in 100Mpbs Half-duplex.
14
15 SET_MEDIA can be:
16 _10_Half = 0x01
17 _10_Full = 0x02
18 _100_Half = 0x04
19 _100_Full = 0x08
20 _1000_Full = 0x10
21
22 2. Support TBI mode.
23=========================================================================
24VERSION 1.1 <2002/10/4>
25
26 The bit4:0 of MII register 4 is called "selector field", and have to be
27 00001b to indicate support of IEEE std 802.3 during NWay process of
28 exchanging Link Code Word (FLP).
29
30VERSION 1.2 <2002/11/30>
31
32 - Large style cleanup
33 - Use ether_crc in stock kernel (linux/crc32.h)
34 - Copy mc_filter setup code from 8139cp
35 (includes an optimization, and avoids set_bit use)
36
37VERSION 1.6LK <2004/04/14>
38
39 - Merge of Realtek's version 1.6
40 - Conversion to DMA API
41 - Suspend/resume
42 - Endianness
43 - Misc Rx/Tx bugs
44
45VERSION 2.2LK <2005/01/25>
46
47 - RX csum, TX csum/SG, TSO
48 - VLAN
49 - baby (< 7200) Jumbo frames support
50 - Merge of Realtek's version 2.2 (new phy)
51 */
52
53#include <linux/module.h>
54#include <linux/moduleparam.h>
55#include <linux/pci.h>
56#include <linux/netdevice.h>
57#include <linux/etherdevice.h>
58#include <linux/delay.h>
59#include <linux/ethtool.h>
60#include <linux/mii.h>
61#include <linux/if_vlan.h>
62#include <linux/crc32.h>
63#include <linux/in.h>
64#include <linux/ip.h>
65#include <linux/tcp.h>
66#include <linux/init.h>
67#include <linux/dma-mapping.h>
68
69#include <asm/io.h>
70#include <asm/irq.h>
71
Stephen Hemmingerf7ccf422005-05-27 21:11:41 +020072#ifdef CONFIG_R8169_NAPI
73#define NAPI_SUFFIX "-NAPI"
74#else
75#define NAPI_SUFFIX ""
76#endif
77
78#define RTL8169_VERSION "2.2LK" NAPI_SUFFIX
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define MODULENAME "r8169"
80#define PFX MODULENAME ": "
81
82#ifdef RTL8169_DEBUG
83#define assert(expr) \
84 if(!(expr)) { \
85 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
86 #expr,__FILE__,__FUNCTION__,__LINE__); \
87 }
88#define dprintk(fmt, args...) do { printk(PFX fmt, ## args); } while (0)
89#else
90#define assert(expr) do {} while (0)
91#define dprintk(fmt, args...) do {} while (0)
92#endif /* RTL8169_DEBUG */
93
94#define TX_BUFFS_AVAIL(tp) \
95 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
96
97#ifdef CONFIG_R8169_NAPI
98#define rtl8169_rx_skb netif_receive_skb
99#define rtl8169_rx_hwaccel_skb vlan_hwaccel_rx
100#define rtl8169_rx_quota(count, quota) min(count, quota)
101#else
102#define rtl8169_rx_skb netif_rx
103#define rtl8169_rx_hwaccel_skb vlan_hwaccel_receive_skb
104#define rtl8169_rx_quota(count, quota) count
105#endif
106
107/* media options */
108#define MAX_UNITS 8
109static int media[MAX_UNITS] = { -1, -1, -1, -1, -1, -1, -1, -1 };
110static int num_media = 0;
111
112/* Maximum events (Rx packets, etc.) to handle at each interrupt. */
113static int max_interrupt_work = 20;
114
115/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
116 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
117static int multicast_filter_limit = 32;
118
119/* MAC address length */
120#define MAC_ADDR_LEN 6
121
122#define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
123#define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
124#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
125#define EarlyTxThld 0x3F /* 0x3F means NO early transmit */
126#define RxPacketMaxSize 0x3FE8 /* 16K - 1 - ETH_HLEN - VLAN - CRC... */
127#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
128#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
129
130#define R8169_REGS_SIZE 256
131#define R8169_NAPI_WEIGHT 64
132#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
133#define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
134#define RX_BUF_SIZE 1536 /* Rx Buffer size */
135#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
136#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
137
138#define RTL8169_TX_TIMEOUT (6*HZ)
139#define RTL8169_PHY_TIMEOUT (10*HZ)
140
141/* write/read MMIO register */
142#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
143#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
144#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
145#define RTL_R8(reg) readb (ioaddr + (reg))
146#define RTL_R16(reg) readw (ioaddr + (reg))
147#define RTL_R32(reg) ((unsigned long) readl (ioaddr + (reg)))
148
149enum mac_version {
150 RTL_GIGA_MAC_VER_B = 0x00,
151 /* RTL_GIGA_MAC_VER_C = 0x03, */
152 RTL_GIGA_MAC_VER_D = 0x01,
153 RTL_GIGA_MAC_VER_E = 0x02,
154 RTL_GIGA_MAC_VER_X = 0x04 /* Greater than RTL_GIGA_MAC_VER_E */
155};
156
157enum phy_version {
158 RTL_GIGA_PHY_VER_C = 0x03, /* PHY Reg 0x03 bit0-3 == 0x0000 */
159 RTL_GIGA_PHY_VER_D = 0x04, /* PHY Reg 0x03 bit0-3 == 0x0000 */
160 RTL_GIGA_PHY_VER_E = 0x05, /* PHY Reg 0x03 bit0-3 == 0x0000 */
161 RTL_GIGA_PHY_VER_F = 0x06, /* PHY Reg 0x03 bit0-3 == 0x0001 */
162 RTL_GIGA_PHY_VER_G = 0x07, /* PHY Reg 0x03 bit0-3 == 0x0002 */
163 RTL_GIGA_PHY_VER_H = 0x08, /* PHY Reg 0x03 bit0-3 == 0x0003 */
164};
165
166
167#define _R(NAME,MAC,MASK) \
168 { .name = NAME, .mac_version = MAC, .RxConfigMask = MASK }
169
170const static struct {
171 const char *name;
172 u8 mac_version;
173 u32 RxConfigMask; /* Clears the bits supported by this chip */
174} rtl_chip_info[] = {
175 _R("RTL8169", RTL_GIGA_MAC_VER_B, 0xff7e1880),
176 _R("RTL8169s/8110s", RTL_GIGA_MAC_VER_D, 0xff7e1880),
177 _R("RTL8169s/8110s", RTL_GIGA_MAC_VER_E, 0xff7e1880),
178 _R("RTL8169s/8110s", RTL_GIGA_MAC_VER_X, 0xff7e1880),
179};
180#undef _R
181
182static struct pci_device_id rtl8169_pci_tbl[] = {
Francois Romieu53456f62005-05-27 21:11:37 +0200183 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), },
184 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), },
185 { PCI_DEVICE(0x16ec, 0x0116), },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 {0,},
187};
188
189MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
190
191static int rx_copybreak = 200;
192static int use_dac;
193
194enum RTL8169_registers {
195 MAC0 = 0, /* Ethernet hardware address. */
196 MAR0 = 8, /* Multicast filter. */
197 TxDescStartAddrLow = 0x20,
198 TxDescStartAddrHigh = 0x24,
199 TxHDescStartAddrLow = 0x28,
200 TxHDescStartAddrHigh = 0x2c,
201 FLASH = 0x30,
202 ERSR = 0x36,
203 ChipCmd = 0x37,
204 TxPoll = 0x38,
205 IntrMask = 0x3C,
206 IntrStatus = 0x3E,
207 TxConfig = 0x40,
208 RxConfig = 0x44,
209 RxMissed = 0x4C,
210 Cfg9346 = 0x50,
211 Config0 = 0x51,
212 Config1 = 0x52,
213 Config2 = 0x53,
214 Config3 = 0x54,
215 Config4 = 0x55,
216 Config5 = 0x56,
217 MultiIntr = 0x5C,
218 PHYAR = 0x60,
219 TBICSR = 0x64,
220 TBI_ANAR = 0x68,
221 TBI_LPAR = 0x6A,
222 PHYstatus = 0x6C,
223 RxMaxSize = 0xDA,
224 CPlusCmd = 0xE0,
225 IntrMitigate = 0xE2,
226 RxDescAddrLow = 0xE4,
227 RxDescAddrHigh = 0xE8,
228 EarlyTxThres = 0xEC,
229 FuncEvent = 0xF0,
230 FuncEventMask = 0xF4,
231 FuncPresetState = 0xF8,
232 FuncForceEvent = 0xFC,
233};
234
235enum RTL8169_register_content {
236 /* InterruptStatusBits */
237 SYSErr = 0x8000,
238 PCSTimeout = 0x4000,
239 SWInt = 0x0100,
240 TxDescUnavail = 0x80,
241 RxFIFOOver = 0x40,
242 LinkChg = 0x20,
243 RxOverflow = 0x10,
244 TxErr = 0x08,
245 TxOK = 0x04,
246 RxErr = 0x02,
247 RxOK = 0x01,
248
249 /* RxStatusDesc */
250 RxRES = 0x00200000,
251 RxCRC = 0x00080000,
252 RxRUNT = 0x00100000,
253 RxRWT = 0x00400000,
254
255 /* ChipCmdBits */
256 CmdReset = 0x10,
257 CmdRxEnb = 0x08,
258 CmdTxEnb = 0x04,
259 RxBufEmpty = 0x01,
260
261 /* Cfg9346Bits */
262 Cfg9346_Lock = 0x00,
263 Cfg9346_Unlock = 0xC0,
264
265 /* rx_mode_bits */
266 AcceptErr = 0x20,
267 AcceptRunt = 0x10,
268 AcceptBroadcast = 0x08,
269 AcceptMulticast = 0x04,
270 AcceptMyPhys = 0x02,
271 AcceptAllPhys = 0x01,
272
273 /* RxConfigBits */
274 RxCfgFIFOShift = 13,
275 RxCfgDMAShift = 8,
276
277 /* TxConfigBits */
278 TxInterFrameGapShift = 24,
279 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
280
281 /* TBICSR p.28 */
282 TBIReset = 0x80000000,
283 TBILoopback = 0x40000000,
284 TBINwEnable = 0x20000000,
285 TBINwRestart = 0x10000000,
286 TBILinkOk = 0x02000000,
287 TBINwComplete = 0x01000000,
288
289 /* CPlusCmd p.31 */
290 RxVlan = (1 << 6),
291 RxChkSum = (1 << 5),
292 PCIDAC = (1 << 4),
293 PCIMulRW = (1 << 3),
294
295 /* rtl8169_PHYstatus */
296 TBI_Enable = 0x80,
297 TxFlowCtrl = 0x40,
298 RxFlowCtrl = 0x20,
299 _1000bpsF = 0x10,
300 _100bps = 0x08,
301 _10bps = 0x04,
302 LinkStatus = 0x02,
303 FullDup = 0x01,
304
305 /* GIGABIT_PHY_registers */
306 PHY_CTRL_REG = 0,
307 PHY_STAT_REG = 1,
308 PHY_AUTO_NEGO_REG = 4,
309 PHY_1000_CTRL_REG = 9,
310
311 /* GIGABIT_PHY_REG_BIT */
312 PHY_Restart_Auto_Nego = 0x0200,
313 PHY_Enable_Auto_Nego = 0x1000,
314
315 /* PHY_STAT_REG = 1 */
316 PHY_Auto_Neco_Comp = 0x0020,
317
318 /* PHY_AUTO_NEGO_REG = 4 */
319 PHY_Cap_10_Half = 0x0020,
320 PHY_Cap_10_Full = 0x0040,
321 PHY_Cap_100_Half = 0x0080,
322 PHY_Cap_100_Full = 0x0100,
323
324 /* PHY_1000_CTRL_REG = 9 */
325 PHY_Cap_1000_Full = 0x0200,
326
327 PHY_Cap_Null = 0x0,
328
329 /* _MediaType */
330 _10_Half = 0x01,
331 _10_Full = 0x02,
332 _100_Half = 0x04,
333 _100_Full = 0x08,
334 _1000_Full = 0x10,
335
336 /* _TBICSRBit */
337 TBILinkOK = 0x02000000,
338};
339
340enum _DescStatusBit {
341 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
342 RingEnd = (1 << 30), /* End of descriptor ring */
343 FirstFrag = (1 << 29), /* First segment of a packet */
344 LastFrag = (1 << 28), /* Final segment of a packet */
345
346 /* Tx private */
347 LargeSend = (1 << 27), /* TCP Large Send Offload (TSO) */
348 MSSShift = 16, /* MSS value position */
349 MSSMask = 0xfff, /* MSS value + LargeSend bit: 12 bits */
350 IPCS = (1 << 18), /* Calculate IP checksum */
351 UDPCS = (1 << 17), /* Calculate UDP/IP checksum */
352 TCPCS = (1 << 16), /* Calculate TCP/IP checksum */
353 TxVlanTag = (1 << 17), /* Add VLAN tag */
354
355 /* Rx private */
356 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
357 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
358
359#define RxProtoUDP (PID1)
360#define RxProtoTCP (PID0)
361#define RxProtoIP (PID1 | PID0)
362#define RxProtoMask RxProtoIP
363
364 IPFail = (1 << 16), /* IP checksum failed */
365 UDPFail = (1 << 15), /* UDP/IP checksum failed */
366 TCPFail = (1 << 14), /* TCP/IP checksum failed */
367 RxVlanTag = (1 << 16), /* VLAN tag available */
368};
369
370#define RsvdMask 0x3fffc000
371
372struct TxDesc {
373 u32 opts1;
374 u32 opts2;
375 u64 addr;
376};
377
378struct RxDesc {
379 u32 opts1;
380 u32 opts2;
381 u64 addr;
382};
383
384struct ring_info {
385 struct sk_buff *skb;
386 u32 len;
387 u8 __pad[sizeof(void *) - sizeof(u32)];
388};
389
390struct rtl8169_private {
391 void __iomem *mmio_addr; /* memory map physical address */
392 struct pci_dev *pci_dev; /* Index of PCI device */
393 struct net_device_stats stats; /* statistics of net device */
394 spinlock_t lock; /* spin lock flag */
395 int chipset;
396 int mac_version;
397 int phy_version;
398 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
399 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
400 u32 dirty_rx;
401 u32 dirty_tx;
402 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
403 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
404 dma_addr_t TxPhyAddr;
405 dma_addr_t RxPhyAddr;
406 struct sk_buff *Rx_skbuff[NUM_RX_DESC]; /* Rx data buffers */
407 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
408 unsigned rx_buf_sz;
409 struct timer_list timer;
410 u16 cp_cmd;
411 u16 intr_mask;
412 int phy_auto_nego_reg;
413 int phy_1000_ctrl_reg;
414#ifdef CONFIG_R8169_VLAN
415 struct vlan_group *vlgrp;
416#endif
417 int (*set_speed)(struct net_device *, u8 autoneg, u16 speed, u8 duplex);
418 void (*get_settings)(struct net_device *, struct ethtool_cmd *);
419 void (*phy_reset_enable)(void __iomem *);
420 unsigned int (*phy_reset_pending)(void __iomem *);
421 unsigned int (*link_ok)(void __iomem *);
422 struct work_struct task;
423};
424
425MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@oss.sgi.com>");
426MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
427module_param_array(media, int, &num_media, 0);
428module_param(rx_copybreak, int, 0);
429module_param(use_dac, int, 0);
430MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
431MODULE_LICENSE("GPL");
432MODULE_VERSION(RTL8169_VERSION);
433
434static int rtl8169_open(struct net_device *dev);
435static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev);
436static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance,
437 struct pt_regs *regs);
438static int rtl8169_init_ring(struct net_device *dev);
439static void rtl8169_hw_start(struct net_device *dev);
440static int rtl8169_close(struct net_device *dev);
441static void rtl8169_set_rx_mode(struct net_device *dev);
442static void rtl8169_tx_timeout(struct net_device *dev);
443static struct net_device_stats *rtl8169_get_stats(struct net_device *netdev);
444static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
445 void __iomem *);
446static int rtl8169_change_mtu(struct net_device *netdev, int new_mtu);
447static void rtl8169_down(struct net_device *dev);
448
449#ifdef CONFIG_R8169_NAPI
450static int rtl8169_poll(struct net_device *dev, int *budget);
451#endif
452
453static const u16 rtl8169_intr_mask =
454 SYSErr | LinkChg | RxOverflow | RxFIFOOver | TxErr | TxOK | RxErr | RxOK;
455static const u16 rtl8169_napi_event =
456 RxOK | RxOverflow | RxFIFOOver | TxOK | TxErr;
457static const unsigned int rtl8169_rx_config =
458 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
459
460#define PHY_Cap_10_Half_Or_Less PHY_Cap_10_Half
461#define PHY_Cap_10_Full_Or_Less PHY_Cap_10_Full | PHY_Cap_10_Half_Or_Less
462#define PHY_Cap_100_Half_Or_Less PHY_Cap_100_Half | PHY_Cap_10_Full_Or_Less
463#define PHY_Cap_100_Full_Or_Less PHY_Cap_100_Full | PHY_Cap_100_Half_Or_Less
464
465static void mdio_write(void __iomem *ioaddr, int RegAddr, int value)
466{
467 int i;
468
469 RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value);
470 udelay(1000);
471
472 for (i = 2000; i > 0; i--) {
473 /* Check if the RTL8169 has completed writing to the specified MII register */
474 if (!(RTL_R32(PHYAR) & 0x80000000))
475 break;
476 udelay(100);
477 }
478}
479
480static int mdio_read(void __iomem *ioaddr, int RegAddr)
481{
482 int i, value = -1;
483
484 RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16);
485 udelay(1000);
486
487 for (i = 2000; i > 0; i--) {
488 /* Check if the RTL8169 has completed retrieving data from the specified MII register */
489 if (RTL_R32(PHYAR) & 0x80000000) {
490 value = (int) (RTL_R32(PHYAR) & 0xFFFF);
491 break;
492 }
493 udelay(100);
494 }
495 return value;
496}
497
498static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
499{
500 RTL_W16(IntrMask, 0x0000);
501
502 RTL_W16(IntrStatus, 0xffff);
503}
504
505static void rtl8169_asic_down(void __iomem *ioaddr)
506{
507 RTL_W8(ChipCmd, 0x00);
508 rtl8169_irq_mask_and_ack(ioaddr);
509 RTL_R16(CPlusCmd);
510}
511
512static unsigned int rtl8169_tbi_reset_pending(void __iomem *ioaddr)
513{
514 return RTL_R32(TBICSR) & TBIReset;
515}
516
517static unsigned int rtl8169_xmii_reset_pending(void __iomem *ioaddr)
518{
519 return mdio_read(ioaddr, 0) & 0x8000;
520}
521
522static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
523{
524 return RTL_R32(TBICSR) & TBILinkOk;
525}
526
527static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
528{
529 return RTL_R8(PHYstatus) & LinkStatus;
530}
531
532static void rtl8169_tbi_reset_enable(void __iomem *ioaddr)
533{
534 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
535}
536
537static void rtl8169_xmii_reset_enable(void __iomem *ioaddr)
538{
539 unsigned int val;
540
541 val = (mdio_read(ioaddr, PHY_CTRL_REG) | 0x8000) & 0xffff;
542 mdio_write(ioaddr, PHY_CTRL_REG, val);
543}
544
545static void rtl8169_check_link_status(struct net_device *dev,
546 struct rtl8169_private *tp, void __iomem *ioaddr)
547{
548 unsigned long flags;
549
550 spin_lock_irqsave(&tp->lock, flags);
551 if (tp->link_ok(ioaddr)) {
552 netif_carrier_on(dev);
553 printk(KERN_INFO PFX "%s: link up\n", dev->name);
554 } else
555 netif_carrier_off(dev);
556 spin_unlock_irqrestore(&tp->lock, flags);
557}
558
559static void rtl8169_link_option(int idx, u8 *autoneg, u16 *speed, u8 *duplex)
560{
561 struct {
562 u16 speed;
563 u8 duplex;
564 u8 autoneg;
565 u8 media;
566 } link_settings[] = {
567 { SPEED_10, DUPLEX_HALF, AUTONEG_DISABLE, _10_Half },
568 { SPEED_10, DUPLEX_FULL, AUTONEG_DISABLE, _10_Full },
569 { SPEED_100, DUPLEX_HALF, AUTONEG_DISABLE, _100_Half },
570 { SPEED_100, DUPLEX_FULL, AUTONEG_DISABLE, _100_Full },
571 { SPEED_1000, DUPLEX_FULL, AUTONEG_DISABLE, _1000_Full },
572 /* Make TBI happy */
573 { SPEED_1000, DUPLEX_FULL, AUTONEG_ENABLE, 0xff }
574 }, *p;
575 unsigned char option;
576
577 option = ((idx < MAX_UNITS) && (idx >= 0)) ? media[idx] : 0xff;
578
579 if ((option != 0xff) && !idx)
580 printk(KERN_WARNING PFX "media option is deprecated.\n");
581
582 for (p = link_settings; p->media != 0xff; p++) {
583 if (p->media == option)
584 break;
585 }
586 *autoneg = p->autoneg;
587 *speed = p->speed;
588 *duplex = p->duplex;
589}
590
591static void rtl8169_get_drvinfo(struct net_device *dev,
592 struct ethtool_drvinfo *info)
593{
594 struct rtl8169_private *tp = netdev_priv(dev);
595
596 strcpy(info->driver, MODULENAME);
597 strcpy(info->version, RTL8169_VERSION);
598 strcpy(info->bus_info, pci_name(tp->pci_dev));
599}
600
601static int rtl8169_get_regs_len(struct net_device *dev)
602{
603 return R8169_REGS_SIZE;
604}
605
606static int rtl8169_set_speed_tbi(struct net_device *dev,
607 u8 autoneg, u16 speed, u8 duplex)
608{
609 struct rtl8169_private *tp = netdev_priv(dev);
610 void __iomem *ioaddr = tp->mmio_addr;
611 int ret = 0;
612 u32 reg;
613
614 reg = RTL_R32(TBICSR);
615 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
616 (duplex == DUPLEX_FULL)) {
617 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
618 } else if (autoneg == AUTONEG_ENABLE)
619 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
620 else {
621 printk(KERN_WARNING PFX
622 "%s: incorrect speed setting refused in TBI mode\n",
623 dev->name);
624 ret = -EOPNOTSUPP;
625 }
626
627 return ret;
628}
629
630static int rtl8169_set_speed_xmii(struct net_device *dev,
631 u8 autoneg, u16 speed, u8 duplex)
632{
633 struct rtl8169_private *tp = netdev_priv(dev);
634 void __iomem *ioaddr = tp->mmio_addr;
635 int auto_nego, giga_ctrl;
636
637 auto_nego = mdio_read(ioaddr, PHY_AUTO_NEGO_REG);
638 auto_nego &= ~(PHY_Cap_10_Half | PHY_Cap_10_Full |
639 PHY_Cap_100_Half | PHY_Cap_100_Full);
640 giga_ctrl = mdio_read(ioaddr, PHY_1000_CTRL_REG);
641 giga_ctrl &= ~(PHY_Cap_1000_Full | PHY_Cap_Null);
642
643 if (autoneg == AUTONEG_ENABLE) {
644 auto_nego |= (PHY_Cap_10_Half | PHY_Cap_10_Full |
645 PHY_Cap_100_Half | PHY_Cap_100_Full);
646 giga_ctrl |= PHY_Cap_1000_Full;
647 } else {
648 if (speed == SPEED_10)
649 auto_nego |= PHY_Cap_10_Half | PHY_Cap_10_Full;
650 else if (speed == SPEED_100)
651 auto_nego |= PHY_Cap_100_Half | PHY_Cap_100_Full;
652 else if (speed == SPEED_1000)
653 giga_ctrl |= PHY_Cap_1000_Full;
654
655 if (duplex == DUPLEX_HALF)
656 auto_nego &= ~(PHY_Cap_10_Full | PHY_Cap_100_Full);
657 }
658
659 tp->phy_auto_nego_reg = auto_nego;
660 tp->phy_1000_ctrl_reg = giga_ctrl;
661
662 mdio_write(ioaddr, PHY_AUTO_NEGO_REG, auto_nego);
663 mdio_write(ioaddr, PHY_1000_CTRL_REG, giga_ctrl);
664 mdio_write(ioaddr, PHY_CTRL_REG, PHY_Enable_Auto_Nego |
665 PHY_Restart_Auto_Nego);
666 return 0;
667}
668
669static int rtl8169_set_speed(struct net_device *dev,
670 u8 autoneg, u16 speed, u8 duplex)
671{
672 struct rtl8169_private *tp = netdev_priv(dev);
673 int ret;
674
675 ret = tp->set_speed(dev, autoneg, speed, duplex);
676
677 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & PHY_Cap_1000_Full))
678 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
679
680 return ret;
681}
682
683static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
684{
685 struct rtl8169_private *tp = netdev_priv(dev);
686 unsigned long flags;
687 int ret;
688
689 spin_lock_irqsave(&tp->lock, flags);
690 ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
691 spin_unlock_irqrestore(&tp->lock, flags);
692
693 return ret;
694}
695
696static u32 rtl8169_get_rx_csum(struct net_device *dev)
697{
698 struct rtl8169_private *tp = netdev_priv(dev);
699
700 return tp->cp_cmd & RxChkSum;
701}
702
703static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
704{
705 struct rtl8169_private *tp = netdev_priv(dev);
706 void __iomem *ioaddr = tp->mmio_addr;
707 unsigned long flags;
708
709 spin_lock_irqsave(&tp->lock, flags);
710
711 if (data)
712 tp->cp_cmd |= RxChkSum;
713 else
714 tp->cp_cmd &= ~RxChkSum;
715
716 RTL_W16(CPlusCmd, tp->cp_cmd);
717 RTL_R16(CPlusCmd);
718
719 spin_unlock_irqrestore(&tp->lock, flags);
720
721 return 0;
722}
723
724#ifdef CONFIG_R8169_VLAN
725
726static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
727 struct sk_buff *skb)
728{
729 return (tp->vlgrp && vlan_tx_tag_present(skb)) ?
730 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
731}
732
733static void rtl8169_vlan_rx_register(struct net_device *dev,
734 struct vlan_group *grp)
735{
736 struct rtl8169_private *tp = netdev_priv(dev);
737 void __iomem *ioaddr = tp->mmio_addr;
738 unsigned long flags;
739
740 spin_lock_irqsave(&tp->lock, flags);
741 tp->vlgrp = grp;
742 if (tp->vlgrp)
743 tp->cp_cmd |= RxVlan;
744 else
745 tp->cp_cmd &= ~RxVlan;
746 RTL_W16(CPlusCmd, tp->cp_cmd);
747 RTL_R16(CPlusCmd);
748 spin_unlock_irqrestore(&tp->lock, flags);
749}
750
751static void rtl8169_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
752{
753 struct rtl8169_private *tp = netdev_priv(dev);
754 unsigned long flags;
755
756 spin_lock_irqsave(&tp->lock, flags);
757 if (tp->vlgrp)
758 tp->vlgrp->vlan_devices[vid] = NULL;
759 spin_unlock_irqrestore(&tp->lock, flags);
760}
761
762static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
763 struct sk_buff *skb)
764{
765 u32 opts2 = le32_to_cpu(desc->opts2);
766 int ret;
767
768 if (tp->vlgrp && (opts2 & RxVlanTag)) {
769 rtl8169_rx_hwaccel_skb(skb, tp->vlgrp,
770 swab16(opts2 & 0xffff));
771 ret = 0;
772 } else
773 ret = -1;
774 desc->opts2 = 0;
775 return ret;
776}
777
778#else /* !CONFIG_R8169_VLAN */
779
780static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
781 struct sk_buff *skb)
782{
783 return 0;
784}
785
786static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
787 struct sk_buff *skb)
788{
789 return -1;
790}
791
792#endif
793
794static void rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
795{
796 struct rtl8169_private *tp = netdev_priv(dev);
797 void __iomem *ioaddr = tp->mmio_addr;
798 u32 status;
799
800 cmd->supported =
801 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
802 cmd->port = PORT_FIBRE;
803 cmd->transceiver = XCVR_INTERNAL;
804
805 status = RTL_R32(TBICSR);
806 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
807 cmd->autoneg = !!(status & TBINwEnable);
808
809 cmd->speed = SPEED_1000;
810 cmd->duplex = DUPLEX_FULL; /* Always set */
811}
812
813static void rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
814{
815 struct rtl8169_private *tp = netdev_priv(dev);
816 void __iomem *ioaddr = tp->mmio_addr;
817 u8 status;
818
819 cmd->supported = SUPPORTED_10baseT_Half |
820 SUPPORTED_10baseT_Full |
821 SUPPORTED_100baseT_Half |
822 SUPPORTED_100baseT_Full |
823 SUPPORTED_1000baseT_Full |
824 SUPPORTED_Autoneg |
825 SUPPORTED_TP;
826
827 cmd->autoneg = 1;
828 cmd->advertising = ADVERTISED_TP | ADVERTISED_Autoneg;
829
830 if (tp->phy_auto_nego_reg & PHY_Cap_10_Half)
831 cmd->advertising |= ADVERTISED_10baseT_Half;
832 if (tp->phy_auto_nego_reg & PHY_Cap_10_Full)
833 cmd->advertising |= ADVERTISED_10baseT_Full;
834 if (tp->phy_auto_nego_reg & PHY_Cap_100_Half)
835 cmd->advertising |= ADVERTISED_100baseT_Half;
836 if (tp->phy_auto_nego_reg & PHY_Cap_100_Full)
837 cmd->advertising |= ADVERTISED_100baseT_Full;
838 if (tp->phy_1000_ctrl_reg & PHY_Cap_1000_Full)
839 cmd->advertising |= ADVERTISED_1000baseT_Full;
840
841 status = RTL_R8(PHYstatus);
842
843 if (status & _1000bpsF)
844 cmd->speed = SPEED_1000;
845 else if (status & _100bps)
846 cmd->speed = SPEED_100;
847 else if (status & _10bps)
848 cmd->speed = SPEED_10;
849
850 cmd->duplex = ((status & _1000bpsF) || (status & FullDup)) ?
851 DUPLEX_FULL : DUPLEX_HALF;
852}
853
854static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
855{
856 struct rtl8169_private *tp = netdev_priv(dev);
857 unsigned long flags;
858
859 spin_lock_irqsave(&tp->lock, flags);
860
861 tp->get_settings(dev, cmd);
862
863 spin_unlock_irqrestore(&tp->lock, flags);
864 return 0;
865}
866
867static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
868 void *p)
869{
870 struct rtl8169_private *tp = netdev_priv(dev);
871 unsigned long flags;
872
873 if (regs->len > R8169_REGS_SIZE)
874 regs->len = R8169_REGS_SIZE;
875
876 spin_lock_irqsave(&tp->lock, flags);
877 memcpy_fromio(p, tp->mmio_addr, regs->len);
878 spin_unlock_irqrestore(&tp->lock, flags);
879}
880
881static struct ethtool_ops rtl8169_ethtool_ops = {
882 .get_drvinfo = rtl8169_get_drvinfo,
883 .get_regs_len = rtl8169_get_regs_len,
884 .get_link = ethtool_op_get_link,
885 .get_settings = rtl8169_get_settings,
886 .set_settings = rtl8169_set_settings,
887 .get_rx_csum = rtl8169_get_rx_csum,
888 .set_rx_csum = rtl8169_set_rx_csum,
889 .get_tx_csum = ethtool_op_get_tx_csum,
890 .set_tx_csum = ethtool_op_set_tx_csum,
891 .get_sg = ethtool_op_get_sg,
892 .set_sg = ethtool_op_set_sg,
893 .get_tso = ethtool_op_get_tso,
894 .set_tso = ethtool_op_set_tso,
895 .get_regs = rtl8169_get_regs,
896};
897
898static void rtl8169_write_gmii_reg_bit(void __iomem *ioaddr, int reg, int bitnum,
899 int bitval)
900{
901 int val;
902
903 val = mdio_read(ioaddr, reg);
904 val = (bitval == 1) ?
905 val | (bitval << bitnum) : val & ~(0x0001 << bitnum);
906 mdio_write(ioaddr, reg, val & 0xffff);
907}
908
909static void rtl8169_get_mac_version(struct rtl8169_private *tp, void __iomem *ioaddr)
910{
911 const struct {
912 u32 mask;
913 int mac_version;
914 } mac_info[] = {
915 { 0x1 << 28, RTL_GIGA_MAC_VER_X },
916 { 0x1 << 26, RTL_GIGA_MAC_VER_E },
917 { 0x1 << 23, RTL_GIGA_MAC_VER_D },
918 { 0x00000000, RTL_GIGA_MAC_VER_B } /* Catch-all */
919 }, *p = mac_info;
920 u32 reg;
921
922 reg = RTL_R32(TxConfig) & 0x7c800000;
923 while ((reg & p->mask) != p->mask)
924 p++;
925 tp->mac_version = p->mac_version;
926}
927
928static void rtl8169_print_mac_version(struct rtl8169_private *tp)
929{
930 struct {
931 int version;
932 char *msg;
933 } mac_print[] = {
934 { RTL_GIGA_MAC_VER_E, "RTL_GIGA_MAC_VER_E" },
935 { RTL_GIGA_MAC_VER_D, "RTL_GIGA_MAC_VER_D" },
936 { RTL_GIGA_MAC_VER_B, "RTL_GIGA_MAC_VER_B" },
937 { 0, NULL }
938 }, *p;
939
940 for (p = mac_print; p->msg; p++) {
941 if (tp->mac_version == p->version) {
942 dprintk("mac_version == %s (%04d)\n", p->msg,
943 p->version);
944 return;
945 }
946 }
947 dprintk("mac_version == Unknown\n");
948}
949
950static void rtl8169_get_phy_version(struct rtl8169_private *tp, void __iomem *ioaddr)
951{
952 const struct {
953 u16 mask;
954 u16 set;
955 int phy_version;
956 } phy_info[] = {
957 { 0x000f, 0x0002, RTL_GIGA_PHY_VER_G },
958 { 0x000f, 0x0001, RTL_GIGA_PHY_VER_F },
959 { 0x000f, 0x0000, RTL_GIGA_PHY_VER_E },
960 { 0x0000, 0x0000, RTL_GIGA_PHY_VER_D } /* Catch-all */
961 }, *p = phy_info;
962 u16 reg;
963
964 reg = mdio_read(ioaddr, 3) & 0xffff;
965 while ((reg & p->mask) != p->set)
966 p++;
967 tp->phy_version = p->phy_version;
968}
969
970static void rtl8169_print_phy_version(struct rtl8169_private *tp)
971{
972 struct {
973 int version;
974 char *msg;
975 u32 reg;
976 } phy_print[] = {
977 { RTL_GIGA_PHY_VER_G, "RTL_GIGA_PHY_VER_G", 0x0002 },
978 { RTL_GIGA_PHY_VER_F, "RTL_GIGA_PHY_VER_F", 0x0001 },
979 { RTL_GIGA_PHY_VER_E, "RTL_GIGA_PHY_VER_E", 0x0000 },
980 { RTL_GIGA_PHY_VER_D, "RTL_GIGA_PHY_VER_D", 0x0000 },
981 { 0, NULL, 0x0000 }
982 }, *p;
983
984 for (p = phy_print; p->msg; p++) {
985 if (tp->phy_version == p->version) {
986 dprintk("phy_version == %s (%04x)\n", p->msg, p->reg);
987 return;
988 }
989 }
990 dprintk("phy_version == Unknown\n");
991}
992
993static void rtl8169_hw_phy_config(struct net_device *dev)
994{
995 struct rtl8169_private *tp = netdev_priv(dev);
996 void __iomem *ioaddr = tp->mmio_addr;
997 struct {
998 u16 regs[5]; /* Beware of bit-sign propagation */
999 } phy_magic[5] = { {
1000 { 0x0000, //w 4 15 12 0
1001 0x00a1, //w 3 15 0 00a1
1002 0x0008, //w 2 15 0 0008
1003 0x1020, //w 1 15 0 1020
1004 0x1000 } },{ //w 0 15 0 1000
1005 { 0x7000, //w 4 15 12 7
1006 0xff41, //w 3 15 0 ff41
1007 0xde60, //w 2 15 0 de60
1008 0x0140, //w 1 15 0 0140
1009 0x0077 } },{ //w 0 15 0 0077
1010 { 0xa000, //w 4 15 12 a
1011 0xdf01, //w 3 15 0 df01
1012 0xdf20, //w 2 15 0 df20
1013 0xff95, //w 1 15 0 ff95
1014 0xfa00 } },{ //w 0 15 0 fa00
1015 { 0xb000, //w 4 15 12 b
1016 0xff41, //w 3 15 0 ff41
1017 0xde20, //w 2 15 0 de20
1018 0x0140, //w 1 15 0 0140
1019 0x00bb } },{ //w 0 15 0 00bb
1020 { 0xf000, //w 4 15 12 f
1021 0xdf01, //w 3 15 0 df01
1022 0xdf20, //w 2 15 0 df20
1023 0xff95, //w 1 15 0 ff95
1024 0xbf00 } //w 0 15 0 bf00
1025 }
1026 }, *p = phy_magic;
1027 int i;
1028
1029 rtl8169_print_mac_version(tp);
1030 rtl8169_print_phy_version(tp);
1031
1032 if (tp->mac_version <= RTL_GIGA_MAC_VER_B)
1033 return;
1034 if (tp->phy_version >= RTL_GIGA_PHY_VER_H)
1035 return;
1036
1037 dprintk("MAC version != 0 && PHY version == 0 or 1\n");
1038 dprintk("Do final_reg2.cfg\n");
1039
1040 /* Shazam ! */
1041
1042 if (tp->mac_version == RTL_GIGA_MAC_VER_X) {
1043 mdio_write(ioaddr, 31, 0x0001);
1044 mdio_write(ioaddr, 9, 0x273a);
1045 mdio_write(ioaddr, 14, 0x7bfb);
1046 mdio_write(ioaddr, 27, 0x841e);
1047
1048 mdio_write(ioaddr, 31, 0x0002);
1049 mdio_write(ioaddr, 1, 0x90d0);
1050 mdio_write(ioaddr, 31, 0x0000);
1051 return;
1052 }
1053
1054 /* phy config for RTL8169s mac_version C chip */
1055 mdio_write(ioaddr, 31, 0x0001); //w 31 2 0 1
1056 mdio_write(ioaddr, 21, 0x1000); //w 21 15 0 1000
1057 mdio_write(ioaddr, 24, 0x65c7); //w 24 15 0 65c7
1058 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
1059
1060 for (i = 0; i < ARRAY_SIZE(phy_magic); i++, p++) {
1061 int val, pos = 4;
1062
1063 val = (mdio_read(ioaddr, pos) & 0x0fff) | (p->regs[0] & 0xffff);
1064 mdio_write(ioaddr, pos, val);
1065 while (--pos >= 0)
1066 mdio_write(ioaddr, pos, p->regs[4 - pos] & 0xffff);
1067 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 1); //w 4 11 11 1
1068 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
1069 }
1070 mdio_write(ioaddr, 31, 0x0000); //w 31 2 0 0
1071}
1072
1073static void rtl8169_phy_timer(unsigned long __opaque)
1074{
1075 struct net_device *dev = (struct net_device *)__opaque;
1076 struct rtl8169_private *tp = netdev_priv(dev);
1077 struct timer_list *timer = &tp->timer;
1078 void __iomem *ioaddr = tp->mmio_addr;
1079 unsigned long timeout = RTL8169_PHY_TIMEOUT;
1080
1081 assert(tp->mac_version > RTL_GIGA_MAC_VER_B);
1082 assert(tp->phy_version < RTL_GIGA_PHY_VER_H);
1083
1084 if (!(tp->phy_1000_ctrl_reg & PHY_Cap_1000_Full))
1085 return;
1086
1087 spin_lock_irq(&tp->lock);
1088
1089 if (tp->phy_reset_pending(ioaddr)) {
1090 /*
1091 * A busy loop could burn quite a few cycles on nowadays CPU.
1092 * Let's delay the execution of the timer for a few ticks.
1093 */
1094 timeout = HZ/10;
1095 goto out_mod_timer;
1096 }
1097
1098 if (tp->link_ok(ioaddr))
1099 goto out_unlock;
1100
1101 printk(KERN_WARNING PFX "%s: PHY reset until link up\n", dev->name);
1102
1103 tp->phy_reset_enable(ioaddr);
1104
1105out_mod_timer:
1106 mod_timer(timer, jiffies + timeout);
1107out_unlock:
1108 spin_unlock_irq(&tp->lock);
1109}
1110
1111static inline void rtl8169_delete_timer(struct net_device *dev)
1112{
1113 struct rtl8169_private *tp = netdev_priv(dev);
1114 struct timer_list *timer = &tp->timer;
1115
1116 if ((tp->mac_version <= RTL_GIGA_MAC_VER_B) ||
1117 (tp->phy_version >= RTL_GIGA_PHY_VER_H))
1118 return;
1119
1120 del_timer_sync(timer);
1121}
1122
1123static inline void rtl8169_request_timer(struct net_device *dev)
1124{
1125 struct rtl8169_private *tp = netdev_priv(dev);
1126 struct timer_list *timer = &tp->timer;
1127
1128 if ((tp->mac_version <= RTL_GIGA_MAC_VER_B) ||
1129 (tp->phy_version >= RTL_GIGA_PHY_VER_H))
1130 return;
1131
1132 init_timer(timer);
1133 timer->expires = jiffies + RTL8169_PHY_TIMEOUT;
1134 timer->data = (unsigned long)(dev);
1135 timer->function = rtl8169_phy_timer;
1136 add_timer(timer);
1137}
1138
1139#ifdef CONFIG_NET_POLL_CONTROLLER
1140/*
1141 * Polling 'interrupt' - used by things like netconsole to send skbs
1142 * without having to re-enable interrupts. It's not called while
1143 * the interrupt routine is executing.
1144 */
1145static void rtl8169_netpoll(struct net_device *dev)
1146{
1147 struct rtl8169_private *tp = netdev_priv(dev);
1148 struct pci_dev *pdev = tp->pci_dev;
1149
1150 disable_irq(pdev->irq);
1151 rtl8169_interrupt(pdev->irq, dev, NULL);
1152 enable_irq(pdev->irq);
1153}
1154#endif
1155
1156static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
1157 void __iomem *ioaddr)
1158{
1159 iounmap(ioaddr);
1160 pci_release_regions(pdev);
1161 pci_disable_device(pdev);
1162 free_netdev(dev);
1163}
1164
1165static int __devinit
1166rtl8169_init_board(struct pci_dev *pdev, struct net_device **dev_out,
1167 void __iomem **ioaddr_out)
1168{
1169 void __iomem *ioaddr;
1170 struct net_device *dev;
1171 struct rtl8169_private *tp;
1172 int rc = -ENOMEM, i, acpi_idle_state = 0, pm_cap;
1173
1174 assert(ioaddr_out != NULL);
1175
1176 /* dev zeroed in alloc_etherdev */
1177 dev = alloc_etherdev(sizeof (*tp));
1178 if (dev == NULL) {
1179 printk(KERN_ERR PFX "unable to alloc new ethernet\n");
1180 goto err_out;
1181 }
1182
1183 SET_MODULE_OWNER(dev);
1184 SET_NETDEV_DEV(dev, &pdev->dev);
1185 tp = netdev_priv(dev);
1186
1187 /* enable device (incl. PCI PM wakeup and hotplug setup) */
1188 rc = pci_enable_device(pdev);
1189 if (rc) {
1190 printk(KERN_ERR PFX "%s: enable failure\n", pci_name(pdev));
1191 goto err_out_free_dev;
1192 }
1193
1194 rc = pci_set_mwi(pdev);
1195 if (rc < 0)
1196 goto err_out_disable;
1197
1198 /* save power state before pci_enable_device overwrites it */
1199 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
1200 if (pm_cap) {
1201 u16 pwr_command;
1202
1203 pci_read_config_word(pdev, pm_cap + PCI_PM_CTRL, &pwr_command);
1204 acpi_idle_state = pwr_command & PCI_PM_CTRL_STATE_MASK;
1205 } else {
1206 printk(KERN_ERR PFX
1207 "Cannot find PowerManagement capability, aborting.\n");
1208 goto err_out_mwi;
1209 }
1210
1211 /* make sure PCI base addr 1 is MMIO */
1212 if (!(pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
1213 printk(KERN_ERR PFX
1214 "region #1 not an MMIO resource, aborting\n");
1215 rc = -ENODEV;
1216 goto err_out_mwi;
1217 }
1218 /* check for weird/broken PCI region reporting */
1219 if (pci_resource_len(pdev, 1) < R8169_REGS_SIZE) {
1220 printk(KERN_ERR PFX "Invalid PCI region size(s), aborting\n");
1221 rc = -ENODEV;
1222 goto err_out_mwi;
1223 }
1224
1225 rc = pci_request_regions(pdev, MODULENAME);
1226 if (rc) {
1227 printk(KERN_ERR PFX "%s: could not request regions.\n",
1228 pci_name(pdev));
1229 goto err_out_mwi;
1230 }
1231
1232 tp->cp_cmd = PCIMulRW | RxChkSum;
1233
1234 if ((sizeof(dma_addr_t) > 4) &&
1235 !pci_set_dma_mask(pdev, DMA_64BIT_MASK) && use_dac) {
1236 tp->cp_cmd |= PCIDAC;
1237 dev->features |= NETIF_F_HIGHDMA;
1238 } else {
1239 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1240 if (rc < 0) {
1241 printk(KERN_ERR PFX "DMA configuration failed.\n");
1242 goto err_out_free_res;
1243 }
1244 }
1245
1246 pci_set_master(pdev);
1247
1248 /* ioremap MMIO region */
1249 ioaddr = ioremap(pci_resource_start(pdev, 1), R8169_REGS_SIZE);
1250 if (ioaddr == NULL) {
1251 printk(KERN_ERR PFX "cannot remap MMIO, aborting\n");
1252 rc = -EIO;
1253 goto err_out_free_res;
1254 }
1255
1256 /* Unneeded ? Don't mess with Mrs. Murphy. */
1257 rtl8169_irq_mask_and_ack(ioaddr);
1258
1259 /* Soft reset the chip. */
1260 RTL_W8(ChipCmd, CmdReset);
1261
1262 /* Check that the chip has finished the reset. */
1263 for (i = 1000; i > 0; i--) {
1264 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1265 break;
1266 udelay(10);
1267 }
1268
1269 /* Identify chip attached to board */
1270 rtl8169_get_mac_version(tp, ioaddr);
1271 rtl8169_get_phy_version(tp, ioaddr);
1272
1273 rtl8169_print_mac_version(tp);
1274 rtl8169_print_phy_version(tp);
1275
1276 for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--) {
1277 if (tp->mac_version == rtl_chip_info[i].mac_version)
1278 break;
1279 }
1280 if (i < 0) {
1281 /* Unknown chip: assume array element #0, original RTL-8169 */
1282 printk(KERN_DEBUG PFX
1283 "PCI device %s: unknown chip version, assuming %s\n",
1284 pci_name(pdev), rtl_chip_info[0].name);
1285 i++;
1286 }
1287 tp->chipset = i;
1288
1289 *ioaddr_out = ioaddr;
1290 *dev_out = dev;
1291out:
1292 return rc;
1293
1294err_out_free_res:
1295 pci_release_regions(pdev);
1296
1297err_out_mwi:
1298 pci_clear_mwi(pdev);
1299
1300err_out_disable:
1301 pci_disable_device(pdev);
1302
1303err_out_free_dev:
1304 free_netdev(dev);
1305err_out:
1306 *ioaddr_out = NULL;
1307 *dev_out = NULL;
1308 goto out;
1309}
1310
1311static int __devinit
1312rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
1313{
1314 struct net_device *dev = NULL;
1315 struct rtl8169_private *tp;
1316 void __iomem *ioaddr = NULL;
1317 static int board_idx = -1;
1318 static int printed_version = 0;
1319 u8 autoneg, duplex;
1320 u16 speed;
1321 int i, rc;
1322
1323 assert(pdev != NULL);
1324 assert(ent != NULL);
1325
1326 board_idx++;
1327
1328 if (!printed_version) {
1329 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
1330 MODULENAME, RTL8169_VERSION);
1331 printed_version = 1;
1332 }
1333
1334 rc = rtl8169_init_board(pdev, &dev, &ioaddr);
1335 if (rc)
1336 return rc;
1337
1338 tp = netdev_priv(dev);
1339 assert(ioaddr != NULL);
1340
1341 if (RTL_R8(PHYstatus) & TBI_Enable) {
1342 tp->set_speed = rtl8169_set_speed_tbi;
1343 tp->get_settings = rtl8169_gset_tbi;
1344 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
1345 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
1346 tp->link_ok = rtl8169_tbi_link_ok;
1347
1348 tp->phy_1000_ctrl_reg = PHY_Cap_1000_Full; /* Implied by TBI */
1349 } else {
1350 tp->set_speed = rtl8169_set_speed_xmii;
1351 tp->get_settings = rtl8169_gset_xmii;
1352 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
1353 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
1354 tp->link_ok = rtl8169_xmii_link_ok;
1355 }
1356
1357 /* Get MAC address. FIXME: read EEPROM */
1358 for (i = 0; i < MAC_ADDR_LEN; i++)
1359 dev->dev_addr[i] = RTL_R8(MAC0 + i);
1360
1361 dev->open = rtl8169_open;
1362 dev->hard_start_xmit = rtl8169_start_xmit;
1363 dev->get_stats = rtl8169_get_stats;
1364 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
1365 dev->stop = rtl8169_close;
1366 dev->tx_timeout = rtl8169_tx_timeout;
1367 dev->set_multicast_list = rtl8169_set_rx_mode;
1368 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
1369 dev->irq = pdev->irq;
1370 dev->base_addr = (unsigned long) ioaddr;
1371 dev->change_mtu = rtl8169_change_mtu;
1372
1373#ifdef CONFIG_R8169_NAPI
1374 dev->poll = rtl8169_poll;
1375 dev->weight = R8169_NAPI_WEIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376#endif
1377
1378#ifdef CONFIG_R8169_VLAN
1379 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
1380 dev->vlan_rx_register = rtl8169_vlan_rx_register;
1381 dev->vlan_rx_kill_vid = rtl8169_vlan_rx_kill_vid;
1382#endif
1383
1384#ifdef CONFIG_NET_POLL_CONTROLLER
1385 dev->poll_controller = rtl8169_netpoll;
1386#endif
1387
1388 tp->intr_mask = 0xffff;
1389 tp->pci_dev = pdev;
1390 tp->mmio_addr = ioaddr;
1391
1392 spin_lock_init(&tp->lock);
1393
1394 rc = register_netdev(dev);
1395 if (rc) {
1396 rtl8169_release_board(pdev, dev, ioaddr);
1397 return rc;
1398 }
1399
1400 printk(KERN_DEBUG "%s: Identified chip type is '%s'.\n", dev->name,
1401 rtl_chip_info[tp->chipset].name);
1402
1403 pci_set_drvdata(pdev, dev);
1404
1405 printk(KERN_INFO "%s: %s at 0x%lx, "
1406 "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x, "
1407 "IRQ %d\n",
1408 dev->name,
1409 rtl_chip_info[ent->driver_data].name,
1410 dev->base_addr,
1411 dev->dev_addr[0], dev->dev_addr[1],
1412 dev->dev_addr[2], dev->dev_addr[3],
1413 dev->dev_addr[4], dev->dev_addr[5], dev->irq);
1414
1415 rtl8169_hw_phy_config(dev);
1416
1417 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
1418 RTL_W8(0x82, 0x01);
1419
1420 if (tp->mac_version < RTL_GIGA_MAC_VER_E) {
1421 dprintk("Set PCI Latency=0x40\n");
1422 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x40);
1423 }
1424
1425 if (tp->mac_version == RTL_GIGA_MAC_VER_D) {
1426 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
1427 RTL_W8(0x82, 0x01);
1428 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
1429 mdio_write(ioaddr, 0x0b, 0x0000); //w 0x0b 15 0 0
1430 }
1431
1432 rtl8169_link_option(board_idx, &autoneg, &speed, &duplex);
1433
1434 rtl8169_set_speed(dev, autoneg, speed, duplex);
1435
1436 if (RTL_R8(PHYstatus) & TBI_Enable)
1437 printk(KERN_INFO PFX "%s: TBI auto-negotiating\n", dev->name);
1438
1439 return 0;
1440}
1441
1442static void __devexit
1443rtl8169_remove_one(struct pci_dev *pdev)
1444{
1445 struct net_device *dev = pci_get_drvdata(pdev);
1446 struct rtl8169_private *tp = netdev_priv(dev);
1447
1448 assert(dev != NULL);
1449 assert(tp != NULL);
1450
1451 unregister_netdev(dev);
1452 rtl8169_release_board(pdev, dev, tp->mmio_addr);
1453 pci_set_drvdata(pdev, NULL);
1454}
1455
1456#ifdef CONFIG_PM
1457
Pavel Machek05adc3b2005-04-16 15:25:25 -07001458static int rtl8169_suspend(struct pci_dev *pdev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
1460 struct net_device *dev = pci_get_drvdata(pdev);
1461 struct rtl8169_private *tp = netdev_priv(dev);
1462 void __iomem *ioaddr = tp->mmio_addr;
1463 unsigned long flags;
1464
1465 if (!netif_running(dev))
1466 return 0;
1467
1468 netif_device_detach(dev);
1469 netif_stop_queue(dev);
1470 spin_lock_irqsave(&tp->lock, flags);
1471
1472 /* Disable interrupts, stop Rx and Tx */
1473 RTL_W16(IntrMask, 0);
1474 RTL_W8(ChipCmd, 0);
1475
1476 /* Update the error counts. */
1477 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
1478 RTL_W32(RxMissed, 0);
1479 spin_unlock_irqrestore(&tp->lock, flags);
1480
1481 return 0;
1482}
1483
1484static int rtl8169_resume(struct pci_dev *pdev)
1485{
1486 struct net_device *dev = pci_get_drvdata(pdev);
1487
1488 if (!netif_running(dev))
1489 return 0;
1490
1491 netif_device_attach(dev);
1492 rtl8169_hw_start(dev);
1493
1494 return 0;
1495}
1496
1497#endif /* CONFIG_PM */
1498
1499static void rtl8169_set_rxbufsize(struct rtl8169_private *tp,
1500 struct net_device *dev)
1501{
1502 unsigned int mtu = dev->mtu;
1503
1504 tp->rx_buf_sz = (mtu > RX_BUF_SIZE) ? mtu + ETH_HLEN + 8 : RX_BUF_SIZE;
1505}
1506
1507static int rtl8169_open(struct net_device *dev)
1508{
1509 struct rtl8169_private *tp = netdev_priv(dev);
1510 struct pci_dev *pdev = tp->pci_dev;
1511 int retval;
1512
1513 rtl8169_set_rxbufsize(tp, dev);
1514
1515 retval =
1516 request_irq(dev->irq, rtl8169_interrupt, SA_SHIRQ, dev->name, dev);
1517 if (retval < 0)
1518 goto out;
1519
1520 retval = -ENOMEM;
1521
1522 /*
1523 * Rx and Tx desscriptors needs 256 bytes alignment.
1524 * pci_alloc_consistent provides more.
1525 */
1526 tp->TxDescArray = pci_alloc_consistent(pdev, R8169_TX_RING_BYTES,
1527 &tp->TxPhyAddr);
1528 if (!tp->TxDescArray)
1529 goto err_free_irq;
1530
1531 tp->RxDescArray = pci_alloc_consistent(pdev, R8169_RX_RING_BYTES,
1532 &tp->RxPhyAddr);
1533 if (!tp->RxDescArray)
1534 goto err_free_tx;
1535
1536 retval = rtl8169_init_ring(dev);
1537 if (retval < 0)
1538 goto err_free_rx;
1539
1540 INIT_WORK(&tp->task, NULL, dev);
1541
1542 rtl8169_hw_start(dev);
1543
1544 rtl8169_request_timer(dev);
1545
1546 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
1547out:
1548 return retval;
1549
1550err_free_rx:
1551 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
1552 tp->RxPhyAddr);
1553err_free_tx:
1554 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
1555 tp->TxPhyAddr);
1556err_free_irq:
1557 free_irq(dev->irq, dev);
1558 goto out;
1559}
1560
1561static void rtl8169_hw_reset(void __iomem *ioaddr)
1562{
1563 /* Disable interrupts */
1564 rtl8169_irq_mask_and_ack(ioaddr);
1565
1566 /* Reset the chipset */
1567 RTL_W8(ChipCmd, CmdReset);
1568
1569 /* PCI commit */
1570 RTL_R8(ChipCmd);
1571}
1572
1573static void
1574rtl8169_hw_start(struct net_device *dev)
1575{
1576 struct rtl8169_private *tp = netdev_priv(dev);
1577 void __iomem *ioaddr = tp->mmio_addr;
1578 u32 i;
1579
1580 /* Soft reset the chip. */
1581 RTL_W8(ChipCmd, CmdReset);
1582
1583 /* Check that the chip has finished the reset. */
1584 for (i = 1000; i > 0; i--) {
1585 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1586 break;
1587 udelay(10);
1588 }
1589
1590 RTL_W8(Cfg9346, Cfg9346_Unlock);
1591 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
1592 RTL_W8(EarlyTxThres, EarlyTxThld);
1593
Francois Romieu126fa4b2005-05-12 20:09:17 -04001594 /* Low hurts. Let's disable the filtering. */
1595 RTL_W16(RxMaxSize, 16383);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
1597 /* Set Rx Config register */
1598 i = rtl8169_rx_config |
1599 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
1600 RTL_W32(RxConfig, i);
1601
1602 /* Set DMA burst size and Interframe Gap Time */
1603 RTL_W32(TxConfig,
1604 (TX_DMA_BURST << TxDMAShift) | (InterFrameGap <<
1605 TxInterFrameGapShift));
1606 tp->cp_cmd |= RTL_R16(CPlusCmd);
1607 RTL_W16(CPlusCmd, tp->cp_cmd);
1608
1609 if ((tp->mac_version == RTL_GIGA_MAC_VER_D) ||
1610 (tp->mac_version == RTL_GIGA_MAC_VER_E)) {
1611 dprintk(KERN_INFO PFX "Set MAC Reg C+CR Offset 0xE0. "
1612 "Bit-3 and bit-14 MUST be 1\n");
1613 tp->cp_cmd |= (1 << 14) | PCIMulRW;
1614 RTL_W16(CPlusCmd, tp->cp_cmd);
1615 }
1616
1617 /*
1618 * Undocumented corner. Supposedly:
1619 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
1620 */
1621 RTL_W16(IntrMitigate, 0x0000);
1622
1623 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr & DMA_32BIT_MASK));
1624 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr >> 32));
1625 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr & DMA_32BIT_MASK));
1626 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr >> 32));
1627 RTL_W8(Cfg9346, Cfg9346_Lock);
1628 udelay(10);
1629
1630 RTL_W32(RxMissed, 0);
1631
1632 rtl8169_set_rx_mode(dev);
1633
1634 /* no early-rx interrupts */
1635 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
1636
1637 /* Enable all known interrupts by setting the interrupt mask. */
1638 RTL_W16(IntrMask, rtl8169_intr_mask);
1639
1640 netif_start_queue(dev);
1641}
1642
1643static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
1644{
1645 struct rtl8169_private *tp = netdev_priv(dev);
1646 int ret = 0;
1647
1648 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
1649 return -EINVAL;
1650
1651 dev->mtu = new_mtu;
1652
1653 if (!netif_running(dev))
1654 goto out;
1655
1656 rtl8169_down(dev);
1657
1658 rtl8169_set_rxbufsize(tp, dev);
1659
1660 ret = rtl8169_init_ring(dev);
1661 if (ret < 0)
1662 goto out;
1663
1664 netif_poll_enable(dev);
1665
1666 rtl8169_hw_start(dev);
1667
1668 rtl8169_request_timer(dev);
1669
1670out:
1671 return ret;
1672}
1673
1674static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
1675{
1676 desc->addr = 0x0badbadbadbadbadull;
1677 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
1678}
1679
1680static void rtl8169_free_rx_skb(struct rtl8169_private *tp,
1681 struct sk_buff **sk_buff, struct RxDesc *desc)
1682{
1683 struct pci_dev *pdev = tp->pci_dev;
1684
1685 pci_unmap_single(pdev, le64_to_cpu(desc->addr), tp->rx_buf_sz,
1686 PCI_DMA_FROMDEVICE);
1687 dev_kfree_skb(*sk_buff);
1688 *sk_buff = NULL;
1689 rtl8169_make_unusable_by_asic(desc);
1690}
1691
1692static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
1693{
1694 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
1695
1696 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
1697}
1698
1699static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
1700 u32 rx_buf_sz)
1701{
1702 desc->addr = cpu_to_le64(mapping);
1703 wmb();
1704 rtl8169_mark_to_asic(desc, rx_buf_sz);
1705}
1706
1707static int rtl8169_alloc_rx_skb(struct pci_dev *pdev, struct sk_buff **sk_buff,
1708 struct RxDesc *desc, int rx_buf_sz)
1709{
1710 struct sk_buff *skb;
1711 dma_addr_t mapping;
1712 int ret = 0;
1713
1714 skb = dev_alloc_skb(rx_buf_sz + NET_IP_ALIGN);
1715 if (!skb)
1716 goto err_out;
1717
1718 skb_reserve(skb, NET_IP_ALIGN);
1719 *sk_buff = skb;
1720
1721 mapping = pci_map_single(pdev, skb->tail, rx_buf_sz,
1722 PCI_DMA_FROMDEVICE);
1723
1724 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
1725
1726out:
1727 return ret;
1728
1729err_out:
1730 ret = -ENOMEM;
1731 rtl8169_make_unusable_by_asic(desc);
1732 goto out;
1733}
1734
1735static void rtl8169_rx_clear(struct rtl8169_private *tp)
1736{
1737 int i;
1738
1739 for (i = 0; i < NUM_RX_DESC; i++) {
1740 if (tp->Rx_skbuff[i]) {
1741 rtl8169_free_rx_skb(tp, tp->Rx_skbuff + i,
1742 tp->RxDescArray + i);
1743 }
1744 }
1745}
1746
1747static u32 rtl8169_rx_fill(struct rtl8169_private *tp, struct net_device *dev,
1748 u32 start, u32 end)
1749{
1750 u32 cur;
1751
1752 for (cur = start; end - cur > 0; cur++) {
1753 int ret, i = cur % NUM_RX_DESC;
1754
1755 if (tp->Rx_skbuff[i])
1756 continue;
1757
1758 ret = rtl8169_alloc_rx_skb(tp->pci_dev, tp->Rx_skbuff + i,
1759 tp->RxDescArray + i, tp->rx_buf_sz);
1760 if (ret < 0)
1761 break;
1762 }
1763 return cur - start;
1764}
1765
1766static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
1767{
1768 desc->opts1 |= cpu_to_le32(RingEnd);
1769}
1770
1771static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
1772{
1773 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
1774}
1775
1776static int rtl8169_init_ring(struct net_device *dev)
1777{
1778 struct rtl8169_private *tp = netdev_priv(dev);
1779
1780 rtl8169_init_ring_indexes(tp);
1781
1782 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
1783 memset(tp->Rx_skbuff, 0x0, NUM_RX_DESC * sizeof(struct sk_buff *));
1784
1785 if (rtl8169_rx_fill(tp, dev, 0, NUM_RX_DESC) != NUM_RX_DESC)
1786 goto err_out;
1787
1788 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
1789
1790 return 0;
1791
1792err_out:
1793 rtl8169_rx_clear(tp);
1794 return -ENOMEM;
1795}
1796
1797static void rtl8169_unmap_tx_skb(struct pci_dev *pdev, struct ring_info *tx_skb,
1798 struct TxDesc *desc)
1799{
1800 unsigned int len = tx_skb->len;
1801
1802 pci_unmap_single(pdev, le64_to_cpu(desc->addr), len, PCI_DMA_TODEVICE);
1803 desc->opts1 = 0x00;
1804 desc->opts2 = 0x00;
1805 desc->addr = 0x00;
1806 tx_skb->len = 0;
1807}
1808
1809static void rtl8169_tx_clear(struct rtl8169_private *tp)
1810{
1811 unsigned int i;
1812
1813 for (i = tp->dirty_tx; i < tp->dirty_tx + NUM_TX_DESC; i++) {
1814 unsigned int entry = i % NUM_TX_DESC;
1815 struct ring_info *tx_skb = tp->tx_skb + entry;
1816 unsigned int len = tx_skb->len;
1817
1818 if (len) {
1819 struct sk_buff *skb = tx_skb->skb;
1820
1821 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb,
1822 tp->TxDescArray + entry);
1823 if (skb) {
1824 dev_kfree_skb(skb);
1825 tx_skb->skb = NULL;
1826 }
1827 tp->stats.tx_dropped++;
1828 }
1829 }
1830 tp->cur_tx = tp->dirty_tx = 0;
1831}
1832
1833static void rtl8169_schedule_work(struct net_device *dev, void (*task)(void *))
1834{
1835 struct rtl8169_private *tp = netdev_priv(dev);
1836
1837 PREPARE_WORK(&tp->task, task, dev);
1838 schedule_delayed_work(&tp->task, 4);
1839}
1840
1841static void rtl8169_wait_for_quiescence(struct net_device *dev)
1842{
1843 struct rtl8169_private *tp = netdev_priv(dev);
1844 void __iomem *ioaddr = tp->mmio_addr;
1845
1846 synchronize_irq(dev->irq);
1847
1848 /* Wait for any pending NAPI task to complete */
1849 netif_poll_disable(dev);
1850
1851 rtl8169_irq_mask_and_ack(ioaddr);
1852
1853 netif_poll_enable(dev);
1854}
1855
1856static void rtl8169_reinit_task(void *_data)
1857{
1858 struct net_device *dev = _data;
1859 int ret;
1860
1861 if (netif_running(dev)) {
1862 rtl8169_wait_for_quiescence(dev);
1863 rtl8169_close(dev);
1864 }
1865
1866 ret = rtl8169_open(dev);
1867 if (unlikely(ret < 0)) {
1868 if (net_ratelimit()) {
1869 printk(PFX KERN_ERR "%s: reinit failure (status = %d)."
1870 " Rescheduling.\n", dev->name, ret);
1871 }
1872 rtl8169_schedule_work(dev, rtl8169_reinit_task);
1873 }
1874}
1875
1876static void rtl8169_reset_task(void *_data)
1877{
1878 struct net_device *dev = _data;
1879 struct rtl8169_private *tp = netdev_priv(dev);
1880
1881 if (!netif_running(dev))
1882 return;
1883
1884 rtl8169_wait_for_quiescence(dev);
1885
1886 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr);
1887 rtl8169_tx_clear(tp);
1888
1889 if (tp->dirty_rx == tp->cur_rx) {
1890 rtl8169_init_ring_indexes(tp);
1891 rtl8169_hw_start(dev);
1892 netif_wake_queue(dev);
1893 } else {
1894 if (net_ratelimit()) {
1895 printk(PFX KERN_EMERG "%s: Rx buffers shortage\n",
1896 dev->name);
1897 }
1898 rtl8169_schedule_work(dev, rtl8169_reset_task);
1899 }
1900}
1901
1902static void rtl8169_tx_timeout(struct net_device *dev)
1903{
1904 struct rtl8169_private *tp = netdev_priv(dev);
1905
1906 rtl8169_hw_reset(tp->mmio_addr);
1907
1908 /* Let's wait a bit while any (async) irq lands on */
1909 rtl8169_schedule_work(dev, rtl8169_reset_task);
1910}
1911
1912static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
1913 u32 opts1)
1914{
1915 struct skb_shared_info *info = skb_shinfo(skb);
1916 unsigned int cur_frag, entry;
1917 struct TxDesc *txd;
1918
1919 entry = tp->cur_tx;
1920 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
1921 skb_frag_t *frag = info->frags + cur_frag;
1922 dma_addr_t mapping;
1923 u32 status, len;
1924 void *addr;
1925
1926 entry = (entry + 1) % NUM_TX_DESC;
1927
1928 txd = tp->TxDescArray + entry;
1929 len = frag->size;
1930 addr = ((void *) page_address(frag->page)) + frag->page_offset;
1931 mapping = pci_map_single(tp->pci_dev, addr, len, PCI_DMA_TODEVICE);
1932
1933 /* anti gcc 2.95.3 bugware (sic) */
1934 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
1935
1936 txd->opts1 = cpu_to_le32(status);
1937 txd->addr = cpu_to_le64(mapping);
1938
1939 tp->tx_skb[entry].len = len;
1940 }
1941
1942 if (cur_frag) {
1943 tp->tx_skb[entry].skb = skb;
1944 txd->opts1 |= cpu_to_le32(LastFrag);
1945 }
1946
1947 return cur_frag;
1948}
1949
1950static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
1951{
1952 if (dev->features & NETIF_F_TSO) {
1953 u32 mss = skb_shinfo(skb)->tso_size;
1954
1955 if (mss)
1956 return LargeSend | ((mss & MSSMask) << MSSShift);
1957 }
1958 if (skb->ip_summed == CHECKSUM_HW) {
1959 const struct iphdr *ip = skb->nh.iph;
1960
1961 if (ip->protocol == IPPROTO_TCP)
1962 return IPCS | TCPCS;
1963 else if (ip->protocol == IPPROTO_UDP)
1964 return IPCS | UDPCS;
1965 WARN_ON(1); /* we need a WARN() */
1966 }
1967 return 0;
1968}
1969
1970static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev)
1971{
1972 struct rtl8169_private *tp = netdev_priv(dev);
1973 unsigned int frags, entry = tp->cur_tx % NUM_TX_DESC;
1974 struct TxDesc *txd = tp->TxDescArray + entry;
1975 void __iomem *ioaddr = tp->mmio_addr;
1976 dma_addr_t mapping;
1977 u32 status, len;
1978 u32 opts1;
1979 int ret = 0;
1980
1981 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
1982 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when queue awake!\n",
1983 dev->name);
1984 goto err_stop;
1985 }
1986
1987 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
1988 goto err_stop;
1989
1990 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
1991
1992 frags = rtl8169_xmit_frags(tp, skb, opts1);
1993 if (frags) {
1994 len = skb_headlen(skb);
1995 opts1 |= FirstFrag;
1996 } else {
1997 len = skb->len;
1998
1999 if (unlikely(len < ETH_ZLEN)) {
2000 skb = skb_padto(skb, ETH_ZLEN);
2001 if (!skb)
2002 goto err_update_stats;
2003 len = ETH_ZLEN;
2004 }
2005
2006 opts1 |= FirstFrag | LastFrag;
2007 tp->tx_skb[entry].skb = skb;
2008 }
2009
2010 mapping = pci_map_single(tp->pci_dev, skb->data, len, PCI_DMA_TODEVICE);
2011
2012 tp->tx_skb[entry].len = len;
2013 txd->addr = cpu_to_le64(mapping);
2014 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
2015
2016 wmb();
2017
2018 /* anti gcc 2.95.3 bugware (sic) */
2019 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
2020 txd->opts1 = cpu_to_le32(status);
2021
2022 dev->trans_start = jiffies;
2023
2024 tp->cur_tx += frags + 1;
2025
2026 smp_wmb();
2027
2028 RTL_W8(TxPoll, 0x40); /* set polling bit */
2029
2030 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
2031 netif_stop_queue(dev);
2032 smp_rmb();
2033 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
2034 netif_wake_queue(dev);
2035 }
2036
2037out:
2038 return ret;
2039
2040err_stop:
2041 netif_stop_queue(dev);
2042 ret = 1;
2043err_update_stats:
2044 tp->stats.tx_dropped++;
2045 goto out;
2046}
2047
2048static void rtl8169_pcierr_interrupt(struct net_device *dev)
2049{
2050 struct rtl8169_private *tp = netdev_priv(dev);
2051 struct pci_dev *pdev = tp->pci_dev;
2052 void __iomem *ioaddr = tp->mmio_addr;
2053 u16 pci_status, pci_cmd;
2054
2055 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
2056 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
2057
2058 printk(KERN_ERR PFX "%s: PCI error (cmd = 0x%04x, status = 0x%04x).\n",
2059 dev->name, pci_cmd, pci_status);
2060
2061 /*
2062 * The recovery sequence below admits a very elaborated explanation:
2063 * - it seems to work;
2064 * - I did not see what else could be done.
2065 *
2066 * Feel free to adjust to your needs.
2067 */
2068 pci_write_config_word(pdev, PCI_COMMAND,
2069 pci_cmd | PCI_COMMAND_SERR | PCI_COMMAND_PARITY);
2070
2071 pci_write_config_word(pdev, PCI_STATUS,
2072 pci_status & (PCI_STATUS_DETECTED_PARITY |
2073 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
2074 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
2075
2076 /* The infamous DAC f*ckup only happens at boot time */
2077 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
2078 printk(KERN_INFO PFX "%s: disabling PCI DAC.\n", dev->name);
2079 tp->cp_cmd &= ~PCIDAC;
2080 RTL_W16(CPlusCmd, tp->cp_cmd);
2081 dev->features &= ~NETIF_F_HIGHDMA;
2082 rtl8169_schedule_work(dev, rtl8169_reinit_task);
2083 }
2084
2085 rtl8169_hw_reset(ioaddr);
2086}
2087
2088static void
2089rtl8169_tx_interrupt(struct net_device *dev, struct rtl8169_private *tp,
2090 void __iomem *ioaddr)
2091{
2092 unsigned int dirty_tx, tx_left;
2093
2094 assert(dev != NULL);
2095 assert(tp != NULL);
2096 assert(ioaddr != NULL);
2097
2098 dirty_tx = tp->dirty_tx;
2099 smp_rmb();
2100 tx_left = tp->cur_tx - dirty_tx;
2101
2102 while (tx_left > 0) {
2103 unsigned int entry = dirty_tx % NUM_TX_DESC;
2104 struct ring_info *tx_skb = tp->tx_skb + entry;
2105 u32 len = tx_skb->len;
2106 u32 status;
2107
2108 rmb();
2109 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
2110 if (status & DescOwn)
2111 break;
2112
2113 tp->stats.tx_bytes += len;
2114 tp->stats.tx_packets++;
2115
2116 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb, tp->TxDescArray + entry);
2117
2118 if (status & LastFrag) {
2119 dev_kfree_skb_irq(tx_skb->skb);
2120 tx_skb->skb = NULL;
2121 }
2122 dirty_tx++;
2123 tx_left--;
2124 }
2125
2126 if (tp->dirty_tx != dirty_tx) {
2127 tp->dirty_tx = dirty_tx;
2128 smp_wmb();
2129 if (netif_queue_stopped(dev) &&
2130 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
2131 netif_wake_queue(dev);
2132 }
2133 }
2134}
2135
Francois Romieu126fa4b2005-05-12 20:09:17 -04002136static inline int rtl8169_fragmented_frame(u32 status)
2137{
2138 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
2139}
2140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141static inline void rtl8169_rx_csum(struct sk_buff *skb, struct RxDesc *desc)
2142{
2143 u32 opts1 = le32_to_cpu(desc->opts1);
2144 u32 status = opts1 & RxProtoMask;
2145
2146 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
2147 ((status == RxProtoUDP) && !(opts1 & UDPFail)) ||
2148 ((status == RxProtoIP) && !(opts1 & IPFail)))
2149 skb->ip_summed = CHECKSUM_UNNECESSARY;
2150 else
2151 skb->ip_summed = CHECKSUM_NONE;
2152}
2153
2154static inline int rtl8169_try_rx_copy(struct sk_buff **sk_buff, int pkt_size,
2155 struct RxDesc *desc, int rx_buf_sz)
2156{
2157 int ret = -1;
2158
2159 if (pkt_size < rx_copybreak) {
2160 struct sk_buff *skb;
2161
2162 skb = dev_alloc_skb(pkt_size + NET_IP_ALIGN);
2163 if (skb) {
2164 skb_reserve(skb, NET_IP_ALIGN);
2165 eth_copy_and_sum(skb, sk_buff[0]->tail, pkt_size, 0);
2166 *sk_buff = skb;
2167 rtl8169_mark_to_asic(desc, rx_buf_sz);
2168 ret = 0;
2169 }
2170 }
2171 return ret;
2172}
2173
2174static int
2175rtl8169_rx_interrupt(struct net_device *dev, struct rtl8169_private *tp,
2176 void __iomem *ioaddr)
2177{
2178 unsigned int cur_rx, rx_left;
2179 unsigned int delta, count;
2180
2181 assert(dev != NULL);
2182 assert(tp != NULL);
2183 assert(ioaddr != NULL);
2184
2185 cur_rx = tp->cur_rx;
2186 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
2187 rx_left = rtl8169_rx_quota(rx_left, (u32) dev->quota);
2188
2189 while (rx_left > 0) {
2190 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002191 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 u32 status;
2193
2194 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04002195 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
2197 if (status & DescOwn)
2198 break;
2199 if (status & RxRES) {
Francois Romieu126fa4b2005-05-12 20:09:17 -04002200 printk(KERN_INFO "%s: Rx ERROR. status = %08x\n",
2201 dev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 tp->stats.rx_errors++;
2203 if (status & (RxRWT | RxRUNT))
2204 tp->stats.rx_length_errors++;
2205 if (status & RxCRC)
2206 tp->stats.rx_crc_errors++;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002207 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 struct sk_buff *skb = tp->Rx_skbuff[entry];
2210 int pkt_size = (status & 0x00001FFF) - 4;
2211 void (*pci_action)(struct pci_dev *, dma_addr_t,
2212 size_t, int) = pci_dma_sync_single_for_device;
2213
Francois Romieu126fa4b2005-05-12 20:09:17 -04002214 /*
2215 * The driver does not support incoming fragmented
2216 * frames. They are seen as a symptom of over-mtu
2217 * sized frames.
2218 */
2219 if (unlikely(rtl8169_fragmented_frame(status))) {
2220 tp->stats.rx_dropped++;
2221 tp->stats.rx_length_errors++;
2222 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
2223 goto move_on;
2224 }
2225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 rtl8169_rx_csum(skb, desc);
2227
2228 pci_dma_sync_single_for_cpu(tp->pci_dev,
2229 le64_to_cpu(desc->addr), tp->rx_buf_sz,
2230 PCI_DMA_FROMDEVICE);
2231
2232 if (rtl8169_try_rx_copy(&skb, pkt_size, desc,
2233 tp->rx_buf_sz)) {
2234 pci_action = pci_unmap_single;
2235 tp->Rx_skbuff[entry] = NULL;
2236 }
2237
2238 pci_action(tp->pci_dev, le64_to_cpu(desc->addr),
2239 tp->rx_buf_sz, PCI_DMA_FROMDEVICE);
2240
2241 skb->dev = dev;
2242 skb_put(skb, pkt_size);
2243 skb->protocol = eth_type_trans(skb, dev);
2244
2245 if (rtl8169_rx_vlan_skb(tp, desc, skb) < 0)
2246 rtl8169_rx_skb(skb);
2247
2248 dev->last_rx = jiffies;
2249 tp->stats.rx_bytes += pkt_size;
2250 tp->stats.rx_packets++;
2251 }
Francois Romieu126fa4b2005-05-12 20:09:17 -04002252move_on:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 cur_rx++;
2254 rx_left--;
2255 }
2256
2257 count = cur_rx - tp->cur_rx;
2258 tp->cur_rx = cur_rx;
2259
2260 delta = rtl8169_rx_fill(tp, dev, tp->dirty_rx, tp->cur_rx);
2261 if (!delta && count)
2262 printk(KERN_INFO "%s: no Rx buffer allocated\n", dev->name);
2263 tp->dirty_rx += delta;
2264
2265 /*
2266 * FIXME: until there is periodic timer to try and refill the ring,
2267 * a temporary shortage may definitely kill the Rx process.
2268 * - disable the asic to try and avoid an overflow and kick it again
2269 * after refill ?
2270 * - how do others driver handle this condition (Uh oh...).
2271 */
2272 if (tp->dirty_rx + NUM_RX_DESC == tp->cur_rx)
2273 printk(KERN_EMERG "%s: Rx buffers exhausted\n", dev->name);
2274
2275 return count;
2276}
2277
2278/* The interrupt handler does all of the Rx thread work and cleans up after the Tx thread. */
2279static irqreturn_t
2280rtl8169_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
2281{
2282 struct net_device *dev = (struct net_device *) dev_instance;
2283 struct rtl8169_private *tp = netdev_priv(dev);
2284 int boguscnt = max_interrupt_work;
2285 void __iomem *ioaddr = tp->mmio_addr;
2286 int status;
2287 int handled = 0;
2288
2289 do {
2290 status = RTL_R16(IntrStatus);
2291
2292 /* hotplug/major error/no more work/shared irq */
2293 if ((status == 0xFFFF) || !status)
2294 break;
2295
2296 handled = 1;
2297
2298 if (unlikely(!netif_running(dev))) {
2299 rtl8169_asic_down(ioaddr);
2300 goto out;
2301 }
2302
2303 status &= tp->intr_mask;
2304 RTL_W16(IntrStatus,
2305 (status & RxFIFOOver) ? (status | RxOverflow) : status);
2306
2307 if (!(status & rtl8169_intr_mask))
2308 break;
2309
2310 if (unlikely(status & SYSErr)) {
2311 rtl8169_pcierr_interrupt(dev);
2312 break;
2313 }
2314
2315 if (status & LinkChg)
2316 rtl8169_check_link_status(dev, tp, ioaddr);
2317
2318#ifdef CONFIG_R8169_NAPI
2319 RTL_W16(IntrMask, rtl8169_intr_mask & ~rtl8169_napi_event);
2320 tp->intr_mask = ~rtl8169_napi_event;
2321
2322 if (likely(netif_rx_schedule_prep(dev)))
2323 __netif_rx_schedule(dev);
2324 else {
2325 printk(KERN_INFO "%s: interrupt %04x taken in poll\n",
2326 dev->name, status);
2327 }
2328 break;
2329#else
2330 /* Rx interrupt */
2331 if (status & (RxOK | RxOverflow | RxFIFOOver)) {
2332 rtl8169_rx_interrupt(dev, tp, ioaddr);
2333 }
2334 /* Tx interrupt */
2335 if (status & (TxOK | TxErr))
2336 rtl8169_tx_interrupt(dev, tp, ioaddr);
2337#endif
2338
2339 boguscnt--;
2340 } while (boguscnt > 0);
2341
2342 if (boguscnt <= 0) {
2343 printk(KERN_WARNING "%s: Too much work at interrupt!\n",
2344 dev->name);
2345 /* Clear all interrupt sources. */
2346 RTL_W16(IntrStatus, 0xffff);
2347 }
2348out:
2349 return IRQ_RETVAL(handled);
2350}
2351
2352#ifdef CONFIG_R8169_NAPI
2353static int rtl8169_poll(struct net_device *dev, int *budget)
2354{
2355 unsigned int work_done, work_to_do = min(*budget, dev->quota);
2356 struct rtl8169_private *tp = netdev_priv(dev);
2357 void __iomem *ioaddr = tp->mmio_addr;
2358
2359 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr);
2360 rtl8169_tx_interrupt(dev, tp, ioaddr);
2361
2362 *budget -= work_done;
2363 dev->quota -= work_done;
2364
2365 if (work_done < work_to_do) {
2366 netif_rx_complete(dev);
2367 tp->intr_mask = 0xffff;
2368 /*
2369 * 20040426: the barrier is not strictly required but the
2370 * behavior of the irq handler could be less predictable
2371 * without it. Btw, the lack of flush for the posted pci
2372 * write is safe - FR
2373 */
2374 smp_wmb();
2375 RTL_W16(IntrMask, rtl8169_intr_mask);
2376 }
2377
2378 return (work_done >= work_to_do);
2379}
2380#endif
2381
2382static void rtl8169_down(struct net_device *dev)
2383{
2384 struct rtl8169_private *tp = netdev_priv(dev);
2385 void __iomem *ioaddr = tp->mmio_addr;
2386 unsigned int poll_locked = 0;
2387
2388 rtl8169_delete_timer(dev);
2389
2390 netif_stop_queue(dev);
2391
2392 flush_scheduled_work();
2393
2394core_down:
2395 spin_lock_irq(&tp->lock);
2396
2397 rtl8169_asic_down(ioaddr);
2398
2399 /* Update the error counts. */
2400 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
2401 RTL_W32(RxMissed, 0);
2402
2403 spin_unlock_irq(&tp->lock);
2404
2405 synchronize_irq(dev->irq);
2406
2407 if (!poll_locked) {
2408 netif_poll_disable(dev);
2409 poll_locked++;
2410 }
2411
2412 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002413 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415 /*
2416 * And now for the 50k$ question: are IRQ disabled or not ?
2417 *
2418 * Two paths lead here:
2419 * 1) dev->close
2420 * -> netif_running() is available to sync the current code and the
2421 * IRQ handler. See rtl8169_interrupt for details.
2422 * 2) dev->change_mtu
2423 * -> rtl8169_poll can not be issued again and re-enable the
2424 * interruptions. Let's simply issue the IRQ down sequence again.
2425 */
2426 if (RTL_R16(IntrMask))
2427 goto core_down;
2428
2429 rtl8169_tx_clear(tp);
2430
2431 rtl8169_rx_clear(tp);
2432}
2433
2434static int rtl8169_close(struct net_device *dev)
2435{
2436 struct rtl8169_private *tp = netdev_priv(dev);
2437 struct pci_dev *pdev = tp->pci_dev;
2438
2439 rtl8169_down(dev);
2440
2441 free_irq(dev->irq, dev);
2442
2443 netif_poll_enable(dev);
2444
2445 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
2446 tp->RxPhyAddr);
2447 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
2448 tp->TxPhyAddr);
2449 tp->TxDescArray = NULL;
2450 tp->RxDescArray = NULL;
2451
2452 return 0;
2453}
2454
2455static void
2456rtl8169_set_rx_mode(struct net_device *dev)
2457{
2458 struct rtl8169_private *tp = netdev_priv(dev);
2459 void __iomem *ioaddr = tp->mmio_addr;
2460 unsigned long flags;
2461 u32 mc_filter[2]; /* Multicast hash filter */
2462 int i, rx_mode;
2463 u32 tmp = 0;
2464
2465 if (dev->flags & IFF_PROMISC) {
2466 /* Unconditionally log net taps. */
2467 printk(KERN_NOTICE "%s: Promiscuous mode enabled.\n",
2468 dev->name);
2469 rx_mode =
2470 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
2471 AcceptAllPhys;
2472 mc_filter[1] = mc_filter[0] = 0xffffffff;
2473 } else if ((dev->mc_count > multicast_filter_limit)
2474 || (dev->flags & IFF_ALLMULTI)) {
2475 /* Too many to filter perfectly -- accept all multicasts. */
2476 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
2477 mc_filter[1] = mc_filter[0] = 0xffffffff;
2478 } else {
2479 struct dev_mc_list *mclist;
2480 rx_mode = AcceptBroadcast | AcceptMyPhys;
2481 mc_filter[1] = mc_filter[0] = 0;
2482 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
2483 i++, mclist = mclist->next) {
2484 int bit_nr = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
2485 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
2486 rx_mode |= AcceptMulticast;
2487 }
2488 }
2489
2490 spin_lock_irqsave(&tp->lock, flags);
2491
2492 tmp = rtl8169_rx_config | rx_mode |
2493 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
2494
2495 RTL_W32(RxConfig, tmp);
2496 RTL_W32(MAR0 + 0, mc_filter[0]);
2497 RTL_W32(MAR0 + 4, mc_filter[1]);
2498
2499 spin_unlock_irqrestore(&tp->lock, flags);
2500}
2501
2502/**
2503 * rtl8169_get_stats - Get rtl8169 read/write statistics
2504 * @dev: The Ethernet Device to get statistics for
2505 *
2506 * Get TX/RX statistics for rtl8169
2507 */
2508static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
2509{
2510 struct rtl8169_private *tp = netdev_priv(dev);
2511 void __iomem *ioaddr = tp->mmio_addr;
2512 unsigned long flags;
2513
2514 if (netif_running(dev)) {
2515 spin_lock_irqsave(&tp->lock, flags);
2516 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
2517 RTL_W32(RxMissed, 0);
2518 spin_unlock_irqrestore(&tp->lock, flags);
2519 }
2520
2521 return &tp->stats;
2522}
2523
2524static struct pci_driver rtl8169_pci_driver = {
2525 .name = MODULENAME,
2526 .id_table = rtl8169_pci_tbl,
2527 .probe = rtl8169_init_one,
2528 .remove = __devexit_p(rtl8169_remove_one),
2529#ifdef CONFIG_PM
2530 .suspend = rtl8169_suspend,
2531 .resume = rtl8169_resume,
2532#endif
2533};
2534
2535static int __init
2536rtl8169_init_module(void)
2537{
2538 return pci_module_init(&rtl8169_pci_driver);
2539}
2540
2541static void __exit
2542rtl8169_cleanup_module(void)
2543{
2544 pci_unregister_driver(&rtl8169_pci_driver);
2545}
2546
2547module_init(rtl8169_init_module);
2548module_exit(rtl8169_cleanup_module);