blob: 600540e3670fee858ecce4beeaf982731a56269b [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,
Francois Romieu07d3f512007-02-21 22:40:46 +0100200 PHYstatus = 0x6c,
201 RxMaxSize = 0xda,
202 CPlusCmd = 0xe0,
203 IntrMitigate = 0xe2,
204 RxDescAddrLow = 0xe4,
205 RxDescAddrHigh = 0xe8,
206 EarlyTxThres = 0xec,
207 FuncEvent = 0xf0,
208 FuncEventMask = 0xf4,
209 FuncPresetState = 0xf8,
210 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
Francois Romieuf162a5d2008-06-01 22:37:49 +0200213enum rtl8110_registers {
214 TBICSR = 0x64,
215 TBI_ANAR = 0x68,
216 TBI_LPAR = 0x6a,
217};
218
219enum rtl8168_8101_registers {
220 CSIDR = 0x64,
221 CSIAR = 0x68,
222#define CSIAR_FLAG 0x80000000
223#define CSIAR_WRITE_CMD 0x80000000
224#define CSIAR_BYTE_ENABLE 0x0f
225#define CSIAR_BYTE_ENABLE_SHIFT 12
226#define CSIAR_ADDR_MASK 0x0fff
227
228 EPHYAR = 0x80,
229#define EPHYAR_FLAG 0x80000000
230#define EPHYAR_WRITE_CMD 0x80000000
231#define EPHYAR_REG_MASK 0x1f
232#define EPHYAR_REG_SHIFT 16
233#define EPHYAR_DATA_MASK 0xffff
234 DBG_REG = 0xd1,
235#define FIX_NAK_1 (1 << 4)
236#define FIX_NAK_2 (1 << 3)
237};
238
Francois Romieu07d3f512007-02-21 22:40:46 +0100239enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100241 SYSErr = 0x8000,
242 PCSTimeout = 0x4000,
243 SWInt = 0x0100,
244 TxDescUnavail = 0x0080,
245 RxFIFOOver = 0x0040,
246 LinkChg = 0x0020,
247 RxOverflow = 0x0010,
248 TxErr = 0x0008,
249 TxOK = 0x0004,
250 RxErr = 0x0002,
251 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 /* RxStatusDesc */
Francois Romieu9dccf612006-05-14 12:31:17 +0200254 RxFOVF = (1 << 23),
255 RxRWT = (1 << 22),
256 RxRES = (1 << 21),
257 RxRUNT = (1 << 20),
258 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 /* ChipCmdBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100261 CmdReset = 0x10,
262 CmdRxEnb = 0x08,
263 CmdTxEnb = 0x04,
264 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Francois Romieu275391a2007-02-23 23:50:28 +0100266 /* TXPoll register p.5 */
267 HPQ = 0x80, /* Poll cmd on the high prio queue */
268 NPQ = 0x40, /* Poll cmd on the low prio queue */
269 FSWInt = 0x01, /* Forced software interrupt */
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100272 Cfg9346_Lock = 0x00,
273 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100276 AcceptErr = 0x20,
277 AcceptRunt = 0x10,
278 AcceptBroadcast = 0x08,
279 AcceptMulticast = 0x04,
280 AcceptMyPhys = 0x02,
281 AcceptAllPhys = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /* RxConfigBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100284 RxCfgFIFOShift = 13,
285 RxCfgDMAShift = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 /* TxConfigBits */
288 TxInterFrameGapShift = 24,
289 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
290
Francois Romieu5d06a992006-02-23 00:47:58 +0100291 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200292 LEDS1 = (1 << 7),
293 LEDS0 = (1 << 6),
Francois Romieufbac58f2007-10-04 22:51:38 +0200294 MSIEnable = (1 << 5), /* Enable Message Signaled Interrupt */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200295 Speed_down = (1 << 4),
296 MEMMAP = (1 << 3),
297 IOMAP = (1 << 2),
298 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100299 PMEnable = (1 << 0), /* Power Management Enable */
300
Francois Romieu6dccd162007-02-13 23:38:05 +0100301 /* Config2 register p. 25 */
302 PCI_Clock_66MHz = 0x01,
303 PCI_Clock_33MHz = 0x00,
304
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100305 /* Config3 register p.25 */
306 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
307 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200308 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100309
Francois Romieu5d06a992006-02-23 00:47:58 +0100310 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100311 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
312 MWF = (1 << 5), /* Accept Multicast wakeup frame */
313 UWF = (1 << 4), /* Accept Unicast wakeup frame */
314 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100315 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* TBICSR p.28 */
318 TBIReset = 0x80000000,
319 TBILoopback = 0x40000000,
320 TBINwEnable = 0x20000000,
321 TBINwRestart = 0x10000000,
322 TBILinkOk = 0x02000000,
323 TBINwComplete = 0x01000000,
324
325 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200326 EnableBist = (1 << 15), // 8168 8101
327 Mac_dbgo_oe = (1 << 14), // 8168 8101
328 Normal_mode = (1 << 13), // unused
329 Force_half_dup = (1 << 12), // 8168 8101
330 Force_rxflow_en = (1 << 11), // 8168 8101
331 Force_txflow_en = (1 << 10), // 8168 8101
332 Cxpl_dbg_sel = (1 << 9), // 8168 8101
333 ASF = (1 << 8), // 8168 8101
334 PktCntrDisable = (1 << 7), // 8168 8101
335 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 RxVlan = (1 << 6),
337 RxChkSum = (1 << 5),
338 PCIDAC = (1 << 4),
339 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100340 INTT_0 = 0x0000, // 8168
341 INTT_1 = 0x0001, // 8168
342 INTT_2 = 0x0002, // 8168
343 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100346 TBI_Enable = 0x80,
347 TxFlowCtrl = 0x40,
348 RxFlowCtrl = 0x20,
349 _1000bpsF = 0x10,
350 _100bps = 0x08,
351 _10bps = 0x04,
352 LinkStatus = 0x02,
353 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100356 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200357
358 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100359 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360};
361
Francois Romieu07d3f512007-02-21 22:40:46 +0100362enum desc_status_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
364 RingEnd = (1 << 30), /* End of descriptor ring */
365 FirstFrag = (1 << 29), /* First segment of a packet */
366 LastFrag = (1 << 28), /* Final segment of a packet */
367
368 /* Tx private */
369 LargeSend = (1 << 27), /* TCP Large Send Offload (TSO) */
370 MSSShift = 16, /* MSS value position */
371 MSSMask = 0xfff, /* MSS value + LargeSend bit: 12 bits */
372 IPCS = (1 << 18), /* Calculate IP checksum */
373 UDPCS = (1 << 17), /* Calculate UDP/IP checksum */
374 TCPCS = (1 << 16), /* Calculate TCP/IP checksum */
375 TxVlanTag = (1 << 17), /* Add VLAN tag */
376
377 /* Rx private */
378 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
379 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
380
381#define RxProtoUDP (PID1)
382#define RxProtoTCP (PID0)
383#define RxProtoIP (PID1 | PID0)
384#define RxProtoMask RxProtoIP
385
386 IPFail = (1 << 16), /* IP checksum failed */
387 UDPFail = (1 << 15), /* UDP/IP checksum failed */
388 TCPFail = (1 << 14), /* TCP/IP checksum failed */
389 RxVlanTag = (1 << 16), /* VLAN tag available */
390};
391
392#define RsvdMask 0x3fffc000
393
394struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200395 __le32 opts1;
396 __le32 opts2;
397 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398};
399
400struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200401 __le32 opts1;
402 __le32 opts2;
403 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404};
405
406struct ring_info {
407 struct sk_buff *skb;
408 u32 len;
409 u8 __pad[sizeof(void *) - sizeof(u32)];
410};
411
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200412enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200413 RTL_FEATURE_WOL = (1 << 0),
414 RTL_FEATURE_MSI = (1 << 1),
415 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200416};
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418struct rtl8169_private {
419 void __iomem *mmio_addr; /* memory map physical address */
420 struct pci_dev *pci_dev; /* Index of PCI device */
David Howellsc4028952006-11-22 14:57:56 +0000421 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700422 struct napi_struct napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 spinlock_t lock; /* spin lock flag */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200424 u32 msg_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 int chipset;
426 int mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
428 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
429 u32 dirty_rx;
430 u32 dirty_tx;
431 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
432 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
433 dma_addr_t TxPhyAddr;
434 dma_addr_t RxPhyAddr;
435 struct sk_buff *Rx_skbuff[NUM_RX_DESC]; /* Rx data buffers */
436 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Francois Romieubcf0bf92006-07-26 23:14:13 +0200437 unsigned align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 unsigned rx_buf_sz;
439 struct timer_list timer;
440 u16 cp_cmd;
Francois Romieu0e485152007-02-20 00:00:26 +0100441 u16 intr_event;
442 u16 napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 u16 intr_mask;
444 int phy_auto_nego_reg;
445 int phy_1000_ctrl_reg;
446#ifdef CONFIG_R8169_VLAN
447 struct vlan_group *vlgrp;
448#endif
449 int (*set_speed)(struct net_device *, u8 autoneg, u16 speed, u8 duplex);
Francois Romieuccdffb92008-07-26 14:26:06 +0200450 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 void (*phy_reset_enable)(void __iomem *);
Francois Romieu07ce4062007-02-23 23:36:39 +0100452 void (*hw_start)(struct net_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 unsigned int (*phy_reset_pending)(void __iomem *);
454 unsigned int (*link_ok)(void __iomem *);
Francois Romieu9c14cea2008-07-05 00:21:15 +0200455 int pcie_cap;
David Howellsc4028952006-11-22 14:57:56 +0000456 struct delayed_work task;
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200457 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200458
459 struct mii_if_info mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460};
461
Ralf Baechle979b6c12005-06-13 14:30:40 -0700462MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464module_param(rx_copybreak, int, 0);
Stephen Hemminger1b7efd52005-05-27 21:11:45 +0200465MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466module_param(use_dac, int, 0);
467MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200468module_param_named(debug, debug.msg_enable, int, 0);
469MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470MODULE_LICENSE("GPL");
471MODULE_VERSION(RTL8169_VERSION);
472
473static int rtl8169_open(struct net_device *dev);
474static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100475static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100477static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100479static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200481static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700483 void __iomem *, u32 budget);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200484static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b2007-04-02 22:59:59 +0200486static void rtl8169_rx_clear(struct rtl8169_private *tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700487static int rtl8169_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489static const unsigned int rtl8169_rx_config =
Francois Romieu5b0384f2006-08-16 16:00:01 +0200490 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Francois Romieu07d3f512007-02-21 22:40:46 +0100492static void mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 int i;
495
Francois Romieua6baf3a2007-11-08 23:23:21 +0100496 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Francois Romieu23714082006-01-29 00:49:09 +0100498 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100499 /*
500 * Check if the RTL8169 has completed writing to the specified
501 * MII register.
502 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200503 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
Francois Romieu23714082006-01-29 00:49:09 +0100505 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507}
508
Francois Romieu07d3f512007-02-21 22:40:46 +0100509static int mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 int i, value = -1;
512
Francois Romieua6baf3a2007-11-08 23:23:21 +0100513 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Francois Romieu23714082006-01-29 00:49:09 +0100515 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100516 /*
517 * Check if the RTL8169 has completed retrieving data from
518 * the specified MII register.
519 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100521 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 break;
523 }
Francois Romieu23714082006-01-29 00:49:09 +0100524 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526 return value;
527}
528
Francois Romieuccdffb92008-07-26 14:26:06 +0200529static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
530 int val)
531{
532 struct rtl8169_private *tp = netdev_priv(dev);
533 void __iomem *ioaddr = tp->mmio_addr;
534
535 mdio_write(ioaddr, location, val);
536}
537
538static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
539{
540 struct rtl8169_private *tp = netdev_priv(dev);
541 void __iomem *ioaddr = tp->mmio_addr;
542
543 return mdio_read(ioaddr, location);
544}
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
547{
548 RTL_W16(IntrMask, 0x0000);
549
550 RTL_W16(IntrStatus, 0xffff);
551}
552
553static void rtl8169_asic_down(void __iomem *ioaddr)
554{
555 RTL_W8(ChipCmd, 0x00);
556 rtl8169_irq_mask_and_ack(ioaddr);
557 RTL_R16(CPlusCmd);
558}
559
560static unsigned int rtl8169_tbi_reset_pending(void __iomem *ioaddr)
561{
562 return RTL_R32(TBICSR) & TBIReset;
563}
564
565static unsigned int rtl8169_xmii_reset_pending(void __iomem *ioaddr)
566{
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200567 return mdio_read(ioaddr, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
570static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
571{
572 return RTL_R32(TBICSR) & TBILinkOk;
573}
574
575static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
576{
577 return RTL_R8(PHYstatus) & LinkStatus;
578}
579
580static void rtl8169_tbi_reset_enable(void __iomem *ioaddr)
581{
582 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
583}
584
585static void rtl8169_xmii_reset_enable(void __iomem *ioaddr)
586{
587 unsigned int val;
588
Francois Romieu9e0db8e2007-03-08 23:59:54 +0100589 val = mdio_read(ioaddr, MII_BMCR) | BMCR_RESET;
590 mdio_write(ioaddr, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593static void rtl8169_check_link_status(struct net_device *dev,
Francois Romieu07d3f512007-02-21 22:40:46 +0100594 struct rtl8169_private *tp,
595 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 unsigned long flags;
598
599 spin_lock_irqsave(&tp->lock, flags);
600 if (tp->link_ok(ioaddr)) {
601 netif_carrier_on(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200602 if (netif_msg_ifup(tp))
603 printk(KERN_INFO PFX "%s: link up\n", dev->name);
604 } else {
605 if (netif_msg_ifdown(tp))
606 printk(KERN_INFO PFX "%s: link down\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 netif_carrier_off(dev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 spin_unlock_irqrestore(&tp->lock, flags);
610}
611
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100612static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
613{
614 struct rtl8169_private *tp = netdev_priv(dev);
615 void __iomem *ioaddr = tp->mmio_addr;
616 u8 options;
617
618 wol->wolopts = 0;
619
620#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
621 wol->supported = WAKE_ANY;
622
623 spin_lock_irq(&tp->lock);
624
625 options = RTL_R8(Config1);
626 if (!(options & PMEnable))
627 goto out_unlock;
628
629 options = RTL_R8(Config3);
630 if (options & LinkUp)
631 wol->wolopts |= WAKE_PHY;
632 if (options & MagicPacket)
633 wol->wolopts |= WAKE_MAGIC;
634
635 options = RTL_R8(Config5);
636 if (options & UWF)
637 wol->wolopts |= WAKE_UCAST;
638 if (options & BWF)
Francois Romieu5b0384f2006-08-16 16:00:01 +0200639 wol->wolopts |= WAKE_BCAST;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100640 if (options & MWF)
Francois Romieu5b0384f2006-08-16 16:00:01 +0200641 wol->wolopts |= WAKE_MCAST;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100642
643out_unlock:
644 spin_unlock_irq(&tp->lock);
645}
646
647static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
648{
649 struct rtl8169_private *tp = netdev_priv(dev);
650 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +0100651 unsigned int i;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100652 static struct {
653 u32 opt;
654 u16 reg;
655 u8 mask;
656 } cfg[] = {
657 { WAKE_ANY, Config1, PMEnable },
658 { WAKE_PHY, Config3, LinkUp },
659 { WAKE_MAGIC, Config3, MagicPacket },
660 { WAKE_UCAST, Config5, UWF },
661 { WAKE_BCAST, Config5, BWF },
662 { WAKE_MCAST, Config5, MWF },
663 { WAKE_ANY, Config5, LanWake }
664 };
665
666 spin_lock_irq(&tp->lock);
667
668 RTL_W8(Cfg9346, Cfg9346_Unlock);
669
670 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
671 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
672 if (wol->wolopts & cfg[i].opt)
673 options |= cfg[i].mask;
674 RTL_W8(cfg[i].reg, options);
675 }
676
677 RTL_W8(Cfg9346, Cfg9346_Lock);
678
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200679 if (wol->wolopts)
680 tp->features |= RTL_FEATURE_WOL;
681 else
682 tp->features &= ~RTL_FEATURE_WOL;
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100683
684 spin_unlock_irq(&tp->lock);
685
686 return 0;
687}
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689static void rtl8169_get_drvinfo(struct net_device *dev,
690 struct ethtool_drvinfo *info)
691{
692 struct rtl8169_private *tp = netdev_priv(dev);
693
694 strcpy(info->driver, MODULENAME);
695 strcpy(info->version, RTL8169_VERSION);
696 strcpy(info->bus_info, pci_name(tp->pci_dev));
697}
698
699static int rtl8169_get_regs_len(struct net_device *dev)
700{
701 return R8169_REGS_SIZE;
702}
703
704static int rtl8169_set_speed_tbi(struct net_device *dev,
705 u8 autoneg, u16 speed, u8 duplex)
706{
707 struct rtl8169_private *tp = netdev_priv(dev);
708 void __iomem *ioaddr = tp->mmio_addr;
709 int ret = 0;
710 u32 reg;
711
712 reg = RTL_R32(TBICSR);
713 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
714 (duplex == DUPLEX_FULL)) {
715 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
716 } else if (autoneg == AUTONEG_ENABLE)
717 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
718 else {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200719 if (netif_msg_link(tp)) {
720 printk(KERN_WARNING "%s: "
721 "incorrect speed setting refused in TBI mode\n",
722 dev->name);
723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 ret = -EOPNOTSUPP;
725 }
726
727 return ret;
728}
729
730static int rtl8169_set_speed_xmii(struct net_device *dev,
731 u8 autoneg, u16 speed, u8 duplex)
732{
733 struct rtl8169_private *tp = netdev_priv(dev);
734 void __iomem *ioaddr = tp->mmio_addr;
735 int auto_nego, giga_ctrl;
736
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200737 auto_nego = mdio_read(ioaddr, MII_ADVERTISE);
738 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
739 ADVERTISE_100HALF | ADVERTISE_100FULL);
740 giga_ctrl = mdio_read(ioaddr, MII_CTRL1000);
741 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 if (autoneg == AUTONEG_ENABLE) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200744 auto_nego |= (ADVERTISE_10HALF | ADVERTISE_10FULL |
745 ADVERTISE_100HALF | ADVERTISE_100FULL);
746 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 } else {
748 if (speed == SPEED_10)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200749 auto_nego |= ADVERTISE_10HALF | ADVERTISE_10FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 else if (speed == SPEED_100)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200751 auto_nego |= ADVERTISE_100HALF | ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 else if (speed == SPEED_1000)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200753 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 if (duplex == DUPLEX_HALF)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200756 auto_nego &= ~(ADVERTISE_10FULL | ADVERTISE_100FULL);
Andy Gospodarek726ecdc2006-01-31 19:16:52 +0100757
758 if (duplex == DUPLEX_FULL)
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200759 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_100HALF);
Francois Romieubcf0bf92006-07-26 23:14:13 +0200760
761 /* This tweak comes straight from Realtek's driver. */
762 if ((speed == SPEED_100) && (duplex == DUPLEX_HALF) &&
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200763 ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
764 (tp->mac_version == RTL_GIGA_MAC_VER_16))) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200765 auto_nego = ADVERTISE_100HALF | ADVERTISE_CSMA;
Francois Romieubcf0bf92006-07-26 23:14:13 +0200766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
768
Francois Romieubcf0bf92006-07-26 23:14:13 +0200769 /* The 8100e/8101e do Fast Ethernet only. */
770 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
771 (tp->mac_version == RTL_GIGA_MAC_VER_14) ||
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200772 (tp->mac_version == RTL_GIGA_MAC_VER_15) ||
773 (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200774 if ((giga_ctrl & (ADVERTISE_1000FULL | ADVERTISE_1000HALF)) &&
Francois Romieubcf0bf92006-07-26 23:14:13 +0200775 netif_msg_link(tp)) {
776 printk(KERN_INFO "%s: PHY does not support 1000Mbps.\n",
777 dev->name);
778 }
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200779 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
Francois Romieu623a1592006-05-14 12:42:14 +0200782 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
783
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200784 if ((tp->mac_version == RTL_GIGA_MAC_VER_12) ||
785 (tp->mac_version == RTL_GIGA_MAC_VER_17)) {
Roger So2584fbc2007-07-31 23:52:42 +0200786 /* Vendor specific (0x1f) and reserved (0x0e) MII registers. */
787 mdio_write(ioaddr, 0x1f, 0x0000);
788 mdio_write(ioaddr, 0x0e, 0x0000);
789 }
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 tp->phy_auto_nego_reg = auto_nego;
792 tp->phy_1000_ctrl_reg = giga_ctrl;
793
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200794 mdio_write(ioaddr, MII_ADVERTISE, auto_nego);
795 mdio_write(ioaddr, MII_CTRL1000, giga_ctrl);
796 mdio_write(ioaddr, MII_BMCR, BMCR_ANENABLE | BMCR_ANRESTART);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return 0;
798}
799
800static int rtl8169_set_speed(struct net_device *dev,
801 u8 autoneg, u16 speed, u8 duplex)
802{
803 struct rtl8169_private *tp = netdev_priv(dev);
804 int ret;
805
806 ret = tp->set_speed(dev, autoneg, speed, duplex);
807
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200808 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
810
811 return ret;
812}
813
814static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
815{
816 struct rtl8169_private *tp = netdev_priv(dev);
817 unsigned long flags;
818 int ret;
819
820 spin_lock_irqsave(&tp->lock, flags);
821 ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
822 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +0200823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return ret;
825}
826
827static u32 rtl8169_get_rx_csum(struct net_device *dev)
828{
829 struct rtl8169_private *tp = netdev_priv(dev);
830
831 return tp->cp_cmd & RxChkSum;
832}
833
834static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
835{
836 struct rtl8169_private *tp = netdev_priv(dev);
837 void __iomem *ioaddr = tp->mmio_addr;
838 unsigned long flags;
839
840 spin_lock_irqsave(&tp->lock, flags);
841
842 if (data)
843 tp->cp_cmd |= RxChkSum;
844 else
845 tp->cp_cmd &= ~RxChkSum;
846
847 RTL_W16(CPlusCmd, tp->cp_cmd);
848 RTL_R16(CPlusCmd);
849
850 spin_unlock_irqrestore(&tp->lock, flags);
851
852 return 0;
853}
854
855#ifdef CONFIG_R8169_VLAN
856
857static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
858 struct sk_buff *skb)
859{
860 return (tp->vlgrp && vlan_tx_tag_present(skb)) ?
861 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
862}
863
864static void rtl8169_vlan_rx_register(struct net_device *dev,
865 struct vlan_group *grp)
866{
867 struct rtl8169_private *tp = netdev_priv(dev);
868 void __iomem *ioaddr = tp->mmio_addr;
869 unsigned long flags;
870
871 spin_lock_irqsave(&tp->lock, flags);
872 tp->vlgrp = grp;
873 if (tp->vlgrp)
874 tp->cp_cmd |= RxVlan;
875 else
876 tp->cp_cmd &= ~RxVlan;
877 RTL_W16(CPlusCmd, tp->cp_cmd);
878 RTL_R16(CPlusCmd);
879 spin_unlock_irqrestore(&tp->lock, flags);
880}
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
883 struct sk_buff *skb)
884{
885 u32 opts2 = le32_to_cpu(desc->opts2);
Francois Romieu865c6522008-05-11 14:51:00 +0200886 struct vlan_group *vlgrp = tp->vlgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 int ret;
888
Francois Romieu865c6522008-05-11 14:51:00 +0200889 if (vlgrp && (opts2 & RxVlanTag)) {
890 vlan_hwaccel_receive_skb(skb, vlgrp, swab16(opts2 & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 ret = 0;
892 } else
893 ret = -1;
894 desc->opts2 = 0;
895 return ret;
896}
897
898#else /* !CONFIG_R8169_VLAN */
899
900static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
901 struct sk_buff *skb)
902{
903 return 0;
904}
905
906static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
907 struct sk_buff *skb)
908{
909 return -1;
910}
911
912#endif
913
Francois Romieuccdffb92008-07-26 14:26:06 +0200914static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 struct rtl8169_private *tp = netdev_priv(dev);
917 void __iomem *ioaddr = tp->mmio_addr;
918 u32 status;
919
920 cmd->supported =
921 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
922 cmd->port = PORT_FIBRE;
923 cmd->transceiver = XCVR_INTERNAL;
924
925 status = RTL_R32(TBICSR);
926 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
927 cmd->autoneg = !!(status & TBINwEnable);
928
929 cmd->speed = SPEED_1000;
930 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +0200931
932 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
Francois Romieuccdffb92008-07-26 14:26:06 +0200935static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
937 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Francois Romieuccdffb92008-07-26 14:26:06 +0200939 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
942static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
943{
944 struct rtl8169_private *tp = netdev_priv(dev);
945 unsigned long flags;
Francois Romieuccdffb92008-07-26 14:26:06 +0200946 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 spin_lock_irqsave(&tp->lock, flags);
949
Francois Romieuccdffb92008-07-26 14:26:06 +0200950 rc = tp->get_settings(dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieuccdffb92008-07-26 14:26:06 +0200953 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
956static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
957 void *p)
958{
Francois Romieu5b0384f2006-08-16 16:00:01 +0200959 struct rtl8169_private *tp = netdev_priv(dev);
960 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Francois Romieu5b0384f2006-08-16 16:00:01 +0200962 if (regs->len > R8169_REGS_SIZE)
963 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Francois Romieu5b0384f2006-08-16 16:00:01 +0200965 spin_lock_irqsave(&tp->lock, flags);
966 memcpy_fromio(p, tp->mmio_addr, regs->len);
967 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200970static u32 rtl8169_get_msglevel(struct net_device *dev)
971{
972 struct rtl8169_private *tp = netdev_priv(dev);
973
974 return tp->msg_enable;
975}
976
977static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
978{
979 struct rtl8169_private *tp = netdev_priv(dev);
980
981 tp->msg_enable = value;
982}
983
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200984static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
985 "tx_packets",
986 "rx_packets",
987 "tx_errors",
988 "rx_errors",
989 "rx_missed",
990 "align_errors",
991 "tx_single_collisions",
992 "tx_multi_collisions",
993 "unicast",
994 "broadcast",
995 "multicast",
996 "tx_aborted",
997 "tx_underrun",
998};
999
1000struct rtl8169_counters {
Al Virob1eab702007-08-23 02:30:16 -04001001 __le64 tx_packets;
1002 __le64 rx_packets;
1003 __le64 tx_errors;
1004 __le32 rx_errors;
1005 __le16 rx_missed;
1006 __le16 align_errors;
1007 __le32 tx_one_collision;
1008 __le32 tx_multi_collision;
1009 __le64 rx_unicast;
1010 __le64 rx_broadcast;
1011 __le32 rx_multicast;
1012 __le16 tx_aborted;
1013 __le16 tx_underun;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001014};
1015
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001016static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001017{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001018 switch (sset) {
1019 case ETH_SS_STATS:
1020 return ARRAY_SIZE(rtl8169_gstrings);
1021 default:
1022 return -EOPNOTSUPP;
1023 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001024}
1025
1026static void rtl8169_get_ethtool_stats(struct net_device *dev,
1027 struct ethtool_stats *stats, u64 *data)
1028{
1029 struct rtl8169_private *tp = netdev_priv(dev);
1030 void __iomem *ioaddr = tp->mmio_addr;
1031 struct rtl8169_counters *counters;
1032 dma_addr_t paddr;
1033 u32 cmd;
1034
1035 ASSERT_RTNL();
1036
1037 counters = pci_alloc_consistent(tp->pci_dev, sizeof(*counters), &paddr);
1038 if (!counters)
1039 return;
1040
1041 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
1042 cmd = (u64)paddr & DMA_32BIT_MASK;
1043 RTL_W32(CounterAddrLow, cmd);
1044 RTL_W32(CounterAddrLow, cmd | CounterDump);
1045
1046 while (RTL_R32(CounterAddrLow) & CounterDump) {
1047 if (msleep_interruptible(1))
1048 break;
1049 }
1050
1051 RTL_W32(CounterAddrLow, 0);
1052 RTL_W32(CounterAddrHigh, 0);
1053
Francois Romieu5b0384f2006-08-16 16:00:01 +02001054 data[0] = le64_to_cpu(counters->tx_packets);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001055 data[1] = le64_to_cpu(counters->rx_packets);
1056 data[2] = le64_to_cpu(counters->tx_errors);
1057 data[3] = le32_to_cpu(counters->rx_errors);
1058 data[4] = le16_to_cpu(counters->rx_missed);
1059 data[5] = le16_to_cpu(counters->align_errors);
1060 data[6] = le32_to_cpu(counters->tx_one_collision);
1061 data[7] = le32_to_cpu(counters->tx_multi_collision);
1062 data[8] = le64_to_cpu(counters->rx_unicast);
1063 data[9] = le64_to_cpu(counters->rx_broadcast);
1064 data[10] = le32_to_cpu(counters->rx_multicast);
1065 data[11] = le16_to_cpu(counters->tx_aborted);
1066 data[12] = le16_to_cpu(counters->tx_underun);
1067
1068 pci_free_consistent(tp->pci_dev, sizeof(*counters), counters, paddr);
1069}
1070
1071static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1072{
1073 switch(stringset) {
1074 case ETH_SS_STATS:
1075 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1076 break;
1077 }
1078}
1079
Jeff Garzik7282d492006-09-13 14:30:00 -04001080static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 .get_drvinfo = rtl8169_get_drvinfo,
1082 .get_regs_len = rtl8169_get_regs_len,
1083 .get_link = ethtool_op_get_link,
1084 .get_settings = rtl8169_get_settings,
1085 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001086 .get_msglevel = rtl8169_get_msglevel,
1087 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 .get_rx_csum = rtl8169_get_rx_csum,
1089 .set_rx_csum = rtl8169_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 .set_tx_csum = ethtool_op_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 .set_tso = ethtool_op_set_tso,
1093 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001094 .get_wol = rtl8169_get_wol,
1095 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001096 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001097 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001098 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099};
1100
Francois Romieu07d3f512007-02-21 22:40:46 +01001101static void rtl8169_write_gmii_reg_bit(void __iomem *ioaddr, int reg,
1102 int bitnum, int bitval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 int val;
1105
1106 val = mdio_read(ioaddr, reg);
1107 val = (bitval == 1) ?
1108 val | (bitval << bitnum) : val & ~(0x0001 << bitnum);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001109 mdio_write(ioaddr, reg, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
Francois Romieu07d3f512007-02-21 22:40:46 +01001112static void rtl8169_get_mac_version(struct rtl8169_private *tp,
1113 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Francois Romieu0e485152007-02-20 00:00:26 +01001115 /*
1116 * The driver currently handles the 8168Bf and the 8168Be identically
1117 * but they can be identified more specifically through the test below
1118 * if needed:
1119 *
1120 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001121 *
1122 * Same thing for the 8101Eb and the 8101Ec:
1123 *
1124 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001125 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 const struct {
1127 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001128 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 int mac_version;
1130 } mac_info[] = {
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001131 /* 8168B family. */
1132 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
1133 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1134 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
1135 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_20 },
1136
1137 /* 8168B family. */
1138 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1139 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1140 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1141 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1142
1143 /* 8101 family. */
1144 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
1145 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
1146 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1147 /* FIXME: where did these entries come from ? -- FR */
1148 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1149 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1150
1151 /* 8110 family. */
1152 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1153 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1154 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1155 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1156 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1157 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1158
1159 { 0x00000000, 0x00000000, RTL_GIGA_MAC_VER_01 } /* Catch-all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }, *p = mac_info;
1161 u32 reg;
1162
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001163 reg = RTL_R32(TxConfig);
1164 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 p++;
1166 tp->mac_version = p->mac_version;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001167
1168 if (p->mask == 0x00000000) {
1169 struct pci_dev *pdev = tp->pci_dev;
1170
1171 dev_info(&pdev->dev, "unknown MAC (%08x)\n", reg);
1172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
1175static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1176{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001177 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
Francois Romieu867763c2007-08-17 18:21:58 +02001180struct phy_reg {
1181 u16 reg;
1182 u16 val;
1183};
1184
1185static void rtl_phy_write(void __iomem *ioaddr, struct phy_reg *regs, int len)
1186{
1187 while (len-- > 0) {
1188 mdio_write(ioaddr, regs->reg, regs->val);
1189 regs++;
1190 }
1191}
1192
Francois Romieu5615d9f2007-08-17 17:50:46 +02001193static void rtl8169s_hw_phy_config(void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 struct {
1196 u16 regs[5]; /* Beware of bit-sign propagation */
1197 } phy_magic[5] = { {
1198 { 0x0000, //w 4 15 12 0
1199 0x00a1, //w 3 15 0 00a1
1200 0x0008, //w 2 15 0 0008
1201 0x1020, //w 1 15 0 1020
1202 0x1000 } },{ //w 0 15 0 1000
1203 { 0x7000, //w 4 15 12 7
1204 0xff41, //w 3 15 0 ff41
1205 0xde60, //w 2 15 0 de60
1206 0x0140, //w 1 15 0 0140
1207 0x0077 } },{ //w 0 15 0 0077
1208 { 0xa000, //w 4 15 12 a
1209 0xdf01, //w 3 15 0 df01
1210 0xdf20, //w 2 15 0 df20
1211 0xff95, //w 1 15 0 ff95
1212 0xfa00 } },{ //w 0 15 0 fa00
1213 { 0xb000, //w 4 15 12 b
1214 0xff41, //w 3 15 0 ff41
1215 0xde20, //w 2 15 0 de20
1216 0x0140, //w 1 15 0 0140
1217 0x00bb } },{ //w 0 15 0 00bb
1218 { 0xf000, //w 4 15 12 f
1219 0xdf01, //w 3 15 0 df01
1220 0xdf20, //w 2 15 0 df20
1221 0xff95, //w 1 15 0 ff95
1222 0xbf00 } //w 0 15 0 bf00
1223 }
1224 }, *p = phy_magic;
Francois Romieu07d3f512007-02-21 22:40:46 +01001225 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Francois Romieua441d7b2007-08-17 18:26:35 +02001227 mdio_write(ioaddr, 0x1f, 0x0001); //w 31 2 0 1
1228 mdio_write(ioaddr, 0x15, 0x1000); //w 21 15 0 1000
1229 mdio_write(ioaddr, 0x18, 0x65c7); //w 24 15 0 65c7
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
1231
1232 for (i = 0; i < ARRAY_SIZE(phy_magic); i++, p++) {
1233 int val, pos = 4;
1234
1235 val = (mdio_read(ioaddr, pos) & 0x0fff) | (p->regs[0] & 0xffff);
1236 mdio_write(ioaddr, pos, val);
1237 while (--pos >= 0)
1238 mdio_write(ioaddr, pos, p->regs[4 - pos] & 0xffff);
1239 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 1); //w 4 11 11 1
1240 rtl8169_write_gmii_reg_bit(ioaddr, 4, 11, 0); //w 4 11 11 0
1241 }
Francois Romieua441d7b2007-08-17 18:26:35 +02001242 mdio_write(ioaddr, 0x1f, 0x0000); //w 31 2 0 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
Francois Romieu5615d9f2007-08-17 17:50:46 +02001245static void rtl8169sb_hw_phy_config(void __iomem *ioaddr)
1246{
Francois Romieua441d7b2007-08-17 18:26:35 +02001247 struct phy_reg phy_reg_init[] = {
1248 { 0x1f, 0x0002 },
1249 { 0x01, 0x90d0 },
1250 { 0x1f, 0x0000 }
1251 };
1252
1253 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02001254}
1255
Francois Romieu867763c2007-08-17 18:21:58 +02001256static void rtl8168cp_hw_phy_config(void __iomem *ioaddr)
1257{
1258 struct phy_reg phy_reg_init[] = {
1259 { 0x1f, 0x0000 },
1260 { 0x1d, 0x0f00 },
1261 { 0x1f, 0x0002 },
1262 { 0x0c, 0x1ec8 },
1263 { 0x1f, 0x0000 }
1264 };
1265
1266 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1267}
1268
1269static void rtl8168c_hw_phy_config(void __iomem *ioaddr)
1270{
1271 struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02001272 { 0x1f, 0x0001 },
1273 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02001274 { 0x1f, 0x0002 },
1275 { 0x00, 0x88d4 },
1276 { 0x01, 0x82b1 },
1277 { 0x03, 0x7002 },
1278 { 0x08, 0x9e30 },
1279 { 0x09, 0x01f0 },
1280 { 0x0a, 0x5500 },
1281 { 0x0c, 0x00c8 },
1282 { 0x1f, 0x0003 },
1283 { 0x12, 0xc096 },
1284 { 0x16, 0x000a },
1285 { 0x1f, 0x0000 }
1286 };
1287
1288 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1289}
1290
Francois Romieu7da97ec2007-10-18 15:20:43 +02001291static void rtl8168cx_hw_phy_config(void __iomem *ioaddr)
1292{
1293 struct phy_reg phy_reg_init[] = {
1294 { 0x1f, 0x0000 },
1295 { 0x12, 0x2300 },
1296 { 0x1f, 0x0003 },
1297 { 0x16, 0x0f0a },
1298 { 0x1f, 0x0000 },
1299 { 0x1f, 0x0002 },
1300 { 0x0c, 0x7eb8 },
1301 { 0x1f, 0x0000 }
1302 };
1303
1304 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1305}
1306
Francois Romieu5615d9f2007-08-17 17:50:46 +02001307static void rtl_hw_phy_config(struct net_device *dev)
1308{
1309 struct rtl8169_private *tp = netdev_priv(dev);
1310 void __iomem *ioaddr = tp->mmio_addr;
1311
1312 rtl8169_print_mac_version(tp);
1313
1314 switch (tp->mac_version) {
1315 case RTL_GIGA_MAC_VER_01:
1316 break;
1317 case RTL_GIGA_MAC_VER_02:
1318 case RTL_GIGA_MAC_VER_03:
1319 rtl8169s_hw_phy_config(ioaddr);
1320 break;
1321 case RTL_GIGA_MAC_VER_04:
1322 rtl8169sb_hw_phy_config(ioaddr);
1323 break;
Francois Romieu867763c2007-08-17 18:21:58 +02001324 case RTL_GIGA_MAC_VER_18:
1325 rtl8168cp_hw_phy_config(ioaddr);
1326 break;
1327 case RTL_GIGA_MAC_VER_19:
1328 rtl8168c_hw_phy_config(ioaddr);
1329 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02001330 case RTL_GIGA_MAC_VER_20:
1331 rtl8168cx_hw_phy_config(ioaddr);
1332 break;
Francois Romieu5615d9f2007-08-17 17:50:46 +02001333 default:
1334 break;
1335 }
1336}
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338static void rtl8169_phy_timer(unsigned long __opaque)
1339{
1340 struct net_device *dev = (struct net_device *)__opaque;
1341 struct rtl8169_private *tp = netdev_priv(dev);
1342 struct timer_list *timer = &tp->timer;
1343 void __iomem *ioaddr = tp->mmio_addr;
1344 unsigned long timeout = RTL8169_PHY_TIMEOUT;
1345
Francois Romieubcf0bf92006-07-26 23:14:13 +02001346 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001348 if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return;
1350
1351 spin_lock_irq(&tp->lock);
1352
1353 if (tp->phy_reset_pending(ioaddr)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02001354 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 * A busy loop could burn quite a few cycles on nowadays CPU.
1356 * Let's delay the execution of the timer for a few ticks.
1357 */
1358 timeout = HZ/10;
1359 goto out_mod_timer;
1360 }
1361
1362 if (tp->link_ok(ioaddr))
1363 goto out_unlock;
1364
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001365 if (netif_msg_link(tp))
1366 printk(KERN_WARNING "%s: PHY reset until link up\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 tp->phy_reset_enable(ioaddr);
1369
1370out_mod_timer:
1371 mod_timer(timer, jiffies + timeout);
1372out_unlock:
1373 spin_unlock_irq(&tp->lock);
1374}
1375
1376static inline void rtl8169_delete_timer(struct net_device *dev)
1377{
1378 struct rtl8169_private *tp = netdev_priv(dev);
1379 struct timer_list *timer = &tp->timer;
1380
Francois Romieue179bb72007-08-17 15:05:21 +02001381 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return;
1383
1384 del_timer_sync(timer);
1385}
1386
1387static inline void rtl8169_request_timer(struct net_device *dev)
1388{
1389 struct rtl8169_private *tp = netdev_priv(dev);
1390 struct timer_list *timer = &tp->timer;
1391
Francois Romieue179bb72007-08-17 15:05:21 +02001392 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return;
1394
Francois Romieu2efa53f2007-03-09 00:00:05 +01001395 mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396}
1397
1398#ifdef CONFIG_NET_POLL_CONTROLLER
1399/*
1400 * Polling 'interrupt' - used by things like netconsole to send skbs
1401 * without having to re-enable interrupts. It's not called while
1402 * the interrupt routine is executing.
1403 */
1404static void rtl8169_netpoll(struct net_device *dev)
1405{
1406 struct rtl8169_private *tp = netdev_priv(dev);
1407 struct pci_dev *pdev = tp->pci_dev;
1408
1409 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01001410 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 enable_irq(pdev->irq);
1412}
1413#endif
1414
1415static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
1416 void __iomem *ioaddr)
1417{
1418 iounmap(ioaddr);
1419 pci_release_regions(pdev);
1420 pci_disable_device(pdev);
1421 free_netdev(dev);
1422}
1423
Francois Romieubf793292006-11-01 00:53:05 +01001424static void rtl8169_phy_reset(struct net_device *dev,
1425 struct rtl8169_private *tp)
1426{
1427 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001428 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01001429
1430 tp->phy_reset_enable(ioaddr);
1431 for (i = 0; i < 100; i++) {
1432 if (!tp->phy_reset_pending(ioaddr))
1433 return;
1434 msleep(1);
1435 }
1436 if (netif_msg_link(tp))
1437 printk(KERN_ERR "%s: PHY reset failed.\n", dev->name);
1438}
1439
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001440static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001442 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001443
Francois Romieu5615d9f2007-08-17 17:50:46 +02001444 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001445
Marcus Sundberg773328942008-07-10 21:28:08 +02001446 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
1447 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
1448 RTL_W8(0x82, 0x01);
1449 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001450
Francois Romieu6dccd162007-02-13 23:38:05 +01001451 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
1452
1453 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
1454 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001455
Francois Romieubcf0bf92006-07-26 23:14:13 +02001456 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001457 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
1458 RTL_W8(0x82, 0x01);
1459 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
1460 mdio_write(ioaddr, 0x0b, 0x0000); //w 0x0b 15 0 0
1461 }
1462
Francois Romieubf793292006-11-01 00:53:05 +01001463 rtl8169_phy_reset(dev, tp);
1464
Francois Romieu901dda22007-02-21 00:10:20 +01001465 /*
1466 * rtl8169_set_speed_xmii takes good care of the Fast Ethernet
1467 * only 8101. Don't panic.
1468 */
1469 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001470
1471 if ((RTL_R8(PHYstatus) & TBI_Enable) && netif_msg_link(tp))
1472 printk(KERN_INFO PFX "%s: TBI auto-negotiating\n", dev->name);
1473}
1474
Francois Romieu773d2022007-01-31 23:47:43 +01001475static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
1476{
1477 void __iomem *ioaddr = tp->mmio_addr;
1478 u32 high;
1479 u32 low;
1480
1481 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
1482 high = addr[4] | (addr[5] << 8);
1483
1484 spin_lock_irq(&tp->lock);
1485
1486 RTL_W8(Cfg9346, Cfg9346_Unlock);
1487 RTL_W32(MAC0, low);
1488 RTL_W32(MAC4, high);
1489 RTL_W8(Cfg9346, Cfg9346_Lock);
1490
1491 spin_unlock_irq(&tp->lock);
1492}
1493
1494static int rtl_set_mac_address(struct net_device *dev, void *p)
1495{
1496 struct rtl8169_private *tp = netdev_priv(dev);
1497 struct sockaddr *addr = p;
1498
1499 if (!is_valid_ether_addr(addr->sa_data))
1500 return -EADDRNOTAVAIL;
1501
1502 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1503
1504 rtl_rar_set(tp, dev->dev_addr);
1505
1506 return 0;
1507}
1508
Francois Romieu5f787a12006-08-17 13:02:36 +02001509static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1510{
1511 struct rtl8169_private *tp = netdev_priv(dev);
1512 struct mii_ioctl_data *data = if_mii(ifr);
1513
1514 if (!netif_running(dev))
1515 return -ENODEV;
1516
1517 switch (cmd) {
1518 case SIOCGMIIPHY:
1519 data->phy_id = 32; /* Internal PHY */
1520 return 0;
1521
1522 case SIOCGMIIREG:
1523 data->val_out = mdio_read(tp->mmio_addr, data->reg_num & 0x1f);
1524 return 0;
1525
1526 case SIOCSMIIREG:
1527 if (!capable(CAP_NET_ADMIN))
1528 return -EPERM;
1529 mdio_write(tp->mmio_addr, data->reg_num & 0x1f, data->val_in);
1530 return 0;
1531 }
1532 return -EOPNOTSUPP;
1533}
1534
Francois Romieu0e485152007-02-20 00:00:26 +01001535static const struct rtl_cfg_info {
1536 void (*hw_start)(struct net_device *);
1537 unsigned int region;
1538 unsigned int align;
1539 u16 intr_event;
1540 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02001541 unsigned features;
Francois Romieu0e485152007-02-20 00:00:26 +01001542} rtl_cfg_infos [] = {
1543 [RTL_CFG_0] = {
1544 .hw_start = rtl_hw_start_8169,
1545 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01001546 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01001547 .intr_event = SYSErr | LinkChg | RxOverflow |
1548 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02001549 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Francois Romieuccdffb92008-07-26 14:26:06 +02001550 .features = RTL_FEATURE_GMII
Francois Romieu0e485152007-02-20 00:00:26 +01001551 },
1552 [RTL_CFG_1] = {
1553 .hw_start = rtl_hw_start_8168,
1554 .region = 2,
1555 .align = 8,
1556 .intr_event = SYSErr | LinkChg | RxOverflow |
1557 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02001558 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Francois Romieuccdffb92008-07-26 14:26:06 +02001559 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI
Francois Romieu0e485152007-02-20 00:00:26 +01001560 },
1561 [RTL_CFG_2] = {
1562 .hw_start = rtl_hw_start_8101,
1563 .region = 2,
1564 .align = 8,
1565 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
1566 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02001567 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Francois Romieuccdffb92008-07-26 14:26:06 +02001568 .features = RTL_FEATURE_MSI
Francois Romieu0e485152007-02-20 00:00:26 +01001569 }
1570};
1571
Francois Romieufbac58f2007-10-04 22:51:38 +02001572/* Cfg9346_Unlock assumed. */
1573static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
1574 const struct rtl_cfg_info *cfg)
1575{
1576 unsigned msi = 0;
1577 u8 cfg2;
1578
1579 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02001580 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02001581 if (pci_enable_msi(pdev)) {
1582 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
1583 } else {
1584 cfg2 |= MSIEnable;
1585 msi = RTL_FEATURE_MSI;
1586 }
1587 }
1588 RTL_W8(Config2, cfg2);
1589 return msi;
1590}
1591
1592static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
1593{
1594 if (tp->features & RTL_FEATURE_MSI) {
1595 pci_disable_msi(pdev);
1596 tp->features &= ~RTL_FEATURE_MSI;
1597 }
1598}
1599
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001600static int __devinit
1601rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
1602{
Francois Romieu0e485152007-02-20 00:00:26 +01001603 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
1604 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02001606 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001607 struct net_device *dev;
1608 void __iomem *ioaddr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001609 unsigned int i;
1610 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001612 if (netif_msg_drv(&debug)) {
1613 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
1614 MODULENAME, RTL8169_VERSION);
1615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001618 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001619 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001620 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001621 rc = -ENOMEM;
1622 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 }
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 SET_NETDEV_DEV(dev, &pdev->dev);
1626 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00001627 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02001628 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001629 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Francois Romieuccdffb92008-07-26 14:26:06 +02001631 mii = &tp->mii;
1632 mii->dev = dev;
1633 mii->mdio_read = rtl_mdio_read;
1634 mii->mdio_write = rtl_mdio_write;
1635 mii->phy_id_mask = 0x1f;
1636 mii->reg_num_mask = 0x1f;
1637 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 /* enable device (incl. PCI PM wakeup and hotplug setup) */
1640 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001641 if (rc < 0) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001642 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001643 dev_err(&pdev->dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001644 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646
1647 rc = pci_set_mwi(pdev);
1648 if (rc < 0)
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001649 goto err_out_disable_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001652 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001653 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001654 dev_err(&pdev->dev,
Francois Romieubcf0bf92006-07-26 23:14:13 +02001655 "region #%d not an MMIO resource, aborting\n",
1656 region);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 rc = -ENODEV;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001659 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001663 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001664 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001665 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001666 "Invalid PCI region size(s), aborting\n");
1667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 rc = -ENODEV;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001669 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
1671
1672 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001673 if (rc < 0) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001674 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001675 dev_err(&pdev->dev, "could not request regions.\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001676 goto err_out_mwi_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
1678
1679 tp->cp_cmd = PCIMulRW | RxChkSum;
1680
1681 if ((sizeof(dma_addr_t) > 4) &&
1682 !pci_set_dma_mask(pdev, DMA_64BIT_MASK) && use_dac) {
1683 tp->cp_cmd |= PCIDAC;
1684 dev->features |= NETIF_F_HIGHDMA;
1685 } else {
1686 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1687 if (rc < 0) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001688 if (netif_msg_probe(tp)) {
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001689 dev_err(&pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001690 "DMA configuration failed.\n");
1691 }
1692 goto err_out_free_res_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
1694 }
1695
1696 pci_set_master(pdev);
1697
1698 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02001699 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001700 if (!ioaddr) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001701 if (netif_msg_probe(tp))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04001702 dev_err(&pdev->dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 rc = -EIO;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001704 goto err_out_free_res_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
1706
Francois Romieu9c14cea2008-07-05 00:21:15 +02001707 tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1708 if (!tp->pcie_cap && netif_msg_probe(tp))
1709 dev_info(&pdev->dev, "no PCI Express capability\n");
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 /* Unneeded ? Don't mess with Mrs. Murphy. */
1712 rtl8169_irq_mask_and_ack(ioaddr);
1713
1714 /* Soft reset the chip. */
1715 RTL_W8(ChipCmd, CmdReset);
1716
1717 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01001718 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1720 break;
Francois Romieub518fa82006-08-16 15:23:13 +02001721 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 }
1723
1724 /* Identify chip attached to board */
1725 rtl8169_get_mac_version(tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Roel Kluincee60c32008-04-17 22:35:54 +02001729 for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 if (tp->mac_version == rtl_chip_info[i].mac_version)
1731 break;
1732 }
Roel Kluincee60c32008-04-17 22:35:54 +02001733 if (i == ARRAY_SIZE(rtl_chip_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 /* Unknown chip: assume array element #0, original RTL-8169 */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001735 if (netif_msg_probe(tp)) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -04001736 dev_printk(KERN_DEBUG, &pdev->dev,
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001737 "unknown chip version, assuming %s\n",
1738 rtl_chip_info[0].name);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001739 }
Roel Kluincee60c32008-04-17 22:35:54 +02001740 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
1742 tp->chipset = i;
1743
Francois Romieu5d06a992006-02-23 00:47:58 +01001744 RTL_W8(Cfg9346, Cfg9346_Unlock);
1745 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
1746 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Francois Romieufbac58f2007-10-04 22:51:38 +02001747 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01001748 RTL_W8(Cfg9346, Cfg9346_Lock);
1749
Francois Romieu66ec5d42007-11-06 22:56:10 +01001750 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
1751 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 tp->set_speed = rtl8169_set_speed_tbi;
1753 tp->get_settings = rtl8169_gset_tbi;
1754 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
1755 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
1756 tp->link_ok = rtl8169_tbi_link_ok;
1757
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001758 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 } else {
1760 tp->set_speed = rtl8169_set_speed_xmii;
1761 tp->get_settings = rtl8169_gset_xmii;
1762 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
1763 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
1764 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu5f787a12006-08-17 13:02:36 +02001765
1766 dev->do_ioctl = rtl8169_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
1768
1769 /* Get MAC address. FIXME: read EEPROM */
1770 for (i = 0; i < MAC_ADDR_LEN; i++)
1771 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04001772 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 dev->open = rtl8169_open;
1775 dev->hard_start_xmit = rtl8169_start_xmit;
1776 dev->get_stats = rtl8169_get_stats;
1777 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
1778 dev->stop = rtl8169_close;
1779 dev->tx_timeout = rtl8169_tx_timeout;
Francois Romieu07ce4062007-02-23 23:36:39 +01001780 dev->set_multicast_list = rtl_set_rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
1782 dev->irq = pdev->irq;
1783 dev->base_addr = (unsigned long) ioaddr;
1784 dev->change_mtu = rtl8169_change_mtu;
Francois Romieu773d2022007-01-31 23:47:43 +01001785 dev->set_mac_address = rtl_set_mac_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001787 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789#ifdef CONFIG_R8169_VLAN
1790 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
1791 dev->vlan_rx_register = rtl8169_vlan_rx_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792#endif
1793
1794#ifdef CONFIG_NET_POLL_CONTROLLER
1795 dev->poll_controller = rtl8169_netpoll;
1796#endif
1797
1798 tp->intr_mask = 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 tp->mmio_addr = ioaddr;
Francois Romieu0e485152007-02-20 00:00:26 +01001800 tp->align = cfg->align;
1801 tp->hw_start = cfg->hw_start;
1802 tp->intr_event = cfg->intr_event;
1803 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Francois Romieu2efa53f2007-03-09 00:00:05 +01001805 init_timer(&tp->timer);
1806 tp->timer.data = (unsigned long) dev;
1807 tp->timer.function = rtl8169_phy_timer;
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 spin_lock_init(&tp->lock);
1810
1811 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001812 if (rc < 0)
Francois Romieufbac58f2007-10-04 22:51:38 +02001813 goto err_out_msi_5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815 pci_set_drvdata(pdev, dev);
1816
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001817 if (netif_msg_probe(tp)) {
Francois Romieu96b97092007-05-30 00:32:05 +02001818 u32 xid = RTL_R32(TxConfig) & 0x7cf0f8ff;
1819
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001820 printk(KERN_INFO "%s: %s at 0x%lx, "
1821 "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x, "
Francois Romieu96b97092007-05-30 00:32:05 +02001822 "XID %08x IRQ %d\n",
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001823 dev->name,
Francois Romieubcf0bf92006-07-26 23:14:13 +02001824 rtl_chip_info[tp->chipset].name,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001825 dev->base_addr,
1826 dev->dev_addr[0], dev->dev_addr[1],
1827 dev->dev_addr[2], dev->dev_addr[3],
Francois Romieu96b97092007-05-30 00:32:05 +02001828 dev->dev_addr[4], dev->dev_addr[5], xid, dev->irq);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001831 rtl8169_init_phy(dev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001833out:
1834 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Francois Romieufbac58f2007-10-04 22:51:38 +02001836err_out_msi_5:
1837 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02001838 iounmap(ioaddr);
1839err_out_free_res_4:
1840 pci_release_regions(pdev);
1841err_out_mwi_3:
1842 pci_clear_mwi(pdev);
1843err_out_disable_2:
1844 pci_disable_device(pdev);
1845err_out_free_dev_1:
1846 free_netdev(dev);
1847 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848}
1849
Francois Romieu07d3f512007-02-21 22:40:46 +01001850static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
1852 struct net_device *dev = pci_get_drvdata(pdev);
1853 struct rtl8169_private *tp = netdev_priv(dev);
1854
Francois Romieueb2a0212007-02-15 23:37:21 +01001855 flush_scheduled_work();
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 unregister_netdev(dev);
Francois Romieufbac58f2007-10-04 22:51:38 +02001858 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 rtl8169_release_board(pdev, dev, tp->mmio_addr);
1860 pci_set_drvdata(pdev, NULL);
1861}
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863static void rtl8169_set_rxbufsize(struct rtl8169_private *tp,
1864 struct net_device *dev)
1865{
1866 unsigned int mtu = dev->mtu;
1867
1868 tp->rx_buf_sz = (mtu > RX_BUF_SIZE) ? mtu + ETH_HLEN + 8 : RX_BUF_SIZE;
1869}
1870
1871static int rtl8169_open(struct net_device *dev)
1872{
1873 struct rtl8169_private *tp = netdev_priv(dev);
1874 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02001875 int retval = -ENOMEM;
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 rtl8169_set_rxbufsize(tp, dev);
1879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 /*
1881 * Rx and Tx desscriptors needs 256 bytes alignment.
1882 * pci_alloc_consistent provides more.
1883 */
1884 tp->TxDescArray = pci_alloc_consistent(pdev, R8169_TX_RING_BYTES,
1885 &tp->TxPhyAddr);
1886 if (!tp->TxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02001887 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 tp->RxDescArray = pci_alloc_consistent(pdev, R8169_RX_RING_BYTES,
1890 &tp->RxPhyAddr);
1891 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02001892 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
1894 retval = rtl8169_init_ring(dev);
1895 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02001896 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
David Howellsc4028952006-11-22 14:57:56 +00001898 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Francois Romieu99f252b2007-04-02 22:59:59 +02001900 smp_mb();
1901
Francois Romieufbac58f2007-10-04 22:51:38 +02001902 retval = request_irq(dev->irq, rtl8169_interrupt,
1903 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02001904 dev->name, dev);
1905 if (retval < 0)
1906 goto err_release_ring_2;
1907
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001908 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001909
Francois Romieu07ce4062007-02-23 23:36:39 +01001910 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 rtl8169_request_timer(dev);
1913
1914 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
1915out:
1916 return retval;
1917
Francois Romieu99f252b2007-04-02 22:59:59 +02001918err_release_ring_2:
1919 rtl8169_rx_clear(tp);
1920err_free_rx_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
1922 tp->RxPhyAddr);
Francois Romieu99f252b2007-04-02 22:59:59 +02001923err_free_tx_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
1925 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 goto out;
1927}
1928
1929static void rtl8169_hw_reset(void __iomem *ioaddr)
1930{
1931 /* Disable interrupts */
1932 rtl8169_irq_mask_and_ack(ioaddr);
1933
1934 /* Reset the chipset */
1935 RTL_W8(ChipCmd, CmdReset);
1936
1937 /* PCI commit */
1938 RTL_R8(ChipCmd);
1939}
1940
Francois Romieu7f796d832007-06-11 23:04:41 +02001941static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01001942{
1943 void __iomem *ioaddr = tp->mmio_addr;
1944 u32 cfg = rtl8169_rx_config;
1945
1946 cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
1947 RTL_W32(RxConfig, cfg);
1948
1949 /* Set DMA burst size and Interframe Gap Time */
1950 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
1951 (InterFrameGap << TxInterFrameGapShift));
1952}
1953
Francois Romieu07ce4062007-02-23 23:36:39 +01001954static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
1956 struct rtl8169_private *tp = netdev_priv(dev);
1957 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001958 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960 /* Soft reset the chip. */
1961 RTL_W8(ChipCmd, CmdReset);
1962
1963 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01001964 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
1966 break;
Francois Romieub518fa82006-08-16 15:23:13 +02001967 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 }
1969
Francois Romieu07ce4062007-02-23 23:36:39 +01001970 tp->hw_start(dev);
1971
Francois Romieu07ce4062007-02-23 23:36:39 +01001972 netif_start_queue(dev);
1973}
1974
1975
Francois Romieu7f796d832007-06-11 23:04:41 +02001976static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
1977 void __iomem *ioaddr)
1978{
1979 /*
1980 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
1981 * register to be written before TxDescAddrLow to work.
1982 * Switching from MMIO to I/O access fixes the issue as well.
1983 */
1984 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
1985 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_32BIT_MASK);
1986 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
1987 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_32BIT_MASK);
1988}
1989
1990static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
1991{
1992 u16 cmd;
1993
1994 cmd = RTL_R16(CPlusCmd);
1995 RTL_W16(CPlusCmd, cmd);
1996 return cmd;
1997}
1998
1999static void rtl_set_rx_max_size(void __iomem *ioaddr)
2000{
2001 /* Low hurts. Let's disable the filtering. */
2002 RTL_W16(RxMaxSize, 16383);
2003}
2004
Francois Romieu6dccd162007-02-13 23:38:05 +01002005static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
2006{
2007 struct {
2008 u32 mac_version;
2009 u32 clk;
2010 u32 val;
2011 } cfg2_info [] = {
2012 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
2013 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
2014 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
2015 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
2016 }, *p = cfg2_info;
2017 unsigned int i;
2018 u32 clk;
2019
2020 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01002021 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01002022 if ((p->mac_version == mac_version) && (p->clk == clk)) {
2023 RTL_W32(0x7c, p->val);
2024 break;
2025 }
2026 }
2027}
2028
Francois Romieu07ce4062007-02-23 23:36:39 +01002029static void rtl_hw_start_8169(struct net_device *dev)
2030{
2031 struct rtl8169_private *tp = netdev_priv(dev);
2032 void __iomem *ioaddr = tp->mmio_addr;
2033 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01002034
Francois Romieu9cb427b2006-11-02 00:10:16 +01002035 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
2036 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
2037 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
2038 }
2039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieu9cb427b2006-11-02 00:10:16 +01002041 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
2042 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
2043 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
2044 (tp->mac_version == RTL_GIGA_MAC_VER_04))
2045 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 RTL_W8(EarlyTxThres, EarlyTxThld);
2048
Francois Romieu7f796d832007-06-11 23:04:41 +02002049 rtl_set_rx_max_size(ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Francois Romieuc946b302007-10-04 00:42:50 +02002051 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
2052 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
2053 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
2054 (tp->mac_version == RTL_GIGA_MAC_VER_04))
2055 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Francois Romieu7f796d832007-06-11 23:04:41 +02002057 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02002058
2059 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
2060 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Joe Perches06fa7352007-10-18 21:15:00 +02002061 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02002063 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 }
2065
Francois Romieubcf0bf92006-07-26 23:14:13 +02002066 RTL_W16(CPlusCmd, tp->cp_cmd);
2067
Francois Romieu6dccd162007-02-13 23:38:05 +01002068 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
2069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 /*
2071 * Undocumented corner. Supposedly:
2072 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
2073 */
2074 RTL_W16(IntrMitigate, 0x0000);
2075
Francois Romieu7f796d832007-06-11 23:04:41 +02002076 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01002077
Francois Romieuc946b302007-10-04 00:42:50 +02002078 if ((tp->mac_version != RTL_GIGA_MAC_VER_01) &&
2079 (tp->mac_version != RTL_GIGA_MAC_VER_02) &&
2080 (tp->mac_version != RTL_GIGA_MAC_VER_03) &&
2081 (tp->mac_version != RTL_GIGA_MAC_VER_04)) {
2082 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2083 rtl_set_rx_tx_config_registers(tp);
2084 }
2085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02002087
2088 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
2089 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091 RTL_W32(RxMissed, 0);
2092
Francois Romieu07ce4062007-02-23 23:36:39 +01002093 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
2095 /* no early-rx interrupts */
2096 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002097
2098 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01002099 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01002100}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Francois Romieu9c14cea2008-07-05 00:21:15 +02002102static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02002103{
Francois Romieu9c14cea2008-07-05 00:21:15 +02002104 struct net_device *dev = pci_get_drvdata(pdev);
2105 struct rtl8169_private *tp = netdev_priv(dev);
2106 int cap = tp->pcie_cap;
Francois Romieu458a9f62008-08-02 15:50:02 +02002107
Francois Romieu9c14cea2008-07-05 00:21:15 +02002108 if (cap) {
2109 u16 ctl;
2110
2111 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
2112 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
2113 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
2114 }
Francois Romieu458a9f62008-08-02 15:50:02 +02002115}
2116
Francois Romieu07ce4062007-02-23 23:36:39 +01002117static void rtl_hw_start_8168(struct net_device *dev)
2118{
Francois Romieu2dd99532007-06-11 23:22:52 +02002119 struct rtl8169_private *tp = netdev_priv(dev);
2120 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01002121 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02002122
2123 RTL_W8(Cfg9346, Cfg9346_Unlock);
2124
2125 RTL_W8(EarlyTxThres, EarlyTxThld);
2126
2127 rtl_set_rx_max_size(ioaddr);
2128
Francois Romieu0e485152007-02-20 00:00:26 +01002129 rtl_set_rx_tx_config_registers(tp);
2130
2131 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02002132
2133 RTL_W16(CPlusCmd, tp->cp_cmd);
2134
Francois Romieu9c14cea2008-07-05 00:21:15 +02002135 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieu0e485152007-02-20 00:00:26 +01002136
2137 RTL_W16(IntrMitigate, 0x5151);
2138
2139 /* Work around for RxFIFO overflow. */
2140 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
2141 tp->intr_event |= RxFIFOOver | PCSTimeout;
2142 tp->intr_event &= ~RxOverflow;
2143 }
Francois Romieu2dd99532007-06-11 23:22:52 +02002144
2145 rtl_set_rx_tx_desc_registers(tp, ioaddr);
2146
Francois Romieu2dd99532007-06-11 23:22:52 +02002147 RTL_W8(Cfg9346, Cfg9346_Lock);
2148
2149 RTL_R8(IntrMask);
2150
2151 RTL_W32(RxMissed, 0);
2152
2153 rtl_set_rx_mode(dev);
2154
Francois Romieu0e485152007-02-20 00:00:26 +01002155 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2156
Francois Romieu2dd99532007-06-11 23:22:52 +02002157 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002158
Francois Romieu0e485152007-02-20 00:00:26 +01002159 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01002160}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Francois Romieu07ce4062007-02-23 23:36:39 +01002162static void rtl_hw_start_8101(struct net_device *dev)
2163{
Francois Romieucdf1a602007-06-11 23:29:50 +02002164 struct rtl8169_private *tp = netdev_priv(dev);
2165 void __iomem *ioaddr = tp->mmio_addr;
2166 struct pci_dev *pdev = tp->pci_dev;
2167
Francois Romieue3cf0cc2007-08-17 14:55:46 +02002168 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
2169 (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
Francois Romieu9c14cea2008-07-05 00:21:15 +02002170 int cap = tp->pcie_cap;
2171
2172 if (cap) {
2173 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
2174 PCI_EXP_DEVCTL_NOSNOOP_EN);
2175 }
Francois Romieucdf1a602007-06-11 23:29:50 +02002176 }
2177
2178 RTL_W8(Cfg9346, Cfg9346_Unlock);
2179
2180 RTL_W8(EarlyTxThres, EarlyTxThld);
2181
2182 rtl_set_rx_max_size(ioaddr);
2183
2184 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
2185
2186 RTL_W16(CPlusCmd, tp->cp_cmd);
2187
2188 RTL_W16(IntrMitigate, 0x0000);
2189
2190 rtl_set_rx_tx_desc_registers(tp, ioaddr);
2191
2192 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2193 rtl_set_rx_tx_config_registers(tp);
2194
2195 RTL_W8(Cfg9346, Cfg9346_Lock);
2196
2197 RTL_R8(IntrMask);
2198
2199 RTL_W32(RxMissed, 0);
2200
2201 rtl_set_rx_mode(dev);
2202
Francois Romieu0e485152007-02-20 00:00:26 +01002203 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2204
Francois Romieucdf1a602007-06-11 23:29:50 +02002205 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002206
Francois Romieu0e485152007-02-20 00:00:26 +01002207 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208}
2209
2210static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
2211{
2212 struct rtl8169_private *tp = netdev_priv(dev);
2213 int ret = 0;
2214
2215 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
2216 return -EINVAL;
2217
2218 dev->mtu = new_mtu;
2219
2220 if (!netif_running(dev))
2221 goto out;
2222
2223 rtl8169_down(dev);
2224
2225 rtl8169_set_rxbufsize(tp, dev);
2226
2227 ret = rtl8169_init_ring(dev);
2228 if (ret < 0)
2229 goto out;
2230
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002231 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
Francois Romieu07ce4062007-02-23 23:36:39 +01002233 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 rtl8169_request_timer(dev);
2236
2237out:
2238 return ret;
2239}
2240
2241static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
2242{
Al Viro95e09182007-12-22 18:55:39 +00002243 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
2245}
2246
2247static void rtl8169_free_rx_skb(struct rtl8169_private *tp,
2248 struct sk_buff **sk_buff, struct RxDesc *desc)
2249{
2250 struct pci_dev *pdev = tp->pci_dev;
2251
2252 pci_unmap_single(pdev, le64_to_cpu(desc->addr), tp->rx_buf_sz,
2253 PCI_DMA_FROMDEVICE);
2254 dev_kfree_skb(*sk_buff);
2255 *sk_buff = NULL;
2256 rtl8169_make_unusable_by_asic(desc);
2257}
2258
2259static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
2260{
2261 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
2262
2263 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
2264}
2265
2266static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
2267 u32 rx_buf_sz)
2268{
2269 desc->addr = cpu_to_le64(mapping);
2270 wmb();
2271 rtl8169_mark_to_asic(desc, rx_buf_sz);
2272}
2273
Stephen Hemminger15d31752007-06-16 22:36:41 +02002274static struct sk_buff *rtl8169_alloc_rx_skb(struct pci_dev *pdev,
2275 struct net_device *dev,
2276 struct RxDesc *desc, int rx_buf_sz,
2277 unsigned int align)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
2279 struct sk_buff *skb;
2280 dma_addr_t mapping;
Francois Romieue9f63f32007-02-28 23:16:57 +01002281 unsigned int pad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Francois Romieue9f63f32007-02-28 23:16:57 +01002283 pad = align ? align : NET_IP_ALIGN;
2284
2285 skb = netdev_alloc_skb(dev, rx_buf_sz + pad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (!skb)
2287 goto err_out;
2288
Francois Romieue9f63f32007-02-28 23:16:57 +01002289 skb_reserve(skb, align ? ((pad - 1) & (unsigned long)skb->data) : pad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
David S. Miller689be432005-06-28 15:25:31 -07002291 mapping = pci_map_single(pdev, skb->data, rx_buf_sz,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 PCI_DMA_FROMDEVICE);
2293
2294 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295out:
Stephen Hemminger15d31752007-06-16 22:36:41 +02002296 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
2298err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 rtl8169_make_unusable_by_asic(desc);
2300 goto out;
2301}
2302
2303static void rtl8169_rx_clear(struct rtl8169_private *tp)
2304{
Francois Romieu07d3f512007-02-21 22:40:46 +01002305 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 for (i = 0; i < NUM_RX_DESC; i++) {
2308 if (tp->Rx_skbuff[i]) {
2309 rtl8169_free_rx_skb(tp, tp->Rx_skbuff + i,
2310 tp->RxDescArray + i);
2311 }
2312 }
2313}
2314
2315static u32 rtl8169_rx_fill(struct rtl8169_private *tp, struct net_device *dev,
2316 u32 start, u32 end)
2317{
2318 u32 cur;
Francois Romieu5b0384f2006-08-16 16:00:01 +02002319
Francois Romieu4ae47c22007-06-16 23:28:45 +02002320 for (cur = start; end - cur != 0; cur++) {
Stephen Hemminger15d31752007-06-16 22:36:41 +02002321 struct sk_buff *skb;
2322 unsigned int i = cur % NUM_RX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Francois Romieu4ae47c22007-06-16 23:28:45 +02002324 WARN_ON((s32)(end - cur) < 0);
2325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (tp->Rx_skbuff[i])
2327 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02002328
Stephen Hemminger15d31752007-06-16 22:36:41 +02002329 skb = rtl8169_alloc_rx_skb(tp->pci_dev, dev,
2330 tp->RxDescArray + i,
2331 tp->rx_buf_sz, tp->align);
2332 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 break;
Stephen Hemminger15d31752007-06-16 22:36:41 +02002334
2335 tp->Rx_skbuff[i] = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 }
2337 return cur - start;
2338}
2339
2340static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
2341{
2342 desc->opts1 |= cpu_to_le32(RingEnd);
2343}
2344
2345static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
2346{
2347 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
2348}
2349
2350static int rtl8169_init_ring(struct net_device *dev)
2351{
2352 struct rtl8169_private *tp = netdev_priv(dev);
2353
2354 rtl8169_init_ring_indexes(tp);
2355
2356 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
2357 memset(tp->Rx_skbuff, 0x0, NUM_RX_DESC * sizeof(struct sk_buff *));
2358
2359 if (rtl8169_rx_fill(tp, dev, 0, NUM_RX_DESC) != NUM_RX_DESC)
2360 goto err_out;
2361
2362 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
2363
2364 return 0;
2365
2366err_out:
2367 rtl8169_rx_clear(tp);
2368 return -ENOMEM;
2369}
2370
2371static void rtl8169_unmap_tx_skb(struct pci_dev *pdev, struct ring_info *tx_skb,
2372 struct TxDesc *desc)
2373{
2374 unsigned int len = tx_skb->len;
2375
2376 pci_unmap_single(pdev, le64_to_cpu(desc->addr), len, PCI_DMA_TODEVICE);
2377 desc->opts1 = 0x00;
2378 desc->opts2 = 0x00;
2379 desc->addr = 0x00;
2380 tx_skb->len = 0;
2381}
2382
2383static void rtl8169_tx_clear(struct rtl8169_private *tp)
2384{
2385 unsigned int i;
2386
2387 for (i = tp->dirty_tx; i < tp->dirty_tx + NUM_TX_DESC; i++) {
2388 unsigned int entry = i % NUM_TX_DESC;
2389 struct ring_info *tx_skb = tp->tx_skb + entry;
2390 unsigned int len = tx_skb->len;
2391
2392 if (len) {
2393 struct sk_buff *skb = tx_skb->skb;
2394
2395 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb,
2396 tp->TxDescArray + entry);
2397 if (skb) {
2398 dev_kfree_skb(skb);
2399 tx_skb->skb = NULL;
2400 }
Francois Romieucebf8cc2007-10-18 12:06:54 +02002401 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 }
2403 }
2404 tp->cur_tx = tp->dirty_tx = 0;
2405}
2406
David Howellsc4028952006-11-22 14:57:56 +00002407static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408{
2409 struct rtl8169_private *tp = netdev_priv(dev);
2410
David Howellsc4028952006-11-22 14:57:56 +00002411 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 schedule_delayed_work(&tp->task, 4);
2413}
2414
2415static void rtl8169_wait_for_quiescence(struct net_device *dev)
2416{
2417 struct rtl8169_private *tp = netdev_priv(dev);
2418 void __iomem *ioaddr = tp->mmio_addr;
2419
2420 synchronize_irq(dev->irq);
2421
2422 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002423 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
2425 rtl8169_irq_mask_and_ack(ioaddr);
2426
David S. Millerd1d08d12008-01-07 20:53:33 -08002427 tp->intr_mask = 0xffff;
2428 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002429 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430}
2431
David Howellsc4028952006-11-22 14:57:56 +00002432static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433{
David Howellsc4028952006-11-22 14:57:56 +00002434 struct rtl8169_private *tp =
2435 container_of(work, struct rtl8169_private, task.work);
2436 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 int ret;
2438
Francois Romieueb2a0212007-02-15 23:37:21 +01002439 rtnl_lock();
2440
2441 if (!netif_running(dev))
2442 goto out_unlock;
2443
2444 rtl8169_wait_for_quiescence(dev);
2445 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
2447 ret = rtl8169_open(dev);
2448 if (unlikely(ret < 0)) {
Francois Romieu07d3f512007-02-21 22:40:46 +01002449 if (net_ratelimit() && netif_msg_drv(tp)) {
Joe Perches53edbec2007-10-18 21:15:01 +02002450 printk(KERN_ERR PFX "%s: reinit failure (status = %d)."
Francois Romieu07d3f512007-02-21 22:40:46 +01002451 " Rescheduling.\n", dev->name, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 }
2453 rtl8169_schedule_work(dev, rtl8169_reinit_task);
2454 }
Francois Romieueb2a0212007-02-15 23:37:21 +01002455
2456out_unlock:
2457 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458}
2459
David Howellsc4028952006-11-22 14:57:56 +00002460static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
David Howellsc4028952006-11-22 14:57:56 +00002462 struct rtl8169_private *tp =
2463 container_of(work, struct rtl8169_private, task.work);
2464 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Francois Romieueb2a0212007-02-15 23:37:21 +01002466 rtnl_lock();
2467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01002469 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 rtl8169_wait_for_quiescence(dev);
2472
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002473 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, ~(u32)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 rtl8169_tx_clear(tp);
2475
2476 if (tp->dirty_rx == tp->cur_rx) {
2477 rtl8169_init_ring_indexes(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01002478 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 netif_wake_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02002480 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 } else {
Francois Romieu07d3f512007-02-21 22:40:46 +01002482 if (net_ratelimit() && netif_msg_intr(tp)) {
Joe Perches53edbec2007-10-18 21:15:01 +02002483 printk(KERN_EMERG PFX "%s: Rx buffers shortage\n",
Francois Romieu07d3f512007-02-21 22:40:46 +01002484 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 }
2486 rtl8169_schedule_work(dev, rtl8169_reset_task);
2487 }
Francois Romieueb2a0212007-02-15 23:37:21 +01002488
2489out_unlock:
2490 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
2493static void rtl8169_tx_timeout(struct net_device *dev)
2494{
2495 struct rtl8169_private *tp = netdev_priv(dev);
2496
2497 rtl8169_hw_reset(tp->mmio_addr);
2498
2499 /* Let's wait a bit while any (async) irq lands on */
2500 rtl8169_schedule_work(dev, rtl8169_reset_task);
2501}
2502
2503static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
2504 u32 opts1)
2505{
2506 struct skb_shared_info *info = skb_shinfo(skb);
2507 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04002508 struct TxDesc * uninitialized_var(txd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510 entry = tp->cur_tx;
2511 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
2512 skb_frag_t *frag = info->frags + cur_frag;
2513 dma_addr_t mapping;
2514 u32 status, len;
2515 void *addr;
2516
2517 entry = (entry + 1) % NUM_TX_DESC;
2518
2519 txd = tp->TxDescArray + entry;
2520 len = frag->size;
2521 addr = ((void *) page_address(frag->page)) + frag->page_offset;
2522 mapping = pci_map_single(tp->pci_dev, addr, len, PCI_DMA_TODEVICE);
2523
2524 /* anti gcc 2.95.3 bugware (sic) */
2525 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
2526
2527 txd->opts1 = cpu_to_le32(status);
2528 txd->addr = cpu_to_le64(mapping);
2529
2530 tp->tx_skb[entry].len = len;
2531 }
2532
2533 if (cur_frag) {
2534 tp->tx_skb[entry].skb = skb;
2535 txd->opts1 |= cpu_to_le32(LastFrag);
2536 }
2537
2538 return cur_frag;
2539}
2540
2541static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
2542{
2543 if (dev->features & NETIF_F_TSO) {
Herbert Xu79671682006-06-22 02:40:14 -07002544 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
2546 if (mss)
2547 return LargeSend | ((mss & MSSMask) << MSSShift);
2548 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07002549 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002550 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
2552 if (ip->protocol == IPPROTO_TCP)
2553 return IPCS | TCPCS;
2554 else if (ip->protocol == IPPROTO_UDP)
2555 return IPCS | UDPCS;
2556 WARN_ON(1); /* we need a WARN() */
2557 }
2558 return 0;
2559}
2560
2561static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev)
2562{
2563 struct rtl8169_private *tp = netdev_priv(dev);
2564 unsigned int frags, entry = tp->cur_tx % NUM_TX_DESC;
2565 struct TxDesc *txd = tp->TxDescArray + entry;
2566 void __iomem *ioaddr = tp->mmio_addr;
2567 dma_addr_t mapping;
2568 u32 status, len;
2569 u32 opts1;
Francois Romieu188f4af2006-08-16 14:51:52 +02002570 int ret = NETDEV_TX_OK;
Francois Romieu5b0384f2006-08-16 16:00:01 +02002571
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002573 if (netif_msg_drv(tp)) {
2574 printk(KERN_ERR
2575 "%s: BUG! Tx Ring full when queue awake!\n",
2576 dev->name);
2577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 goto err_stop;
2579 }
2580
2581 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
2582 goto err_stop;
2583
2584 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
2585
2586 frags = rtl8169_xmit_frags(tp, skb, opts1);
2587 if (frags) {
2588 len = skb_headlen(skb);
2589 opts1 |= FirstFrag;
2590 } else {
2591 len = skb->len;
2592
2593 if (unlikely(len < ETH_ZLEN)) {
Herbert Xu5b057c62006-06-23 02:06:41 -07002594 if (skb_padto(skb, ETH_ZLEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 goto err_update_stats;
2596 len = ETH_ZLEN;
2597 }
2598
2599 opts1 |= FirstFrag | LastFrag;
2600 tp->tx_skb[entry].skb = skb;
2601 }
2602
2603 mapping = pci_map_single(tp->pci_dev, skb->data, len, PCI_DMA_TODEVICE);
2604
2605 tp->tx_skb[entry].len = len;
2606 txd->addr = cpu_to_le64(mapping);
2607 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
2608
2609 wmb();
2610
2611 /* anti gcc 2.95.3 bugware (sic) */
2612 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
2613 txd->opts1 = cpu_to_le32(status);
2614
2615 dev->trans_start = jiffies;
2616
2617 tp->cur_tx += frags + 1;
2618
2619 smp_wmb();
2620
Francois Romieu275391a2007-02-23 23:50:28 +01002621 RTL_W8(TxPoll, NPQ); /* set polling bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
2623 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
2624 netif_stop_queue(dev);
2625 smp_rmb();
2626 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
2627 netif_wake_queue(dev);
2628 }
2629
2630out:
2631 return ret;
2632
2633err_stop:
2634 netif_stop_queue(dev);
Francois Romieu188f4af2006-08-16 14:51:52 +02002635 ret = NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636err_update_stats:
Francois Romieucebf8cc2007-10-18 12:06:54 +02002637 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 goto out;
2639}
2640
2641static void rtl8169_pcierr_interrupt(struct net_device *dev)
2642{
2643 struct rtl8169_private *tp = netdev_priv(dev);
2644 struct pci_dev *pdev = tp->pci_dev;
2645 void __iomem *ioaddr = tp->mmio_addr;
2646 u16 pci_status, pci_cmd;
2647
2648 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
2649 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
2650
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002651 if (netif_msg_intr(tp)) {
2652 printk(KERN_ERR
2653 "%s: PCI error (cmd = 0x%04x, status = 0x%04x).\n",
2654 dev->name, pci_cmd, pci_status);
2655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
2657 /*
2658 * The recovery sequence below admits a very elaborated explanation:
2659 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01002660 * - I did not see what else could be done;
2661 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 *
2663 * Feel free to adjust to your needs.
2664 */
Francois Romieua27993f2006-12-18 00:04:19 +01002665 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01002666 pci_cmd &= ~PCI_COMMAND_PARITY;
2667 else
2668 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
2669
2670 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672 pci_write_config_word(pdev, PCI_STATUS,
2673 pci_status & (PCI_STATUS_DETECTED_PARITY |
2674 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
2675 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
2676
2677 /* The infamous DAC f*ckup only happens at boot time */
2678 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002679 if (netif_msg_intr(tp))
2680 printk(KERN_INFO "%s: disabling PCI DAC.\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 tp->cp_cmd &= ~PCIDAC;
2682 RTL_W16(CPlusCmd, tp->cp_cmd);
2683 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 }
2685
2686 rtl8169_hw_reset(ioaddr);
Francois Romieud03902b2006-11-23 00:00:42 +01002687
2688 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689}
2690
Francois Romieu07d3f512007-02-21 22:40:46 +01002691static void rtl8169_tx_interrupt(struct net_device *dev,
2692 struct rtl8169_private *tp,
2693 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694{
2695 unsigned int dirty_tx, tx_left;
2696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 dirty_tx = tp->dirty_tx;
2698 smp_rmb();
2699 tx_left = tp->cur_tx - dirty_tx;
2700
2701 while (tx_left > 0) {
2702 unsigned int entry = dirty_tx % NUM_TX_DESC;
2703 struct ring_info *tx_skb = tp->tx_skb + entry;
2704 u32 len = tx_skb->len;
2705 u32 status;
2706
2707 rmb();
2708 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
2709 if (status & DescOwn)
2710 break;
2711
Francois Romieucebf8cc2007-10-18 12:06:54 +02002712 dev->stats.tx_bytes += len;
2713 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
2715 rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb, tp->TxDescArray + entry);
2716
2717 if (status & LastFrag) {
2718 dev_kfree_skb_irq(tx_skb->skb);
2719 tx_skb->skb = NULL;
2720 }
2721 dirty_tx++;
2722 tx_left--;
2723 }
2724
2725 if (tp->dirty_tx != dirty_tx) {
2726 tp->dirty_tx = dirty_tx;
2727 smp_wmb();
2728 if (netif_queue_stopped(dev) &&
2729 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
2730 netif_wake_queue(dev);
2731 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02002732 /*
2733 * 8168 hack: TxPoll requests are lost when the Tx packets are
2734 * too close. Let's kick an extra TxPoll request when a burst
2735 * of start_xmit activity is detected (if it is not detected,
2736 * it is slow enough). -- FR
2737 */
2738 smp_rmb();
2739 if (tp->cur_tx != dirty_tx)
2740 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 }
2742}
2743
Francois Romieu126fa4b2005-05-12 20:09:17 -04002744static inline int rtl8169_fragmented_frame(u32 status)
2745{
2746 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
2747}
2748
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749static inline void rtl8169_rx_csum(struct sk_buff *skb, struct RxDesc *desc)
2750{
2751 u32 opts1 = le32_to_cpu(desc->opts1);
2752 u32 status = opts1 & RxProtoMask;
2753
2754 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
2755 ((status == RxProtoUDP) && !(opts1 & UDPFail)) ||
2756 ((status == RxProtoIP) && !(opts1 & IPFail)))
2757 skb->ip_summed = CHECKSUM_UNNECESSARY;
2758 else
2759 skb->ip_summed = CHECKSUM_NONE;
2760}
2761
Francois Romieu07d3f512007-02-21 22:40:46 +01002762static inline bool rtl8169_try_rx_copy(struct sk_buff **sk_buff,
2763 struct rtl8169_private *tp, int pkt_size,
2764 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002766 struct sk_buff *skb;
2767 bool done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002769 if (pkt_size >= rx_copybreak)
2770 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
Francois Romieu07d3f512007-02-21 22:40:46 +01002772 skb = netdev_alloc_skb(tp->dev, pkt_size + NET_IP_ALIGN);
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002773 if (!skb)
2774 goto out;
2775
Francois Romieu07d3f512007-02-21 22:40:46 +01002776 pci_dma_sync_single_for_cpu(tp->pci_dev, addr, pkt_size,
2777 PCI_DMA_FROMDEVICE);
Francois Romieu86402232007-02-20 22:20:51 +01002778 skb_reserve(skb, NET_IP_ALIGN);
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002779 skb_copy_from_linear_data(*sk_buff, skb->data, pkt_size);
2780 *sk_buff = skb;
2781 done = true;
2782out:
2783 return done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784}
2785
Francois Romieu07d3f512007-02-21 22:40:46 +01002786static int rtl8169_rx_interrupt(struct net_device *dev,
2787 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002788 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789{
2790 unsigned int cur_rx, rx_left;
2791 unsigned int delta, count;
2792
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 cur_rx = tp->cur_rx;
2794 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02002795 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002797 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002799 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 u32 status;
2801
2802 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04002803 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
2805 if (status & DescOwn)
2806 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002807 if (unlikely(status & RxRES)) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002808 if (netif_msg_rx_err(tp)) {
2809 printk(KERN_INFO
2810 "%s: Rx ERROR. status = %08x\n",
2811 dev->name, status);
2812 }
Francois Romieucebf8cc2007-10-18 12:06:54 +02002813 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02002815 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02002817 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02002818 if (status & RxFOVF) {
2819 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02002820 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02002821 }
Francois Romieu126fa4b2005-05-12 20:09:17 -04002822 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 struct sk_buff *skb = tp->Rx_skbuff[entry];
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002825 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 int pkt_size = (status & 0x00001FFF) - 4;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002827 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Francois Romieu126fa4b2005-05-12 20:09:17 -04002829 /*
2830 * The driver does not support incoming fragmented
2831 * frames. They are seen as a symptom of over-mtu
2832 * sized frames.
2833 */
2834 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02002835 dev->stats.rx_dropped++;
2836 dev->stats.rx_length_errors++;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002837 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02002838 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04002839 }
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 rtl8169_rx_csum(skb, desc);
Francois Romieubcf0bf92006-07-26 23:14:13 +02002842
Francois Romieu07d3f512007-02-21 22:40:46 +01002843 if (rtl8169_try_rx_copy(&skb, tp, pkt_size, addr)) {
Stephen Hemmingerb4496552007-06-17 01:06:49 +02002844 pci_dma_sync_single_for_device(pdev, addr,
2845 pkt_size, PCI_DMA_FROMDEVICE);
2846 rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
2847 } else {
2848 pci_unmap_single(pdev, addr, pkt_size,
2849 PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 tp->Rx_skbuff[entry] = NULL;
2851 }
2852
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 skb_put(skb, pkt_size);
2854 skb->protocol = eth_type_trans(skb, dev);
2855
2856 if (rtl8169_rx_vlan_skb(tp, desc, skb) < 0)
Francois Romieu865c6522008-05-11 14:51:00 +02002857 netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859 dev->last_rx = jiffies;
Francois Romieucebf8cc2007-10-18 12:06:54 +02002860 dev->stats.rx_bytes += pkt_size;
2861 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 }
Francois Romieu6dccd162007-02-13 23:38:05 +01002863
2864 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00002865 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01002866 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
2867 desc->opts2 = 0;
2868 cur_rx++;
2869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 }
2871
2872 count = cur_rx - tp->cur_rx;
2873 tp->cur_rx = cur_rx;
2874
2875 delta = rtl8169_rx_fill(tp, dev, tp->dirty_rx, tp->cur_rx);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002876 if (!delta && count && netif_msg_intr(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 printk(KERN_INFO "%s: no Rx buffer allocated\n", dev->name);
2878 tp->dirty_rx += delta;
2879
2880 /*
2881 * FIXME: until there is periodic timer to try and refill the ring,
2882 * a temporary shortage may definitely kill the Rx process.
2883 * - disable the asic to try and avoid an overflow and kick it again
2884 * after refill ?
2885 * - how do others driver handle this condition (Uh oh...).
2886 */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002887 if ((tp->dirty_rx + NUM_RX_DESC == tp->cur_rx) && netif_msg_intr(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 printk(KERN_EMERG "%s: Rx buffers exhausted\n", dev->name);
2889
2890 return count;
2891}
2892
Francois Romieu07d3f512007-02-21 22:40:46 +01002893static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894{
Francois Romieu07d3f512007-02-21 22:40:46 +01002895 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02002899 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Francois Romieu865c6522008-05-11 14:51:00 +02002901 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Francois Romieu865c6522008-05-11 14:51:00 +02002903 /* hotplug/major error/no more work/shared irq */
2904 if ((status == 0xffff) || !status)
2905 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Francois Romieu865c6522008-05-11 14:51:00 +02002907 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Francois Romieu865c6522008-05-11 14:51:00 +02002909 if (unlikely(!netif_running(dev))) {
2910 rtl8169_asic_down(ioaddr);
2911 goto out;
2912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
Francois Romieu865c6522008-05-11 14:51:00 +02002914 status &= tp->intr_mask;
2915 RTL_W16(IntrStatus,
2916 (status & RxFIFOOver) ? (status | RxOverflow) : status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Francois Romieu865c6522008-05-11 14:51:00 +02002918 if (!(status & tp->intr_event))
2919 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Francois Romieu865c6522008-05-11 14:51:00 +02002921 /* Work around for rx fifo overflow */
2922 if (unlikely(status & RxFIFOOver) &&
2923 (tp->mac_version == RTL_GIGA_MAC_VER_11)) {
2924 netif_stop_queue(dev);
2925 rtl8169_tx_timeout(dev);
2926 goto out;
2927 }
Francois Romieu0e485152007-02-20 00:00:26 +01002928
Francois Romieu865c6522008-05-11 14:51:00 +02002929 if (unlikely(status & SYSErr)) {
2930 rtl8169_pcierr_interrupt(dev);
2931 goto out;
2932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Francois Romieu865c6522008-05-11 14:51:00 +02002934 if (status & LinkChg)
2935 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
Francois Romieu865c6522008-05-11 14:51:00 +02002937 if (status & tp->napi_event) {
2938 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
2939 tp->intr_mask = ~tp->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002941 if (likely(netif_rx_schedule_prep(dev, &tp->napi)))
2942 __netif_rx_schedule(dev, &tp->napi);
Francois Romieu865c6522008-05-11 14:51:00 +02002943 else if (netif_msg_intr(tp)) {
2944 printk(KERN_INFO "%s: interrupt %04x in poll\n",
2945 dev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 }
2948out:
2949 return IRQ_RETVAL(handled);
2950}
2951
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002952static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002954 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
2955 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002957 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002959 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 rtl8169_tx_interrupt(dev, tp, ioaddr);
2961
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002962 if (work_done < budget) {
2963 netif_rx_complete(dev, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 tp->intr_mask = 0xffff;
2965 /*
2966 * 20040426: the barrier is not strictly required but the
2967 * behavior of the irq handler could be less predictable
2968 * without it. Btw, the lack of flush for the posted pci
2969 * write is safe - FR
2970 */
2971 smp_wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01002972 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 }
2974
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002975 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978static void rtl8169_down(struct net_device *dev)
2979{
2980 struct rtl8169_private *tp = netdev_priv(dev);
2981 void __iomem *ioaddr = tp->mmio_addr;
Arnaud Patard733b7362006-10-12 22:33:31 +02002982 unsigned int intrmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
2984 rtl8169_delete_timer(dev);
2985
2986 netif_stop_queue(dev);
2987
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01002988 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01002989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990core_down:
2991 spin_lock_irq(&tp->lock);
2992
2993 rtl8169_asic_down(ioaddr);
2994
2995 /* Update the error counts. */
Francois Romieucebf8cc2007-10-18 12:06:54 +02002996 dev->stats.rx_missed_errors += RTL_R32(RxMissed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 RTL_W32(RxMissed, 0);
2998
2999 spin_unlock_irq(&tp->lock);
3000
3001 synchronize_irq(dev->irq);
3002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003004 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
3006 /*
3007 * And now for the 50k$ question: are IRQ disabled or not ?
3008 *
3009 * Two paths lead here:
3010 * 1) dev->close
3011 * -> netif_running() is available to sync the current code and the
3012 * IRQ handler. See rtl8169_interrupt for details.
3013 * 2) dev->change_mtu
3014 * -> rtl8169_poll can not be issued again and re-enable the
3015 * interruptions. Let's simply issue the IRQ down sequence again.
Arnaud Patard733b7362006-10-12 22:33:31 +02003016 *
3017 * No loop if hotpluged or major error (0xffff).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 */
Arnaud Patard733b7362006-10-12 22:33:31 +02003019 intrmask = RTL_R16(IntrMask);
3020 if (intrmask && (intrmask != 0xffff))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 goto core_down;
3022
3023 rtl8169_tx_clear(tp);
3024
3025 rtl8169_rx_clear(tp);
3026}
3027
3028static int rtl8169_close(struct net_device *dev)
3029{
3030 struct rtl8169_private *tp = netdev_priv(dev);
3031 struct pci_dev *pdev = tp->pci_dev;
3032
3033 rtl8169_down(dev);
3034
3035 free_irq(dev->irq, dev);
3036
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
3038 tp->RxPhyAddr);
3039 pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
3040 tp->TxPhyAddr);
3041 tp->TxDescArray = NULL;
3042 tp->RxDescArray = NULL;
3043
3044 return 0;
3045}
3046
Francois Romieu07ce4062007-02-23 23:36:39 +01003047static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048{
3049 struct rtl8169_private *tp = netdev_priv(dev);
3050 void __iomem *ioaddr = tp->mmio_addr;
3051 unsigned long flags;
3052 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01003053 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 u32 tmp = 0;
3055
3056 if (dev->flags & IFF_PROMISC) {
3057 /* Unconditionally log net taps. */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003058 if (netif_msg_link(tp)) {
3059 printk(KERN_NOTICE "%s: Promiscuous mode enabled.\n",
3060 dev->name);
3061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 rx_mode =
3063 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
3064 AcceptAllPhys;
3065 mc_filter[1] = mc_filter[0] = 0xffffffff;
3066 } else if ((dev->mc_count > multicast_filter_limit)
3067 || (dev->flags & IFF_ALLMULTI)) {
3068 /* Too many to filter perfectly -- accept all multicasts. */
3069 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
3070 mc_filter[1] = mc_filter[0] = 0xffffffff;
3071 } else {
3072 struct dev_mc_list *mclist;
Francois Romieu07d3f512007-02-21 22:40:46 +01003073 unsigned int i;
3074
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 rx_mode = AcceptBroadcast | AcceptMyPhys;
3076 mc_filter[1] = mc_filter[0] = 0;
3077 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
3078 i++, mclist = mclist->next) {
3079 int bit_nr = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
3080 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
3081 rx_mode |= AcceptMulticast;
3082 }
3083 }
3084
3085 spin_lock_irqsave(&tp->lock, flags);
3086
3087 tmp = rtl8169_rx_config | rx_mode |
3088 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
3089
Francois Romieuf887cce2008-07-17 22:24:18 +02003090 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01003091 u32 data = mc_filter[0];
3092
3093 mc_filter[0] = swab32(mc_filter[1]);
3094 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02003095 }
3096
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 RTL_W32(MAR0 + 0, mc_filter[0]);
3098 RTL_W32(MAR0 + 4, mc_filter[1]);
3099
Francois Romieu57a9f232007-06-04 22:10:15 +02003100 RTL_W32(RxConfig, tmp);
3101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 spin_unlock_irqrestore(&tp->lock, flags);
3103}
3104
3105/**
3106 * rtl8169_get_stats - Get rtl8169 read/write statistics
3107 * @dev: The Ethernet Device to get statistics for
3108 *
3109 * Get TX/RX statistics for rtl8169
3110 */
3111static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
3112{
3113 struct rtl8169_private *tp = netdev_priv(dev);
3114 void __iomem *ioaddr = tp->mmio_addr;
3115 unsigned long flags;
3116
3117 if (netif_running(dev)) {
3118 spin_lock_irqsave(&tp->lock, flags);
Francois Romieucebf8cc2007-10-18 12:06:54 +02003119 dev->stats.rx_missed_errors += RTL_R32(RxMissed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 RTL_W32(RxMissed, 0);
3121 spin_unlock_irqrestore(&tp->lock, flags);
3122 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02003123
Francois Romieucebf8cc2007-10-18 12:06:54 +02003124 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125}
3126
Francois Romieu5d06a992006-02-23 00:47:58 +01003127#ifdef CONFIG_PM
3128
3129static int rtl8169_suspend(struct pci_dev *pdev, pm_message_t state)
3130{
3131 struct net_device *dev = pci_get_drvdata(pdev);
3132 struct rtl8169_private *tp = netdev_priv(dev);
3133 void __iomem *ioaddr = tp->mmio_addr;
3134
3135 if (!netif_running(dev))
Francois Romieu1371fa62007-04-02 23:01:11 +02003136 goto out_pci_suspend;
Francois Romieu5d06a992006-02-23 00:47:58 +01003137
3138 netif_device_detach(dev);
3139 netif_stop_queue(dev);
3140
3141 spin_lock_irq(&tp->lock);
3142
3143 rtl8169_asic_down(ioaddr);
3144
Francois Romieucebf8cc2007-10-18 12:06:54 +02003145 dev->stats.rx_missed_errors += RTL_R32(RxMissed);
Francois Romieu5d06a992006-02-23 00:47:58 +01003146 RTL_W32(RxMissed, 0);
3147
3148 spin_unlock_irq(&tp->lock);
3149
Francois Romieu1371fa62007-04-02 23:01:11 +02003150out_pci_suspend:
Francois Romieu5d06a992006-02-23 00:47:58 +01003151 pci_save_state(pdev);
Francois Romieuf23e7fd2007-10-04 22:36:14 +02003152 pci_enable_wake(pdev, pci_choose_state(pdev, state),
3153 (tp->features & RTL_FEATURE_WOL) ? 1 : 0);
Francois Romieu5d06a992006-02-23 00:47:58 +01003154 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Francois Romieu1371fa62007-04-02 23:01:11 +02003155
Francois Romieu5d06a992006-02-23 00:47:58 +01003156 return 0;
3157}
3158
3159static int rtl8169_resume(struct pci_dev *pdev)
3160{
3161 struct net_device *dev = pci_get_drvdata(pdev);
3162
Francois Romieu1371fa62007-04-02 23:01:11 +02003163 pci_set_power_state(pdev, PCI_D0);
3164 pci_restore_state(pdev);
3165 pci_enable_wake(pdev, PCI_D0, 0);
3166
Francois Romieu5d06a992006-02-23 00:47:58 +01003167 if (!netif_running(dev))
3168 goto out;
3169
3170 netif_device_attach(dev);
3171
Francois Romieu5d06a992006-02-23 00:47:58 +01003172 rtl8169_schedule_work(dev, rtl8169_reset_task);
3173out:
3174 return 0;
3175}
3176
3177#endif /* CONFIG_PM */
3178
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179static struct pci_driver rtl8169_pci_driver = {
3180 .name = MODULENAME,
3181 .id_table = rtl8169_pci_tbl,
3182 .probe = rtl8169_init_one,
3183 .remove = __devexit_p(rtl8169_remove_one),
3184#ifdef CONFIG_PM
3185 .suspend = rtl8169_suspend,
3186 .resume = rtl8169_resume,
3187#endif
3188};
3189
Francois Romieu07d3f512007-02-21 22:40:46 +01003190static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191{
Jeff Garzik29917622006-08-19 17:48:59 -04003192 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193}
3194
Francois Romieu07d3f512007-02-21 22:40:46 +01003195static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196{
3197 pci_unregister_driver(&rtl8169_pci_driver);
3198}
3199
3200module_init(rtl8169_init_module);
3201module_exit(rtl8169_cleanup_module);