blob: 0d2aeb84510f07235c51416bc88a8d84dfab4562 [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
Francois Romieu99f252b2007-04-02 22:59:59 +020069#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include <asm/io.h>
71#include <asm/irq.h>
72
Stephen Hemmingerf7ccf422005-05-27 21:11:41 +020073#ifdef CONFIG_R8169_NAPI
74#define NAPI_SUFFIX "-NAPI"
75#else
76#define NAPI_SUFFIX ""
77#endif
78
79#define RTL8169_VERSION "2.2LK" NAPI_SUFFIX
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define MODULENAME "r8169"
81#define PFX MODULENAME ": "
82
83#ifdef RTL8169_DEBUG
84#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020085 if (!(expr)) { \
86 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
87 #expr,__FILE__,__FUNCTION__,__LINE__); \
88 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#define dprintk(fmt, args...) do { printk(PFX fmt, ## args); } while (0)
90#else
91#define assert(expr) do {} while (0)
92#define dprintk(fmt, args...) do {} while (0)
93#endif /* RTL8169_DEBUG */
94
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020095#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070096 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#define TX_BUFFS_AVAIL(tp) \
99 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
100
101#ifdef CONFIG_R8169_NAPI
102#define rtl8169_rx_skb netif_receive_skb
Tommy Christensen0b50f812005-09-21 12:13:57 -0700103#define rtl8169_rx_hwaccel_skb vlan_hwaccel_receive_skb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#define rtl8169_rx_quota(count, quota) min(count, quota)
105#else
106#define rtl8169_rx_skb netif_rx
Tommy Christensen0b50f812005-09-21 12:13:57 -0700107#define rtl8169_rx_hwaccel_skb vlan_hwaccel_rx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#define rtl8169_rx_quota(count, quota) count
109#endif
110
111/* media options */
112#define MAX_UNITS 8
113static int media[MAX_UNITS] = { -1, -1, -1, -1, -1, -1, -1, -1 };
114static int num_media = 0;
115
116/* Maximum events (Rx packets, etc.) to handle at each interrupt. */
Arjan van de Venf71e1302006-03-03 21:33:57 -0500117static const int max_interrupt_work = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
120 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -0500121static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123/* MAC address length */
124#define MAC_ADDR_LEN 6
125
126#define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
127#define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
128#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
129#define EarlyTxThld 0x3F /* 0x3F means NO early transmit */
130#define RxPacketMaxSize 0x3FE8 /* 16K - 1 - ETH_HLEN - VLAN - CRC... */
131#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
132#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
133
134#define R8169_REGS_SIZE 256
135#define R8169_NAPI_WEIGHT 64
136#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
137#define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
138#define RX_BUF_SIZE 1536 /* Rx Buffer size */
139#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
140#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
141
142#define RTL8169_TX_TIMEOUT (6*HZ)
143#define RTL8169_PHY_TIMEOUT (10*HZ)
144
145/* write/read MMIO register */
146#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
147#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
148#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
149#define RTL_R8(reg) readb (ioaddr + (reg))
150#define RTL_R16(reg) readw (ioaddr + (reg))
151#define RTL_R32(reg) ((unsigned long) readl (ioaddr + (reg)))
152
153enum mac_version {
Francois Romieuba6eb6e2007-06-11 23:35:18 +0200154 RTL_GIGA_MAC_VER_01 = 0x01, // 8169
155 RTL_GIGA_MAC_VER_02 = 0x02, // 8169S
156 RTL_GIGA_MAC_VER_03 = 0x03, // 8110S
157 RTL_GIGA_MAC_VER_04 = 0x04, // 8169SB
158 RTL_GIGA_MAC_VER_05 = 0x05, // 8110SCd
Francois Romieu6dccd162007-02-13 23:38:05 +0100159 RTL_GIGA_MAC_VER_06 = 0x06, // 8110SCe
Francois Romieu2dd99532007-06-11 23:22:52 +0200160 RTL_GIGA_MAC_VER_11 = 0x0b, // 8168Bb
161 RTL_GIGA_MAC_VER_12 = 0x0c, // 8168Be 8168Bf
Francois Romieucdf1a602007-06-11 23:29:50 +0200162 RTL_GIGA_MAC_VER_13 = 0x0d, // 8101Eb 8101Ec
163 RTL_GIGA_MAC_VER_14 = 0x0e, // 8101
164 RTL_GIGA_MAC_VER_15 = 0x0f // 8101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165};
166
167enum phy_version {
168 RTL_GIGA_PHY_VER_C = 0x03, /* PHY Reg 0x03 bit0-3 == 0x0000 */
169 RTL_GIGA_PHY_VER_D = 0x04, /* PHY Reg 0x03 bit0-3 == 0x0000 */
170 RTL_GIGA_PHY_VER_E = 0x05, /* PHY Reg 0x03 bit0-3 == 0x0000 */
171 RTL_GIGA_PHY_VER_F = 0x06, /* PHY Reg 0x03 bit0-3 == 0x0001 */
172 RTL_GIGA_PHY_VER_G = 0x07, /* PHY Reg 0x03 bit0-3 == 0x0002 */
173 RTL_GIGA_PHY_VER_H = 0x08, /* PHY Reg 0x03 bit0-3 == 0x0003 */
174};
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#define _R(NAME,MAC,MASK) \
177 { .name = NAME, .mac_version = MAC, .RxConfigMask = MASK }
178
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800179static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 const char *name;
181 u8 mac_version;
182 u32 RxConfigMask; /* Clears the bits supported by this chip */
183} rtl_chip_info[] = {
Francois Romieuba6eb6e2007-06-11 23:35:18 +0200184 _R("RTL8169", RTL_GIGA_MAC_VER_01, 0xff7e1880), // 8169
185 _R("RTL8169s", RTL_GIGA_MAC_VER_02, 0xff7e1880), // 8169S
186 _R("RTL8110s", RTL_GIGA_MAC_VER_03, 0xff7e1880), // 8110S
187 _R("RTL8169sb/8110sb", RTL_GIGA_MAC_VER_04, 0xff7e1880), // 8169SB
188 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_05, 0xff7e1880), // 8110SCd
Francois Romieu6dccd162007-02-13 23:38:05 +0100189 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_06, 0xff7e1880), // 8110SCe
Francois Romieubcf0bf92006-07-26 23:14:13 +0200190 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_11, 0xff7e1880), // PCI-E
191 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_12, 0xff7e1880), // PCI-E
192 _R("RTL8101e", RTL_GIGA_MAC_VER_13, 0xff7e1880), // PCI-E 8139
193 _R("RTL8100e", RTL_GIGA_MAC_VER_14, 0xff7e1880), // PCI-E 8139
194 _R("RTL8100e", RTL_GIGA_MAC_VER_15, 0xff7e1880) // PCI-E 8139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196#undef _R
197
Francois Romieubcf0bf92006-07-26 23:14:13 +0200198enum cfg_version {
199 RTL_CFG_0 = 0x00,
200 RTL_CFG_1,
201 RTL_CFG_2
202};
203
Francois Romieu07ce4062007-02-23 23:36:39 +0100204static void rtl_hw_start_8169(struct net_device *);
205static void rtl_hw_start_8168(struct net_device *);
206static void rtl_hw_start_8101(struct net_device *);
207
Francois Romieubcf0bf92006-07-26 23:14:13 +0200208static const struct {
Francois Romieu07ce4062007-02-23 23:36:39 +0100209 void (*hw_start)(struct net_device *);
Francois Romieubcf0bf92006-07-26 23:14:13 +0200210 unsigned int region;
211 unsigned int align;
212} rtl_cfg_info[] = {
Francois Romieu07ce4062007-02-23 23:36:39 +0100213 [RTL_CFG_0] = { rtl_hw_start_8169, 1, NET_IP_ALIGN },
214 [RTL_CFG_1] = { rtl_hw_start_8168, 2, 8 },
215 [RTL_CFG_2] = { rtl_hw_start_8101, 2, 8 }
Francois Romieubcf0bf92006-07-26 23:14:13 +0200216};
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218static struct pci_device_id rtl8169_pci_tbl[] = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200219 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200220 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200221 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100222 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200223 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
224 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Andrew Morton73f5e282006-10-09 21:58:54 +0200225 { PCI_DEVICE(0x1259, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200226 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
227 { PCI_VENDOR_ID_LINKSYS, 0x1032,
228 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 {0,},
230};
231
232MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
233
234static int rx_copybreak = 200;
235static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200236static struct {
237 u32 msg_enable;
238} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240enum RTL8169_registers {
241 MAC0 = 0, /* Ethernet hardware address. */
242 MAR0 = 8, /* Multicast filter. */
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200243 CounterAddrLow = 0x10,
244 CounterAddrHigh = 0x14,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 TxDescStartAddrLow = 0x20,
246 TxDescStartAddrHigh = 0x24,
247 TxHDescStartAddrLow = 0x28,
248 TxHDescStartAddrHigh = 0x2c,
249 FLASH = 0x30,
250 ERSR = 0x36,
251 ChipCmd = 0x37,
252 TxPoll = 0x38,
253 IntrMask = 0x3C,
254 IntrStatus = 0x3E,
255 TxConfig = 0x40,
256 RxConfig = 0x44,
257 RxMissed = 0x4C,
258 Cfg9346 = 0x50,
259 Config0 = 0x51,
260 Config1 = 0x52,
261 Config2 = 0x53,
262 Config3 = 0x54,
263 Config4 = 0x55,
264 Config5 = 0x56,
265 MultiIntr = 0x5C,
266 PHYAR = 0x60,
267 TBICSR = 0x64,
268 TBI_ANAR = 0x68,
269 TBI_LPAR = 0x6A,
270 PHYstatus = 0x6C,
271 RxMaxSize = 0xDA,
272 CPlusCmd = 0xE0,
273 IntrMitigate = 0xE2,
274 RxDescAddrLow = 0xE4,
275 RxDescAddrHigh = 0xE8,
276 EarlyTxThres = 0xEC,
277 FuncEvent = 0xF0,
278 FuncEventMask = 0xF4,
279 FuncPresetState = 0xF8,
280 FuncForceEvent = 0xFC,
281};
282
283enum RTL8169_register_content {
284 /* InterruptStatusBits */
285 SYSErr = 0x8000,
286 PCSTimeout = 0x4000,
287 SWInt = 0x0100,
288 TxDescUnavail = 0x80,
289 RxFIFOOver = 0x40,
290 LinkChg = 0x20,
291 RxOverflow = 0x10,
292 TxErr = 0x08,
293 TxOK = 0x04,
294 RxErr = 0x02,
295 RxOK = 0x01,
296
297 /* RxStatusDesc */
Francois Romieu9dccf612006-05-14 12:31:17 +0200298 RxFOVF = (1 << 23),
299 RxRWT = (1 << 22),
300 RxRES = (1 << 21),
301 RxRUNT = (1 << 20),
302 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /* ChipCmdBits */
305 CmdReset = 0x10,
306 CmdRxEnb = 0x08,
307 CmdTxEnb = 0x04,
308 RxBufEmpty = 0x01,
309
310 /* Cfg9346Bits */
311 Cfg9346_Lock = 0x00,
312 Cfg9346_Unlock = 0xC0,
313
314 /* rx_mode_bits */
315 AcceptErr = 0x20,
316 AcceptRunt = 0x10,
317 AcceptBroadcast = 0x08,
318 AcceptMulticast = 0x04,
319 AcceptMyPhys = 0x02,
320 AcceptAllPhys = 0x01,
321
322 /* RxConfigBits */
323 RxCfgFIFOShift = 13,
324 RxCfgDMAShift = 8,
325
326 /* TxConfigBits */
327 TxInterFrameGapShift = 24,
328 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
329
Francois Romieu5d06a992006-02-23 00:47:58 +0100330 /* Config1 register p.24 */
331 PMEnable = (1 << 0), /* Power Management Enable */
332
Francois Romieu6dccd162007-02-13 23:38:05 +0100333 /* Config2 register p. 25 */
334 PCI_Clock_66MHz = 0x01,
335 PCI_Clock_33MHz = 0x00,
336
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100337 /* Config3 register p.25 */
338 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
339 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
340
Francois Romieu5d06a992006-02-23 00:47:58 +0100341 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100342 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
343 MWF = (1 << 5), /* Accept Multicast wakeup frame */
344 UWF = (1 << 4), /* Accept Unicast wakeup frame */
345 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100346 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /* TBICSR p.28 */
349 TBIReset = 0x80000000,
350 TBILoopback = 0x40000000,
351 TBINwEnable = 0x20000000,
352 TBINwRestart = 0x10000000,
353 TBILinkOk = 0x02000000,
354 TBINwComplete = 0x01000000,
355
356 /* CPlusCmd p.31 */
357 RxVlan = (1 << 6),
358 RxChkSum = (1 << 5),
359 PCIDAC = (1 << 4),
360 PCIMulRW = (1 << 3),
361
362 /* rtl8169_PHYstatus */
363 TBI_Enable = 0x80,
364 TxFlowCtrl = 0x40,
365 RxFlowCtrl = 0x20,
366 _1000bpsF = 0x10,
367 _100bps = 0x08,
368 _10bps = 0x04,
369 LinkStatus = 0x02,
370 FullDup = 0x01,
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* _MediaType */
373 _10_Half = 0x01,
374 _10_Full = 0x02,
375 _100_Half = 0x04,
376 _100_Full = 0x08,
377 _1000_Full = 0x10,
378
379 /* _TBICSRBit */
380 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200381
382 /* DumpCounterCommand */
383 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384};
385
386enum _DescStatusBit {
387 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
388 RingEnd = (1 << 30), /* End of descriptor ring */
389 FirstFrag = (1 << 29), /* First segment of a packet */
390 LastFrag = (1 << 28), /* Final segment of a packet */
391
392 /* Tx private */
393 LargeSend = (1 << 27), /* TCP Large Send Offload (TSO) */
394 MSSShift = 16, /* MSS value position */
395 MSSMask = 0xfff, /* MSS value + LargeSend bit: 12 bits */
396 IPCS = (1 << 18), /* Calculate IP checksum */
397 UDPCS = (1 << 17), /* Calculate UDP/IP checksum */
398 TCPCS = (1 << 16), /* Calculate TCP/IP checksum */
399 TxVlanTag = (1 << 17), /* Add VLAN tag */
400
401 /* Rx private */
402 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
403 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
404
405#define RxProtoUDP (PID1)
406#define RxProtoTCP (PID0)
407#define RxProtoIP (PID1 | PID0)
408#define RxProtoMask RxProtoIP
409
410 IPFail = (1 << 16), /* IP checksum failed */
411 UDPFail = (1 << 15), /* UDP/IP checksum failed */
412 TCPFail = (1 << 14), /* TCP/IP checksum failed */
413 RxVlanTag = (1 << 16), /* VLAN tag available */
414};
415
416#define RsvdMask 0x3fffc000
417
418struct TxDesc {
419 u32 opts1;
420 u32 opts2;
421 u64 addr;
422};
423
424struct RxDesc {
425 u32 opts1;
426 u32 opts2;
427 u64 addr;
428};
429
430struct ring_info {
431 struct sk_buff *skb;
432 u32 len;
433 u8 __pad[sizeof(void *) - sizeof(u32)];
434};
435
436struct rtl8169_private {
437 void __iomem *mmio_addr; /* memory map physical address */
438 struct pci_dev *pci_dev; /* Index of PCI device */
David Howellsc4028952006-11-22 14:57:56 +0000439 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 struct net_device_stats stats; /* statistics of net device */
441 spinlock_t lock; /* spin lock flag */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200442 u32 msg_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 int chipset;
444 int mac_version;
445 int phy_version;
446 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
447 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
448 u32 dirty_rx;
449 u32 dirty_tx;
450 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
451 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
452 dma_addr_t TxPhyAddr;
453 dma_addr_t RxPhyAddr;
454 struct sk_buff *Rx_skbuff[NUM_RX_DESC]; /* Rx data buffers */
455 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Francois Romieubcf0bf92006-07-26 23:14:13 +0200456 unsigned align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 unsigned rx_buf_sz;
458 struct timer_list timer;
459 u16 cp_cmd;
460 u16 intr_mask;
461 int phy_auto_nego_reg;
462 int phy_1000_ctrl_reg;
463#ifdef CONFIG_R8169_VLAN
464 struct vlan_group *vlgrp;
465#endif
466 int (*set_speed)(struct net_device *, u8 autoneg, u16 speed, u8 duplex);
467 void (*get_settings)(struct net_device *, struct ethtool_cmd *);
468 void (*phy_reset_enable)(void __iomem *);
Francois Romieu07ce4062007-02-23 23:36:39 +0100469 void (*hw_start)(struct net_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 unsigned int (*phy_reset_pending)(void __iomem *);
471 unsigned int (*link_ok)(void __iomem *);
David Howellsc4028952006-11-22 14:57:56 +0000472 struct delayed_work task;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100473 unsigned wol_enabled : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474};
475
Ralf Baechle979b6c12005-06-13 14:30:40 -0700476MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
478module_param_array(media, int, &num_media, 0);
Francois Romieudf0a1bf2005-05-27 21:11:49 +0200479MODULE_PARM_DESC(media, "force phy operation. Deprecated by ethtool (8).");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480module_param(rx_copybreak, int, 0);
Stephen Hemminger1b7efd52005-05-27 21:11:45 +0200481MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482module_param(use_dac, int, 0);
483MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200484module_param_named(debug, debug.msg_enable, int, 0);
485MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486MODULE_LICENSE("GPL");
487MODULE_VERSION(RTL8169_VERSION);
488
489static int rtl8169_open(struct net_device *dev);
490static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100491static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100493static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100495static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200497static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
499 void __iomem *);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200500static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b2007-04-02 22:59:59 +0200502static void rtl8169_rx_clear(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504#ifdef CONFIG_R8169_NAPI
505static int rtl8169_poll(struct net_device *dev, int *budget);
506#endif
507
508static const u16 rtl8169_intr_mask =
509 SYSErr | LinkChg | RxOverflow | RxFIFOOver | TxErr | TxOK | RxErr | RxOK;
510static const u16 rtl8169_napi_event =
511 RxOK | RxOverflow | RxFIFOOver | TxOK | TxErr;
512static const unsigned int rtl8169_rx_config =
Francois Romieu5b0384f2006-08-16 16:00:01 +0200513 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515static void mdio_write(void __iomem *ioaddr, int RegAddr, int value)
516{
517 int i;
518
519 RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value);
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 writing to the specified MII register */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200523 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 break;
Francois Romieu23714082006-01-29 00:49:09 +0100525 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527}
528
529static int mdio_read(void __iomem *ioaddr, int RegAddr)
530{
531 int i, value = -1;
532
533 RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Francois Romieu23714082006-01-29 00:49:09 +0100535 for (i = 20; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 /* Check if the RTL8169 has completed retrieving data from the specified MII register */
537 if (RTL_R32(PHYAR) & 0x80000000) {
538 value = (int) (RTL_R32(PHYAR) & 0xFFFF);
539 break;
540 }
Francois Romieu23714082006-01-29 00:49:09 +0100541 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543 return value;
544}
545
546static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
547{
548 RTL_W16(IntrMask, 0x0000);
549
550 RTL_W16(IntrStatus, 0xffff);
551}
552
553static void rtl8169_asic_down(void __iomem *ioaddr)
554{
555 RTL_W8(ChipCmd, 0x00);
556 rtl8169_irq_mask_and_ack(ioaddr);
557 RTL_R16(CPlusCmd);
558}
559
560static unsigned int rtl8169_tbi_reset_pending(void __iomem *ioaddr)
561{
562 return RTL_R32(TBICSR) & TBIReset;
563}
564
565static unsigned int rtl8169_xmii_reset_pending(void __iomem *ioaddr)
566{
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200567 return mdio_read(ioaddr, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
570static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
571{
572 return RTL_R32(TBICSR) & TBILinkOk;
573}
574
575static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
576{
577 return RTL_R8(PHYstatus) & LinkStatus;
578}
579
580static void rtl8169_tbi_reset_enable(void __iomem *ioaddr)
581{
582 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
583}
584
585static void rtl8169_xmii_reset_enable(void __iomem *ioaddr)
586{
587 unsigned int val;
588
Francois Romieu9e0db8e2007-03-08 23:59:54 +0100589 val = mdio_read(ioaddr, MII_BMCR) | BMCR_RESET;
590 mdio_write(ioaddr, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593static void rtl8169_check_link_status(struct net_device *dev,
594 struct rtl8169_private *tp, void __iomem *ioaddr)
595{
596 unsigned long flags;
597
598 spin_lock_irqsave(&tp->lock, flags);
599 if (tp->link_ok(ioaddr)) {
600 netif_carrier_on(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200601 if (netif_msg_ifup(tp))
602 printk(KERN_INFO PFX "%s: link up\n", dev->name);
603 } else {
604 if (netif_msg_ifdown(tp))
605 printk(KERN_INFO PFX "%s: link down\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 netif_carrier_off(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 spin_unlock_irqrestore(&tp->lock, flags);
609}
610
611static void rtl8169_link_option(int idx, u8 *autoneg, u16 *speed, u8 *duplex)
612{
613 struct {
614 u16 speed;
615 u8 duplex;
616 u8 autoneg;
617 u8 media;
618 } link_settings[] = {
619 { SPEED_10, DUPLEX_HALF, AUTONEG_DISABLE, _10_Half },
620 { SPEED_10, DUPLEX_FULL, AUTONEG_DISABLE, _10_Full },
621 { SPEED_100, DUPLEX_HALF, AUTONEG_DISABLE, _100_Half },
622 { SPEED_100, DUPLEX_FULL, AUTONEG_DISABLE, _100_Full },
623 { SPEED_1000, DUPLEX_FULL, AUTONEG_DISABLE, _1000_Full },
624 /* Make TBI happy */
625 { SPEED_1000, DUPLEX_FULL, AUTONEG_ENABLE, 0xff }
626 }, *p;
627 unsigned char option;
Francois Romieu5b0384f2006-08-16 16:00:01 +0200628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 option = ((idx < MAX_UNITS) && (idx >= 0)) ? media[idx] : 0xff;
630
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200631 if ((option != 0xff) && !idx && netif_msg_drv(&debug))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 printk(KERN_WARNING PFX "media option is deprecated.\n");
633
634 for (p = link_settings; p->media != 0xff; p++) {
635 if (p->media == option)
636 break;
637 }
638 *autoneg = p->autoneg;
639 *speed = p->speed;
640 *duplex = p->duplex;
641}
642
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100643static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
644{
645 struct rtl8169_private *tp = netdev_priv(dev);
646 void __iomem *ioaddr = tp->mmio_addr;
647 u8 options;
648
649 wol->wolopts = 0;
650
651#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
652 wol->supported = WAKE_ANY;
653
654 spin_lock_irq(&tp->lock);
655
656 options = RTL_R8(Config1);
657 if (!(options & PMEnable))
658 goto out_unlock;
659
660 options = RTL_R8(Config3);
661 if (options & LinkUp)
662 wol->wolopts |= WAKE_PHY;
663 if (options & MagicPacket)
664 wol->wolopts |= WAKE_MAGIC;
665
666 options = RTL_R8(Config5);
667 if (options & UWF)
668 wol->wolopts |= WAKE_UCAST;
669 if (options & BWF)
Francois Romieu5b0384f2006-08-16 16:00:01 +0200670 wol->wolopts |= WAKE_BCAST;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100671 if (options & MWF)
Francois Romieu5b0384f2006-08-16 16:00:01 +0200672 wol->wolopts |= WAKE_MCAST;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100673
674out_unlock:
675 spin_unlock_irq(&tp->lock);
676}
677
678static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
679{
680 struct rtl8169_private *tp = netdev_priv(dev);
681 void __iomem *ioaddr = tp->mmio_addr;
682 int i;
683 static struct {
684 u32 opt;
685 u16 reg;
686 u8 mask;
687 } cfg[] = {
688 { WAKE_ANY, Config1, PMEnable },
689 { WAKE_PHY, Config3, LinkUp },
690 { WAKE_MAGIC, Config3, MagicPacket },
691 { WAKE_UCAST, Config5, UWF },
692 { WAKE_BCAST, Config5, BWF },
693 { WAKE_MCAST, Config5, MWF },
694 { WAKE_ANY, Config5, LanWake }
695 };
696
697 spin_lock_irq(&tp->lock);
698
699 RTL_W8(Cfg9346, Cfg9346_Unlock);
700
701 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
702 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
703 if (wol->wolopts & cfg[i].opt)
704 options |= cfg[i].mask;
705 RTL_W8(cfg[i].reg, options);
706 }
707
708 RTL_W8(Cfg9346, Cfg9346_Lock);
709
710 tp->wol_enabled = (wol->wolopts) ? 1 : 0;
711
712 spin_unlock_irq(&tp->lock);
713
714 return 0;
715}
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717static void rtl8169_get_drvinfo(struct net_device *dev,
718 struct ethtool_drvinfo *info)
719{
720 struct rtl8169_private *tp = netdev_priv(dev);
721
722 strcpy(info->driver, MODULENAME);
723 strcpy(info->version, RTL8169_VERSION);
724 strcpy(info->bus_info, pci_name(tp->pci_dev));
725}
726
727static int rtl8169_get_regs_len(struct net_device *dev)
728{
729 return R8169_REGS_SIZE;
730}
731
732static int rtl8169_set_speed_tbi(struct net_device *dev,
733 u8 autoneg, u16 speed, u8 duplex)
734{
735 struct rtl8169_private *tp = netdev_priv(dev);
736 void __iomem *ioaddr = tp->mmio_addr;
737 int ret = 0;
738 u32 reg;
739
740 reg = RTL_R32(TBICSR);
741 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
742 (duplex == DUPLEX_FULL)) {
743 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
744 } else if (autoneg == AUTONEG_ENABLE)
745 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
746 else {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200747 if (netif_msg_link(tp)) {
748 printk(KERN_WARNING "%s: "
749 "incorrect speed setting refused in TBI mode\n",
750 dev->name);
751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 ret = -EOPNOTSUPP;
753 }
754
755 return ret;
756}
757
758static int rtl8169_set_speed_xmii(struct net_device *dev,
759 u8 autoneg, u16 speed, u8 duplex)
760{
761 struct rtl8169_private *tp = netdev_priv(dev);
762 void __iomem *ioaddr = tp->mmio_addr;
763 int auto_nego, giga_ctrl;
764
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200765 auto_nego = mdio_read(ioaddr, MII_ADVERTISE);
766 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
767 ADVERTISE_100HALF | ADVERTISE_100FULL);
768 giga_ctrl = mdio_read(ioaddr, MII_CTRL1000);
769 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 if (autoneg == AUTONEG_ENABLE) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200772 auto_nego |= (ADVERTISE_10HALF | ADVERTISE_10FULL |
773 ADVERTISE_100HALF | ADVERTISE_100FULL);
774 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 } else {
776 if (speed == SPEED_10)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200777 auto_nego |= ADVERTISE_10HALF | ADVERTISE_10FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 else if (speed == SPEED_100)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200779 auto_nego |= ADVERTISE_100HALF | ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 else if (speed == SPEED_1000)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200781 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 if (duplex == DUPLEX_HALF)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200784 auto_nego &= ~(ADVERTISE_10FULL | ADVERTISE_100FULL);
Andy Gospodarek726ecdc2006-01-31 19:16:52 +0100785
786 if (duplex == DUPLEX_FULL)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200787 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_100HALF);
Francois Romieubcf0bf92006-07-26 23:14:13 +0200788
789 /* This tweak comes straight from Realtek's driver. */
790 if ((speed == SPEED_100) && (duplex == DUPLEX_HALF) &&
791 (tp->mac_version == RTL_GIGA_MAC_VER_13)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200792 auto_nego = ADVERTISE_100HALF | ADVERTISE_CSMA;
Francois Romieubcf0bf92006-07-26 23:14:13 +0200793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
Francois Romieubcf0bf92006-07-26 23:14:13 +0200796 /* The 8100e/8101e do Fast Ethernet only. */
797 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
798 (tp->mac_version == RTL_GIGA_MAC_VER_14) ||
799 (tp->mac_version == RTL_GIGA_MAC_VER_15)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200800 if ((giga_ctrl & (ADVERTISE_1000FULL | ADVERTISE_1000HALF)) &&
Francois Romieubcf0bf92006-07-26 23:14:13 +0200801 netif_msg_link(tp)) {
802 printk(KERN_INFO "%s: PHY does not support 1000Mbps.\n",
803 dev->name);
804 }
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200805 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807
Francois Romieu623a1592006-05-14 12:42:14 +0200808 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 tp->phy_auto_nego_reg = auto_nego;
811 tp->phy_1000_ctrl_reg = giga_ctrl;
812
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200813 mdio_write(ioaddr, MII_ADVERTISE, auto_nego);
814 mdio_write(ioaddr, MII_CTRL1000, giga_ctrl);
815 mdio_write(ioaddr, MII_BMCR, BMCR_ANENABLE | BMCR_ANRESTART);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return 0;
817}
818
819static int rtl8169_set_speed(struct net_device *dev,
820 u8 autoneg, u16 speed, u8 duplex)
821{
822 struct rtl8169_private *tp = netdev_priv(dev);
823 int ret;
824
825 ret = tp->set_speed(dev, autoneg, speed, duplex);
826
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200827 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
829
830 return ret;
831}
832
833static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
834{
835 struct rtl8169_private *tp = netdev_priv(dev);
836 unsigned long flags;
837 int ret;
838
839 spin_lock_irqsave(&tp->lock, flags);
840 ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
841 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +0200842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return ret;
844}
845
846static u32 rtl8169_get_rx_csum(struct net_device *dev)
847{
848 struct rtl8169_private *tp = netdev_priv(dev);
849
850 return tp->cp_cmd & RxChkSum;
851}
852
853static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
854{
855 struct rtl8169_private *tp = netdev_priv(dev);
856 void __iomem *ioaddr = tp->mmio_addr;
857 unsigned long flags;
858
859 spin_lock_irqsave(&tp->lock, flags);
860
861 if (data)
862 tp->cp_cmd |= RxChkSum;
863 else
864 tp->cp_cmd &= ~RxChkSum;
865
866 RTL_W16(CPlusCmd, tp->cp_cmd);
867 RTL_R16(CPlusCmd);
868
869 spin_unlock_irqrestore(&tp->lock, flags);
870
871 return 0;
872}
873
874#ifdef CONFIG_R8169_VLAN
875
876static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
877 struct sk_buff *skb)
878{
879 return (tp->vlgrp && vlan_tx_tag_present(skb)) ?
880 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
881}
882
883static void rtl8169_vlan_rx_register(struct net_device *dev,
884 struct vlan_group *grp)
885{
886 struct rtl8169_private *tp = netdev_priv(dev);
887 void __iomem *ioaddr = tp->mmio_addr;
888 unsigned long flags;
889
890 spin_lock_irqsave(&tp->lock, flags);
891 tp->vlgrp = grp;
892 if (tp->vlgrp)
893 tp->cp_cmd |= RxVlan;
894 else
895 tp->cp_cmd &= ~RxVlan;
896 RTL_W16(CPlusCmd, tp->cp_cmd);
897 RTL_R16(CPlusCmd);
898 spin_unlock_irqrestore(&tp->lock, flags);
899}
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
902 struct sk_buff *skb)
903{
904 u32 opts2 = le32_to_cpu(desc->opts2);
905 int ret;
906
907 if (tp->vlgrp && (opts2 & RxVlanTag)) {
908 rtl8169_rx_hwaccel_skb(skb, tp->vlgrp,
909 swab16(opts2 & 0xffff));
910 ret = 0;
911 } else
912 ret = -1;
913 desc->opts2 = 0;
914 return ret;
915}
916
917#else /* !CONFIG_R8169_VLAN */
918
919static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
920 struct sk_buff *skb)
921{
922 return 0;
923}
924
925static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
926 struct sk_buff *skb)
927{
928 return -1;
929}
930
931#endif
932
933static void rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
934{
935 struct rtl8169_private *tp = netdev_priv(dev);
936 void __iomem *ioaddr = tp->mmio_addr;
937 u32 status;
938
939 cmd->supported =
940 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
941 cmd->port = PORT_FIBRE;
942 cmd->transceiver = XCVR_INTERNAL;
943
944 status = RTL_R32(TBICSR);
945 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
946 cmd->autoneg = !!(status & TBINwEnable);
947
948 cmd->speed = SPEED_1000;
949 cmd->duplex = DUPLEX_FULL; /* Always set */
950}
951
952static void rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
953{
954 struct rtl8169_private *tp = netdev_priv(dev);
955 void __iomem *ioaddr = tp->mmio_addr;
956 u8 status;
957
958 cmd->supported = SUPPORTED_10baseT_Half |
959 SUPPORTED_10baseT_Full |
960 SUPPORTED_100baseT_Half |
961 SUPPORTED_100baseT_Full |
962 SUPPORTED_1000baseT_Full |
963 SUPPORTED_Autoneg |
Francois Romieu5b0384f2006-08-16 16:00:01 +0200964 SUPPORTED_TP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 cmd->autoneg = 1;
967 cmd->advertising = ADVERTISED_TP | ADVERTISED_Autoneg;
968
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200969 if (tp->phy_auto_nego_reg & ADVERTISE_10HALF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 cmd->advertising |= ADVERTISED_10baseT_Half;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200971 if (tp->phy_auto_nego_reg & ADVERTISE_10FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 cmd->advertising |= ADVERTISED_10baseT_Full;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200973 if (tp->phy_auto_nego_reg & ADVERTISE_100HALF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 cmd->advertising |= ADVERTISED_100baseT_Half;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200975 if (tp->phy_auto_nego_reg & ADVERTISE_100FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 cmd->advertising |= ADVERTISED_100baseT_Full;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200977 if (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 cmd->advertising |= ADVERTISED_1000baseT_Full;
979
980 status = RTL_R8(PHYstatus);
981
982 if (status & _1000bpsF)
983 cmd->speed = SPEED_1000;
984 else if (status & _100bps)
985 cmd->speed = SPEED_100;
986 else if (status & _10bps)
987 cmd->speed = SPEED_10;
988
Francois Romieu623a1592006-05-14 12:42:14 +0200989 if (status & TxFlowCtrl)
990 cmd->advertising |= ADVERTISED_Asym_Pause;
991 if (status & RxFlowCtrl)
992 cmd->advertising |= ADVERTISED_Pause;
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 cmd->duplex = ((status & _1000bpsF) || (status & FullDup)) ?
995 DUPLEX_FULL : DUPLEX_HALF;
996}
997
998static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
999{
1000 struct rtl8169_private *tp = netdev_priv(dev);
1001 unsigned long flags;
1002
1003 spin_lock_irqsave(&tp->lock, flags);
1004
1005 tp->get_settings(dev, cmd);
1006
1007 spin_unlock_irqrestore(&tp->lock, flags);
1008 return 0;
1009}
1010
1011static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1012 void *p)
1013{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001014 struct rtl8169_private *tp = netdev_priv(dev);
1015 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Francois Romieu5b0384f2006-08-16 16:00:01 +02001017 if (regs->len > R8169_REGS_SIZE)
1018 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Francois Romieu5b0384f2006-08-16 16:00:01 +02001020 spin_lock_irqsave(&tp->lock, flags);
1021 memcpy_fromio(p, tp->mmio_addr, regs->len);
1022 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001025static u32 rtl8169_get_msglevel(struct net_device *dev)
1026{
1027 struct rtl8169_private *tp = netdev_priv(dev);
1028
1029 return tp->msg_enable;
1030}
1031
1032static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1033{
1034 struct rtl8169_private *tp = netdev_priv(dev);
1035
1036 tp->msg_enable = value;
1037}
1038
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001039static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1040 "tx_packets",
1041 "rx_packets",
1042 "tx_errors",
1043 "rx_errors",
1044 "rx_missed",
1045 "align_errors",
1046 "tx_single_collisions",
1047 "tx_multi_collisions",
1048 "unicast",
1049 "broadcast",
1050 "multicast",
1051 "tx_aborted",
1052 "tx_underrun",
1053};
1054
1055struct rtl8169_counters {
1056 u64 tx_packets;
1057 u64 rx_packets;
1058 u64 tx_errors;
1059 u32 rx_errors;
1060 u16 rx_missed;
1061 u16 align_errors;
1062 u32 tx_one_collision;
1063 u32 tx_multi_collision;
1064 u64 rx_unicast;
1065 u64 rx_broadcast;
1066 u32 rx_multicast;
1067 u16 tx_aborted;
1068 u16 tx_underun;
1069};
1070
1071static int rtl8169_get_stats_count(struct net_device *dev)
1072{
1073 return ARRAY_SIZE(rtl8169_gstrings);
1074}
1075
1076static void rtl8169_get_ethtool_stats(struct net_device *dev,
1077 struct ethtool_stats *stats, u64 *data)
1078{
1079 struct rtl8169_private *tp = netdev_priv(dev);
1080 void __iomem *ioaddr = tp->mmio_addr;
1081 struct rtl8169_counters *counters;
1082 dma_addr_t paddr;
1083 u32 cmd;
1084
1085 ASSERT_RTNL();
1086
1087 counters = pci_alloc_consistent(tp->pci_dev, sizeof(*counters), &paddr);
1088 if (!counters)
1089 return;
1090
1091 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
1092 cmd = (u64)paddr & DMA_32BIT_MASK;
1093 RTL_W32(CounterAddrLow, cmd);
1094 RTL_W32(CounterAddrLow, cmd | CounterDump);
1095
1096 while (RTL_R32(CounterAddrLow) & CounterDump) {
1097 if (msleep_interruptible(1))
1098 break;
1099 }
1100
1101 RTL_W32(CounterAddrLow, 0);
1102 RTL_W32(CounterAddrHigh, 0);
1103
Francois Romieu5b0384f2006-08-16 16:00:01 +02001104 data[0] = le64_to_cpu(counters->tx_packets);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001105 data[1] = le64_to_cpu(counters->rx_packets);
1106 data[2] = le64_to_cpu(counters->tx_errors);
1107 data[3] = le32_to_cpu(counters->rx_errors);
1108 data[4] = le16_to_cpu(counters->rx_missed);
1109 data[5] = le16_to_cpu(counters->align_errors);
1110 data[6] = le32_to_cpu(counters->tx_one_collision);
1111 data[7] = le32_to_cpu(counters->tx_multi_collision);
1112 data[8] = le64_to_cpu(counters->rx_unicast);
1113 data[9] = le64_to_cpu(counters->rx_broadcast);
1114 data[10] = le32_to_cpu(counters->rx_multicast);
1115 data[11] = le16_to_cpu(counters->tx_aborted);
1116 data[12] = le16_to_cpu(counters->tx_underun);
1117
1118 pci_free_consistent(tp->pci_dev, sizeof(*counters), counters, paddr);
1119}
1120
1121static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1122{
1123 switch(stringset) {
1124 case ETH_SS_STATS:
1125 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1126 break;
1127 }
1128}
1129
1130
Jeff Garzik7282d492006-09-13 14:30:00 -04001131static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 .get_drvinfo = rtl8169_get_drvinfo,
1133 .get_regs_len = rtl8169_get_regs_len,
1134 .get_link = ethtool_op_get_link,
1135 .get_settings = rtl8169_get_settings,
1136 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001137 .get_msglevel = rtl8169_get_msglevel,
1138 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 .get_rx_csum = rtl8169_get_rx_csum,
1140 .set_rx_csum = rtl8169_set_rx_csum,
1141 .get_tx_csum = ethtool_op_get_tx_csum,
1142 .set_tx_csum = ethtool_op_set_tx_csum,
1143 .get_sg = ethtool_op_get_sg,
1144 .set_sg = ethtool_op_set_sg,
1145 .get_tso = ethtool_op_get_tso,
1146 .set_tso = ethtool_op_set_tso,
1147 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001148 .get_wol = rtl8169_get_wol,
1149 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001150 .get_strings = rtl8169_get_strings,
1151 .get_stats_count = rtl8169_get_stats_count,
1152 .get_ethtool_stats = rtl8169_get_ethtool_stats,
John W. Linville6d6525b2005-09-12 10:48:57 -04001153 .get_perm_addr = ethtool_op_get_perm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154};
1155
1156static void rtl8169_write_gmii_reg_bit(void __iomem *ioaddr, int reg, int bitnum,
1157 int bitval)
1158{
1159 int val;
1160
1161 val = mdio_read(ioaddr, reg);
1162 val = (bitval == 1) ?
1163 val | (bitval << bitnum) : val & ~(0x0001 << bitnum);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001164 mdio_write(ioaddr, reg, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
1167static void rtl8169_get_mac_version(struct rtl8169_private *tp, void __iomem *ioaddr)
1168{
1169 const struct {
1170 u32 mask;
1171 int mac_version;
1172 } mac_info[] = {
Francois Romieubcf0bf92006-07-26 23:14:13 +02001173 { 0x38800000, RTL_GIGA_MAC_VER_15 },
1174 { 0x38000000, RTL_GIGA_MAC_VER_12 },
1175 { 0x34000000, RTL_GIGA_MAC_VER_13 },
1176 { 0x30800000, RTL_GIGA_MAC_VER_14 },
Francois Romieu5b0384f2006-08-16 16:00:01 +02001177 { 0x30000000, RTL_GIGA_MAC_VER_11 },
Francois Romieu6dccd162007-02-13 23:38:05 +01001178 { 0x98000000, RTL_GIGA_MAC_VER_06 },
Francois Romieubcf0bf92006-07-26 23:14:13 +02001179 { 0x18000000, RTL_GIGA_MAC_VER_05 },
1180 { 0x10000000, RTL_GIGA_MAC_VER_04 },
1181 { 0x04000000, RTL_GIGA_MAC_VER_03 },
1182 { 0x00800000, RTL_GIGA_MAC_VER_02 },
1183 { 0x00000000, RTL_GIGA_MAC_VER_01 } /* Catch-all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }, *p = mac_info;
1185 u32 reg;
1186
Francois Romieu6dccd162007-02-13 23:38:05 +01001187 reg = RTL_R32(TxConfig) & 0xfc800000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 while ((reg & p->mask) != p->mask)
1189 p++;
1190 tp->mac_version = p->mac_version;
1191}
1192
1193static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1194{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001195 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
1198static void rtl8169_get_phy_version(struct rtl8169_private *tp, void __iomem *ioaddr)
1199{
1200 const struct {
1201 u16 mask;
1202 u16 set;
1203 int phy_version;
1204 } phy_info[] = {
1205 { 0x000f, 0x0002, RTL_GIGA_PHY_VER_G },
1206 { 0x000f, 0x0001, RTL_GIGA_PHY_VER_F },
1207 { 0x000f, 0x0000, RTL_GIGA_PHY_VER_E },
1208 { 0x0000, 0x0000, RTL_GIGA_PHY_VER_D } /* Catch-all */
1209 }, *p = phy_info;
1210 u16 reg;
1211
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001212 reg = mdio_read(ioaddr, MII_PHYSID2) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 while ((reg & p->mask) != p->set)
1214 p++;
1215 tp->phy_version = p->phy_version;
1216}
1217
1218static void rtl8169_print_phy_version(struct rtl8169_private *tp)
1219{
1220 struct {
1221 int version;
1222 char *msg;
1223 u32 reg;
1224 } phy_print[] = {
1225 { RTL_GIGA_PHY_VER_G, "RTL_GIGA_PHY_VER_G", 0x0002 },
1226 { RTL_GIGA_PHY_VER_F, "RTL_GIGA_PHY_VER_F", 0x0001 },
1227 { RTL_GIGA_PHY_VER_E, "RTL_GIGA_PHY_VER_E", 0x0000 },
1228 { RTL_GIGA_PHY_VER_D, "RTL_GIGA_PHY_VER_D", 0x0000 },
1229 { 0, NULL, 0x0000 }
1230 }, *p;
1231
1232 for (p = phy_print; p->msg; p++) {
1233 if (tp->phy_version == p->version) {
1234 dprintk("phy_version == %s (%04x)\n", p->msg, p->reg);
1235 return;
1236 }
1237 }
1238 dprintk("phy_version == Unknown\n");
1239}
1240
1241static void rtl8169_hw_phy_config(struct net_device *dev)
1242{
1243 struct rtl8169_private *tp = netdev_priv(dev);
1244 void __iomem *ioaddr = tp->mmio_addr;
1245 struct {
1246 u16 regs[5]; /* Beware of bit-sign propagation */
1247 } phy_magic[5] = { {
1248 { 0x0000, //w 4 15 12 0
1249 0x00a1, //w 3 15 0 00a1
1250 0x0008, //w 2 15 0 0008
1251 0x1020, //w 1 15 0 1020
1252 0x1000 } },{ //w 0 15 0 1000
1253 { 0x7000, //w 4 15 12 7
1254 0xff41, //w 3 15 0 ff41
1255 0xde60, //w 2 15 0 de60
1256 0x0140, //w 1 15 0 0140
1257 0x0077 } },{ //w 0 15 0 0077
1258 { 0xa000, //w 4 15 12 a
1259 0xdf01, //w 3 15 0 df01
1260 0xdf20, //w 2 15 0 df20
1261 0xff95, //w 1 15 0 ff95
1262 0xfa00 } },{ //w 0 15 0 fa00
1263 { 0xb000, //w 4 15 12 b
1264 0xff41, //w 3 15 0 ff41
1265 0xde20, //w 2 15 0 de20
1266 0x0140, //w 1 15 0 0140
1267 0x00bb } },{ //w 0 15 0 00bb
1268 { 0xf000, //w 4 15 12 f
1269 0xdf01, //w 3 15 0 df01
1270 0xdf20, //w 2 15 0 df20
1271 0xff95, //w 1 15 0 ff95
1272 0xbf00 } //w 0 15 0 bf00
1273 }
1274 }, *p = phy_magic;
1275 int i;
1276
1277 rtl8169_print_mac_version(tp);
1278 rtl8169_print_phy_version(tp);
1279
Francois Romieubcf0bf92006-07-26 23:14:13 +02001280 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return;
1282 if (tp->phy_version >= RTL_GIGA_PHY_VER_H)
1283 return;
1284
1285 dprintk("MAC version != 0 && PHY version == 0 or 1\n");
1286 dprintk("Do final_reg2.cfg\n");
1287
1288 /* Shazam ! */
1289
Francois Romieubcf0bf92006-07-26 23:14:13 +02001290 if (tp->mac_version == RTL_GIGA_MAC_VER_04) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 mdio_write(ioaddr, 31, 0x0002);
1292 mdio_write(ioaddr, 1, 0x90d0);
1293 mdio_write(ioaddr, 31, 0x0000);
1294 return;
1295 }
1296
1297 /* phy config for RTL8169s mac_version C chip */
1298 mdio_write(ioaddr, 31, 0x0001); //w 31 2 0 1
1299 mdio_write(ioaddr, 21, 0x1000); //w 21 15 0 1000
1300 mdio_write(ioaddr, 24, 0x65c7); //w 24 15 0 65c7
1301 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
1302
1303 for (i = 0; i < ARRAY_SIZE(phy_magic); i++, p++) {
1304 int val, pos = 4;
1305
1306 val = (mdio_read(ioaddr, pos) & 0x0fff) | (p->regs[0] & 0xffff);
1307 mdio_write(ioaddr, pos, val);
1308 while (--pos >= 0)
1309 mdio_write(ioaddr, pos, p->regs[4 - pos] & 0xffff);
1310 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 1); //w 4 11 11 1
1311 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
1312 }
1313 mdio_write(ioaddr, 31, 0x0000); //w 31 2 0 0
1314}
1315
1316static void rtl8169_phy_timer(unsigned long __opaque)
1317{
1318 struct net_device *dev = (struct net_device *)__opaque;
1319 struct rtl8169_private *tp = netdev_priv(dev);
1320 struct timer_list *timer = &tp->timer;
1321 void __iomem *ioaddr = tp->mmio_addr;
1322 unsigned long timeout = RTL8169_PHY_TIMEOUT;
1323
Francois Romieubcf0bf92006-07-26 23:14:13 +02001324 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 assert(tp->phy_version < RTL_GIGA_PHY_VER_H);
1326
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001327 if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return;
1329
1330 spin_lock_irq(&tp->lock);
1331
1332 if (tp->phy_reset_pending(ioaddr)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02001333 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 * A busy loop could burn quite a few cycles on nowadays CPU.
1335 * Let's delay the execution of the timer for a few ticks.
1336 */
1337 timeout = HZ/10;
1338 goto out_mod_timer;
1339 }
1340
1341 if (tp->link_ok(ioaddr))
1342 goto out_unlock;
1343
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001344 if (netif_msg_link(tp))
1345 printk(KERN_WARNING "%s: PHY reset until link up\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 tp->phy_reset_enable(ioaddr);
1348
1349out_mod_timer:
1350 mod_timer(timer, jiffies + timeout);
1351out_unlock:
1352 spin_unlock_irq(&tp->lock);
1353}
1354
1355static inline void rtl8169_delete_timer(struct net_device *dev)
1356{
1357 struct rtl8169_private *tp = netdev_priv(dev);
1358 struct timer_list *timer = &tp->timer;
1359
Francois Romieubcf0bf92006-07-26 23:14:13 +02001360 if ((tp->mac_version <= RTL_GIGA_MAC_VER_01) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 (tp->phy_version >= RTL_GIGA_PHY_VER_H))
1362 return;
1363
1364 del_timer_sync(timer);
1365}
1366
1367static inline void rtl8169_request_timer(struct net_device *dev)
1368{
1369 struct rtl8169_private *tp = netdev_priv(dev);
1370 struct timer_list *timer = &tp->timer;
1371
Francois Romieubcf0bf92006-07-26 23:14:13 +02001372 if ((tp->mac_version <= RTL_GIGA_MAC_VER_01) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 (tp->phy_version >= RTL_GIGA_PHY_VER_H))
1374 return;
1375
Francois Romieu2efa53f2007-03-09 00:00:05 +01001376 mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377}
1378
1379#ifdef CONFIG_NET_POLL_CONTROLLER
1380/*
1381 * Polling 'interrupt' - used by things like netconsole to send skbs
1382 * without having to re-enable interrupts. It's not called while
1383 * the interrupt routine is executing.
1384 */
1385static void rtl8169_netpoll(struct net_device *dev)
1386{
1387 struct rtl8169_private *tp = netdev_priv(dev);
1388 struct pci_dev *pdev = tp->pci_dev;
1389
1390 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01001391 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 enable_irq(pdev->irq);
1393}
1394#endif
1395
1396static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
1397 void __iomem *ioaddr)
1398{
1399 iounmap(ioaddr);
1400 pci_release_regions(pdev);
1401 pci_disable_device(pdev);
1402 free_netdev(dev);
1403}
1404
Francois Romieubf793292006-11-01 00:53:05 +01001405static void rtl8169_phy_reset(struct net_device *dev,
1406 struct rtl8169_private *tp)
1407{
1408 void __iomem *ioaddr = tp->mmio_addr;
1409 int i;
1410
1411 tp->phy_reset_enable(ioaddr);
1412 for (i = 0; i < 100; i++) {
1413 if (!tp->phy_reset_pending(ioaddr))
1414 return;
1415 msleep(1);
1416 }
1417 if (netif_msg_link(tp))
1418 printk(KERN_ERR "%s: PHY reset failed.\n", dev->name);
1419}
1420
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001421static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001423 void __iomem *ioaddr = tp->mmio_addr;
1424 static int board_idx = -1;
1425 u8 autoneg, duplex;
1426 u16 speed;
1427
1428 board_idx++;
1429
1430 rtl8169_hw_phy_config(dev);
1431
1432 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
1433 RTL_W8(0x82, 0x01);
1434
Francois Romieu6dccd162007-02-13 23:38:05 +01001435 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
1436
1437 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
1438 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001439
Francois Romieubcf0bf92006-07-26 23:14:13 +02001440 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001441 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
1442 RTL_W8(0x82, 0x01);
1443 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
1444 mdio_write(ioaddr, 0x0b, 0x0000); //w 0x0b 15 0 0
1445 }
1446
1447 rtl8169_link_option(board_idx, &autoneg, &speed, &duplex);
1448
Francois Romieubf793292006-11-01 00:53:05 +01001449 rtl8169_phy_reset(dev, tp);
1450
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001451 rtl8169_set_speed(dev, autoneg, speed, duplex);
1452
1453 if ((RTL_R8(PHYstatus) & TBI_Enable) && netif_msg_link(tp))
1454 printk(KERN_INFO PFX "%s: TBI auto-negotiating\n", dev->name);
1455}
1456
Francois Romieu5f787a12006-08-17 13:02:36 +02001457static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1458{
1459 struct rtl8169_private *tp = netdev_priv(dev);
1460 struct mii_ioctl_data *data = if_mii(ifr);
1461
1462 if (!netif_running(dev))
1463 return -ENODEV;
1464
1465 switch (cmd) {
1466 case SIOCGMIIPHY:
1467 data->phy_id = 32; /* Internal PHY */
1468 return 0;
1469
1470 case SIOCGMIIREG:
1471 data->val_out = mdio_read(tp->mmio_addr, data->reg_num & 0x1f);
1472 return 0;
1473
1474 case SIOCSMIIREG:
1475 if (!capable(CAP_NET_ADMIN))
1476 return -EPERM;
1477 mdio_write(tp->mmio_addr, data->reg_num & 0x1f, data->val_in);
1478 return 0;
1479 }
1480 return -EOPNOTSUPP;
1481}
1482
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001483static int __devinit
1484rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
1485{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001486 const unsigned int region = rtl_cfg_info[ent->driver_data].region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 struct rtl8169_private *tp;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001488 struct net_device *dev;
1489 void __iomem *ioaddr;
Francois Romieu315917d2006-11-29 22:21:33 +01001490 unsigned int pm_cap;
1491 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001493 if (netif_msg_drv(&debug)) {
1494 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
1495 MODULENAME, RTL8169_VERSION);
1496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001499 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001500 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001501 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001502 rc = -ENOMEM;
1503 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 }
1505
1506 SET_MODULE_OWNER(dev);
1507 SET_NETDEV_DEV(dev, &pdev->dev);
1508 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00001509 tp->dev = dev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001510 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
1512 /* enable device (incl. PCI PM wakeup and hotplug setup) */
1513 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001514 if (rc < 0) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001515 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001516 dev_err(&pdev->dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001517 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
1519
1520 rc = pci_set_mwi(pdev);
1521 if (rc < 0)
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001522 goto err_out_disable_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 /* save power state before pci_enable_device overwrites it */
1525 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
1526 if (pm_cap) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001527 u16 pwr_command, acpi_idle_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529 pci_read_config_word(pdev, pm_cap + PCI_PM_CTRL, &pwr_command);
1530 acpi_idle_state = pwr_command & PCI_PM_CTRL_STATE_MASK;
1531 } else {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001532 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001533 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001534 "PowerManagement capability not found.\n");
1535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
1537
1538 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001539 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001540 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001541 dev_err(&pdev->dev,
Francois Romieubcf0bf92006-07-26 23:14:13 +02001542 "region #%d not an MMIO resource, aborting\n",
1543 region);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 rc = -ENODEV;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001546 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001550 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001551 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001552 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001553 "Invalid PCI region size(s), aborting\n");
1554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 rc = -ENODEV;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001556 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558
1559 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001560 if (rc < 0) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001561 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001562 dev_err(&pdev->dev, "could not request regions.\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001563 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
1565
1566 tp->cp_cmd = PCIMulRW | RxChkSum;
1567
1568 if ((sizeof(dma_addr_t) > 4) &&
1569 !pci_set_dma_mask(pdev, DMA_64BIT_MASK) && use_dac) {
1570 tp->cp_cmd |= PCIDAC;
1571 dev->features |= NETIF_F_HIGHDMA;
1572 } else {
1573 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1574 if (rc < 0) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001575 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001576 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001577 "DMA configuration failed.\n");
1578 }
1579 goto err_out_free_res_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 }
1581 }
1582
1583 pci_set_master(pdev);
1584
1585 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001586 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001587 if (!ioaddr) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001588 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001589 dev_err(&pdev->dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 rc = -EIO;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001591 goto err_out_free_res_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 }
1593
1594 /* Unneeded ? Don't mess with Mrs. Murphy. */
1595 rtl8169_irq_mask_and_ack(ioaddr);
1596
1597 /* Soft reset the chip. */
1598 RTL_W8(ChipCmd, CmdReset);
1599
1600 /* Check that the chip has finished the reset. */
Francois Romieub518fa82006-08-16 15:23:13 +02001601 for (i = 100; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1603 break;
Francois Romieub518fa82006-08-16 15:23:13 +02001604 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
1606
1607 /* Identify chip attached to board */
1608 rtl8169_get_mac_version(tp, ioaddr);
1609 rtl8169_get_phy_version(tp, ioaddr);
1610
1611 rtl8169_print_mac_version(tp);
1612 rtl8169_print_phy_version(tp);
1613
1614 for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--) {
1615 if (tp->mac_version == rtl_chip_info[i].mac_version)
1616 break;
1617 }
1618 if (i < 0) {
1619 /* Unknown chip: assume array element #0, original RTL-8169 */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001620 if (netif_msg_probe(tp)) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001621 dev_printk(KERN_DEBUG, &pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001622 "unknown chip version, assuming %s\n",
1623 rtl_chip_info[0].name);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 i++;
1626 }
1627 tp->chipset = i;
1628
Francois Romieu5d06a992006-02-23 00:47:58 +01001629 RTL_W8(Cfg9346, Cfg9346_Unlock);
1630 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
1631 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
1632 RTL_W8(Cfg9346, Cfg9346_Lock);
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (RTL_R8(PHYstatus) & TBI_Enable) {
1635 tp->set_speed = rtl8169_set_speed_tbi;
1636 tp->get_settings = rtl8169_gset_tbi;
1637 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
1638 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
1639 tp->link_ok = rtl8169_tbi_link_ok;
1640
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001641 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 } else {
1643 tp->set_speed = rtl8169_set_speed_xmii;
1644 tp->get_settings = rtl8169_gset_xmii;
1645 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
1646 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
1647 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu5f787a12006-08-17 13:02:36 +02001648
1649 dev->do_ioctl = rtl8169_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
1651
1652 /* Get MAC address. FIXME: read EEPROM */
1653 for (i = 0; i < MAC_ADDR_LEN; i++)
1654 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04001655 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657 dev->open = rtl8169_open;
1658 dev->hard_start_xmit = rtl8169_start_xmit;
1659 dev->get_stats = rtl8169_get_stats;
1660 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
1661 dev->stop = rtl8169_close;
1662 dev->tx_timeout = rtl8169_tx_timeout;
Francois Romieu07ce4062007-02-23 23:36:39 +01001663 dev->set_multicast_list = rtl_set_rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
1665 dev->irq = pdev->irq;
1666 dev->base_addr = (unsigned long) ioaddr;
1667 dev->change_mtu = rtl8169_change_mtu;
1668
1669#ifdef CONFIG_R8169_NAPI
1670 dev->poll = rtl8169_poll;
1671 dev->weight = R8169_NAPI_WEIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672#endif
1673
1674#ifdef CONFIG_R8169_VLAN
1675 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
1676 dev->vlan_rx_register = rtl8169_vlan_rx_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677#endif
1678
1679#ifdef CONFIG_NET_POLL_CONTROLLER
1680 dev->poll_controller = rtl8169_netpoll;
1681#endif
1682
1683 tp->intr_mask = 0xffff;
1684 tp->pci_dev = pdev;
1685 tp->mmio_addr = ioaddr;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001686 tp->align = rtl_cfg_info[ent->driver_data].align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Francois Romieu2efa53f2007-03-09 00:00:05 +01001688 init_timer(&tp->timer);
1689 tp->timer.data = (unsigned long) dev;
1690 tp->timer.function = rtl8169_phy_timer;
1691
Francois Romieu07ce4062007-02-23 23:36:39 +01001692 tp->hw_start = rtl_cfg_info[ent->driver_data].hw_start;
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 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
Francois Romieueb2a0212007-02-15 23:37:21 +01001741 flush_scheduled_work();
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 unregister_netdev(dev);
1744 rtl8169_release_board(pdev, dev, tp->mmio_addr);
1745 pci_set_drvdata(pdev, NULL);
1746}
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748static void rtl8169_set_rxbufsize(struct rtl8169_private *tp,
1749 struct net_device *dev)
1750{
1751 unsigned int mtu = dev->mtu;
1752
1753 tp->rx_buf_sz = (mtu > RX_BUF_SIZE) ? mtu + ETH_HLEN + 8 : RX_BUF_SIZE;
1754}
1755
1756static int rtl8169_open(struct net_device *dev)
1757{
1758 struct rtl8169_private *tp = netdev_priv(dev);
1759 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02001760 int retval = -ENOMEM;
1761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763 rtl8169_set_rxbufsize(tp, dev);
1764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 /*
1766 * Rx and Tx desscriptors needs 256 bytes alignment.
1767 * pci_alloc_consistent provides more.
1768 */
1769 tp->TxDescArray = pci_alloc_consistent(pdev, R8169_TX_RING_BYTES,
1770 &tp->TxPhyAddr);
1771 if (!tp->TxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02001772 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 tp->RxDescArray = pci_alloc_consistent(pdev, R8169_RX_RING_BYTES,
1775 &tp->RxPhyAddr);
1776 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02001777 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 retval = rtl8169_init_ring(dev);
1780 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02001781 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
David Howellsc4028952006-11-22 14:57:56 +00001783 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Francois Romieu99f252b2007-04-02 22:59:59 +02001785 smp_mb();
1786
1787 retval = request_irq(dev->irq, rtl8169_interrupt, IRQF_SHARED,
1788 dev->name, dev);
1789 if (retval < 0)
1790 goto err_release_ring_2;
1791
Francois Romieu07ce4062007-02-23 23:36:39 +01001792 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 rtl8169_request_timer(dev);
1795
1796 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
1797out:
1798 return retval;
1799
Francois Romieu99f252b2007-04-02 22:59:59 +02001800err_release_ring_2:
1801 rtl8169_rx_clear(tp);
1802err_free_rx_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
1804 tp->RxPhyAddr);
Francois Romieu99f252b2007-04-02 22:59:59 +02001805err_free_tx_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
1807 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 goto out;
1809}
1810
1811static void rtl8169_hw_reset(void __iomem *ioaddr)
1812{
1813 /* Disable interrupts */
1814 rtl8169_irq_mask_and_ack(ioaddr);
1815
1816 /* Reset the chipset */
1817 RTL_W8(ChipCmd, CmdReset);
1818
1819 /* PCI commit */
1820 RTL_R8(ChipCmd);
1821}
1822
Francois Romieu7f796d82007-06-11 23:04:41 +02001823static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01001824{
1825 void __iomem *ioaddr = tp->mmio_addr;
1826 u32 cfg = rtl8169_rx_config;
1827
1828 cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
1829 RTL_W32(RxConfig, cfg);
1830
1831 /* Set DMA burst size and Interframe Gap Time */
1832 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
1833 (InterFrameGap << TxInterFrameGapShift));
1834}
1835
Francois Romieu07ce4062007-02-23 23:36:39 +01001836static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 struct rtl8169_private *tp = netdev_priv(dev);
1839 void __iomem *ioaddr = tp->mmio_addr;
1840 u32 i;
1841
1842 /* Soft reset the chip. */
1843 RTL_W8(ChipCmd, CmdReset);
1844
1845 /* Check that the chip has finished the reset. */
Francois Romieub518fa82006-08-16 15:23:13 +02001846 for (i = 100; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1848 break;
Francois Romieub518fa82006-08-16 15:23:13 +02001849 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 }
1851
Francois Romieu07ce4062007-02-23 23:36:39 +01001852 tp->hw_start(dev);
1853
Francois Romieu07ce4062007-02-23 23:36:39 +01001854 netif_start_queue(dev);
1855}
1856
1857
Francois Romieu7f796d82007-06-11 23:04:41 +02001858static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
1859 void __iomem *ioaddr)
1860{
1861 /*
1862 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
1863 * register to be written before TxDescAddrLow to work.
1864 * Switching from MMIO to I/O access fixes the issue as well.
1865 */
1866 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
1867 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_32BIT_MASK);
1868 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
1869 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_32BIT_MASK);
1870}
1871
1872static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
1873{
1874 u16 cmd;
1875
1876 cmd = RTL_R16(CPlusCmd);
1877 RTL_W16(CPlusCmd, cmd);
1878 return cmd;
1879}
1880
1881static void rtl_set_rx_max_size(void __iomem *ioaddr)
1882{
1883 /* Low hurts. Let's disable the filtering. */
1884 RTL_W16(RxMaxSize, 16383);
1885}
1886
Francois Romieu6dccd162007-02-13 23:38:05 +01001887static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
1888{
1889 struct {
1890 u32 mac_version;
1891 u32 clk;
1892 u32 val;
1893 } cfg2_info [] = {
1894 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
1895 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
1896 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
1897 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
1898 }, *p = cfg2_info;
1899 unsigned int i;
1900 u32 clk;
1901
1902 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
1903 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++) {
1904 if ((p->mac_version == mac_version) && (p->clk == clk)) {
1905 RTL_W32(0x7c, p->val);
1906 break;
1907 }
1908 }
1909}
1910
Francois Romieu07ce4062007-02-23 23:36:39 +01001911static void rtl_hw_start_8169(struct net_device *dev)
1912{
1913 struct rtl8169_private *tp = netdev_priv(dev);
1914 void __iomem *ioaddr = tp->mmio_addr;
1915 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01001916
Francois Romieu9cb427b2006-11-02 00:10:16 +01001917 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
1918 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
1919 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
1920 }
1921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieu9cb427b2006-11-02 00:10:16 +01001923 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
1924 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
1925 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
1926 (tp->mac_version == RTL_GIGA_MAC_VER_04))
1927 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 RTL_W8(EarlyTxThres, EarlyTxThld);
1930
Francois Romieu7f796d82007-06-11 23:04:41 +02001931 rtl_set_rx_max_size(ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Francois Romieu6dccd162007-02-13 23:38:05 +01001933 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Francois Romieu7f796d82007-06-11 23:04:41 +02001935 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001936
1937 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
1938 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 dprintk(KERN_INFO PFX "Set MAC Reg C+CR Offset 0xE0. "
1940 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02001941 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 }
1943
Francois Romieubcf0bf92006-07-26 23:14:13 +02001944 RTL_W16(CPlusCmd, tp->cp_cmd);
1945
Francois Romieu6dccd162007-02-13 23:38:05 +01001946 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
1947
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 /*
1949 * Undocumented corner. Supposedly:
1950 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
1951 */
1952 RTL_W16(IntrMitigate, 0x0000);
1953
Francois Romieu7f796d82007-06-11 23:04:41 +02001954 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01001955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02001957
1958 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
1959 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 RTL_W32(RxMissed, 0);
1962
Francois Romieu07ce4062007-02-23 23:36:39 +01001963 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 /* no early-rx interrupts */
1966 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01001967
1968 /* Enable all known interrupts by setting the interrupt mask. */
1969 RTL_W16(IntrMask, rtl8169_intr_mask);
1970
1971 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
Francois Romieu07ce4062007-02-23 23:36:39 +01001972}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Francois Romieu07ce4062007-02-23 23:36:39 +01001974static void rtl_hw_start_8168(struct net_device *dev)
1975{
Francois Romieu2dd99532007-06-11 23:22:52 +02001976 struct rtl8169_private *tp = netdev_priv(dev);
1977 void __iomem *ioaddr = tp->mmio_addr;
1978
1979 RTL_W8(Cfg9346, Cfg9346_Unlock);
1980
1981 RTL_W8(EarlyTxThres, EarlyTxThld);
1982
1983 rtl_set_rx_max_size(ioaddr);
1984
1985 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
1986
1987 RTL_W16(CPlusCmd, tp->cp_cmd);
1988
1989 RTL_W16(IntrMitigate, 0x0000);
1990
1991 rtl_set_rx_tx_desc_registers(tp, ioaddr);
1992
1993 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
1994 rtl_set_rx_tx_config_registers(tp);
1995
1996 RTL_W8(Cfg9346, Cfg9346_Lock);
1997
1998 RTL_R8(IntrMask);
1999
2000 RTL_W32(RxMissed, 0);
2001
2002 rtl_set_rx_mode(dev);
2003
2004 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002005
2006 RTL_W16(IntrMask, rtl8169_intr_mask);
Francois Romieu07ce4062007-02-23 23:36:39 +01002007}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Francois Romieu07ce4062007-02-23 23:36:39 +01002009static void rtl_hw_start_8101(struct net_device *dev)
2010{
Francois Romieucdf1a602007-06-11 23:29:50 +02002011 struct rtl8169_private *tp = netdev_priv(dev);
2012 void __iomem *ioaddr = tp->mmio_addr;
2013 struct pci_dev *pdev = tp->pci_dev;
2014
2015 if (tp->mac_version == RTL_GIGA_MAC_VER_13) {
2016 pci_write_config_word(pdev, 0x68, 0x00);
2017 pci_write_config_word(pdev, 0x69, 0x08);
2018 }
2019
2020 RTL_W8(Cfg9346, Cfg9346_Unlock);
2021
2022 RTL_W8(EarlyTxThres, EarlyTxThld);
2023
2024 rtl_set_rx_max_size(ioaddr);
2025
2026 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
2027
2028 RTL_W16(CPlusCmd, tp->cp_cmd);
2029
2030 RTL_W16(IntrMitigate, 0x0000);
2031
2032 rtl_set_rx_tx_desc_registers(tp, ioaddr);
2033
2034 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2035 rtl_set_rx_tx_config_registers(tp);
2036
2037 RTL_W8(Cfg9346, Cfg9346_Lock);
2038
2039 RTL_R8(IntrMask);
2040
2041 RTL_W32(RxMissed, 0);
2042
2043 rtl_set_rx_mode(dev);
2044
2045 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002046
2047 RTL_W16(IntrMask, rtl8169_intr_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048}
2049
2050static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
2051{
2052 struct rtl8169_private *tp = netdev_priv(dev);
2053 int ret = 0;
2054
2055 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
2056 return -EINVAL;
2057
2058 dev->mtu = new_mtu;
2059
2060 if (!netif_running(dev))
2061 goto out;
2062
2063 rtl8169_down(dev);
2064
2065 rtl8169_set_rxbufsize(tp, dev);
2066
2067 ret = rtl8169_init_ring(dev);
2068 if (ret < 0)
2069 goto out;
2070
2071 netif_poll_enable(dev);
2072
Francois Romieu07ce4062007-02-23 23:36:39 +01002073 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
2075 rtl8169_request_timer(dev);
2076
2077out:
2078 return ret;
2079}
2080
2081static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
2082{
2083 desc->addr = 0x0badbadbadbadbadull;
2084 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
2085}
2086
2087static void rtl8169_free_rx_skb(struct rtl8169_private *tp,
2088 struct sk_buff **sk_buff, struct RxDesc *desc)
2089{
2090 struct pci_dev *pdev = tp->pci_dev;
2091
2092 pci_unmap_single(pdev, le64_to_cpu(desc->addr), tp->rx_buf_sz,
2093 PCI_DMA_FROMDEVICE);
2094 dev_kfree_skb(*sk_buff);
2095 *sk_buff = NULL;
2096 rtl8169_make_unusable_by_asic(desc);
2097}
2098
2099static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
2100{
2101 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
2102
2103 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
2104}
2105
2106static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
2107 u32 rx_buf_sz)
2108{
2109 desc->addr = cpu_to_le64(mapping);
2110 wmb();
2111 rtl8169_mark_to_asic(desc, rx_buf_sz);
2112}
2113
Stephen Hemminger15d31752007-06-16 22:36:41 +02002114static struct sk_buff *rtl8169_alloc_rx_skb(struct pci_dev *pdev,
2115 struct net_device *dev,
2116 struct RxDesc *desc, int rx_buf_sz,
2117 unsigned int align)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
2119 struct sk_buff *skb;
2120 dma_addr_t mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Stephen Hemminger15d31752007-06-16 22:36:41 +02002122 skb = netdev_alloc_skb(dev, rx_buf_sz + align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 if (!skb)
2124 goto err_out;
2125
Al Virodcb92f82007-02-09 16:39:00 +00002126 skb_reserve(skb, (align - 1) & (unsigned long)skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
David S. Miller689be432005-06-28 15:25:31 -07002128 mapping = pci_map_single(pdev, skb->data, rx_buf_sz,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 PCI_DMA_FROMDEVICE);
2130
2131 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132out:
Stephen Hemminger15d31752007-06-16 22:36:41 +02002133 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
2135err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 rtl8169_make_unusable_by_asic(desc);
2137 goto out;
2138}
2139
2140static void rtl8169_rx_clear(struct rtl8169_private *tp)
2141{
2142 int i;
2143
2144 for (i = 0; i < NUM_RX_DESC; i++) {
2145 if (tp->Rx_skbuff[i]) {
2146 rtl8169_free_rx_skb(tp, tp->Rx_skbuff + i,
2147 tp->RxDescArray + i);
2148 }
2149 }
2150}
2151
2152static u32 rtl8169_rx_fill(struct rtl8169_private *tp, struct net_device *dev,
2153 u32 start, u32 end)
2154{
2155 u32 cur;
Francois Romieu5b0384f2006-08-16 16:00:01 +02002156
Francois Romieu4ae47c22007-06-16 23:28:45 +02002157 for (cur = start; end - cur != 0; cur++) {
Stephen Hemminger15d31752007-06-16 22:36:41 +02002158 struct sk_buff *skb;
2159 unsigned int i = cur % NUM_RX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Francois Romieu4ae47c22007-06-16 23:28:45 +02002161 WARN_ON((s32)(end - cur) < 0);
2162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 if (tp->Rx_skbuff[i])
2164 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02002165
Stephen Hemminger15d31752007-06-16 22:36:41 +02002166 skb = rtl8169_alloc_rx_skb(tp->pci_dev, dev,
2167 tp->RxDescArray + i,
2168 tp->rx_buf_sz, tp->align);
2169 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 break;
Stephen Hemminger15d31752007-06-16 22:36:41 +02002171
2172 tp->Rx_skbuff[i] = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 }
2174 return cur - start;
2175}
2176
2177static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
2178{
2179 desc->opts1 |= cpu_to_le32(RingEnd);
2180}
2181
2182static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
2183{
2184 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
2185}
2186
2187static int rtl8169_init_ring(struct net_device *dev)
2188{
2189 struct rtl8169_private *tp = netdev_priv(dev);
2190
2191 rtl8169_init_ring_indexes(tp);
2192
2193 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
2194 memset(tp->Rx_skbuff, 0x0, NUM_RX_DESC * sizeof(struct sk_buff *));
2195
2196 if (rtl8169_rx_fill(tp, dev, 0, NUM_RX_DESC) != NUM_RX_DESC)
2197 goto err_out;
2198
2199 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
2200
2201 return 0;
2202
2203err_out:
2204 rtl8169_rx_clear(tp);
2205 return -ENOMEM;
2206}
2207
2208static void rtl8169_unmap_tx_skb(struct pci_dev *pdev, struct ring_info *tx_skb,
2209 struct TxDesc *desc)
2210{
2211 unsigned int len = tx_skb->len;
2212
2213 pci_unmap_single(pdev, le64_to_cpu(desc->addr), len, PCI_DMA_TODEVICE);
2214 desc->opts1 = 0x00;
2215 desc->opts2 = 0x00;
2216 desc->addr = 0x00;
2217 tx_skb->len = 0;
2218}
2219
2220static void rtl8169_tx_clear(struct rtl8169_private *tp)
2221{
2222 unsigned int i;
2223
2224 for (i = tp->dirty_tx; i < tp->dirty_tx + NUM_TX_DESC; i++) {
2225 unsigned int entry = i % NUM_TX_DESC;
2226 struct ring_info *tx_skb = tp->tx_skb + entry;
2227 unsigned int len = tx_skb->len;
2228
2229 if (len) {
2230 struct sk_buff *skb = tx_skb->skb;
2231
2232 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb,
2233 tp->TxDescArray + entry);
2234 if (skb) {
2235 dev_kfree_skb(skb);
2236 tx_skb->skb = NULL;
2237 }
2238 tp->stats.tx_dropped++;
2239 }
2240 }
2241 tp->cur_tx = tp->dirty_tx = 0;
2242}
2243
David Howellsc4028952006-11-22 14:57:56 +00002244static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
2246 struct rtl8169_private *tp = netdev_priv(dev);
2247
David Howellsc4028952006-11-22 14:57:56 +00002248 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 schedule_delayed_work(&tp->task, 4);
2250}
2251
2252static void rtl8169_wait_for_quiescence(struct net_device *dev)
2253{
2254 struct rtl8169_private *tp = netdev_priv(dev);
2255 void __iomem *ioaddr = tp->mmio_addr;
2256
2257 synchronize_irq(dev->irq);
2258
2259 /* Wait for any pending NAPI task to complete */
2260 netif_poll_disable(dev);
2261
2262 rtl8169_irq_mask_and_ack(ioaddr);
2263
2264 netif_poll_enable(dev);
2265}
2266
David Howellsc4028952006-11-22 14:57:56 +00002267static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268{
David Howellsc4028952006-11-22 14:57:56 +00002269 struct rtl8169_private *tp =
2270 container_of(work, struct rtl8169_private, task.work);
2271 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 int ret;
2273
Francois Romieueb2a0212007-02-15 23:37:21 +01002274 rtnl_lock();
2275
2276 if (!netif_running(dev))
2277 goto out_unlock;
2278
2279 rtl8169_wait_for_quiescence(dev);
2280 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282 ret = rtl8169_open(dev);
2283 if (unlikely(ret < 0)) {
2284 if (net_ratelimit()) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002285 struct rtl8169_private *tp = netdev_priv(dev);
2286
2287 if (netif_msg_drv(tp)) {
2288 printk(PFX KERN_ERR
2289 "%s: reinit failure (status = %d)."
2290 " Rescheduling.\n", dev->name, ret);
2291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
2293 rtl8169_schedule_work(dev, rtl8169_reinit_task);
2294 }
Francois Romieueb2a0212007-02-15 23:37:21 +01002295
2296out_unlock:
2297 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298}
2299
David Howellsc4028952006-11-22 14:57:56 +00002300static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301{
David Howellsc4028952006-11-22 14:57:56 +00002302 struct rtl8169_private *tp =
2303 container_of(work, struct rtl8169_private, task.work);
2304 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Francois Romieueb2a0212007-02-15 23:37:21 +01002306 rtnl_lock();
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01002309 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311 rtl8169_wait_for_quiescence(dev);
2312
2313 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr);
2314 rtl8169_tx_clear(tp);
2315
2316 if (tp->dirty_rx == tp->cur_rx) {
2317 rtl8169_init_ring_indexes(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01002318 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 netif_wake_queue(dev);
2320 } else {
2321 if (net_ratelimit()) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002322 struct rtl8169_private *tp = netdev_priv(dev);
2323
2324 if (netif_msg_intr(tp)) {
2325 printk(PFX KERN_EMERG
2326 "%s: Rx buffers shortage\n", dev->name);
2327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
2329 rtl8169_schedule_work(dev, rtl8169_reset_task);
2330 }
Francois Romieueb2a0212007-02-15 23:37:21 +01002331
2332out_unlock:
2333 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334}
2335
2336static void rtl8169_tx_timeout(struct net_device *dev)
2337{
2338 struct rtl8169_private *tp = netdev_priv(dev);
2339
2340 rtl8169_hw_reset(tp->mmio_addr);
2341
2342 /* Let's wait a bit while any (async) irq lands on */
2343 rtl8169_schedule_work(dev, rtl8169_reset_task);
2344}
2345
2346static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
2347 u32 opts1)
2348{
2349 struct skb_shared_info *info = skb_shinfo(skb);
2350 unsigned int cur_frag, entry;
2351 struct TxDesc *txd;
2352
2353 entry = tp->cur_tx;
2354 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
2355 skb_frag_t *frag = info->frags + cur_frag;
2356 dma_addr_t mapping;
2357 u32 status, len;
2358 void *addr;
2359
2360 entry = (entry + 1) % NUM_TX_DESC;
2361
2362 txd = tp->TxDescArray + entry;
2363 len = frag->size;
2364 addr = ((void *) page_address(frag->page)) + frag->page_offset;
2365 mapping = pci_map_single(tp->pci_dev, addr, len, PCI_DMA_TODEVICE);
2366
2367 /* anti gcc 2.95.3 bugware (sic) */
2368 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
2369
2370 txd->opts1 = cpu_to_le32(status);
2371 txd->addr = cpu_to_le64(mapping);
2372
2373 tp->tx_skb[entry].len = len;
2374 }
2375
2376 if (cur_frag) {
2377 tp->tx_skb[entry].skb = skb;
2378 txd->opts1 |= cpu_to_le32(LastFrag);
2379 }
2380
2381 return cur_frag;
2382}
2383
2384static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
2385{
2386 if (dev->features & NETIF_F_TSO) {
Herbert Xu79671682006-06-22 02:40:14 -07002387 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389 if (mss)
2390 return LargeSend | ((mss & MSSMask) << MSSShift);
2391 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07002392 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002393 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395 if (ip->protocol == IPPROTO_TCP)
2396 return IPCS | TCPCS;
2397 else if (ip->protocol == IPPROTO_UDP)
2398 return IPCS | UDPCS;
2399 WARN_ON(1); /* we need a WARN() */
2400 }
2401 return 0;
2402}
2403
2404static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev)
2405{
2406 struct rtl8169_private *tp = netdev_priv(dev);
2407 unsigned int frags, entry = tp->cur_tx % NUM_TX_DESC;
2408 struct TxDesc *txd = tp->TxDescArray + entry;
2409 void __iomem *ioaddr = tp->mmio_addr;
2410 dma_addr_t mapping;
2411 u32 status, len;
2412 u32 opts1;
Francois Romieu188f4af2006-08-16 14:51:52 +02002413 int ret = NETDEV_TX_OK;
Francois Romieu5b0384f2006-08-16 16:00:01 +02002414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002416 if (netif_msg_drv(tp)) {
2417 printk(KERN_ERR
2418 "%s: BUG! Tx Ring full when queue awake!\n",
2419 dev->name);
2420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 goto err_stop;
2422 }
2423
2424 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
2425 goto err_stop;
2426
2427 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
2428
2429 frags = rtl8169_xmit_frags(tp, skb, opts1);
2430 if (frags) {
2431 len = skb_headlen(skb);
2432 opts1 |= FirstFrag;
2433 } else {
2434 len = skb->len;
2435
2436 if (unlikely(len < ETH_ZLEN)) {
Herbert Xu5b057c62006-06-23 02:06:41 -07002437 if (skb_padto(skb, ETH_ZLEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 goto err_update_stats;
2439 len = ETH_ZLEN;
2440 }
2441
2442 opts1 |= FirstFrag | LastFrag;
2443 tp->tx_skb[entry].skb = skb;
2444 }
2445
2446 mapping = pci_map_single(tp->pci_dev, skb->data, len, PCI_DMA_TODEVICE);
2447
2448 tp->tx_skb[entry].len = len;
2449 txd->addr = cpu_to_le64(mapping);
2450 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
2451
2452 wmb();
2453
2454 /* anti gcc 2.95.3 bugware (sic) */
2455 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
2456 txd->opts1 = cpu_to_le32(status);
2457
2458 dev->trans_start = jiffies;
2459
2460 tp->cur_tx += frags + 1;
2461
2462 smp_wmb();
2463
2464 RTL_W8(TxPoll, 0x40); /* set polling bit */
2465
2466 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
2467 netif_stop_queue(dev);
2468 smp_rmb();
2469 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
2470 netif_wake_queue(dev);
2471 }
2472
2473out:
2474 return ret;
2475
2476err_stop:
2477 netif_stop_queue(dev);
Francois Romieu188f4af2006-08-16 14:51:52 +02002478 ret = NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479err_update_stats:
2480 tp->stats.tx_dropped++;
2481 goto out;
2482}
2483
2484static void rtl8169_pcierr_interrupt(struct net_device *dev)
2485{
2486 struct rtl8169_private *tp = netdev_priv(dev);
2487 struct pci_dev *pdev = tp->pci_dev;
2488 void __iomem *ioaddr = tp->mmio_addr;
2489 u16 pci_status, pci_cmd;
2490
2491 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
2492 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
2493
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002494 if (netif_msg_intr(tp)) {
2495 printk(KERN_ERR
2496 "%s: PCI error (cmd = 0x%04x, status = 0x%04x).\n",
2497 dev->name, pci_cmd, pci_status);
2498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
2500 /*
2501 * The recovery sequence below admits a very elaborated explanation:
2502 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01002503 * - I did not see what else could be done;
2504 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 *
2506 * Feel free to adjust to your needs.
2507 */
Francois Romieua27993f2006-12-18 00:04:19 +01002508 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01002509 pci_cmd &= ~PCI_COMMAND_PARITY;
2510 else
2511 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
2512
2513 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
2515 pci_write_config_word(pdev, PCI_STATUS,
2516 pci_status & (PCI_STATUS_DETECTED_PARITY |
2517 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
2518 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
2519
2520 /* The infamous DAC f*ckup only happens at boot time */
2521 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002522 if (netif_msg_intr(tp))
2523 printk(KERN_INFO "%s: disabling PCI DAC.\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 tp->cp_cmd &= ~PCIDAC;
2525 RTL_W16(CPlusCmd, tp->cp_cmd);
2526 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 }
2528
2529 rtl8169_hw_reset(ioaddr);
Francois Romieud03902b2006-11-23 00:00:42 +01002530
2531 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532}
2533
2534static void
2535rtl8169_tx_interrupt(struct net_device *dev, struct rtl8169_private *tp,
2536 void __iomem *ioaddr)
2537{
2538 unsigned int dirty_tx, tx_left;
2539
2540 assert(dev != NULL);
2541 assert(tp != NULL);
2542 assert(ioaddr != NULL);
2543
2544 dirty_tx = tp->dirty_tx;
2545 smp_rmb();
2546 tx_left = tp->cur_tx - dirty_tx;
2547
2548 while (tx_left > 0) {
2549 unsigned int entry = dirty_tx % NUM_TX_DESC;
2550 struct ring_info *tx_skb = tp->tx_skb + entry;
2551 u32 len = tx_skb->len;
2552 u32 status;
2553
2554 rmb();
2555 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
2556 if (status & DescOwn)
2557 break;
2558
2559 tp->stats.tx_bytes += len;
2560 tp->stats.tx_packets++;
2561
2562 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb, tp->TxDescArray + entry);
2563
2564 if (status & LastFrag) {
2565 dev_kfree_skb_irq(tx_skb->skb);
2566 tx_skb->skb = NULL;
2567 }
2568 dirty_tx++;
2569 tx_left--;
2570 }
2571
2572 if (tp->dirty_tx != dirty_tx) {
2573 tp->dirty_tx = dirty_tx;
2574 smp_wmb();
2575 if (netif_queue_stopped(dev) &&
2576 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
2577 netif_wake_queue(dev);
2578 }
2579 }
2580}
2581
Francois Romieu126fa4b2005-05-12 20:09:17 -04002582static inline int rtl8169_fragmented_frame(u32 status)
2583{
2584 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
2585}
2586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587static inline void rtl8169_rx_csum(struct sk_buff *skb, struct RxDesc *desc)
2588{
2589 u32 opts1 = le32_to_cpu(desc->opts1);
2590 u32 status = opts1 & RxProtoMask;
2591
2592 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
2593 ((status == RxProtoUDP) && !(opts1 & UDPFail)) ||
2594 ((status == RxProtoIP) && !(opts1 & IPFail)))
2595 skb->ip_summed = CHECKSUM_UNNECESSARY;
2596 else
2597 skb->ip_summed = CHECKSUM_NONE;
2598}
2599
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002600static inline bool rtl8169_try_rx_copy(struct sk_buff **sk_buff, int pkt_size,
2601 struct pci_dev *pdev, dma_addr_t addr,
2602 unsigned int align)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002604 struct sk_buff *skb;
2605 bool done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002607 if (pkt_size >= rx_copybreak)
2608 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002610 skb = dev_alloc_skb(pkt_size + align);
2611 if (!skb)
2612 goto out;
2613
2614 pci_dma_sync_single_for_cpu(pdev, addr, pkt_size, PCI_DMA_FROMDEVICE);
2615 skb_reserve(skb, (align - 1) & (unsigned long)skb->data);
2616 skb_copy_from_linear_data(*sk_buff, skb->data, pkt_size);
2617 *sk_buff = skb;
2618 done = true;
2619out:
2620 return done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621}
2622
2623static int
2624rtl8169_rx_interrupt(struct net_device *dev, struct rtl8169_private *tp,
2625 void __iomem *ioaddr)
2626{
2627 unsigned int cur_rx, rx_left;
2628 unsigned int delta, count;
2629
2630 assert(dev != NULL);
2631 assert(tp != NULL);
2632 assert(ioaddr != NULL);
2633
2634 cur_rx = tp->cur_rx;
2635 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
2636 rx_left = rtl8169_rx_quota(rx_left, (u32) dev->quota);
2637
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002638 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002640 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 u32 status;
2642
2643 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04002644 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
2646 if (status & DescOwn)
2647 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002648 if (unlikely(status & RxRES)) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002649 if (netif_msg_rx_err(tp)) {
2650 printk(KERN_INFO
2651 "%s: Rx ERROR. status = %08x\n",
2652 dev->name, status);
2653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 tp->stats.rx_errors++;
2655 if (status & (RxRWT | RxRUNT))
2656 tp->stats.rx_length_errors++;
2657 if (status & RxCRC)
2658 tp->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02002659 if (status & RxFOVF) {
2660 rtl8169_schedule_work(dev, rtl8169_reset_task);
2661 tp->stats.rx_fifo_errors++;
2662 }
Francois Romieu126fa4b2005-05-12 20:09:17 -04002663 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 struct sk_buff *skb = tp->Rx_skbuff[entry];
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002666 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 int pkt_size = (status & 0x00001FFF) - 4;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002668 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Francois Romieu126fa4b2005-05-12 20:09:17 -04002670 /*
2671 * The driver does not support incoming fragmented
2672 * frames. They are seen as a symptom of over-mtu
2673 * sized frames.
2674 */
2675 if (unlikely(rtl8169_fragmented_frame(status))) {
2676 tp->stats.rx_dropped++;
2677 tp->stats.rx_length_errors++;
2678 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002679 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002680 }
2681
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 rtl8169_rx_csum(skb, desc);
Francois Romieubcf0bf92006-07-26 23:14:13 +02002683
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002684 if (rtl8169_try_rx_copy(&skb, pkt_size, pdev, addr,
2685 tp->align)) {
2686 pci_dma_sync_single_for_device(pdev, addr,
2687 pkt_size, PCI_DMA_FROMDEVICE);
2688 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
2689 } else {
2690 pci_unmap_single(pdev, addr, pkt_size,
2691 PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 tp->Rx_skbuff[entry] = NULL;
2693 }
2694
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 skb_put(skb, pkt_size);
2696 skb->protocol = eth_type_trans(skb, dev);
2697
2698 if (rtl8169_rx_vlan_skb(tp, desc, skb) < 0)
2699 rtl8169_rx_skb(skb);
2700
2701 dev->last_rx = jiffies;
2702 tp->stats.rx_bytes += pkt_size;
2703 tp->stats.rx_packets++;
2704 }
Francois Romieu6dccd162007-02-13 23:38:05 +01002705
2706 /* Work around for AMD plateform. */
2707 if ((desc->opts2 & 0xfffe000) &&
2708 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
2709 desc->opts2 = 0;
2710 cur_rx++;
2711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 }
2713
2714 count = cur_rx - tp->cur_rx;
2715 tp->cur_rx = cur_rx;
2716
2717 delta = rtl8169_rx_fill(tp, dev, tp->dirty_rx, tp->cur_rx);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002718 if (!delta && count && netif_msg_intr(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 printk(KERN_INFO "%s: no Rx buffer allocated\n", dev->name);
2720 tp->dirty_rx += delta;
2721
2722 /*
2723 * FIXME: until there is periodic timer to try and refill the ring,
2724 * a temporary shortage may definitely kill the Rx process.
2725 * - disable the asic to try and avoid an overflow and kick it again
2726 * after refill ?
2727 * - how do others driver handle this condition (Uh oh...).
2728 */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002729 if ((tp->dirty_rx + NUM_RX_DESC == tp->cur_rx) && netif_msg_intr(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 printk(KERN_EMERG "%s: Rx buffers exhausted\n", dev->name);
2731
2732 return count;
2733}
2734
2735/* The interrupt handler does all of the Rx thread work and cleans up after the Tx thread. */
2736static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01002737rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738{
2739 struct net_device *dev = (struct net_device *) dev_instance;
2740 struct rtl8169_private *tp = netdev_priv(dev);
2741 int boguscnt = max_interrupt_work;
2742 void __iomem *ioaddr = tp->mmio_addr;
2743 int status;
2744 int handled = 0;
2745
2746 do {
2747 status = RTL_R16(IntrStatus);
2748
2749 /* hotplug/major error/no more work/shared irq */
2750 if ((status == 0xFFFF) || !status)
2751 break;
2752
2753 handled = 1;
2754
2755 if (unlikely(!netif_running(dev))) {
2756 rtl8169_asic_down(ioaddr);
2757 goto out;
2758 }
2759
2760 status &= tp->intr_mask;
2761 RTL_W16(IntrStatus,
2762 (status & RxFIFOOver) ? (status | RxOverflow) : status);
2763
2764 if (!(status & rtl8169_intr_mask))
2765 break;
2766
2767 if (unlikely(status & SYSErr)) {
2768 rtl8169_pcierr_interrupt(dev);
2769 break;
2770 }
2771
2772 if (status & LinkChg)
2773 rtl8169_check_link_status(dev, tp, ioaddr);
2774
2775#ifdef CONFIG_R8169_NAPI
2776 RTL_W16(IntrMask, rtl8169_intr_mask & ~rtl8169_napi_event);
2777 tp->intr_mask = ~rtl8169_napi_event;
2778
2779 if (likely(netif_rx_schedule_prep(dev)))
2780 __netif_rx_schedule(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002781 else if (netif_msg_intr(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 printk(KERN_INFO "%s: interrupt %04x taken in poll\n",
Francois Romieu5b0384f2006-08-16 16:00:01 +02002783 dev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 }
2785 break;
2786#else
2787 /* Rx interrupt */
2788 if (status & (RxOK | RxOverflow | RxFIFOOver)) {
2789 rtl8169_rx_interrupt(dev, tp, ioaddr);
2790 }
2791 /* Tx interrupt */
2792 if (status & (TxOK | TxErr))
2793 rtl8169_tx_interrupt(dev, tp, ioaddr);
2794#endif
2795
2796 boguscnt--;
2797 } while (boguscnt > 0);
2798
2799 if (boguscnt <= 0) {
Francois Romieu7c8b2eb2005-11-16 23:44:05 +01002800 if (netif_msg_intr(tp) && net_ratelimit() ) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002801 printk(KERN_WARNING
2802 "%s: Too much work at interrupt!\n", dev->name);
2803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 /* Clear all interrupt sources. */
2805 RTL_W16(IntrStatus, 0xffff);
2806 }
2807out:
2808 return IRQ_RETVAL(handled);
2809}
2810
2811#ifdef CONFIG_R8169_NAPI
2812static int rtl8169_poll(struct net_device *dev, int *budget)
2813{
2814 unsigned int work_done, work_to_do = min(*budget, dev->quota);
2815 struct rtl8169_private *tp = netdev_priv(dev);
2816 void __iomem *ioaddr = tp->mmio_addr;
2817
2818 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr);
2819 rtl8169_tx_interrupt(dev, tp, ioaddr);
2820
2821 *budget -= work_done;
2822 dev->quota -= work_done;
2823
2824 if (work_done < work_to_do) {
2825 netif_rx_complete(dev);
2826 tp->intr_mask = 0xffff;
2827 /*
2828 * 20040426: the barrier is not strictly required but the
2829 * behavior of the irq handler could be less predictable
2830 * without it. Btw, the lack of flush for the posted pci
2831 * write is safe - FR
2832 */
2833 smp_wmb();
2834 RTL_W16(IntrMask, rtl8169_intr_mask);
2835 }
2836
2837 return (work_done >= work_to_do);
2838}
2839#endif
2840
2841static void rtl8169_down(struct net_device *dev)
2842{
2843 struct rtl8169_private *tp = netdev_priv(dev);
2844 void __iomem *ioaddr = tp->mmio_addr;
2845 unsigned int poll_locked = 0;
Arnaud Patard733b7362006-10-12 22:33:31 +02002846 unsigned int intrmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
2848 rtl8169_delete_timer(dev);
2849
2850 netif_stop_queue(dev);
2851
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852core_down:
2853 spin_lock_irq(&tp->lock);
2854
2855 rtl8169_asic_down(ioaddr);
2856
2857 /* Update the error counts. */
2858 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
2859 RTL_W32(RxMissed, 0);
2860
2861 spin_unlock_irq(&tp->lock);
2862
2863 synchronize_irq(dev->irq);
2864
2865 if (!poll_locked) {
2866 netif_poll_disable(dev);
2867 poll_locked++;
2868 }
2869
2870 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002871 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
2873 /*
2874 * And now for the 50k$ question: are IRQ disabled or not ?
2875 *
2876 * Two paths lead here:
2877 * 1) dev->close
2878 * -> netif_running() is available to sync the current code and the
2879 * IRQ handler. See rtl8169_interrupt for details.
2880 * 2) dev->change_mtu
2881 * -> rtl8169_poll can not be issued again and re-enable the
2882 * interruptions. Let's simply issue the IRQ down sequence again.
Arnaud Patard733b7362006-10-12 22:33:31 +02002883 *
2884 * No loop if hotpluged or major error (0xffff).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 */
Arnaud Patard733b7362006-10-12 22:33:31 +02002886 intrmask = RTL_R16(IntrMask);
2887 if (intrmask && (intrmask != 0xffff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 goto core_down;
2889
2890 rtl8169_tx_clear(tp);
2891
2892 rtl8169_rx_clear(tp);
2893}
2894
2895static int rtl8169_close(struct net_device *dev)
2896{
2897 struct rtl8169_private *tp = netdev_priv(dev);
2898 struct pci_dev *pdev = tp->pci_dev;
2899
2900 rtl8169_down(dev);
2901
2902 free_irq(dev->irq, dev);
2903
2904 netif_poll_enable(dev);
2905
2906 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
2907 tp->RxPhyAddr);
2908 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
2909 tp->TxPhyAddr);
2910 tp->TxDescArray = NULL;
2911 tp->RxDescArray = NULL;
2912
2913 return 0;
2914}
2915
Francois Romieu07ce4062007-02-23 23:36:39 +01002916static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917{
2918 struct rtl8169_private *tp = netdev_priv(dev);
2919 void __iomem *ioaddr = tp->mmio_addr;
2920 unsigned long flags;
2921 u32 mc_filter[2]; /* Multicast hash filter */
2922 int i, rx_mode;
2923 u32 tmp = 0;
2924
2925 if (dev->flags & IFF_PROMISC) {
2926 /* Unconditionally log net taps. */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002927 if (netif_msg_link(tp)) {
2928 printk(KERN_NOTICE "%s: Promiscuous mode enabled.\n",
2929 dev->name);
2930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 rx_mode =
2932 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
2933 AcceptAllPhys;
2934 mc_filter[1] = mc_filter[0] = 0xffffffff;
2935 } else if ((dev->mc_count > multicast_filter_limit)
2936 || (dev->flags & IFF_ALLMULTI)) {
2937 /* Too many to filter perfectly -- accept all multicasts. */
2938 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
2939 mc_filter[1] = mc_filter[0] = 0xffffffff;
2940 } else {
2941 struct dev_mc_list *mclist;
2942 rx_mode = AcceptBroadcast | AcceptMyPhys;
2943 mc_filter[1] = mc_filter[0] = 0;
2944 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
2945 i++, mclist = mclist->next) {
2946 int bit_nr = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
2947 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
2948 rx_mode |= AcceptMulticast;
2949 }
2950 }
2951
2952 spin_lock_irqsave(&tp->lock, flags);
2953
2954 tmp = rtl8169_rx_config | rx_mode |
2955 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
2956
Francois Romieubcf0bf92006-07-26 23:14:13 +02002957 if ((tp->mac_version == RTL_GIGA_MAC_VER_11) ||
2958 (tp->mac_version == RTL_GIGA_MAC_VER_12) ||
2959 (tp->mac_version == RTL_GIGA_MAC_VER_13) ||
2960 (tp->mac_version == RTL_GIGA_MAC_VER_14) ||
2961 (tp->mac_version == RTL_GIGA_MAC_VER_15)) {
2962 mc_filter[0] = 0xffffffff;
2963 mc_filter[1] = 0xffffffff;
2964 }
2965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 RTL_W32(RxConfig, tmp);
2967 RTL_W32(MAR0 + 0, mc_filter[0]);
2968 RTL_W32(MAR0 + 4, mc_filter[1]);
2969
2970 spin_unlock_irqrestore(&tp->lock, flags);
2971}
2972
2973/**
2974 * rtl8169_get_stats - Get rtl8169 read/write statistics
2975 * @dev: The Ethernet Device to get statistics for
2976 *
2977 * Get TX/RX statistics for rtl8169
2978 */
2979static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
2980{
2981 struct rtl8169_private *tp = netdev_priv(dev);
2982 void __iomem *ioaddr = tp->mmio_addr;
2983 unsigned long flags;
2984
2985 if (netif_running(dev)) {
2986 spin_lock_irqsave(&tp->lock, flags);
2987 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
2988 RTL_W32(RxMissed, 0);
2989 spin_unlock_irqrestore(&tp->lock, flags);
2990 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02002991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 return &tp->stats;
2993}
2994
Francois Romieu5d06a992006-02-23 00:47:58 +01002995#ifdef CONFIG_PM
2996
2997static int rtl8169_suspend(struct pci_dev *pdev, pm_message_t state)
2998{
2999 struct net_device *dev = pci_get_drvdata(pdev);
3000 struct rtl8169_private *tp = netdev_priv(dev);
3001 void __iomem *ioaddr = tp->mmio_addr;
3002
3003 if (!netif_running(dev))
Francois Romieu1371fa62007-04-02 23:01:11 +02003004 goto out_pci_suspend;
Francois Romieu5d06a992006-02-23 00:47:58 +01003005
3006 netif_device_detach(dev);
3007 netif_stop_queue(dev);
3008
3009 spin_lock_irq(&tp->lock);
3010
3011 rtl8169_asic_down(ioaddr);
3012
3013 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
3014 RTL_W32(RxMissed, 0);
3015
3016 spin_unlock_irq(&tp->lock);
3017
Francois Romieu1371fa62007-04-02 23:01:11 +02003018out_pci_suspend:
Francois Romieu5d06a992006-02-23 00:47:58 +01003019 pci_save_state(pdev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01003020 pci_enable_wake(pdev, pci_choose_state(pdev, state), tp->wol_enabled);
Francois Romieu5d06a992006-02-23 00:47:58 +01003021 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Francois Romieu1371fa62007-04-02 23:01:11 +02003022
Francois Romieu5d06a992006-02-23 00:47:58 +01003023 return 0;
3024}
3025
3026static int rtl8169_resume(struct pci_dev *pdev)
3027{
3028 struct net_device *dev = pci_get_drvdata(pdev);
3029
Francois Romieu1371fa62007-04-02 23:01:11 +02003030 pci_set_power_state(pdev, PCI_D0);
3031 pci_restore_state(pdev);
3032 pci_enable_wake(pdev, PCI_D0, 0);
3033
Francois Romieu5d06a992006-02-23 00:47:58 +01003034 if (!netif_running(dev))
3035 goto out;
3036
3037 netif_device_attach(dev);
3038
Francois Romieu5d06a992006-02-23 00:47:58 +01003039 rtl8169_schedule_work(dev, rtl8169_reset_task);
3040out:
3041 return 0;
3042}
3043
3044#endif /* CONFIG_PM */
3045
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046static struct pci_driver rtl8169_pci_driver = {
3047 .name = MODULENAME,
3048 .id_table = rtl8169_pci_tbl,
3049 .probe = rtl8169_init_one,
3050 .remove = __devexit_p(rtl8169_remove_one),
3051#ifdef CONFIG_PM
3052 .suspend = rtl8169_suspend,
3053 .resume = rtl8169_resume,
3054#endif
3055};
3056
3057static int __init
3058rtl8169_init_module(void)
3059{
Jeff Garzik29917622006-08-19 17:48:59 -04003060 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061}
3062
3063static void __exit
3064rtl8169_cleanup_module(void)
3065{
3066 pci_unregister_driver(&rtl8169_pci_driver);
3067}
3068
3069module_init(rtl8169_init_module);
3070module_exit(rtl8169_cleanup_module);