blob: 85a392fab5cc4dbc1541033cc35d5aa5401dc2b6 [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.
Francois Romieu5b0384f2006-08-16 16:00:01 +02009 2004 - Massive updates. See kernel SCM system for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010=========================================================================
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.
Francois Romieu5b0384f2006-08-16 16:00:01 +020014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 SET_MEDIA can be:
16 _10_Half = 0x01
17 _10_Full = 0x02
18 _100_Half = 0x04
19 _100_Full = 0x08
20 _1000_Full = 0x10
Francois Romieu5b0384f2006-08-16 16:00:01 +020021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 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
Francois Romieu5b0384f2006-08-16 16:00:01 +020028 exchanging Link Code Word (FLP).
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
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) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020084 if (!(expr)) { \
85 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
86 #expr,__FILE__,__FUNCTION__,__LINE__); \
87 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#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
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020094#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070095 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#define TX_BUFFS_AVAIL(tp) \
98 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
99
100#ifdef CONFIG_R8169_NAPI
101#define rtl8169_rx_skb netif_receive_skb
Tommy Christensen0b50f812005-09-21 12:13:57 -0700102#define rtl8169_rx_hwaccel_skb vlan_hwaccel_receive_skb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#define rtl8169_rx_quota(count, quota) min(count, quota)
104#else
105#define rtl8169_rx_skb netif_rx
Tommy Christensen0b50f812005-09-21 12:13:57 -0700106#define rtl8169_rx_hwaccel_skb vlan_hwaccel_rx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define rtl8169_rx_quota(count, quota) count
108#endif
109
110/* media options */
111#define MAX_UNITS 8
112static int media[MAX_UNITS] = { -1, -1, -1, -1, -1, -1, -1, -1 };
113static int num_media = 0;
114
115/* Maximum events (Rx packets, etc.) to handle at each interrupt. */
Arjan van de Venf71e1302006-03-03 21:33:57 -0500116static const int max_interrupt_work = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
119 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -0500120static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122/* MAC address length */
123#define MAC_ADDR_LEN 6
124
125#define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
126#define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
127#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
128#define EarlyTxThld 0x3F /* 0x3F means NO early transmit */
129#define RxPacketMaxSize 0x3FE8 /* 16K - 1 - ETH_HLEN - VLAN - CRC... */
130#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
131#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
132
133#define R8169_REGS_SIZE 256
134#define R8169_NAPI_WEIGHT 64
135#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
136#define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
137#define RX_BUF_SIZE 1536 /* Rx Buffer size */
138#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
139#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
140
141#define RTL8169_TX_TIMEOUT (6*HZ)
142#define RTL8169_PHY_TIMEOUT (10*HZ)
143
144/* write/read MMIO register */
145#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
146#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
147#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
148#define RTL_R8(reg) readb (ioaddr + (reg))
149#define RTL_R16(reg) readw (ioaddr + (reg))
150#define RTL_R32(reg) ((unsigned long) readl (ioaddr + (reg)))
151
152enum mac_version {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200153 RTL_GIGA_MAC_VER_01 = 0x00,
154 RTL_GIGA_MAC_VER_02 = 0x01,
155 RTL_GIGA_MAC_VER_03 = 0x02,
156 RTL_GIGA_MAC_VER_04 = 0x03,
157 RTL_GIGA_MAC_VER_05 = 0x04,
158 RTL_GIGA_MAC_VER_11 = 0x0b,
159 RTL_GIGA_MAC_VER_12 = 0x0c,
160 RTL_GIGA_MAC_VER_13 = 0x0d,
161 RTL_GIGA_MAC_VER_14 = 0x0e,
162 RTL_GIGA_MAC_VER_15 = 0x0f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163};
164
165enum phy_version {
166 RTL_GIGA_PHY_VER_C = 0x03, /* PHY Reg 0x03 bit0-3 == 0x0000 */
167 RTL_GIGA_PHY_VER_D = 0x04, /* PHY Reg 0x03 bit0-3 == 0x0000 */
168 RTL_GIGA_PHY_VER_E = 0x05, /* PHY Reg 0x03 bit0-3 == 0x0000 */
169 RTL_GIGA_PHY_VER_F = 0x06, /* PHY Reg 0x03 bit0-3 == 0x0001 */
170 RTL_GIGA_PHY_VER_G = 0x07, /* PHY Reg 0x03 bit0-3 == 0x0002 */
171 RTL_GIGA_PHY_VER_H = 0x08, /* PHY Reg 0x03 bit0-3 == 0x0003 */
172};
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#define _R(NAME,MAC,MASK) \
175 { .name = NAME, .mac_version = MAC, .RxConfigMask = MASK }
176
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800177static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 const char *name;
179 u8 mac_version;
180 u32 RxConfigMask; /* Clears the bits supported by this chip */
181} rtl_chip_info[] = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200182 _R("RTL8169", RTL_GIGA_MAC_VER_01, 0xff7e1880),
183 _R("RTL8169s/8110s", RTL_GIGA_MAC_VER_02, 0xff7e1880),
184 _R("RTL8169s/8110s", RTL_GIGA_MAC_VER_03, 0xff7e1880),
185 _R("RTL8169sb/8110sb", RTL_GIGA_MAC_VER_04, 0xff7e1880),
186 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_05, 0xff7e1880),
187 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_11, 0xff7e1880), // PCI-E
188 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_12, 0xff7e1880), // PCI-E
189 _R("RTL8101e", RTL_GIGA_MAC_VER_13, 0xff7e1880), // PCI-E 8139
190 _R("RTL8100e", RTL_GIGA_MAC_VER_14, 0xff7e1880), // PCI-E 8139
191 _R("RTL8100e", RTL_GIGA_MAC_VER_15, 0xff7e1880) // PCI-E 8139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192};
193#undef _R
194
Francois Romieubcf0bf92006-07-26 23:14:13 +0200195enum cfg_version {
196 RTL_CFG_0 = 0x00,
197 RTL_CFG_1,
198 RTL_CFG_2
199};
200
201static const struct {
202 unsigned int region;
203 unsigned int align;
204} rtl_cfg_info[] = {
205 [RTL_CFG_0] = { 1, NET_IP_ALIGN },
206 [RTL_CFG_1] = { 2, NET_IP_ALIGN },
207 [RTL_CFG_2] = { 2, 8 }
208};
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210static struct pci_device_id rtl8169_pci_tbl[] = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200211 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200212 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200213 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200214 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_2 },
215 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
216 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Andrew Morton73f5e282006-10-09 21:58:54 +0200217 { PCI_DEVICE(0x1259, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200218 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
219 { PCI_VENDOR_ID_LINKSYS, 0x1032,
220 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 {0,},
222};
223
224MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
225
226static int rx_copybreak = 200;
227static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200228static struct {
229 u32 msg_enable;
230} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232enum RTL8169_registers {
233 MAC0 = 0, /* Ethernet hardware address. */
234 MAR0 = 8, /* Multicast filter. */
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200235 CounterAddrLow = 0x10,
236 CounterAddrHigh = 0x14,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 TxDescStartAddrLow = 0x20,
238 TxDescStartAddrHigh = 0x24,
239 TxHDescStartAddrLow = 0x28,
240 TxHDescStartAddrHigh = 0x2c,
241 FLASH = 0x30,
242 ERSR = 0x36,
243 ChipCmd = 0x37,
244 TxPoll = 0x38,
245 IntrMask = 0x3C,
246 IntrStatus = 0x3E,
247 TxConfig = 0x40,
248 RxConfig = 0x44,
249 RxMissed = 0x4C,
250 Cfg9346 = 0x50,
251 Config0 = 0x51,
252 Config1 = 0x52,
253 Config2 = 0x53,
254 Config3 = 0x54,
255 Config4 = 0x55,
256 Config5 = 0x56,
257 MultiIntr = 0x5C,
258 PHYAR = 0x60,
259 TBICSR = 0x64,
260 TBI_ANAR = 0x68,
261 TBI_LPAR = 0x6A,
262 PHYstatus = 0x6C,
263 RxMaxSize = 0xDA,
264 CPlusCmd = 0xE0,
265 IntrMitigate = 0xE2,
266 RxDescAddrLow = 0xE4,
267 RxDescAddrHigh = 0xE8,
268 EarlyTxThres = 0xEC,
269 FuncEvent = 0xF0,
270 FuncEventMask = 0xF4,
271 FuncPresetState = 0xF8,
272 FuncForceEvent = 0xFC,
273};
274
275enum RTL8169_register_content {
276 /* InterruptStatusBits */
277 SYSErr = 0x8000,
278 PCSTimeout = 0x4000,
279 SWInt = 0x0100,
280 TxDescUnavail = 0x80,
281 RxFIFOOver = 0x40,
282 LinkChg = 0x20,
283 RxOverflow = 0x10,
284 TxErr = 0x08,
285 TxOK = 0x04,
286 RxErr = 0x02,
287 RxOK = 0x01,
288
289 /* RxStatusDesc */
Francois Romieu9dccf612006-05-14 12:31:17 +0200290 RxFOVF = (1 << 23),
291 RxRWT = (1 << 22),
292 RxRES = (1 << 21),
293 RxRUNT = (1 << 20),
294 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 /* ChipCmdBits */
297 CmdReset = 0x10,
298 CmdRxEnb = 0x08,
299 CmdTxEnb = 0x04,
300 RxBufEmpty = 0x01,
301
302 /* Cfg9346Bits */
303 Cfg9346_Lock = 0x00,
304 Cfg9346_Unlock = 0xC0,
305
306 /* rx_mode_bits */
307 AcceptErr = 0x20,
308 AcceptRunt = 0x10,
309 AcceptBroadcast = 0x08,
310 AcceptMulticast = 0x04,
311 AcceptMyPhys = 0x02,
312 AcceptAllPhys = 0x01,
313
314 /* RxConfigBits */
315 RxCfgFIFOShift = 13,
316 RxCfgDMAShift = 8,
317
318 /* TxConfigBits */
319 TxInterFrameGapShift = 24,
320 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
321
Francois Romieu5d06a992006-02-23 00:47:58 +0100322 /* Config1 register p.24 */
323 PMEnable = (1 << 0), /* Power Management Enable */
324
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100325 /* Config3 register p.25 */
326 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
327 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
328
Francois Romieu5d06a992006-02-23 00:47:58 +0100329 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100330 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
331 MWF = (1 << 5), /* Accept Multicast wakeup frame */
332 UWF = (1 << 4), /* Accept Unicast wakeup frame */
333 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100334 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 /* TBICSR p.28 */
337 TBIReset = 0x80000000,
338 TBILoopback = 0x40000000,
339 TBINwEnable = 0x20000000,
340 TBINwRestart = 0x10000000,
341 TBILinkOk = 0x02000000,
342 TBINwComplete = 0x01000000,
343
344 /* CPlusCmd p.31 */
345 RxVlan = (1 << 6),
346 RxChkSum = (1 << 5),
347 PCIDAC = (1 << 4),
348 PCIMulRW = (1 << 3),
349
350 /* rtl8169_PHYstatus */
351 TBI_Enable = 0x80,
352 TxFlowCtrl = 0x40,
353 RxFlowCtrl = 0x20,
354 _1000bpsF = 0x10,
355 _100bps = 0x08,
356 _10bps = 0x04,
357 LinkStatus = 0x02,
358 FullDup = 0x01,
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 /* _MediaType */
361 _10_Half = 0x01,
362 _10_Full = 0x02,
363 _100_Half = 0x04,
364 _100_Full = 0x08,
365 _1000_Full = 0x10,
366
367 /* _TBICSRBit */
368 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200369
370 /* DumpCounterCommand */
371 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372};
373
374enum _DescStatusBit {
375 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
376 RingEnd = (1 << 30), /* End of descriptor ring */
377 FirstFrag = (1 << 29), /* First segment of a packet */
378 LastFrag = (1 << 28), /* Final segment of a packet */
379
380 /* Tx private */
381 LargeSend = (1 << 27), /* TCP Large Send Offload (TSO) */
382 MSSShift = 16, /* MSS value position */
383 MSSMask = 0xfff, /* MSS value + LargeSend bit: 12 bits */
384 IPCS = (1 << 18), /* Calculate IP checksum */
385 UDPCS = (1 << 17), /* Calculate UDP/IP checksum */
386 TCPCS = (1 << 16), /* Calculate TCP/IP checksum */
387 TxVlanTag = (1 << 17), /* Add VLAN tag */
388
389 /* Rx private */
390 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
391 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
392
393#define RxProtoUDP (PID1)
394#define RxProtoTCP (PID0)
395#define RxProtoIP (PID1 | PID0)
396#define RxProtoMask RxProtoIP
397
398 IPFail = (1 << 16), /* IP checksum failed */
399 UDPFail = (1 << 15), /* UDP/IP checksum failed */
400 TCPFail = (1 << 14), /* TCP/IP checksum failed */
401 RxVlanTag = (1 << 16), /* VLAN tag available */
402};
403
404#define RsvdMask 0x3fffc000
405
406struct TxDesc {
407 u32 opts1;
408 u32 opts2;
409 u64 addr;
410};
411
412struct RxDesc {
413 u32 opts1;
414 u32 opts2;
415 u64 addr;
416};
417
418struct ring_info {
419 struct sk_buff *skb;
420 u32 len;
421 u8 __pad[sizeof(void *) - sizeof(u32)];
422};
423
424struct rtl8169_private {
425 void __iomem *mmio_addr; /* memory map physical address */
426 struct pci_dev *pci_dev; /* Index of PCI device */
David Howellsc4028952006-11-22 14:57:56 +0000427 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 struct net_device_stats stats; /* statistics of net device */
429 spinlock_t lock; /* spin lock flag */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200430 u32 msg_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 int chipset;
432 int mac_version;
433 int phy_version;
434 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
435 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
436 u32 dirty_rx;
437 u32 dirty_tx;
438 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
439 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
440 dma_addr_t TxPhyAddr;
441 dma_addr_t RxPhyAddr;
442 struct sk_buff *Rx_skbuff[NUM_RX_DESC]; /* Rx data buffers */
443 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Francois Romieubcf0bf92006-07-26 23:14:13 +0200444 unsigned align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unsigned rx_buf_sz;
446 struct timer_list timer;
447 u16 cp_cmd;
448 u16 intr_mask;
449 int phy_auto_nego_reg;
450 int phy_1000_ctrl_reg;
451#ifdef CONFIG_R8169_VLAN
452 struct vlan_group *vlgrp;
453#endif
454 int (*set_speed)(struct net_device *, u8 autoneg, u16 speed, u8 duplex);
455 void (*get_settings)(struct net_device *, struct ethtool_cmd *);
456 void (*phy_reset_enable)(void __iomem *);
457 unsigned int (*phy_reset_pending)(void __iomem *);
458 unsigned int (*link_ok)(void __iomem *);
David Howellsc4028952006-11-22 14:57:56 +0000459 struct delayed_work task;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100460 unsigned wol_enabled : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461};
462
Ralf Baechle979b6c12005-06-13 14:30:40 -0700463MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
465module_param_array(media, int, &num_media, 0);
Francois Romieudf0a1bf2005-05-27 21:11:49 +0200466MODULE_PARM_DESC(media, "force phy operation. Deprecated by ethtool (8).");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467module_param(rx_copybreak, int, 0);
Stephen Hemminger1b7efd52005-05-27 21:11:45 +0200468MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469module_param(use_dac, int, 0);
470MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200471module_param_named(debug, debug.msg_enable, int, 0);
472MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473MODULE_LICENSE("GPL");
474MODULE_VERSION(RTL8169_VERSION);
475
476static int rtl8169_open(struct net_device *dev);
477static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100478static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479static int rtl8169_init_ring(struct net_device *dev);
480static void rtl8169_hw_start(struct net_device *dev);
481static int rtl8169_close(struct net_device *dev);
482static void rtl8169_set_rx_mode(struct net_device *dev);
483static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200484static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
486 void __iomem *);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200487static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488static void rtl8169_down(struct net_device *dev);
489
490#ifdef CONFIG_R8169_NAPI
491static int rtl8169_poll(struct net_device *dev, int *budget);
492#endif
493
494static const u16 rtl8169_intr_mask =
495 SYSErr | LinkChg | RxOverflow | RxFIFOOver | TxErr | TxOK | RxErr | RxOK;
496static const u16 rtl8169_napi_event =
497 RxOK | RxOverflow | RxFIFOOver | TxOK | TxErr;
498static const unsigned int rtl8169_rx_config =
Francois Romieu5b0384f2006-08-16 16:00:01 +0200499 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501static void mdio_write(void __iomem *ioaddr, int RegAddr, int value)
502{
503 int i;
504
505 RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Francois Romieu23714082006-01-29 00:49:09 +0100507 for (i = 20; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 /* Check if the RTL8169 has completed writing to the specified MII register */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200509 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 break;
Francois Romieu23714082006-01-29 00:49:09 +0100511 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513}
514
515static int mdio_read(void __iomem *ioaddr, int RegAddr)
516{
517 int i, value = -1;
518
519 RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Francois Romieu23714082006-01-29 00:49:09 +0100521 for (i = 20; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* Check if the RTL8169 has completed retrieving data from the specified MII register */
523 if (RTL_R32(PHYAR) & 0x80000000) {
524 value = (int) (RTL_R32(PHYAR) & 0xFFFF);
525 break;
526 }
Francois Romieu23714082006-01-29 00:49:09 +0100527 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529 return value;
530}
531
532static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
533{
534 RTL_W16(IntrMask, 0x0000);
535
536 RTL_W16(IntrStatus, 0xffff);
537}
538
539static void rtl8169_asic_down(void __iomem *ioaddr)
540{
541 RTL_W8(ChipCmd, 0x00);
542 rtl8169_irq_mask_and_ack(ioaddr);
543 RTL_R16(CPlusCmd);
544}
545
546static unsigned int rtl8169_tbi_reset_pending(void __iomem *ioaddr)
547{
548 return RTL_R32(TBICSR) & TBIReset;
549}
550
551static unsigned int rtl8169_xmii_reset_pending(void __iomem *ioaddr)
552{
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200553 return mdio_read(ioaddr, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
556static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
557{
558 return RTL_R32(TBICSR) & TBILinkOk;
559}
560
561static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
562{
563 return RTL_R8(PHYstatus) & LinkStatus;
564}
565
566static void rtl8169_tbi_reset_enable(void __iomem *ioaddr)
567{
568 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
569}
570
571static void rtl8169_xmii_reset_enable(void __iomem *ioaddr)
572{
573 unsigned int val;
574
Francois Romieubf793292006-11-01 00:53:05 +0100575 mdio_write(ioaddr, MII_BMCR, BMCR_RESET);
576 val = mdio_read(ioaddr, MII_BMCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
579static void rtl8169_check_link_status(struct net_device *dev,
580 struct rtl8169_private *tp, void __iomem *ioaddr)
581{
582 unsigned long flags;
583
584 spin_lock_irqsave(&tp->lock, flags);
585 if (tp->link_ok(ioaddr)) {
586 netif_carrier_on(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200587 if (netif_msg_ifup(tp))
588 printk(KERN_INFO PFX "%s: link up\n", dev->name);
589 } else {
590 if (netif_msg_ifdown(tp))
591 printk(KERN_INFO PFX "%s: link down\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 netif_carrier_off(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 spin_unlock_irqrestore(&tp->lock, flags);
595}
596
597static void rtl8169_link_option(int idx, u8 *autoneg, u16 *speed, u8 *duplex)
598{
599 struct {
600 u16 speed;
601 u8 duplex;
602 u8 autoneg;
603 u8 media;
604 } link_settings[] = {
605 { SPEED_10, DUPLEX_HALF, AUTONEG_DISABLE, _10_Half },
606 { SPEED_10, DUPLEX_FULL, AUTONEG_DISABLE, _10_Full },
607 { SPEED_100, DUPLEX_HALF, AUTONEG_DISABLE, _100_Half },
608 { SPEED_100, DUPLEX_FULL, AUTONEG_DISABLE, _100_Full },
609 { SPEED_1000, DUPLEX_FULL, AUTONEG_DISABLE, _1000_Full },
610 /* Make TBI happy */
611 { SPEED_1000, DUPLEX_FULL, AUTONEG_ENABLE, 0xff }
612 }, *p;
613 unsigned char option;
Francois Romieu5b0384f2006-08-16 16:00:01 +0200614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 option = ((idx < MAX_UNITS) && (idx >= 0)) ? media[idx] : 0xff;
616
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200617 if ((option != 0xff) && !idx && netif_msg_drv(&debug))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 printk(KERN_WARNING PFX "media option is deprecated.\n");
619
620 for (p = link_settings; p->media != 0xff; p++) {
621 if (p->media == option)
622 break;
623 }
624 *autoneg = p->autoneg;
625 *speed = p->speed;
626 *duplex = p->duplex;
627}
628
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100629static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
630{
631 struct rtl8169_private *tp = netdev_priv(dev);
632 void __iomem *ioaddr = tp->mmio_addr;
633 u8 options;
634
635 wol->wolopts = 0;
636
637#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
638 wol->supported = WAKE_ANY;
639
640 spin_lock_irq(&tp->lock);
641
642 options = RTL_R8(Config1);
643 if (!(options & PMEnable))
644 goto out_unlock;
645
646 options = RTL_R8(Config3);
647 if (options & LinkUp)
648 wol->wolopts |= WAKE_PHY;
649 if (options & MagicPacket)
650 wol->wolopts |= WAKE_MAGIC;
651
652 options = RTL_R8(Config5);
653 if (options & UWF)
654 wol->wolopts |= WAKE_UCAST;
655 if (options & BWF)
Francois Romieu5b0384f2006-08-16 16:00:01 +0200656 wol->wolopts |= WAKE_BCAST;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100657 if (options & MWF)
Francois Romieu5b0384f2006-08-16 16:00:01 +0200658 wol->wolopts |= WAKE_MCAST;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100659
660out_unlock:
661 spin_unlock_irq(&tp->lock);
662}
663
664static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
665{
666 struct rtl8169_private *tp = netdev_priv(dev);
667 void __iomem *ioaddr = tp->mmio_addr;
668 int i;
669 static struct {
670 u32 opt;
671 u16 reg;
672 u8 mask;
673 } cfg[] = {
674 { WAKE_ANY, Config1, PMEnable },
675 { WAKE_PHY, Config3, LinkUp },
676 { WAKE_MAGIC, Config3, MagicPacket },
677 { WAKE_UCAST, Config5, UWF },
678 { WAKE_BCAST, Config5, BWF },
679 { WAKE_MCAST, Config5, MWF },
680 { WAKE_ANY, Config5, LanWake }
681 };
682
683 spin_lock_irq(&tp->lock);
684
685 RTL_W8(Cfg9346, Cfg9346_Unlock);
686
687 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
688 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
689 if (wol->wolopts & cfg[i].opt)
690 options |= cfg[i].mask;
691 RTL_W8(cfg[i].reg, options);
692 }
693
694 RTL_W8(Cfg9346, Cfg9346_Lock);
695
696 tp->wol_enabled = (wol->wolopts) ? 1 : 0;
697
698 spin_unlock_irq(&tp->lock);
699
700 return 0;
701}
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703static void rtl8169_get_drvinfo(struct net_device *dev,
704 struct ethtool_drvinfo *info)
705{
706 struct rtl8169_private *tp = netdev_priv(dev);
707
708 strcpy(info->driver, MODULENAME);
709 strcpy(info->version, RTL8169_VERSION);
710 strcpy(info->bus_info, pci_name(tp->pci_dev));
711}
712
713static int rtl8169_get_regs_len(struct net_device *dev)
714{
715 return R8169_REGS_SIZE;
716}
717
718static int rtl8169_set_speed_tbi(struct net_device *dev,
719 u8 autoneg, u16 speed, u8 duplex)
720{
721 struct rtl8169_private *tp = netdev_priv(dev);
722 void __iomem *ioaddr = tp->mmio_addr;
723 int ret = 0;
724 u32 reg;
725
726 reg = RTL_R32(TBICSR);
727 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
728 (duplex == DUPLEX_FULL)) {
729 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
730 } else if (autoneg == AUTONEG_ENABLE)
731 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
732 else {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200733 if (netif_msg_link(tp)) {
734 printk(KERN_WARNING "%s: "
735 "incorrect speed setting refused in TBI mode\n",
736 dev->name);
737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 ret = -EOPNOTSUPP;
739 }
740
741 return ret;
742}
743
744static int rtl8169_set_speed_xmii(struct net_device *dev,
745 u8 autoneg, u16 speed, u8 duplex)
746{
747 struct rtl8169_private *tp = netdev_priv(dev);
748 void __iomem *ioaddr = tp->mmio_addr;
749 int auto_nego, giga_ctrl;
750
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200751 auto_nego = mdio_read(ioaddr, MII_ADVERTISE);
752 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
753 ADVERTISE_100HALF | ADVERTISE_100FULL);
754 giga_ctrl = mdio_read(ioaddr, MII_CTRL1000);
755 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 if (autoneg == AUTONEG_ENABLE) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200758 auto_nego |= (ADVERTISE_10HALF | ADVERTISE_10FULL |
759 ADVERTISE_100HALF | ADVERTISE_100FULL);
760 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 } else {
762 if (speed == SPEED_10)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200763 auto_nego |= ADVERTISE_10HALF | ADVERTISE_10FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 else if (speed == SPEED_100)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200765 auto_nego |= ADVERTISE_100HALF | ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 else if (speed == SPEED_1000)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200767 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 if (duplex == DUPLEX_HALF)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200770 auto_nego &= ~(ADVERTISE_10FULL | ADVERTISE_100FULL);
Andy Gospodarek726ecdc2006-01-31 19:16:52 +0100771
772 if (duplex == DUPLEX_FULL)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200773 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_100HALF);
Francois Romieubcf0bf92006-07-26 23:14:13 +0200774
775 /* This tweak comes straight from Realtek's driver. */
776 if ((speed == SPEED_100) && (duplex == DUPLEX_HALF) &&
777 (tp->mac_version == RTL_GIGA_MAC_VER_13)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200778 auto_nego = ADVERTISE_100HALF | ADVERTISE_CSMA;
Francois Romieubcf0bf92006-07-26 23:14:13 +0200779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
Francois Romieubcf0bf92006-07-26 23:14:13 +0200782 /* The 8100e/8101e do Fast Ethernet only. */
783 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
784 (tp->mac_version == RTL_GIGA_MAC_VER_14) ||
785 (tp->mac_version == RTL_GIGA_MAC_VER_15)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200786 if ((giga_ctrl & (ADVERTISE_1000FULL | ADVERTISE_1000HALF)) &&
Francois Romieubcf0bf92006-07-26 23:14:13 +0200787 netif_msg_link(tp)) {
788 printk(KERN_INFO "%s: PHY does not support 1000Mbps.\n",
789 dev->name);
790 }
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200791 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793
Francois Romieu623a1592006-05-14 12:42:14 +0200794 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 tp->phy_auto_nego_reg = auto_nego;
797 tp->phy_1000_ctrl_reg = giga_ctrl;
798
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200799 mdio_write(ioaddr, MII_ADVERTISE, auto_nego);
800 mdio_write(ioaddr, MII_CTRL1000, giga_ctrl);
801 mdio_write(ioaddr, MII_BMCR, BMCR_ANENABLE | BMCR_ANRESTART);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return 0;
803}
804
805static int rtl8169_set_speed(struct net_device *dev,
806 u8 autoneg, u16 speed, u8 duplex)
807{
808 struct rtl8169_private *tp = netdev_priv(dev);
809 int ret;
810
811 ret = tp->set_speed(dev, autoneg, speed, duplex);
812
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200813 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
815
816 return ret;
817}
818
819static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
820{
821 struct rtl8169_private *tp = netdev_priv(dev);
822 unsigned long flags;
823 int ret;
824
825 spin_lock_irqsave(&tp->lock, flags);
826 ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
827 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +0200828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return ret;
830}
831
832static u32 rtl8169_get_rx_csum(struct net_device *dev)
833{
834 struct rtl8169_private *tp = netdev_priv(dev);
835
836 return tp->cp_cmd & RxChkSum;
837}
838
839static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
840{
841 struct rtl8169_private *tp = netdev_priv(dev);
842 void __iomem *ioaddr = tp->mmio_addr;
843 unsigned long flags;
844
845 spin_lock_irqsave(&tp->lock, flags);
846
847 if (data)
848 tp->cp_cmd |= RxChkSum;
849 else
850 tp->cp_cmd &= ~RxChkSum;
851
852 RTL_W16(CPlusCmd, tp->cp_cmd);
853 RTL_R16(CPlusCmd);
854
855 spin_unlock_irqrestore(&tp->lock, flags);
856
857 return 0;
858}
859
860#ifdef CONFIG_R8169_VLAN
861
862static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
863 struct sk_buff *skb)
864{
865 return (tp->vlgrp && vlan_tx_tag_present(skb)) ?
866 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
867}
868
869static void rtl8169_vlan_rx_register(struct net_device *dev,
870 struct vlan_group *grp)
871{
872 struct rtl8169_private *tp = netdev_priv(dev);
873 void __iomem *ioaddr = tp->mmio_addr;
874 unsigned long flags;
875
876 spin_lock_irqsave(&tp->lock, flags);
877 tp->vlgrp = grp;
878 if (tp->vlgrp)
879 tp->cp_cmd |= RxVlan;
880 else
881 tp->cp_cmd &= ~RxVlan;
882 RTL_W16(CPlusCmd, tp->cp_cmd);
883 RTL_R16(CPlusCmd);
884 spin_unlock_irqrestore(&tp->lock, flags);
885}
886
887static void rtl8169_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
888{
889 struct rtl8169_private *tp = netdev_priv(dev);
890 unsigned long flags;
891
892 spin_lock_irqsave(&tp->lock, flags);
893 if (tp->vlgrp)
894 tp->vlgrp->vlan_devices[vid] = NULL;
895 spin_unlock_irqrestore(&tp->lock, flags);
896}
897
898static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
899 struct sk_buff *skb)
900{
901 u32 opts2 = le32_to_cpu(desc->opts2);
902 int ret;
903
904 if (tp->vlgrp && (opts2 & RxVlanTag)) {
905 rtl8169_rx_hwaccel_skb(skb, tp->vlgrp,
906 swab16(opts2 & 0xffff));
907 ret = 0;
908 } else
909 ret = -1;
910 desc->opts2 = 0;
911 return ret;
912}
913
914#else /* !CONFIG_R8169_VLAN */
915
916static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
917 struct sk_buff *skb)
918{
919 return 0;
920}
921
922static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
923 struct sk_buff *skb)
924{
925 return -1;
926}
927
928#endif
929
930static void rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
931{
932 struct rtl8169_private *tp = netdev_priv(dev);
933 void __iomem *ioaddr = tp->mmio_addr;
934 u32 status;
935
936 cmd->supported =
937 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
938 cmd->port = PORT_FIBRE;
939 cmd->transceiver = XCVR_INTERNAL;
940
941 status = RTL_R32(TBICSR);
942 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
943 cmd->autoneg = !!(status & TBINwEnable);
944
945 cmd->speed = SPEED_1000;
946 cmd->duplex = DUPLEX_FULL; /* Always set */
947}
948
949static void rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
950{
951 struct rtl8169_private *tp = netdev_priv(dev);
952 void __iomem *ioaddr = tp->mmio_addr;
953 u8 status;
954
955 cmd->supported = SUPPORTED_10baseT_Half |
956 SUPPORTED_10baseT_Full |
957 SUPPORTED_100baseT_Half |
958 SUPPORTED_100baseT_Full |
959 SUPPORTED_1000baseT_Full |
960 SUPPORTED_Autoneg |
Francois Romieu5b0384f2006-08-16 16:00:01 +0200961 SUPPORTED_TP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 cmd->autoneg = 1;
964 cmd->advertising = ADVERTISED_TP | ADVERTISED_Autoneg;
965
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200966 if (tp->phy_auto_nego_reg & ADVERTISE_10HALF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 cmd->advertising |= ADVERTISED_10baseT_Half;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200968 if (tp->phy_auto_nego_reg & ADVERTISE_10FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 cmd->advertising |= ADVERTISED_10baseT_Full;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200970 if (tp->phy_auto_nego_reg & ADVERTISE_100HALF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 cmd->advertising |= ADVERTISED_100baseT_Half;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200972 if (tp->phy_auto_nego_reg & ADVERTISE_100FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 cmd->advertising |= ADVERTISED_100baseT_Full;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200974 if (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 cmd->advertising |= ADVERTISED_1000baseT_Full;
976
977 status = RTL_R8(PHYstatus);
978
979 if (status & _1000bpsF)
980 cmd->speed = SPEED_1000;
981 else if (status & _100bps)
982 cmd->speed = SPEED_100;
983 else if (status & _10bps)
984 cmd->speed = SPEED_10;
985
Francois Romieu623a1592006-05-14 12:42:14 +0200986 if (status & TxFlowCtrl)
987 cmd->advertising |= ADVERTISED_Asym_Pause;
988 if (status & RxFlowCtrl)
989 cmd->advertising |= ADVERTISED_Pause;
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 cmd->duplex = ((status & _1000bpsF) || (status & FullDup)) ?
992 DUPLEX_FULL : DUPLEX_HALF;
993}
994
995static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
996{
997 struct rtl8169_private *tp = netdev_priv(dev);
998 unsigned long flags;
999
1000 spin_lock_irqsave(&tp->lock, flags);
1001
1002 tp->get_settings(dev, cmd);
1003
1004 spin_unlock_irqrestore(&tp->lock, flags);
1005 return 0;
1006}
1007
1008static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1009 void *p)
1010{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001011 struct rtl8169_private *tp = netdev_priv(dev);
1012 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Francois Romieu5b0384f2006-08-16 16:00:01 +02001014 if (regs->len > R8169_REGS_SIZE)
1015 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Francois Romieu5b0384f2006-08-16 16:00:01 +02001017 spin_lock_irqsave(&tp->lock, flags);
1018 memcpy_fromio(p, tp->mmio_addr, regs->len);
1019 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001022static u32 rtl8169_get_msglevel(struct net_device *dev)
1023{
1024 struct rtl8169_private *tp = netdev_priv(dev);
1025
1026 return tp->msg_enable;
1027}
1028
1029static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1030{
1031 struct rtl8169_private *tp = netdev_priv(dev);
1032
1033 tp->msg_enable = value;
1034}
1035
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001036static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1037 "tx_packets",
1038 "rx_packets",
1039 "tx_errors",
1040 "rx_errors",
1041 "rx_missed",
1042 "align_errors",
1043 "tx_single_collisions",
1044 "tx_multi_collisions",
1045 "unicast",
1046 "broadcast",
1047 "multicast",
1048 "tx_aborted",
1049 "tx_underrun",
1050};
1051
1052struct rtl8169_counters {
1053 u64 tx_packets;
1054 u64 rx_packets;
1055 u64 tx_errors;
1056 u32 rx_errors;
1057 u16 rx_missed;
1058 u16 align_errors;
1059 u32 tx_one_collision;
1060 u32 tx_multi_collision;
1061 u64 rx_unicast;
1062 u64 rx_broadcast;
1063 u32 rx_multicast;
1064 u16 tx_aborted;
1065 u16 tx_underun;
1066};
1067
1068static int rtl8169_get_stats_count(struct net_device *dev)
1069{
1070 return ARRAY_SIZE(rtl8169_gstrings);
1071}
1072
1073static void rtl8169_get_ethtool_stats(struct net_device *dev,
1074 struct ethtool_stats *stats, u64 *data)
1075{
1076 struct rtl8169_private *tp = netdev_priv(dev);
1077 void __iomem *ioaddr = tp->mmio_addr;
1078 struct rtl8169_counters *counters;
1079 dma_addr_t paddr;
1080 u32 cmd;
1081
1082 ASSERT_RTNL();
1083
1084 counters = pci_alloc_consistent(tp->pci_dev, sizeof(*counters), &paddr);
1085 if (!counters)
1086 return;
1087
1088 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
1089 cmd = (u64)paddr & DMA_32BIT_MASK;
1090 RTL_W32(CounterAddrLow, cmd);
1091 RTL_W32(CounterAddrLow, cmd | CounterDump);
1092
1093 while (RTL_R32(CounterAddrLow) & CounterDump) {
1094 if (msleep_interruptible(1))
1095 break;
1096 }
1097
1098 RTL_W32(CounterAddrLow, 0);
1099 RTL_W32(CounterAddrHigh, 0);
1100
Francois Romieu5b0384f2006-08-16 16:00:01 +02001101 data[0] = le64_to_cpu(counters->tx_packets);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001102 data[1] = le64_to_cpu(counters->rx_packets);
1103 data[2] = le64_to_cpu(counters->tx_errors);
1104 data[3] = le32_to_cpu(counters->rx_errors);
1105 data[4] = le16_to_cpu(counters->rx_missed);
1106 data[5] = le16_to_cpu(counters->align_errors);
1107 data[6] = le32_to_cpu(counters->tx_one_collision);
1108 data[7] = le32_to_cpu(counters->tx_multi_collision);
1109 data[8] = le64_to_cpu(counters->rx_unicast);
1110 data[9] = le64_to_cpu(counters->rx_broadcast);
1111 data[10] = le32_to_cpu(counters->rx_multicast);
1112 data[11] = le16_to_cpu(counters->tx_aborted);
1113 data[12] = le16_to_cpu(counters->tx_underun);
1114
1115 pci_free_consistent(tp->pci_dev, sizeof(*counters), counters, paddr);
1116}
1117
1118static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1119{
1120 switch(stringset) {
1121 case ETH_SS_STATS:
1122 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1123 break;
1124 }
1125}
1126
1127
Jeff Garzik7282d492006-09-13 14:30:00 -04001128static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 .get_drvinfo = rtl8169_get_drvinfo,
1130 .get_regs_len = rtl8169_get_regs_len,
1131 .get_link = ethtool_op_get_link,
1132 .get_settings = rtl8169_get_settings,
1133 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001134 .get_msglevel = rtl8169_get_msglevel,
1135 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 .get_rx_csum = rtl8169_get_rx_csum,
1137 .set_rx_csum = rtl8169_set_rx_csum,
1138 .get_tx_csum = ethtool_op_get_tx_csum,
1139 .set_tx_csum = ethtool_op_set_tx_csum,
1140 .get_sg = ethtool_op_get_sg,
1141 .set_sg = ethtool_op_set_sg,
1142 .get_tso = ethtool_op_get_tso,
1143 .set_tso = ethtool_op_set_tso,
1144 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001145 .get_wol = rtl8169_get_wol,
1146 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001147 .get_strings = rtl8169_get_strings,
1148 .get_stats_count = rtl8169_get_stats_count,
1149 .get_ethtool_stats = rtl8169_get_ethtool_stats,
John W. Linville6d6525b2005-09-12 10:48:57 -04001150 .get_perm_addr = ethtool_op_get_perm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151};
1152
1153static void rtl8169_write_gmii_reg_bit(void __iomem *ioaddr, int reg, int bitnum,
1154 int bitval)
1155{
1156 int val;
1157
1158 val = mdio_read(ioaddr, reg);
1159 val = (bitval == 1) ?
1160 val | (bitval << bitnum) : val & ~(0x0001 << bitnum);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001161 mdio_write(ioaddr, reg, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
1164static void rtl8169_get_mac_version(struct rtl8169_private *tp, void __iomem *ioaddr)
1165{
1166 const struct {
1167 u32 mask;
1168 int mac_version;
1169 } mac_info[] = {
Francois Romieubcf0bf92006-07-26 23:14:13 +02001170 { 0x38800000, RTL_GIGA_MAC_VER_15 },
1171 { 0x38000000, RTL_GIGA_MAC_VER_12 },
1172 { 0x34000000, RTL_GIGA_MAC_VER_13 },
1173 { 0x30800000, RTL_GIGA_MAC_VER_14 },
Francois Romieu5b0384f2006-08-16 16:00:01 +02001174 { 0x30000000, RTL_GIGA_MAC_VER_11 },
Francois Romieubcf0bf92006-07-26 23:14:13 +02001175 { 0x18000000, RTL_GIGA_MAC_VER_05 },
1176 { 0x10000000, RTL_GIGA_MAC_VER_04 },
1177 { 0x04000000, RTL_GIGA_MAC_VER_03 },
1178 { 0x00800000, RTL_GIGA_MAC_VER_02 },
1179 { 0x00000000, RTL_GIGA_MAC_VER_01 } /* Catch-all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }, *p = mac_info;
1181 u32 reg;
1182
1183 reg = RTL_R32(TxConfig) & 0x7c800000;
1184 while ((reg & p->mask) != p->mask)
1185 p++;
1186 tp->mac_version = p->mac_version;
1187}
1188
1189static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1190{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001191 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
1194static void rtl8169_get_phy_version(struct rtl8169_private *tp, void __iomem *ioaddr)
1195{
1196 const struct {
1197 u16 mask;
1198 u16 set;
1199 int phy_version;
1200 } phy_info[] = {
1201 { 0x000f, 0x0002, RTL_GIGA_PHY_VER_G },
1202 { 0x000f, 0x0001, RTL_GIGA_PHY_VER_F },
1203 { 0x000f, 0x0000, RTL_GIGA_PHY_VER_E },
1204 { 0x0000, 0x0000, RTL_GIGA_PHY_VER_D } /* Catch-all */
1205 }, *p = phy_info;
1206 u16 reg;
1207
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001208 reg = mdio_read(ioaddr, MII_PHYSID2) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 while ((reg & p->mask) != p->set)
1210 p++;
1211 tp->phy_version = p->phy_version;
1212}
1213
1214static void rtl8169_print_phy_version(struct rtl8169_private *tp)
1215{
1216 struct {
1217 int version;
1218 char *msg;
1219 u32 reg;
1220 } phy_print[] = {
1221 { RTL_GIGA_PHY_VER_G, "RTL_GIGA_PHY_VER_G", 0x0002 },
1222 { RTL_GIGA_PHY_VER_F, "RTL_GIGA_PHY_VER_F", 0x0001 },
1223 { RTL_GIGA_PHY_VER_E, "RTL_GIGA_PHY_VER_E", 0x0000 },
1224 { RTL_GIGA_PHY_VER_D, "RTL_GIGA_PHY_VER_D", 0x0000 },
1225 { 0, NULL, 0x0000 }
1226 }, *p;
1227
1228 for (p = phy_print; p->msg; p++) {
1229 if (tp->phy_version == p->version) {
1230 dprintk("phy_version == %s (%04x)\n", p->msg, p->reg);
1231 return;
1232 }
1233 }
1234 dprintk("phy_version == Unknown\n");
1235}
1236
1237static void rtl8169_hw_phy_config(struct net_device *dev)
1238{
1239 struct rtl8169_private *tp = netdev_priv(dev);
1240 void __iomem *ioaddr = tp->mmio_addr;
1241 struct {
1242 u16 regs[5]; /* Beware of bit-sign propagation */
1243 } phy_magic[5] = { {
1244 { 0x0000, //w 4 15 12 0
1245 0x00a1, //w 3 15 0 00a1
1246 0x0008, //w 2 15 0 0008
1247 0x1020, //w 1 15 0 1020
1248 0x1000 } },{ //w 0 15 0 1000
1249 { 0x7000, //w 4 15 12 7
1250 0xff41, //w 3 15 0 ff41
1251 0xde60, //w 2 15 0 de60
1252 0x0140, //w 1 15 0 0140
1253 0x0077 } },{ //w 0 15 0 0077
1254 { 0xa000, //w 4 15 12 a
1255 0xdf01, //w 3 15 0 df01
1256 0xdf20, //w 2 15 0 df20
1257 0xff95, //w 1 15 0 ff95
1258 0xfa00 } },{ //w 0 15 0 fa00
1259 { 0xb000, //w 4 15 12 b
1260 0xff41, //w 3 15 0 ff41
1261 0xde20, //w 2 15 0 de20
1262 0x0140, //w 1 15 0 0140
1263 0x00bb } },{ //w 0 15 0 00bb
1264 { 0xf000, //w 4 15 12 f
1265 0xdf01, //w 3 15 0 df01
1266 0xdf20, //w 2 15 0 df20
1267 0xff95, //w 1 15 0 ff95
1268 0xbf00 } //w 0 15 0 bf00
1269 }
1270 }, *p = phy_magic;
1271 int i;
1272
1273 rtl8169_print_mac_version(tp);
1274 rtl8169_print_phy_version(tp);
1275
Francois Romieubcf0bf92006-07-26 23:14:13 +02001276 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return;
1278 if (tp->phy_version >= RTL_GIGA_PHY_VER_H)
1279 return;
1280
1281 dprintk("MAC version != 0 && PHY version == 0 or 1\n");
1282 dprintk("Do final_reg2.cfg\n");
1283
1284 /* Shazam ! */
1285
Francois Romieubcf0bf92006-07-26 23:14:13 +02001286 if (tp->mac_version == RTL_GIGA_MAC_VER_04) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 mdio_write(ioaddr, 31, 0x0001);
1288 mdio_write(ioaddr, 9, 0x273a);
1289 mdio_write(ioaddr, 14, 0x7bfb);
1290 mdio_write(ioaddr, 27, 0x841e);
1291
1292 mdio_write(ioaddr, 31, 0x0002);
1293 mdio_write(ioaddr, 1, 0x90d0);
1294 mdio_write(ioaddr, 31, 0x0000);
1295 return;
1296 }
1297
1298 /* phy config for RTL8169s mac_version C chip */
1299 mdio_write(ioaddr, 31, 0x0001); //w 31 2 0 1
1300 mdio_write(ioaddr, 21, 0x1000); //w 21 15 0 1000
1301 mdio_write(ioaddr, 24, 0x65c7); //w 24 15 0 65c7
1302 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
1303
1304 for (i = 0; i < ARRAY_SIZE(phy_magic); i++, p++) {
1305 int val, pos = 4;
1306
1307 val = (mdio_read(ioaddr, pos) & 0x0fff) | (p->regs[0] & 0xffff);
1308 mdio_write(ioaddr, pos, val);
1309 while (--pos >= 0)
1310 mdio_write(ioaddr, pos, p->regs[4 - pos] & 0xffff);
1311 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 1); //w 4 11 11 1
1312 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
1313 }
1314 mdio_write(ioaddr, 31, 0x0000); //w 31 2 0 0
1315}
1316
1317static void rtl8169_phy_timer(unsigned long __opaque)
1318{
1319 struct net_device *dev = (struct net_device *)__opaque;
1320 struct rtl8169_private *tp = netdev_priv(dev);
1321 struct timer_list *timer = &tp->timer;
1322 void __iomem *ioaddr = tp->mmio_addr;
1323 unsigned long timeout = RTL8169_PHY_TIMEOUT;
1324
Francois Romieubcf0bf92006-07-26 23:14:13 +02001325 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 assert(tp->phy_version < RTL_GIGA_PHY_VER_H);
1327
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001328 if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return;
1330
1331 spin_lock_irq(&tp->lock);
1332
1333 if (tp->phy_reset_pending(ioaddr)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02001334 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 * A busy loop could burn quite a few cycles on nowadays CPU.
1336 * Let's delay the execution of the timer for a few ticks.
1337 */
1338 timeout = HZ/10;
1339 goto out_mod_timer;
1340 }
1341
1342 if (tp->link_ok(ioaddr))
1343 goto out_unlock;
1344
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001345 if (netif_msg_link(tp))
1346 printk(KERN_WARNING "%s: PHY reset until link up\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 tp->phy_reset_enable(ioaddr);
1349
1350out_mod_timer:
1351 mod_timer(timer, jiffies + timeout);
1352out_unlock:
1353 spin_unlock_irq(&tp->lock);
1354}
1355
1356static inline void rtl8169_delete_timer(struct net_device *dev)
1357{
1358 struct rtl8169_private *tp = netdev_priv(dev);
1359 struct timer_list *timer = &tp->timer;
1360
Francois Romieubcf0bf92006-07-26 23:14:13 +02001361 if ((tp->mac_version <= RTL_GIGA_MAC_VER_01) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 (tp->phy_version >= RTL_GIGA_PHY_VER_H))
1363 return;
1364
1365 del_timer_sync(timer);
1366}
1367
1368static inline void rtl8169_request_timer(struct net_device *dev)
1369{
1370 struct rtl8169_private *tp = netdev_priv(dev);
1371 struct timer_list *timer = &tp->timer;
1372
Francois Romieubcf0bf92006-07-26 23:14:13 +02001373 if ((tp->mac_version <= RTL_GIGA_MAC_VER_01) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 (tp->phy_version >= RTL_GIGA_PHY_VER_H))
1375 return;
1376
1377 init_timer(timer);
1378 timer->expires = jiffies + RTL8169_PHY_TIMEOUT;
1379 timer->data = (unsigned long)(dev);
1380 timer->function = rtl8169_phy_timer;
1381 add_timer(timer);
1382}
1383
1384#ifdef CONFIG_NET_POLL_CONTROLLER
1385/*
1386 * Polling 'interrupt' - used by things like netconsole to send skbs
1387 * without having to re-enable interrupts. It's not called while
1388 * the interrupt routine is executing.
1389 */
1390static void rtl8169_netpoll(struct net_device *dev)
1391{
1392 struct rtl8169_private *tp = netdev_priv(dev);
1393 struct pci_dev *pdev = tp->pci_dev;
1394
1395 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01001396 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 enable_irq(pdev->irq);
1398}
1399#endif
1400
1401static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
1402 void __iomem *ioaddr)
1403{
1404 iounmap(ioaddr);
1405 pci_release_regions(pdev);
1406 pci_disable_device(pdev);
1407 free_netdev(dev);
1408}
1409
Francois Romieubf793292006-11-01 00:53:05 +01001410static void rtl8169_phy_reset(struct net_device *dev,
1411 struct rtl8169_private *tp)
1412{
1413 void __iomem *ioaddr = tp->mmio_addr;
1414 int i;
1415
1416 tp->phy_reset_enable(ioaddr);
1417 for (i = 0; i < 100; i++) {
1418 if (!tp->phy_reset_pending(ioaddr))
1419 return;
1420 msleep(1);
1421 }
1422 if (netif_msg_link(tp))
1423 printk(KERN_ERR "%s: PHY reset failed.\n", dev->name);
1424}
1425
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001426static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001428 void __iomem *ioaddr = tp->mmio_addr;
1429 static int board_idx = -1;
1430 u8 autoneg, duplex;
1431 u16 speed;
1432
1433 board_idx++;
1434
1435 rtl8169_hw_phy_config(dev);
1436
1437 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
1438 RTL_W8(0x82, 0x01);
1439
Francois Romieubcf0bf92006-07-26 23:14:13 +02001440 if (tp->mac_version < RTL_GIGA_MAC_VER_03) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001441 dprintk("Set PCI Latency=0x40\n");
1442 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
1443 }
1444
Francois Romieubcf0bf92006-07-26 23:14:13 +02001445 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001446 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
1447 RTL_W8(0x82, 0x01);
1448 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
1449 mdio_write(ioaddr, 0x0b, 0x0000); //w 0x0b 15 0 0
1450 }
1451
1452 rtl8169_link_option(board_idx, &autoneg, &speed, &duplex);
1453
Francois Romieubf793292006-11-01 00:53:05 +01001454 rtl8169_phy_reset(dev, tp);
1455
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001456 rtl8169_set_speed(dev, autoneg, speed, duplex);
1457
1458 if ((RTL_R8(PHYstatus) & TBI_Enable) && netif_msg_link(tp))
1459 printk(KERN_INFO PFX "%s: TBI auto-negotiating\n", dev->name);
1460}
1461
Francois Romieu5f787a12006-08-17 13:02:36 +02001462static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1463{
1464 struct rtl8169_private *tp = netdev_priv(dev);
1465 struct mii_ioctl_data *data = if_mii(ifr);
1466
1467 if (!netif_running(dev))
1468 return -ENODEV;
1469
1470 switch (cmd) {
1471 case SIOCGMIIPHY:
1472 data->phy_id = 32; /* Internal PHY */
1473 return 0;
1474
1475 case SIOCGMIIREG:
1476 data->val_out = mdio_read(tp->mmio_addr, data->reg_num & 0x1f);
1477 return 0;
1478
1479 case SIOCSMIIREG:
1480 if (!capable(CAP_NET_ADMIN))
1481 return -EPERM;
1482 mdio_write(tp->mmio_addr, data->reg_num & 0x1f, data->val_in);
1483 return 0;
1484 }
1485 return -EOPNOTSUPP;
1486}
1487
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001488static int __devinit
1489rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
1490{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001491 const unsigned int region = rtl_cfg_info[ent->driver_data].region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 struct rtl8169_private *tp;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001493 struct net_device *dev;
1494 void __iomem *ioaddr;
Francois Romieu315917d2006-11-29 22:21:33 +01001495 unsigned int pm_cap;
1496 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001498 if (netif_msg_drv(&debug)) {
1499 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
1500 MODULENAME, RTL8169_VERSION);
1501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001504 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001505 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001506 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001507 rc = -ENOMEM;
1508 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 }
1510
1511 SET_MODULE_OWNER(dev);
1512 SET_NETDEV_DEV(dev, &pdev->dev);
1513 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00001514 tp->dev = dev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001515 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
1517 /* enable device (incl. PCI PM wakeup and hotplug setup) */
1518 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001519 if (rc < 0) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001520 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001521 dev_err(&pdev->dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001522 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524
1525 rc = pci_set_mwi(pdev);
1526 if (rc < 0)
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001527 goto err_out_disable_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529 /* save power state before pci_enable_device overwrites it */
1530 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
1531 if (pm_cap) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001532 u16 pwr_command, acpi_idle_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 pci_read_config_word(pdev, pm_cap + PCI_PM_CTRL, &pwr_command);
1535 acpi_idle_state = pwr_command & PCI_PM_CTRL_STATE_MASK;
1536 } else {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001537 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001538 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001539 "PowerManagement capability not found.\n");
1540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542
1543 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001544 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001545 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001546 dev_err(&pdev->dev,
Francois Romieubcf0bf92006-07-26 23:14:13 +02001547 "region #%d not an MMIO resource, aborting\n",
1548 region);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 rc = -ENODEV;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001551 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001555 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001556 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001557 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001558 "Invalid PCI region size(s), aborting\n");
1559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 rc = -ENODEV;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001561 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
1563
1564 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001565 if (rc < 0) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001566 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001567 dev_err(&pdev->dev, "could not request regions.\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001568 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
1570
1571 tp->cp_cmd = PCIMulRW | RxChkSum;
1572
1573 if ((sizeof(dma_addr_t) > 4) &&
1574 !pci_set_dma_mask(pdev, DMA_64BIT_MASK) && use_dac) {
1575 tp->cp_cmd |= PCIDAC;
1576 dev->features |= NETIF_F_HIGHDMA;
1577 } else {
1578 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1579 if (rc < 0) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001580 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001581 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001582 "DMA configuration failed.\n");
1583 }
1584 goto err_out_free_res_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
1586 }
1587
1588 pci_set_master(pdev);
1589
1590 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001591 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001592 if (!ioaddr) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001593 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001594 dev_err(&pdev->dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 rc = -EIO;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001596 goto err_out_free_res_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 }
1598
1599 /* Unneeded ? Don't mess with Mrs. Murphy. */
1600 rtl8169_irq_mask_and_ack(ioaddr);
1601
1602 /* Soft reset the chip. */
1603 RTL_W8(ChipCmd, CmdReset);
1604
1605 /* Check that the chip has finished the reset. */
Francois Romieub518fa82006-08-16 15:23:13 +02001606 for (i = 100; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1608 break;
Francois Romieub518fa82006-08-16 15:23:13 +02001609 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 }
1611
1612 /* Identify chip attached to board */
1613 rtl8169_get_mac_version(tp, ioaddr);
1614 rtl8169_get_phy_version(tp, ioaddr);
1615
1616 rtl8169_print_mac_version(tp);
1617 rtl8169_print_phy_version(tp);
1618
1619 for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--) {
1620 if (tp->mac_version == rtl_chip_info[i].mac_version)
1621 break;
1622 }
1623 if (i < 0) {
1624 /* Unknown chip: assume array element #0, original RTL-8169 */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001625 if (netif_msg_probe(tp)) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001626 dev_printk(KERN_DEBUG, &pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001627 "unknown chip version, assuming %s\n",
1628 rtl_chip_info[0].name);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 i++;
1631 }
1632 tp->chipset = i;
1633
Francois Romieu5d06a992006-02-23 00:47:58 +01001634 RTL_W8(Cfg9346, Cfg9346_Unlock);
1635 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
1636 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
1637 RTL_W8(Cfg9346, Cfg9346_Lock);
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (RTL_R8(PHYstatus) & TBI_Enable) {
1640 tp->set_speed = rtl8169_set_speed_tbi;
1641 tp->get_settings = rtl8169_gset_tbi;
1642 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
1643 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
1644 tp->link_ok = rtl8169_tbi_link_ok;
1645
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001646 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 } else {
1648 tp->set_speed = rtl8169_set_speed_xmii;
1649 tp->get_settings = rtl8169_gset_xmii;
1650 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
1651 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
1652 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu5f787a12006-08-17 13:02:36 +02001653
1654 dev->do_ioctl = rtl8169_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 }
1656
1657 /* Get MAC address. FIXME: read EEPROM */
1658 for (i = 0; i < MAC_ADDR_LEN; i++)
1659 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04001660 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 dev->open = rtl8169_open;
1663 dev->hard_start_xmit = rtl8169_start_xmit;
1664 dev->get_stats = rtl8169_get_stats;
1665 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
1666 dev->stop = rtl8169_close;
1667 dev->tx_timeout = rtl8169_tx_timeout;
1668 dev->set_multicast_list = rtl8169_set_rx_mode;
1669 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
1670 dev->irq = pdev->irq;
1671 dev->base_addr = (unsigned long) ioaddr;
1672 dev->change_mtu = rtl8169_change_mtu;
1673
1674#ifdef CONFIG_R8169_NAPI
1675 dev->poll = rtl8169_poll;
1676 dev->weight = R8169_NAPI_WEIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677#endif
1678
1679#ifdef CONFIG_R8169_VLAN
1680 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
1681 dev->vlan_rx_register = rtl8169_vlan_rx_register;
1682 dev->vlan_rx_kill_vid = rtl8169_vlan_rx_kill_vid;
1683#endif
1684
1685#ifdef CONFIG_NET_POLL_CONTROLLER
1686 dev->poll_controller = rtl8169_netpoll;
1687#endif
1688
1689 tp->intr_mask = 0xffff;
1690 tp->pci_dev = pdev;
1691 tp->mmio_addr = ioaddr;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001692 tp->align = rtl_cfg_info[ent->driver_data].align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 spin_lock_init(&tp->lock);
1695
1696 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001697 if (rc < 0)
1698 goto err_out_unmap_5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 pci_set_drvdata(pdev, dev);
1701
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001702 if (netif_msg_probe(tp)) {
1703 printk(KERN_INFO "%s: %s at 0x%lx, "
1704 "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x, "
1705 "IRQ %d\n",
1706 dev->name,
Francois Romieubcf0bf92006-07-26 23:14:13 +02001707 rtl_chip_info[tp->chipset].name,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001708 dev->base_addr,
1709 dev->dev_addr[0], dev->dev_addr[1],
1710 dev->dev_addr[2], dev->dev_addr[3],
1711 dev->dev_addr[4], dev->dev_addr[5], dev->irq);
1712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001714 rtl8169_init_phy(dev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001716out:
1717 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001719err_out_unmap_5:
1720 iounmap(ioaddr);
1721err_out_free_res_4:
1722 pci_release_regions(pdev);
1723err_out_mwi_3:
1724 pci_clear_mwi(pdev);
1725err_out_disable_2:
1726 pci_disable_device(pdev);
1727err_out_free_dev_1:
1728 free_netdev(dev);
1729 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730}
1731
1732static void __devexit
1733rtl8169_remove_one(struct pci_dev *pdev)
1734{
1735 struct net_device *dev = pci_get_drvdata(pdev);
1736 struct rtl8169_private *tp = netdev_priv(dev);
1737
1738 assert(dev != NULL);
1739 assert(tp != NULL);
1740
1741 unregister_netdev(dev);
1742 rtl8169_release_board(pdev, dev, tp->mmio_addr);
1743 pci_set_drvdata(pdev, NULL);
1744}
1745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746static void rtl8169_set_rxbufsize(struct rtl8169_private *tp,
1747 struct net_device *dev)
1748{
1749 unsigned int mtu = dev->mtu;
1750
1751 tp->rx_buf_sz = (mtu > RX_BUF_SIZE) ? mtu + ETH_HLEN + 8 : RX_BUF_SIZE;
1752}
1753
1754static int rtl8169_open(struct net_device *dev)
1755{
1756 struct rtl8169_private *tp = netdev_priv(dev);
1757 struct pci_dev *pdev = tp->pci_dev;
1758 int retval;
1759
1760 rtl8169_set_rxbufsize(tp, dev);
1761
1762 retval =
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07001763 request_irq(dev->irq, rtl8169_interrupt, IRQF_SHARED, dev->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if (retval < 0)
1765 goto out;
1766
1767 retval = -ENOMEM;
1768
1769 /*
1770 * Rx and Tx desscriptors needs 256 bytes alignment.
1771 * pci_alloc_consistent provides more.
1772 */
1773 tp->TxDescArray = pci_alloc_consistent(pdev, R8169_TX_RING_BYTES,
1774 &tp->TxPhyAddr);
1775 if (!tp->TxDescArray)
1776 goto err_free_irq;
1777
1778 tp->RxDescArray = pci_alloc_consistent(pdev, R8169_RX_RING_BYTES,
1779 &tp->RxPhyAddr);
1780 if (!tp->RxDescArray)
1781 goto err_free_tx;
1782
1783 retval = rtl8169_init_ring(dev);
1784 if (retval < 0)
1785 goto err_free_rx;
1786
David Howellsc4028952006-11-22 14:57:56 +00001787 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 rtl8169_hw_start(dev);
1790
1791 rtl8169_request_timer(dev);
1792
1793 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
1794out:
1795 return retval;
1796
1797err_free_rx:
1798 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
1799 tp->RxPhyAddr);
1800err_free_tx:
1801 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
1802 tp->TxPhyAddr);
1803err_free_irq:
1804 free_irq(dev->irq, dev);
1805 goto out;
1806}
1807
1808static void rtl8169_hw_reset(void __iomem *ioaddr)
1809{
1810 /* Disable interrupts */
1811 rtl8169_irq_mask_and_ack(ioaddr);
1812
1813 /* Reset the chipset */
1814 RTL_W8(ChipCmd, CmdReset);
1815
1816 /* PCI commit */
1817 RTL_R8(ChipCmd);
1818}
1819
1820static void
1821rtl8169_hw_start(struct net_device *dev)
1822{
1823 struct rtl8169_private *tp = netdev_priv(dev);
1824 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001825 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 u32 i;
1827
1828 /* Soft reset the chip. */
1829 RTL_W8(ChipCmd, CmdReset);
1830
1831 /* Check that the chip has finished the reset. */
Francois Romieub518fa82006-08-16 15:23:13 +02001832 for (i = 100; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1834 break;
Francois Romieub518fa82006-08-16 15:23:13 +02001835 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
1837
Francois Romieubcf0bf92006-07-26 23:14:13 +02001838 if (tp->mac_version == RTL_GIGA_MAC_VER_13) {
1839 pci_write_config_word(pdev, 0x68, 0x00);
1840 pci_write_config_word(pdev, 0x69, 0x08);
1841 }
1842
1843 /* Undocumented stuff. */
1844 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
1845 u16 cmd;
1846
1847 /* Realtek's r1000_n.c driver uses '&& 0x01' here. Well... */
1848 if ((RTL_R8(Config2) & 0x07) & 0x01)
1849 RTL_W32(0x7c, 0x0007ffff);
1850
1851 RTL_W32(0x7c, 0x0007ff00);
1852
1853 pci_read_config_word(pdev, PCI_COMMAND, &cmd);
1854 cmd = cmd & 0xef;
1855 pci_write_config_word(pdev, PCI_COMMAND, cmd);
1856 }
1857
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 RTL_W8(Cfg9346, Cfg9346_Unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 RTL_W8(EarlyTxThres, EarlyTxThld);
1861
Francois Romieu126fa4b2005-05-12 20:09:17 -04001862 /* Low hurts. Let's disable the filtering. */
1863 RTL_W16(RxMaxSize, 16383);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 /* Set Rx Config register */
1866 i = rtl8169_rx_config |
1867 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
1868 RTL_W32(RxConfig, i);
1869
1870 /* Set DMA burst size and Interframe Gap Time */
Francois Romieu5b0384f2006-08-16 16:00:01 +02001871 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
1872 (InterFrameGap << TxInterFrameGapShift));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Francois Romieubcf0bf92006-07-26 23:14:13 +02001874 tp->cp_cmd |= RTL_R16(CPlusCmd) | PCIMulRW;
1875
1876 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
1877 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 dprintk(KERN_INFO PFX "Set MAC Reg C+CR Offset 0xE0. "
1879 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02001880 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
1882
Francois Romieubcf0bf92006-07-26 23:14:13 +02001883 RTL_W16(CPlusCmd, tp->cp_cmd);
1884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 /*
1886 * Undocumented corner. Supposedly:
1887 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
1888 */
1889 RTL_W16(IntrMitigate, 0x0000);
1890
Francois Romieub39fe412006-09-11 20:10:58 +02001891 /*
1892 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
1893 * register to be written before TxDescAddrLow to work.
1894 * Switching from MMIO to I/O access fixes the issue as well.
1895 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr >> 32));
Francois Romieub39fe412006-09-11 20:10:58 +02001897 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr & DMA_32BIT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr >> 32));
Francois Romieub39fe412006-09-11 20:10:58 +02001899 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr & DMA_32BIT_MASK));
Francois Romieubcf0bf92006-07-26 23:14:13 +02001900 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02001902
1903 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
1904 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 RTL_W32(RxMissed, 0);
1907
1908 rtl8169_set_rx_mode(dev);
1909
1910 /* no early-rx interrupts */
1911 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
1912
1913 /* Enable all known interrupts by setting the interrupt mask. */
1914 RTL_W16(IntrMask, rtl8169_intr_mask);
1915
1916 netif_start_queue(dev);
1917}
1918
1919static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
1920{
1921 struct rtl8169_private *tp = netdev_priv(dev);
1922 int ret = 0;
1923
1924 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
1925 return -EINVAL;
1926
1927 dev->mtu = new_mtu;
1928
1929 if (!netif_running(dev))
1930 goto out;
1931
1932 rtl8169_down(dev);
1933
1934 rtl8169_set_rxbufsize(tp, dev);
1935
1936 ret = rtl8169_init_ring(dev);
1937 if (ret < 0)
1938 goto out;
1939
1940 netif_poll_enable(dev);
1941
1942 rtl8169_hw_start(dev);
1943
1944 rtl8169_request_timer(dev);
1945
1946out:
1947 return ret;
1948}
1949
1950static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
1951{
1952 desc->addr = 0x0badbadbadbadbadull;
1953 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
1954}
1955
1956static void rtl8169_free_rx_skb(struct rtl8169_private *tp,
1957 struct sk_buff **sk_buff, struct RxDesc *desc)
1958{
1959 struct pci_dev *pdev = tp->pci_dev;
1960
1961 pci_unmap_single(pdev, le64_to_cpu(desc->addr), tp->rx_buf_sz,
1962 PCI_DMA_FROMDEVICE);
1963 dev_kfree_skb(*sk_buff);
1964 *sk_buff = NULL;
1965 rtl8169_make_unusable_by_asic(desc);
1966}
1967
1968static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
1969{
1970 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
1971
1972 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
1973}
1974
1975static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
1976 u32 rx_buf_sz)
1977{
1978 desc->addr = cpu_to_le64(mapping);
1979 wmb();
1980 rtl8169_mark_to_asic(desc, rx_buf_sz);
1981}
1982
1983static int rtl8169_alloc_rx_skb(struct pci_dev *pdev, struct sk_buff **sk_buff,
Francois Romieubcf0bf92006-07-26 23:14:13 +02001984 struct RxDesc *desc, int rx_buf_sz,
1985 unsigned int align)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
1987 struct sk_buff *skb;
1988 dma_addr_t mapping;
1989 int ret = 0;
1990
Francois Romieubcf0bf92006-07-26 23:14:13 +02001991 skb = dev_alloc_skb(rx_buf_sz + align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 if (!skb)
1993 goto err_out;
1994
Francois Romieubcf0bf92006-07-26 23:14:13 +02001995 skb_reserve(skb, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 *sk_buff = skb;
1997
David S. Miller689be432005-06-28 15:25:31 -07001998 mapping = pci_map_single(pdev, skb->data, rx_buf_sz,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 PCI_DMA_FROMDEVICE);
2000
2001 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
2002
2003out:
2004 return ret;
2005
2006err_out:
2007 ret = -ENOMEM;
2008 rtl8169_make_unusable_by_asic(desc);
2009 goto out;
2010}
2011
2012static void rtl8169_rx_clear(struct rtl8169_private *tp)
2013{
2014 int i;
2015
2016 for (i = 0; i < NUM_RX_DESC; i++) {
2017 if (tp->Rx_skbuff[i]) {
2018 rtl8169_free_rx_skb(tp, tp->Rx_skbuff + i,
2019 tp->RxDescArray + i);
2020 }
2021 }
2022}
2023
2024static u32 rtl8169_rx_fill(struct rtl8169_private *tp, struct net_device *dev,
2025 u32 start, u32 end)
2026{
2027 u32 cur;
Francois Romieu5b0384f2006-08-16 16:00:01 +02002028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 for (cur = start; end - cur > 0; cur++) {
2030 int ret, i = cur % NUM_RX_DESC;
2031
2032 if (tp->Rx_skbuff[i])
2033 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02002034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 ret = rtl8169_alloc_rx_skb(tp->pci_dev, tp->Rx_skbuff + i,
Francois Romieubcf0bf92006-07-26 23:14:13 +02002036 tp->RxDescArray + i, tp->rx_buf_sz, tp->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 if (ret < 0)
2038 break;
2039 }
2040 return cur - start;
2041}
2042
2043static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
2044{
2045 desc->opts1 |= cpu_to_le32(RingEnd);
2046}
2047
2048static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
2049{
2050 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
2051}
2052
2053static int rtl8169_init_ring(struct net_device *dev)
2054{
2055 struct rtl8169_private *tp = netdev_priv(dev);
2056
2057 rtl8169_init_ring_indexes(tp);
2058
2059 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
2060 memset(tp->Rx_skbuff, 0x0, NUM_RX_DESC * sizeof(struct sk_buff *));
2061
2062 if (rtl8169_rx_fill(tp, dev, 0, NUM_RX_DESC) != NUM_RX_DESC)
2063 goto err_out;
2064
2065 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
2066
2067 return 0;
2068
2069err_out:
2070 rtl8169_rx_clear(tp);
2071 return -ENOMEM;
2072}
2073
2074static void rtl8169_unmap_tx_skb(struct pci_dev *pdev, struct ring_info *tx_skb,
2075 struct TxDesc *desc)
2076{
2077 unsigned int len = tx_skb->len;
2078
2079 pci_unmap_single(pdev, le64_to_cpu(desc->addr), len, PCI_DMA_TODEVICE);
2080 desc->opts1 = 0x00;
2081 desc->opts2 = 0x00;
2082 desc->addr = 0x00;
2083 tx_skb->len = 0;
2084}
2085
2086static void rtl8169_tx_clear(struct rtl8169_private *tp)
2087{
2088 unsigned int i;
2089
2090 for (i = tp->dirty_tx; i < tp->dirty_tx + NUM_TX_DESC; i++) {
2091 unsigned int entry = i % NUM_TX_DESC;
2092 struct ring_info *tx_skb = tp->tx_skb + entry;
2093 unsigned int len = tx_skb->len;
2094
2095 if (len) {
2096 struct sk_buff *skb = tx_skb->skb;
2097
2098 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb,
2099 tp->TxDescArray + entry);
2100 if (skb) {
2101 dev_kfree_skb(skb);
2102 tx_skb->skb = NULL;
2103 }
2104 tp->stats.tx_dropped++;
2105 }
2106 }
2107 tp->cur_tx = tp->dirty_tx = 0;
2108}
2109
David Howellsc4028952006-11-22 14:57:56 +00002110static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111{
2112 struct rtl8169_private *tp = netdev_priv(dev);
2113
David Howellsc4028952006-11-22 14:57:56 +00002114 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 schedule_delayed_work(&tp->task, 4);
2116}
2117
2118static void rtl8169_wait_for_quiescence(struct net_device *dev)
2119{
2120 struct rtl8169_private *tp = netdev_priv(dev);
2121 void __iomem *ioaddr = tp->mmio_addr;
2122
2123 synchronize_irq(dev->irq);
2124
2125 /* Wait for any pending NAPI task to complete */
2126 netif_poll_disable(dev);
2127
2128 rtl8169_irq_mask_and_ack(ioaddr);
2129
2130 netif_poll_enable(dev);
2131}
2132
David Howellsc4028952006-11-22 14:57:56 +00002133static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
David Howellsc4028952006-11-22 14:57:56 +00002135 struct rtl8169_private *tp =
2136 container_of(work, struct rtl8169_private, task.work);
2137 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 int ret;
2139
2140 if (netif_running(dev)) {
2141 rtl8169_wait_for_quiescence(dev);
2142 rtl8169_close(dev);
2143 }
2144
2145 ret = rtl8169_open(dev);
2146 if (unlikely(ret < 0)) {
2147 if (net_ratelimit()) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002148 struct rtl8169_private *tp = netdev_priv(dev);
2149
2150 if (netif_msg_drv(tp)) {
2151 printk(PFX KERN_ERR
2152 "%s: reinit failure (status = %d)."
2153 " Rescheduling.\n", dev->name, ret);
2154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 }
2156 rtl8169_schedule_work(dev, rtl8169_reinit_task);
2157 }
2158}
2159
David Howellsc4028952006-11-22 14:57:56 +00002160static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
David Howellsc4028952006-11-22 14:57:56 +00002162 struct rtl8169_private *tp =
2163 container_of(work, struct rtl8169_private, task.work);
2164 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
2166 if (!netif_running(dev))
2167 return;
2168
2169 rtl8169_wait_for_quiescence(dev);
2170
2171 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr);
2172 rtl8169_tx_clear(tp);
2173
2174 if (tp->dirty_rx == tp->cur_rx) {
2175 rtl8169_init_ring_indexes(tp);
2176 rtl8169_hw_start(dev);
2177 netif_wake_queue(dev);
2178 } else {
2179 if (net_ratelimit()) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002180 struct rtl8169_private *tp = netdev_priv(dev);
2181
2182 if (netif_msg_intr(tp)) {
2183 printk(PFX KERN_EMERG
2184 "%s: Rx buffers shortage\n", dev->name);
2185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 }
2187 rtl8169_schedule_work(dev, rtl8169_reset_task);
2188 }
2189}
2190
2191static void rtl8169_tx_timeout(struct net_device *dev)
2192{
2193 struct rtl8169_private *tp = netdev_priv(dev);
2194
2195 rtl8169_hw_reset(tp->mmio_addr);
2196
2197 /* Let's wait a bit while any (async) irq lands on */
2198 rtl8169_schedule_work(dev, rtl8169_reset_task);
2199}
2200
2201static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
2202 u32 opts1)
2203{
2204 struct skb_shared_info *info = skb_shinfo(skb);
2205 unsigned int cur_frag, entry;
2206 struct TxDesc *txd;
2207
2208 entry = tp->cur_tx;
2209 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
2210 skb_frag_t *frag = info->frags + cur_frag;
2211 dma_addr_t mapping;
2212 u32 status, len;
2213 void *addr;
2214
2215 entry = (entry + 1) % NUM_TX_DESC;
2216
2217 txd = tp->TxDescArray + entry;
2218 len = frag->size;
2219 addr = ((void *) page_address(frag->page)) + frag->page_offset;
2220 mapping = pci_map_single(tp->pci_dev, addr, len, PCI_DMA_TODEVICE);
2221
2222 /* anti gcc 2.95.3 bugware (sic) */
2223 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
2224
2225 txd->opts1 = cpu_to_le32(status);
2226 txd->addr = cpu_to_le64(mapping);
2227
2228 tp->tx_skb[entry].len = len;
2229 }
2230
2231 if (cur_frag) {
2232 tp->tx_skb[entry].skb = skb;
2233 txd->opts1 |= cpu_to_le32(LastFrag);
2234 }
2235
2236 return cur_frag;
2237}
2238
2239static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
2240{
2241 if (dev->features & NETIF_F_TSO) {
Herbert Xu79671682006-06-22 02:40:14 -07002242 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 if (mss)
2245 return LargeSend | ((mss & MSSMask) << MSSShift);
2246 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07002247 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 const struct iphdr *ip = skb->nh.iph;
2249
2250 if (ip->protocol == IPPROTO_TCP)
2251 return IPCS | TCPCS;
2252 else if (ip->protocol == IPPROTO_UDP)
2253 return IPCS | UDPCS;
2254 WARN_ON(1); /* we need a WARN() */
2255 }
2256 return 0;
2257}
2258
2259static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev)
2260{
2261 struct rtl8169_private *tp = netdev_priv(dev);
2262 unsigned int frags, entry = tp->cur_tx % NUM_TX_DESC;
2263 struct TxDesc *txd = tp->TxDescArray + entry;
2264 void __iomem *ioaddr = tp->mmio_addr;
2265 dma_addr_t mapping;
2266 u32 status, len;
2267 u32 opts1;
Francois Romieu188f4af2006-08-16 14:51:52 +02002268 int ret = NETDEV_TX_OK;
Francois Romieu5b0384f2006-08-16 16:00:01 +02002269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002271 if (netif_msg_drv(tp)) {
2272 printk(KERN_ERR
2273 "%s: BUG! Tx Ring full when queue awake!\n",
2274 dev->name);
2275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 goto err_stop;
2277 }
2278
2279 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
2280 goto err_stop;
2281
2282 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
2283
2284 frags = rtl8169_xmit_frags(tp, skb, opts1);
2285 if (frags) {
2286 len = skb_headlen(skb);
2287 opts1 |= FirstFrag;
2288 } else {
2289 len = skb->len;
2290
2291 if (unlikely(len < ETH_ZLEN)) {
Herbert Xu5b057c62006-06-23 02:06:41 -07002292 if (skb_padto(skb, ETH_ZLEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 goto err_update_stats;
2294 len = ETH_ZLEN;
2295 }
2296
2297 opts1 |= FirstFrag | LastFrag;
2298 tp->tx_skb[entry].skb = skb;
2299 }
2300
2301 mapping = pci_map_single(tp->pci_dev, skb->data, len, PCI_DMA_TODEVICE);
2302
2303 tp->tx_skb[entry].len = len;
2304 txd->addr = cpu_to_le64(mapping);
2305 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
2306
2307 wmb();
2308
2309 /* anti gcc 2.95.3 bugware (sic) */
2310 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
2311 txd->opts1 = cpu_to_le32(status);
2312
2313 dev->trans_start = jiffies;
2314
2315 tp->cur_tx += frags + 1;
2316
2317 smp_wmb();
2318
2319 RTL_W8(TxPoll, 0x40); /* set polling bit */
2320
2321 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
2322 netif_stop_queue(dev);
2323 smp_rmb();
2324 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
2325 netif_wake_queue(dev);
2326 }
2327
2328out:
2329 return ret;
2330
2331err_stop:
2332 netif_stop_queue(dev);
Francois Romieu188f4af2006-08-16 14:51:52 +02002333 ret = NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334err_update_stats:
2335 tp->stats.tx_dropped++;
2336 goto out;
2337}
2338
2339static void rtl8169_pcierr_interrupt(struct net_device *dev)
2340{
2341 struct rtl8169_private *tp = netdev_priv(dev);
2342 struct pci_dev *pdev = tp->pci_dev;
2343 void __iomem *ioaddr = tp->mmio_addr;
2344 u16 pci_status, pci_cmd;
2345
2346 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
2347 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
2348
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002349 if (netif_msg_intr(tp)) {
2350 printk(KERN_ERR
2351 "%s: PCI error (cmd = 0x%04x, status = 0x%04x).\n",
2352 dev->name, pci_cmd, pci_status);
2353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
2355 /*
2356 * The recovery sequence below admits a very elaborated explanation:
2357 * - it seems to work;
2358 * - I did not see what else could be done.
2359 *
2360 * Feel free to adjust to your needs.
2361 */
2362 pci_write_config_word(pdev, PCI_COMMAND,
2363 pci_cmd | PCI_COMMAND_SERR | PCI_COMMAND_PARITY);
2364
2365 pci_write_config_word(pdev, PCI_STATUS,
2366 pci_status & (PCI_STATUS_DETECTED_PARITY |
2367 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
2368 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
2369
2370 /* The infamous DAC f*ckup only happens at boot time */
2371 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002372 if (netif_msg_intr(tp))
2373 printk(KERN_INFO "%s: disabling PCI DAC.\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 tp->cp_cmd &= ~PCIDAC;
2375 RTL_W16(CPlusCmd, tp->cp_cmd);
2376 dev->features &= ~NETIF_F_HIGHDMA;
2377 rtl8169_schedule_work(dev, rtl8169_reinit_task);
2378 }
2379
2380 rtl8169_hw_reset(ioaddr);
2381}
2382
2383static void
2384rtl8169_tx_interrupt(struct net_device *dev, struct rtl8169_private *tp,
2385 void __iomem *ioaddr)
2386{
2387 unsigned int dirty_tx, tx_left;
2388
2389 assert(dev != NULL);
2390 assert(tp != NULL);
2391 assert(ioaddr != NULL);
2392
2393 dirty_tx = tp->dirty_tx;
2394 smp_rmb();
2395 tx_left = tp->cur_tx - dirty_tx;
2396
2397 while (tx_left > 0) {
2398 unsigned int entry = dirty_tx % NUM_TX_DESC;
2399 struct ring_info *tx_skb = tp->tx_skb + entry;
2400 u32 len = tx_skb->len;
2401 u32 status;
2402
2403 rmb();
2404 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
2405 if (status & DescOwn)
2406 break;
2407
2408 tp->stats.tx_bytes += len;
2409 tp->stats.tx_packets++;
2410
2411 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb, tp->TxDescArray + entry);
2412
2413 if (status & LastFrag) {
2414 dev_kfree_skb_irq(tx_skb->skb);
2415 tx_skb->skb = NULL;
2416 }
2417 dirty_tx++;
2418 tx_left--;
2419 }
2420
2421 if (tp->dirty_tx != dirty_tx) {
2422 tp->dirty_tx = dirty_tx;
2423 smp_wmb();
2424 if (netif_queue_stopped(dev) &&
2425 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
2426 netif_wake_queue(dev);
2427 }
2428 }
2429}
2430
Francois Romieu126fa4b2005-05-12 20:09:17 -04002431static inline int rtl8169_fragmented_frame(u32 status)
2432{
2433 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
2434}
2435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436static inline void rtl8169_rx_csum(struct sk_buff *skb, struct RxDesc *desc)
2437{
2438 u32 opts1 = le32_to_cpu(desc->opts1);
2439 u32 status = opts1 & RxProtoMask;
2440
2441 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
2442 ((status == RxProtoUDP) && !(opts1 & UDPFail)) ||
2443 ((status == RxProtoIP) && !(opts1 & IPFail)))
2444 skb->ip_summed = CHECKSUM_UNNECESSARY;
2445 else
2446 skb->ip_summed = CHECKSUM_NONE;
2447}
2448
2449static inline int rtl8169_try_rx_copy(struct sk_buff **sk_buff, int pkt_size,
Francois Romieubcf0bf92006-07-26 23:14:13 +02002450 struct RxDesc *desc, int rx_buf_sz,
2451 unsigned int align)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452{
2453 int ret = -1;
2454
2455 if (pkt_size < rx_copybreak) {
2456 struct sk_buff *skb;
2457
Francois Romieubcf0bf92006-07-26 23:14:13 +02002458 skb = dev_alloc_skb(pkt_size + align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 if (skb) {
Francois Romieubcf0bf92006-07-26 23:14:13 +02002460 skb_reserve(skb, align);
David S. Miller689be432005-06-28 15:25:31 -07002461 eth_copy_and_sum(skb, sk_buff[0]->data, pkt_size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 *sk_buff = skb;
2463 rtl8169_mark_to_asic(desc, rx_buf_sz);
2464 ret = 0;
2465 }
2466 }
2467 return ret;
2468}
2469
2470static int
2471rtl8169_rx_interrupt(struct net_device *dev, struct rtl8169_private *tp,
2472 void __iomem *ioaddr)
2473{
2474 unsigned int cur_rx, rx_left;
2475 unsigned int delta, count;
2476
2477 assert(dev != NULL);
2478 assert(tp != NULL);
2479 assert(ioaddr != NULL);
2480
2481 cur_rx = tp->cur_rx;
2482 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
2483 rx_left = rtl8169_rx_quota(rx_left, (u32) dev->quota);
2484
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002485 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002487 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 u32 status;
2489
2490 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04002491 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
2493 if (status & DescOwn)
2494 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002495 if (unlikely(status & RxRES)) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002496 if (netif_msg_rx_err(tp)) {
2497 printk(KERN_INFO
2498 "%s: Rx ERROR. status = %08x\n",
2499 dev->name, status);
2500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 tp->stats.rx_errors++;
2502 if (status & (RxRWT | RxRUNT))
2503 tp->stats.rx_length_errors++;
2504 if (status & RxCRC)
2505 tp->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02002506 if (status & RxFOVF) {
2507 rtl8169_schedule_work(dev, rtl8169_reset_task);
2508 tp->stats.rx_fifo_errors++;
2509 }
Francois Romieu126fa4b2005-05-12 20:09:17 -04002510 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 struct sk_buff *skb = tp->Rx_skbuff[entry];
2513 int pkt_size = (status & 0x00001FFF) - 4;
2514 void (*pci_action)(struct pci_dev *, dma_addr_t,
2515 size_t, int) = pci_dma_sync_single_for_device;
2516
Francois Romieu126fa4b2005-05-12 20:09:17 -04002517 /*
2518 * The driver does not support incoming fragmented
2519 * frames. They are seen as a symptom of over-mtu
2520 * sized frames.
2521 */
2522 if (unlikely(rtl8169_fragmented_frame(status))) {
2523 tp->stats.rx_dropped++;
2524 tp->stats.rx_length_errors++;
2525 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002526 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002527 }
2528
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 rtl8169_rx_csum(skb, desc);
Francois Romieubcf0bf92006-07-26 23:14:13 +02002530
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 pci_dma_sync_single_for_cpu(tp->pci_dev,
2532 le64_to_cpu(desc->addr), tp->rx_buf_sz,
2533 PCI_DMA_FROMDEVICE);
2534
2535 if (rtl8169_try_rx_copy(&skb, pkt_size, desc,
Francois Romieubcf0bf92006-07-26 23:14:13 +02002536 tp->rx_buf_sz, tp->align)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 pci_action = pci_unmap_single;
2538 tp->Rx_skbuff[entry] = NULL;
2539 }
2540
2541 pci_action(tp->pci_dev, le64_to_cpu(desc->addr),
2542 tp->rx_buf_sz, PCI_DMA_FROMDEVICE);
2543
2544 skb->dev = dev;
2545 skb_put(skb, pkt_size);
2546 skb->protocol = eth_type_trans(skb, dev);
2547
2548 if (rtl8169_rx_vlan_skb(tp, desc, skb) < 0)
2549 rtl8169_rx_skb(skb);
2550
2551 dev->last_rx = jiffies;
2552 tp->stats.rx_bytes += pkt_size;
2553 tp->stats.rx_packets++;
2554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 }
2556
2557 count = cur_rx - tp->cur_rx;
2558 tp->cur_rx = cur_rx;
2559
2560 delta = rtl8169_rx_fill(tp, dev, tp->dirty_rx, tp->cur_rx);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002561 if (!delta && count && netif_msg_intr(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 printk(KERN_INFO "%s: no Rx buffer allocated\n", dev->name);
2563 tp->dirty_rx += delta;
2564
2565 /*
2566 * FIXME: until there is periodic timer to try and refill the ring,
2567 * a temporary shortage may definitely kill the Rx process.
2568 * - disable the asic to try and avoid an overflow and kick it again
2569 * after refill ?
2570 * - how do others driver handle this condition (Uh oh...).
2571 */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002572 if ((tp->dirty_rx + NUM_RX_DESC == tp->cur_rx) && netif_msg_intr(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 printk(KERN_EMERG "%s: Rx buffers exhausted\n", dev->name);
2574
2575 return count;
2576}
2577
2578/* The interrupt handler does all of the Rx thread work and cleans up after the Tx thread. */
2579static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01002580rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581{
2582 struct net_device *dev = (struct net_device *) dev_instance;
2583 struct rtl8169_private *tp = netdev_priv(dev);
2584 int boguscnt = max_interrupt_work;
2585 void __iomem *ioaddr = tp->mmio_addr;
2586 int status;
2587 int handled = 0;
2588
2589 do {
2590 status = RTL_R16(IntrStatus);
2591
2592 /* hotplug/major error/no more work/shared irq */
2593 if ((status == 0xFFFF) || !status)
2594 break;
2595
2596 handled = 1;
2597
2598 if (unlikely(!netif_running(dev))) {
2599 rtl8169_asic_down(ioaddr);
2600 goto out;
2601 }
2602
2603 status &= tp->intr_mask;
2604 RTL_W16(IntrStatus,
2605 (status & RxFIFOOver) ? (status | RxOverflow) : status);
2606
2607 if (!(status & rtl8169_intr_mask))
2608 break;
2609
2610 if (unlikely(status & SYSErr)) {
2611 rtl8169_pcierr_interrupt(dev);
2612 break;
2613 }
2614
2615 if (status & LinkChg)
2616 rtl8169_check_link_status(dev, tp, ioaddr);
2617
2618#ifdef CONFIG_R8169_NAPI
2619 RTL_W16(IntrMask, rtl8169_intr_mask & ~rtl8169_napi_event);
2620 tp->intr_mask = ~rtl8169_napi_event;
2621
2622 if (likely(netif_rx_schedule_prep(dev)))
2623 __netif_rx_schedule(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002624 else if (netif_msg_intr(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 printk(KERN_INFO "%s: interrupt %04x taken in poll\n",
Francois Romieu5b0384f2006-08-16 16:00:01 +02002626 dev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 }
2628 break;
2629#else
2630 /* Rx interrupt */
2631 if (status & (RxOK | RxOverflow | RxFIFOOver)) {
2632 rtl8169_rx_interrupt(dev, tp, ioaddr);
2633 }
2634 /* Tx interrupt */
2635 if (status & (TxOK | TxErr))
2636 rtl8169_tx_interrupt(dev, tp, ioaddr);
2637#endif
2638
2639 boguscnt--;
2640 } while (boguscnt > 0);
2641
2642 if (boguscnt <= 0) {
Francois Romieu7c8b2eb2005-11-16 23:44:05 +01002643 if (netif_msg_intr(tp) && net_ratelimit() ) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002644 printk(KERN_WARNING
2645 "%s: Too much work at interrupt!\n", dev->name);
2646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 /* Clear all interrupt sources. */
2648 RTL_W16(IntrStatus, 0xffff);
2649 }
2650out:
2651 return IRQ_RETVAL(handled);
2652}
2653
2654#ifdef CONFIG_R8169_NAPI
2655static int rtl8169_poll(struct net_device *dev, int *budget)
2656{
2657 unsigned int work_done, work_to_do = min(*budget, dev->quota);
2658 struct rtl8169_private *tp = netdev_priv(dev);
2659 void __iomem *ioaddr = tp->mmio_addr;
2660
2661 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr);
2662 rtl8169_tx_interrupt(dev, tp, ioaddr);
2663
2664 *budget -= work_done;
2665 dev->quota -= work_done;
2666
2667 if (work_done < work_to_do) {
2668 netif_rx_complete(dev);
2669 tp->intr_mask = 0xffff;
2670 /*
2671 * 20040426: the barrier is not strictly required but the
2672 * behavior of the irq handler could be less predictable
2673 * without it. Btw, the lack of flush for the posted pci
2674 * write is safe - FR
2675 */
2676 smp_wmb();
2677 RTL_W16(IntrMask, rtl8169_intr_mask);
2678 }
2679
2680 return (work_done >= work_to_do);
2681}
2682#endif
2683
2684static void rtl8169_down(struct net_device *dev)
2685{
2686 struct rtl8169_private *tp = netdev_priv(dev);
2687 void __iomem *ioaddr = tp->mmio_addr;
2688 unsigned int poll_locked = 0;
Arnaud Patard733b7362006-10-12 22:33:31 +02002689 unsigned int intrmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
2691 rtl8169_delete_timer(dev);
2692
2693 netif_stop_queue(dev);
2694
2695 flush_scheduled_work();
2696
2697core_down:
2698 spin_lock_irq(&tp->lock);
2699
2700 rtl8169_asic_down(ioaddr);
2701
2702 /* Update the error counts. */
2703 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
2704 RTL_W32(RxMissed, 0);
2705
2706 spin_unlock_irq(&tp->lock);
2707
2708 synchronize_irq(dev->irq);
2709
2710 if (!poll_locked) {
2711 netif_poll_disable(dev);
2712 poll_locked++;
2713 }
2714
2715 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002716 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
2718 /*
2719 * And now for the 50k$ question: are IRQ disabled or not ?
2720 *
2721 * Two paths lead here:
2722 * 1) dev->close
2723 * -> netif_running() is available to sync the current code and the
2724 * IRQ handler. See rtl8169_interrupt for details.
2725 * 2) dev->change_mtu
2726 * -> rtl8169_poll can not be issued again and re-enable the
2727 * interruptions. Let's simply issue the IRQ down sequence again.
Arnaud Patard733b7362006-10-12 22:33:31 +02002728 *
2729 * No loop if hotpluged or major error (0xffff).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 */
Arnaud Patard733b7362006-10-12 22:33:31 +02002731 intrmask = RTL_R16(IntrMask);
2732 if (intrmask && (intrmask != 0xffff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 goto core_down;
2734
2735 rtl8169_tx_clear(tp);
2736
2737 rtl8169_rx_clear(tp);
2738}
2739
2740static int rtl8169_close(struct net_device *dev)
2741{
2742 struct rtl8169_private *tp = netdev_priv(dev);
2743 struct pci_dev *pdev = tp->pci_dev;
2744
2745 rtl8169_down(dev);
2746
2747 free_irq(dev->irq, dev);
2748
2749 netif_poll_enable(dev);
2750
2751 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
2752 tp->RxPhyAddr);
2753 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
2754 tp->TxPhyAddr);
2755 tp->TxDescArray = NULL;
2756 tp->RxDescArray = NULL;
2757
2758 return 0;
2759}
2760
2761static void
2762rtl8169_set_rx_mode(struct net_device *dev)
2763{
2764 struct rtl8169_private *tp = netdev_priv(dev);
2765 void __iomem *ioaddr = tp->mmio_addr;
2766 unsigned long flags;
2767 u32 mc_filter[2]; /* Multicast hash filter */
2768 int i, rx_mode;
2769 u32 tmp = 0;
2770
2771 if (dev->flags & IFF_PROMISC) {
2772 /* Unconditionally log net taps. */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002773 if (netif_msg_link(tp)) {
2774 printk(KERN_NOTICE "%s: Promiscuous mode enabled.\n",
2775 dev->name);
2776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 rx_mode =
2778 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
2779 AcceptAllPhys;
2780 mc_filter[1] = mc_filter[0] = 0xffffffff;
2781 } else if ((dev->mc_count > multicast_filter_limit)
2782 || (dev->flags & IFF_ALLMULTI)) {
2783 /* Too many to filter perfectly -- accept all multicasts. */
2784 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
2785 mc_filter[1] = mc_filter[0] = 0xffffffff;
2786 } else {
2787 struct dev_mc_list *mclist;
2788 rx_mode = AcceptBroadcast | AcceptMyPhys;
2789 mc_filter[1] = mc_filter[0] = 0;
2790 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
2791 i++, mclist = mclist->next) {
2792 int bit_nr = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
2793 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
2794 rx_mode |= AcceptMulticast;
2795 }
2796 }
2797
2798 spin_lock_irqsave(&tp->lock, flags);
2799
2800 tmp = rtl8169_rx_config | rx_mode |
2801 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
2802
Francois Romieubcf0bf92006-07-26 23:14:13 +02002803 if ((tp->mac_version == RTL_GIGA_MAC_VER_11) ||
2804 (tp->mac_version == RTL_GIGA_MAC_VER_12) ||
2805 (tp->mac_version == RTL_GIGA_MAC_VER_13) ||
2806 (tp->mac_version == RTL_GIGA_MAC_VER_14) ||
2807 (tp->mac_version == RTL_GIGA_MAC_VER_15)) {
2808 mc_filter[0] = 0xffffffff;
2809 mc_filter[1] = 0xffffffff;
2810 }
2811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 RTL_W32(RxConfig, tmp);
2813 RTL_W32(MAR0 + 0, mc_filter[0]);
2814 RTL_W32(MAR0 + 4, mc_filter[1]);
2815
2816 spin_unlock_irqrestore(&tp->lock, flags);
2817}
2818
2819/**
2820 * rtl8169_get_stats - Get rtl8169 read/write statistics
2821 * @dev: The Ethernet Device to get statistics for
2822 *
2823 * Get TX/RX statistics for rtl8169
2824 */
2825static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
2826{
2827 struct rtl8169_private *tp = netdev_priv(dev);
2828 void __iomem *ioaddr = tp->mmio_addr;
2829 unsigned long flags;
2830
2831 if (netif_running(dev)) {
2832 spin_lock_irqsave(&tp->lock, flags);
2833 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
2834 RTL_W32(RxMissed, 0);
2835 spin_unlock_irqrestore(&tp->lock, flags);
2836 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02002837
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 return &tp->stats;
2839}
2840
Francois Romieu5d06a992006-02-23 00:47:58 +01002841#ifdef CONFIG_PM
2842
2843static int rtl8169_suspend(struct pci_dev *pdev, pm_message_t state)
2844{
2845 struct net_device *dev = pci_get_drvdata(pdev);
2846 struct rtl8169_private *tp = netdev_priv(dev);
2847 void __iomem *ioaddr = tp->mmio_addr;
2848
2849 if (!netif_running(dev))
2850 goto out;
2851
2852 netif_device_detach(dev);
2853 netif_stop_queue(dev);
2854
2855 spin_lock_irq(&tp->lock);
2856
2857 rtl8169_asic_down(ioaddr);
2858
2859 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
2860 RTL_W32(RxMissed, 0);
2861
2862 spin_unlock_irq(&tp->lock);
2863
2864 pci_save_state(pdev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01002865 pci_enable_wake(pdev, pci_choose_state(pdev, state), tp->wol_enabled);
Francois Romieu5d06a992006-02-23 00:47:58 +01002866 pci_set_power_state(pdev, pci_choose_state(pdev, state));
2867out:
2868 return 0;
2869}
2870
2871static int rtl8169_resume(struct pci_dev *pdev)
2872{
2873 struct net_device *dev = pci_get_drvdata(pdev);
2874
2875 if (!netif_running(dev))
2876 goto out;
2877
2878 netif_device_attach(dev);
2879
2880 pci_set_power_state(pdev, PCI_D0);
2881 pci_restore_state(pdev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01002882 pci_enable_wake(pdev, PCI_D0, 0);
Francois Romieu5d06a992006-02-23 00:47:58 +01002883
2884 rtl8169_schedule_work(dev, rtl8169_reset_task);
2885out:
2886 return 0;
2887}
2888
2889#endif /* CONFIG_PM */
2890
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891static struct pci_driver rtl8169_pci_driver = {
2892 .name = MODULENAME,
2893 .id_table = rtl8169_pci_tbl,
2894 .probe = rtl8169_init_one,
2895 .remove = __devexit_p(rtl8169_remove_one),
2896#ifdef CONFIG_PM
2897 .suspend = rtl8169_suspend,
2898 .resume = rtl8169_resume,
2899#endif
2900};
2901
2902static int __init
2903rtl8169_init_module(void)
2904{
Jeff Garzik29917622006-08-19 17:48:59 -04002905 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906}
2907
2908static void __exit
2909rtl8169_cleanup_module(void)
2910{
2911 pci_unregister_driver(&rtl8169_pci_driver);
2912}
2913
2914module_init(rtl8169_init_module);
2915module_exit(rtl8169_cleanup_module);