blob: ae149a9306207215d87e4dee6498262f9a74d4f9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Francois Romieu07d3f512007-02-21 22:40:46 +01002 * r8169.c: RealTek 8169/8168/8101 ethernet driver.
3 *
4 * Copyright (c) 2002 ShuChen <shuchen@realtek.com.tw>
5 * Copyright (c) 2003 - 2007 Francois Romieu <romieu@fr.zoreil.com>
6 * Copyright (c) a lot of people too. Please respect their work.
7 *
8 * See MAINTAINERS file for support contact information.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/pci.h>
14#include <linux/netdevice.h>
15#include <linux/etherdevice.h>
16#include <linux/delay.h>
17#include <linux/ethtool.h>
18#include <linux/mii.h>
19#include <linux/if_vlan.h>
20#include <linux/crc32.h>
21#include <linux/in.h>
22#include <linux/ip.h>
23#include <linux/tcp.h>
24#include <linux/init.h>
25#include <linux/dma-mapping.h>
26
Francois Romieu99f252b2007-04-02 22:59:59 +020027#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/io.h>
29#include <asm/irq.h>
30
Francois Romieu865c6522008-05-11 14:51:00 +020031#define RTL8169_VERSION "2.3LK-NAPI"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define MODULENAME "r8169"
33#define PFX MODULENAME ": "
34
35#ifdef RTL8169_DEBUG
36#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020037 if (!(expr)) { \
38 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
39 #expr,__FILE__,__FUNCTION__,__LINE__); \
40 }
Joe Perches06fa7352007-10-18 21:15:00 +020041#define dprintk(fmt, args...) \
42 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#else
44#define assert(expr) do {} while (0)
45#define dprintk(fmt, args...) do {} while (0)
46#endif /* RTL8169_DEBUG */
47
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020048#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070049 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define TX_BUFFS_AVAIL(tp) \
52 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/* Maximum events (Rx packets, etc.) to handle at each interrupt. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050055static const int max_interrupt_work = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
58 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050059static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/* MAC address length */
62#define MAC_ADDR_LEN 6
63
Francois Romieu9c14cea2008-07-05 00:21:15 +020064#define MAX_READ_REQUEST_SHIFT 12
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
66#define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
67#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
Francois Romieu07d3f512007-02-21 22:40:46 +010068#define EarlyTxThld 0x3F /* 0x3F means NO early transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define RxPacketMaxSize 0x3FE8 /* 16K - 1 - ETH_HLEN - VLAN - CRC... */
70#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
71#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
72
73#define R8169_REGS_SIZE 256
74#define R8169_NAPI_WEIGHT 64
75#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
76#define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
77#define RX_BUF_SIZE 1536 /* Rx Buffer size */
78#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
79#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
80
81#define RTL8169_TX_TIMEOUT (6*HZ)
82#define RTL8169_PHY_TIMEOUT (10*HZ)
83
84/* write/read MMIO register */
85#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
86#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
87#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
88#define RTL_R8(reg) readb (ioaddr + (reg))
89#define RTL_R16(reg) readw (ioaddr + (reg))
90#define RTL_R32(reg) ((unsigned long) readl (ioaddr + (reg)))
91
92enum mac_version {
Francois Romieuba6eb6e2007-06-11 23:35:18 +020093 RTL_GIGA_MAC_VER_01 = 0x01, // 8169
94 RTL_GIGA_MAC_VER_02 = 0x02, // 8169S
95 RTL_GIGA_MAC_VER_03 = 0x03, // 8110S
96 RTL_GIGA_MAC_VER_04 = 0x04, // 8169SB
97 RTL_GIGA_MAC_VER_05 = 0x05, // 8110SCd
Francois Romieu6dccd162007-02-13 23:38:05 +010098 RTL_GIGA_MAC_VER_06 = 0x06, // 8110SCe
Francois Romieu2dd99532007-06-11 23:22:52 +020099 RTL_GIGA_MAC_VER_11 = 0x0b, // 8168Bb
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200100 RTL_GIGA_MAC_VER_12 = 0x0c, // 8168Be
101 RTL_GIGA_MAC_VER_13 = 0x0d, // 8101Eb
102 RTL_GIGA_MAC_VER_14 = 0x0e, // 8101 ?
103 RTL_GIGA_MAC_VER_15 = 0x0f, // 8101 ?
104 RTL_GIGA_MAC_VER_16 = 0x11, // 8101Ec
105 RTL_GIGA_MAC_VER_17 = 0x10, // 8168Bf
106 RTL_GIGA_MAC_VER_18 = 0x12, // 8168CP
107 RTL_GIGA_MAC_VER_19 = 0x13, // 8168C
108 RTL_GIGA_MAC_VER_20 = 0x14 // 8168C
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define _R(NAME,MAC,MASK) \
112 { .name = NAME, .mac_version = MAC, .RxConfigMask = MASK }
113
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800114static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 const char *name;
116 u8 mac_version;
117 u32 RxConfigMask; /* Clears the bits supported by this chip */
118} rtl_chip_info[] = {
Francois Romieuba6eb6e2007-06-11 23:35:18 +0200119 _R("RTL8169", RTL_GIGA_MAC_VER_01, 0xff7e1880), // 8169
120 _R("RTL8169s", RTL_GIGA_MAC_VER_02, 0xff7e1880), // 8169S
121 _R("RTL8110s", RTL_GIGA_MAC_VER_03, 0xff7e1880), // 8110S
122 _R("RTL8169sb/8110sb", RTL_GIGA_MAC_VER_04, 0xff7e1880), // 8169SB
123 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_05, 0xff7e1880), // 8110SCd
Francois Romieu6dccd162007-02-13 23:38:05 +0100124 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_06, 0xff7e1880), // 8110SCe
Francois Romieubcf0bf92006-07-26 23:14:13 +0200125 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_11, 0xff7e1880), // PCI-E
126 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_12, 0xff7e1880), // PCI-E
127 _R("RTL8101e", RTL_GIGA_MAC_VER_13, 0xff7e1880), // PCI-E 8139
128 _R("RTL8100e", RTL_GIGA_MAC_VER_14, 0xff7e1880), // PCI-E 8139
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200129 _R("RTL8100e", RTL_GIGA_MAC_VER_15, 0xff7e1880), // PCI-E 8139
130 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_17, 0xff7e1880), // PCI-E
131 _R("RTL8101e", RTL_GIGA_MAC_VER_16, 0xff7e1880), // PCI-E
132 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_18, 0xff7e1880), // PCI-E
133 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_19, 0xff7e1880), // PCI-E
134 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_20, 0xff7e1880) // PCI-E
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136#undef _R
137
Francois Romieubcf0bf92006-07-26 23:14:13 +0200138enum cfg_version {
139 RTL_CFG_0 = 0x00,
140 RTL_CFG_1,
141 RTL_CFG_2
142};
143
Francois Romieu07ce4062007-02-23 23:36:39 +0100144static void rtl_hw_start_8169(struct net_device *);
145static void rtl_hw_start_8168(struct net_device *);
146static void rtl_hw_start_8101(struct net_device *);
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static struct pci_device_id rtl8169_pci_tbl[] = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200149 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200150 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200151 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100152 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200153 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
154 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200155 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200156 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
157 { PCI_VENDOR_ID_LINKSYS, 0x1032,
158 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100159 { 0x0001, 0x8168,
160 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 {0,},
162};
163
164MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
165
166static int rx_copybreak = 200;
167static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200168static struct {
169 u32 msg_enable;
170} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Francois Romieu07d3f512007-02-21 22:40:46 +0100172enum rtl_registers {
173 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100174 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100175 MAR0 = 8, /* Multicast filter. */
176 CounterAddrLow = 0x10,
177 CounterAddrHigh = 0x14,
178 TxDescStartAddrLow = 0x20,
179 TxDescStartAddrHigh = 0x24,
180 TxHDescStartAddrLow = 0x28,
181 TxHDescStartAddrHigh = 0x2c,
182 FLASH = 0x30,
183 ERSR = 0x36,
184 ChipCmd = 0x37,
185 TxPoll = 0x38,
186 IntrMask = 0x3c,
187 IntrStatus = 0x3e,
188 TxConfig = 0x40,
189 RxConfig = 0x44,
190 RxMissed = 0x4c,
191 Cfg9346 = 0x50,
192 Config0 = 0x51,
193 Config1 = 0x52,
194 Config2 = 0x53,
195 Config3 = 0x54,
196 Config4 = 0x55,
197 Config5 = 0x56,
198 MultiIntr = 0x5c,
199 PHYAR = 0x60,
200 TBICSR = 0x64,
201 TBI_ANAR = 0x68,
202 TBI_LPAR = 0x6a,
203 PHYstatus = 0x6c,
204 RxMaxSize = 0xda,
205 CPlusCmd = 0xe0,
206 IntrMitigate = 0xe2,
207 RxDescAddrLow = 0xe4,
208 RxDescAddrHigh = 0xe8,
209 EarlyTxThres = 0xec,
210 FuncEvent = 0xf0,
211 FuncEventMask = 0xf4,
212 FuncPresetState = 0xf8,
213 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
Francois Romieu07d3f512007-02-21 22:40:46 +0100216enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100218 SYSErr = 0x8000,
219 PCSTimeout = 0x4000,
220 SWInt = 0x0100,
221 TxDescUnavail = 0x0080,
222 RxFIFOOver = 0x0040,
223 LinkChg = 0x0020,
224 RxOverflow = 0x0010,
225 TxErr = 0x0008,
226 TxOK = 0x0004,
227 RxErr = 0x0002,
228 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 /* RxStatusDesc */
Francois Romieu9dccf612006-05-14 12:31:17 +0200231 RxFOVF = (1 << 23),
232 RxRWT = (1 << 22),
233 RxRES = (1 << 21),
234 RxRUNT = (1 << 20),
235 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 /* ChipCmdBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100238 CmdReset = 0x10,
239 CmdRxEnb = 0x08,
240 CmdTxEnb = 0x04,
241 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Francois Romieu275391a2007-02-23 23:50:28 +0100243 /* TXPoll register p.5 */
244 HPQ = 0x80, /* Poll cmd on the high prio queue */
245 NPQ = 0x40, /* Poll cmd on the low prio queue */
246 FSWInt = 0x01, /* Forced software interrupt */
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100249 Cfg9346_Lock = 0x00,
250 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100253 AcceptErr = 0x20,
254 AcceptRunt = 0x10,
255 AcceptBroadcast = 0x08,
256 AcceptMulticast = 0x04,
257 AcceptMyPhys = 0x02,
258 AcceptAllPhys = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 /* RxConfigBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100261 RxCfgFIFOShift = 13,
262 RxCfgDMAShift = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 /* TxConfigBits */
265 TxInterFrameGapShift = 24,
266 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
267
Francois Romieu5d06a992006-02-23 00:47:58 +0100268 /* Config1 register p.24 */
Francois Romieufbac58f2007-10-04 22:51:38 +0200269 MSIEnable = (1 << 5), /* Enable Message Signaled Interrupt */
Francois Romieu5d06a992006-02-23 00:47:58 +0100270 PMEnable = (1 << 0), /* Power Management Enable */
271
Francois Romieu6dccd162007-02-13 23:38:05 +0100272 /* Config2 register p. 25 */
273 PCI_Clock_66MHz = 0x01,
274 PCI_Clock_33MHz = 0x00,
275
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100276 /* Config3 register p.25 */
277 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
278 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
279
Francois Romieu5d06a992006-02-23 00:47:58 +0100280 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100281 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
282 MWF = (1 << 5), /* Accept Multicast wakeup frame */
283 UWF = (1 << 4), /* Accept Unicast wakeup frame */
284 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100285 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /* TBICSR p.28 */
288 TBIReset = 0x80000000,
289 TBILoopback = 0x40000000,
290 TBINwEnable = 0x20000000,
291 TBINwRestart = 0x10000000,
292 TBILinkOk = 0x02000000,
293 TBINwComplete = 0x01000000,
294
295 /* CPlusCmd p.31 */
Francois Romieu0e485152007-02-20 00:00:26 +0100296 PktCntrDisable = (1 << 7), // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 RxVlan = (1 << 6),
298 RxChkSum = (1 << 5),
299 PCIDAC = (1 << 4),
300 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100301 INTT_0 = 0x0000, // 8168
302 INTT_1 = 0x0001, // 8168
303 INTT_2 = 0x0002, // 8168
304 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100307 TBI_Enable = 0x80,
308 TxFlowCtrl = 0x40,
309 RxFlowCtrl = 0x20,
310 _1000bpsF = 0x10,
311 _100bps = 0x08,
312 _10bps = 0x04,
313 LinkStatus = 0x02,
314 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100317 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200318
319 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100320 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321};
322
Francois Romieu07d3f512007-02-21 22:40:46 +0100323enum desc_status_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
325 RingEnd = (1 << 30), /* End of descriptor ring */
326 FirstFrag = (1 << 29), /* First segment of a packet */
327 LastFrag = (1 << 28), /* Final segment of a packet */
328
329 /* Tx private */
330 LargeSend = (1 << 27), /* TCP Large Send Offload (TSO) */
331 MSSShift = 16, /* MSS value position */
332 MSSMask = 0xfff, /* MSS value + LargeSend bit: 12 bits */
333 IPCS = (1 << 18), /* Calculate IP checksum */
334 UDPCS = (1 << 17), /* Calculate UDP/IP checksum */
335 TCPCS = (1 << 16), /* Calculate TCP/IP checksum */
336 TxVlanTag = (1 << 17), /* Add VLAN tag */
337
338 /* Rx private */
339 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
340 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
341
342#define RxProtoUDP (PID1)
343#define RxProtoTCP (PID0)
344#define RxProtoIP (PID1 | PID0)
345#define RxProtoMask RxProtoIP
346
347 IPFail = (1 << 16), /* IP checksum failed */
348 UDPFail = (1 << 15), /* UDP/IP checksum failed */
349 TCPFail = (1 << 14), /* TCP/IP checksum failed */
350 RxVlanTag = (1 << 16), /* VLAN tag available */
351};
352
353#define RsvdMask 0x3fffc000
354
355struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200356 __le32 opts1;
357 __le32 opts2;
358 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359};
360
361struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200362 __le32 opts1;
363 __le32 opts2;
364 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365};
366
367struct ring_info {
368 struct sk_buff *skb;
369 u32 len;
370 u8 __pad[sizeof(void *) - sizeof(u32)];
371};
372
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200373enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200374 RTL_FEATURE_WOL = (1 << 0),
375 RTL_FEATURE_MSI = (1 << 1),
376 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200377};
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379struct rtl8169_private {
380 void __iomem *mmio_addr; /* memory map physical address */
381 struct pci_dev *pci_dev; /* Index of PCI device */
David Howellsc4028952006-11-22 14:57:56 +0000382 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700383 struct napi_struct napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 spinlock_t lock; /* spin lock flag */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200385 u32 msg_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 int chipset;
387 int mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
389 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
390 u32 dirty_rx;
391 u32 dirty_tx;
392 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
393 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
394 dma_addr_t TxPhyAddr;
395 dma_addr_t RxPhyAddr;
396 struct sk_buff *Rx_skbuff[NUM_RX_DESC]; /* Rx data buffers */
397 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Francois Romieubcf0bf92006-07-26 23:14:13 +0200398 unsigned align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 unsigned rx_buf_sz;
400 struct timer_list timer;
401 u16 cp_cmd;
Francois Romieu0e485152007-02-20 00:00:26 +0100402 u16 intr_event;
403 u16 napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 u16 intr_mask;
405 int phy_auto_nego_reg;
406 int phy_1000_ctrl_reg;
407#ifdef CONFIG_R8169_VLAN
408 struct vlan_group *vlgrp;
409#endif
410 int (*set_speed)(struct net_device *, u8 autoneg, u16 speed, u8 duplex);
Francois Romieuccdffb92008-07-26 14:26:06 +0200411 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 void (*phy_reset_enable)(void __iomem *);
Francois Romieu07ce4062007-02-23 23:36:39 +0100413 void (*hw_start)(struct net_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 unsigned int (*phy_reset_pending)(void __iomem *);
415 unsigned int (*link_ok)(void __iomem *);
Francois Romieu9c14cea2008-07-05 00:21:15 +0200416 int pcie_cap;
David Howellsc4028952006-11-22 14:57:56 +0000417 struct delayed_work task;
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200418 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200419
420 struct mii_if_info mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421};
422
Ralf Baechle979b6c12005-06-13 14:30:40 -0700423MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425module_param(rx_copybreak, int, 0);
Stephen Hemminger1b7efd52005-05-27 21:11:45 +0200426MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427module_param(use_dac, int, 0);
428MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200429module_param_named(debug, debug.msg_enable, int, 0);
430MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431MODULE_LICENSE("GPL");
432MODULE_VERSION(RTL8169_VERSION);
433
434static int rtl8169_open(struct net_device *dev);
435static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100436static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100438static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100440static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200442static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700444 void __iomem *, u32 budget);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200445static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b2007-04-02 22:59:59 +0200447static void rtl8169_rx_clear(struct rtl8169_private *tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700448static int rtl8169_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450static const unsigned int rtl8169_rx_config =
Francois Romieu5b0384f2006-08-16 16:00:01 +0200451 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Francois Romieu07d3f512007-02-21 22:40:46 +0100453static void mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 int i;
456
Francois Romieua6baf3a2007-11-08 23:23:21 +0100457 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Francois Romieu23714082006-01-29 00:49:09 +0100459 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100460 /*
461 * Check if the RTL8169 has completed writing to the specified
462 * MII register.
463 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200464 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 break;
Francois Romieu23714082006-01-29 00:49:09 +0100466 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468}
469
Francois Romieu07d3f512007-02-21 22:40:46 +0100470static int mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 int i, value = -1;
473
Francois Romieua6baf3a2007-11-08 23:23:21 +0100474 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Francois Romieu23714082006-01-29 00:49:09 +0100476 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100477 /*
478 * Check if the RTL8169 has completed retrieving data from
479 * the specified MII register.
480 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100482 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 break;
484 }
Francois Romieu23714082006-01-29 00:49:09 +0100485 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487 return value;
488}
489
Francois Romieuccdffb92008-07-26 14:26:06 +0200490static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
491 int val)
492{
493 struct rtl8169_private *tp = netdev_priv(dev);
494 void __iomem *ioaddr = tp->mmio_addr;
495
496 mdio_write(ioaddr, location, val);
497}
498
499static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
500{
501 struct rtl8169_private *tp = netdev_priv(dev);
502 void __iomem *ioaddr = tp->mmio_addr;
503
504 return mdio_read(ioaddr, location);
505}
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
508{
509 RTL_W16(IntrMask, 0x0000);
510
511 RTL_W16(IntrStatus, 0xffff);
512}
513
514static void rtl8169_asic_down(void __iomem *ioaddr)
515{
516 RTL_W8(ChipCmd, 0x00);
517 rtl8169_irq_mask_and_ack(ioaddr);
518 RTL_R16(CPlusCmd);
519}
520
521static unsigned int rtl8169_tbi_reset_pending(void __iomem *ioaddr)
522{
523 return RTL_R32(TBICSR) & TBIReset;
524}
525
526static unsigned int rtl8169_xmii_reset_pending(void __iomem *ioaddr)
527{
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200528 return mdio_read(ioaddr, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
531static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
532{
533 return RTL_R32(TBICSR) & TBILinkOk;
534}
535
536static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
537{
538 return RTL_R8(PHYstatus) & LinkStatus;
539}
540
541static void rtl8169_tbi_reset_enable(void __iomem *ioaddr)
542{
543 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
544}
545
546static void rtl8169_xmii_reset_enable(void __iomem *ioaddr)
547{
548 unsigned int val;
549
Francois Romieu9e0db8e2007-03-08 23:59:54 +0100550 val = mdio_read(ioaddr, MII_BMCR) | BMCR_RESET;
551 mdio_write(ioaddr, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554static void rtl8169_check_link_status(struct net_device *dev,
Francois Romieu07d3f512007-02-21 22:40:46 +0100555 struct rtl8169_private *tp,
556 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 unsigned long flags;
559
560 spin_lock_irqsave(&tp->lock, flags);
561 if (tp->link_ok(ioaddr)) {
562 netif_carrier_on(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200563 if (netif_msg_ifup(tp))
564 printk(KERN_INFO PFX "%s: link up\n", dev->name);
565 } else {
566 if (netif_msg_ifdown(tp))
567 printk(KERN_INFO PFX "%s: link down\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 netif_carrier_off(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 spin_unlock_irqrestore(&tp->lock, flags);
571}
572
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100573static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
574{
575 struct rtl8169_private *tp = netdev_priv(dev);
576 void __iomem *ioaddr = tp->mmio_addr;
577 u8 options;
578
579 wol->wolopts = 0;
580
581#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
582 wol->supported = WAKE_ANY;
583
584 spin_lock_irq(&tp->lock);
585
586 options = RTL_R8(Config1);
587 if (!(options & PMEnable))
588 goto out_unlock;
589
590 options = RTL_R8(Config3);
591 if (options & LinkUp)
592 wol->wolopts |= WAKE_PHY;
593 if (options & MagicPacket)
594 wol->wolopts |= WAKE_MAGIC;
595
596 options = RTL_R8(Config5);
597 if (options & UWF)
598 wol->wolopts |= WAKE_UCAST;
599 if (options & BWF)
Francois Romieu5b0384f2006-08-16 16:00:01 +0200600 wol->wolopts |= WAKE_BCAST;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100601 if (options & MWF)
Francois Romieu5b0384f2006-08-16 16:00:01 +0200602 wol->wolopts |= WAKE_MCAST;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100603
604out_unlock:
605 spin_unlock_irq(&tp->lock);
606}
607
608static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
609{
610 struct rtl8169_private *tp = netdev_priv(dev);
611 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +0100612 unsigned int i;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100613 static struct {
614 u32 opt;
615 u16 reg;
616 u8 mask;
617 } cfg[] = {
618 { WAKE_ANY, Config1, PMEnable },
619 { WAKE_PHY, Config3, LinkUp },
620 { WAKE_MAGIC, Config3, MagicPacket },
621 { WAKE_UCAST, Config5, UWF },
622 { WAKE_BCAST, Config5, BWF },
623 { WAKE_MCAST, Config5, MWF },
624 { WAKE_ANY, Config5, LanWake }
625 };
626
627 spin_lock_irq(&tp->lock);
628
629 RTL_W8(Cfg9346, Cfg9346_Unlock);
630
631 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
632 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
633 if (wol->wolopts & cfg[i].opt)
634 options |= cfg[i].mask;
635 RTL_W8(cfg[i].reg, options);
636 }
637
638 RTL_W8(Cfg9346, Cfg9346_Lock);
639
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200640 if (wol->wolopts)
641 tp->features |= RTL_FEATURE_WOL;
642 else
643 tp->features &= ~RTL_FEATURE_WOL;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100644
645 spin_unlock_irq(&tp->lock);
646
647 return 0;
648}
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650static void rtl8169_get_drvinfo(struct net_device *dev,
651 struct ethtool_drvinfo *info)
652{
653 struct rtl8169_private *tp = netdev_priv(dev);
654
655 strcpy(info->driver, MODULENAME);
656 strcpy(info->version, RTL8169_VERSION);
657 strcpy(info->bus_info, pci_name(tp->pci_dev));
658}
659
660static int rtl8169_get_regs_len(struct net_device *dev)
661{
662 return R8169_REGS_SIZE;
663}
664
665static int rtl8169_set_speed_tbi(struct net_device *dev,
666 u8 autoneg, u16 speed, u8 duplex)
667{
668 struct rtl8169_private *tp = netdev_priv(dev);
669 void __iomem *ioaddr = tp->mmio_addr;
670 int ret = 0;
671 u32 reg;
672
673 reg = RTL_R32(TBICSR);
674 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
675 (duplex == DUPLEX_FULL)) {
676 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
677 } else if (autoneg == AUTONEG_ENABLE)
678 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
679 else {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200680 if (netif_msg_link(tp)) {
681 printk(KERN_WARNING "%s: "
682 "incorrect speed setting refused in TBI mode\n",
683 dev->name);
684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 ret = -EOPNOTSUPP;
686 }
687
688 return ret;
689}
690
691static int rtl8169_set_speed_xmii(struct net_device *dev,
692 u8 autoneg, u16 speed, u8 duplex)
693{
694 struct rtl8169_private *tp = netdev_priv(dev);
695 void __iomem *ioaddr = tp->mmio_addr;
696 int auto_nego, giga_ctrl;
697
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200698 auto_nego = mdio_read(ioaddr, MII_ADVERTISE);
699 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
700 ADVERTISE_100HALF | ADVERTISE_100FULL);
701 giga_ctrl = mdio_read(ioaddr, MII_CTRL1000);
702 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 if (autoneg == AUTONEG_ENABLE) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200705 auto_nego |= (ADVERTISE_10HALF | ADVERTISE_10FULL |
706 ADVERTISE_100HALF | ADVERTISE_100FULL);
707 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 } else {
709 if (speed == SPEED_10)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200710 auto_nego |= ADVERTISE_10HALF | ADVERTISE_10FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 else if (speed == SPEED_100)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200712 auto_nego |= ADVERTISE_100HALF | ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 else if (speed == SPEED_1000)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200714 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 if (duplex == DUPLEX_HALF)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200717 auto_nego &= ~(ADVERTISE_10FULL | ADVERTISE_100FULL);
Andy Gospodarek726ecdc2006-01-31 19:16:52 +0100718
719 if (duplex == DUPLEX_FULL)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200720 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_100HALF);
Francois Romieubcf0bf92006-07-26 23:14:13 +0200721
722 /* This tweak comes straight from Realtek's driver. */
723 if ((speed == SPEED_100) && (duplex == DUPLEX_HALF) &&
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200724 ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
725 (tp->mac_version == RTL_GIGA_MAC_VER_16))) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200726 auto_nego = ADVERTISE_100HALF | ADVERTISE_CSMA;
Francois Romieubcf0bf92006-07-26 23:14:13 +0200727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729
Francois Romieubcf0bf92006-07-26 23:14:13 +0200730 /* The 8100e/8101e do Fast Ethernet only. */
731 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
732 (tp->mac_version == RTL_GIGA_MAC_VER_14) ||
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200733 (tp->mac_version == RTL_GIGA_MAC_VER_15) ||
734 (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200735 if ((giga_ctrl & (ADVERTISE_1000FULL | ADVERTISE_1000HALF)) &&
Francois Romieubcf0bf92006-07-26 23:14:13 +0200736 netif_msg_link(tp)) {
737 printk(KERN_INFO "%s: PHY does not support 1000Mbps.\n",
738 dev->name);
739 }
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200740 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742
Francois Romieu623a1592006-05-14 12:42:14 +0200743 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
744
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200745 if ((tp->mac_version == RTL_GIGA_MAC_VER_12) ||
746 (tp->mac_version == RTL_GIGA_MAC_VER_17)) {
Roger So2584fbc2007-07-31 23:52:42 +0200747 /* Vendor specific (0x1f) and reserved (0x0e) MII registers. */
748 mdio_write(ioaddr, 0x1f, 0x0000);
749 mdio_write(ioaddr, 0x0e, 0x0000);
750 }
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 tp->phy_auto_nego_reg = auto_nego;
753 tp->phy_1000_ctrl_reg = giga_ctrl;
754
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200755 mdio_write(ioaddr, MII_ADVERTISE, auto_nego);
756 mdio_write(ioaddr, MII_CTRL1000, giga_ctrl);
757 mdio_write(ioaddr, MII_BMCR, BMCR_ANENABLE | BMCR_ANRESTART);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return 0;
759}
760
761static int rtl8169_set_speed(struct net_device *dev,
762 u8 autoneg, u16 speed, u8 duplex)
763{
764 struct rtl8169_private *tp = netdev_priv(dev);
765 int ret;
766
767 ret = tp->set_speed(dev, autoneg, speed, duplex);
768
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200769 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
771
772 return ret;
773}
774
775static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
776{
777 struct rtl8169_private *tp = netdev_priv(dev);
778 unsigned long flags;
779 int ret;
780
781 spin_lock_irqsave(&tp->lock, flags);
782 ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
783 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +0200784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return ret;
786}
787
788static u32 rtl8169_get_rx_csum(struct net_device *dev)
789{
790 struct rtl8169_private *tp = netdev_priv(dev);
791
792 return tp->cp_cmd & RxChkSum;
793}
794
795static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
796{
797 struct rtl8169_private *tp = netdev_priv(dev);
798 void __iomem *ioaddr = tp->mmio_addr;
799 unsigned long flags;
800
801 spin_lock_irqsave(&tp->lock, flags);
802
803 if (data)
804 tp->cp_cmd |= RxChkSum;
805 else
806 tp->cp_cmd &= ~RxChkSum;
807
808 RTL_W16(CPlusCmd, tp->cp_cmd);
809 RTL_R16(CPlusCmd);
810
811 spin_unlock_irqrestore(&tp->lock, flags);
812
813 return 0;
814}
815
816#ifdef CONFIG_R8169_VLAN
817
818static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
819 struct sk_buff *skb)
820{
821 return (tp->vlgrp && vlan_tx_tag_present(skb)) ?
822 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
823}
824
825static void rtl8169_vlan_rx_register(struct net_device *dev,
826 struct vlan_group *grp)
827{
828 struct rtl8169_private *tp = netdev_priv(dev);
829 void __iomem *ioaddr = tp->mmio_addr;
830 unsigned long flags;
831
832 spin_lock_irqsave(&tp->lock, flags);
833 tp->vlgrp = grp;
834 if (tp->vlgrp)
835 tp->cp_cmd |= RxVlan;
836 else
837 tp->cp_cmd &= ~RxVlan;
838 RTL_W16(CPlusCmd, tp->cp_cmd);
839 RTL_R16(CPlusCmd);
840 spin_unlock_irqrestore(&tp->lock, flags);
841}
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
844 struct sk_buff *skb)
845{
846 u32 opts2 = le32_to_cpu(desc->opts2);
Francois Romieu865c6522008-05-11 14:51:00 +0200847 struct vlan_group *vlgrp = tp->vlgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 int ret;
849
Francois Romieu865c6522008-05-11 14:51:00 +0200850 if (vlgrp && (opts2 & RxVlanTag)) {
851 vlan_hwaccel_receive_skb(skb, vlgrp, swab16(opts2 & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 ret = 0;
853 } else
854 ret = -1;
855 desc->opts2 = 0;
856 return ret;
857}
858
859#else /* !CONFIG_R8169_VLAN */
860
861static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
862 struct sk_buff *skb)
863{
864 return 0;
865}
866
867static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
868 struct sk_buff *skb)
869{
870 return -1;
871}
872
873#endif
874
Francois Romieuccdffb92008-07-26 14:26:06 +0200875static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
877 struct rtl8169_private *tp = netdev_priv(dev);
878 void __iomem *ioaddr = tp->mmio_addr;
879 u32 status;
880
881 cmd->supported =
882 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
883 cmd->port = PORT_FIBRE;
884 cmd->transceiver = XCVR_INTERNAL;
885
886 status = RTL_R32(TBICSR);
887 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
888 cmd->autoneg = !!(status & TBINwEnable);
889
890 cmd->speed = SPEED_1000;
891 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +0200892
893 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
Francois Romieuccdffb92008-07-26 14:26:06 +0200896static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Francois Romieuccdffb92008-07-26 14:26:06 +0200900 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
903static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
904{
905 struct rtl8169_private *tp = netdev_priv(dev);
906 unsigned long flags;
Francois Romieuccdffb92008-07-26 14:26:06 +0200907 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 spin_lock_irqsave(&tp->lock, flags);
910
Francois Romieuccdffb92008-07-26 14:26:06 +0200911 rc = tp->get_settings(dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieuccdffb92008-07-26 14:26:06 +0200914 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
917static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
918 void *p)
919{
Francois Romieu5b0384f2006-08-16 16:00:01 +0200920 struct rtl8169_private *tp = netdev_priv(dev);
921 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Francois Romieu5b0384f2006-08-16 16:00:01 +0200923 if (regs->len > R8169_REGS_SIZE)
924 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Francois Romieu5b0384f2006-08-16 16:00:01 +0200926 spin_lock_irqsave(&tp->lock, flags);
927 memcpy_fromio(p, tp->mmio_addr, regs->len);
928 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200931static u32 rtl8169_get_msglevel(struct net_device *dev)
932{
933 struct rtl8169_private *tp = netdev_priv(dev);
934
935 return tp->msg_enable;
936}
937
938static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
939{
940 struct rtl8169_private *tp = netdev_priv(dev);
941
942 tp->msg_enable = value;
943}
944
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200945static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
946 "tx_packets",
947 "rx_packets",
948 "tx_errors",
949 "rx_errors",
950 "rx_missed",
951 "align_errors",
952 "tx_single_collisions",
953 "tx_multi_collisions",
954 "unicast",
955 "broadcast",
956 "multicast",
957 "tx_aborted",
958 "tx_underrun",
959};
960
961struct rtl8169_counters {
Al Virob1eab702007-08-23 02:30:16 -0400962 __le64 tx_packets;
963 __le64 rx_packets;
964 __le64 tx_errors;
965 __le32 rx_errors;
966 __le16 rx_missed;
967 __le16 align_errors;
968 __le32 tx_one_collision;
969 __le32 tx_multi_collision;
970 __le64 rx_unicast;
971 __le64 rx_broadcast;
972 __le32 rx_multicast;
973 __le16 tx_aborted;
974 __le16 tx_underun;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200975};
976
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700977static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200978{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700979 switch (sset) {
980 case ETH_SS_STATS:
981 return ARRAY_SIZE(rtl8169_gstrings);
982 default:
983 return -EOPNOTSUPP;
984 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200985}
986
987static void rtl8169_get_ethtool_stats(struct net_device *dev,
988 struct ethtool_stats *stats, u64 *data)
989{
990 struct rtl8169_private *tp = netdev_priv(dev);
991 void __iomem *ioaddr = tp->mmio_addr;
992 struct rtl8169_counters *counters;
993 dma_addr_t paddr;
994 u32 cmd;
995
996 ASSERT_RTNL();
997
998 counters = pci_alloc_consistent(tp->pci_dev, sizeof(*counters), &paddr);
999 if (!counters)
1000 return;
1001
1002 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
1003 cmd = (u64)paddr & DMA_32BIT_MASK;
1004 RTL_W32(CounterAddrLow, cmd);
1005 RTL_W32(CounterAddrLow, cmd | CounterDump);
1006
1007 while (RTL_R32(CounterAddrLow) & CounterDump) {
1008 if (msleep_interruptible(1))
1009 break;
1010 }
1011
1012 RTL_W32(CounterAddrLow, 0);
1013 RTL_W32(CounterAddrHigh, 0);
1014
Francois Romieu5b0384f2006-08-16 16:00:01 +02001015 data[0] = le64_to_cpu(counters->tx_packets);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001016 data[1] = le64_to_cpu(counters->rx_packets);
1017 data[2] = le64_to_cpu(counters->tx_errors);
1018 data[3] = le32_to_cpu(counters->rx_errors);
1019 data[4] = le16_to_cpu(counters->rx_missed);
1020 data[5] = le16_to_cpu(counters->align_errors);
1021 data[6] = le32_to_cpu(counters->tx_one_collision);
1022 data[7] = le32_to_cpu(counters->tx_multi_collision);
1023 data[8] = le64_to_cpu(counters->rx_unicast);
1024 data[9] = le64_to_cpu(counters->rx_broadcast);
1025 data[10] = le32_to_cpu(counters->rx_multicast);
1026 data[11] = le16_to_cpu(counters->tx_aborted);
1027 data[12] = le16_to_cpu(counters->tx_underun);
1028
1029 pci_free_consistent(tp->pci_dev, sizeof(*counters), counters, paddr);
1030}
1031
1032static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1033{
1034 switch(stringset) {
1035 case ETH_SS_STATS:
1036 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1037 break;
1038 }
1039}
1040
Jeff Garzik7282d492006-09-13 14:30:00 -04001041static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 .get_drvinfo = rtl8169_get_drvinfo,
1043 .get_regs_len = rtl8169_get_regs_len,
1044 .get_link = ethtool_op_get_link,
1045 .get_settings = rtl8169_get_settings,
1046 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001047 .get_msglevel = rtl8169_get_msglevel,
1048 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 .get_rx_csum = rtl8169_get_rx_csum,
1050 .set_rx_csum = rtl8169_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 .set_tx_csum = ethtool_op_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 .set_tso = ethtool_op_set_tso,
1054 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001055 .get_wol = rtl8169_get_wol,
1056 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001057 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001058 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001059 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060};
1061
Francois Romieu07d3f512007-02-21 22:40:46 +01001062static void rtl8169_write_gmii_reg_bit(void __iomem *ioaddr, int reg,
1063 int bitnum, int bitval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
1065 int val;
1066
1067 val = mdio_read(ioaddr, reg);
1068 val = (bitval == 1) ?
1069 val | (bitval << bitnum) : val & ~(0x0001 << bitnum);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001070 mdio_write(ioaddr, reg, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
1072
Francois Romieu07d3f512007-02-21 22:40:46 +01001073static void rtl8169_get_mac_version(struct rtl8169_private *tp,
1074 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
Francois Romieu0e485152007-02-20 00:00:26 +01001076 /*
1077 * The driver currently handles the 8168Bf and the 8168Be identically
1078 * but they can be identified more specifically through the test below
1079 * if needed:
1080 *
1081 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001082 *
1083 * Same thing for the 8101Eb and the 8101Ec:
1084 *
1085 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001086 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 const struct {
1088 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001089 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 int mac_version;
1091 } mac_info[] = {
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001092 /* 8168B family. */
1093 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
1094 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1095 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
1096 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_20 },
1097
1098 /* 8168B family. */
1099 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1100 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1101 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1102 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1103
1104 /* 8101 family. */
1105 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
1106 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
1107 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1108 /* FIXME: where did these entries come from ? -- FR */
1109 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1110 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1111
1112 /* 8110 family. */
1113 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1114 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1115 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1116 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1117 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1118 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1119
1120 { 0x00000000, 0x00000000, RTL_GIGA_MAC_VER_01 } /* Catch-all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }, *p = mac_info;
1122 u32 reg;
1123
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001124 reg = RTL_R32(TxConfig);
1125 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 p++;
1127 tp->mac_version = p->mac_version;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001128
1129 if (p->mask == 0x00000000) {
1130 struct pci_dev *pdev = tp->pci_dev;
1131
1132 dev_info(&pdev->dev, "unknown MAC (%08x)\n", reg);
1133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
1136static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1137{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001138 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
Francois Romieu867763c2007-08-17 18:21:58 +02001141struct phy_reg {
1142 u16 reg;
1143 u16 val;
1144};
1145
1146static void rtl_phy_write(void __iomem *ioaddr, struct phy_reg *regs, int len)
1147{
1148 while (len-- > 0) {
1149 mdio_write(ioaddr, regs->reg, regs->val);
1150 regs++;
1151 }
1152}
1153
Francois Romieu5615d9f2007-08-17 17:50:46 +02001154static void rtl8169s_hw_phy_config(void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 struct {
1157 u16 regs[5]; /* Beware of bit-sign propagation */
1158 } phy_magic[5] = { {
1159 { 0x0000, //w 4 15 12 0
1160 0x00a1, //w 3 15 0 00a1
1161 0x0008, //w 2 15 0 0008
1162 0x1020, //w 1 15 0 1020
1163 0x1000 } },{ //w 0 15 0 1000
1164 { 0x7000, //w 4 15 12 7
1165 0xff41, //w 3 15 0 ff41
1166 0xde60, //w 2 15 0 de60
1167 0x0140, //w 1 15 0 0140
1168 0x0077 } },{ //w 0 15 0 0077
1169 { 0xa000, //w 4 15 12 a
1170 0xdf01, //w 3 15 0 df01
1171 0xdf20, //w 2 15 0 df20
1172 0xff95, //w 1 15 0 ff95
1173 0xfa00 } },{ //w 0 15 0 fa00
1174 { 0xb000, //w 4 15 12 b
1175 0xff41, //w 3 15 0 ff41
1176 0xde20, //w 2 15 0 de20
1177 0x0140, //w 1 15 0 0140
1178 0x00bb } },{ //w 0 15 0 00bb
1179 { 0xf000, //w 4 15 12 f
1180 0xdf01, //w 3 15 0 df01
1181 0xdf20, //w 2 15 0 df20
1182 0xff95, //w 1 15 0 ff95
1183 0xbf00 } //w 0 15 0 bf00
1184 }
1185 }, *p = phy_magic;
Francois Romieu07d3f512007-02-21 22:40:46 +01001186 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Francois Romieua441d7b2007-08-17 18:26:35 +02001188 mdio_write(ioaddr, 0x1f, 0x0001); //w 31 2 0 1
1189 mdio_write(ioaddr, 0x15, 0x1000); //w 21 15 0 1000
1190 mdio_write(ioaddr, 0x18, 0x65c7); //w 24 15 0 65c7
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
1192
1193 for (i = 0; i < ARRAY_SIZE(phy_magic); i++, p++) {
1194 int val, pos = 4;
1195
1196 val = (mdio_read(ioaddr, pos) & 0x0fff) | (p->regs[0] & 0xffff);
1197 mdio_write(ioaddr, pos, val);
1198 while (--pos >= 0)
1199 mdio_write(ioaddr, pos, p->regs[4 - pos] & 0xffff);
1200 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 1); //w 4 11 11 1
1201 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
1202 }
Francois Romieua441d7b2007-08-17 18:26:35 +02001203 mdio_write(ioaddr, 0x1f, 0x0000); //w 31 2 0 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Francois Romieu5615d9f2007-08-17 17:50:46 +02001206static void rtl8169sb_hw_phy_config(void __iomem *ioaddr)
1207{
Francois Romieua441d7b2007-08-17 18:26:35 +02001208 struct phy_reg phy_reg_init[] = {
1209 { 0x1f, 0x0002 },
1210 { 0x01, 0x90d0 },
1211 { 0x1f, 0x0000 }
1212 };
1213
1214 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02001215}
1216
Francois Romieu867763c2007-08-17 18:21:58 +02001217static void rtl8168cp_hw_phy_config(void __iomem *ioaddr)
1218{
1219 struct phy_reg phy_reg_init[] = {
1220 { 0x1f, 0x0000 },
1221 { 0x1d, 0x0f00 },
1222 { 0x1f, 0x0002 },
1223 { 0x0c, 0x1ec8 },
1224 { 0x1f, 0x0000 }
1225 };
1226
1227 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1228}
1229
1230static void rtl8168c_hw_phy_config(void __iomem *ioaddr)
1231{
1232 struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02001233 { 0x1f, 0x0001 },
1234 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02001235 { 0x1f, 0x0002 },
1236 { 0x00, 0x88d4 },
1237 { 0x01, 0x82b1 },
1238 { 0x03, 0x7002 },
1239 { 0x08, 0x9e30 },
1240 { 0x09, 0x01f0 },
1241 { 0x0a, 0x5500 },
1242 { 0x0c, 0x00c8 },
1243 { 0x1f, 0x0003 },
1244 { 0x12, 0xc096 },
1245 { 0x16, 0x000a },
1246 { 0x1f, 0x0000 }
1247 };
1248
1249 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1250}
1251
Francois Romieu7da97ec2007-10-18 15:20:43 +02001252static void rtl8168cx_hw_phy_config(void __iomem *ioaddr)
1253{
1254 struct phy_reg phy_reg_init[] = {
1255 { 0x1f, 0x0000 },
1256 { 0x12, 0x2300 },
1257 { 0x1f, 0x0003 },
1258 { 0x16, 0x0f0a },
1259 { 0x1f, 0x0000 },
1260 { 0x1f, 0x0002 },
1261 { 0x0c, 0x7eb8 },
1262 { 0x1f, 0x0000 }
1263 };
1264
1265 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1266}
1267
Francois Romieu5615d9f2007-08-17 17:50:46 +02001268static void rtl_hw_phy_config(struct net_device *dev)
1269{
1270 struct rtl8169_private *tp = netdev_priv(dev);
1271 void __iomem *ioaddr = tp->mmio_addr;
1272
1273 rtl8169_print_mac_version(tp);
1274
1275 switch (tp->mac_version) {
1276 case RTL_GIGA_MAC_VER_01:
1277 break;
1278 case RTL_GIGA_MAC_VER_02:
1279 case RTL_GIGA_MAC_VER_03:
1280 rtl8169s_hw_phy_config(ioaddr);
1281 break;
1282 case RTL_GIGA_MAC_VER_04:
1283 rtl8169sb_hw_phy_config(ioaddr);
1284 break;
Francois Romieu867763c2007-08-17 18:21:58 +02001285 case RTL_GIGA_MAC_VER_18:
1286 rtl8168cp_hw_phy_config(ioaddr);
1287 break;
1288 case RTL_GIGA_MAC_VER_19:
1289 rtl8168c_hw_phy_config(ioaddr);
1290 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02001291 case RTL_GIGA_MAC_VER_20:
1292 rtl8168cx_hw_phy_config(ioaddr);
1293 break;
Francois Romieu5615d9f2007-08-17 17:50:46 +02001294 default:
1295 break;
1296 }
1297}
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299static void rtl8169_phy_timer(unsigned long __opaque)
1300{
1301 struct net_device *dev = (struct net_device *)__opaque;
1302 struct rtl8169_private *tp = netdev_priv(dev);
1303 struct timer_list *timer = &tp->timer;
1304 void __iomem *ioaddr = tp->mmio_addr;
1305 unsigned long timeout = RTL8169_PHY_TIMEOUT;
1306
Francois Romieubcf0bf92006-07-26 23:14:13 +02001307 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001309 if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return;
1311
1312 spin_lock_irq(&tp->lock);
1313
1314 if (tp->phy_reset_pending(ioaddr)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02001315 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 * A busy loop could burn quite a few cycles on nowadays CPU.
1317 * Let's delay the execution of the timer for a few ticks.
1318 */
1319 timeout = HZ/10;
1320 goto out_mod_timer;
1321 }
1322
1323 if (tp->link_ok(ioaddr))
1324 goto out_unlock;
1325
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001326 if (netif_msg_link(tp))
1327 printk(KERN_WARNING "%s: PHY reset until link up\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 tp->phy_reset_enable(ioaddr);
1330
1331out_mod_timer:
1332 mod_timer(timer, jiffies + timeout);
1333out_unlock:
1334 spin_unlock_irq(&tp->lock);
1335}
1336
1337static inline void rtl8169_delete_timer(struct net_device *dev)
1338{
1339 struct rtl8169_private *tp = netdev_priv(dev);
1340 struct timer_list *timer = &tp->timer;
1341
Francois Romieue179bb72007-08-17 15:05:21 +02001342 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return;
1344
1345 del_timer_sync(timer);
1346}
1347
1348static inline void rtl8169_request_timer(struct net_device *dev)
1349{
1350 struct rtl8169_private *tp = netdev_priv(dev);
1351 struct timer_list *timer = &tp->timer;
1352
Francois Romieue179bb72007-08-17 15:05:21 +02001353 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return;
1355
Francois Romieu2efa53f2007-03-09 00:00:05 +01001356 mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
1358
1359#ifdef CONFIG_NET_POLL_CONTROLLER
1360/*
1361 * Polling 'interrupt' - used by things like netconsole to send skbs
1362 * without having to re-enable interrupts. It's not called while
1363 * the interrupt routine is executing.
1364 */
1365static void rtl8169_netpoll(struct net_device *dev)
1366{
1367 struct rtl8169_private *tp = netdev_priv(dev);
1368 struct pci_dev *pdev = tp->pci_dev;
1369
1370 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01001371 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 enable_irq(pdev->irq);
1373}
1374#endif
1375
1376static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
1377 void __iomem *ioaddr)
1378{
1379 iounmap(ioaddr);
1380 pci_release_regions(pdev);
1381 pci_disable_device(pdev);
1382 free_netdev(dev);
1383}
1384
Francois Romieubf793292006-11-01 00:53:05 +01001385static void rtl8169_phy_reset(struct net_device *dev,
1386 struct rtl8169_private *tp)
1387{
1388 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001389 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01001390
1391 tp->phy_reset_enable(ioaddr);
1392 for (i = 0; i < 100; i++) {
1393 if (!tp->phy_reset_pending(ioaddr))
1394 return;
1395 msleep(1);
1396 }
1397 if (netif_msg_link(tp))
1398 printk(KERN_ERR "%s: PHY reset failed.\n", dev->name);
1399}
1400
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001401static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001403 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001404
Francois Romieu5615d9f2007-08-17 17:50:46 +02001405 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001406
Marcus Sundberg773328942008-07-10 21:28:08 +02001407 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
1408 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
1409 RTL_W8(0x82, 0x01);
1410 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001411
Francois Romieu6dccd162007-02-13 23:38:05 +01001412 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
1413
1414 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
1415 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001416
Francois Romieubcf0bf92006-07-26 23:14:13 +02001417 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001418 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
1419 RTL_W8(0x82, 0x01);
1420 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
1421 mdio_write(ioaddr, 0x0b, 0x0000); //w 0x0b 15 0 0
1422 }
1423
Francois Romieubf793292006-11-01 00:53:05 +01001424 rtl8169_phy_reset(dev, tp);
1425
Francois Romieu901dda22007-02-21 00:10:20 +01001426 /*
1427 * rtl8169_set_speed_xmii takes good care of the Fast Ethernet
1428 * only 8101. Don't panic.
1429 */
1430 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001431
1432 if ((RTL_R8(PHYstatus) & TBI_Enable) && netif_msg_link(tp))
1433 printk(KERN_INFO PFX "%s: TBI auto-negotiating\n", dev->name);
1434}
1435
Francois Romieu773d2022007-01-31 23:47:43 +01001436static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
1437{
1438 void __iomem *ioaddr = tp->mmio_addr;
1439 u32 high;
1440 u32 low;
1441
1442 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
1443 high = addr[4] | (addr[5] << 8);
1444
1445 spin_lock_irq(&tp->lock);
1446
1447 RTL_W8(Cfg9346, Cfg9346_Unlock);
1448 RTL_W32(MAC0, low);
1449 RTL_W32(MAC4, high);
1450 RTL_W8(Cfg9346, Cfg9346_Lock);
1451
1452 spin_unlock_irq(&tp->lock);
1453}
1454
1455static int rtl_set_mac_address(struct net_device *dev, void *p)
1456{
1457 struct rtl8169_private *tp = netdev_priv(dev);
1458 struct sockaddr *addr = p;
1459
1460 if (!is_valid_ether_addr(addr->sa_data))
1461 return -EADDRNOTAVAIL;
1462
1463 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1464
1465 rtl_rar_set(tp, dev->dev_addr);
1466
1467 return 0;
1468}
1469
Francois Romieu5f787a12006-08-17 13:02:36 +02001470static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1471{
1472 struct rtl8169_private *tp = netdev_priv(dev);
1473 struct mii_ioctl_data *data = if_mii(ifr);
1474
1475 if (!netif_running(dev))
1476 return -ENODEV;
1477
1478 switch (cmd) {
1479 case SIOCGMIIPHY:
1480 data->phy_id = 32; /* Internal PHY */
1481 return 0;
1482
1483 case SIOCGMIIREG:
1484 data->val_out = mdio_read(tp->mmio_addr, data->reg_num & 0x1f);
1485 return 0;
1486
1487 case SIOCSMIIREG:
1488 if (!capable(CAP_NET_ADMIN))
1489 return -EPERM;
1490 mdio_write(tp->mmio_addr, data->reg_num & 0x1f, data->val_in);
1491 return 0;
1492 }
1493 return -EOPNOTSUPP;
1494}
1495
Francois Romieu0e485152007-02-20 00:00:26 +01001496static const struct rtl_cfg_info {
1497 void (*hw_start)(struct net_device *);
1498 unsigned int region;
1499 unsigned int align;
1500 u16 intr_event;
1501 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02001502 unsigned features;
Francois Romieu0e485152007-02-20 00:00:26 +01001503} rtl_cfg_infos [] = {
1504 [RTL_CFG_0] = {
1505 .hw_start = rtl_hw_start_8169,
1506 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01001507 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01001508 .intr_event = SYSErr | LinkChg | RxOverflow |
1509 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02001510 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Francois Romieuccdffb92008-07-26 14:26:06 +02001511 .features = RTL_FEATURE_GMII
Francois Romieu0e485152007-02-20 00:00:26 +01001512 },
1513 [RTL_CFG_1] = {
1514 .hw_start = rtl_hw_start_8168,
1515 .region = 2,
1516 .align = 8,
1517 .intr_event = SYSErr | LinkChg | RxOverflow |
1518 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02001519 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Francois Romieuccdffb92008-07-26 14:26:06 +02001520 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI
Francois Romieu0e485152007-02-20 00:00:26 +01001521 },
1522 [RTL_CFG_2] = {
1523 .hw_start = rtl_hw_start_8101,
1524 .region = 2,
1525 .align = 8,
1526 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
1527 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02001528 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Francois Romieuccdffb92008-07-26 14:26:06 +02001529 .features = RTL_FEATURE_MSI
Francois Romieu0e485152007-02-20 00:00:26 +01001530 }
1531};
1532
Francois Romieufbac58f2007-10-04 22:51:38 +02001533/* Cfg9346_Unlock assumed. */
1534static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
1535 const struct rtl_cfg_info *cfg)
1536{
1537 unsigned msi = 0;
1538 u8 cfg2;
1539
1540 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02001541 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02001542 if (pci_enable_msi(pdev)) {
1543 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
1544 } else {
1545 cfg2 |= MSIEnable;
1546 msi = RTL_FEATURE_MSI;
1547 }
1548 }
1549 RTL_W8(Config2, cfg2);
1550 return msi;
1551}
1552
1553static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
1554{
1555 if (tp->features & RTL_FEATURE_MSI) {
1556 pci_disable_msi(pdev);
1557 tp->features &= ~RTL_FEATURE_MSI;
1558 }
1559}
1560
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001561static int __devinit
1562rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
1563{
Francois Romieu0e485152007-02-20 00:00:26 +01001564 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
1565 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02001567 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001568 struct net_device *dev;
1569 void __iomem *ioaddr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001570 unsigned int i;
1571 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001573 if (netif_msg_drv(&debug)) {
1574 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
1575 MODULENAME, RTL8169_VERSION);
1576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001579 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001580 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001581 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001582 rc = -ENOMEM;
1583 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 }
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 SET_NETDEV_DEV(dev, &pdev->dev);
1587 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00001588 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02001589 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001590 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Francois Romieuccdffb92008-07-26 14:26:06 +02001592 mii = &tp->mii;
1593 mii->dev = dev;
1594 mii->mdio_read = rtl_mdio_read;
1595 mii->mdio_write = rtl_mdio_write;
1596 mii->phy_id_mask = 0x1f;
1597 mii->reg_num_mask = 0x1f;
1598 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 /* enable device (incl. PCI PM wakeup and hotplug setup) */
1601 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001602 if (rc < 0) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001603 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001604 dev_err(&pdev->dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001605 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
1607
1608 rc = pci_set_mwi(pdev);
1609 if (rc < 0)
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001610 goto err_out_disable_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001613 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001614 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001615 dev_err(&pdev->dev,
Francois Romieubcf0bf92006-07-26 23:14:13 +02001616 "region #%d not an MMIO resource, aborting\n",
1617 region);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 rc = -ENODEV;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001620 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001624 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001625 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001626 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001627 "Invalid PCI region size(s), aborting\n");
1628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 rc = -ENODEV;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001630 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 }
1632
1633 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001634 if (rc < 0) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001635 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001636 dev_err(&pdev->dev, "could not request regions.\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001637 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
1639
1640 tp->cp_cmd = PCIMulRW | RxChkSum;
1641
1642 if ((sizeof(dma_addr_t) > 4) &&
1643 !pci_set_dma_mask(pdev, DMA_64BIT_MASK) && use_dac) {
1644 tp->cp_cmd |= PCIDAC;
1645 dev->features |= NETIF_F_HIGHDMA;
1646 } else {
1647 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1648 if (rc < 0) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001649 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001650 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001651 "DMA configuration failed.\n");
1652 }
1653 goto err_out_free_res_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 }
1655 }
1656
1657 pci_set_master(pdev);
1658
1659 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001660 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001661 if (!ioaddr) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001662 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001663 dev_err(&pdev->dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 rc = -EIO;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001665 goto err_out_free_res_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
1667
Francois Romieu9c14cea2008-07-05 00:21:15 +02001668 tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1669 if (!tp->pcie_cap && netif_msg_probe(tp))
1670 dev_info(&pdev->dev, "no PCI Express capability\n");
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 /* Unneeded ? Don't mess with Mrs. Murphy. */
1673 rtl8169_irq_mask_and_ack(ioaddr);
1674
1675 /* Soft reset the chip. */
1676 RTL_W8(ChipCmd, CmdReset);
1677
1678 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01001679 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1681 break;
Francois Romieub518fa82006-08-16 15:23:13 +02001682 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 }
1684
1685 /* Identify chip attached to board */
1686 rtl8169_get_mac_version(tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Roel Kluincee60c32008-04-17 22:35:54 +02001690 for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (tp->mac_version == rtl_chip_info[i].mac_version)
1692 break;
1693 }
Roel Kluincee60c32008-04-17 22:35:54 +02001694 if (i == ARRAY_SIZE(rtl_chip_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 /* Unknown chip: assume array element #0, original RTL-8169 */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001696 if (netif_msg_probe(tp)) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001697 dev_printk(KERN_DEBUG, &pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001698 "unknown chip version, assuming %s\n",
1699 rtl_chip_info[0].name);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001700 }
Roel Kluincee60c32008-04-17 22:35:54 +02001701 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
1703 tp->chipset = i;
1704
Francois Romieu5d06a992006-02-23 00:47:58 +01001705 RTL_W8(Cfg9346, Cfg9346_Unlock);
1706 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
1707 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Francois Romieufbac58f2007-10-04 22:51:38 +02001708 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01001709 RTL_W8(Cfg9346, Cfg9346_Lock);
1710
Francois Romieu66ec5d42007-11-06 22:56:10 +01001711 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
1712 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 tp->set_speed = rtl8169_set_speed_tbi;
1714 tp->get_settings = rtl8169_gset_tbi;
1715 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
1716 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
1717 tp->link_ok = rtl8169_tbi_link_ok;
1718
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001719 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 } else {
1721 tp->set_speed = rtl8169_set_speed_xmii;
1722 tp->get_settings = rtl8169_gset_xmii;
1723 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
1724 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
1725 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu5f787a12006-08-17 13:02:36 +02001726
1727 dev->do_ioctl = rtl8169_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 }
1729
1730 /* Get MAC address. FIXME: read EEPROM */
1731 for (i = 0; i < MAC_ADDR_LEN; i++)
1732 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04001733 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735 dev->open = rtl8169_open;
1736 dev->hard_start_xmit = rtl8169_start_xmit;
1737 dev->get_stats = rtl8169_get_stats;
1738 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
1739 dev->stop = rtl8169_close;
1740 dev->tx_timeout = rtl8169_tx_timeout;
Francois Romieu07ce4062007-02-23 23:36:39 +01001741 dev->set_multicast_list = rtl_set_rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
1743 dev->irq = pdev->irq;
1744 dev->base_addr = (unsigned long) ioaddr;
1745 dev->change_mtu = rtl8169_change_mtu;
Francois Romieu773d2022007-01-31 23:47:43 +01001746 dev->set_mac_address = rtl_set_mac_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001748 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750#ifdef CONFIG_R8169_VLAN
1751 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
1752 dev->vlan_rx_register = rtl8169_vlan_rx_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753#endif
1754
1755#ifdef CONFIG_NET_POLL_CONTROLLER
1756 dev->poll_controller = rtl8169_netpoll;
1757#endif
1758
1759 tp->intr_mask = 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 tp->mmio_addr = ioaddr;
Francois Romieu0e485152007-02-20 00:00:26 +01001761 tp->align = cfg->align;
1762 tp->hw_start = cfg->hw_start;
1763 tp->intr_event = cfg->intr_event;
1764 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Francois Romieu2efa53f2007-03-09 00:00:05 +01001766 init_timer(&tp->timer);
1767 tp->timer.data = (unsigned long) dev;
1768 tp->timer.function = rtl8169_phy_timer;
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 spin_lock_init(&tp->lock);
1771
1772 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001773 if (rc < 0)
Francois Romieufbac58f2007-10-04 22:51:38 +02001774 goto err_out_msi_5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
1776 pci_set_drvdata(pdev, dev);
1777
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001778 if (netif_msg_probe(tp)) {
Francois Romieu96b97092007-05-30 00:32:05 +02001779 u32 xid = RTL_R32(TxConfig) & 0x7cf0f8ff;
1780
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001781 printk(KERN_INFO "%s: %s at 0x%lx, "
1782 "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x, "
Francois Romieu96b97092007-05-30 00:32:05 +02001783 "XID %08x IRQ %d\n",
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001784 dev->name,
Francois Romieubcf0bf92006-07-26 23:14:13 +02001785 rtl_chip_info[tp->chipset].name,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001786 dev->base_addr,
1787 dev->dev_addr[0], dev->dev_addr[1],
1788 dev->dev_addr[2], dev->dev_addr[3],
Francois Romieu96b97092007-05-30 00:32:05 +02001789 dev->dev_addr[4], dev->dev_addr[5], xid, dev->irq);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001792 rtl8169_init_phy(dev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001794out:
1795 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Francois Romieufbac58f2007-10-04 22:51:38 +02001797err_out_msi_5:
1798 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001799 iounmap(ioaddr);
1800err_out_free_res_4:
1801 pci_release_regions(pdev);
1802err_out_mwi_3:
1803 pci_clear_mwi(pdev);
1804err_out_disable_2:
1805 pci_disable_device(pdev);
1806err_out_free_dev_1:
1807 free_netdev(dev);
1808 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809}
1810
Francois Romieu07d3f512007-02-21 22:40:46 +01001811static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
1813 struct net_device *dev = pci_get_drvdata(pdev);
1814 struct rtl8169_private *tp = netdev_priv(dev);
1815
Francois Romieueb2a0212007-02-15 23:37:21 +01001816 flush_scheduled_work();
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 unregister_netdev(dev);
Francois Romieufbac58f2007-10-04 22:51:38 +02001819 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 rtl8169_release_board(pdev, dev, tp->mmio_addr);
1821 pci_set_drvdata(pdev, NULL);
1822}
1823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824static void rtl8169_set_rxbufsize(struct rtl8169_private *tp,
1825 struct net_device *dev)
1826{
1827 unsigned int mtu = dev->mtu;
1828
1829 tp->rx_buf_sz = (mtu > RX_BUF_SIZE) ? mtu + ETH_HLEN + 8 : RX_BUF_SIZE;
1830}
1831
1832static int rtl8169_open(struct net_device *dev)
1833{
1834 struct rtl8169_private *tp = netdev_priv(dev);
1835 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02001836 int retval = -ENOMEM;
1837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 rtl8169_set_rxbufsize(tp, dev);
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 /*
1842 * Rx and Tx desscriptors needs 256 bytes alignment.
1843 * pci_alloc_consistent provides more.
1844 */
1845 tp->TxDescArray = pci_alloc_consistent(pdev, R8169_TX_RING_BYTES,
1846 &tp->TxPhyAddr);
1847 if (!tp->TxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02001848 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 tp->RxDescArray = pci_alloc_consistent(pdev, R8169_RX_RING_BYTES,
1851 &tp->RxPhyAddr);
1852 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02001853 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 retval = rtl8169_init_ring(dev);
1856 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02001857 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
David Howellsc4028952006-11-22 14:57:56 +00001859 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Francois Romieu99f252b2007-04-02 22:59:59 +02001861 smp_mb();
1862
Francois Romieufbac58f2007-10-04 22:51:38 +02001863 retval = request_irq(dev->irq, rtl8169_interrupt,
1864 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02001865 dev->name, dev);
1866 if (retval < 0)
1867 goto err_release_ring_2;
1868
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001869 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001870
Francois Romieu07ce4062007-02-23 23:36:39 +01001871 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873 rtl8169_request_timer(dev);
1874
1875 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
1876out:
1877 return retval;
1878
Francois Romieu99f252b2007-04-02 22:59:59 +02001879err_release_ring_2:
1880 rtl8169_rx_clear(tp);
1881err_free_rx_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
1883 tp->RxPhyAddr);
Francois Romieu99f252b2007-04-02 22:59:59 +02001884err_free_tx_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
1886 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 goto out;
1888}
1889
1890static void rtl8169_hw_reset(void __iomem *ioaddr)
1891{
1892 /* Disable interrupts */
1893 rtl8169_irq_mask_and_ack(ioaddr);
1894
1895 /* Reset the chipset */
1896 RTL_W8(ChipCmd, CmdReset);
1897
1898 /* PCI commit */
1899 RTL_R8(ChipCmd);
1900}
1901
Francois Romieu7f796d82007-06-11 23:04:41 +02001902static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01001903{
1904 void __iomem *ioaddr = tp->mmio_addr;
1905 u32 cfg = rtl8169_rx_config;
1906
1907 cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
1908 RTL_W32(RxConfig, cfg);
1909
1910 /* Set DMA burst size and Interframe Gap Time */
1911 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
1912 (InterFrameGap << TxInterFrameGapShift));
1913}
1914
Francois Romieu07ce4062007-02-23 23:36:39 +01001915static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
1917 struct rtl8169_private *tp = netdev_priv(dev);
1918 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001919 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 /* Soft reset the chip. */
1922 RTL_W8(ChipCmd, CmdReset);
1923
1924 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01001925 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1927 break;
Francois Romieub518fa82006-08-16 15:23:13 +02001928 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930
Francois Romieu07ce4062007-02-23 23:36:39 +01001931 tp->hw_start(dev);
1932
Francois Romieu07ce4062007-02-23 23:36:39 +01001933 netif_start_queue(dev);
1934}
1935
1936
Francois Romieu7f796d82007-06-11 23:04:41 +02001937static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
1938 void __iomem *ioaddr)
1939{
1940 /*
1941 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
1942 * register to be written before TxDescAddrLow to work.
1943 * Switching from MMIO to I/O access fixes the issue as well.
1944 */
1945 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
1946 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_32BIT_MASK);
1947 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
1948 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_32BIT_MASK);
1949}
1950
1951static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
1952{
1953 u16 cmd;
1954
1955 cmd = RTL_R16(CPlusCmd);
1956 RTL_W16(CPlusCmd, cmd);
1957 return cmd;
1958}
1959
1960static void rtl_set_rx_max_size(void __iomem *ioaddr)
1961{
1962 /* Low hurts. Let's disable the filtering. */
1963 RTL_W16(RxMaxSize, 16383);
1964}
1965
Francois Romieu6dccd162007-02-13 23:38:05 +01001966static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
1967{
1968 struct {
1969 u32 mac_version;
1970 u32 clk;
1971 u32 val;
1972 } cfg2_info [] = {
1973 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
1974 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
1975 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
1976 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
1977 }, *p = cfg2_info;
1978 unsigned int i;
1979 u32 clk;
1980
1981 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01001982 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01001983 if ((p->mac_version == mac_version) && (p->clk == clk)) {
1984 RTL_W32(0x7c, p->val);
1985 break;
1986 }
1987 }
1988}
1989
Francois Romieu07ce4062007-02-23 23:36:39 +01001990static void rtl_hw_start_8169(struct net_device *dev)
1991{
1992 struct rtl8169_private *tp = netdev_priv(dev);
1993 void __iomem *ioaddr = tp->mmio_addr;
1994 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01001995
Francois Romieu9cb427b2006-11-02 00:10:16 +01001996 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
1997 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
1998 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
1999 }
2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieu9cb427b2006-11-02 00:10:16 +01002002 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
2003 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
2004 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
2005 (tp->mac_version == RTL_GIGA_MAC_VER_04))
2006 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 RTL_W8(EarlyTxThres, EarlyTxThld);
2009
Francois Romieu7f796d82007-06-11 23:04:41 +02002010 rtl_set_rx_max_size(ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Francois Romieuc946b302007-10-04 00:42:50 +02002012 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
2013 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
2014 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
2015 (tp->mac_version == RTL_GIGA_MAC_VER_04))
2016 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Francois Romieu7f796d82007-06-11 23:04:41 +02002018 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02002019
2020 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
2021 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Joe Perches06fa7352007-10-18 21:15:00 +02002022 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02002024 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 }
2026
Francois Romieubcf0bf92006-07-26 23:14:13 +02002027 RTL_W16(CPlusCmd, tp->cp_cmd);
2028
Francois Romieu6dccd162007-02-13 23:38:05 +01002029 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
2030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 /*
2032 * Undocumented corner. Supposedly:
2033 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
2034 */
2035 RTL_W16(IntrMitigate, 0x0000);
2036
Francois Romieu7f796d82007-06-11 23:04:41 +02002037 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01002038
Francois Romieuc946b302007-10-04 00:42:50 +02002039 if ((tp->mac_version != RTL_GIGA_MAC_VER_01) &&
2040 (tp->mac_version != RTL_GIGA_MAC_VER_02) &&
2041 (tp->mac_version != RTL_GIGA_MAC_VER_03) &&
2042 (tp->mac_version != RTL_GIGA_MAC_VER_04)) {
2043 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2044 rtl_set_rx_tx_config_registers(tp);
2045 }
2046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02002048
2049 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
2050 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 RTL_W32(RxMissed, 0);
2053
Francois Romieu07ce4062007-02-23 23:36:39 +01002054 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056 /* no early-rx interrupts */
2057 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002058
2059 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01002060 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01002061}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Francois Romieu9c14cea2008-07-05 00:21:15 +02002063static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02002064{
Francois Romieu9c14cea2008-07-05 00:21:15 +02002065 struct net_device *dev = pci_get_drvdata(pdev);
2066 struct rtl8169_private *tp = netdev_priv(dev);
2067 int cap = tp->pcie_cap;
Francois Romieu458a9f62008-08-02 15:50:02 +02002068
Francois Romieu9c14cea2008-07-05 00:21:15 +02002069 if (cap) {
2070 u16 ctl;
2071
2072 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
2073 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
2074 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
2075 }
Francois Romieu458a9f62008-08-02 15:50:02 +02002076}
2077
Francois Romieu07ce4062007-02-23 23:36:39 +01002078static void rtl_hw_start_8168(struct net_device *dev)
2079{
Francois Romieu2dd99532007-06-11 23:22:52 +02002080 struct rtl8169_private *tp = netdev_priv(dev);
2081 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002082 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02002083
2084 RTL_W8(Cfg9346, Cfg9346_Unlock);
2085
2086 RTL_W8(EarlyTxThres, EarlyTxThld);
2087
2088 rtl_set_rx_max_size(ioaddr);
2089
Francois Romieu0e485152007-02-20 00:00:26 +01002090 rtl_set_rx_tx_config_registers(tp);
2091
2092 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02002093
2094 RTL_W16(CPlusCmd, tp->cp_cmd);
2095
Francois Romieu9c14cea2008-07-05 00:21:15 +02002096 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu0e485152007-02-20 00:00:26 +01002097
2098 RTL_W16(IntrMitigate, 0x5151);
2099
2100 /* Work around for RxFIFO overflow. */
2101 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
2102 tp->intr_event |= RxFIFOOver | PCSTimeout;
2103 tp->intr_event &= ~RxOverflow;
2104 }
Francois Romieu2dd99532007-06-11 23:22:52 +02002105
2106 rtl_set_rx_tx_desc_registers(tp, ioaddr);
2107
Francois Romieu2dd99532007-06-11 23:22:52 +02002108 RTL_W8(Cfg9346, Cfg9346_Lock);
2109
2110 RTL_R8(IntrMask);
2111
2112 RTL_W32(RxMissed, 0);
2113
2114 rtl_set_rx_mode(dev);
2115
Francois Romieu0e485152007-02-20 00:00:26 +01002116 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2117
Francois Romieu2dd99532007-06-11 23:22:52 +02002118 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002119
Francois Romieu0e485152007-02-20 00:00:26 +01002120 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01002121}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Francois Romieu07ce4062007-02-23 23:36:39 +01002123static void rtl_hw_start_8101(struct net_device *dev)
2124{
Francois Romieucdf1a602007-06-11 23:29:50 +02002125 struct rtl8169_private *tp = netdev_priv(dev);
2126 void __iomem *ioaddr = tp->mmio_addr;
2127 struct pci_dev *pdev = tp->pci_dev;
2128
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002129 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
2130 (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
Francois Romieu9c14cea2008-07-05 00:21:15 +02002131 int cap = tp->pcie_cap;
2132
2133 if (cap) {
2134 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
2135 PCI_EXP_DEVCTL_NOSNOOP_EN);
2136 }
Francois Romieucdf1a602007-06-11 23:29:50 +02002137 }
2138
2139 RTL_W8(Cfg9346, Cfg9346_Unlock);
2140
2141 RTL_W8(EarlyTxThres, EarlyTxThld);
2142
2143 rtl_set_rx_max_size(ioaddr);
2144
2145 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
2146
2147 RTL_W16(CPlusCmd, tp->cp_cmd);
2148
2149 RTL_W16(IntrMitigate, 0x0000);
2150
2151 rtl_set_rx_tx_desc_registers(tp, ioaddr);
2152
2153 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2154 rtl_set_rx_tx_config_registers(tp);
2155
2156 RTL_W8(Cfg9346, Cfg9346_Lock);
2157
2158 RTL_R8(IntrMask);
2159
2160 RTL_W32(RxMissed, 0);
2161
2162 rtl_set_rx_mode(dev);
2163
Francois Romieu0e485152007-02-20 00:00:26 +01002164 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2165
Francois Romieucdf1a602007-06-11 23:29:50 +02002166 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002167
Francois Romieu0e485152007-02-20 00:00:26 +01002168 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169}
2170
2171static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
2172{
2173 struct rtl8169_private *tp = netdev_priv(dev);
2174 int ret = 0;
2175
2176 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
2177 return -EINVAL;
2178
2179 dev->mtu = new_mtu;
2180
2181 if (!netif_running(dev))
2182 goto out;
2183
2184 rtl8169_down(dev);
2185
2186 rtl8169_set_rxbufsize(tp, dev);
2187
2188 ret = rtl8169_init_ring(dev);
2189 if (ret < 0)
2190 goto out;
2191
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002192 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Francois Romieu07ce4062007-02-23 23:36:39 +01002194 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 rtl8169_request_timer(dev);
2197
2198out:
2199 return ret;
2200}
2201
2202static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
2203{
Al Viro95e09182007-12-22 18:55:39 +00002204 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
2206}
2207
2208static void rtl8169_free_rx_skb(struct rtl8169_private *tp,
2209 struct sk_buff **sk_buff, struct RxDesc *desc)
2210{
2211 struct pci_dev *pdev = tp->pci_dev;
2212
2213 pci_unmap_single(pdev, le64_to_cpu(desc->addr), tp->rx_buf_sz,
2214 PCI_DMA_FROMDEVICE);
2215 dev_kfree_skb(*sk_buff);
2216 *sk_buff = NULL;
2217 rtl8169_make_unusable_by_asic(desc);
2218}
2219
2220static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
2221{
2222 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
2223
2224 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
2225}
2226
2227static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
2228 u32 rx_buf_sz)
2229{
2230 desc->addr = cpu_to_le64(mapping);
2231 wmb();
2232 rtl8169_mark_to_asic(desc, rx_buf_sz);
2233}
2234
Stephen Hemminger15d31752007-06-16 22:36:41 +02002235static struct sk_buff *rtl8169_alloc_rx_skb(struct pci_dev *pdev,
2236 struct net_device *dev,
2237 struct RxDesc *desc, int rx_buf_sz,
2238 unsigned int align)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239{
2240 struct sk_buff *skb;
2241 dma_addr_t mapping;
Francois Romieue9f63f32007-02-28 23:16:57 +01002242 unsigned int pad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Francois Romieue9f63f32007-02-28 23:16:57 +01002244 pad = align ? align : NET_IP_ALIGN;
2245
2246 skb = netdev_alloc_skb(dev, rx_buf_sz + pad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 if (!skb)
2248 goto err_out;
2249
Francois Romieue9f63f32007-02-28 23:16:57 +01002250 skb_reserve(skb, align ? ((pad - 1) & (unsigned long)skb->data) : pad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
David S. Miller689be432005-06-28 15:25:31 -07002252 mapping = pci_map_single(pdev, skb->data, rx_buf_sz,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 PCI_DMA_FROMDEVICE);
2254
2255 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256out:
Stephen Hemminger15d31752007-06-16 22:36:41 +02002257 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 rtl8169_make_unusable_by_asic(desc);
2261 goto out;
2262}
2263
2264static void rtl8169_rx_clear(struct rtl8169_private *tp)
2265{
Francois Romieu07d3f512007-02-21 22:40:46 +01002266 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
2268 for (i = 0; i < NUM_RX_DESC; i++) {
2269 if (tp->Rx_skbuff[i]) {
2270 rtl8169_free_rx_skb(tp, tp->Rx_skbuff + i,
2271 tp->RxDescArray + i);
2272 }
2273 }
2274}
2275
2276static u32 rtl8169_rx_fill(struct rtl8169_private *tp, struct net_device *dev,
2277 u32 start, u32 end)
2278{
2279 u32 cur;
Francois Romieu5b0384f2006-08-16 16:00:01 +02002280
Francois Romieu4ae47c22007-06-16 23:28:45 +02002281 for (cur = start; end - cur != 0; cur++) {
Stephen Hemminger15d31752007-06-16 22:36:41 +02002282 struct sk_buff *skb;
2283 unsigned int i = cur % NUM_RX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Francois Romieu4ae47c22007-06-16 23:28:45 +02002285 WARN_ON((s32)(end - cur) < 0);
2286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 if (tp->Rx_skbuff[i])
2288 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02002289
Stephen Hemminger15d31752007-06-16 22:36:41 +02002290 skb = rtl8169_alloc_rx_skb(tp->pci_dev, dev,
2291 tp->RxDescArray + i,
2292 tp->rx_buf_sz, tp->align);
2293 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 break;
Stephen Hemminger15d31752007-06-16 22:36:41 +02002295
2296 tp->Rx_skbuff[i] = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
2298 return cur - start;
2299}
2300
2301static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
2302{
2303 desc->opts1 |= cpu_to_le32(RingEnd);
2304}
2305
2306static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
2307{
2308 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
2309}
2310
2311static int rtl8169_init_ring(struct net_device *dev)
2312{
2313 struct rtl8169_private *tp = netdev_priv(dev);
2314
2315 rtl8169_init_ring_indexes(tp);
2316
2317 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
2318 memset(tp->Rx_skbuff, 0x0, NUM_RX_DESC * sizeof(struct sk_buff *));
2319
2320 if (rtl8169_rx_fill(tp, dev, 0, NUM_RX_DESC) != NUM_RX_DESC)
2321 goto err_out;
2322
2323 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
2324
2325 return 0;
2326
2327err_out:
2328 rtl8169_rx_clear(tp);
2329 return -ENOMEM;
2330}
2331
2332static void rtl8169_unmap_tx_skb(struct pci_dev *pdev, struct ring_info *tx_skb,
2333 struct TxDesc *desc)
2334{
2335 unsigned int len = tx_skb->len;
2336
2337 pci_unmap_single(pdev, le64_to_cpu(desc->addr), len, PCI_DMA_TODEVICE);
2338 desc->opts1 = 0x00;
2339 desc->opts2 = 0x00;
2340 desc->addr = 0x00;
2341 tx_skb->len = 0;
2342}
2343
2344static void rtl8169_tx_clear(struct rtl8169_private *tp)
2345{
2346 unsigned int i;
2347
2348 for (i = tp->dirty_tx; i < tp->dirty_tx + NUM_TX_DESC; i++) {
2349 unsigned int entry = i % NUM_TX_DESC;
2350 struct ring_info *tx_skb = tp->tx_skb + entry;
2351 unsigned int len = tx_skb->len;
2352
2353 if (len) {
2354 struct sk_buff *skb = tx_skb->skb;
2355
2356 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb,
2357 tp->TxDescArray + entry);
2358 if (skb) {
2359 dev_kfree_skb(skb);
2360 tx_skb->skb = NULL;
2361 }
Francois Romieucebf8cc2007-10-18 12:06:54 +02002362 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 }
2364 }
2365 tp->cur_tx = tp->dirty_tx = 0;
2366}
2367
David Howellsc4028952006-11-22 14:57:56 +00002368static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369{
2370 struct rtl8169_private *tp = netdev_priv(dev);
2371
David Howellsc4028952006-11-22 14:57:56 +00002372 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 schedule_delayed_work(&tp->task, 4);
2374}
2375
2376static void rtl8169_wait_for_quiescence(struct net_device *dev)
2377{
2378 struct rtl8169_private *tp = netdev_priv(dev);
2379 void __iomem *ioaddr = tp->mmio_addr;
2380
2381 synchronize_irq(dev->irq);
2382
2383 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002384 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
2386 rtl8169_irq_mask_and_ack(ioaddr);
2387
David S. Millerd1d08d12008-01-07 20:53:33 -08002388 tp->intr_mask = 0xffff;
2389 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002390 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391}
2392
David Howellsc4028952006-11-22 14:57:56 +00002393static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394{
David Howellsc4028952006-11-22 14:57:56 +00002395 struct rtl8169_private *tp =
2396 container_of(work, struct rtl8169_private, task.work);
2397 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 int ret;
2399
Francois Romieueb2a0212007-02-15 23:37:21 +01002400 rtnl_lock();
2401
2402 if (!netif_running(dev))
2403 goto out_unlock;
2404
2405 rtl8169_wait_for_quiescence(dev);
2406 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408 ret = rtl8169_open(dev);
2409 if (unlikely(ret < 0)) {
Francois Romieu07d3f512007-02-21 22:40:46 +01002410 if (net_ratelimit() && netif_msg_drv(tp)) {
Joe Perches53edbec2007-10-18 21:15:01 +02002411 printk(KERN_ERR PFX "%s: reinit failure (status = %d)."
Francois Romieu07d3f512007-02-21 22:40:46 +01002412 " Rescheduling.\n", dev->name, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 }
2414 rtl8169_schedule_work(dev, rtl8169_reinit_task);
2415 }
Francois Romieueb2a0212007-02-15 23:37:21 +01002416
2417out_unlock:
2418 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419}
2420
David Howellsc4028952006-11-22 14:57:56 +00002421static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422{
David Howellsc4028952006-11-22 14:57:56 +00002423 struct rtl8169_private *tp =
2424 container_of(work, struct rtl8169_private, task.work);
2425 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Francois Romieueb2a0212007-02-15 23:37:21 +01002427 rtnl_lock();
2428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01002430 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432 rtl8169_wait_for_quiescence(dev);
2433
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002434 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, ~(u32)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 rtl8169_tx_clear(tp);
2436
2437 if (tp->dirty_rx == tp->cur_rx) {
2438 rtl8169_init_ring_indexes(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01002439 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 netif_wake_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02002441 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 } else {
Francois Romieu07d3f512007-02-21 22:40:46 +01002443 if (net_ratelimit() && netif_msg_intr(tp)) {
Joe Perches53edbec2007-10-18 21:15:01 +02002444 printk(KERN_EMERG PFX "%s: Rx buffers shortage\n",
Francois Romieu07d3f512007-02-21 22:40:46 +01002445 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 }
2447 rtl8169_schedule_work(dev, rtl8169_reset_task);
2448 }
Francois Romieueb2a0212007-02-15 23:37:21 +01002449
2450out_unlock:
2451 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452}
2453
2454static void rtl8169_tx_timeout(struct net_device *dev)
2455{
2456 struct rtl8169_private *tp = netdev_priv(dev);
2457
2458 rtl8169_hw_reset(tp->mmio_addr);
2459
2460 /* Let's wait a bit while any (async) irq lands on */
2461 rtl8169_schedule_work(dev, rtl8169_reset_task);
2462}
2463
2464static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
2465 u32 opts1)
2466{
2467 struct skb_shared_info *info = skb_shinfo(skb);
2468 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04002469 struct TxDesc * uninitialized_var(txd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 entry = tp->cur_tx;
2472 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
2473 skb_frag_t *frag = info->frags + cur_frag;
2474 dma_addr_t mapping;
2475 u32 status, len;
2476 void *addr;
2477
2478 entry = (entry + 1) % NUM_TX_DESC;
2479
2480 txd = tp->TxDescArray + entry;
2481 len = frag->size;
2482 addr = ((void *) page_address(frag->page)) + frag->page_offset;
2483 mapping = pci_map_single(tp->pci_dev, addr, len, PCI_DMA_TODEVICE);
2484
2485 /* anti gcc 2.95.3 bugware (sic) */
2486 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
2487
2488 txd->opts1 = cpu_to_le32(status);
2489 txd->addr = cpu_to_le64(mapping);
2490
2491 tp->tx_skb[entry].len = len;
2492 }
2493
2494 if (cur_frag) {
2495 tp->tx_skb[entry].skb = skb;
2496 txd->opts1 |= cpu_to_le32(LastFrag);
2497 }
2498
2499 return cur_frag;
2500}
2501
2502static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
2503{
2504 if (dev->features & NETIF_F_TSO) {
Herbert Xu79671682006-06-22 02:40:14 -07002505 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
2507 if (mss)
2508 return LargeSend | ((mss & MSSMask) << MSSShift);
2509 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07002510 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002511 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513 if (ip->protocol == IPPROTO_TCP)
2514 return IPCS | TCPCS;
2515 else if (ip->protocol == IPPROTO_UDP)
2516 return IPCS | UDPCS;
2517 WARN_ON(1); /* we need a WARN() */
2518 }
2519 return 0;
2520}
2521
2522static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev)
2523{
2524 struct rtl8169_private *tp = netdev_priv(dev);
2525 unsigned int frags, entry = tp->cur_tx % NUM_TX_DESC;
2526 struct TxDesc *txd = tp->TxDescArray + entry;
2527 void __iomem *ioaddr = tp->mmio_addr;
2528 dma_addr_t mapping;
2529 u32 status, len;
2530 u32 opts1;
Francois Romieu188f4af2006-08-16 14:51:52 +02002531 int ret = NETDEV_TX_OK;
Francois Romieu5b0384f2006-08-16 16:00:01 +02002532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002534 if (netif_msg_drv(tp)) {
2535 printk(KERN_ERR
2536 "%s: BUG! Tx Ring full when queue awake!\n",
2537 dev->name);
2538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 goto err_stop;
2540 }
2541
2542 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
2543 goto err_stop;
2544
2545 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
2546
2547 frags = rtl8169_xmit_frags(tp, skb, opts1);
2548 if (frags) {
2549 len = skb_headlen(skb);
2550 opts1 |= FirstFrag;
2551 } else {
2552 len = skb->len;
2553
2554 if (unlikely(len < ETH_ZLEN)) {
Herbert Xu5b057c62006-06-23 02:06:41 -07002555 if (skb_padto(skb, ETH_ZLEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 goto err_update_stats;
2557 len = ETH_ZLEN;
2558 }
2559
2560 opts1 |= FirstFrag | LastFrag;
2561 tp->tx_skb[entry].skb = skb;
2562 }
2563
2564 mapping = pci_map_single(tp->pci_dev, skb->data, len, PCI_DMA_TODEVICE);
2565
2566 tp->tx_skb[entry].len = len;
2567 txd->addr = cpu_to_le64(mapping);
2568 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
2569
2570 wmb();
2571
2572 /* anti gcc 2.95.3 bugware (sic) */
2573 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
2574 txd->opts1 = cpu_to_le32(status);
2575
2576 dev->trans_start = jiffies;
2577
2578 tp->cur_tx += frags + 1;
2579
2580 smp_wmb();
2581
Francois Romieu275391a2007-02-23 23:50:28 +01002582 RTL_W8(TxPoll, NPQ); /* set polling bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
2585 netif_stop_queue(dev);
2586 smp_rmb();
2587 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
2588 netif_wake_queue(dev);
2589 }
2590
2591out:
2592 return ret;
2593
2594err_stop:
2595 netif_stop_queue(dev);
Francois Romieu188f4af2006-08-16 14:51:52 +02002596 ret = NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597err_update_stats:
Francois Romieucebf8cc2007-10-18 12:06:54 +02002598 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 goto out;
2600}
2601
2602static void rtl8169_pcierr_interrupt(struct net_device *dev)
2603{
2604 struct rtl8169_private *tp = netdev_priv(dev);
2605 struct pci_dev *pdev = tp->pci_dev;
2606 void __iomem *ioaddr = tp->mmio_addr;
2607 u16 pci_status, pci_cmd;
2608
2609 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
2610 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
2611
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002612 if (netif_msg_intr(tp)) {
2613 printk(KERN_ERR
2614 "%s: PCI error (cmd = 0x%04x, status = 0x%04x).\n",
2615 dev->name, pci_cmd, pci_status);
2616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
2618 /*
2619 * The recovery sequence below admits a very elaborated explanation:
2620 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01002621 * - I did not see what else could be done;
2622 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 *
2624 * Feel free to adjust to your needs.
2625 */
Francois Romieua27993f2006-12-18 00:04:19 +01002626 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01002627 pci_cmd &= ~PCI_COMMAND_PARITY;
2628 else
2629 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
2630
2631 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
2633 pci_write_config_word(pdev, PCI_STATUS,
2634 pci_status & (PCI_STATUS_DETECTED_PARITY |
2635 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
2636 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
2637
2638 /* The infamous DAC f*ckup only happens at boot time */
2639 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002640 if (netif_msg_intr(tp))
2641 printk(KERN_INFO "%s: disabling PCI DAC.\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 tp->cp_cmd &= ~PCIDAC;
2643 RTL_W16(CPlusCmd, tp->cp_cmd);
2644 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 }
2646
2647 rtl8169_hw_reset(ioaddr);
Francois Romieud03902b2006-11-23 00:00:42 +01002648
2649 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650}
2651
Francois Romieu07d3f512007-02-21 22:40:46 +01002652static void rtl8169_tx_interrupt(struct net_device *dev,
2653 struct rtl8169_private *tp,
2654 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655{
2656 unsigned int dirty_tx, tx_left;
2657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 dirty_tx = tp->dirty_tx;
2659 smp_rmb();
2660 tx_left = tp->cur_tx - dirty_tx;
2661
2662 while (tx_left > 0) {
2663 unsigned int entry = dirty_tx % NUM_TX_DESC;
2664 struct ring_info *tx_skb = tp->tx_skb + entry;
2665 u32 len = tx_skb->len;
2666 u32 status;
2667
2668 rmb();
2669 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
2670 if (status & DescOwn)
2671 break;
2672
Francois Romieucebf8cc2007-10-18 12:06:54 +02002673 dev->stats.tx_bytes += len;
2674 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
2676 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb, tp->TxDescArray + entry);
2677
2678 if (status & LastFrag) {
2679 dev_kfree_skb_irq(tx_skb->skb);
2680 tx_skb->skb = NULL;
2681 }
2682 dirty_tx++;
2683 tx_left--;
2684 }
2685
2686 if (tp->dirty_tx != dirty_tx) {
2687 tp->dirty_tx = dirty_tx;
2688 smp_wmb();
2689 if (netif_queue_stopped(dev) &&
2690 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
2691 netif_wake_queue(dev);
2692 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02002693 /*
2694 * 8168 hack: TxPoll requests are lost when the Tx packets are
2695 * too close. Let's kick an extra TxPoll request when a burst
2696 * of start_xmit activity is detected (if it is not detected,
2697 * it is slow enough). -- FR
2698 */
2699 smp_rmb();
2700 if (tp->cur_tx != dirty_tx)
2701 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 }
2703}
2704
Francois Romieu126fa4b2005-05-12 20:09:17 -04002705static inline int rtl8169_fragmented_frame(u32 status)
2706{
2707 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
2708}
2709
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710static inline void rtl8169_rx_csum(struct sk_buff *skb, struct RxDesc *desc)
2711{
2712 u32 opts1 = le32_to_cpu(desc->opts1);
2713 u32 status = opts1 & RxProtoMask;
2714
2715 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
2716 ((status == RxProtoUDP) && !(opts1 & UDPFail)) ||
2717 ((status == RxProtoIP) && !(opts1 & IPFail)))
2718 skb->ip_summed = CHECKSUM_UNNECESSARY;
2719 else
2720 skb->ip_summed = CHECKSUM_NONE;
2721}
2722
Francois Romieu07d3f512007-02-21 22:40:46 +01002723static inline bool rtl8169_try_rx_copy(struct sk_buff **sk_buff,
2724 struct rtl8169_private *tp, int pkt_size,
2725 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002727 struct sk_buff *skb;
2728 bool done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002730 if (pkt_size >= rx_copybreak)
2731 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Francois Romieu07d3f512007-02-21 22:40:46 +01002733 skb = netdev_alloc_skb(tp->dev, pkt_size + NET_IP_ALIGN);
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002734 if (!skb)
2735 goto out;
2736
Francois Romieu07d3f512007-02-21 22:40:46 +01002737 pci_dma_sync_single_for_cpu(tp->pci_dev, addr, pkt_size,
2738 PCI_DMA_FROMDEVICE);
Francois Romieu86402232007-02-20 22:20:51 +01002739 skb_reserve(skb, NET_IP_ALIGN);
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002740 skb_copy_from_linear_data(*sk_buff, skb->data, pkt_size);
2741 *sk_buff = skb;
2742 done = true;
2743out:
2744 return done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745}
2746
Francois Romieu07d3f512007-02-21 22:40:46 +01002747static int rtl8169_rx_interrupt(struct net_device *dev,
2748 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002749 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
2751 unsigned int cur_rx, rx_left;
2752 unsigned int delta, count;
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 cur_rx = tp->cur_rx;
2755 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02002756 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002758 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002760 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 u32 status;
2762
2763 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04002764 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766 if (status & DescOwn)
2767 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002768 if (unlikely(status & RxRES)) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002769 if (netif_msg_rx_err(tp)) {
2770 printk(KERN_INFO
2771 "%s: Rx ERROR. status = %08x\n",
2772 dev->name, status);
2773 }
Francois Romieucebf8cc2007-10-18 12:06:54 +02002774 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02002776 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02002778 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02002779 if (status & RxFOVF) {
2780 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02002781 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02002782 }
Francois Romieu126fa4b2005-05-12 20:09:17 -04002783 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 struct sk_buff *skb = tp->Rx_skbuff[entry];
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002786 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 int pkt_size = (status & 0x00001FFF) - 4;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002788 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Francois Romieu126fa4b2005-05-12 20:09:17 -04002790 /*
2791 * The driver does not support incoming fragmented
2792 * frames. They are seen as a symptom of over-mtu
2793 * sized frames.
2794 */
2795 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02002796 dev->stats.rx_dropped++;
2797 dev->stats.rx_length_errors++;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002798 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002799 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002800 }
2801
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 rtl8169_rx_csum(skb, desc);
Francois Romieubcf0bf92006-07-26 23:14:13 +02002803
Francois Romieu07d3f512007-02-21 22:40:46 +01002804 if (rtl8169_try_rx_copy(&skb, tp, pkt_size, addr)) {
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002805 pci_dma_sync_single_for_device(pdev, addr,
2806 pkt_size, PCI_DMA_FROMDEVICE);
2807 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
2808 } else {
2809 pci_unmap_single(pdev, addr, pkt_size,
2810 PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 tp->Rx_skbuff[entry] = NULL;
2812 }
2813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 skb_put(skb, pkt_size);
2815 skb->protocol = eth_type_trans(skb, dev);
2816
2817 if (rtl8169_rx_vlan_skb(tp, desc, skb) < 0)
Francois Romieu865c6522008-05-11 14:51:00 +02002818 netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
2820 dev->last_rx = jiffies;
Francois Romieucebf8cc2007-10-18 12:06:54 +02002821 dev->stats.rx_bytes += pkt_size;
2822 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 }
Francois Romieu6dccd162007-02-13 23:38:05 +01002824
2825 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00002826 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01002827 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
2828 desc->opts2 = 0;
2829 cur_rx++;
2830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 }
2832
2833 count = cur_rx - tp->cur_rx;
2834 tp->cur_rx = cur_rx;
2835
2836 delta = rtl8169_rx_fill(tp, dev, tp->dirty_rx, tp->cur_rx);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002837 if (!delta && count && netif_msg_intr(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 printk(KERN_INFO "%s: no Rx buffer allocated\n", dev->name);
2839 tp->dirty_rx += delta;
2840
2841 /*
2842 * FIXME: until there is periodic timer to try and refill the ring,
2843 * a temporary shortage may definitely kill the Rx process.
2844 * - disable the asic to try and avoid an overflow and kick it again
2845 * after refill ?
2846 * - how do others driver handle this condition (Uh oh...).
2847 */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002848 if ((tp->dirty_rx + NUM_RX_DESC == tp->cur_rx) && netif_msg_intr(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 printk(KERN_EMERG "%s: Rx buffers exhausted\n", dev->name);
2850
2851 return count;
2852}
2853
Francois Romieu07d3f512007-02-21 22:40:46 +01002854static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855{
Francois Romieu07d3f512007-02-21 22:40:46 +01002856 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02002860 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Francois Romieu865c6522008-05-11 14:51:00 +02002862 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Francois Romieu865c6522008-05-11 14:51:00 +02002864 /* hotplug/major error/no more work/shared irq */
2865 if ((status == 0xffff) || !status)
2866 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
Francois Romieu865c6522008-05-11 14:51:00 +02002868 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Francois Romieu865c6522008-05-11 14:51:00 +02002870 if (unlikely(!netif_running(dev))) {
2871 rtl8169_asic_down(ioaddr);
2872 goto out;
2873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Francois Romieu865c6522008-05-11 14:51:00 +02002875 status &= tp->intr_mask;
2876 RTL_W16(IntrStatus,
2877 (status & RxFIFOOver) ? (status | RxOverflow) : status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Francois Romieu865c6522008-05-11 14:51:00 +02002879 if (!(status & tp->intr_event))
2880 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Francois Romieu865c6522008-05-11 14:51:00 +02002882 /* Work around for rx fifo overflow */
2883 if (unlikely(status & RxFIFOOver) &&
2884 (tp->mac_version == RTL_GIGA_MAC_VER_11)) {
2885 netif_stop_queue(dev);
2886 rtl8169_tx_timeout(dev);
2887 goto out;
2888 }
Francois Romieu0e485152007-02-20 00:00:26 +01002889
Francois Romieu865c6522008-05-11 14:51:00 +02002890 if (unlikely(status & SYSErr)) {
2891 rtl8169_pcierr_interrupt(dev);
2892 goto out;
2893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
Francois Romieu865c6522008-05-11 14:51:00 +02002895 if (status & LinkChg)
2896 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Francois Romieu865c6522008-05-11 14:51:00 +02002898 if (status & tp->napi_event) {
2899 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
2900 tp->intr_mask = ~tp->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002902 if (likely(netif_rx_schedule_prep(dev, &tp->napi)))
2903 __netif_rx_schedule(dev, &tp->napi);
Francois Romieu865c6522008-05-11 14:51:00 +02002904 else if (netif_msg_intr(tp)) {
2905 printk(KERN_INFO "%s: interrupt %04x in poll\n",
2906 dev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 }
2909out:
2910 return IRQ_RETVAL(handled);
2911}
2912
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002913static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002915 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
2916 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002918 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002920 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 rtl8169_tx_interrupt(dev, tp, ioaddr);
2922
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002923 if (work_done < budget) {
2924 netif_rx_complete(dev, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 tp->intr_mask = 0xffff;
2926 /*
2927 * 20040426: the barrier is not strictly required but the
2928 * behavior of the irq handler could be less predictable
2929 * without it. Btw, the lack of flush for the posted pci
2930 * write is safe - FR
2931 */
2932 smp_wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01002933 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 }
2935
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002936 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
2939static void rtl8169_down(struct net_device *dev)
2940{
2941 struct rtl8169_private *tp = netdev_priv(dev);
2942 void __iomem *ioaddr = tp->mmio_addr;
Arnaud Patard733b7362006-10-12 22:33:31 +02002943 unsigned int intrmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
2945 rtl8169_delete_timer(dev);
2946
2947 netif_stop_queue(dev);
2948
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01002949 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01002950
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951core_down:
2952 spin_lock_irq(&tp->lock);
2953
2954 rtl8169_asic_down(ioaddr);
2955
2956 /* Update the error counts. */
Francois Romieucebf8cc2007-10-18 12:06:54 +02002957 dev->stats.rx_missed_errors += RTL_R32(RxMissed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 RTL_W32(RxMissed, 0);
2959
2960 spin_unlock_irq(&tp->lock);
2961
2962 synchronize_irq(dev->irq);
2963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002965 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966
2967 /*
2968 * And now for the 50k$ question: are IRQ disabled or not ?
2969 *
2970 * Two paths lead here:
2971 * 1) dev->close
2972 * -> netif_running() is available to sync the current code and the
2973 * IRQ handler. See rtl8169_interrupt for details.
2974 * 2) dev->change_mtu
2975 * -> rtl8169_poll can not be issued again and re-enable the
2976 * interruptions. Let's simply issue the IRQ down sequence again.
Arnaud Patard733b7362006-10-12 22:33:31 +02002977 *
2978 * No loop if hotpluged or major error (0xffff).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 */
Arnaud Patard733b7362006-10-12 22:33:31 +02002980 intrmask = RTL_R16(IntrMask);
2981 if (intrmask && (intrmask != 0xffff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 goto core_down;
2983
2984 rtl8169_tx_clear(tp);
2985
2986 rtl8169_rx_clear(tp);
2987}
2988
2989static int rtl8169_close(struct net_device *dev)
2990{
2991 struct rtl8169_private *tp = netdev_priv(dev);
2992 struct pci_dev *pdev = tp->pci_dev;
2993
2994 rtl8169_down(dev);
2995
2996 free_irq(dev->irq, dev);
2997
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
2999 tp->RxPhyAddr);
3000 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
3001 tp->TxPhyAddr);
3002 tp->TxDescArray = NULL;
3003 tp->RxDescArray = NULL;
3004
3005 return 0;
3006}
3007
Francois Romieu07ce4062007-02-23 23:36:39 +01003008static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
3010 struct rtl8169_private *tp = netdev_priv(dev);
3011 void __iomem *ioaddr = tp->mmio_addr;
3012 unsigned long flags;
3013 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01003014 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 u32 tmp = 0;
3016
3017 if (dev->flags & IFF_PROMISC) {
3018 /* Unconditionally log net taps. */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003019 if (netif_msg_link(tp)) {
3020 printk(KERN_NOTICE "%s: Promiscuous mode enabled.\n",
3021 dev->name);
3022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 rx_mode =
3024 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
3025 AcceptAllPhys;
3026 mc_filter[1] = mc_filter[0] = 0xffffffff;
3027 } else if ((dev->mc_count > multicast_filter_limit)
3028 || (dev->flags & IFF_ALLMULTI)) {
3029 /* Too many to filter perfectly -- accept all multicasts. */
3030 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
3031 mc_filter[1] = mc_filter[0] = 0xffffffff;
3032 } else {
3033 struct dev_mc_list *mclist;
Francois Romieu07d3f512007-02-21 22:40:46 +01003034 unsigned int i;
3035
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 rx_mode = AcceptBroadcast | AcceptMyPhys;
3037 mc_filter[1] = mc_filter[0] = 0;
3038 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
3039 i++, mclist = mclist->next) {
3040 int bit_nr = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
3041 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
3042 rx_mode |= AcceptMulticast;
3043 }
3044 }
3045
3046 spin_lock_irqsave(&tp->lock, flags);
3047
3048 tmp = rtl8169_rx_config | rx_mode |
3049 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
3050
Francois Romieuf887cce2008-07-17 22:24:18 +02003051 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01003052 u32 data = mc_filter[0];
3053
3054 mc_filter[0] = swab32(mc_filter[1]);
3055 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02003056 }
3057
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 RTL_W32(MAR0 + 0, mc_filter[0]);
3059 RTL_W32(MAR0 + 4, mc_filter[1]);
3060
Francois Romieu57a9f232007-06-04 22:10:15 +02003061 RTL_W32(RxConfig, tmp);
3062
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 spin_unlock_irqrestore(&tp->lock, flags);
3064}
3065
3066/**
3067 * rtl8169_get_stats - Get rtl8169 read/write statistics
3068 * @dev: The Ethernet Device to get statistics for
3069 *
3070 * Get TX/RX statistics for rtl8169
3071 */
3072static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
3073{
3074 struct rtl8169_private *tp = netdev_priv(dev);
3075 void __iomem *ioaddr = tp->mmio_addr;
3076 unsigned long flags;
3077
3078 if (netif_running(dev)) {
3079 spin_lock_irqsave(&tp->lock, flags);
Francois Romieucebf8cc2007-10-18 12:06:54 +02003080 dev->stats.rx_missed_errors += RTL_R32(RxMissed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 RTL_W32(RxMissed, 0);
3082 spin_unlock_irqrestore(&tp->lock, flags);
3083 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02003084
Francois Romieucebf8cc2007-10-18 12:06:54 +02003085 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086}
3087
Francois Romieu5d06a992006-02-23 00:47:58 +01003088#ifdef CONFIG_PM
3089
3090static int rtl8169_suspend(struct pci_dev *pdev, pm_message_t state)
3091{
3092 struct net_device *dev = pci_get_drvdata(pdev);
3093 struct rtl8169_private *tp = netdev_priv(dev);
3094 void __iomem *ioaddr = tp->mmio_addr;
3095
3096 if (!netif_running(dev))
Francois Romieu1371fa62007-04-02 23:01:11 +02003097 goto out_pci_suspend;
Francois Romieu5d06a992006-02-23 00:47:58 +01003098
3099 netif_device_detach(dev);
3100 netif_stop_queue(dev);
3101
3102 spin_lock_irq(&tp->lock);
3103
3104 rtl8169_asic_down(ioaddr);
3105
Francois Romieucebf8cc2007-10-18 12:06:54 +02003106 dev->stats.rx_missed_errors += RTL_R32(RxMissed);
Francois Romieu5d06a992006-02-23 00:47:58 +01003107 RTL_W32(RxMissed, 0);
3108
3109 spin_unlock_irq(&tp->lock);
3110
Francois Romieu1371fa62007-04-02 23:01:11 +02003111out_pci_suspend:
Francois Romieu5d06a992006-02-23 00:47:58 +01003112 pci_save_state(pdev);
Francois Romieuf23e7fd2007-10-04 22:36:14 +02003113 pci_enable_wake(pdev, pci_choose_state(pdev, state),
3114 (tp->features & RTL_FEATURE_WOL) ? 1 : 0);
Francois Romieu5d06a992006-02-23 00:47:58 +01003115 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Francois Romieu1371fa62007-04-02 23:01:11 +02003116
Francois Romieu5d06a992006-02-23 00:47:58 +01003117 return 0;
3118}
3119
3120static int rtl8169_resume(struct pci_dev *pdev)
3121{
3122 struct net_device *dev = pci_get_drvdata(pdev);
3123
Francois Romieu1371fa62007-04-02 23:01:11 +02003124 pci_set_power_state(pdev, PCI_D0);
3125 pci_restore_state(pdev);
3126 pci_enable_wake(pdev, PCI_D0, 0);
3127
Francois Romieu5d06a992006-02-23 00:47:58 +01003128 if (!netif_running(dev))
3129 goto out;
3130
3131 netif_device_attach(dev);
3132
Francois Romieu5d06a992006-02-23 00:47:58 +01003133 rtl8169_schedule_work(dev, rtl8169_reset_task);
3134out:
3135 return 0;
3136}
3137
3138#endif /* CONFIG_PM */
3139
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140static struct pci_driver rtl8169_pci_driver = {
3141 .name = MODULENAME,
3142 .id_table = rtl8169_pci_tbl,
3143 .probe = rtl8169_init_one,
3144 .remove = __devexit_p(rtl8169_remove_one),
3145#ifdef CONFIG_PM
3146 .suspend = rtl8169_suspend,
3147 .resume = rtl8169_resume,
3148#endif
3149};
3150
Francois Romieu07d3f512007-02-21 22:40:46 +01003151static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152{
Jeff Garzik29917622006-08-19 17:48:59 -04003153 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154}
3155
Francois Romieu07d3f512007-02-21 22:40:46 +01003156static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157{
3158 pci_unregister_driver(&rtl8169_pci_driver);
3159}
3160
3161module_init(rtl8169_init_module);
3162module_exit(rtl8169_cleanup_module);