blob: 9c49d910c06d046442502fb03715816fa98aa994 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208static struct pci_device_id rtl8169_pci_tbl[] = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200209 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200210 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200211 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100212 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200213 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
214 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Andrew Morton73f5e282006-10-09 21:58:54 +0200215 { PCI_DEVICE(0x1259, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200216 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
217 { PCI_VENDOR_ID_LINKSYS, 0x1032,
218 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 {0,},
220};
221
222MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
223
224static int rx_copybreak = 200;
225static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200226static struct {
227 u32 msg_enable;
228} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230enum RTL8169_registers {
231 MAC0 = 0, /* Ethernet hardware address. */
232 MAR0 = 8, /* Multicast filter. */
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200233 CounterAddrLow = 0x10,
234 CounterAddrHigh = 0x14,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 TxDescStartAddrLow = 0x20,
236 TxDescStartAddrHigh = 0x24,
237 TxHDescStartAddrLow = 0x28,
238 TxHDescStartAddrHigh = 0x2c,
239 FLASH = 0x30,
240 ERSR = 0x36,
241 ChipCmd = 0x37,
242 TxPoll = 0x38,
243 IntrMask = 0x3C,
244 IntrStatus = 0x3E,
245 TxConfig = 0x40,
246 RxConfig = 0x44,
247 RxMissed = 0x4C,
248 Cfg9346 = 0x50,
249 Config0 = 0x51,
250 Config1 = 0x52,
251 Config2 = 0x53,
252 Config3 = 0x54,
253 Config4 = 0x55,
254 Config5 = 0x56,
255 MultiIntr = 0x5C,
256 PHYAR = 0x60,
257 TBICSR = 0x64,
258 TBI_ANAR = 0x68,
259 TBI_LPAR = 0x6A,
260 PHYstatus = 0x6C,
261 RxMaxSize = 0xDA,
262 CPlusCmd = 0xE0,
263 IntrMitigate = 0xE2,
264 RxDescAddrLow = 0xE4,
265 RxDescAddrHigh = 0xE8,
266 EarlyTxThres = 0xEC,
267 FuncEvent = 0xF0,
268 FuncEventMask = 0xF4,
269 FuncPresetState = 0xF8,
270 FuncForceEvent = 0xFC,
271};
272
273enum RTL8169_register_content {
274 /* InterruptStatusBits */
275 SYSErr = 0x8000,
276 PCSTimeout = 0x4000,
277 SWInt = 0x0100,
278 TxDescUnavail = 0x80,
279 RxFIFOOver = 0x40,
280 LinkChg = 0x20,
281 RxOverflow = 0x10,
282 TxErr = 0x08,
283 TxOK = 0x04,
284 RxErr = 0x02,
285 RxOK = 0x01,
286
287 /* RxStatusDesc */
Francois Romieu9dccf612006-05-14 12:31:17 +0200288 RxFOVF = (1 << 23),
289 RxRWT = (1 << 22),
290 RxRES = (1 << 21),
291 RxRUNT = (1 << 20),
292 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 /* ChipCmdBits */
295 CmdReset = 0x10,
296 CmdRxEnb = 0x08,
297 CmdTxEnb = 0x04,
298 RxBufEmpty = 0x01,
299
300 /* Cfg9346Bits */
301 Cfg9346_Lock = 0x00,
302 Cfg9346_Unlock = 0xC0,
303
304 /* rx_mode_bits */
305 AcceptErr = 0x20,
306 AcceptRunt = 0x10,
307 AcceptBroadcast = 0x08,
308 AcceptMulticast = 0x04,
309 AcceptMyPhys = 0x02,
310 AcceptAllPhys = 0x01,
311
312 /* RxConfigBits */
313 RxCfgFIFOShift = 13,
314 RxCfgDMAShift = 8,
315
316 /* TxConfigBits */
317 TxInterFrameGapShift = 24,
318 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
319
Francois Romieu5d06a992006-02-23 00:47:58 +0100320 /* Config1 register p.24 */
321 PMEnable = (1 << 0), /* Power Management Enable */
322
Francois Romieu6dccd162007-02-13 23:38:05 +0100323 /* Config2 register p. 25 */
324 PCI_Clock_66MHz = 0x01,
325 PCI_Clock_33MHz = 0x00,
326
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100327 /* Config3 register p.25 */
328 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
329 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
330
Francois Romieu5d06a992006-02-23 00:47:58 +0100331 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100332 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
333 MWF = (1 << 5), /* Accept Multicast wakeup frame */
334 UWF = (1 << 4), /* Accept Unicast wakeup frame */
335 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100336 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 /* TBICSR p.28 */
339 TBIReset = 0x80000000,
340 TBILoopback = 0x40000000,
341 TBINwEnable = 0x20000000,
342 TBINwRestart = 0x10000000,
343 TBILinkOk = 0x02000000,
344 TBINwComplete = 0x01000000,
345
346 /* CPlusCmd p.31 */
Francois Romieu0e485152007-02-20 00:00:26 +0100347 PktCntrDisable = (1 << 7), // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 RxVlan = (1 << 6),
349 RxChkSum = (1 << 5),
350 PCIDAC = (1 << 4),
351 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100352 INTT_0 = 0x0000, // 8168
353 INTT_1 = 0x0001, // 8168
354 INTT_2 = 0x0002, // 8168
355 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* rtl8169_PHYstatus */
358 TBI_Enable = 0x80,
359 TxFlowCtrl = 0x40,
360 RxFlowCtrl = 0x20,
361 _1000bpsF = 0x10,
362 _100bps = 0x08,
363 _10bps = 0x04,
364 LinkStatus = 0x02,
365 FullDup = 0x01,
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /* _MediaType */
368 _10_Half = 0x01,
369 _10_Full = 0x02,
370 _100_Half = 0x04,
371 _100_Full = 0x08,
372 _1000_Full = 0x10,
373
374 /* _TBICSRBit */
375 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200376
377 /* DumpCounterCommand */
378 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379};
380
381enum _DescStatusBit {
382 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
383 RingEnd = (1 << 30), /* End of descriptor ring */
384 FirstFrag = (1 << 29), /* First segment of a packet */
385 LastFrag = (1 << 28), /* Final segment of a packet */
386
387 /* Tx private */
388 LargeSend = (1 << 27), /* TCP Large Send Offload (TSO) */
389 MSSShift = 16, /* MSS value position */
390 MSSMask = 0xfff, /* MSS value + LargeSend bit: 12 bits */
391 IPCS = (1 << 18), /* Calculate IP checksum */
392 UDPCS = (1 << 17), /* Calculate UDP/IP checksum */
393 TCPCS = (1 << 16), /* Calculate TCP/IP checksum */
394 TxVlanTag = (1 << 17), /* Add VLAN tag */
395
396 /* Rx private */
397 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
398 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
399
400#define RxProtoUDP (PID1)
401#define RxProtoTCP (PID0)
402#define RxProtoIP (PID1 | PID0)
403#define RxProtoMask RxProtoIP
404
405 IPFail = (1 << 16), /* IP checksum failed */
406 UDPFail = (1 << 15), /* UDP/IP checksum failed */
407 TCPFail = (1 << 14), /* TCP/IP checksum failed */
408 RxVlanTag = (1 << 16), /* VLAN tag available */
409};
410
411#define RsvdMask 0x3fffc000
412
413struct TxDesc {
414 u32 opts1;
415 u32 opts2;
416 u64 addr;
417};
418
419struct RxDesc {
420 u32 opts1;
421 u32 opts2;
422 u64 addr;
423};
424
425struct ring_info {
426 struct sk_buff *skb;
427 u32 len;
428 u8 __pad[sizeof(void *) - sizeof(u32)];
429};
430
431struct rtl8169_private {
432 void __iomem *mmio_addr; /* memory map physical address */
433 struct pci_dev *pci_dev; /* Index of PCI device */
David Howellsc4028952006-11-22 14:57:56 +0000434 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 struct net_device_stats stats; /* statistics of net device */
436 spinlock_t lock; /* spin lock flag */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200437 u32 msg_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 int chipset;
439 int mac_version;
440 int phy_version;
441 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
442 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
443 u32 dirty_rx;
444 u32 dirty_tx;
445 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
446 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
447 dma_addr_t TxPhyAddr;
448 dma_addr_t RxPhyAddr;
449 struct sk_buff *Rx_skbuff[NUM_RX_DESC]; /* Rx data buffers */
450 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Francois Romieubcf0bf92006-07-26 23:14:13 +0200451 unsigned align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 unsigned rx_buf_sz;
453 struct timer_list timer;
454 u16 cp_cmd;
Francois Romieu0e485152007-02-20 00:00:26 +0100455 u16 intr_event;
456 u16 napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 u16 intr_mask;
458 int phy_auto_nego_reg;
459 int phy_1000_ctrl_reg;
460#ifdef CONFIG_R8169_VLAN
461 struct vlan_group *vlgrp;
462#endif
463 int (*set_speed)(struct net_device *, u8 autoneg, u16 speed, u8 duplex);
464 void (*get_settings)(struct net_device *, struct ethtool_cmd *);
465 void (*phy_reset_enable)(void __iomem *);
Francois Romieu07ce4062007-02-23 23:36:39 +0100466 void (*hw_start)(struct net_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 unsigned int (*phy_reset_pending)(void __iomem *);
468 unsigned int (*link_ok)(void __iomem *);
David Howellsc4028952006-11-22 14:57:56 +0000469 struct delayed_work task;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100470 unsigned wol_enabled : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471};
472
Ralf Baechle979b6c12005-06-13 14:30:40 -0700473MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
475module_param_array(media, int, &num_media, 0);
Francois Romieudf0a1bf2005-05-27 21:11:49 +0200476MODULE_PARM_DESC(media, "force phy operation. Deprecated by ethtool (8).");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477module_param(rx_copybreak, int, 0);
Stephen Hemminger1b7efd52005-05-27 21:11:45 +0200478MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479module_param(use_dac, int, 0);
480MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200481module_param_named(debug, debug.msg_enable, int, 0);
482MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483MODULE_LICENSE("GPL");
484MODULE_VERSION(RTL8169_VERSION);
485
486static int rtl8169_open(struct net_device *dev);
487static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100488static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100490static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100492static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200494static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
496 void __iomem *);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200497static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b2007-04-02 22:59:59 +0200499static void rtl8169_rx_clear(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501#ifdef CONFIG_R8169_NAPI
502static int rtl8169_poll(struct net_device *dev, int *budget);
503#endif
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505static const unsigned int rtl8169_rx_config =
Francois Romieu5b0384f2006-08-16 16:00:01 +0200506 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508static void mdio_write(void __iomem *ioaddr, int RegAddr, int value)
509{
510 int i;
511
512 RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Francois Romieu23714082006-01-29 00:49:09 +0100514 for (i = 20; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /* Check if the RTL8169 has completed writing to the specified MII register */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200516 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 break;
Francois Romieu23714082006-01-29 00:49:09 +0100518 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520}
521
522static int mdio_read(void __iomem *ioaddr, int RegAddr)
523{
524 int i, value = -1;
525
526 RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Francois Romieu23714082006-01-29 00:49:09 +0100528 for (i = 20; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /* Check if the RTL8169 has completed retrieving data from the specified MII register */
530 if (RTL_R32(PHYAR) & 0x80000000) {
531 value = (int) (RTL_R32(PHYAR) & 0xFFFF);
532 break;
533 }
Francois Romieu23714082006-01-29 00:49:09 +0100534 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536 return value;
537}
538
539static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
540{
541 RTL_W16(IntrMask, 0x0000);
542
543 RTL_W16(IntrStatus, 0xffff);
544}
545
546static void rtl8169_asic_down(void __iomem *ioaddr)
547{
548 RTL_W8(ChipCmd, 0x00);
549 rtl8169_irq_mask_and_ack(ioaddr);
550 RTL_R16(CPlusCmd);
551}
552
553static unsigned int rtl8169_tbi_reset_pending(void __iomem *ioaddr)
554{
555 return RTL_R32(TBICSR) & TBIReset;
556}
557
558static unsigned int rtl8169_xmii_reset_pending(void __iomem *ioaddr)
559{
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200560 return mdio_read(ioaddr, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
563static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
564{
565 return RTL_R32(TBICSR) & TBILinkOk;
566}
567
568static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
569{
570 return RTL_R8(PHYstatus) & LinkStatus;
571}
572
573static void rtl8169_tbi_reset_enable(void __iomem *ioaddr)
574{
575 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
576}
577
578static void rtl8169_xmii_reset_enable(void __iomem *ioaddr)
579{
580 unsigned int val;
581
Francois Romieu9e0db8e2007-03-08 23:59:54 +0100582 val = mdio_read(ioaddr, MII_BMCR) | BMCR_RESET;
583 mdio_write(ioaddr, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586static void rtl8169_check_link_status(struct net_device *dev,
587 struct rtl8169_private *tp, void __iomem *ioaddr)
588{
589 unsigned long flags;
590
591 spin_lock_irqsave(&tp->lock, flags);
592 if (tp->link_ok(ioaddr)) {
593 netif_carrier_on(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200594 if (netif_msg_ifup(tp))
595 printk(KERN_INFO PFX "%s: link up\n", dev->name);
596 } else {
597 if (netif_msg_ifdown(tp))
598 printk(KERN_INFO PFX "%s: link down\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 netif_carrier_off(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 spin_unlock_irqrestore(&tp->lock, flags);
602}
603
604static void rtl8169_link_option(int idx, u8 *autoneg, u16 *speed, u8 *duplex)
605{
606 struct {
607 u16 speed;
608 u8 duplex;
609 u8 autoneg;
610 u8 media;
611 } link_settings[] = {
612 { SPEED_10, DUPLEX_HALF, AUTONEG_DISABLE, _10_Half },
613 { SPEED_10, DUPLEX_FULL, AUTONEG_DISABLE, _10_Full },
614 { SPEED_100, DUPLEX_HALF, AUTONEG_DISABLE, _100_Half },
615 { SPEED_100, DUPLEX_FULL, AUTONEG_DISABLE, _100_Full },
616 { SPEED_1000, DUPLEX_FULL, AUTONEG_DISABLE, _1000_Full },
617 /* Make TBI happy */
618 { SPEED_1000, DUPLEX_FULL, AUTONEG_ENABLE, 0xff }
619 }, *p;
620 unsigned char option;
Francois Romieu5b0384f2006-08-16 16:00:01 +0200621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 option = ((idx < MAX_UNITS) && (idx >= 0)) ? media[idx] : 0xff;
623
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200624 if ((option != 0xff) && !idx && netif_msg_drv(&debug))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 printk(KERN_WARNING PFX "media option is deprecated.\n");
626
627 for (p = link_settings; p->media != 0xff; p++) {
628 if (p->media == option)
629 break;
630 }
631 *autoneg = p->autoneg;
632 *speed = p->speed;
633 *duplex = p->duplex;
634}
635
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100636static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
637{
638 struct rtl8169_private *tp = netdev_priv(dev);
639 void __iomem *ioaddr = tp->mmio_addr;
640 u8 options;
641
642 wol->wolopts = 0;
643
644#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
645 wol->supported = WAKE_ANY;
646
647 spin_lock_irq(&tp->lock);
648
649 options = RTL_R8(Config1);
650 if (!(options & PMEnable))
651 goto out_unlock;
652
653 options = RTL_R8(Config3);
654 if (options & LinkUp)
655 wol->wolopts |= WAKE_PHY;
656 if (options & MagicPacket)
657 wol->wolopts |= WAKE_MAGIC;
658
659 options = RTL_R8(Config5);
660 if (options & UWF)
661 wol->wolopts |= WAKE_UCAST;
662 if (options & BWF)
Francois Romieu5b0384f2006-08-16 16:00:01 +0200663 wol->wolopts |= WAKE_BCAST;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100664 if (options & MWF)
Francois Romieu5b0384f2006-08-16 16:00:01 +0200665 wol->wolopts |= WAKE_MCAST;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100666
667out_unlock:
668 spin_unlock_irq(&tp->lock);
669}
670
671static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
672{
673 struct rtl8169_private *tp = netdev_priv(dev);
674 void __iomem *ioaddr = tp->mmio_addr;
675 int i;
676 static struct {
677 u32 opt;
678 u16 reg;
679 u8 mask;
680 } cfg[] = {
681 { WAKE_ANY, Config1, PMEnable },
682 { WAKE_PHY, Config3, LinkUp },
683 { WAKE_MAGIC, Config3, MagicPacket },
684 { WAKE_UCAST, Config5, UWF },
685 { WAKE_BCAST, Config5, BWF },
686 { WAKE_MCAST, Config5, MWF },
687 { WAKE_ANY, Config5, LanWake }
688 };
689
690 spin_lock_irq(&tp->lock);
691
692 RTL_W8(Cfg9346, Cfg9346_Unlock);
693
694 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
695 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
696 if (wol->wolopts & cfg[i].opt)
697 options |= cfg[i].mask;
698 RTL_W8(cfg[i].reg, options);
699 }
700
701 RTL_W8(Cfg9346, Cfg9346_Lock);
702
703 tp->wol_enabled = (wol->wolopts) ? 1 : 0;
704
705 spin_unlock_irq(&tp->lock);
706
707 return 0;
708}
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710static void rtl8169_get_drvinfo(struct net_device *dev,
711 struct ethtool_drvinfo *info)
712{
713 struct rtl8169_private *tp = netdev_priv(dev);
714
715 strcpy(info->driver, MODULENAME);
716 strcpy(info->version, RTL8169_VERSION);
717 strcpy(info->bus_info, pci_name(tp->pci_dev));
718}
719
720static int rtl8169_get_regs_len(struct net_device *dev)
721{
722 return R8169_REGS_SIZE;
723}
724
725static int rtl8169_set_speed_tbi(struct net_device *dev,
726 u8 autoneg, u16 speed, u8 duplex)
727{
728 struct rtl8169_private *tp = netdev_priv(dev);
729 void __iomem *ioaddr = tp->mmio_addr;
730 int ret = 0;
731 u32 reg;
732
733 reg = RTL_R32(TBICSR);
734 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
735 (duplex == DUPLEX_FULL)) {
736 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
737 } else if (autoneg == AUTONEG_ENABLE)
738 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
739 else {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200740 if (netif_msg_link(tp)) {
741 printk(KERN_WARNING "%s: "
742 "incorrect speed setting refused in TBI mode\n",
743 dev->name);
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 ret = -EOPNOTSUPP;
746 }
747
748 return ret;
749}
750
751static int rtl8169_set_speed_xmii(struct net_device *dev,
752 u8 autoneg, u16 speed, u8 duplex)
753{
754 struct rtl8169_private *tp = netdev_priv(dev);
755 void __iomem *ioaddr = tp->mmio_addr;
756 int auto_nego, giga_ctrl;
757
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200758 auto_nego = mdio_read(ioaddr, MII_ADVERTISE);
759 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
760 ADVERTISE_100HALF | ADVERTISE_100FULL);
761 giga_ctrl = mdio_read(ioaddr, MII_CTRL1000);
762 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 if (autoneg == AUTONEG_ENABLE) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200765 auto_nego |= (ADVERTISE_10HALF | ADVERTISE_10FULL |
766 ADVERTISE_100HALF | ADVERTISE_100FULL);
767 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 } else {
769 if (speed == SPEED_10)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200770 auto_nego |= ADVERTISE_10HALF | ADVERTISE_10FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 else if (speed == SPEED_100)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200772 auto_nego |= ADVERTISE_100HALF | ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 else if (speed == SPEED_1000)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200774 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 if (duplex == DUPLEX_HALF)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200777 auto_nego &= ~(ADVERTISE_10FULL | ADVERTISE_100FULL);
Andy Gospodarek726ecdc2006-01-31 19:16:52 +0100778
779 if (duplex == DUPLEX_FULL)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200780 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_100HALF);
Francois Romieubcf0bf92006-07-26 23:14:13 +0200781
782 /* This tweak comes straight from Realtek's driver. */
783 if ((speed == SPEED_100) && (duplex == DUPLEX_HALF) &&
784 (tp->mac_version == RTL_GIGA_MAC_VER_13)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200785 auto_nego = ADVERTISE_100HALF | ADVERTISE_CSMA;
Francois Romieubcf0bf92006-07-26 23:14:13 +0200786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788
Francois Romieubcf0bf92006-07-26 23:14:13 +0200789 /* The 8100e/8101e do Fast Ethernet only. */
790 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
791 (tp->mac_version == RTL_GIGA_MAC_VER_14) ||
792 (tp->mac_version == RTL_GIGA_MAC_VER_15)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200793 if ((giga_ctrl & (ADVERTISE_1000FULL | ADVERTISE_1000HALF)) &&
Francois Romieubcf0bf92006-07-26 23:14:13 +0200794 netif_msg_link(tp)) {
795 printk(KERN_INFO "%s: PHY does not support 1000Mbps.\n",
796 dev->name);
797 }
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200798 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
Francois Romieu623a1592006-05-14 12:42:14 +0200801 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 tp->phy_auto_nego_reg = auto_nego;
804 tp->phy_1000_ctrl_reg = giga_ctrl;
805
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200806 mdio_write(ioaddr, MII_ADVERTISE, auto_nego);
807 mdio_write(ioaddr, MII_CTRL1000, giga_ctrl);
808 mdio_write(ioaddr, MII_BMCR, BMCR_ANENABLE | BMCR_ANRESTART);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return 0;
810}
811
812static int rtl8169_set_speed(struct net_device *dev,
813 u8 autoneg, u16 speed, u8 duplex)
814{
815 struct rtl8169_private *tp = netdev_priv(dev);
816 int ret;
817
818 ret = tp->set_speed(dev, autoneg, speed, duplex);
819
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200820 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
822
823 return ret;
824}
825
826static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
827{
828 struct rtl8169_private *tp = netdev_priv(dev);
829 unsigned long flags;
830 int ret;
831
832 spin_lock_irqsave(&tp->lock, flags);
833 ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
834 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +0200835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return ret;
837}
838
839static u32 rtl8169_get_rx_csum(struct net_device *dev)
840{
841 struct rtl8169_private *tp = netdev_priv(dev);
842
843 return tp->cp_cmd & RxChkSum;
844}
845
846static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
847{
848 struct rtl8169_private *tp = netdev_priv(dev);
849 void __iomem *ioaddr = tp->mmio_addr;
850 unsigned long flags;
851
852 spin_lock_irqsave(&tp->lock, flags);
853
854 if (data)
855 tp->cp_cmd |= RxChkSum;
856 else
857 tp->cp_cmd &= ~RxChkSum;
858
859 RTL_W16(CPlusCmd, tp->cp_cmd);
860 RTL_R16(CPlusCmd);
861
862 spin_unlock_irqrestore(&tp->lock, flags);
863
864 return 0;
865}
866
867#ifdef CONFIG_R8169_VLAN
868
869static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
870 struct sk_buff *skb)
871{
872 return (tp->vlgrp && vlan_tx_tag_present(skb)) ?
873 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
874}
875
876static void rtl8169_vlan_rx_register(struct net_device *dev,
877 struct vlan_group *grp)
878{
879 struct rtl8169_private *tp = netdev_priv(dev);
880 void __iomem *ioaddr = tp->mmio_addr;
881 unsigned long flags;
882
883 spin_lock_irqsave(&tp->lock, flags);
884 tp->vlgrp = grp;
885 if (tp->vlgrp)
886 tp->cp_cmd |= RxVlan;
887 else
888 tp->cp_cmd &= ~RxVlan;
889 RTL_W16(CPlusCmd, tp->cp_cmd);
890 RTL_R16(CPlusCmd);
891 spin_unlock_irqrestore(&tp->lock, flags);
892}
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
895 struct sk_buff *skb)
896{
897 u32 opts2 = le32_to_cpu(desc->opts2);
898 int ret;
899
900 if (tp->vlgrp && (opts2 & RxVlanTag)) {
901 rtl8169_rx_hwaccel_skb(skb, tp->vlgrp,
902 swab16(opts2 & 0xffff));
903 ret = 0;
904 } else
905 ret = -1;
906 desc->opts2 = 0;
907 return ret;
908}
909
910#else /* !CONFIG_R8169_VLAN */
911
912static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
913 struct sk_buff *skb)
914{
915 return 0;
916}
917
918static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
919 struct sk_buff *skb)
920{
921 return -1;
922}
923
924#endif
925
926static void rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
927{
928 struct rtl8169_private *tp = netdev_priv(dev);
929 void __iomem *ioaddr = tp->mmio_addr;
930 u32 status;
931
932 cmd->supported =
933 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
934 cmd->port = PORT_FIBRE;
935 cmd->transceiver = XCVR_INTERNAL;
936
937 status = RTL_R32(TBICSR);
938 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
939 cmd->autoneg = !!(status & TBINwEnable);
940
941 cmd->speed = SPEED_1000;
942 cmd->duplex = DUPLEX_FULL; /* Always set */
943}
944
945static void rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
946{
947 struct rtl8169_private *tp = netdev_priv(dev);
948 void __iomem *ioaddr = tp->mmio_addr;
949 u8 status;
950
951 cmd->supported = SUPPORTED_10baseT_Half |
952 SUPPORTED_10baseT_Full |
953 SUPPORTED_100baseT_Half |
954 SUPPORTED_100baseT_Full |
955 SUPPORTED_1000baseT_Full |
956 SUPPORTED_Autoneg |
Francois Romieu5b0384f2006-08-16 16:00:01 +0200957 SUPPORTED_TP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 cmd->autoneg = 1;
960 cmd->advertising = ADVERTISED_TP | ADVERTISED_Autoneg;
961
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200962 if (tp->phy_auto_nego_reg & ADVERTISE_10HALF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 cmd->advertising |= ADVERTISED_10baseT_Half;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200964 if (tp->phy_auto_nego_reg & ADVERTISE_10FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 cmd->advertising |= ADVERTISED_10baseT_Full;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200966 if (tp->phy_auto_nego_reg & ADVERTISE_100HALF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 cmd->advertising |= ADVERTISED_100baseT_Half;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200968 if (tp->phy_auto_nego_reg & ADVERTISE_100FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 cmd->advertising |= ADVERTISED_100baseT_Full;
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200970 if (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 cmd->advertising |= ADVERTISED_1000baseT_Full;
972
973 status = RTL_R8(PHYstatus);
974
975 if (status & _1000bpsF)
976 cmd->speed = SPEED_1000;
977 else if (status & _100bps)
978 cmd->speed = SPEED_100;
979 else if (status & _10bps)
980 cmd->speed = SPEED_10;
981
Francois Romieu623a1592006-05-14 12:42:14 +0200982 if (status & TxFlowCtrl)
983 cmd->advertising |= ADVERTISED_Asym_Pause;
984 if (status & RxFlowCtrl)
985 cmd->advertising |= ADVERTISED_Pause;
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 cmd->duplex = ((status & _1000bpsF) || (status & FullDup)) ?
988 DUPLEX_FULL : DUPLEX_HALF;
989}
990
991static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
992{
993 struct rtl8169_private *tp = netdev_priv(dev);
994 unsigned long flags;
995
996 spin_lock_irqsave(&tp->lock, flags);
997
998 tp->get_settings(dev, cmd);
999
1000 spin_unlock_irqrestore(&tp->lock, flags);
1001 return 0;
1002}
1003
1004static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1005 void *p)
1006{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001007 struct rtl8169_private *tp = netdev_priv(dev);
1008 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Francois Romieu5b0384f2006-08-16 16:00:01 +02001010 if (regs->len > R8169_REGS_SIZE)
1011 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Francois Romieu5b0384f2006-08-16 16:00:01 +02001013 spin_lock_irqsave(&tp->lock, flags);
1014 memcpy_fromio(p, tp->mmio_addr, regs->len);
1015 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001018static u32 rtl8169_get_msglevel(struct net_device *dev)
1019{
1020 struct rtl8169_private *tp = netdev_priv(dev);
1021
1022 return tp->msg_enable;
1023}
1024
1025static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1026{
1027 struct rtl8169_private *tp = netdev_priv(dev);
1028
1029 tp->msg_enable = value;
1030}
1031
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001032static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1033 "tx_packets",
1034 "rx_packets",
1035 "tx_errors",
1036 "rx_errors",
1037 "rx_missed",
1038 "align_errors",
1039 "tx_single_collisions",
1040 "tx_multi_collisions",
1041 "unicast",
1042 "broadcast",
1043 "multicast",
1044 "tx_aborted",
1045 "tx_underrun",
1046};
1047
1048struct rtl8169_counters {
1049 u64 tx_packets;
1050 u64 rx_packets;
1051 u64 tx_errors;
1052 u32 rx_errors;
1053 u16 rx_missed;
1054 u16 align_errors;
1055 u32 tx_one_collision;
1056 u32 tx_multi_collision;
1057 u64 rx_unicast;
1058 u64 rx_broadcast;
1059 u32 rx_multicast;
1060 u16 tx_aborted;
1061 u16 tx_underun;
1062};
1063
1064static int rtl8169_get_stats_count(struct net_device *dev)
1065{
1066 return ARRAY_SIZE(rtl8169_gstrings);
1067}
1068
1069static void rtl8169_get_ethtool_stats(struct net_device *dev,
1070 struct ethtool_stats *stats, u64 *data)
1071{
1072 struct rtl8169_private *tp = netdev_priv(dev);
1073 void __iomem *ioaddr = tp->mmio_addr;
1074 struct rtl8169_counters *counters;
1075 dma_addr_t paddr;
1076 u32 cmd;
1077
1078 ASSERT_RTNL();
1079
1080 counters = pci_alloc_consistent(tp->pci_dev, sizeof(*counters), &paddr);
1081 if (!counters)
1082 return;
1083
1084 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
1085 cmd = (u64)paddr & DMA_32BIT_MASK;
1086 RTL_W32(CounterAddrLow, cmd);
1087 RTL_W32(CounterAddrLow, cmd | CounterDump);
1088
1089 while (RTL_R32(CounterAddrLow) & CounterDump) {
1090 if (msleep_interruptible(1))
1091 break;
1092 }
1093
1094 RTL_W32(CounterAddrLow, 0);
1095 RTL_W32(CounterAddrHigh, 0);
1096
Francois Romieu5b0384f2006-08-16 16:00:01 +02001097 data[0] = le64_to_cpu(counters->tx_packets);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001098 data[1] = le64_to_cpu(counters->rx_packets);
1099 data[2] = le64_to_cpu(counters->tx_errors);
1100 data[3] = le32_to_cpu(counters->rx_errors);
1101 data[4] = le16_to_cpu(counters->rx_missed);
1102 data[5] = le16_to_cpu(counters->align_errors);
1103 data[6] = le32_to_cpu(counters->tx_one_collision);
1104 data[7] = le32_to_cpu(counters->tx_multi_collision);
1105 data[8] = le64_to_cpu(counters->rx_unicast);
1106 data[9] = le64_to_cpu(counters->rx_broadcast);
1107 data[10] = le32_to_cpu(counters->rx_multicast);
1108 data[11] = le16_to_cpu(counters->tx_aborted);
1109 data[12] = le16_to_cpu(counters->tx_underun);
1110
1111 pci_free_consistent(tp->pci_dev, sizeof(*counters), counters, paddr);
1112}
1113
1114static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1115{
1116 switch(stringset) {
1117 case ETH_SS_STATS:
1118 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1119 break;
1120 }
1121}
1122
1123
Jeff Garzik7282d492006-09-13 14:30:00 -04001124static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 .get_drvinfo = rtl8169_get_drvinfo,
1126 .get_regs_len = rtl8169_get_regs_len,
1127 .get_link = ethtool_op_get_link,
1128 .get_settings = rtl8169_get_settings,
1129 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001130 .get_msglevel = rtl8169_get_msglevel,
1131 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 .get_rx_csum = rtl8169_get_rx_csum,
1133 .set_rx_csum = rtl8169_set_rx_csum,
1134 .get_tx_csum = ethtool_op_get_tx_csum,
1135 .set_tx_csum = ethtool_op_set_tx_csum,
1136 .get_sg = ethtool_op_get_sg,
1137 .set_sg = ethtool_op_set_sg,
1138 .get_tso = ethtool_op_get_tso,
1139 .set_tso = ethtool_op_set_tso,
1140 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001141 .get_wol = rtl8169_get_wol,
1142 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001143 .get_strings = rtl8169_get_strings,
1144 .get_stats_count = rtl8169_get_stats_count,
1145 .get_ethtool_stats = rtl8169_get_ethtool_stats,
John W. Linville6d6525b2005-09-12 10:48:57 -04001146 .get_perm_addr = ethtool_op_get_perm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147};
1148
1149static void rtl8169_write_gmii_reg_bit(void __iomem *ioaddr, int reg, int bitnum,
1150 int bitval)
1151{
1152 int val;
1153
1154 val = mdio_read(ioaddr, reg);
1155 val = (bitval == 1) ?
1156 val | (bitval << bitnum) : val & ~(0x0001 << bitnum);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001157 mdio_write(ioaddr, reg, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
1160static void rtl8169_get_mac_version(struct rtl8169_private *tp, void __iomem *ioaddr)
1161{
Francois Romieu0e485152007-02-20 00:00:26 +01001162 /*
1163 * The driver currently handles the 8168Bf and the 8168Be identically
1164 * but they can be identified more specifically through the test below
1165 * if needed:
1166 *
1167 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
1168 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 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 Romieu0e485152007-02-20 00:00:26 +01001483static const struct rtl_cfg_info {
1484 void (*hw_start)(struct net_device *);
1485 unsigned int region;
1486 unsigned int align;
1487 u16 intr_event;
1488 u16 napi_event;
1489} rtl_cfg_infos [] = {
1490 [RTL_CFG_0] = {
1491 .hw_start = rtl_hw_start_8169,
1492 .region = 1,
1493 .align = NET_IP_ALIGN,
1494 .intr_event = SYSErr | LinkChg | RxOverflow |
1495 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
1496 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow
1497 },
1498 [RTL_CFG_1] = {
1499 .hw_start = rtl_hw_start_8168,
1500 .region = 2,
1501 .align = 8,
1502 .intr_event = SYSErr | LinkChg | RxOverflow |
1503 TxErr | TxOK | RxOK | RxErr,
1504 .napi_event = TxErr | TxOK | RxOK | RxOverflow
1505 },
1506 [RTL_CFG_2] = {
1507 .hw_start = rtl_hw_start_8101,
1508 .region = 2,
1509 .align = 8,
1510 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
1511 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
1512 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow
1513 }
1514};
1515
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001516static int __devinit
1517rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
1518{
Francois Romieu0e485152007-02-20 00:00:26 +01001519 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
1520 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 struct rtl8169_private *tp;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001522 struct net_device *dev;
1523 void __iomem *ioaddr;
Francois Romieu315917d2006-11-29 22:21:33 +01001524 unsigned int pm_cap;
1525 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001527 if (netif_msg_drv(&debug)) {
1528 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
1529 MODULENAME, RTL8169_VERSION);
1530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001533 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001534 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001535 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001536 rc = -ENOMEM;
1537 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
1539
1540 SET_MODULE_OWNER(dev);
1541 SET_NETDEV_DEV(dev, &pdev->dev);
1542 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00001543 tp->dev = dev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001544 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 /* enable device (incl. PCI PM wakeup and hotplug setup) */
1547 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001548 if (rc < 0) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001549 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001550 dev_err(&pdev->dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001551 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553
1554 rc = pci_set_mwi(pdev);
1555 if (rc < 0)
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001556 goto err_out_disable_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 /* save power state before pci_enable_device overwrites it */
1559 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
1560 if (pm_cap) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001561 u16 pwr_command, acpi_idle_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 pci_read_config_word(pdev, pm_cap + PCI_PM_CTRL, &pwr_command);
1564 acpi_idle_state = pwr_command & PCI_PM_CTRL_STATE_MASK;
1565 } else {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001566 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001567 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001568 "PowerManagement capability not found.\n");
1569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571
1572 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001573 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001574 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001575 dev_err(&pdev->dev,
Francois Romieubcf0bf92006-07-26 23:14:13 +02001576 "region #%d not an MMIO resource, aborting\n",
1577 region);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 rc = -ENODEV;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001580 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001584 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001585 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001586 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001587 "Invalid PCI region size(s), aborting\n");
1588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 rc = -ENODEV;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001590 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
1592
1593 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001594 if (rc < 0) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001595 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001596 dev_err(&pdev->dev, "could not request regions.\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001597 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
1599
1600 tp->cp_cmd = PCIMulRW | RxChkSum;
1601
1602 if ((sizeof(dma_addr_t) > 4) &&
1603 !pci_set_dma_mask(pdev, DMA_64BIT_MASK) && use_dac) {
1604 tp->cp_cmd |= PCIDAC;
1605 dev->features |= NETIF_F_HIGHDMA;
1606 } else {
1607 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1608 if (rc < 0) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001609 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001610 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001611 "DMA configuration failed.\n");
1612 }
1613 goto err_out_free_res_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
1615 }
1616
1617 pci_set_master(pdev);
1618
1619 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001620 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001621 if (!ioaddr) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001622 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001623 dev_err(&pdev->dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 rc = -EIO;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001625 goto err_out_free_res_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
1627
1628 /* Unneeded ? Don't mess with Mrs. Murphy. */
1629 rtl8169_irq_mask_and_ack(ioaddr);
1630
1631 /* Soft reset the chip. */
1632 RTL_W8(ChipCmd, CmdReset);
1633
1634 /* Check that the chip has finished the reset. */
Francois Romieub518fa82006-08-16 15:23:13 +02001635 for (i = 100; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1637 break;
Francois Romieub518fa82006-08-16 15:23:13 +02001638 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 }
1640
1641 /* Identify chip attached to board */
1642 rtl8169_get_mac_version(tp, ioaddr);
1643 rtl8169_get_phy_version(tp, ioaddr);
1644
1645 rtl8169_print_mac_version(tp);
1646 rtl8169_print_phy_version(tp);
1647
1648 for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--) {
1649 if (tp->mac_version == rtl_chip_info[i].mac_version)
1650 break;
1651 }
1652 if (i < 0) {
1653 /* Unknown chip: assume array element #0, original RTL-8169 */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001654 if (netif_msg_probe(tp)) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001655 dev_printk(KERN_DEBUG, &pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001656 "unknown chip version, assuming %s\n",
1657 rtl_chip_info[0].name);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 i++;
1660 }
1661 tp->chipset = i;
1662
Francois Romieu5d06a992006-02-23 00:47:58 +01001663 RTL_W8(Cfg9346, Cfg9346_Unlock);
1664 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
1665 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
1666 RTL_W8(Cfg9346, Cfg9346_Lock);
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 if (RTL_R8(PHYstatus) & TBI_Enable) {
1669 tp->set_speed = rtl8169_set_speed_tbi;
1670 tp->get_settings = rtl8169_gset_tbi;
1671 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
1672 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
1673 tp->link_ok = rtl8169_tbi_link_ok;
1674
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001675 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 } else {
1677 tp->set_speed = rtl8169_set_speed_xmii;
1678 tp->get_settings = rtl8169_gset_xmii;
1679 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
1680 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
1681 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu5f787a12006-08-17 13:02:36 +02001682
1683 dev->do_ioctl = rtl8169_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 }
1685
1686 /* Get MAC address. FIXME: read EEPROM */
1687 for (i = 0; i < MAC_ADDR_LEN; i++)
1688 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04001689 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 dev->open = rtl8169_open;
1692 dev->hard_start_xmit = rtl8169_start_xmit;
1693 dev->get_stats = rtl8169_get_stats;
1694 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
1695 dev->stop = rtl8169_close;
1696 dev->tx_timeout = rtl8169_tx_timeout;
Francois Romieu07ce4062007-02-23 23:36:39 +01001697 dev->set_multicast_list = rtl_set_rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
1699 dev->irq = pdev->irq;
1700 dev->base_addr = (unsigned long) ioaddr;
1701 dev->change_mtu = rtl8169_change_mtu;
1702
1703#ifdef CONFIG_R8169_NAPI
1704 dev->poll = rtl8169_poll;
1705 dev->weight = R8169_NAPI_WEIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706#endif
1707
1708#ifdef CONFIG_R8169_VLAN
1709 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
1710 dev->vlan_rx_register = rtl8169_vlan_rx_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711#endif
1712
1713#ifdef CONFIG_NET_POLL_CONTROLLER
1714 dev->poll_controller = rtl8169_netpoll;
1715#endif
1716
1717 tp->intr_mask = 0xffff;
1718 tp->pci_dev = pdev;
1719 tp->mmio_addr = ioaddr;
Francois Romieu0e485152007-02-20 00:00:26 +01001720 tp->align = cfg->align;
1721 tp->hw_start = cfg->hw_start;
1722 tp->intr_event = cfg->intr_event;
1723 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Francois Romieu2efa53f2007-03-09 00:00:05 +01001725 init_timer(&tp->timer);
1726 tp->timer.data = (unsigned long) dev;
1727 tp->timer.function = rtl8169_phy_timer;
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 spin_lock_init(&tp->lock);
1730
1731 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001732 if (rc < 0)
1733 goto err_out_unmap_5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735 pci_set_drvdata(pdev, dev);
1736
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001737 if (netif_msg_probe(tp)) {
1738 printk(KERN_INFO "%s: %s at 0x%lx, "
1739 "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x, "
1740 "IRQ %d\n",
1741 dev->name,
Francois Romieubcf0bf92006-07-26 23:14:13 +02001742 rtl_chip_info[tp->chipset].name,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001743 dev->base_addr,
1744 dev->dev_addr[0], dev->dev_addr[1],
1745 dev->dev_addr[2], dev->dev_addr[3],
1746 dev->dev_addr[4], dev->dev_addr[5], dev->irq);
1747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001749 rtl8169_init_phy(dev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001751out:
1752 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001754err_out_unmap_5:
1755 iounmap(ioaddr);
1756err_out_free_res_4:
1757 pci_release_regions(pdev);
1758err_out_mwi_3:
1759 pci_clear_mwi(pdev);
1760err_out_disable_2:
1761 pci_disable_device(pdev);
1762err_out_free_dev_1:
1763 free_netdev(dev);
1764 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765}
1766
1767static void __devexit
1768rtl8169_remove_one(struct pci_dev *pdev)
1769{
1770 struct net_device *dev = pci_get_drvdata(pdev);
1771 struct rtl8169_private *tp = netdev_priv(dev);
1772
1773 assert(dev != NULL);
1774 assert(tp != NULL);
1775
Francois Romieueb2a0212007-02-15 23:37:21 +01001776 flush_scheduled_work();
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 unregister_netdev(dev);
1779 rtl8169_release_board(pdev, dev, tp->mmio_addr);
1780 pci_set_drvdata(pdev, NULL);
1781}
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783static void rtl8169_set_rxbufsize(struct rtl8169_private *tp,
1784 struct net_device *dev)
1785{
1786 unsigned int mtu = dev->mtu;
1787
1788 tp->rx_buf_sz = (mtu > RX_BUF_SIZE) ? mtu + ETH_HLEN + 8 : RX_BUF_SIZE;
1789}
1790
1791static int rtl8169_open(struct net_device *dev)
1792{
1793 struct rtl8169_private *tp = netdev_priv(dev);
1794 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02001795 int retval = -ENOMEM;
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 rtl8169_set_rxbufsize(tp, dev);
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 /*
1801 * Rx and Tx desscriptors needs 256 bytes alignment.
1802 * pci_alloc_consistent provides more.
1803 */
1804 tp->TxDescArray = pci_alloc_consistent(pdev, R8169_TX_RING_BYTES,
1805 &tp->TxPhyAddr);
1806 if (!tp->TxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02001807 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 tp->RxDescArray = pci_alloc_consistent(pdev, R8169_RX_RING_BYTES,
1810 &tp->RxPhyAddr);
1811 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02001812 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 retval = rtl8169_init_ring(dev);
1815 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02001816 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
David Howellsc4028952006-11-22 14:57:56 +00001818 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Francois Romieu99f252b2007-04-02 22:59:59 +02001820 smp_mb();
1821
1822 retval = request_irq(dev->irq, rtl8169_interrupt, IRQF_SHARED,
1823 dev->name, dev);
1824 if (retval < 0)
1825 goto err_release_ring_2;
1826
Francois Romieu07ce4062007-02-23 23:36:39 +01001827 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 rtl8169_request_timer(dev);
1830
1831 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
1832out:
1833 return retval;
1834
Francois Romieu99f252b2007-04-02 22:59:59 +02001835err_release_ring_2:
1836 rtl8169_rx_clear(tp);
1837err_free_rx_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
1839 tp->RxPhyAddr);
Francois Romieu99f252b2007-04-02 22:59:59 +02001840err_free_tx_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
1842 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 goto out;
1844}
1845
1846static void rtl8169_hw_reset(void __iomem *ioaddr)
1847{
1848 /* Disable interrupts */
1849 rtl8169_irq_mask_and_ack(ioaddr);
1850
1851 /* Reset the chipset */
1852 RTL_W8(ChipCmd, CmdReset);
1853
1854 /* PCI commit */
1855 RTL_R8(ChipCmd);
1856}
1857
Francois Romieu7f796d82007-06-11 23:04:41 +02001858static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01001859{
1860 void __iomem *ioaddr = tp->mmio_addr;
1861 u32 cfg = rtl8169_rx_config;
1862
1863 cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
1864 RTL_W32(RxConfig, cfg);
1865
1866 /* Set DMA burst size and Interframe Gap Time */
1867 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
1868 (InterFrameGap << TxInterFrameGapShift));
1869}
1870
Francois Romieu07ce4062007-02-23 23:36:39 +01001871static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
1873 struct rtl8169_private *tp = netdev_priv(dev);
1874 void __iomem *ioaddr = tp->mmio_addr;
1875 u32 i;
1876
1877 /* Soft reset the chip. */
1878 RTL_W8(ChipCmd, CmdReset);
1879
1880 /* Check that the chip has finished the reset. */
Francois Romieub518fa82006-08-16 15:23:13 +02001881 for (i = 100; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1883 break;
Francois Romieub518fa82006-08-16 15:23:13 +02001884 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 }
1886
Francois Romieu07ce4062007-02-23 23:36:39 +01001887 tp->hw_start(dev);
1888
Francois Romieu07ce4062007-02-23 23:36:39 +01001889 netif_start_queue(dev);
1890}
1891
1892
Francois Romieu7f796d82007-06-11 23:04:41 +02001893static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
1894 void __iomem *ioaddr)
1895{
1896 /*
1897 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
1898 * register to be written before TxDescAddrLow to work.
1899 * Switching from MMIO to I/O access fixes the issue as well.
1900 */
1901 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
1902 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_32BIT_MASK);
1903 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
1904 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_32BIT_MASK);
1905}
1906
1907static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
1908{
1909 u16 cmd;
1910
1911 cmd = RTL_R16(CPlusCmd);
1912 RTL_W16(CPlusCmd, cmd);
1913 return cmd;
1914}
1915
1916static void rtl_set_rx_max_size(void __iomem *ioaddr)
1917{
1918 /* Low hurts. Let's disable the filtering. */
1919 RTL_W16(RxMaxSize, 16383);
1920}
1921
Francois Romieu6dccd162007-02-13 23:38:05 +01001922static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
1923{
1924 struct {
1925 u32 mac_version;
1926 u32 clk;
1927 u32 val;
1928 } cfg2_info [] = {
1929 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
1930 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
1931 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
1932 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
1933 }, *p = cfg2_info;
1934 unsigned int i;
1935 u32 clk;
1936
1937 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
1938 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++) {
1939 if ((p->mac_version == mac_version) && (p->clk == clk)) {
1940 RTL_W32(0x7c, p->val);
1941 break;
1942 }
1943 }
1944}
1945
Francois Romieu07ce4062007-02-23 23:36:39 +01001946static void rtl_hw_start_8169(struct net_device *dev)
1947{
1948 struct rtl8169_private *tp = netdev_priv(dev);
1949 void __iomem *ioaddr = tp->mmio_addr;
1950 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01001951
Francois Romieu9cb427b2006-11-02 00:10:16 +01001952 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
1953 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
1954 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
1955 }
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieu9cb427b2006-11-02 00:10:16 +01001958 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
1959 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
1960 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
1961 (tp->mac_version == RTL_GIGA_MAC_VER_04))
1962 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
1963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 RTL_W8(EarlyTxThres, EarlyTxThld);
1965
Francois Romieu7f796d82007-06-11 23:04:41 +02001966 rtl_set_rx_max_size(ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Francois Romieu6dccd162007-02-13 23:38:05 +01001968 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Francois Romieu7f796d82007-06-11 23:04:41 +02001970 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001971
1972 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
1973 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 dprintk(KERN_INFO PFX "Set MAC Reg C+CR Offset 0xE0. "
1975 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02001976 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
1978
Francois Romieubcf0bf92006-07-26 23:14:13 +02001979 RTL_W16(CPlusCmd, tp->cp_cmd);
1980
Francois Romieu6dccd162007-02-13 23:38:05 +01001981 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 /*
1984 * Undocumented corner. Supposedly:
1985 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
1986 */
1987 RTL_W16(IntrMitigate, 0x0000);
1988
Francois Romieu7f796d82007-06-11 23:04:41 +02001989 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01001990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02001992
1993 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
1994 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996 RTL_W32(RxMissed, 0);
1997
Francois Romieu07ce4062007-02-23 23:36:39 +01001998 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 /* no early-rx interrupts */
2001 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002002
2003 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01002004 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu6dccd162007-02-13 23:38:05 +01002005
2006 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
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_8168(struct net_device *dev)
2010{
Francois Romieu2dd99532007-06-11 23:22:52 +02002011 struct rtl8169_private *tp = netdev_priv(dev);
2012 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002013 struct pci_dev *pdev = tp->pci_dev;
2014 u8 ctl;
Francois Romieu2dd99532007-06-11 23:22:52 +02002015
2016 RTL_W8(Cfg9346, Cfg9346_Unlock);
2017
2018 RTL_W8(EarlyTxThres, EarlyTxThld);
2019
2020 rtl_set_rx_max_size(ioaddr);
2021
Francois Romieu0e485152007-02-20 00:00:26 +01002022 rtl_set_rx_tx_config_registers(tp);
2023
2024 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02002025
2026 RTL_W16(CPlusCmd, tp->cp_cmd);
2027
Francois Romieu0e485152007-02-20 00:00:26 +01002028 /* Tx performance tweak. */
2029 pci_read_config_byte(pdev, 0x69, &ctl);
2030 ctl = (ctl & ~0x70) | 0x50;
2031 pci_write_config_byte(pdev, 0x69, ctl);
2032
2033 RTL_W16(IntrMitigate, 0x5151);
2034
2035 /* Work around for RxFIFO overflow. */
2036 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
2037 tp->intr_event |= RxFIFOOver | PCSTimeout;
2038 tp->intr_event &= ~RxOverflow;
2039 }
Francois Romieu2dd99532007-06-11 23:22:52 +02002040
2041 rtl_set_rx_tx_desc_registers(tp, ioaddr);
2042
Francois Romieu2dd99532007-06-11 23:22:52 +02002043 RTL_W8(Cfg9346, Cfg9346_Lock);
2044
2045 RTL_R8(IntrMask);
2046
2047 RTL_W32(RxMissed, 0);
2048
2049 rtl_set_rx_mode(dev);
2050
Francois Romieu0e485152007-02-20 00:00:26 +01002051 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2052
Francois Romieu2dd99532007-06-11 23:22:52 +02002053 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002054
Francois Romieu0e485152007-02-20 00:00:26 +01002055 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01002056}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Francois Romieu07ce4062007-02-23 23:36:39 +01002058static void rtl_hw_start_8101(struct net_device *dev)
2059{
Francois Romieucdf1a602007-06-11 23:29:50 +02002060 struct rtl8169_private *tp = netdev_priv(dev);
2061 void __iomem *ioaddr = tp->mmio_addr;
2062 struct pci_dev *pdev = tp->pci_dev;
2063
2064 if (tp->mac_version == RTL_GIGA_MAC_VER_13) {
2065 pci_write_config_word(pdev, 0x68, 0x00);
2066 pci_write_config_word(pdev, 0x69, 0x08);
2067 }
2068
2069 RTL_W8(Cfg9346, Cfg9346_Unlock);
2070
2071 RTL_W8(EarlyTxThres, EarlyTxThld);
2072
2073 rtl_set_rx_max_size(ioaddr);
2074
2075 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
2076
2077 RTL_W16(CPlusCmd, tp->cp_cmd);
2078
2079 RTL_W16(IntrMitigate, 0x0000);
2080
2081 rtl_set_rx_tx_desc_registers(tp, ioaddr);
2082
2083 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2084 rtl_set_rx_tx_config_registers(tp);
2085
2086 RTL_W8(Cfg9346, Cfg9346_Lock);
2087
2088 RTL_R8(IntrMask);
2089
2090 RTL_W32(RxMissed, 0);
2091
2092 rtl_set_rx_mode(dev);
2093
Francois Romieu0e485152007-02-20 00:00:26 +01002094 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2095
Francois Romieucdf1a602007-06-11 23:29:50 +02002096 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002097
Francois Romieu0e485152007-02-20 00:00:26 +01002098 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100
2101static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
2102{
2103 struct rtl8169_private *tp = netdev_priv(dev);
2104 int ret = 0;
2105
2106 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
2107 return -EINVAL;
2108
2109 dev->mtu = new_mtu;
2110
2111 if (!netif_running(dev))
2112 goto out;
2113
2114 rtl8169_down(dev);
2115
2116 rtl8169_set_rxbufsize(tp, dev);
2117
2118 ret = rtl8169_init_ring(dev);
2119 if (ret < 0)
2120 goto out;
2121
2122 netif_poll_enable(dev);
2123
Francois Romieu07ce4062007-02-23 23:36:39 +01002124 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 rtl8169_request_timer(dev);
2127
2128out:
2129 return ret;
2130}
2131
2132static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
2133{
2134 desc->addr = 0x0badbadbadbadbadull;
2135 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
2136}
2137
2138static void rtl8169_free_rx_skb(struct rtl8169_private *tp,
2139 struct sk_buff **sk_buff, struct RxDesc *desc)
2140{
2141 struct pci_dev *pdev = tp->pci_dev;
2142
2143 pci_unmap_single(pdev, le64_to_cpu(desc->addr), tp->rx_buf_sz,
2144 PCI_DMA_FROMDEVICE);
2145 dev_kfree_skb(*sk_buff);
2146 *sk_buff = NULL;
2147 rtl8169_make_unusable_by_asic(desc);
2148}
2149
2150static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
2151{
2152 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
2153
2154 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
2155}
2156
2157static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
2158 u32 rx_buf_sz)
2159{
2160 desc->addr = cpu_to_le64(mapping);
2161 wmb();
2162 rtl8169_mark_to_asic(desc, rx_buf_sz);
2163}
2164
Stephen Hemminger15d31752007-06-16 22:36:41 +02002165static struct sk_buff *rtl8169_alloc_rx_skb(struct pci_dev *pdev,
2166 struct net_device *dev,
2167 struct RxDesc *desc, int rx_buf_sz,
2168 unsigned int align)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169{
2170 struct sk_buff *skb;
2171 dma_addr_t mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Stephen Hemminger15d31752007-06-16 22:36:41 +02002173 skb = netdev_alloc_skb(dev, rx_buf_sz + align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 if (!skb)
2175 goto err_out;
2176
Al Virodcb92f82007-02-09 16:39:00 +00002177 skb_reserve(skb, (align - 1) & (unsigned long)skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
David S. Miller689be432005-06-28 15:25:31 -07002179 mapping = pci_map_single(pdev, skb->data, rx_buf_sz,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 PCI_DMA_FROMDEVICE);
2181
2182 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183out:
Stephen Hemminger15d31752007-06-16 22:36:41 +02002184 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 rtl8169_make_unusable_by_asic(desc);
2188 goto out;
2189}
2190
2191static void rtl8169_rx_clear(struct rtl8169_private *tp)
2192{
2193 int i;
2194
2195 for (i = 0; i < NUM_RX_DESC; i++) {
2196 if (tp->Rx_skbuff[i]) {
2197 rtl8169_free_rx_skb(tp, tp->Rx_skbuff + i,
2198 tp->RxDescArray + i);
2199 }
2200 }
2201}
2202
2203static u32 rtl8169_rx_fill(struct rtl8169_private *tp, struct net_device *dev,
2204 u32 start, u32 end)
2205{
2206 u32 cur;
Francois Romieu5b0384f2006-08-16 16:00:01 +02002207
Francois Romieu4ae47c22007-06-16 23:28:45 +02002208 for (cur = start; end - cur != 0; cur++) {
Stephen Hemminger15d31752007-06-16 22:36:41 +02002209 struct sk_buff *skb;
2210 unsigned int i = cur % NUM_RX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Francois Romieu4ae47c22007-06-16 23:28:45 +02002212 WARN_ON((s32)(end - cur) < 0);
2213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 if (tp->Rx_skbuff[i])
2215 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02002216
Stephen Hemminger15d31752007-06-16 22:36:41 +02002217 skb = rtl8169_alloc_rx_skb(tp->pci_dev, dev,
2218 tp->RxDescArray + i,
2219 tp->rx_buf_sz, tp->align);
2220 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 break;
Stephen Hemminger15d31752007-06-16 22:36:41 +02002222
2223 tp->Rx_skbuff[i] = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
2225 return cur - start;
2226}
2227
2228static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
2229{
2230 desc->opts1 |= cpu_to_le32(RingEnd);
2231}
2232
2233static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
2234{
2235 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
2236}
2237
2238static int rtl8169_init_ring(struct net_device *dev)
2239{
2240 struct rtl8169_private *tp = netdev_priv(dev);
2241
2242 rtl8169_init_ring_indexes(tp);
2243
2244 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
2245 memset(tp->Rx_skbuff, 0x0, NUM_RX_DESC * sizeof(struct sk_buff *));
2246
2247 if (rtl8169_rx_fill(tp, dev, 0, NUM_RX_DESC) != NUM_RX_DESC)
2248 goto err_out;
2249
2250 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
2251
2252 return 0;
2253
2254err_out:
2255 rtl8169_rx_clear(tp);
2256 return -ENOMEM;
2257}
2258
2259static void rtl8169_unmap_tx_skb(struct pci_dev *pdev, struct ring_info *tx_skb,
2260 struct TxDesc *desc)
2261{
2262 unsigned int len = tx_skb->len;
2263
2264 pci_unmap_single(pdev, le64_to_cpu(desc->addr), len, PCI_DMA_TODEVICE);
2265 desc->opts1 = 0x00;
2266 desc->opts2 = 0x00;
2267 desc->addr = 0x00;
2268 tx_skb->len = 0;
2269}
2270
2271static void rtl8169_tx_clear(struct rtl8169_private *tp)
2272{
2273 unsigned int i;
2274
2275 for (i = tp->dirty_tx; i < tp->dirty_tx + NUM_TX_DESC; i++) {
2276 unsigned int entry = i % NUM_TX_DESC;
2277 struct ring_info *tx_skb = tp->tx_skb + entry;
2278 unsigned int len = tx_skb->len;
2279
2280 if (len) {
2281 struct sk_buff *skb = tx_skb->skb;
2282
2283 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb,
2284 tp->TxDescArray + entry);
2285 if (skb) {
2286 dev_kfree_skb(skb);
2287 tx_skb->skb = NULL;
2288 }
2289 tp->stats.tx_dropped++;
2290 }
2291 }
2292 tp->cur_tx = tp->dirty_tx = 0;
2293}
2294
David Howellsc4028952006-11-22 14:57:56 +00002295static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296{
2297 struct rtl8169_private *tp = netdev_priv(dev);
2298
David Howellsc4028952006-11-22 14:57:56 +00002299 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 schedule_delayed_work(&tp->task, 4);
2301}
2302
2303static void rtl8169_wait_for_quiescence(struct net_device *dev)
2304{
2305 struct rtl8169_private *tp = netdev_priv(dev);
2306 void __iomem *ioaddr = tp->mmio_addr;
2307
2308 synchronize_irq(dev->irq);
2309
2310 /* Wait for any pending NAPI task to complete */
2311 netif_poll_disable(dev);
2312
2313 rtl8169_irq_mask_and_ack(ioaddr);
2314
2315 netif_poll_enable(dev);
2316}
2317
David Howellsc4028952006-11-22 14:57:56 +00002318static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319{
David Howellsc4028952006-11-22 14:57:56 +00002320 struct rtl8169_private *tp =
2321 container_of(work, struct rtl8169_private, task.work);
2322 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 int ret;
2324
Francois Romieueb2a0212007-02-15 23:37:21 +01002325 rtnl_lock();
2326
2327 if (!netif_running(dev))
2328 goto out_unlock;
2329
2330 rtl8169_wait_for_quiescence(dev);
2331 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
2333 ret = rtl8169_open(dev);
2334 if (unlikely(ret < 0)) {
2335 if (net_ratelimit()) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002336 struct rtl8169_private *tp = netdev_priv(dev);
2337
2338 if (netif_msg_drv(tp)) {
2339 printk(PFX KERN_ERR
2340 "%s: reinit failure (status = %d)."
2341 " Rescheduling.\n", dev->name, ret);
2342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
2344 rtl8169_schedule_work(dev, rtl8169_reinit_task);
2345 }
Francois Romieueb2a0212007-02-15 23:37:21 +01002346
2347out_unlock:
2348 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349}
2350
David Howellsc4028952006-11-22 14:57:56 +00002351static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352{
David Howellsc4028952006-11-22 14:57:56 +00002353 struct rtl8169_private *tp =
2354 container_of(work, struct rtl8169_private, task.work);
2355 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Francois Romieueb2a0212007-02-15 23:37:21 +01002357 rtnl_lock();
2358
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01002360 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
2362 rtl8169_wait_for_quiescence(dev);
2363
2364 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr);
2365 rtl8169_tx_clear(tp);
2366
2367 if (tp->dirty_rx == tp->cur_rx) {
2368 rtl8169_init_ring_indexes(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01002369 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 netif_wake_queue(dev);
2371 } else {
2372 if (net_ratelimit()) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002373 struct rtl8169_private *tp = netdev_priv(dev);
2374
2375 if (netif_msg_intr(tp)) {
2376 printk(PFX KERN_EMERG
2377 "%s: Rx buffers shortage\n", dev->name);
2378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 }
2380 rtl8169_schedule_work(dev, rtl8169_reset_task);
2381 }
Francois Romieueb2a0212007-02-15 23:37:21 +01002382
2383out_unlock:
2384 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385}
2386
2387static void rtl8169_tx_timeout(struct net_device *dev)
2388{
2389 struct rtl8169_private *tp = netdev_priv(dev);
2390
2391 rtl8169_hw_reset(tp->mmio_addr);
2392
2393 /* Let's wait a bit while any (async) irq lands on */
2394 rtl8169_schedule_work(dev, rtl8169_reset_task);
2395}
2396
2397static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
2398 u32 opts1)
2399{
2400 struct skb_shared_info *info = skb_shinfo(skb);
2401 unsigned int cur_frag, entry;
2402 struct TxDesc *txd;
2403
2404 entry = tp->cur_tx;
2405 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
2406 skb_frag_t *frag = info->frags + cur_frag;
2407 dma_addr_t mapping;
2408 u32 status, len;
2409 void *addr;
2410
2411 entry = (entry + 1) % NUM_TX_DESC;
2412
2413 txd = tp->TxDescArray + entry;
2414 len = frag->size;
2415 addr = ((void *) page_address(frag->page)) + frag->page_offset;
2416 mapping = pci_map_single(tp->pci_dev, addr, len, PCI_DMA_TODEVICE);
2417
2418 /* anti gcc 2.95.3 bugware (sic) */
2419 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
2420
2421 txd->opts1 = cpu_to_le32(status);
2422 txd->addr = cpu_to_le64(mapping);
2423
2424 tp->tx_skb[entry].len = len;
2425 }
2426
2427 if (cur_frag) {
2428 tp->tx_skb[entry].skb = skb;
2429 txd->opts1 |= cpu_to_le32(LastFrag);
2430 }
2431
2432 return cur_frag;
2433}
2434
2435static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
2436{
2437 if (dev->features & NETIF_F_TSO) {
Herbert Xu79671682006-06-22 02:40:14 -07002438 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
2440 if (mss)
2441 return LargeSend | ((mss & MSSMask) << MSSShift);
2442 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07002443 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002444 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
2446 if (ip->protocol == IPPROTO_TCP)
2447 return IPCS | TCPCS;
2448 else if (ip->protocol == IPPROTO_UDP)
2449 return IPCS | UDPCS;
2450 WARN_ON(1); /* we need a WARN() */
2451 }
2452 return 0;
2453}
2454
2455static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev)
2456{
2457 struct rtl8169_private *tp = netdev_priv(dev);
2458 unsigned int frags, entry = tp->cur_tx % NUM_TX_DESC;
2459 struct TxDesc *txd = tp->TxDescArray + entry;
2460 void __iomem *ioaddr = tp->mmio_addr;
2461 dma_addr_t mapping;
2462 u32 status, len;
2463 u32 opts1;
Francois Romieu188f4af2006-08-16 14:51:52 +02002464 int ret = NETDEV_TX_OK;
Francois Romieu5b0384f2006-08-16 16:00:01 +02002465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002467 if (netif_msg_drv(tp)) {
2468 printk(KERN_ERR
2469 "%s: BUG! Tx Ring full when queue awake!\n",
2470 dev->name);
2471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 goto err_stop;
2473 }
2474
2475 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
2476 goto err_stop;
2477
2478 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
2479
2480 frags = rtl8169_xmit_frags(tp, skb, opts1);
2481 if (frags) {
2482 len = skb_headlen(skb);
2483 opts1 |= FirstFrag;
2484 } else {
2485 len = skb->len;
2486
2487 if (unlikely(len < ETH_ZLEN)) {
Herbert Xu5b057c62006-06-23 02:06:41 -07002488 if (skb_padto(skb, ETH_ZLEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 goto err_update_stats;
2490 len = ETH_ZLEN;
2491 }
2492
2493 opts1 |= FirstFrag | LastFrag;
2494 tp->tx_skb[entry].skb = skb;
2495 }
2496
2497 mapping = pci_map_single(tp->pci_dev, skb->data, len, PCI_DMA_TODEVICE);
2498
2499 tp->tx_skb[entry].len = len;
2500 txd->addr = cpu_to_le64(mapping);
2501 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
2502
2503 wmb();
2504
2505 /* anti gcc 2.95.3 bugware (sic) */
2506 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
2507 txd->opts1 = cpu_to_le32(status);
2508
2509 dev->trans_start = jiffies;
2510
2511 tp->cur_tx += frags + 1;
2512
2513 smp_wmb();
2514
2515 RTL_W8(TxPoll, 0x40); /* set polling bit */
2516
2517 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
2518 netif_stop_queue(dev);
2519 smp_rmb();
2520 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
2521 netif_wake_queue(dev);
2522 }
2523
2524out:
2525 return ret;
2526
2527err_stop:
2528 netif_stop_queue(dev);
Francois Romieu188f4af2006-08-16 14:51:52 +02002529 ret = NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530err_update_stats:
2531 tp->stats.tx_dropped++;
2532 goto out;
2533}
2534
2535static void rtl8169_pcierr_interrupt(struct net_device *dev)
2536{
2537 struct rtl8169_private *tp = netdev_priv(dev);
2538 struct pci_dev *pdev = tp->pci_dev;
2539 void __iomem *ioaddr = tp->mmio_addr;
2540 u16 pci_status, pci_cmd;
2541
2542 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
2543 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
2544
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002545 if (netif_msg_intr(tp)) {
2546 printk(KERN_ERR
2547 "%s: PCI error (cmd = 0x%04x, status = 0x%04x).\n",
2548 dev->name, pci_cmd, pci_status);
2549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
2551 /*
2552 * The recovery sequence below admits a very elaborated explanation:
2553 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01002554 * - I did not see what else could be done;
2555 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 *
2557 * Feel free to adjust to your needs.
2558 */
Francois Romieua27993f2006-12-18 00:04:19 +01002559 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01002560 pci_cmd &= ~PCI_COMMAND_PARITY;
2561 else
2562 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
2563
2564 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
2566 pci_write_config_word(pdev, PCI_STATUS,
2567 pci_status & (PCI_STATUS_DETECTED_PARITY |
2568 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
2569 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
2570
2571 /* The infamous DAC f*ckup only happens at boot time */
2572 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002573 if (netif_msg_intr(tp))
2574 printk(KERN_INFO "%s: disabling PCI DAC.\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 tp->cp_cmd &= ~PCIDAC;
2576 RTL_W16(CPlusCmd, tp->cp_cmd);
2577 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 }
2579
2580 rtl8169_hw_reset(ioaddr);
Francois Romieud03902b2006-11-23 00:00:42 +01002581
2582 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583}
2584
2585static void
2586rtl8169_tx_interrupt(struct net_device *dev, struct rtl8169_private *tp,
2587 void __iomem *ioaddr)
2588{
2589 unsigned int dirty_tx, tx_left;
2590
2591 assert(dev != NULL);
2592 assert(tp != NULL);
2593 assert(ioaddr != NULL);
2594
2595 dirty_tx = tp->dirty_tx;
2596 smp_rmb();
2597 tx_left = tp->cur_tx - dirty_tx;
2598
2599 while (tx_left > 0) {
2600 unsigned int entry = dirty_tx % NUM_TX_DESC;
2601 struct ring_info *tx_skb = tp->tx_skb + entry;
2602 u32 len = tx_skb->len;
2603 u32 status;
2604
2605 rmb();
2606 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
2607 if (status & DescOwn)
2608 break;
2609
2610 tp->stats.tx_bytes += len;
2611 tp->stats.tx_packets++;
2612
2613 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb, tp->TxDescArray + entry);
2614
2615 if (status & LastFrag) {
2616 dev_kfree_skb_irq(tx_skb->skb);
2617 tx_skb->skb = NULL;
2618 }
2619 dirty_tx++;
2620 tx_left--;
2621 }
2622
2623 if (tp->dirty_tx != dirty_tx) {
2624 tp->dirty_tx = dirty_tx;
2625 smp_wmb();
2626 if (netif_queue_stopped(dev) &&
2627 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
2628 netif_wake_queue(dev);
2629 }
2630 }
2631}
2632
Francois Romieu126fa4b2005-05-12 20:09:17 -04002633static inline int rtl8169_fragmented_frame(u32 status)
2634{
2635 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
2636}
2637
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638static inline void rtl8169_rx_csum(struct sk_buff *skb, struct RxDesc *desc)
2639{
2640 u32 opts1 = le32_to_cpu(desc->opts1);
2641 u32 status = opts1 & RxProtoMask;
2642
2643 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
2644 ((status == RxProtoUDP) && !(opts1 & UDPFail)) ||
2645 ((status == RxProtoIP) && !(opts1 & IPFail)))
2646 skb->ip_summed = CHECKSUM_UNNECESSARY;
2647 else
2648 skb->ip_summed = CHECKSUM_NONE;
2649}
2650
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002651static inline bool rtl8169_try_rx_copy(struct sk_buff **sk_buff, int pkt_size,
2652 struct pci_dev *pdev, dma_addr_t addr,
2653 unsigned int align)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002655 struct sk_buff *skb;
2656 bool done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002658 if (pkt_size >= rx_copybreak)
2659 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002661 skb = dev_alloc_skb(pkt_size + align);
2662 if (!skb)
2663 goto out;
2664
2665 pci_dma_sync_single_for_cpu(pdev, addr, pkt_size, PCI_DMA_FROMDEVICE);
2666 skb_reserve(skb, (align - 1) & (unsigned long)skb->data);
2667 skb_copy_from_linear_data(*sk_buff, skb->data, pkt_size);
2668 *sk_buff = skb;
2669 done = true;
2670out:
2671 return done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672}
2673
2674static int
2675rtl8169_rx_interrupt(struct net_device *dev, struct rtl8169_private *tp,
2676 void __iomem *ioaddr)
2677{
2678 unsigned int cur_rx, rx_left;
2679 unsigned int delta, count;
2680
2681 assert(dev != NULL);
2682 assert(tp != NULL);
2683 assert(ioaddr != NULL);
2684
2685 cur_rx = tp->cur_rx;
2686 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
2687 rx_left = rtl8169_rx_quota(rx_left, (u32) dev->quota);
2688
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002689 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002691 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 u32 status;
2693
2694 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04002695 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697 if (status & DescOwn)
2698 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002699 if (unlikely(status & RxRES)) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002700 if (netif_msg_rx_err(tp)) {
2701 printk(KERN_INFO
2702 "%s: Rx ERROR. status = %08x\n",
2703 dev->name, status);
2704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 tp->stats.rx_errors++;
2706 if (status & (RxRWT | RxRUNT))
2707 tp->stats.rx_length_errors++;
2708 if (status & RxCRC)
2709 tp->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02002710 if (status & RxFOVF) {
2711 rtl8169_schedule_work(dev, rtl8169_reset_task);
2712 tp->stats.rx_fifo_errors++;
2713 }
Francois Romieu126fa4b2005-05-12 20:09:17 -04002714 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 struct sk_buff *skb = tp->Rx_skbuff[entry];
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002717 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 int pkt_size = (status & 0x00001FFF) - 4;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002719 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Francois Romieu126fa4b2005-05-12 20:09:17 -04002721 /*
2722 * The driver does not support incoming fragmented
2723 * frames. They are seen as a symptom of over-mtu
2724 * sized frames.
2725 */
2726 if (unlikely(rtl8169_fragmented_frame(status))) {
2727 tp->stats.rx_dropped++;
2728 tp->stats.rx_length_errors++;
2729 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002730 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002731 }
2732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 rtl8169_rx_csum(skb, desc);
Francois Romieubcf0bf92006-07-26 23:14:13 +02002734
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002735 if (rtl8169_try_rx_copy(&skb, pkt_size, pdev, addr,
2736 tp->align)) {
2737 pci_dma_sync_single_for_device(pdev, addr,
2738 pkt_size, PCI_DMA_FROMDEVICE);
2739 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
2740 } else {
2741 pci_unmap_single(pdev, addr, pkt_size,
2742 PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 tp->Rx_skbuff[entry] = NULL;
2744 }
2745
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 skb_put(skb, pkt_size);
2747 skb->protocol = eth_type_trans(skb, dev);
2748
2749 if (rtl8169_rx_vlan_skb(tp, desc, skb) < 0)
2750 rtl8169_rx_skb(skb);
2751
2752 dev->last_rx = jiffies;
2753 tp->stats.rx_bytes += pkt_size;
2754 tp->stats.rx_packets++;
2755 }
Francois Romieu6dccd162007-02-13 23:38:05 +01002756
2757 /* Work around for AMD plateform. */
2758 if ((desc->opts2 & 0xfffe000) &&
2759 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
2760 desc->opts2 = 0;
2761 cur_rx++;
2762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 }
2764
2765 count = cur_rx - tp->cur_rx;
2766 tp->cur_rx = cur_rx;
2767
2768 delta = rtl8169_rx_fill(tp, dev, tp->dirty_rx, tp->cur_rx);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002769 if (!delta && count && netif_msg_intr(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 printk(KERN_INFO "%s: no Rx buffer allocated\n", dev->name);
2771 tp->dirty_rx += delta;
2772
2773 /*
2774 * FIXME: until there is periodic timer to try and refill the ring,
2775 * a temporary shortage may definitely kill the Rx process.
2776 * - disable the asic to try and avoid an overflow and kick it again
2777 * after refill ?
2778 * - how do others driver handle this condition (Uh oh...).
2779 */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002780 if ((tp->dirty_rx + NUM_RX_DESC == tp->cur_rx) && netif_msg_intr(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 printk(KERN_EMERG "%s: Rx buffers exhausted\n", dev->name);
2782
2783 return count;
2784}
2785
2786/* The interrupt handler does all of the Rx thread work and cleans up after the Tx thread. */
2787static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01002788rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789{
2790 struct net_device *dev = (struct net_device *) dev_instance;
2791 struct rtl8169_private *tp = netdev_priv(dev);
2792 int boguscnt = max_interrupt_work;
2793 void __iomem *ioaddr = tp->mmio_addr;
2794 int status;
2795 int handled = 0;
2796
2797 do {
2798 status = RTL_R16(IntrStatus);
2799
2800 /* hotplug/major error/no more work/shared irq */
2801 if ((status == 0xFFFF) || !status)
2802 break;
2803
2804 handled = 1;
2805
2806 if (unlikely(!netif_running(dev))) {
2807 rtl8169_asic_down(ioaddr);
2808 goto out;
2809 }
2810
2811 status &= tp->intr_mask;
2812 RTL_W16(IntrStatus,
2813 (status & RxFIFOOver) ? (status | RxOverflow) : status);
2814
Francois Romieu0e485152007-02-20 00:00:26 +01002815 if (!(status & tp->intr_event))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 break;
2817
Francois Romieu0e485152007-02-20 00:00:26 +01002818 /* Work around for rx fifo overflow */
2819 if (unlikely(status & RxFIFOOver) &&
2820 (tp->mac_version == RTL_GIGA_MAC_VER_11)) {
2821 netif_stop_queue(dev);
2822 rtl8169_tx_timeout(dev);
2823 break;
2824 }
2825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 if (unlikely(status & SYSErr)) {
2827 rtl8169_pcierr_interrupt(dev);
2828 break;
2829 }
2830
2831 if (status & LinkChg)
2832 rtl8169_check_link_status(dev, tp, ioaddr);
2833
2834#ifdef CONFIG_R8169_NAPI
Francois Romieu0e485152007-02-20 00:00:26 +01002835 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
2836 tp->intr_mask = ~tp->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
2838 if (likely(netif_rx_schedule_prep(dev)))
2839 __netif_rx_schedule(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002840 else if (netif_msg_intr(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 printk(KERN_INFO "%s: interrupt %04x taken in poll\n",
Francois Romieu5b0384f2006-08-16 16:00:01 +02002842 dev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
2844 break;
2845#else
2846 /* Rx interrupt */
2847 if (status & (RxOK | RxOverflow | RxFIFOOver)) {
2848 rtl8169_rx_interrupt(dev, tp, ioaddr);
2849 }
2850 /* Tx interrupt */
2851 if (status & (TxOK | TxErr))
2852 rtl8169_tx_interrupt(dev, tp, ioaddr);
2853#endif
2854
2855 boguscnt--;
2856 } while (boguscnt > 0);
2857
2858 if (boguscnt <= 0) {
Francois Romieu7c8b2eb2005-11-16 23:44:05 +01002859 if (netif_msg_intr(tp) && net_ratelimit() ) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002860 printk(KERN_WARNING
2861 "%s: Too much work at interrupt!\n", dev->name);
2862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 /* Clear all interrupt sources. */
2864 RTL_W16(IntrStatus, 0xffff);
2865 }
2866out:
2867 return IRQ_RETVAL(handled);
2868}
2869
2870#ifdef CONFIG_R8169_NAPI
2871static int rtl8169_poll(struct net_device *dev, int *budget)
2872{
2873 unsigned int work_done, work_to_do = min(*budget, dev->quota);
2874 struct rtl8169_private *tp = netdev_priv(dev);
2875 void __iomem *ioaddr = tp->mmio_addr;
2876
2877 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr);
2878 rtl8169_tx_interrupt(dev, tp, ioaddr);
2879
2880 *budget -= work_done;
2881 dev->quota -= work_done;
2882
2883 if (work_done < work_to_do) {
2884 netif_rx_complete(dev);
2885 tp->intr_mask = 0xffff;
2886 /*
2887 * 20040426: the barrier is not strictly required but the
2888 * behavior of the irq handler could be less predictable
2889 * without it. Btw, the lack of flush for the posted pci
2890 * write is safe - FR
2891 */
2892 smp_wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01002893 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 }
2895
2896 return (work_done >= work_to_do);
2897}
2898#endif
2899
2900static void rtl8169_down(struct net_device *dev)
2901{
2902 struct rtl8169_private *tp = netdev_priv(dev);
2903 void __iomem *ioaddr = tp->mmio_addr;
2904 unsigned int poll_locked = 0;
Arnaud Patard733b7362006-10-12 22:33:31 +02002905 unsigned int intrmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907 rtl8169_delete_timer(dev);
2908
2909 netif_stop_queue(dev);
2910
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911core_down:
2912 spin_lock_irq(&tp->lock);
2913
2914 rtl8169_asic_down(ioaddr);
2915
2916 /* Update the error counts. */
2917 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
2918 RTL_W32(RxMissed, 0);
2919
2920 spin_unlock_irq(&tp->lock);
2921
2922 synchronize_irq(dev->irq);
2923
2924 if (!poll_locked) {
2925 netif_poll_disable(dev);
2926 poll_locked++;
2927 }
2928
2929 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002930 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
2932 /*
2933 * And now for the 50k$ question: are IRQ disabled or not ?
2934 *
2935 * Two paths lead here:
2936 * 1) dev->close
2937 * -> netif_running() is available to sync the current code and the
2938 * IRQ handler. See rtl8169_interrupt for details.
2939 * 2) dev->change_mtu
2940 * -> rtl8169_poll can not be issued again and re-enable the
2941 * interruptions. Let's simply issue the IRQ down sequence again.
Arnaud Patard733b7362006-10-12 22:33:31 +02002942 *
2943 * No loop if hotpluged or major error (0xffff).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 */
Arnaud Patard733b7362006-10-12 22:33:31 +02002945 intrmask = RTL_R16(IntrMask);
2946 if (intrmask && (intrmask != 0xffff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 goto core_down;
2948
2949 rtl8169_tx_clear(tp);
2950
2951 rtl8169_rx_clear(tp);
2952}
2953
2954static int rtl8169_close(struct net_device *dev)
2955{
2956 struct rtl8169_private *tp = netdev_priv(dev);
2957 struct pci_dev *pdev = tp->pci_dev;
2958
2959 rtl8169_down(dev);
2960
2961 free_irq(dev->irq, dev);
2962
2963 netif_poll_enable(dev);
2964
2965 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
2966 tp->RxPhyAddr);
2967 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
2968 tp->TxPhyAddr);
2969 tp->TxDescArray = NULL;
2970 tp->RxDescArray = NULL;
2971
2972 return 0;
2973}
2974
Francois Romieu07ce4062007-02-23 23:36:39 +01002975static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
2977 struct rtl8169_private *tp = netdev_priv(dev);
2978 void __iomem *ioaddr = tp->mmio_addr;
2979 unsigned long flags;
2980 u32 mc_filter[2]; /* Multicast hash filter */
2981 int i, rx_mode;
2982 u32 tmp = 0;
2983
2984 if (dev->flags & IFF_PROMISC) {
2985 /* Unconditionally log net taps. */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002986 if (netif_msg_link(tp)) {
2987 printk(KERN_NOTICE "%s: Promiscuous mode enabled.\n",
2988 dev->name);
2989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 rx_mode =
2991 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
2992 AcceptAllPhys;
2993 mc_filter[1] = mc_filter[0] = 0xffffffff;
2994 } else if ((dev->mc_count > multicast_filter_limit)
2995 || (dev->flags & IFF_ALLMULTI)) {
2996 /* Too many to filter perfectly -- accept all multicasts. */
2997 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
2998 mc_filter[1] = mc_filter[0] = 0xffffffff;
2999 } else {
3000 struct dev_mc_list *mclist;
3001 rx_mode = AcceptBroadcast | AcceptMyPhys;
3002 mc_filter[1] = mc_filter[0] = 0;
3003 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
3004 i++, mclist = mclist->next) {
3005 int bit_nr = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
3006 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
3007 rx_mode |= AcceptMulticast;
3008 }
3009 }
3010
3011 spin_lock_irqsave(&tp->lock, flags);
3012
3013 tmp = rtl8169_rx_config | rx_mode |
3014 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
3015
Francois Romieubcf0bf92006-07-26 23:14:13 +02003016 if ((tp->mac_version == RTL_GIGA_MAC_VER_11) ||
3017 (tp->mac_version == RTL_GIGA_MAC_VER_12) ||
3018 (tp->mac_version == RTL_GIGA_MAC_VER_13) ||
3019 (tp->mac_version == RTL_GIGA_MAC_VER_14) ||
3020 (tp->mac_version == RTL_GIGA_MAC_VER_15)) {
3021 mc_filter[0] = 0xffffffff;
3022 mc_filter[1] = 0xffffffff;
3023 }
3024
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 RTL_W32(RxConfig, tmp);
3026 RTL_W32(MAR0 + 0, mc_filter[0]);
3027 RTL_W32(MAR0 + 4, mc_filter[1]);
3028
3029 spin_unlock_irqrestore(&tp->lock, flags);
3030}
3031
3032/**
3033 * rtl8169_get_stats - Get rtl8169 read/write statistics
3034 * @dev: The Ethernet Device to get statistics for
3035 *
3036 * Get TX/RX statistics for rtl8169
3037 */
3038static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
3039{
3040 struct rtl8169_private *tp = netdev_priv(dev);
3041 void __iomem *ioaddr = tp->mmio_addr;
3042 unsigned long flags;
3043
3044 if (netif_running(dev)) {
3045 spin_lock_irqsave(&tp->lock, flags);
3046 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
3047 RTL_W32(RxMissed, 0);
3048 spin_unlock_irqrestore(&tp->lock, flags);
3049 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02003050
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 return &tp->stats;
3052}
3053
Francois Romieu5d06a992006-02-23 00:47:58 +01003054#ifdef CONFIG_PM
3055
3056static int rtl8169_suspend(struct pci_dev *pdev, pm_message_t state)
3057{
3058 struct net_device *dev = pci_get_drvdata(pdev);
3059 struct rtl8169_private *tp = netdev_priv(dev);
3060 void __iomem *ioaddr = tp->mmio_addr;
3061
3062 if (!netif_running(dev))
Francois Romieu1371fa62007-04-02 23:01:11 +02003063 goto out_pci_suspend;
Francois Romieu5d06a992006-02-23 00:47:58 +01003064
3065 netif_device_detach(dev);
3066 netif_stop_queue(dev);
3067
3068 spin_lock_irq(&tp->lock);
3069
3070 rtl8169_asic_down(ioaddr);
3071
3072 tp->stats.rx_missed_errors += RTL_R32(RxMissed);
3073 RTL_W32(RxMissed, 0);
3074
3075 spin_unlock_irq(&tp->lock);
3076
Francois Romieu1371fa62007-04-02 23:01:11 +02003077out_pci_suspend:
Francois Romieu5d06a992006-02-23 00:47:58 +01003078 pci_save_state(pdev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01003079 pci_enable_wake(pdev, pci_choose_state(pdev, state), tp->wol_enabled);
Francois Romieu5d06a992006-02-23 00:47:58 +01003080 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Francois Romieu1371fa62007-04-02 23:01:11 +02003081
Francois Romieu5d06a992006-02-23 00:47:58 +01003082 return 0;
3083}
3084
3085static int rtl8169_resume(struct pci_dev *pdev)
3086{
3087 struct net_device *dev = pci_get_drvdata(pdev);
3088
Francois Romieu1371fa62007-04-02 23:01:11 +02003089 pci_set_power_state(pdev, PCI_D0);
3090 pci_restore_state(pdev);
3091 pci_enable_wake(pdev, PCI_D0, 0);
3092
Francois Romieu5d06a992006-02-23 00:47:58 +01003093 if (!netif_running(dev))
3094 goto out;
3095
3096 netif_device_attach(dev);
3097
Francois Romieu5d06a992006-02-23 00:47:58 +01003098 rtl8169_schedule_work(dev, rtl8169_reset_task);
3099out:
3100 return 0;
3101}
3102
3103#endif /* CONFIG_PM */
3104
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105static struct pci_driver rtl8169_pci_driver = {
3106 .name = MODULENAME,
3107 .id_table = rtl8169_pci_tbl,
3108 .probe = rtl8169_init_one,
3109 .remove = __devexit_p(rtl8169_remove_one),
3110#ifdef CONFIG_PM
3111 .suspend = rtl8169_suspend,
3112 .resume = rtl8169_resume,
3113#endif
3114};
3115
3116static int __init
3117rtl8169_init_module(void)
3118{
Jeff Garzik29917622006-08-19 17:48:59 -04003119 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120}
3121
3122static void __exit
3123rtl8169_cleanup_module(void)
3124{
3125 pci_unregister_driver(&rtl8169_pci_driver);
3126}
3127
3128module_init(rtl8169_init_module);
3129module_exit(rtl8169_cleanup_module);