blob: 312446234509f3dc706fc33053351b57ab2e7247 [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>
Rafael J. Wysockie1759442010-03-14 14:33:51 +000026#include <linux/pm_runtime.h>
françois romieubca03d52011-01-03 15:07:31 +000027#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Francois Romieu99f252b2007-04-02 22:59:59 +020029#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/io.h>
31#include <asm/irq.h>
32
Francois Romieu865c6522008-05-11 14:51:00 +020033#define RTL8169_VERSION "2.3LK-NAPI"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define MODULENAME "r8169"
35#define PFX MODULENAME ": "
36
françois romieubca03d52011-01-03 15:07:31 +000037#define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
38#define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#ifdef RTL8169_DEBUG
41#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020042 if (!(expr)) { \
43 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070044 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020045 }
Joe Perches06fa7352007-10-18 21:15:00 +020046#define dprintk(fmt, args...) \
47 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#else
49#define assert(expr) do {} while (0)
50#define dprintk(fmt, args...) do {} while (0)
51#endif /* RTL8169_DEBUG */
52
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020053#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070054 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define TX_BUFFS_AVAIL(tp) \
57 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
60 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050061static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* MAC address length */
64#define MAC_ADDR_LEN 6
65
Francois Romieu9c14cea2008-07-05 00:21:15 +020066#define MAX_READ_REQUEST_SHIFT 12
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
68#define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
69#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
Francois Romieu07d3f512007-02-21 22:40:46 +010070#define EarlyTxThld 0x3F /* 0x3F means NO early transmit */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
72#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
73
74#define R8169_REGS_SIZE 256
75#define R8169_NAPI_WEIGHT 64
76#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
77#define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
78#define RX_BUF_SIZE 1536 /* Rx Buffer size */
79#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
80#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
81
82#define RTL8169_TX_TIMEOUT (6*HZ)
83#define RTL8169_PHY_TIMEOUT (10*HZ)
84
françois romieuea8dbdd2009-03-15 01:10:50 +000085#define RTL_EEPROM_SIG cpu_to_le32(0x8129)
86#define RTL_EEPROM_SIG_MASK cpu_to_le32(0xffff)
Francois Romieue1564ec2008-10-16 22:46:13 +020087#define RTL_EEPROM_SIG_ADDR 0x0000
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/* write/read MMIO register */
90#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
91#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
92#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
93#define RTL_R8(reg) readb (ioaddr + (reg))
94#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +000095#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97enum mac_version {
Jean Delvaref21b75e2009-05-26 20:54:48 -070098 RTL_GIGA_MAC_NONE = 0x00,
Francois Romieuba6eb6e2007-06-11 23:35:18 +020099 RTL_GIGA_MAC_VER_01 = 0x01, // 8169
100 RTL_GIGA_MAC_VER_02 = 0x02, // 8169S
101 RTL_GIGA_MAC_VER_03 = 0x03, // 8110S
102 RTL_GIGA_MAC_VER_04 = 0x04, // 8169SB
103 RTL_GIGA_MAC_VER_05 = 0x05, // 8110SCd
Francois Romieu6dccd162007-02-13 23:38:05 +0100104 RTL_GIGA_MAC_VER_06 = 0x06, // 8110SCe
Francois Romieu2857ffb2008-08-02 21:08:49 +0200105 RTL_GIGA_MAC_VER_07 = 0x07, // 8102e
106 RTL_GIGA_MAC_VER_08 = 0x08, // 8102e
107 RTL_GIGA_MAC_VER_09 = 0x09, // 8102e
108 RTL_GIGA_MAC_VER_10 = 0x0a, // 8101e
Francois Romieu2dd99532007-06-11 23:22:52 +0200109 RTL_GIGA_MAC_VER_11 = 0x0b, // 8168Bb
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200110 RTL_GIGA_MAC_VER_12 = 0x0c, // 8168Be
111 RTL_GIGA_MAC_VER_13 = 0x0d, // 8101Eb
112 RTL_GIGA_MAC_VER_14 = 0x0e, // 8101 ?
113 RTL_GIGA_MAC_VER_15 = 0x0f, // 8101 ?
114 RTL_GIGA_MAC_VER_16 = 0x11, // 8101Ec
115 RTL_GIGA_MAC_VER_17 = 0x10, // 8168Bf
116 RTL_GIGA_MAC_VER_18 = 0x12, // 8168CP
117 RTL_GIGA_MAC_VER_19 = 0x13, // 8168C
Francois Romieu197ff762008-06-28 13:16:02 +0200118 RTL_GIGA_MAC_VER_20 = 0x14, // 8168C
Francois Romieu6fb07052008-06-29 11:54:28 +0200119 RTL_GIGA_MAC_VER_21 = 0x15, // 8168C
Francois Romieuef3386f2008-06-29 12:24:30 +0200120 RTL_GIGA_MAC_VER_22 = 0x16, // 8168C
Francois Romieu7f3e3d32008-07-20 18:53:20 +0200121 RTL_GIGA_MAC_VER_23 = 0x17, // 8168CP
Francois Romieu5b538df2008-07-20 16:22:45 +0200122 RTL_GIGA_MAC_VER_24 = 0x18, // 8168CP
françois romieudaf9df62009-10-07 12:44:20 +0000123 RTL_GIGA_MAC_VER_25 = 0x19, // 8168D
124 RTL_GIGA_MAC_VER_26 = 0x1a, // 8168D
125 RTL_GIGA_MAC_VER_27 = 0x1b // 8168DP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#define _R(NAME,MAC,MASK) \
129 { .name = NAME, .mac_version = MAC, .RxConfigMask = MASK }
130
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800131static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 const char *name;
133 u8 mac_version;
134 u32 RxConfigMask; /* Clears the bits supported by this chip */
135} rtl_chip_info[] = {
Francois Romieuba6eb6e2007-06-11 23:35:18 +0200136 _R("RTL8169", RTL_GIGA_MAC_VER_01, 0xff7e1880), // 8169
137 _R("RTL8169s", RTL_GIGA_MAC_VER_02, 0xff7e1880), // 8169S
138 _R("RTL8110s", RTL_GIGA_MAC_VER_03, 0xff7e1880), // 8110S
139 _R("RTL8169sb/8110sb", RTL_GIGA_MAC_VER_04, 0xff7e1880), // 8169SB
140 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_05, 0xff7e1880), // 8110SCd
Francois Romieu6dccd162007-02-13 23:38:05 +0100141 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_06, 0xff7e1880), // 8110SCe
Francois Romieu2857ffb2008-08-02 21:08:49 +0200142 _R("RTL8102e", RTL_GIGA_MAC_VER_07, 0xff7e1880), // PCI-E
143 _R("RTL8102e", RTL_GIGA_MAC_VER_08, 0xff7e1880), // PCI-E
144 _R("RTL8102e", RTL_GIGA_MAC_VER_09, 0xff7e1880), // PCI-E
145 _R("RTL8101e", RTL_GIGA_MAC_VER_10, 0xff7e1880), // PCI-E
Francois Romieubcf0bf92006-07-26 23:14:13 +0200146 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_11, 0xff7e1880), // PCI-E
147 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_12, 0xff7e1880), // PCI-E
148 _R("RTL8101e", RTL_GIGA_MAC_VER_13, 0xff7e1880), // PCI-E 8139
149 _R("RTL8100e", RTL_GIGA_MAC_VER_14, 0xff7e1880), // PCI-E 8139
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200150 _R("RTL8100e", RTL_GIGA_MAC_VER_15, 0xff7e1880), // PCI-E 8139
151 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_17, 0xff7e1880), // PCI-E
152 _R("RTL8101e", RTL_GIGA_MAC_VER_16, 0xff7e1880), // PCI-E
153 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_18, 0xff7e1880), // PCI-E
154 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_19, 0xff7e1880), // PCI-E
Francois Romieu197ff762008-06-28 13:16:02 +0200155 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_20, 0xff7e1880), // PCI-E
Francois Romieu6fb07052008-06-29 11:54:28 +0200156 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_21, 0xff7e1880), // PCI-E
Francois Romieuef3386f2008-06-29 12:24:30 +0200157 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_22, 0xff7e1880), // PCI-E
Francois Romieu7f3e3d32008-07-20 18:53:20 +0200158 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_23, 0xff7e1880), // PCI-E
Francois Romieu5b538df2008-07-20 16:22:45 +0200159 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_24, 0xff7e1880), // PCI-E
françois romieudaf9df62009-10-07 12:44:20 +0000160 _R("RTL8168d/8111d", RTL_GIGA_MAC_VER_25, 0xff7e1880), // PCI-E
161 _R("RTL8168d/8111d", RTL_GIGA_MAC_VER_26, 0xff7e1880), // PCI-E
162 _R("RTL8168dp/8111dp", RTL_GIGA_MAC_VER_27, 0xff7e1880) // PCI-E
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163};
164#undef _R
165
Francois Romieubcf0bf92006-07-26 23:14:13 +0200166enum cfg_version {
167 RTL_CFG_0 = 0x00,
168 RTL_CFG_1,
169 RTL_CFG_2
170};
171
Francois Romieu07ce4062007-02-23 23:36:39 +0100172static void rtl_hw_start_8169(struct net_device *);
173static void rtl_hw_start_8168(struct net_device *);
174static void rtl_hw_start_8101(struct net_device *);
175
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000176static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200177 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200178 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200179 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100180 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200181 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
182 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200183 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200184 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
185 { PCI_VENDOR_ID_LINKSYS, 0x1032,
186 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100187 { 0x0001, 0x8168,
188 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 {0,},
190};
191
192MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
193
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000194static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700195static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200196static struct {
197 u32 msg_enable;
198} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Francois Romieu07d3f512007-02-21 22:40:46 +0100200enum rtl_registers {
201 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100202 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100203 MAR0 = 8, /* Multicast filter. */
204 CounterAddrLow = 0x10,
205 CounterAddrHigh = 0x14,
206 TxDescStartAddrLow = 0x20,
207 TxDescStartAddrHigh = 0x24,
208 TxHDescStartAddrLow = 0x28,
209 TxHDescStartAddrHigh = 0x2c,
210 FLASH = 0x30,
211 ERSR = 0x36,
212 ChipCmd = 0x37,
213 TxPoll = 0x38,
214 IntrMask = 0x3c,
215 IntrStatus = 0x3e,
216 TxConfig = 0x40,
217 RxConfig = 0x44,
218 RxMissed = 0x4c,
219 Cfg9346 = 0x50,
220 Config0 = 0x51,
221 Config1 = 0x52,
222 Config2 = 0x53,
223 Config3 = 0x54,
224 Config4 = 0x55,
225 Config5 = 0x56,
226 MultiIntr = 0x5c,
227 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100228 PHYstatus = 0x6c,
229 RxMaxSize = 0xda,
230 CPlusCmd = 0xe0,
231 IntrMitigate = 0xe2,
232 RxDescAddrLow = 0xe4,
233 RxDescAddrHigh = 0xe8,
234 EarlyTxThres = 0xec,
235 FuncEvent = 0xf0,
236 FuncEventMask = 0xf4,
237 FuncPresetState = 0xf8,
238 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239};
240
Francois Romieuf162a5d2008-06-01 22:37:49 +0200241enum rtl8110_registers {
242 TBICSR = 0x64,
243 TBI_ANAR = 0x68,
244 TBI_LPAR = 0x6a,
245};
246
247enum rtl8168_8101_registers {
248 CSIDR = 0x64,
249 CSIAR = 0x68,
250#define CSIAR_FLAG 0x80000000
251#define CSIAR_WRITE_CMD 0x80000000
252#define CSIAR_BYTE_ENABLE 0x0f
253#define CSIAR_BYTE_ENABLE_SHIFT 12
254#define CSIAR_ADDR_MASK 0x0fff
255
256 EPHYAR = 0x80,
257#define EPHYAR_FLAG 0x80000000
258#define EPHYAR_WRITE_CMD 0x80000000
259#define EPHYAR_REG_MASK 0x1f
260#define EPHYAR_REG_SHIFT 16
261#define EPHYAR_DATA_MASK 0xffff
262 DBG_REG = 0xd1,
263#define FIX_NAK_1 (1 << 4)
264#define FIX_NAK_2 (1 << 3)
françois romieudaf9df62009-10-07 12:44:20 +0000265 EFUSEAR = 0xdc,
266#define EFUSEAR_FLAG 0x80000000
267#define EFUSEAR_WRITE_CMD 0x80000000
268#define EFUSEAR_READ_CMD 0x00000000
269#define EFUSEAR_REG_MASK 0x03ff
270#define EFUSEAR_REG_SHIFT 8
271#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200272};
273
Francois Romieu07d3f512007-02-21 22:40:46 +0100274enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100276 SYSErr = 0x8000,
277 PCSTimeout = 0x4000,
278 SWInt = 0x0100,
279 TxDescUnavail = 0x0080,
280 RxFIFOOver = 0x0040,
281 LinkChg = 0x0020,
282 RxOverflow = 0x0010,
283 TxErr = 0x0008,
284 TxOK = 0x0004,
285 RxErr = 0x0002,
286 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 /* RxStatusDesc */
Francois Romieu9dccf612006-05-14 12:31:17 +0200289 RxFOVF = (1 << 23),
290 RxRWT = (1 << 22),
291 RxRES = (1 << 21),
292 RxRUNT = (1 << 20),
293 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 /* ChipCmdBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100296 CmdReset = 0x10,
297 CmdRxEnb = 0x08,
298 CmdTxEnb = 0x04,
299 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Francois Romieu275391a2007-02-23 23:50:28 +0100301 /* TXPoll register p.5 */
302 HPQ = 0x80, /* Poll cmd on the high prio queue */
303 NPQ = 0x40, /* Poll cmd on the low prio queue */
304 FSWInt = 0x01, /* Forced software interrupt */
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100307 Cfg9346_Lock = 0x00,
308 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100311 AcceptErr = 0x20,
312 AcceptRunt = 0x10,
313 AcceptBroadcast = 0x08,
314 AcceptMulticast = 0x04,
315 AcceptMyPhys = 0x02,
316 AcceptAllPhys = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 /* RxConfigBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100319 RxCfgFIFOShift = 13,
320 RxCfgDMAShift = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /* TxConfigBits */
323 TxInterFrameGapShift = 24,
324 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
325
Francois Romieu5d06a992006-02-23 00:47:58 +0100326 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200327 LEDS1 = (1 << 7),
328 LEDS0 = (1 << 6),
Francois Romieufbac58f2007-10-04 22:51:38 +0200329 MSIEnable = (1 << 5), /* Enable Message Signaled Interrupt */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200330 Speed_down = (1 << 4),
331 MEMMAP = (1 << 3),
332 IOMAP = (1 << 2),
333 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100334 PMEnable = (1 << 0), /* Power Management Enable */
335
Francois Romieu6dccd162007-02-13 23:38:05 +0100336 /* Config2 register p. 25 */
337 PCI_Clock_66MHz = 0x01,
338 PCI_Clock_33MHz = 0x00,
339
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100340 /* Config3 register p.25 */
341 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
342 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200343 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100344
Francois Romieu5d06a992006-02-23 00:47:58 +0100345 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100346 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
347 MWF = (1 << 5), /* Accept Multicast wakeup frame */
348 UWF = (1 << 4), /* Accept Unicast wakeup frame */
349 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100350 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /* TBICSR p.28 */
353 TBIReset = 0x80000000,
354 TBILoopback = 0x40000000,
355 TBINwEnable = 0x20000000,
356 TBINwRestart = 0x10000000,
357 TBILinkOk = 0x02000000,
358 TBINwComplete = 0x01000000,
359
360 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200361 EnableBist = (1 << 15), // 8168 8101
362 Mac_dbgo_oe = (1 << 14), // 8168 8101
363 Normal_mode = (1 << 13), // unused
364 Force_half_dup = (1 << 12), // 8168 8101
365 Force_rxflow_en = (1 << 11), // 8168 8101
366 Force_txflow_en = (1 << 10), // 8168 8101
367 Cxpl_dbg_sel = (1 << 9), // 8168 8101
368 ASF = (1 << 8), // 8168 8101
369 PktCntrDisable = (1 << 7), // 8168 8101
370 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 RxVlan = (1 << 6),
372 RxChkSum = (1 << 5),
373 PCIDAC = (1 << 4),
374 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100375 INTT_0 = 0x0000, // 8168
376 INTT_1 = 0x0001, // 8168
377 INTT_2 = 0x0002, // 8168
378 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100381 TBI_Enable = 0x80,
382 TxFlowCtrl = 0x40,
383 RxFlowCtrl = 0x20,
384 _1000bpsF = 0x10,
385 _100bps = 0x08,
386 _10bps = 0x04,
387 LinkStatus = 0x02,
388 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100391 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200392
393 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100394 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395};
396
Francois Romieu07d3f512007-02-21 22:40:46 +0100397enum desc_status_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
399 RingEnd = (1 << 30), /* End of descriptor ring */
400 FirstFrag = (1 << 29), /* First segment of a packet */
401 LastFrag = (1 << 28), /* Final segment of a packet */
402
403 /* Tx private */
404 LargeSend = (1 << 27), /* TCP Large Send Offload (TSO) */
405 MSSShift = 16, /* MSS value position */
406 MSSMask = 0xfff, /* MSS value + LargeSend bit: 12 bits */
407 IPCS = (1 << 18), /* Calculate IP checksum */
408 UDPCS = (1 << 17), /* Calculate UDP/IP checksum */
409 TCPCS = (1 << 16), /* Calculate TCP/IP checksum */
410 TxVlanTag = (1 << 17), /* Add VLAN tag */
411
412 /* Rx private */
413 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
414 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
415
416#define RxProtoUDP (PID1)
417#define RxProtoTCP (PID0)
418#define RxProtoIP (PID1 | PID0)
419#define RxProtoMask RxProtoIP
420
421 IPFail = (1 << 16), /* IP checksum failed */
422 UDPFail = (1 << 15), /* UDP/IP checksum failed */
423 TCPFail = (1 << 14), /* TCP/IP checksum failed */
424 RxVlanTag = (1 << 16), /* VLAN tag available */
425};
426
427#define RsvdMask 0x3fffc000
428
429struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200430 __le32 opts1;
431 __le32 opts2;
432 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433};
434
435struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200436 __le32 opts1;
437 __le32 opts2;
438 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439};
440
441struct ring_info {
442 struct sk_buff *skb;
443 u32 len;
444 u8 __pad[sizeof(void *) - sizeof(u32)];
445};
446
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200447enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200448 RTL_FEATURE_WOL = (1 << 0),
449 RTL_FEATURE_MSI = (1 << 1),
450 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200451};
452
Ivan Vecera355423d2009-02-06 21:49:57 -0800453struct rtl8169_counters {
454 __le64 tx_packets;
455 __le64 rx_packets;
456 __le64 tx_errors;
457 __le32 rx_errors;
458 __le16 rx_missed;
459 __le16 align_errors;
460 __le32 tx_one_collision;
461 __le32 tx_multi_collision;
462 __le64 rx_unicast;
463 __le64 rx_broadcast;
464 __le32 rx_multicast;
465 __le16 tx_aborted;
466 __le16 tx_underun;
467};
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469struct rtl8169_private {
470 void __iomem *mmio_addr; /* memory map physical address */
471 struct pci_dev *pci_dev; /* Index of PCI device */
David Howellsc4028952006-11-22 14:57:56 +0000472 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700473 struct napi_struct napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 spinlock_t lock; /* spin lock flag */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200475 u32 msg_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 int chipset;
477 int mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
479 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
480 u32 dirty_rx;
481 u32 dirty_tx;
482 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
483 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
484 dma_addr_t TxPhyAddr;
485 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000486 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 struct timer_list timer;
489 u16 cp_cmd;
Francois Romieu0e485152007-02-20 00:00:26 +0100490 u16 intr_event;
491 u16 napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 u16 intr_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 int phy_1000_ctrl_reg;
494#ifdef CONFIG_R8169_VLAN
495 struct vlan_group *vlgrp;
496#endif
497 int (*set_speed)(struct net_device *, u8 autoneg, u16 speed, u8 duplex);
Francois Romieuccdffb92008-07-26 14:26:06 +0200498 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 void (*phy_reset_enable)(void __iomem *);
Francois Romieu07ce4062007-02-23 23:36:39 +0100500 void (*hw_start)(struct net_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 unsigned int (*phy_reset_pending)(void __iomem *);
502 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800503 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu9c14cea2008-07-05 00:21:15 +0200504 int pcie_cap;
David Howellsc4028952006-11-22 14:57:56 +0000505 struct delayed_work task;
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200506 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200507
508 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800509 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000510 u32 saved_wolopts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511};
512
Ralf Baechle979b6c12005-06-13 14:30:40 -0700513MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700516MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200517module_param_named(debug, debug.msg_enable, int, 0);
518MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519MODULE_LICENSE("GPL");
520MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000521MODULE_FIRMWARE(FIRMWARE_8168D_1);
522MODULE_FIRMWARE(FIRMWARE_8168D_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524static int rtl8169_open(struct net_device *dev);
Stephen Hemminger613573252009-08-31 19:50:58 +0000525static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
526 struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100527static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100529static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100531static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200533static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700535 void __iomem *, u32 budget);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200536static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b2007-04-02 22:59:59 +0200538static void rtl8169_rx_clear(struct rtl8169_private *tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700539static int rtl8169_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541static const unsigned int rtl8169_rx_config =
Francois Romieu5b0384f2006-08-16 16:00:01 +0200542 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Francois Romieu07d3f512007-02-21 22:40:46 +0100544static void mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 int i;
547
Francois Romieua6baf3a2007-11-08 23:23:21 +0100548 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Francois Romieu23714082006-01-29 00:49:09 +0100550 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100551 /*
552 * Check if the RTL8169 has completed writing to the specified
553 * MII register.
554 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200555 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 break;
Francois Romieu23714082006-01-29 00:49:09 +0100557 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700559 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700560 * According to hardware specs a 20us delay is required after write
561 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700562 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700563 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Francois Romieu07d3f512007-02-21 22:40:46 +0100566static int mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 int i, value = -1;
569
Francois Romieua6baf3a2007-11-08 23:23:21 +0100570 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Francois Romieu23714082006-01-29 00:49:09 +0100572 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100573 /*
574 * Check if the RTL8169 has completed retrieving data from
575 * the specified MII register.
576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100578 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 break;
580 }
Francois Romieu23714082006-01-29 00:49:09 +0100581 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700583 /*
584 * According to hardware specs a 20us delay is required after read
585 * complete indication, but before sending next command.
586 */
587 udelay(20);
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return value;
590}
591
Francois Romieudacf8152008-08-02 20:44:13 +0200592static void mdio_patch(void __iomem *ioaddr, int reg_addr, int value)
593{
594 mdio_write(ioaddr, reg_addr, mdio_read(ioaddr, reg_addr) | value);
595}
596
françois romieudaf9df62009-10-07 12:44:20 +0000597static void mdio_plus_minus(void __iomem *ioaddr, int reg_addr, int p, int m)
598{
599 int val;
600
601 val = mdio_read(ioaddr, reg_addr);
602 mdio_write(ioaddr, reg_addr, (val | p) & ~m);
603}
604
Francois Romieuccdffb92008-07-26 14:26:06 +0200605static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
606 int val)
607{
608 struct rtl8169_private *tp = netdev_priv(dev);
609 void __iomem *ioaddr = tp->mmio_addr;
610
611 mdio_write(ioaddr, location, val);
612}
613
614static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
615{
616 struct rtl8169_private *tp = netdev_priv(dev);
617 void __iomem *ioaddr = tp->mmio_addr;
618
619 return mdio_read(ioaddr, location);
620}
621
Francois Romieudacf8152008-08-02 20:44:13 +0200622static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
623{
624 unsigned int i;
625
626 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
627 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
628
629 for (i = 0; i < 100; i++) {
630 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
631 break;
632 udelay(10);
633 }
634}
635
636static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
637{
638 u16 value = 0xffff;
639 unsigned int i;
640
641 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
642
643 for (i = 0; i < 100; i++) {
644 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
645 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
646 break;
647 }
648 udelay(10);
649 }
650
651 return value;
652}
653
654static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
655{
656 unsigned int i;
657
658 RTL_W32(CSIDR, value);
659 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
660 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
661
662 for (i = 0; i < 100; i++) {
663 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
664 break;
665 udelay(10);
666 }
667}
668
669static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
670{
671 u32 value = ~0x00;
672 unsigned int i;
673
674 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
675 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
676
677 for (i = 0; i < 100; i++) {
678 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
679 value = RTL_R32(CSIDR);
680 break;
681 }
682 udelay(10);
683 }
684
685 return value;
686}
687
françois romieudaf9df62009-10-07 12:44:20 +0000688static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
689{
690 u8 value = 0xff;
691 unsigned int i;
692
693 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
694
695 for (i = 0; i < 300; i++) {
696 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
697 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
698 break;
699 }
700 udelay(100);
701 }
702
703 return value;
704}
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
707{
708 RTL_W16(IntrMask, 0x0000);
709
710 RTL_W16(IntrStatus, 0xffff);
711}
712
713static void rtl8169_asic_down(void __iomem *ioaddr)
714{
715 RTL_W8(ChipCmd, 0x00);
716 rtl8169_irq_mask_and_ack(ioaddr);
717 RTL_R16(CPlusCmd);
718}
719
720static unsigned int rtl8169_tbi_reset_pending(void __iomem *ioaddr)
721{
722 return RTL_R32(TBICSR) & TBIReset;
723}
724
725static unsigned int rtl8169_xmii_reset_pending(void __iomem *ioaddr)
726{
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200727 return mdio_read(ioaddr, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
730static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
731{
732 return RTL_R32(TBICSR) & TBILinkOk;
733}
734
735static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
736{
737 return RTL_R8(PHYstatus) & LinkStatus;
738}
739
740static void rtl8169_tbi_reset_enable(void __iomem *ioaddr)
741{
742 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
743}
744
745static void rtl8169_xmii_reset_enable(void __iomem *ioaddr)
746{
747 unsigned int val;
748
Francois Romieu9e0db8e2007-03-08 23:59:54 +0100749 val = mdio_read(ioaddr, MII_BMCR) | BMCR_RESET;
750 mdio_write(ioaddr, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000753static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieu07d3f512007-02-21 22:40:46 +0100754 struct rtl8169_private *tp,
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000755 void __iomem *ioaddr,
756 bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
758 unsigned long flags;
759
760 spin_lock_irqsave(&tp->lock, flags);
761 if (tp->link_ok(ioaddr)) {
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000762 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000763 if (pm)
764 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 netif_carrier_on(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +0000766 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200767 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +0000769 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000770 if (pm)
771 pm_schedule_suspend(&tp->pci_dev->dev, 100);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 spin_unlock_irqrestore(&tp->lock, flags);
774}
775
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000776static void rtl8169_check_link_status(struct net_device *dev,
777 struct rtl8169_private *tp,
778 void __iomem *ioaddr)
779{
780 __rtl8169_check_link_status(dev, tp, ioaddr, false);
781}
782
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000783#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
784
785static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
786{
787 void __iomem *ioaddr = tp->mmio_addr;
788 u8 options;
789 u32 wolopts = 0;
790
791 options = RTL_R8(Config1);
792 if (!(options & PMEnable))
793 return 0;
794
795 options = RTL_R8(Config3);
796 if (options & LinkUp)
797 wolopts |= WAKE_PHY;
798 if (options & MagicPacket)
799 wolopts |= WAKE_MAGIC;
800
801 options = RTL_R8(Config5);
802 if (options & UWF)
803 wolopts |= WAKE_UCAST;
804 if (options & BWF)
805 wolopts |= WAKE_BCAST;
806 if (options & MWF)
807 wolopts |= WAKE_MCAST;
808
809 return wolopts;
810}
811
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100812static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
813{
814 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100815
816 spin_lock_irq(&tp->lock);
817
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000818 wol->supported = WAKE_ANY;
819 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100820
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100821 spin_unlock_irq(&tp->lock);
822}
823
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000824static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100825{
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100826 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +0100827 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -0800828 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100829 u32 opt;
830 u16 reg;
831 u8 mask;
832 } cfg[] = {
833 { WAKE_ANY, Config1, PMEnable },
834 { WAKE_PHY, Config3, LinkUp },
835 { WAKE_MAGIC, Config3, MagicPacket },
836 { WAKE_UCAST, Config5, UWF },
837 { WAKE_BCAST, Config5, BWF },
838 { WAKE_MCAST, Config5, MWF },
839 { WAKE_ANY, Config5, LanWake }
840 };
841
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100842 RTL_W8(Cfg9346, Cfg9346_Unlock);
843
844 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
845 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000846 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100847 options |= cfg[i].mask;
848 RTL_W8(cfg[i].reg, options);
849 }
850
851 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000852}
853
854static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
855{
856 struct rtl8169_private *tp = netdev_priv(dev);
857
858 spin_lock_irq(&tp->lock);
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100859
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200860 if (wol->wolopts)
861 tp->features |= RTL_FEATURE_WOL;
862 else
863 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000864 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100865 spin_unlock_irq(&tp->lock);
866
françois romieuea809072010-11-08 13:23:58 +0000867 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
868
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100869 return 0;
870}
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872static void rtl8169_get_drvinfo(struct net_device *dev,
873 struct ethtool_drvinfo *info)
874{
875 struct rtl8169_private *tp = netdev_priv(dev);
876
877 strcpy(info->driver, MODULENAME);
878 strcpy(info->version, RTL8169_VERSION);
879 strcpy(info->bus_info, pci_name(tp->pci_dev));
880}
881
882static int rtl8169_get_regs_len(struct net_device *dev)
883{
884 return R8169_REGS_SIZE;
885}
886
887static int rtl8169_set_speed_tbi(struct net_device *dev,
888 u8 autoneg, u16 speed, u8 duplex)
889{
890 struct rtl8169_private *tp = netdev_priv(dev);
891 void __iomem *ioaddr = tp->mmio_addr;
892 int ret = 0;
893 u32 reg;
894
895 reg = RTL_R32(TBICSR);
896 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
897 (duplex == DUPLEX_FULL)) {
898 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
899 } else if (autoneg == AUTONEG_ENABLE)
900 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
901 else {
Joe Perchesbf82c182010-02-09 11:49:50 +0000902 netif_warn(tp, link, dev,
903 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 ret = -EOPNOTSUPP;
905 }
906
907 return ret;
908}
909
910static int rtl8169_set_speed_xmii(struct net_device *dev,
911 u8 autoneg, u16 speed, u8 duplex)
912{
913 struct rtl8169_private *tp = netdev_priv(dev);
914 void __iomem *ioaddr = tp->mmio_addr;
françois romieu3577aa12009-05-19 10:46:48 +0000915 int giga_ctrl, bmcr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +0000918 int auto_nego;
919
920 auto_nego = mdio_read(ioaddr, MII_ADVERTISE);
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200921 auto_nego |= (ADVERTISE_10HALF | ADVERTISE_10FULL |
922 ADVERTISE_100HALF | ADVERTISE_100FULL);
françois romieu3577aa12009-05-19 10:46:48 +0000923 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
924
925 giga_ctrl = mdio_read(ioaddr, MII_CTRL1000);
926 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
927
928 /* The 8100e/8101e/8102e do Fast Ethernet only. */
929 if ((tp->mac_version != RTL_GIGA_MAC_VER_07) &&
930 (tp->mac_version != RTL_GIGA_MAC_VER_08) &&
931 (tp->mac_version != RTL_GIGA_MAC_VER_09) &&
932 (tp->mac_version != RTL_GIGA_MAC_VER_10) &&
933 (tp->mac_version != RTL_GIGA_MAC_VER_13) &&
934 (tp->mac_version != RTL_GIGA_MAC_VER_14) &&
935 (tp->mac_version != RTL_GIGA_MAC_VER_15) &&
936 (tp->mac_version != RTL_GIGA_MAC_VER_16)) {
Francois Romieu64e4bfb2006-08-17 12:43:06 +0200937 giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
Joe Perchesbf82c182010-02-09 11:49:50 +0000938 } else {
939 netif_info(tp, link, dev,
940 "PHY does not support 1000Mbps\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +0200941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
françois romieu3577aa12009-05-19 10:46:48 +0000943 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +0200944
françois romieu3577aa12009-05-19 10:46:48 +0000945 if ((tp->mac_version == RTL_GIGA_MAC_VER_11) ||
946 (tp->mac_version == RTL_GIGA_MAC_VER_12) ||
947 (tp->mac_version >= RTL_GIGA_MAC_VER_17)) {
948 /*
949 * Wake up the PHY.
950 * Vendor specific (0x1f) and reserved (0x0e) MII
951 * registers.
952 */
953 mdio_write(ioaddr, 0x1f, 0x0000);
954 mdio_write(ioaddr, 0x0e, 0x0000);
955 }
956
957 mdio_write(ioaddr, MII_ADVERTISE, auto_nego);
958 mdio_write(ioaddr, MII_CTRL1000, giga_ctrl);
959 } else {
960 giga_ctrl = 0;
961
962 if (speed == SPEED_10)
963 bmcr = 0;
964 else if (speed == SPEED_100)
965 bmcr = BMCR_SPEED100;
966 else
967 return -EINVAL;
968
969 if (duplex == DUPLEX_FULL)
970 bmcr |= BMCR_FULLDPLX;
971
Roger So2584fbc2007-07-31 23:52:42 +0200972 mdio_write(ioaddr, 0x1f, 0x0000);
Roger So2584fbc2007-07-31 23:52:42 +0200973 }
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 tp->phy_1000_ctrl_reg = giga_ctrl;
976
françois romieu3577aa12009-05-19 10:46:48 +0000977 mdio_write(ioaddr, MII_BMCR, bmcr);
978
979 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
980 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
981 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
982 mdio_write(ioaddr, 0x17, 0x2138);
983 mdio_write(ioaddr, 0x0e, 0x0260);
984 } else {
985 mdio_write(ioaddr, 0x17, 0x2108);
986 mdio_write(ioaddr, 0x0e, 0x0000);
987 }
988 }
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return 0;
991}
992
993static int rtl8169_set_speed(struct net_device *dev,
994 u8 autoneg, u16 speed, u8 duplex)
995{
996 struct rtl8169_private *tp = netdev_priv(dev);
997 int ret;
998
999 ret = tp->set_speed(dev, autoneg, speed, duplex);
1000
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001001 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
1003
1004 return ret;
1005}
1006
1007static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1008{
1009 struct rtl8169_private *tp = netdev_priv(dev);
1010 unsigned long flags;
1011 int ret;
1012
1013 spin_lock_irqsave(&tp->lock, flags);
1014 ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
1015 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return ret;
1018}
1019
1020static u32 rtl8169_get_rx_csum(struct net_device *dev)
1021{
1022 struct rtl8169_private *tp = netdev_priv(dev);
1023
1024 return tp->cp_cmd & RxChkSum;
1025}
1026
1027static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
1028{
1029 struct rtl8169_private *tp = netdev_priv(dev);
1030 void __iomem *ioaddr = tp->mmio_addr;
1031 unsigned long flags;
1032
1033 spin_lock_irqsave(&tp->lock, flags);
1034
1035 if (data)
1036 tp->cp_cmd |= RxChkSum;
1037 else
1038 tp->cp_cmd &= ~RxChkSum;
1039
1040 RTL_W16(CPlusCmd, tp->cp_cmd);
1041 RTL_R16(CPlusCmd);
1042
1043 spin_unlock_irqrestore(&tp->lock, flags);
1044
1045 return 0;
1046}
1047
1048#ifdef CONFIG_R8169_VLAN
1049
1050static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1051 struct sk_buff *skb)
1052{
Jesse Grosseab6d182010-10-20 13:56:03 +00001053 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1055}
1056
1057static void rtl8169_vlan_rx_register(struct net_device *dev,
1058 struct vlan_group *grp)
1059{
1060 struct rtl8169_private *tp = netdev_priv(dev);
1061 void __iomem *ioaddr = tp->mmio_addr;
1062 unsigned long flags;
1063
1064 spin_lock_irqsave(&tp->lock, flags);
1065 tp->vlgrp = grp;
Simon Wunderlich05af2142009-10-24 06:47:33 -07001066 /*
1067 * Do not disable RxVlan on 8110SCd.
1068 */
1069 if (tp->vlgrp || (tp->mac_version == RTL_GIGA_MAC_VER_05))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 tp->cp_cmd |= RxVlan;
1071 else
1072 tp->cp_cmd &= ~RxVlan;
1073 RTL_W16(CPlusCmd, tp->cp_cmd);
1074 RTL_R16(CPlusCmd);
1075 spin_unlock_irqrestore(&tp->lock, flags);
1076}
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
Eric Dumazet630b9432010-03-31 02:08:31 +00001079 struct sk_buff *skb, int polling)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
1081 u32 opts2 = le32_to_cpu(desc->opts2);
Francois Romieu865c6522008-05-11 14:51:00 +02001082 struct vlan_group *vlgrp = tp->vlgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 int ret;
1084
Francois Romieu865c6522008-05-11 14:51:00 +02001085 if (vlgrp && (opts2 & RxVlanTag)) {
Eric Dumazet2edae082010-09-06 18:46:39 +00001086 u16 vtag = swab16(opts2 & 0xffff);
1087
1088 if (likely(polling))
1089 vlan_gro_receive(&tp->napi, vlgrp, vtag, skb);
1090 else
1091 __vlan_hwaccel_rx(skb, vlgrp, vtag, polling);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 ret = 0;
1093 } else
1094 ret = -1;
1095 desc->opts2 = 0;
1096 return ret;
1097}
1098
1099#else /* !CONFIG_R8169_VLAN */
1100
1101static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1102 struct sk_buff *skb)
1103{
1104 return 0;
1105}
1106
1107static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
Eric Dumazet630b9432010-03-31 02:08:31 +00001108 struct sk_buff *skb, int polling)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 return -1;
1111}
1112
1113#endif
1114
Francois Romieuccdffb92008-07-26 14:26:06 +02001115static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
1117 struct rtl8169_private *tp = netdev_priv(dev);
1118 void __iomem *ioaddr = tp->mmio_addr;
1119 u32 status;
1120
1121 cmd->supported =
1122 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1123 cmd->port = PORT_FIBRE;
1124 cmd->transceiver = XCVR_INTERNAL;
1125
1126 status = RTL_R32(TBICSR);
1127 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1128 cmd->autoneg = !!(status & TBINwEnable);
1129
1130 cmd->speed = SPEED_1000;
1131 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001132
1133 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Francois Romieuccdffb92008-07-26 14:26:06 +02001136static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
1138 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Francois Romieuccdffb92008-07-26 14:26:06 +02001140 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
1143static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1144{
1145 struct rtl8169_private *tp = netdev_priv(dev);
1146 unsigned long flags;
Francois Romieuccdffb92008-07-26 14:26:06 +02001147 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 spin_lock_irqsave(&tp->lock, flags);
1150
Francois Romieuccdffb92008-07-26 14:26:06 +02001151 rc = tp->get_settings(dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieuccdffb92008-07-26 14:26:06 +02001154 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
1157static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1158 void *p)
1159{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001160 struct rtl8169_private *tp = netdev_priv(dev);
1161 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Francois Romieu5b0384f2006-08-16 16:00:01 +02001163 if (regs->len > R8169_REGS_SIZE)
1164 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Francois Romieu5b0384f2006-08-16 16:00:01 +02001166 spin_lock_irqsave(&tp->lock, flags);
1167 memcpy_fromio(p, tp->mmio_addr, regs->len);
1168 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
1170
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001171static u32 rtl8169_get_msglevel(struct net_device *dev)
1172{
1173 struct rtl8169_private *tp = netdev_priv(dev);
1174
1175 return tp->msg_enable;
1176}
1177
1178static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1179{
1180 struct rtl8169_private *tp = netdev_priv(dev);
1181
1182 tp->msg_enable = value;
1183}
1184
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001185static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1186 "tx_packets",
1187 "rx_packets",
1188 "tx_errors",
1189 "rx_errors",
1190 "rx_missed",
1191 "align_errors",
1192 "tx_single_collisions",
1193 "tx_multi_collisions",
1194 "unicast",
1195 "broadcast",
1196 "multicast",
1197 "tx_aborted",
1198 "tx_underrun",
1199};
1200
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001201static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001202{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001203 switch (sset) {
1204 case ETH_SS_STATS:
1205 return ARRAY_SIZE(rtl8169_gstrings);
1206 default:
1207 return -EOPNOTSUPP;
1208 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001209}
1210
Ivan Vecera355423d2009-02-06 21:49:57 -08001211static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001212{
1213 struct rtl8169_private *tp = netdev_priv(dev);
1214 void __iomem *ioaddr = tp->mmio_addr;
1215 struct rtl8169_counters *counters;
1216 dma_addr_t paddr;
1217 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001218 int wait = 1000;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001219 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001220
Ivan Vecera355423d2009-02-06 21:49:57 -08001221 /*
1222 * Some chips are unable to dump tally counters when the receiver
1223 * is disabled.
1224 */
1225 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1226 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001227
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001228 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001229 if (!counters)
1230 return;
1231
1232 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001233 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001234 RTL_W32(CounterAddrLow, cmd);
1235 RTL_W32(CounterAddrLow, cmd | CounterDump);
1236
Ivan Vecera355423d2009-02-06 21:49:57 -08001237 while (wait--) {
1238 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
1239 /* copy updated counters */
1240 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001241 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001242 }
1243 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001244 }
1245
1246 RTL_W32(CounterAddrLow, 0);
1247 RTL_W32(CounterAddrHigh, 0);
1248
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001249 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001250}
1251
Ivan Vecera355423d2009-02-06 21:49:57 -08001252static void rtl8169_get_ethtool_stats(struct net_device *dev,
1253 struct ethtool_stats *stats, u64 *data)
1254{
1255 struct rtl8169_private *tp = netdev_priv(dev);
1256
1257 ASSERT_RTNL();
1258
1259 rtl8169_update_counters(dev);
1260
1261 data[0] = le64_to_cpu(tp->counters.tx_packets);
1262 data[1] = le64_to_cpu(tp->counters.rx_packets);
1263 data[2] = le64_to_cpu(tp->counters.tx_errors);
1264 data[3] = le32_to_cpu(tp->counters.rx_errors);
1265 data[4] = le16_to_cpu(tp->counters.rx_missed);
1266 data[5] = le16_to_cpu(tp->counters.align_errors);
1267 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1268 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1269 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1270 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1271 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1272 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1273 data[12] = le16_to_cpu(tp->counters.tx_underun);
1274}
1275
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001276static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1277{
1278 switch(stringset) {
1279 case ETH_SS_STATS:
1280 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1281 break;
1282 }
1283}
1284
Jeff Garzik7282d492006-09-13 14:30:00 -04001285static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 .get_drvinfo = rtl8169_get_drvinfo,
1287 .get_regs_len = rtl8169_get_regs_len,
1288 .get_link = ethtool_op_get_link,
1289 .get_settings = rtl8169_get_settings,
1290 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001291 .get_msglevel = rtl8169_get_msglevel,
1292 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 .get_rx_csum = rtl8169_get_rx_csum,
1294 .set_rx_csum = rtl8169_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 .set_tx_csum = ethtool_op_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 .set_tso = ethtool_op_set_tso,
1298 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001299 .get_wol = rtl8169_get_wol,
1300 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001301 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001302 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001303 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304};
1305
Francois Romieu07d3f512007-02-21 22:40:46 +01001306static void rtl8169_get_mac_version(struct rtl8169_private *tp,
1307 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
Francois Romieu0e485152007-02-20 00:00:26 +01001309 /*
1310 * The driver currently handles the 8168Bf and the 8168Be identically
1311 * but they can be identified more specifically through the test below
1312 * if needed:
1313 *
1314 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001315 *
1316 * Same thing for the 8101Eb and the 8101Ec:
1317 *
1318 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001319 */
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001320 static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001322 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 int mac_version;
1324 } mac_info[] = {
Francois Romieu5b538df2008-07-20 16:22:45 +02001325 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001326 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1327 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
1328 { 0x7c800000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1329 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001330
Francois Romieuef808d52008-06-29 13:10:54 +02001331 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001332 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001333 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001334 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001335 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001336 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1337 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001338 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001339 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001340 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001341
1342 /* 8168B family. */
1343 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1344 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1345 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1346 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1347
1348 /* 8101 family. */
Francois Romieu2857ffb2008-08-02 21:08:49 +02001349 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1350 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1351 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1352 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1353 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1354 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001355 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001356 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001357 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001358 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1359 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001360 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1361 /* FIXME: where did these entries come from ? -- FR */
1362 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1363 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1364
1365 /* 8110 family. */
1366 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1367 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1368 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1369 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1370 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1371 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1372
Jean Delvaref21b75e2009-05-26 20:54:48 -07001373 /* Catch-all */
1374 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }, *p = mac_info;
1376 u32 reg;
1377
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001378 reg = RTL_R32(TxConfig);
1379 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 p++;
1381 tp->mac_version = p->mac_version;
1382}
1383
1384static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1385{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001386 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
Francois Romieu867763c2007-08-17 18:21:58 +02001389struct phy_reg {
1390 u16 reg;
1391 u16 val;
1392};
1393
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001394static void rtl_phy_write(void __iomem *ioaddr, const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001395{
1396 while (len-- > 0) {
1397 mdio_write(ioaddr, regs->reg, regs->val);
1398 regs++;
1399 }
1400}
1401
françois romieubca03d52011-01-03 15:07:31 +00001402#define PHY_READ 0x00000000
1403#define PHY_DATA_OR 0x10000000
1404#define PHY_DATA_AND 0x20000000
1405#define PHY_BJMPN 0x30000000
1406#define PHY_READ_EFUSE 0x40000000
1407#define PHY_READ_MAC_BYTE 0x50000000
1408#define PHY_WRITE_MAC_BYTE 0x60000000
1409#define PHY_CLEAR_READCOUNT 0x70000000
1410#define PHY_WRITE 0x80000000
1411#define PHY_READCOUNT_EQ_SKIP 0x90000000
1412#define PHY_COMP_EQ_SKIPN 0xa0000000
1413#define PHY_COMP_NEQ_SKIPN 0xb0000000
1414#define PHY_WRITE_PREVIOUS 0xc0000000
1415#define PHY_SKIPN 0xd0000000
1416#define PHY_DELAY_MS 0xe0000000
1417#define PHY_WRITE_ERI_WORD 0xf0000000
1418
1419static void
1420rtl_phy_write_fw(struct rtl8169_private *tp, const struct firmware *fw)
1421{
1422 void __iomem *ioaddr = tp->mmio_addr;
1423 __le32 *phytable = (__le32 *)fw->data;
1424 struct net_device *dev = tp->dev;
1425 size_t i;
1426
1427 if (fw->size % sizeof(*phytable)) {
1428 netif_err(tp, probe, dev, "odd sized firmware %zd\n", fw->size);
1429 return;
1430 }
1431
1432 for (i = 0; i < fw->size / sizeof(*phytable); i++) {
1433 u32 action = le32_to_cpu(phytable[i]);
1434
1435 if (!action)
1436 break;
1437
1438 if ((action & 0xf0000000) != PHY_WRITE) {
1439 netif_err(tp, probe, dev,
1440 "unknown action 0x%08x\n", action);
1441 return;
1442 }
1443 }
1444
1445 while (i-- != 0) {
1446 u32 action = le32_to_cpu(*phytable);
1447 u32 data = action & 0x0000ffff;
1448 u32 reg = (action & 0x0fff0000) >> 16;
1449
1450 switch(action & 0xf0000000) {
1451 case PHY_WRITE:
1452 mdio_write(ioaddr, reg, data);
1453 phytable++;
1454 break;
1455 default:
1456 BUG();
1457 }
1458 }
1459}
1460
Francois Romieu5615d9f2007-08-17 17:50:46 +02001461static void rtl8169s_hw_phy_config(void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001463 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00001464 { 0x1f, 0x0001 },
1465 { 0x06, 0x006e },
1466 { 0x08, 0x0708 },
1467 { 0x15, 0x4000 },
1468 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
françois romieu0b9b5712009-08-10 19:44:56 +00001470 { 0x1f, 0x0001 },
1471 { 0x03, 0x00a1 },
1472 { 0x02, 0x0008 },
1473 { 0x01, 0x0120 },
1474 { 0x00, 0x1000 },
1475 { 0x04, 0x0800 },
1476 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
françois romieu0b9b5712009-08-10 19:44:56 +00001478 { 0x03, 0xff41 },
1479 { 0x02, 0xdf60 },
1480 { 0x01, 0x0140 },
1481 { 0x00, 0x0077 },
1482 { 0x04, 0x7800 },
1483 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
françois romieu0b9b5712009-08-10 19:44:56 +00001485 { 0x03, 0x802f },
1486 { 0x02, 0x4f02 },
1487 { 0x01, 0x0409 },
1488 { 0x00, 0xf0f9 },
1489 { 0x04, 0x9800 },
1490 { 0x04, 0x9000 },
1491
1492 { 0x03, 0xdf01 },
1493 { 0x02, 0xdf20 },
1494 { 0x01, 0xff95 },
1495 { 0x00, 0xba00 },
1496 { 0x04, 0xa800 },
1497 { 0x04, 0xa000 },
1498
1499 { 0x03, 0xff41 },
1500 { 0x02, 0xdf20 },
1501 { 0x01, 0x0140 },
1502 { 0x00, 0x00bb },
1503 { 0x04, 0xb800 },
1504 { 0x04, 0xb000 },
1505
1506 { 0x03, 0xdf41 },
1507 { 0x02, 0xdc60 },
1508 { 0x01, 0x6340 },
1509 { 0x00, 0x007d },
1510 { 0x04, 0xd800 },
1511 { 0x04, 0xd000 },
1512
1513 { 0x03, 0xdf01 },
1514 { 0x02, 0xdf20 },
1515 { 0x01, 0x100a },
1516 { 0x00, 0xa0ff },
1517 { 0x04, 0xf800 },
1518 { 0x04, 0xf000 },
1519
1520 { 0x1f, 0x0000 },
1521 { 0x0b, 0x0000 },
1522 { 0x00, 0x9200 }
1523 };
1524
1525 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526}
1527
Francois Romieu5615d9f2007-08-17 17:50:46 +02001528static void rtl8169sb_hw_phy_config(void __iomem *ioaddr)
1529{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001530 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02001531 { 0x1f, 0x0002 },
1532 { 0x01, 0x90d0 },
1533 { 0x1f, 0x0000 }
1534 };
1535
1536 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02001537}
1538
françois romieu2e9558562009-08-10 19:44:19 +00001539static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp,
1540 void __iomem *ioaddr)
1541{
1542 struct pci_dev *pdev = tp->pci_dev;
1543 u16 vendor_id, device_id;
1544
1545 pci_read_config_word(pdev, PCI_SUBSYSTEM_VENDOR_ID, &vendor_id);
1546 pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &device_id);
1547
1548 if ((vendor_id != PCI_VENDOR_ID_GIGABYTE) || (device_id != 0xe000))
1549 return;
1550
1551 mdio_write(ioaddr, 0x1f, 0x0001);
1552 mdio_write(ioaddr, 0x10, 0xf01b);
1553 mdio_write(ioaddr, 0x1f, 0x0000);
1554}
1555
1556static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp,
1557 void __iomem *ioaddr)
1558{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001559 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00001560 { 0x1f, 0x0001 },
1561 { 0x04, 0x0000 },
1562 { 0x03, 0x00a1 },
1563 { 0x02, 0x0008 },
1564 { 0x01, 0x0120 },
1565 { 0x00, 0x1000 },
1566 { 0x04, 0x0800 },
1567 { 0x04, 0x9000 },
1568 { 0x03, 0x802f },
1569 { 0x02, 0x4f02 },
1570 { 0x01, 0x0409 },
1571 { 0x00, 0xf099 },
1572 { 0x04, 0x9800 },
1573 { 0x04, 0xa000 },
1574 { 0x03, 0xdf01 },
1575 { 0x02, 0xdf20 },
1576 { 0x01, 0xff95 },
1577 { 0x00, 0xba00 },
1578 { 0x04, 0xa800 },
1579 { 0x04, 0xf000 },
1580 { 0x03, 0xdf01 },
1581 { 0x02, 0xdf20 },
1582 { 0x01, 0x101a },
1583 { 0x00, 0xa0ff },
1584 { 0x04, 0xf800 },
1585 { 0x04, 0x0000 },
1586 { 0x1f, 0x0000 },
1587
1588 { 0x1f, 0x0001 },
1589 { 0x10, 0xf41b },
1590 { 0x14, 0xfb54 },
1591 { 0x18, 0xf5c7 },
1592 { 0x1f, 0x0000 },
1593
1594 { 0x1f, 0x0001 },
1595 { 0x17, 0x0cc0 },
1596 { 0x1f, 0x0000 }
1597 };
1598
1599 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1600
1601 rtl8169scd_hw_phy_config_quirk(tp, ioaddr);
1602}
1603
françois romieu8c7006a2009-08-10 19:43:29 +00001604static void rtl8169sce_hw_phy_config(void __iomem *ioaddr)
1605{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001606 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00001607 { 0x1f, 0x0001 },
1608 { 0x04, 0x0000 },
1609 { 0x03, 0x00a1 },
1610 { 0x02, 0x0008 },
1611 { 0x01, 0x0120 },
1612 { 0x00, 0x1000 },
1613 { 0x04, 0x0800 },
1614 { 0x04, 0x9000 },
1615 { 0x03, 0x802f },
1616 { 0x02, 0x4f02 },
1617 { 0x01, 0x0409 },
1618 { 0x00, 0xf099 },
1619 { 0x04, 0x9800 },
1620 { 0x04, 0xa000 },
1621 { 0x03, 0xdf01 },
1622 { 0x02, 0xdf20 },
1623 { 0x01, 0xff95 },
1624 { 0x00, 0xba00 },
1625 { 0x04, 0xa800 },
1626 { 0x04, 0xf000 },
1627 { 0x03, 0xdf01 },
1628 { 0x02, 0xdf20 },
1629 { 0x01, 0x101a },
1630 { 0x00, 0xa0ff },
1631 { 0x04, 0xf800 },
1632 { 0x04, 0x0000 },
1633 { 0x1f, 0x0000 },
1634
1635 { 0x1f, 0x0001 },
1636 { 0x0b, 0x8480 },
1637 { 0x1f, 0x0000 },
1638
1639 { 0x1f, 0x0001 },
1640 { 0x18, 0x67c7 },
1641 { 0x04, 0x2000 },
1642 { 0x03, 0x002f },
1643 { 0x02, 0x4360 },
1644 { 0x01, 0x0109 },
1645 { 0x00, 0x3022 },
1646 { 0x04, 0x2800 },
1647 { 0x1f, 0x0000 },
1648
1649 { 0x1f, 0x0001 },
1650 { 0x17, 0x0cc0 },
1651 { 0x1f, 0x0000 }
1652 };
1653
1654 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1655}
1656
Francois Romieu236b8082008-05-30 16:11:48 +02001657static void rtl8168bb_hw_phy_config(void __iomem *ioaddr)
1658{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001659 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02001660 { 0x10, 0xf41b },
1661 { 0x1f, 0x0000 }
1662 };
1663
1664 mdio_write(ioaddr, 0x1f, 0x0001);
1665 mdio_patch(ioaddr, 0x16, 1 << 0);
1666
1667 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1668}
1669
1670static void rtl8168bef_hw_phy_config(void __iomem *ioaddr)
1671{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001672 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02001673 { 0x1f, 0x0001 },
1674 { 0x10, 0xf41b },
1675 { 0x1f, 0x0000 }
1676 };
1677
1678 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1679}
1680
Francois Romieuef3386f2008-06-29 12:24:30 +02001681static void rtl8168cp_1_hw_phy_config(void __iomem *ioaddr)
Francois Romieu867763c2007-08-17 18:21:58 +02001682{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001683 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02001684 { 0x1f, 0x0000 },
1685 { 0x1d, 0x0f00 },
1686 { 0x1f, 0x0002 },
1687 { 0x0c, 0x1ec8 },
1688 { 0x1f, 0x0000 }
1689 };
1690
1691 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1692}
1693
Francois Romieuef3386f2008-06-29 12:24:30 +02001694static void rtl8168cp_2_hw_phy_config(void __iomem *ioaddr)
1695{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001696 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02001697 { 0x1f, 0x0001 },
1698 { 0x1d, 0x3d98 },
1699 { 0x1f, 0x0000 }
1700 };
1701
1702 mdio_write(ioaddr, 0x1f, 0x0000);
1703 mdio_patch(ioaddr, 0x14, 1 << 5);
1704 mdio_patch(ioaddr, 0x0d, 1 << 5);
1705
1706 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1707}
1708
Francois Romieu219a1e92008-06-28 11:58:39 +02001709static void rtl8168c_1_hw_phy_config(void __iomem *ioaddr)
Francois Romieu867763c2007-08-17 18:21:58 +02001710{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001711 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02001712 { 0x1f, 0x0001 },
1713 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02001714 { 0x1f, 0x0002 },
1715 { 0x00, 0x88d4 },
1716 { 0x01, 0x82b1 },
1717 { 0x03, 0x7002 },
1718 { 0x08, 0x9e30 },
1719 { 0x09, 0x01f0 },
1720 { 0x0a, 0x5500 },
1721 { 0x0c, 0x00c8 },
1722 { 0x1f, 0x0003 },
1723 { 0x12, 0xc096 },
1724 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02001725 { 0x1f, 0x0000 },
1726 { 0x1f, 0x0000 },
1727 { 0x09, 0x2000 },
1728 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02001729 };
1730
1731 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02001732
1733 mdio_patch(ioaddr, 0x14, 1 << 5);
1734 mdio_patch(ioaddr, 0x0d, 1 << 5);
1735 mdio_write(ioaddr, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02001736}
1737
Francois Romieu219a1e92008-06-28 11:58:39 +02001738static void rtl8168c_2_hw_phy_config(void __iomem *ioaddr)
Francois Romieu7da97ec2007-10-18 15:20:43 +02001739{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001740 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02001741 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02001742 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02001743 { 0x03, 0x802f },
1744 { 0x02, 0x4f02 },
1745 { 0x01, 0x0409 },
1746 { 0x00, 0xf099 },
1747 { 0x04, 0x9800 },
1748 { 0x04, 0x9000 },
1749 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02001750 { 0x1f, 0x0002 },
1751 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02001752 { 0x06, 0x0761 },
1753 { 0x1f, 0x0003 },
1754 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02001755 { 0x1f, 0x0000 }
1756 };
1757
1758 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02001759
1760 mdio_patch(ioaddr, 0x16, 1 << 0);
1761 mdio_patch(ioaddr, 0x14, 1 << 5);
1762 mdio_patch(ioaddr, 0x0d, 1 << 5);
1763 mdio_write(ioaddr, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02001764}
1765
Francois Romieu197ff762008-06-28 13:16:02 +02001766static void rtl8168c_3_hw_phy_config(void __iomem *ioaddr)
1767{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001768 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02001769 { 0x1f, 0x0001 },
1770 { 0x12, 0x2300 },
1771 { 0x1d, 0x3d98 },
1772 { 0x1f, 0x0002 },
1773 { 0x0c, 0x7eb8 },
1774 { 0x06, 0x5461 },
1775 { 0x1f, 0x0003 },
1776 { 0x16, 0x0f0a },
1777 { 0x1f, 0x0000 }
1778 };
1779
1780 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1781
1782 mdio_patch(ioaddr, 0x16, 1 << 0);
1783 mdio_patch(ioaddr, 0x14, 1 << 5);
1784 mdio_patch(ioaddr, 0x0d, 1 << 5);
1785 mdio_write(ioaddr, 0x1f, 0x0000);
1786}
1787
Francois Romieu6fb07052008-06-29 11:54:28 +02001788static void rtl8168c_4_hw_phy_config(void __iomem *ioaddr)
1789{
1790 rtl8168c_3_hw_phy_config(ioaddr);
1791}
1792
françois romieubca03d52011-01-03 15:07:31 +00001793static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02001794{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001795 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00001796 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02001797 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00001798 { 0x06, 0x4064 },
1799 { 0x07, 0x2863 },
1800 { 0x08, 0x059c },
1801 { 0x09, 0x26b4 },
1802 { 0x0a, 0x6a19 },
1803 { 0x0b, 0xdcc8 },
1804 { 0x10, 0xf06d },
1805 { 0x14, 0x7f68 },
1806 { 0x18, 0x7fd9 },
1807 { 0x1c, 0xf0ff },
1808 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02001809 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00001810 { 0x12, 0xf49f },
1811 { 0x13, 0x070b },
1812 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00001813 { 0x14, 0x94c0 },
1814
1815 /*
1816 * Tx Error Issue
1817 * enhance line driver power
1818 */
Francois Romieu5b538df2008-07-20 16:22:45 +02001819 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00001820 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001821 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00001822 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00001823 { 0x06, 0x5561 },
1824
1825 /*
1826 * Can not link to 1Gbps with bad cable
1827 * Decrease SNR threshold form 21.07dB to 19.04dB
1828 */
1829 { 0x1f, 0x0001 },
1830 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00001831
1832 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00001833 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02001834 };
françois romieubca03d52011-01-03 15:07:31 +00001835 void __iomem *ioaddr = tp->mmio_addr;
1836 const struct firmware *fw;
Francois Romieu5b538df2008-07-20 16:22:45 +02001837
1838 rtl_phy_write(ioaddr, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
1839
françois romieubca03d52011-01-03 15:07:31 +00001840 /*
1841 * Rx Error Issue
1842 * Fine Tune Switching regulator parameter
1843 */
françois romieudaf9df62009-10-07 12:44:20 +00001844 mdio_write(ioaddr, 0x1f, 0x0002);
1845 mdio_plus_minus(ioaddr, 0x0b, 0x0010, 0x00ef);
1846 mdio_plus_minus(ioaddr, 0x0c, 0xa200, 0x5d00);
1847
françois romieudaf9df62009-10-07 12:44:20 +00001848 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001849 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00001850 { 0x1f, 0x0002 },
1851 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02001852 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00001853 { 0x05, 0x8330 },
1854 { 0x06, 0x669a },
1855 { 0x1f, 0x0002 }
1856 };
1857 int val;
1858
1859 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1860
1861 val = mdio_read(ioaddr, 0x0d);
1862
1863 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001864 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00001865 0x0065, 0x0066, 0x0067, 0x0068,
1866 0x0069, 0x006a, 0x006b, 0x006c
1867 };
1868 int i;
1869
1870 mdio_write(ioaddr, 0x1f, 0x0002);
1871
1872 val &= 0xff00;
1873 for (i = 0; i < ARRAY_SIZE(set); i++)
1874 mdio_write(ioaddr, 0x0d, val | set[i]);
1875 }
1876 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001877 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00001878 { 0x1f, 0x0002 },
1879 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001880 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00001881 { 0x05, 0x8330 },
1882 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02001883 };
1884
françois romieudaf9df62009-10-07 12:44:20 +00001885 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02001886 }
1887
françois romieubca03d52011-01-03 15:07:31 +00001888 /* RSET couple improve */
françois romieudaf9df62009-10-07 12:44:20 +00001889 mdio_write(ioaddr, 0x1f, 0x0002);
1890 mdio_patch(ioaddr, 0x0d, 0x0300);
1891 mdio_patch(ioaddr, 0x0f, 0x0010);
1892
françois romieubca03d52011-01-03 15:07:31 +00001893 /* Fine tune PLL performance */
françois romieudaf9df62009-10-07 12:44:20 +00001894 mdio_write(ioaddr, 0x1f, 0x0002);
1895 mdio_plus_minus(ioaddr, 0x02, 0x0100, 0x0600);
1896 mdio_plus_minus(ioaddr, 0x03, 0x0000, 0xe000);
1897
françois romieubca03d52011-01-03 15:07:31 +00001898 mdio_write(ioaddr, 0x1f, 0x0005);
1899 mdio_write(ioaddr, 0x05, 0x001b);
1900 if (mdio_read(ioaddr, 0x06) == 0xbf00 &&
1901 request_firmware(&fw, FIRMWARE_8168D_1, &tp->pci_dev->dev) == 0) {
1902 rtl_phy_write_fw(tp, fw);
1903 release_firmware(fw);
1904 } else {
1905 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
1906 }
1907
1908 mdio_write(ioaddr, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00001909}
1910
françois romieubca03d52011-01-03 15:07:31 +00001911static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00001912{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001913 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00001914 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00001915 { 0x1f, 0x0001 },
1916 { 0x06, 0x4064 },
1917 { 0x07, 0x2863 },
1918 { 0x08, 0x059c },
1919 { 0x09, 0x26b4 },
1920 { 0x0a, 0x6a19 },
1921 { 0x0b, 0xdcc8 },
1922 { 0x10, 0xf06d },
1923 { 0x14, 0x7f68 },
1924 { 0x18, 0x7fd9 },
1925 { 0x1c, 0xf0ff },
1926 { 0x1d, 0x3d9c },
1927 { 0x1f, 0x0003 },
1928 { 0x12, 0xf49f },
1929 { 0x13, 0x070b },
1930 { 0x1a, 0x05ad },
1931 { 0x14, 0x94c0 },
1932
françois romieubca03d52011-01-03 15:07:31 +00001933 /*
1934 * Tx Error Issue
1935 * enhance line driver power
1936 */
françois romieudaf9df62009-10-07 12:44:20 +00001937 { 0x1f, 0x0002 },
1938 { 0x06, 0x5561 },
1939 { 0x1f, 0x0005 },
1940 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00001941 { 0x06, 0x5561 },
1942
1943 /*
1944 * Can not link to 1Gbps with bad cable
1945 * Decrease SNR threshold form 21.07dB to 19.04dB
1946 */
1947 { 0x1f, 0x0001 },
1948 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00001949
1950 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00001951 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00001952 };
françois romieubca03d52011-01-03 15:07:31 +00001953 void __iomem *ioaddr = tp->mmio_addr;
1954 const struct firmware *fw;
françois romieudaf9df62009-10-07 12:44:20 +00001955
1956 rtl_phy_write(ioaddr, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
1957
1958 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001959 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00001960 { 0x1f, 0x0002 },
1961 { 0x05, 0x669a },
1962 { 0x1f, 0x0005 },
1963 { 0x05, 0x8330 },
1964 { 0x06, 0x669a },
1965
1966 { 0x1f, 0x0002 }
1967 };
1968 int val;
1969
1970 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1971
1972 val = mdio_read(ioaddr, 0x0d);
1973 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08001974 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00001975 0x0065, 0x0066, 0x0067, 0x0068,
1976 0x0069, 0x006a, 0x006b, 0x006c
1977 };
1978 int i;
1979
1980 mdio_write(ioaddr, 0x1f, 0x0002);
1981
1982 val &= 0xff00;
1983 for (i = 0; i < ARRAY_SIZE(set); i++)
1984 mdio_write(ioaddr, 0x0d, val | set[i]);
1985 }
1986 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001987 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00001988 { 0x1f, 0x0002 },
1989 { 0x05, 0x2642 },
1990 { 0x1f, 0x0005 },
1991 { 0x05, 0x8330 },
1992 { 0x06, 0x2642 }
1993 };
1994
1995 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
1996 }
1997
françois romieubca03d52011-01-03 15:07:31 +00001998 /* Fine tune PLL performance */
françois romieudaf9df62009-10-07 12:44:20 +00001999 mdio_write(ioaddr, 0x1f, 0x0002);
2000 mdio_plus_minus(ioaddr, 0x02, 0x0100, 0x0600);
2001 mdio_plus_minus(ioaddr, 0x03, 0x0000, 0xe000);
2002
françois romieubca03d52011-01-03 15:07:31 +00002003 /* Switching regulator Slew rate */
françois romieudaf9df62009-10-07 12:44:20 +00002004 mdio_write(ioaddr, 0x1f, 0x0002);
2005 mdio_patch(ioaddr, 0x0f, 0x0017);
2006
françois romieubca03d52011-01-03 15:07:31 +00002007 mdio_write(ioaddr, 0x1f, 0x0005);
2008 mdio_write(ioaddr, 0x05, 0x001b);
2009 if (mdio_read(ioaddr, 0x06) == 0xb300 &&
2010 request_firmware(&fw, FIRMWARE_8168D_2, &tp->pci_dev->dev) == 0) {
2011 rtl_phy_write_fw(tp, fw);
2012 release_firmware(fw);
2013 } else {
2014 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2015 }
2016
2017 mdio_write(ioaddr, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002018}
2019
2020static void rtl8168d_3_hw_phy_config(void __iomem *ioaddr)
2021{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002022 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002023 { 0x1f, 0x0002 },
2024 { 0x10, 0x0008 },
2025 { 0x0d, 0x006c },
2026
2027 { 0x1f, 0x0000 },
2028 { 0x0d, 0xf880 },
2029
2030 { 0x1f, 0x0001 },
2031 { 0x17, 0x0cc0 },
2032
2033 { 0x1f, 0x0001 },
2034 { 0x0b, 0xa4d8 },
2035 { 0x09, 0x281c },
2036 { 0x07, 0x2883 },
2037 { 0x0a, 0x6b35 },
2038 { 0x1d, 0x3da4 },
2039 { 0x1c, 0xeffd },
2040 { 0x14, 0x7f52 },
2041 { 0x18, 0x7fc6 },
2042 { 0x08, 0x0601 },
2043 { 0x06, 0x4063 },
2044 { 0x10, 0xf074 },
2045 { 0x1f, 0x0003 },
2046 { 0x13, 0x0789 },
2047 { 0x12, 0xf4bd },
2048 { 0x1a, 0x04fd },
2049 { 0x14, 0x84b0 },
2050 { 0x1f, 0x0000 },
2051 { 0x00, 0x9200 },
2052
2053 { 0x1f, 0x0005 },
2054 { 0x01, 0x0340 },
2055 { 0x1f, 0x0001 },
2056 { 0x04, 0x4000 },
2057 { 0x03, 0x1d21 },
2058 { 0x02, 0x0c32 },
2059 { 0x01, 0x0200 },
2060 { 0x00, 0x5554 },
2061 { 0x04, 0x4800 },
2062 { 0x04, 0x4000 },
2063 { 0x04, 0xf000 },
2064 { 0x03, 0xdf01 },
2065 { 0x02, 0xdf20 },
2066 { 0x01, 0x101a },
2067 { 0x00, 0xa0ff },
2068 { 0x04, 0xf800 },
2069 { 0x04, 0xf000 },
2070 { 0x1f, 0x0000 },
2071
2072 { 0x1f, 0x0007 },
2073 { 0x1e, 0x0023 },
2074 { 0x16, 0x0000 },
2075 { 0x1f, 0x0000 }
2076 };
2077
2078 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002079}
2080
Francois Romieu2857ffb2008-08-02 21:08:49 +02002081static void rtl8102e_hw_phy_config(void __iomem *ioaddr)
2082{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002083 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02002084 { 0x1f, 0x0003 },
2085 { 0x08, 0x441d },
2086 { 0x01, 0x9100 },
2087 { 0x1f, 0x0000 }
2088 };
2089
2090 mdio_write(ioaddr, 0x1f, 0x0000);
2091 mdio_patch(ioaddr, 0x11, 1 << 12);
2092 mdio_patch(ioaddr, 0x19, 1 << 13);
françois romieu85910a8e2009-08-10 19:45:48 +00002093 mdio_patch(ioaddr, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002094
2095 rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2096}
2097
Francois Romieu5615d9f2007-08-17 17:50:46 +02002098static void rtl_hw_phy_config(struct net_device *dev)
2099{
2100 struct rtl8169_private *tp = netdev_priv(dev);
2101 void __iomem *ioaddr = tp->mmio_addr;
2102
2103 rtl8169_print_mac_version(tp);
2104
2105 switch (tp->mac_version) {
2106 case RTL_GIGA_MAC_VER_01:
2107 break;
2108 case RTL_GIGA_MAC_VER_02:
2109 case RTL_GIGA_MAC_VER_03:
2110 rtl8169s_hw_phy_config(ioaddr);
2111 break;
2112 case RTL_GIGA_MAC_VER_04:
2113 rtl8169sb_hw_phy_config(ioaddr);
2114 break;
françois romieu2e9558562009-08-10 19:44:19 +00002115 case RTL_GIGA_MAC_VER_05:
2116 rtl8169scd_hw_phy_config(tp, ioaddr);
2117 break;
françois romieu8c7006a2009-08-10 19:43:29 +00002118 case RTL_GIGA_MAC_VER_06:
2119 rtl8169sce_hw_phy_config(ioaddr);
2120 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02002121 case RTL_GIGA_MAC_VER_07:
2122 case RTL_GIGA_MAC_VER_08:
2123 case RTL_GIGA_MAC_VER_09:
2124 rtl8102e_hw_phy_config(ioaddr);
2125 break;
Francois Romieu236b8082008-05-30 16:11:48 +02002126 case RTL_GIGA_MAC_VER_11:
2127 rtl8168bb_hw_phy_config(ioaddr);
2128 break;
2129 case RTL_GIGA_MAC_VER_12:
2130 rtl8168bef_hw_phy_config(ioaddr);
2131 break;
2132 case RTL_GIGA_MAC_VER_17:
2133 rtl8168bef_hw_phy_config(ioaddr);
2134 break;
Francois Romieu867763c2007-08-17 18:21:58 +02002135 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02002136 rtl8168cp_1_hw_phy_config(ioaddr);
Francois Romieu867763c2007-08-17 18:21:58 +02002137 break;
2138 case RTL_GIGA_MAC_VER_19:
Francois Romieu219a1e92008-06-28 11:58:39 +02002139 rtl8168c_1_hw_phy_config(ioaddr);
Francois Romieu867763c2007-08-17 18:21:58 +02002140 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02002141 case RTL_GIGA_MAC_VER_20:
Francois Romieu219a1e92008-06-28 11:58:39 +02002142 rtl8168c_2_hw_phy_config(ioaddr);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002143 break;
Francois Romieu197ff762008-06-28 13:16:02 +02002144 case RTL_GIGA_MAC_VER_21:
2145 rtl8168c_3_hw_phy_config(ioaddr);
2146 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02002147 case RTL_GIGA_MAC_VER_22:
2148 rtl8168c_4_hw_phy_config(ioaddr);
2149 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002150 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002151 case RTL_GIGA_MAC_VER_24:
Francois Romieuef3386f2008-06-29 12:24:30 +02002152 rtl8168cp_2_hw_phy_config(ioaddr);
2153 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02002154 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00002155 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002156 break;
2157 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00002158 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002159 break;
2160 case RTL_GIGA_MAC_VER_27:
2161 rtl8168d_3_hw_phy_config(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02002162 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002163
Francois Romieu5615d9f2007-08-17 17:50:46 +02002164 default:
2165 break;
2166 }
2167}
2168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169static void rtl8169_phy_timer(unsigned long __opaque)
2170{
2171 struct net_device *dev = (struct net_device *)__opaque;
2172 struct rtl8169_private *tp = netdev_priv(dev);
2173 struct timer_list *timer = &tp->timer;
2174 void __iomem *ioaddr = tp->mmio_addr;
2175 unsigned long timeout = RTL8169_PHY_TIMEOUT;
2176
Francois Romieubcf0bf92006-07-26 23:14:13 +02002177 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Francois Romieu64e4bfb2006-08-17 12:43:06 +02002179 if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 return;
2181
2182 spin_lock_irq(&tp->lock);
2183
2184 if (tp->phy_reset_pending(ioaddr)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02002185 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 * A busy loop could burn quite a few cycles on nowadays CPU.
2187 * Let's delay the execution of the timer for a few ticks.
2188 */
2189 timeout = HZ/10;
2190 goto out_mod_timer;
2191 }
2192
2193 if (tp->link_ok(ioaddr))
2194 goto out_unlock;
2195
Joe Perchesbf82c182010-02-09 11:49:50 +00002196 netif_warn(tp, link, dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 tp->phy_reset_enable(ioaddr);
2199
2200out_mod_timer:
2201 mod_timer(timer, jiffies + timeout);
2202out_unlock:
2203 spin_unlock_irq(&tp->lock);
2204}
2205
2206static inline void rtl8169_delete_timer(struct net_device *dev)
2207{
2208 struct rtl8169_private *tp = netdev_priv(dev);
2209 struct timer_list *timer = &tp->timer;
2210
Francois Romieue179bb72007-08-17 15:05:21 +02002211 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 return;
2213
2214 del_timer_sync(timer);
2215}
2216
2217static inline void rtl8169_request_timer(struct net_device *dev)
2218{
2219 struct rtl8169_private *tp = netdev_priv(dev);
2220 struct timer_list *timer = &tp->timer;
2221
Francois Romieue179bb72007-08-17 15:05:21 +02002222 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 return;
2224
Francois Romieu2efa53f2007-03-09 00:00:05 +01002225 mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226}
2227
2228#ifdef CONFIG_NET_POLL_CONTROLLER
2229/*
2230 * Polling 'interrupt' - used by things like netconsole to send skbs
2231 * without having to re-enable interrupts. It's not called while
2232 * the interrupt routine is executing.
2233 */
2234static void rtl8169_netpoll(struct net_device *dev)
2235{
2236 struct rtl8169_private *tp = netdev_priv(dev);
2237 struct pci_dev *pdev = tp->pci_dev;
2238
2239 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002240 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 enable_irq(pdev->irq);
2242}
2243#endif
2244
2245static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
2246 void __iomem *ioaddr)
2247{
2248 iounmap(ioaddr);
2249 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00002250 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 pci_disable_device(pdev);
2252 free_netdev(dev);
2253}
2254
Francois Romieubf793292006-11-01 00:53:05 +01002255static void rtl8169_phy_reset(struct net_device *dev,
2256 struct rtl8169_private *tp)
2257{
2258 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01002259 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01002260
2261 tp->phy_reset_enable(ioaddr);
2262 for (i = 0; i < 100; i++) {
2263 if (!tp->phy_reset_pending(ioaddr))
2264 return;
2265 msleep(1);
2266 }
Joe Perchesbf82c182010-02-09 11:49:50 +00002267 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01002268}
2269
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002270static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002272 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002273
Francois Romieu5615d9f2007-08-17 17:50:46 +02002274 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002275
Marcus Sundberg773328942008-07-10 21:28:08 +02002276 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
2277 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2278 RTL_W8(0x82, 0x01);
2279 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002280
Francois Romieu6dccd162007-02-13 23:38:05 +01002281 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
2282
2283 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
2284 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002285
Francois Romieubcf0bf92006-07-26 23:14:13 +02002286 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002287 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2288 RTL_W8(0x82, 0x01);
2289 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
2290 mdio_write(ioaddr, 0x0b, 0x0000); //w 0x0b 15 0 0
2291 }
2292
Francois Romieubf793292006-11-01 00:53:05 +01002293 rtl8169_phy_reset(dev, tp);
2294
Francois Romieu901dda22007-02-21 00:10:20 +01002295 /*
2296 * rtl8169_set_speed_xmii takes good care of the Fast Ethernet
2297 * only 8101. Don't panic.
2298 */
2299 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002300
Joe Perchesbf82c182010-02-09 11:49:50 +00002301 if (RTL_R8(PHYstatus) & TBI_Enable)
2302 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002303}
2304
Francois Romieu773d2022007-01-31 23:47:43 +01002305static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
2306{
2307 void __iomem *ioaddr = tp->mmio_addr;
2308 u32 high;
2309 u32 low;
2310
2311 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
2312 high = addr[4] | (addr[5] << 8);
2313
2314 spin_lock_irq(&tp->lock);
2315
2316 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00002317
Francois Romieu773d2022007-01-31 23:47:43 +01002318 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00002319 RTL_R32(MAC4);
2320
Francois Romieu78f1cd02010-03-27 19:35:46 -07002321 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00002322 RTL_R32(MAC0);
2323
Francois Romieu773d2022007-01-31 23:47:43 +01002324 RTL_W8(Cfg9346, Cfg9346_Lock);
2325
2326 spin_unlock_irq(&tp->lock);
2327}
2328
2329static int rtl_set_mac_address(struct net_device *dev, void *p)
2330{
2331 struct rtl8169_private *tp = netdev_priv(dev);
2332 struct sockaddr *addr = p;
2333
2334 if (!is_valid_ether_addr(addr->sa_data))
2335 return -EADDRNOTAVAIL;
2336
2337 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2338
2339 rtl_rar_set(tp, dev->dev_addr);
2340
2341 return 0;
2342}
2343
Francois Romieu5f787a12006-08-17 13:02:36 +02002344static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2345{
2346 struct rtl8169_private *tp = netdev_priv(dev);
2347 struct mii_ioctl_data *data = if_mii(ifr);
2348
Francois Romieu8b4ab282008-11-19 22:05:25 -08002349 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
2350}
Francois Romieu5f787a12006-08-17 13:02:36 +02002351
Francois Romieu8b4ab282008-11-19 22:05:25 -08002352static int rtl_xmii_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2353{
Francois Romieu5f787a12006-08-17 13:02:36 +02002354 switch (cmd) {
2355 case SIOCGMIIPHY:
2356 data->phy_id = 32; /* Internal PHY */
2357 return 0;
2358
2359 case SIOCGMIIREG:
2360 data->val_out = mdio_read(tp->mmio_addr, data->reg_num & 0x1f);
2361 return 0;
2362
2363 case SIOCSMIIREG:
Francois Romieu5f787a12006-08-17 13:02:36 +02002364 mdio_write(tp->mmio_addr, data->reg_num & 0x1f, data->val_in);
2365 return 0;
2366 }
2367 return -EOPNOTSUPP;
2368}
2369
Francois Romieu8b4ab282008-11-19 22:05:25 -08002370static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2371{
2372 return -EOPNOTSUPP;
2373}
2374
Francois Romieu0e485152007-02-20 00:00:26 +01002375static const struct rtl_cfg_info {
2376 void (*hw_start)(struct net_device *);
2377 unsigned int region;
2378 unsigned int align;
2379 u16 intr_event;
2380 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02002381 unsigned features;
Jean Delvaref21b75e2009-05-26 20:54:48 -07002382 u8 default_ver;
Francois Romieu0e485152007-02-20 00:00:26 +01002383} rtl_cfg_infos [] = {
2384 [RTL_CFG_0] = {
2385 .hw_start = rtl_hw_start_8169,
2386 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01002387 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01002388 .intr_event = SYSErr | LinkChg | RxOverflow |
2389 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002390 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002391 .features = RTL_FEATURE_GMII,
2392 .default_ver = RTL_GIGA_MAC_VER_01,
Francois Romieu0e485152007-02-20 00:00:26 +01002393 },
2394 [RTL_CFG_1] = {
2395 .hw_start = rtl_hw_start_8168,
2396 .region = 2,
2397 .align = 8,
françois romieu53f57352010-11-08 13:23:05 +00002398 .intr_event = SYSErr | LinkChg | RxOverflow |
Francois Romieu0e485152007-02-20 00:00:26 +01002399 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002400 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002401 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
2402 .default_ver = RTL_GIGA_MAC_VER_11,
Francois Romieu0e485152007-02-20 00:00:26 +01002403 },
2404 [RTL_CFG_2] = {
2405 .hw_start = rtl_hw_start_8101,
2406 .region = 2,
2407 .align = 8,
2408 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
2409 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002410 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002411 .features = RTL_FEATURE_MSI,
2412 .default_ver = RTL_GIGA_MAC_VER_13,
Francois Romieu0e485152007-02-20 00:00:26 +01002413 }
2414};
2415
Francois Romieufbac58f2007-10-04 22:51:38 +02002416/* Cfg9346_Unlock assumed. */
2417static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
2418 const struct rtl_cfg_info *cfg)
2419{
2420 unsigned msi = 0;
2421 u8 cfg2;
2422
2423 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02002424 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02002425 if (pci_enable_msi(pdev)) {
2426 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
2427 } else {
2428 cfg2 |= MSIEnable;
2429 msi = RTL_FEATURE_MSI;
2430 }
2431 }
2432 RTL_W8(Config2, cfg2);
2433 return msi;
2434}
2435
2436static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
2437{
2438 if (tp->features & RTL_FEATURE_MSI) {
2439 pci_disable_msi(pdev);
2440 tp->features &= ~RTL_FEATURE_MSI;
2441 }
2442}
2443
Francois Romieu8b4ab282008-11-19 22:05:25 -08002444static const struct net_device_ops rtl8169_netdev_ops = {
2445 .ndo_open = rtl8169_open,
2446 .ndo_stop = rtl8169_close,
2447 .ndo_get_stats = rtl8169_get_stats,
Stephen Hemminger00829822008-11-20 20:14:53 -08002448 .ndo_start_xmit = rtl8169_start_xmit,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002449 .ndo_tx_timeout = rtl8169_tx_timeout,
2450 .ndo_validate_addr = eth_validate_addr,
2451 .ndo_change_mtu = rtl8169_change_mtu,
2452 .ndo_set_mac_address = rtl_set_mac_address,
2453 .ndo_do_ioctl = rtl8169_ioctl,
2454 .ndo_set_multicast_list = rtl_set_rx_mode,
2455#ifdef CONFIG_R8169_VLAN
2456 .ndo_vlan_rx_register = rtl8169_vlan_rx_register,
2457#endif
2458#ifdef CONFIG_NET_POLL_CONTROLLER
2459 .ndo_poll_controller = rtl8169_netpoll,
2460#endif
2461
2462};
2463
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002464static int __devinit
2465rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
2466{
Francois Romieu0e485152007-02-20 00:00:26 +01002467 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
2468 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02002470 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002471 struct net_device *dev;
2472 void __iomem *ioaddr;
Francois Romieu07d3f512007-02-21 22:40:46 +01002473 unsigned int i;
2474 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002476 if (netif_msg_drv(&debug)) {
2477 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
2478 MODULENAME, RTL8169_VERSION);
2479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002482 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002483 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04002484 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002485 rc = -ENOMEM;
2486 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 }
2488
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieu8b4ab282008-11-19 22:05:25 -08002490 dev->netdev_ops = &rtl8169_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00002492 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02002493 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002494 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Francois Romieuccdffb92008-07-26 14:26:06 +02002496 mii = &tp->mii;
2497 mii->dev = dev;
2498 mii->mdio_read = rtl_mdio_read;
2499 mii->mdio_write = rtl_mdio_write;
2500 mii->phy_id_mask = 0x1f;
2501 mii->reg_num_mask = 0x1f;
2502 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
2503
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 /* enable device (incl. PCI PM wakeup and hotplug setup) */
2505 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002506 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00002507 netif_err(tp, probe, dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002508 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 }
2510
françois romieu87aeec72010-04-26 11:42:06 +00002511 if (pci_set_mwi(pdev) < 0)
2512 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02002515 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00002516 netif_err(tp, probe, dev,
2517 "region #%d not an MMIO resource, aborting\n",
2518 region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00002520 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02002524 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00002525 netif_err(tp, probe, dev,
2526 "Invalid PCI region size(s), aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00002528 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 }
2530
2531 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02002532 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00002533 netif_err(tp, probe, dev, "could not request regions\n");
françois romieu87aeec72010-04-26 11:42:06 +00002534 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 }
2536
2537 tp->cp_cmd = PCIMulRW | RxChkSum;
2538
2539 if ((sizeof(dma_addr_t) > 4) &&
David S. Miller4300e8c2010-03-26 10:23:30 -07002540 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 tp->cp_cmd |= PCIDAC;
2542 dev->features |= NETIF_F_HIGHDMA;
2543 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07002544 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00002546 netif_err(tp, probe, dev, "DMA configuration failed\n");
françois romieu87aeec72010-04-26 11:42:06 +00002547 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 }
2549 }
2550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02002552 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002553 if (!ioaddr) {
Joe Perchesbf82c182010-02-09 11:49:50 +00002554 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 rc = -EIO;
françois romieu87aeec72010-04-26 11:42:06 +00002556 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 }
2558
David S. Miller4300e8c2010-03-26 10:23:30 -07002559 tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
2560 if (!tp->pcie_cap)
2561 netif_info(tp, probe, dev, "no PCI Express capability\n");
2562
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07002563 RTL_W16(IntrMask, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
2565 /* Soft reset the chip. */
2566 RTL_W8(ChipCmd, CmdReset);
2567
2568 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01002569 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
2571 break;
Francois Romieub518fa82006-08-16 15:23:13 +02002572 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 }
2574
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07002575 RTL_W16(IntrStatus, 0xffff);
2576
françois romieuca52efd2009-07-24 12:34:19 +00002577 pci_set_master(pdev);
2578
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 /* Identify chip attached to board */
2580 rtl8169_get_mac_version(tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Jean Delvaref21b75e2009-05-26 20:54:48 -07002582 /* Use appropriate default if unknown */
2583 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00002584 netif_notice(tp, probe, dev,
2585 "unknown MAC, using family default\n");
Jean Delvaref21b75e2009-05-26 20:54:48 -07002586 tp->mac_version = cfg->default_ver;
2587 }
2588
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Roel Kluincee60c32008-04-17 22:35:54 +02002591 for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 if (tp->mac_version == rtl_chip_info[i].mac_version)
2593 break;
2594 }
Roel Kluincee60c32008-04-17 22:35:54 +02002595 if (i == ARRAY_SIZE(rtl_chip_info)) {
Jean Delvaref21b75e2009-05-26 20:54:48 -07002596 dev_err(&pdev->dev,
2597 "driver bug, MAC version not found in rtl_chip_info\n");
françois romieu87aeec72010-04-26 11:42:06 +00002598 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 }
2600 tp->chipset = i;
2601
Francois Romieu5d06a992006-02-23 00:47:58 +01002602 RTL_W8(Cfg9346, Cfg9346_Unlock);
2603 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
2604 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Bruno Prémont20037fa2008-10-08 17:05:03 -07002605 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
2606 tp->features |= RTL_FEATURE_WOL;
2607 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
2608 tp->features |= RTL_FEATURE_WOL;
Francois Romieufbac58f2007-10-04 22:51:38 +02002609 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01002610 RTL_W8(Cfg9346, Cfg9346_Lock);
2611
Francois Romieu66ec5d42007-11-06 22:56:10 +01002612 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
2613 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 tp->set_speed = rtl8169_set_speed_tbi;
2615 tp->get_settings = rtl8169_gset_tbi;
2616 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
2617 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
2618 tp->link_ok = rtl8169_tbi_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08002619 tp->do_ioctl = rtl_tbi_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
Francois Romieu64e4bfb2006-08-17 12:43:06 +02002621 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 } else {
2623 tp->set_speed = rtl8169_set_speed_xmii;
2624 tp->get_settings = rtl8169_gset_xmii;
2625 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
2626 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
2627 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08002628 tp->do_ioctl = rtl_xmii_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 }
2630
Francois Romieudf58ef52008-10-09 14:35:58 -07002631 spin_lock_init(&tp->lock);
2632
Petr Vandrovec738e1e62008-10-12 20:58:29 -07002633 tp->mmio_addr = ioaddr;
2634
Ivan Vecera7bf6bf42008-09-23 22:46:29 +00002635 /* Get MAC address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 for (i = 0; i < MAC_ADDR_LEN; i++)
2637 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04002638 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
2642 dev->irq = pdev->irq;
2643 dev->base_addr = (unsigned long) ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002645 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647#ifdef CONFIG_R8169_VLAN
2648 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649#endif
Eric Dumazet2edae082010-09-06 18:46:39 +00002650 dev->features |= NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
2652 tp->intr_mask = 0xffff;
Francois Romieu0e485152007-02-20 00:00:26 +01002653 tp->hw_start = cfg->hw_start;
2654 tp->intr_event = cfg->intr_event;
2655 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Francois Romieu2efa53f2007-03-09 00:00:05 +01002657 init_timer(&tp->timer);
2658 tp->timer.data = (unsigned long) dev;
2659 tp->timer.function = rtl8169_phy_timer;
2660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002662 if (rc < 0)
françois romieu87aeec72010-04-26 11:42:06 +00002663 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
2665 pci_set_drvdata(pdev, dev);
2666
Joe Perchesbf82c182010-02-09 11:49:50 +00002667 netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
2668 rtl_chip_info[tp->chipset].name,
2669 dev->base_addr, dev->dev_addr,
2670 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002672 rtl8169_init_phy(dev, tp);
Simon Wunderlich05af2142009-10-24 06:47:33 -07002673
2674 /*
2675 * Pretend we are using VLANs; This bypasses a nasty bug where
2676 * Interrupts stop flowing on high load on 8110SCd controllers.
2677 */
2678 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
2679 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | RxVlan);
2680
Bruno Prémont8b76ab32008-10-08 17:06:25 -07002681 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
Alan Sternf3ec4f82010-06-08 15:23:51 -04002683 if (pci_dev_run_wake(pdev))
2684 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00002685
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002686out:
2687 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
françois romieu87aeec72010-04-26 11:42:06 +00002689err_out_msi_4:
Francois Romieufbac58f2007-10-04 22:51:38 +02002690 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002691 iounmap(ioaddr);
françois romieu87aeec72010-04-26 11:42:06 +00002692err_out_free_res_3:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002693 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00002694err_out_mwi_2:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002695 pci_clear_mwi(pdev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002696 pci_disable_device(pdev);
2697err_out_free_dev_1:
2698 free_netdev(dev);
2699 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700}
2701
Francois Romieu07d3f512007-02-21 22:40:46 +01002702static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703{
2704 struct net_device *dev = pci_get_drvdata(pdev);
2705 struct rtl8169_private *tp = netdev_priv(dev);
2706
Tejun Heo23f333a2010-12-12 16:45:14 +01002707 cancel_delayed_work_sync(&tp->task);
Francois Romieueb2a0212007-02-15 23:37:21 +01002708
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 unregister_netdev(dev);
Ivan Veceracc098dc2009-11-29 23:12:52 -08002710
Alan Sternf3ec4f82010-06-08 15:23:51 -04002711 if (pci_dev_run_wake(pdev))
2712 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00002713
Ivan Veceracc098dc2009-11-29 23:12:52 -08002714 /* restore original MAC address */
2715 rtl_rar_set(tp, dev->perm_addr);
2716
Francois Romieufbac58f2007-10-04 22:51:38 +02002717 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 rtl8169_release_board(pdev, dev, tp->mmio_addr);
2719 pci_set_drvdata(pdev, NULL);
2720}
2721
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722static int rtl8169_open(struct net_device *dev)
2723{
2724 struct rtl8169_private *tp = netdev_priv(dev);
2725 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02002726 int retval = -ENOMEM;
2727
Rafael J. Wysockie1759442010-03-14 14:33:51 +00002728 pm_runtime_get_sync(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
Neil Hormanc0cd8842010-03-29 13:16:02 -07002730 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 * Rx and Tx desscriptors needs 256 bytes alignment.
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00002732 * dma_alloc_coherent provides more.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 */
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00002734 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
2735 &tp->TxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 if (!tp->TxDescArray)
Rafael J. Wysockie1759442010-03-14 14:33:51 +00002737 goto err_pm_runtime_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00002739 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
2740 &tp->RxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02002742 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
2744 retval = rtl8169_init_ring(dev);
2745 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02002746 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
David Howellsc4028952006-11-22 14:57:56 +00002748 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
Francois Romieu99f252b2007-04-02 22:59:59 +02002750 smp_mb();
2751
Francois Romieufbac58f2007-10-04 22:51:38 +02002752 retval = request_irq(dev->irq, rtl8169_interrupt,
2753 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02002754 dev->name, dev);
2755 if (retval < 0)
2756 goto err_release_ring_2;
2757
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002758 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002759
Francois Romieu07ce4062007-02-23 23:36:39 +01002760 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762 rtl8169_request_timer(dev);
2763
Rafael J. Wysockie1759442010-03-14 14:33:51 +00002764 tp->saved_wolopts = 0;
2765 pm_runtime_put_noidle(&pdev->dev);
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
2768out:
2769 return retval;
2770
Francois Romieu99f252b2007-04-02 22:59:59 +02002771err_release_ring_2:
2772 rtl8169_rx_clear(tp);
2773err_free_rx_1:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00002774 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
2775 tp->RxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00002776 tp->RxDescArray = NULL;
Francois Romieu99f252b2007-04-02 22:59:59 +02002777err_free_tx_0:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00002778 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
2779 tp->TxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00002780 tp->TxDescArray = NULL;
2781err_pm_runtime_put:
2782 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 goto out;
2784}
2785
2786static void rtl8169_hw_reset(void __iomem *ioaddr)
2787{
2788 /* Disable interrupts */
2789 rtl8169_irq_mask_and_ack(ioaddr);
2790
2791 /* Reset the chipset */
2792 RTL_W8(ChipCmd, CmdReset);
2793
2794 /* PCI commit */
2795 RTL_R8(ChipCmd);
2796}
2797
Francois Romieu7f796d82007-06-11 23:04:41 +02002798static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01002799{
2800 void __iomem *ioaddr = tp->mmio_addr;
2801 u32 cfg = rtl8169_rx_config;
2802
2803 cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
2804 RTL_W32(RxConfig, cfg);
2805
2806 /* Set DMA burst size and Interframe Gap Time */
2807 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
2808 (InterFrameGap << TxInterFrameGapShift));
2809}
2810
Francois Romieu07ce4062007-02-23 23:36:39 +01002811static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812{
2813 struct rtl8169_private *tp = netdev_priv(dev);
2814 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01002815 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
2817 /* Soft reset the chip. */
2818 RTL_W8(ChipCmd, CmdReset);
2819
2820 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01002821 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
2823 break;
Francois Romieub518fa82006-08-16 15:23:13 +02002824 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 }
2826
Francois Romieu07ce4062007-02-23 23:36:39 +01002827 tp->hw_start(dev);
2828
Francois Romieu07ce4062007-02-23 23:36:39 +01002829 netif_start_queue(dev);
2830}
2831
2832
Francois Romieu7f796d82007-06-11 23:04:41 +02002833static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
2834 void __iomem *ioaddr)
2835{
2836 /*
2837 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
2838 * register to be written before TxDescAddrLow to work.
2839 * Switching from MMIO to I/O access fixes the issue as well.
2840 */
2841 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07002842 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02002843 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07002844 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02002845}
2846
2847static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
2848{
2849 u16 cmd;
2850
2851 cmd = RTL_R16(CPlusCmd);
2852 RTL_W16(CPlusCmd, cmd);
2853 return cmd;
2854}
2855
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07002856static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d82007-06-11 23:04:41 +02002857{
2858 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e82009-10-26 10:52:37 +00002859 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d82007-06-11 23:04:41 +02002860}
2861
Francois Romieu6dccd162007-02-13 23:38:05 +01002862static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
2863{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002864 static const struct {
Francois Romieu6dccd162007-02-13 23:38:05 +01002865 u32 mac_version;
2866 u32 clk;
2867 u32 val;
2868 } cfg2_info [] = {
2869 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
2870 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
2871 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
2872 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
2873 }, *p = cfg2_info;
2874 unsigned int i;
2875 u32 clk;
2876
2877 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01002878 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01002879 if ((p->mac_version == mac_version) && (p->clk == clk)) {
2880 RTL_W32(0x7c, p->val);
2881 break;
2882 }
2883 }
2884}
2885
Francois Romieu07ce4062007-02-23 23:36:39 +01002886static void rtl_hw_start_8169(struct net_device *dev)
2887{
2888 struct rtl8169_private *tp = netdev_priv(dev);
2889 void __iomem *ioaddr = tp->mmio_addr;
2890 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01002891
Francois Romieu9cb427b2006-11-02 00:10:16 +01002892 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
2893 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
2894 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
2895 }
2896
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieu9cb427b2006-11-02 00:10:16 +01002898 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
2899 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
2900 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
2901 (tp->mac_version == RTL_GIGA_MAC_VER_04))
2902 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 RTL_W8(EarlyTxThres, EarlyTxThld);
2905
Eric Dumazet6f0333b2010-10-11 11:17:47 +00002906 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Francois Romieuc946b302007-10-04 00:42:50 +02002908 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
2909 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
2910 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
2911 (tp->mac_version == RTL_GIGA_MAC_VER_04))
2912 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
Francois Romieu7f796d82007-06-11 23:04:41 +02002914 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02002915
2916 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
2917 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Joe Perches06fa7352007-10-18 21:15:00 +02002918 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02002920 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 }
2922
Francois Romieubcf0bf92006-07-26 23:14:13 +02002923 RTL_W16(CPlusCmd, tp->cp_cmd);
2924
Francois Romieu6dccd162007-02-13 23:38:05 +01002925 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
2926
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 /*
2928 * Undocumented corner. Supposedly:
2929 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
2930 */
2931 RTL_W16(IntrMitigate, 0x0000);
2932
Francois Romieu7f796d82007-06-11 23:04:41 +02002933 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01002934
Francois Romieuc946b302007-10-04 00:42:50 +02002935 if ((tp->mac_version != RTL_GIGA_MAC_VER_01) &&
2936 (tp->mac_version != RTL_GIGA_MAC_VER_02) &&
2937 (tp->mac_version != RTL_GIGA_MAC_VER_03) &&
2938 (tp->mac_version != RTL_GIGA_MAC_VER_04)) {
2939 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
2940 rtl_set_rx_tx_config_registers(tp);
2941 }
2942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02002944
2945 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
2946 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
2948 RTL_W32(RxMissed, 0);
2949
Francois Romieu07ce4062007-02-23 23:36:39 +01002950 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
2952 /* no early-rx interrupts */
2953 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01002954
2955 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01002956 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01002957}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Francois Romieu9c14cea2008-07-05 00:21:15 +02002959static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02002960{
Francois Romieu9c14cea2008-07-05 00:21:15 +02002961 struct net_device *dev = pci_get_drvdata(pdev);
2962 struct rtl8169_private *tp = netdev_priv(dev);
2963 int cap = tp->pcie_cap;
Francois Romieu458a9f62008-08-02 15:50:02 +02002964
Francois Romieu9c14cea2008-07-05 00:21:15 +02002965 if (cap) {
2966 u16 ctl;
2967
2968 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
2969 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
2970 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
2971 }
Francois Romieu458a9f62008-08-02 15:50:02 +02002972}
2973
Francois Romieudacf8152008-08-02 20:44:13 +02002974static void rtl_csi_access_enable(void __iomem *ioaddr)
2975{
2976 u32 csi;
2977
2978 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
2979 rtl_csi_write(ioaddr, 0x070c, csi | 0x27000000);
2980}
2981
2982struct ephy_info {
2983 unsigned int offset;
2984 u16 mask;
2985 u16 bits;
2986};
2987
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002988static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02002989{
2990 u16 w;
2991
2992 while (len-- > 0) {
2993 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
2994 rtl_ephy_write(ioaddr, e->offset, w);
2995 e++;
2996 }
2997}
2998
Francois Romieub726e492008-06-28 12:22:59 +02002999static void rtl_disable_clock_request(struct pci_dev *pdev)
3000{
3001 struct net_device *dev = pci_get_drvdata(pdev);
3002 struct rtl8169_private *tp = netdev_priv(dev);
3003 int cap = tp->pcie_cap;
3004
3005 if (cap) {
3006 u16 ctl;
3007
3008 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3009 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
3010 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3011 }
3012}
3013
3014#define R8168_CPCMD_QUIRK_MASK (\
3015 EnableBist | \
3016 Mac_dbgo_oe | \
3017 Force_half_dup | \
3018 Force_rxflow_en | \
3019 Force_txflow_en | \
3020 Cxpl_dbg_sel | \
3021 ASF | \
3022 PktCntrDisable | \
3023 Mac_dbgo_sel)
3024
Francois Romieu219a1e92008-06-28 11:58:39 +02003025static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
3026{
Francois Romieub726e492008-06-28 12:22:59 +02003027 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3028
3029 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3030
Francois Romieu2e68ae42008-06-28 12:00:55 +02003031 rtl_tx_performance_tweak(pdev,
3032 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02003033}
3034
3035static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
3036{
3037 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02003038
3039 RTL_W8(EarlyTxThres, EarlyTxThld);
3040
3041 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02003042}
3043
3044static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
3045{
Francois Romieub726e492008-06-28 12:22:59 +02003046 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
3047
3048 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3049
Francois Romieu219a1e92008-06-28 11:58:39 +02003050 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02003051
3052 rtl_disable_clock_request(pdev);
3053
3054 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02003055}
3056
Francois Romieuef3386f2008-06-29 12:24:30 +02003057static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02003058{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003059 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003060 { 0x01, 0, 0x0001 },
3061 { 0x02, 0x0800, 0x1000 },
3062 { 0x03, 0, 0x0042 },
3063 { 0x06, 0x0080, 0x0000 },
3064 { 0x07, 0, 0x2000 }
3065 };
3066
3067 rtl_csi_access_enable(ioaddr);
3068
3069 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
3070
Francois Romieu219a1e92008-06-28 11:58:39 +02003071 __rtl_hw_start_8168cp(ioaddr, pdev);
3072}
3073
Francois Romieuef3386f2008-06-29 12:24:30 +02003074static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
3075{
3076 rtl_csi_access_enable(ioaddr);
3077
3078 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3079
3080 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3081
3082 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3083}
3084
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003085static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
3086{
3087 rtl_csi_access_enable(ioaddr);
3088
3089 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3090
3091 /* Magic. */
3092 RTL_W8(DBG_REG, 0x20);
3093
3094 RTL_W8(EarlyTxThres, EarlyTxThld);
3095
3096 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3097
3098 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3099}
3100
Francois Romieu219a1e92008-06-28 11:58:39 +02003101static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
3102{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003103 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003104 { 0x02, 0x0800, 0x1000 },
3105 { 0x03, 0, 0x0002 },
3106 { 0x06, 0x0080, 0x0000 }
3107 };
3108
3109 rtl_csi_access_enable(ioaddr);
3110
3111 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
3112
3113 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
3114
Francois Romieu219a1e92008-06-28 11:58:39 +02003115 __rtl_hw_start_8168cp(ioaddr, pdev);
3116}
3117
3118static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
3119{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003120 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003121 { 0x01, 0, 0x0001 },
3122 { 0x03, 0x0400, 0x0220 }
3123 };
3124
3125 rtl_csi_access_enable(ioaddr);
3126
3127 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
3128
Francois Romieu219a1e92008-06-28 11:58:39 +02003129 __rtl_hw_start_8168cp(ioaddr, pdev);
3130}
3131
Francois Romieu197ff762008-06-28 13:16:02 +02003132static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
3133{
3134 rtl_hw_start_8168c_2(ioaddr, pdev);
3135}
3136
Francois Romieu6fb07052008-06-29 11:54:28 +02003137static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
3138{
3139 rtl_csi_access_enable(ioaddr);
3140
3141 __rtl_hw_start_8168cp(ioaddr, pdev);
3142}
3143
Francois Romieu5b538df2008-07-20 16:22:45 +02003144static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
3145{
3146 rtl_csi_access_enable(ioaddr);
3147
3148 rtl_disable_clock_request(pdev);
3149
3150 RTL_W8(EarlyTxThres, EarlyTxThld);
3151
3152 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3153
3154 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3155}
3156
Francois Romieu07ce4062007-02-23 23:36:39 +01003157static void rtl_hw_start_8168(struct net_device *dev)
3158{
Francois Romieu2dd99532007-06-11 23:22:52 +02003159 struct rtl8169_private *tp = netdev_priv(dev);
3160 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01003161 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02003162
3163 RTL_W8(Cfg9346, Cfg9346_Unlock);
3164
3165 RTL_W8(EarlyTxThres, EarlyTxThld);
3166
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003167 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02003168
Francois Romieu0e485152007-02-20 00:00:26 +01003169 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02003170
3171 RTL_W16(CPlusCmd, tp->cp_cmd);
3172
Francois Romieu0e485152007-02-20 00:00:26 +01003173 RTL_W16(IntrMitigate, 0x5151);
3174
3175 /* Work around for RxFIFO overflow. */
3176 if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
3177 tp->intr_event |= RxFIFOOver | PCSTimeout;
3178 tp->intr_event &= ~RxOverflow;
3179 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003180
3181 rtl_set_rx_tx_desc_registers(tp, ioaddr);
3182
Francois Romieub8363902008-06-01 12:31:57 +02003183 rtl_set_rx_mode(dev);
3184
3185 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3186 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02003187
3188 RTL_R8(IntrMask);
3189
Francois Romieu219a1e92008-06-28 11:58:39 +02003190 switch (tp->mac_version) {
3191 case RTL_GIGA_MAC_VER_11:
3192 rtl_hw_start_8168bb(ioaddr, pdev);
3193 break;
3194
3195 case RTL_GIGA_MAC_VER_12:
3196 case RTL_GIGA_MAC_VER_17:
3197 rtl_hw_start_8168bef(ioaddr, pdev);
3198 break;
3199
3200 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02003201 rtl_hw_start_8168cp_1(ioaddr, pdev);
Francois Romieu219a1e92008-06-28 11:58:39 +02003202 break;
3203
3204 case RTL_GIGA_MAC_VER_19:
3205 rtl_hw_start_8168c_1(ioaddr, pdev);
3206 break;
3207
3208 case RTL_GIGA_MAC_VER_20:
3209 rtl_hw_start_8168c_2(ioaddr, pdev);
3210 break;
3211
Francois Romieu197ff762008-06-28 13:16:02 +02003212 case RTL_GIGA_MAC_VER_21:
3213 rtl_hw_start_8168c_3(ioaddr, pdev);
3214 break;
3215
Francois Romieu6fb07052008-06-29 11:54:28 +02003216 case RTL_GIGA_MAC_VER_22:
3217 rtl_hw_start_8168c_4(ioaddr, pdev);
3218 break;
3219
Francois Romieuef3386f2008-06-29 12:24:30 +02003220 case RTL_GIGA_MAC_VER_23:
3221 rtl_hw_start_8168cp_2(ioaddr, pdev);
3222 break;
3223
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003224 case RTL_GIGA_MAC_VER_24:
3225 rtl_hw_start_8168cp_3(ioaddr, pdev);
3226 break;
3227
Francois Romieu5b538df2008-07-20 16:22:45 +02003228 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00003229 case RTL_GIGA_MAC_VER_26:
3230 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02003231 rtl_hw_start_8168d(ioaddr, pdev);
3232 break;
3233
Francois Romieu219a1e92008-06-28 11:58:39 +02003234 default:
3235 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
3236 dev->name, tp->mac_version);
3237 break;
3238 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003239
Francois Romieu0e485152007-02-20 00:00:26 +01003240 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3241
Francois Romieub8363902008-06-01 12:31:57 +02003242 RTL_W8(Cfg9346, Cfg9346_Lock);
3243
Francois Romieu2dd99532007-06-11 23:22:52 +02003244 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003245
Francois Romieu0e485152007-02-20 00:00:26 +01003246 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003247}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Francois Romieu2857ffb2008-08-02 21:08:49 +02003249#define R810X_CPCMD_QUIRK_MASK (\
3250 EnableBist | \
3251 Mac_dbgo_oe | \
3252 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00003253 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02003254 Force_txflow_en | \
3255 Cxpl_dbg_sel | \
3256 ASF | \
3257 PktCntrDisable | \
3258 PCIDAC | \
3259 PCIMulRW)
3260
3261static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
3262{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003263 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003264 { 0x01, 0, 0x6e65 },
3265 { 0x02, 0, 0x091f },
3266 { 0x03, 0, 0xc2f9 },
3267 { 0x06, 0, 0xafb5 },
3268 { 0x07, 0, 0x0e00 },
3269 { 0x19, 0, 0xec80 },
3270 { 0x01, 0, 0x2e65 },
3271 { 0x01, 0, 0x6e65 }
3272 };
3273 u8 cfg1;
3274
3275 rtl_csi_access_enable(ioaddr);
3276
3277 RTL_W8(DBG_REG, FIX_NAK_1);
3278
3279 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3280
3281 RTL_W8(Config1,
3282 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
3283 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3284
3285 cfg1 = RTL_R8(Config1);
3286 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
3287 RTL_W8(Config1, cfg1 & ~LEDS0);
3288
3289 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
3290
3291 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
3292}
3293
3294static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
3295{
3296 rtl_csi_access_enable(ioaddr);
3297
3298 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3299
3300 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
3301 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3302
3303 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
3304}
3305
3306static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
3307{
3308 rtl_hw_start_8102e_2(ioaddr, pdev);
3309
3310 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
3311}
3312
Francois Romieu07ce4062007-02-23 23:36:39 +01003313static void rtl_hw_start_8101(struct net_device *dev)
3314{
Francois Romieucdf1a602007-06-11 23:29:50 +02003315 struct rtl8169_private *tp = netdev_priv(dev);
3316 void __iomem *ioaddr = tp->mmio_addr;
3317 struct pci_dev *pdev = tp->pci_dev;
3318
Francois Romieue3cf0cc2007-08-17 14:55:46 +02003319 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
3320 (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
Francois Romieu9c14cea2008-07-05 00:21:15 +02003321 int cap = tp->pcie_cap;
3322
3323 if (cap) {
3324 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
3325 PCI_EXP_DEVCTL_NOSNOOP_EN);
3326 }
Francois Romieucdf1a602007-06-11 23:29:50 +02003327 }
3328
Francois Romieu2857ffb2008-08-02 21:08:49 +02003329 switch (tp->mac_version) {
3330 case RTL_GIGA_MAC_VER_07:
3331 rtl_hw_start_8102e_1(ioaddr, pdev);
3332 break;
3333
3334 case RTL_GIGA_MAC_VER_08:
3335 rtl_hw_start_8102e_3(ioaddr, pdev);
3336 break;
3337
3338 case RTL_GIGA_MAC_VER_09:
3339 rtl_hw_start_8102e_2(ioaddr, pdev);
3340 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02003341 }
3342
3343 RTL_W8(Cfg9346, Cfg9346_Unlock);
3344
3345 RTL_W8(EarlyTxThres, EarlyTxThld);
3346
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003347 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02003348
3349 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
3350
3351 RTL_W16(CPlusCmd, tp->cp_cmd);
3352
3353 RTL_W16(IntrMitigate, 0x0000);
3354
3355 rtl_set_rx_tx_desc_registers(tp, ioaddr);
3356
3357 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3358 rtl_set_rx_tx_config_registers(tp);
3359
3360 RTL_W8(Cfg9346, Cfg9346_Lock);
3361
3362 RTL_R8(IntrMask);
3363
Francois Romieucdf1a602007-06-11 23:29:50 +02003364 rtl_set_rx_mode(dev);
3365
Francois Romieu0e485152007-02-20 00:00:26 +01003366 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3367
Francois Romieucdf1a602007-06-11 23:29:50 +02003368 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003369
Francois Romieu0e485152007-02-20 00:00:26 +01003370 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371}
3372
3373static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
3374{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
3376 return -EINVAL;
3377
3378 dev->mtu = new_mtu;
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00003379 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380}
3381
3382static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
3383{
Al Viro95e09182007-12-22 18:55:39 +00003384 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
3386}
3387
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003388static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
3389 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003391 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00003392 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003393
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003394 kfree(*data_buff);
3395 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 rtl8169_make_unusable_by_asic(desc);
3397}
3398
3399static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
3400{
3401 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
3402
3403 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
3404}
3405
3406static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
3407 u32 rx_buf_sz)
3408{
3409 desc->addr = cpu_to_le64(mapping);
3410 wmb();
3411 rtl8169_mark_to_asic(desc, rx_buf_sz);
3412}
3413
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003414static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003416 return (void *)ALIGN((long)data, 16);
3417}
3418
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003419static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
3420 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003421{
3422 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003424 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003425 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003426 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003428 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
3429 if (!data)
3430 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01003431
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003432 if (rtl8169_align(data) != data) {
3433 kfree(data);
3434 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
3435 if (!data)
3436 return NULL;
3437 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003438
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003439 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00003440 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00003441 if (unlikely(dma_mapping_error(d, mapping))) {
3442 if (net_ratelimit())
3443 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003444 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00003445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
3447 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003448 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003449
3450err_out:
3451 kfree(data);
3452 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453}
3454
3455static void rtl8169_rx_clear(struct rtl8169_private *tp)
3456{
Francois Romieu07d3f512007-02-21 22:40:46 +01003457 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
3459 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003460 if (tp->Rx_databuff[i]) {
3461 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 tp->RxDescArray + i);
3463 }
3464 }
3465}
3466
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003467static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003469 desc->opts1 |= cpu_to_le32(RingEnd);
3470}
Francois Romieu5b0384f2006-08-16 16:00:01 +02003471
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003472static int rtl8169_rx_fill(struct rtl8169_private *tp)
3473{
3474 unsigned int i;
3475
3476 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003477 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02003478
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003479 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02003481
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003482 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003483 if (!data) {
3484 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003485 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003486 }
3487 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003490 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
3491 return 0;
3492
3493err_out:
3494 rtl8169_rx_clear(tp);
3495 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496}
3497
3498static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
3499{
3500 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
3501}
3502
3503static int rtl8169_init_ring(struct net_device *dev)
3504{
3505 struct rtl8169_private *tp = netdev_priv(dev);
3506
3507 rtl8169_init_ring_indexes(tp);
3508
3509 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003510 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00003512 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513}
3514
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003515static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 struct TxDesc *desc)
3517{
3518 unsigned int len = tx_skb->len;
3519
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003520 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
3521
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 desc->opts1 = 0x00;
3523 desc->opts2 = 0x00;
3524 desc->addr = 0x00;
3525 tx_skb->len = 0;
3526}
3527
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003528static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
3529 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530{
3531 unsigned int i;
3532
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003533 for (i = 0; i < n; i++) {
3534 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 struct ring_info *tx_skb = tp->tx_skb + entry;
3536 unsigned int len = tx_skb->len;
3537
3538 if (len) {
3539 struct sk_buff *skb = tx_skb->skb;
3540
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003541 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 tp->TxDescArray + entry);
3543 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00003544 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 dev_kfree_skb(skb);
3546 tx_skb->skb = NULL;
3547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 }
3549 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003550}
3551
3552static void rtl8169_tx_clear(struct rtl8169_private *tp)
3553{
3554 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 tp->cur_tx = tp->dirty_tx = 0;
3556}
3557
David Howellsc4028952006-11-22 14:57:56 +00003558static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559{
3560 struct rtl8169_private *tp = netdev_priv(dev);
3561
David Howellsc4028952006-11-22 14:57:56 +00003562 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 schedule_delayed_work(&tp->task, 4);
3564}
3565
3566static void rtl8169_wait_for_quiescence(struct net_device *dev)
3567{
3568 struct rtl8169_private *tp = netdev_priv(dev);
3569 void __iomem *ioaddr = tp->mmio_addr;
3570
3571 synchronize_irq(dev->irq);
3572
3573 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003574 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575
3576 rtl8169_irq_mask_and_ack(ioaddr);
3577
David S. Millerd1d08d12008-01-07 20:53:33 -08003578 tp->intr_mask = 0xffff;
3579 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003580 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581}
3582
David Howellsc4028952006-11-22 14:57:56 +00003583static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584{
David Howellsc4028952006-11-22 14:57:56 +00003585 struct rtl8169_private *tp =
3586 container_of(work, struct rtl8169_private, task.work);
3587 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 int ret;
3589
Francois Romieueb2a0212007-02-15 23:37:21 +01003590 rtnl_lock();
3591
3592 if (!netif_running(dev))
3593 goto out_unlock;
3594
3595 rtl8169_wait_for_quiescence(dev);
3596 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597
3598 ret = rtl8169_open(dev);
3599 if (unlikely(ret < 0)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003600 if (net_ratelimit())
3601 netif_err(tp, drv, dev,
3602 "reinit failure (status = %d). Rescheduling\n",
3603 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 rtl8169_schedule_work(dev, rtl8169_reinit_task);
3605 }
Francois Romieueb2a0212007-02-15 23:37:21 +01003606
3607out_unlock:
3608 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609}
3610
David Howellsc4028952006-11-22 14:57:56 +00003611static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612{
David Howellsc4028952006-11-22 14:57:56 +00003613 struct rtl8169_private *tp =
3614 container_of(work, struct rtl8169_private, task.work);
3615 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616
Francois Romieueb2a0212007-02-15 23:37:21 +01003617 rtnl_lock();
3618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01003620 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621
3622 rtl8169_wait_for_quiescence(dev);
3623
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003624 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, ~(u32)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 rtl8169_tx_clear(tp);
3626
3627 if (tp->dirty_rx == tp->cur_rx) {
3628 rtl8169_init_ring_indexes(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01003629 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 netif_wake_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02003631 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 } else {
Joe Perchesbf82c182010-02-09 11:49:50 +00003633 if (net_ratelimit())
3634 netif_emerg(tp, intr, dev, "Rx buffers shortage\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 rtl8169_schedule_work(dev, rtl8169_reset_task);
3636 }
Francois Romieueb2a0212007-02-15 23:37:21 +01003637
3638out_unlock:
3639 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640}
3641
3642static void rtl8169_tx_timeout(struct net_device *dev)
3643{
3644 struct rtl8169_private *tp = netdev_priv(dev);
3645
3646 rtl8169_hw_reset(tp->mmio_addr);
3647
3648 /* Let's wait a bit while any (async) irq lands on */
3649 rtl8169_schedule_work(dev, rtl8169_reset_task);
3650}
3651
3652static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
3653 u32 opts1)
3654{
3655 struct skb_shared_info *info = skb_shinfo(skb);
3656 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04003657 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003658 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659
3660 entry = tp->cur_tx;
3661 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
3662 skb_frag_t *frag = info->frags + cur_frag;
3663 dma_addr_t mapping;
3664 u32 status, len;
3665 void *addr;
3666
3667 entry = (entry + 1) % NUM_TX_DESC;
3668
3669 txd = tp->TxDescArray + entry;
3670 len = frag->size;
3671 addr = ((void *) page_address(frag->page)) + frag->page_offset;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003672 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00003673 if (unlikely(dma_mapping_error(d, mapping))) {
3674 if (net_ratelimit())
3675 netif_err(tp, drv, tp->dev,
3676 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003677 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00003678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
3680 /* anti gcc 2.95.3 bugware (sic) */
3681 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
3682
3683 txd->opts1 = cpu_to_le32(status);
3684 txd->addr = cpu_to_le64(mapping);
3685
3686 tp->tx_skb[entry].len = len;
3687 }
3688
3689 if (cur_frag) {
3690 tp->tx_skb[entry].skb = skb;
3691 txd->opts1 |= cpu_to_le32(LastFrag);
3692 }
3693
3694 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003695
3696err_out:
3697 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
3698 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699}
3700
3701static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
3702{
3703 if (dev->features & NETIF_F_TSO) {
Herbert Xu79671682006-06-22 02:40:14 -07003704 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
3706 if (mss)
3707 return LargeSend | ((mss & MSSMask) << MSSShift);
3708 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07003709 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003710 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
3712 if (ip->protocol == IPPROTO_TCP)
3713 return IPCS | TCPCS;
3714 else if (ip->protocol == IPPROTO_UDP)
3715 return IPCS | UDPCS;
3716 WARN_ON(1); /* we need a WARN() */
3717 }
3718 return 0;
3719}
3720
Stephen Hemminger613573252009-08-31 19:50:58 +00003721static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
3722 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723{
3724 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003725 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 struct TxDesc *txd = tp->TxDescArray + entry;
3727 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003728 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 dma_addr_t mapping;
3730 u32 status, len;
3731 u32 opts1;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003732 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02003733
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003735 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003736 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 }
3738
3739 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003740 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003742 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003743 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00003744 if (unlikely(dma_mapping_error(d, mapping))) {
3745 if (net_ratelimit())
3746 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003747 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00003748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749
3750 tp->tx_skb[entry].len = len;
3751 txd->addr = cpu_to_le64(mapping);
3752 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
3753
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003754 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
3755
3756 frags = rtl8169_xmit_frags(tp, skb, opts1);
3757 if (frags < 0)
3758 goto err_dma_1;
3759 else if (frags)
3760 opts1 |= FirstFrag;
3761 else {
3762 opts1 |= FirstFrag | LastFrag;
3763 tp->tx_skb[entry].skb = skb;
3764 }
3765
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 wmb();
3767
3768 /* anti gcc 2.95.3 bugware (sic) */
3769 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
3770 txd->opts1 = cpu_to_le32(status);
3771
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 tp->cur_tx += frags + 1;
3773
David Dillow4c020a92010-03-03 16:33:10 +00003774 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775
Francois Romieu275391a2007-02-23 23:50:28 +01003776 RTL_W8(TxPoll, NPQ); /* set polling bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777
3778 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
3779 netif_stop_queue(dev);
3780 smp_rmb();
3781 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
3782 netif_wake_queue(dev);
3783 }
3784
Stephen Hemminger613573252009-08-31 19:50:58 +00003785 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003787err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003788 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00003789err_dma_0:
3790 dev_kfree_skb(skb);
3791 dev->stats.tx_dropped++;
3792 return NETDEV_TX_OK;
3793
3794err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02003796 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00003797 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798}
3799
3800static void rtl8169_pcierr_interrupt(struct net_device *dev)
3801{
3802 struct rtl8169_private *tp = netdev_priv(dev);
3803 struct pci_dev *pdev = tp->pci_dev;
3804 void __iomem *ioaddr = tp->mmio_addr;
3805 u16 pci_status, pci_cmd;
3806
3807 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
3808 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
3809
Joe Perchesbf82c182010-02-09 11:49:50 +00003810 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
3811 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
3813 /*
3814 * The recovery sequence below admits a very elaborated explanation:
3815 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01003816 * - I did not see what else could be done;
3817 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 *
3819 * Feel free to adjust to your needs.
3820 */
Francois Romieua27993f2006-12-18 00:04:19 +01003821 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01003822 pci_cmd &= ~PCI_COMMAND_PARITY;
3823 else
3824 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
3825
3826 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
3828 pci_write_config_word(pdev, PCI_STATUS,
3829 pci_status & (PCI_STATUS_DETECTED_PARITY |
3830 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
3831 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
3832
3833 /* The infamous DAC f*ckup only happens at boot time */
3834 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003835 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 tp->cp_cmd &= ~PCIDAC;
3837 RTL_W16(CPlusCmd, tp->cp_cmd);
3838 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 }
3840
3841 rtl8169_hw_reset(ioaddr);
Francois Romieud03902b2006-11-23 00:00:42 +01003842
3843 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844}
3845
Francois Romieu07d3f512007-02-21 22:40:46 +01003846static void rtl8169_tx_interrupt(struct net_device *dev,
3847 struct rtl8169_private *tp,
3848 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849{
3850 unsigned int dirty_tx, tx_left;
3851
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 dirty_tx = tp->dirty_tx;
3853 smp_rmb();
3854 tx_left = tp->cur_tx - dirty_tx;
3855
3856 while (tx_left > 0) {
3857 unsigned int entry = dirty_tx % NUM_TX_DESC;
3858 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 u32 status;
3860
3861 rmb();
3862 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
3863 if (status & DescOwn)
3864 break;
3865
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003866 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
3867 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 if (status & LastFrag) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00003869 dev->stats.tx_packets++;
3870 dev->stats.tx_bytes += tx_skb->skb->len;
Eric Dumazet87433bf2009-06-09 22:55:53 +00003871 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 tx_skb->skb = NULL;
3873 }
3874 dirty_tx++;
3875 tx_left--;
3876 }
3877
3878 if (tp->dirty_tx != dirty_tx) {
3879 tp->dirty_tx = dirty_tx;
3880 smp_wmb();
3881 if (netif_queue_stopped(dev) &&
3882 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
3883 netif_wake_queue(dev);
3884 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02003885 /*
3886 * 8168 hack: TxPoll requests are lost when the Tx packets are
3887 * too close. Let's kick an extra TxPoll request when a burst
3888 * of start_xmit activity is detected (if it is not detected,
3889 * it is slow enough). -- FR
3890 */
3891 smp_rmb();
3892 if (tp->cur_tx != dirty_tx)
3893 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 }
3895}
3896
Francois Romieu126fa4b2005-05-12 20:09:17 -04003897static inline int rtl8169_fragmented_frame(u32 status)
3898{
3899 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
3900}
3901
Eric Dumazetadea1ac72010-09-05 20:04:05 -07003902static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 u32 status = opts1 & RxProtoMask;
3905
3906 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00003907 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 skb->ip_summed = CHECKSUM_UNNECESSARY;
3909 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07003910 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911}
3912
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003913static struct sk_buff *rtl8169_try_rx_copy(void *data,
3914 struct rtl8169_private *tp,
3915 int pkt_size,
3916 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02003918 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003919 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003921 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003922 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003923 prefetch(data);
3924 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
3925 if (skb)
3926 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00003927 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
3928
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003929 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930}
3931
Eric Dumazet630b9432010-03-31 02:08:31 +00003932/*
3933 * Warning : rtl8169_rx_interrupt() might be called :
3934 * 1) from NAPI (softirq) context
3935 * (polling = 1 : we should call netif_receive_skb())
3936 * 2) from process context (rtl8169_reset_task())
3937 * (polling = 0 : we must call netif_rx() instead)
3938 */
Francois Romieu07d3f512007-02-21 22:40:46 +01003939static int rtl8169_rx_interrupt(struct net_device *dev,
3940 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003941 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942{
3943 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003944 unsigned int count;
Eric Dumazet630b9432010-03-31 02:08:31 +00003945 int polling = (budget != ~(u32)0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 cur_rx = tp->cur_rx;
3948 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02003949 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
Richard Dawe4dcb7d32005-05-27 21:12:00 +02003951 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04003953 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 u32 status;
3955
3956 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04003957 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
3959 if (status & DescOwn)
3960 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02003961 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003962 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
3963 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02003964 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02003966 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02003968 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02003969 if (status & RxFOVF) {
3970 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02003971 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02003972 }
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003973 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003975 struct sk_buff *skb;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02003976 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 int pkt_size = (status & 0x00001FFF) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978
Francois Romieu126fa4b2005-05-12 20:09:17 -04003979 /*
3980 * The driver does not support incoming fragmented
3981 * frames. They are seen as a symptom of over-mtu
3982 * sized frames.
3983 */
3984 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02003985 dev->stats.rx_dropped++;
3986 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003987 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02003988 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04003989 }
3990
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003991 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
3992 tp, pkt_size, addr);
3993 rtl8169_mark_to_asic(desc, rx_buf_sz);
3994 if (!skb) {
3995 dev->stats.rx_dropped++;
3996 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 }
3998
Eric Dumazetadea1ac72010-09-05 20:04:05 -07003999 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 skb_put(skb, pkt_size);
4001 skb->protocol = eth_type_trans(skb, dev);
4002
Eric Dumazet630b9432010-03-31 02:08:31 +00004003 if (rtl8169_rx_vlan_skb(tp, desc, skb, polling) < 0) {
4004 if (likely(polling))
Eric Dumazet2edae082010-09-06 18:46:39 +00004005 napi_gro_receive(&tp->napi, skb);
Eric Dumazet630b9432010-03-31 02:08:31 +00004006 else
4007 netif_rx(skb);
4008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
Francois Romieucebf8cc2007-10-18 12:06:54 +02004010 dev->stats.rx_bytes += pkt_size;
4011 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 }
Francois Romieu6dccd162007-02-13 23:38:05 +01004013
4014 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00004015 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01004016 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
4017 desc->opts2 = 0;
4018 cur_rx++;
4019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 }
4021
4022 count = cur_rx - tp->cur_rx;
4023 tp->cur_rx = cur_rx;
4024
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004025 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026
4027 return count;
4028}
4029
Francois Romieu07d3f512007-02-21 22:40:46 +01004030static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031{
Francois Romieu07d3f512007-02-21 22:40:46 +01004032 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02004036 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037
David Dillowf11a3772009-05-22 15:29:34 +00004038 /* loop handling interrupts until we have no new ones or
4039 * we hit a invalid/hotplug case.
4040 */
Francois Romieu865c6522008-05-11 14:51:00 +02004041 status = RTL_R16(IntrStatus);
David Dillowf11a3772009-05-22 15:29:34 +00004042 while (status && status != 0xffff) {
4043 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
David Dillowf11a3772009-05-22 15:29:34 +00004045 /* Handle all of the error cases first. These will reset
4046 * the chip, so just exit the loop.
4047 */
4048 if (unlikely(!netif_running(dev))) {
4049 rtl8169_asic_down(ioaddr);
4050 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 }
David Dillowf11a3772009-05-22 15:29:34 +00004052
4053 /* Work around for rx fifo overflow */
françois romieu53f57352010-11-08 13:23:05 +00004054 if (unlikely(status & RxFIFOOver) &&
4055 (tp->mac_version == RTL_GIGA_MAC_VER_11)) {
David Dillowf11a3772009-05-22 15:29:34 +00004056 netif_stop_queue(dev);
4057 rtl8169_tx_timeout(dev);
4058 break;
4059 }
4060
4061 if (unlikely(status & SYSErr)) {
4062 rtl8169_pcierr_interrupt(dev);
4063 break;
4064 }
4065
4066 if (status & LinkChg)
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00004067 __rtl8169_check_link_status(dev, tp, ioaddr, true);
David Dillowf11a3772009-05-22 15:29:34 +00004068
4069 /* We need to see the lastest version of tp->intr_mask to
4070 * avoid ignoring an MSI interrupt and having to wait for
4071 * another event which may never come.
4072 */
4073 smp_rmb();
4074 if (status & tp->intr_mask & tp->napi_event) {
4075 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
4076 tp->intr_mask = ~tp->napi_event;
4077
4078 if (likely(napi_schedule_prep(&tp->napi)))
4079 __napi_schedule(&tp->napi);
Joe Perchesbf82c182010-02-09 11:49:50 +00004080 else
4081 netif_info(tp, intr, dev,
4082 "interrupt %04x in poll\n", status);
David Dillowf11a3772009-05-22 15:29:34 +00004083 }
4084
4085 /* We only get a new MSI interrupt when all active irq
4086 * sources on the chip have been acknowledged. So, ack
4087 * everything we've seen and check if new sources have become
4088 * active to avoid blocking all interrupts from the chip.
4089 */
4090 RTL_W16(IntrStatus,
4091 (status & RxFIFOOver) ? (status | RxOverflow) : status);
4092 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 }
David Dillowf11a3772009-05-22 15:29:34 +00004094
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 return IRQ_RETVAL(handled);
4096}
4097
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004098static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004100 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
4101 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004103 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004105 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 rtl8169_tx_interrupt(dev, tp, ioaddr);
4107
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004108 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08004109 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00004110
4111 /* We need for force the visibility of tp->intr_mask
4112 * for other CPUs, as we can loose an MSI interrupt
4113 * and potentially wait for a retransmit timeout if we don't.
4114 * The posted write to IntrMask is safe, as it will
4115 * eventually make it to the chip and we won't loose anything
4116 * until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 */
David Dillowf11a3772009-05-22 15:29:34 +00004118 tp->intr_mask = 0xffff;
David Dillow4c020a92010-03-03 16:33:10 +00004119 wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01004120 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 }
4122
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004123 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
Francois Romieu523a6092008-09-10 22:28:56 +02004126static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
4127{
4128 struct rtl8169_private *tp = netdev_priv(dev);
4129
4130 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
4131 return;
4132
4133 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
4134 RTL_W32(RxMissed, 0);
4135}
4136
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137static void rtl8169_down(struct net_device *dev)
4138{
4139 struct rtl8169_private *tp = netdev_priv(dev);
4140 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141
4142 rtl8169_delete_timer(dev);
4143
4144 netif_stop_queue(dev);
4145
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004146 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004147
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 spin_lock_irq(&tp->lock);
4149
4150 rtl8169_asic_down(ioaddr);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004151 /*
4152 * At this point device interrupts can not be enabled in any function,
4153 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
4154 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
4155 */
Francois Romieu523a6092008-09-10 22:28:56 +02004156 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157
4158 spin_unlock_irq(&tp->lock);
4159
4160 synchronize_irq(dev->irq);
4161
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07004163 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 rtl8169_tx_clear(tp);
4166
4167 rtl8169_rx_clear(tp);
4168}
4169
4170static int rtl8169_close(struct net_device *dev)
4171{
4172 struct rtl8169_private *tp = netdev_priv(dev);
4173 struct pci_dev *pdev = tp->pci_dev;
4174
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004175 pm_runtime_get_sync(&pdev->dev);
4176
Ivan Vecera355423d2009-02-06 21:49:57 -08004177 /* update counters before going down */
4178 rtl8169_update_counters(dev);
4179
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 rtl8169_down(dev);
4181
4182 free_irq(dev->irq, dev);
4183
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00004184 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
4185 tp->RxPhyAddr);
4186 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
4187 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 tp->TxDescArray = NULL;
4189 tp->RxDescArray = NULL;
4190
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004191 pm_runtime_put_sync(&pdev->dev);
4192
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 return 0;
4194}
4195
Francois Romieu07ce4062007-02-23 23:36:39 +01004196static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197{
4198 struct rtl8169_private *tp = netdev_priv(dev);
4199 void __iomem *ioaddr = tp->mmio_addr;
4200 unsigned long flags;
4201 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01004202 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 u32 tmp = 0;
4204
4205 if (dev->flags & IFF_PROMISC) {
4206 /* Unconditionally log net taps. */
Joe Perchesbf82c182010-02-09 11:49:50 +00004207 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 rx_mode =
4209 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4210 AcceptAllPhys;
4211 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00004212 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00004213 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 /* Too many to filter perfectly -- accept all multicasts. */
4215 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4216 mc_filter[1] = mc_filter[0] = 0xffffffff;
4217 } else {
Jiri Pirko22bedad2010-04-01 21:22:57 +00004218 struct netdev_hw_addr *ha;
Francois Romieu07d3f512007-02-21 22:40:46 +01004219
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 rx_mode = AcceptBroadcast | AcceptMyPhys;
4221 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00004222 netdev_for_each_mc_addr(ha, dev) {
4223 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4225 rx_mode |= AcceptMulticast;
4226 }
4227 }
4228
4229 spin_lock_irqsave(&tp->lock, flags);
4230
4231 tmp = rtl8169_rx_config | rx_mode |
4232 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
4233
Francois Romieuf887cce2008-07-17 22:24:18 +02004234 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01004235 u32 data = mc_filter[0];
4236
4237 mc_filter[0] = swab32(mc_filter[1]);
4238 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02004239 }
4240
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 RTL_W32(MAR0 + 4, mc_filter[1]);
Francois Romieu78f1cd02010-03-27 19:35:46 -07004242 RTL_W32(MAR0 + 0, mc_filter[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243
Francois Romieu57a9f232007-06-04 22:10:15 +02004244 RTL_W32(RxConfig, tmp);
4245
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 spin_unlock_irqrestore(&tp->lock, flags);
4247}
4248
4249/**
4250 * rtl8169_get_stats - Get rtl8169 read/write statistics
4251 * @dev: The Ethernet Device to get statistics for
4252 *
4253 * Get TX/RX statistics for rtl8169
4254 */
4255static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
4256{
4257 struct rtl8169_private *tp = netdev_priv(dev);
4258 void __iomem *ioaddr = tp->mmio_addr;
4259 unsigned long flags;
4260
4261 if (netif_running(dev)) {
4262 spin_lock_irqsave(&tp->lock, flags);
Francois Romieu523a6092008-09-10 22:28:56 +02004263 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 spin_unlock_irqrestore(&tp->lock, flags);
4265 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02004266
Francois Romieucebf8cc2007-10-18 12:06:54 +02004267 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268}
4269
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004270static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01004271{
Francois Romieu5d06a992006-02-23 00:47:58 +01004272 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004273 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01004274
4275 netif_device_detach(dev);
4276 netif_stop_queue(dev);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004277}
Francois Romieu5d06a992006-02-23 00:47:58 +01004278
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004279#ifdef CONFIG_PM
4280
4281static int rtl8169_suspend(struct device *device)
4282{
4283 struct pci_dev *pdev = to_pci_dev(device);
4284 struct net_device *dev = pci_get_drvdata(pdev);
4285
4286 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02004287
Francois Romieu5d06a992006-02-23 00:47:58 +01004288 return 0;
4289}
4290
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004291static void __rtl8169_resume(struct net_device *dev)
4292{
4293 netif_device_attach(dev);
4294 rtl8169_schedule_work(dev, rtl8169_reset_task);
4295}
4296
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004297static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01004298{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004299 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01004300 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00004301 struct rtl8169_private *tp = netdev_priv(dev);
4302
4303 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01004304
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004305 if (netif_running(dev))
4306 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01004307
Francois Romieu5d06a992006-02-23 00:47:58 +01004308 return 0;
4309}
4310
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004311static int rtl8169_runtime_suspend(struct device *device)
4312{
4313 struct pci_dev *pdev = to_pci_dev(device);
4314 struct net_device *dev = pci_get_drvdata(pdev);
4315 struct rtl8169_private *tp = netdev_priv(dev);
4316
4317 if (!tp->TxDescArray)
4318 return 0;
4319
4320 spin_lock_irq(&tp->lock);
4321 tp->saved_wolopts = __rtl8169_get_wol(tp);
4322 __rtl8169_set_wol(tp, WAKE_ANY);
4323 spin_unlock_irq(&tp->lock);
4324
4325 rtl8169_net_suspend(dev);
4326
4327 return 0;
4328}
4329
4330static int rtl8169_runtime_resume(struct device *device)
4331{
4332 struct pci_dev *pdev = to_pci_dev(device);
4333 struct net_device *dev = pci_get_drvdata(pdev);
4334 struct rtl8169_private *tp = netdev_priv(dev);
4335
4336 if (!tp->TxDescArray)
4337 return 0;
4338
4339 spin_lock_irq(&tp->lock);
4340 __rtl8169_set_wol(tp, tp->saved_wolopts);
4341 tp->saved_wolopts = 0;
4342 spin_unlock_irq(&tp->lock);
4343
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00004344 rtl8169_init_phy(dev, tp);
4345
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004346 __rtl8169_resume(dev);
4347
4348 return 0;
4349}
4350
4351static int rtl8169_runtime_idle(struct device *device)
4352{
4353 struct pci_dev *pdev = to_pci_dev(device);
4354 struct net_device *dev = pci_get_drvdata(pdev);
4355 struct rtl8169_private *tp = netdev_priv(dev);
4356
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00004357 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004358}
4359
Alexey Dobriyan47145212009-12-14 18:00:08 -08004360static const struct dev_pm_ops rtl8169_pm_ops = {
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004361 .suspend = rtl8169_suspend,
4362 .resume = rtl8169_resume,
4363 .freeze = rtl8169_suspend,
4364 .thaw = rtl8169_resume,
4365 .poweroff = rtl8169_suspend,
4366 .restore = rtl8169_resume,
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004367 .runtime_suspend = rtl8169_runtime_suspend,
4368 .runtime_resume = rtl8169_runtime_resume,
4369 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004370};
4371
4372#define RTL8169_PM_OPS (&rtl8169_pm_ops)
4373
4374#else /* !CONFIG_PM */
4375
4376#define RTL8169_PM_OPS NULL
4377
4378#endif /* !CONFIG_PM */
4379
Francois Romieu1765f952008-09-13 17:21:40 +02004380static void rtl_shutdown(struct pci_dev *pdev)
4381{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004382 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00004383 struct rtl8169_private *tp = netdev_priv(dev);
4384 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu1765f952008-09-13 17:21:40 +02004385
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004386 rtl8169_net_suspend(dev);
4387
Ivan Veceracc098dc2009-11-29 23:12:52 -08004388 /* restore original MAC address */
4389 rtl_rar_set(tp, dev->perm_addr);
4390
françois romieu4bb3f522009-06-17 11:41:45 +00004391 spin_lock_irq(&tp->lock);
4392
4393 rtl8169_asic_down(ioaddr);
4394
4395 spin_unlock_irq(&tp->lock);
4396
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004397 if (system_state == SYSTEM_POWER_OFF) {
françois romieuca52efd2009-07-24 12:34:19 +00004398 /* WoL fails with some 8168 when the receiver is disabled. */
4399 if (tp->features & RTL_FEATURE_WOL) {
4400 pci_clear_master(pdev);
4401
4402 RTL_W8(ChipCmd, CmdRxEnb);
4403 /* PCI commit */
4404 RTL_R8(ChipCmd);
4405 }
4406
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004407 pci_wake_from_d3(pdev, true);
4408 pci_set_power_state(pdev, PCI_D3hot);
4409 }
4410}
Francois Romieu5d06a992006-02-23 00:47:58 +01004411
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412static struct pci_driver rtl8169_pci_driver = {
4413 .name = MODULENAME,
4414 .id_table = rtl8169_pci_tbl,
4415 .probe = rtl8169_init_one,
4416 .remove = __devexit_p(rtl8169_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02004417 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004418 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419};
4420
Francois Romieu07d3f512007-02-21 22:40:46 +01004421static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422{
Jeff Garzik29917622006-08-19 17:48:59 -04004423 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424}
4425
Francois Romieu07d3f512007-02-21 22:40:46 +01004426static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427{
4428 pci_unregister_driver(&rtl8169_pci_driver);
4429}
4430
4431module_init(rtl8169_init_module);
4432module_exit(rtl8169_cleanup_module);