blob: 493b0de3848bf17fadd6741ad57d5b4701b2f074 [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>
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +000028#include <linux/pci-aspm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Francois Romieu99f252b02007-04-02 22:59:59 +020030#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/io.h>
32#include <asm/irq.h>
33
Francois Romieu865c6522008-05-11 14:51:00 +020034#define RTL8169_VERSION "2.3LK-NAPI"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define MODULENAME "r8169"
36#define PFX MODULENAME ": "
37
françois romieubca03d52011-01-03 15:07:31 +000038#define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
39#define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
Hayes Wang5a5e4442011-02-22 17:26:21 +080040#define FIRMWARE_8105E_1 "rtl_nic/rtl8105e-1.fw"
françois romieubca03d52011-01-03 15:07:31 +000041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#ifdef RTL8169_DEBUG
43#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020044 if (!(expr)) { \
45 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070046 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020047 }
Joe Perches06fa7352007-10-18 21:15:00 +020048#define dprintk(fmt, args...) \
49 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#else
51#define assert(expr) do {} while (0)
52#define dprintk(fmt, args...) do {} while (0)
53#endif /* RTL8169_DEBUG */
54
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020055#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070056 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define TX_BUFFS_AVAIL(tp) \
59 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
62 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050063static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* MAC address length */
66#define MAC_ADDR_LEN 6
67
Francois Romieu9c14cea2008-07-05 00:21:15 +020068#define MAX_READ_REQUEST_SHIFT 12
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
70#define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
71#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
73#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
74
75#define R8169_REGS_SIZE 256
76#define R8169_NAPI_WEIGHT 64
77#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
78#define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
79#define RX_BUF_SIZE 1536 /* Rx Buffer size */
80#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
81#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
82
83#define RTL8169_TX_TIMEOUT (6*HZ)
84#define RTL8169_PHY_TIMEOUT (10*HZ)
85
françois romieuea8dbdd2009-03-15 01:10:50 +000086#define RTL_EEPROM_SIG cpu_to_le32(0x8129)
87#define RTL_EEPROM_SIG_MASK cpu_to_le32(0xffff)
Francois Romieue1564ec2008-10-16 22:46:13 +020088#define RTL_EEPROM_SIG_ADDR 0x0000
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/* write/read MMIO register */
91#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
92#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
93#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
94#define RTL_R8(reg) readb (ioaddr + (reg))
95#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +000096#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98enum mac_version {
Jean Delvaref21b75e2009-05-26 20:54:48 -070099 RTL_GIGA_MAC_NONE = 0x00,
Francois Romieuba6eb6e2007-06-11 23:35:18 +0200100 RTL_GIGA_MAC_VER_01 = 0x01, // 8169
101 RTL_GIGA_MAC_VER_02 = 0x02, // 8169S
102 RTL_GIGA_MAC_VER_03 = 0x03, // 8110S
103 RTL_GIGA_MAC_VER_04 = 0x04, // 8169SB
104 RTL_GIGA_MAC_VER_05 = 0x05, // 8110SCd
Francois Romieu6dccd162007-02-13 23:38:05 +0100105 RTL_GIGA_MAC_VER_06 = 0x06, // 8110SCe
Francois Romieu2857ffb2008-08-02 21:08:49 +0200106 RTL_GIGA_MAC_VER_07 = 0x07, // 8102e
107 RTL_GIGA_MAC_VER_08 = 0x08, // 8102e
108 RTL_GIGA_MAC_VER_09 = 0x09, // 8102e
109 RTL_GIGA_MAC_VER_10 = 0x0a, // 8101e
Francois Romieu2dd99532007-06-11 23:22:52 +0200110 RTL_GIGA_MAC_VER_11 = 0x0b, // 8168Bb
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200111 RTL_GIGA_MAC_VER_12 = 0x0c, // 8168Be
112 RTL_GIGA_MAC_VER_13 = 0x0d, // 8101Eb
113 RTL_GIGA_MAC_VER_14 = 0x0e, // 8101 ?
114 RTL_GIGA_MAC_VER_15 = 0x0f, // 8101 ?
115 RTL_GIGA_MAC_VER_16 = 0x11, // 8101Ec
116 RTL_GIGA_MAC_VER_17 = 0x10, // 8168Bf
117 RTL_GIGA_MAC_VER_18 = 0x12, // 8168CP
118 RTL_GIGA_MAC_VER_19 = 0x13, // 8168C
Francois Romieu197ff762008-06-28 13:16:02 +0200119 RTL_GIGA_MAC_VER_20 = 0x14, // 8168C
Francois Romieu6fb07052008-06-29 11:54:28 +0200120 RTL_GIGA_MAC_VER_21 = 0x15, // 8168C
Francois Romieuef3386f2008-06-29 12:24:30 +0200121 RTL_GIGA_MAC_VER_22 = 0x16, // 8168C
Francois Romieu7f3e3d32008-07-20 18:53:20 +0200122 RTL_GIGA_MAC_VER_23 = 0x17, // 8168CP
Francois Romieu5b538df2008-07-20 16:22:45 +0200123 RTL_GIGA_MAC_VER_24 = 0x18, // 8168CP
françois romieudaf9df62009-10-07 12:44:20 +0000124 RTL_GIGA_MAC_VER_25 = 0x19, // 8168D
125 RTL_GIGA_MAC_VER_26 = 0x1a, // 8168D
françois romieue6de30d2011-01-03 15:08:37 +0000126 RTL_GIGA_MAC_VER_27 = 0x1b, // 8168DP
127 RTL_GIGA_MAC_VER_28 = 0x1c, // 8168DP
Hayes Wang5a5e4442011-02-22 17:26:21 +0800128 RTL_GIGA_MAC_VER_29 = 0x1d, // 8105E
129 RTL_GIGA_MAC_VER_30 = 0x1e, // 8105E
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#define _R(NAME,MAC,MASK) \
133 { .name = NAME, .mac_version = MAC, .RxConfigMask = MASK }
134
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800135static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 const char *name;
137 u8 mac_version;
138 u32 RxConfigMask; /* Clears the bits supported by this chip */
139} rtl_chip_info[] = {
Francois Romieuba6eb6e2007-06-11 23:35:18 +0200140 _R("RTL8169", RTL_GIGA_MAC_VER_01, 0xff7e1880), // 8169
141 _R("RTL8169s", RTL_GIGA_MAC_VER_02, 0xff7e1880), // 8169S
142 _R("RTL8110s", RTL_GIGA_MAC_VER_03, 0xff7e1880), // 8110S
143 _R("RTL8169sb/8110sb", RTL_GIGA_MAC_VER_04, 0xff7e1880), // 8169SB
144 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_05, 0xff7e1880), // 8110SCd
Francois Romieu6dccd162007-02-13 23:38:05 +0100145 _R("RTL8169sc/8110sc", RTL_GIGA_MAC_VER_06, 0xff7e1880), // 8110SCe
Francois Romieu2857ffb2008-08-02 21:08:49 +0200146 _R("RTL8102e", RTL_GIGA_MAC_VER_07, 0xff7e1880), // PCI-E
147 _R("RTL8102e", RTL_GIGA_MAC_VER_08, 0xff7e1880), // PCI-E
148 _R("RTL8102e", RTL_GIGA_MAC_VER_09, 0xff7e1880), // PCI-E
149 _R("RTL8101e", RTL_GIGA_MAC_VER_10, 0xff7e1880), // PCI-E
Francois Romieubcf0bf92006-07-26 23:14:13 +0200150 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_11, 0xff7e1880), // PCI-E
151 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_12, 0xff7e1880), // PCI-E
152 _R("RTL8101e", RTL_GIGA_MAC_VER_13, 0xff7e1880), // PCI-E 8139
153 _R("RTL8100e", RTL_GIGA_MAC_VER_14, 0xff7e1880), // PCI-E 8139
Francois Romieue3cf0cc2007-08-17 14:55:46 +0200154 _R("RTL8100e", RTL_GIGA_MAC_VER_15, 0xff7e1880), // PCI-E 8139
155 _R("RTL8168b/8111b", RTL_GIGA_MAC_VER_17, 0xff7e1880), // PCI-E
156 _R("RTL8101e", RTL_GIGA_MAC_VER_16, 0xff7e1880), // PCI-E
157 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_18, 0xff7e1880), // PCI-E
158 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_19, 0xff7e1880), // PCI-E
Francois Romieu197ff762008-06-28 13:16:02 +0200159 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_20, 0xff7e1880), // PCI-E
Francois Romieu6fb07052008-06-29 11:54:28 +0200160 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_21, 0xff7e1880), // PCI-E
Francois Romieuef3386f2008-06-29 12:24:30 +0200161 _R("RTL8168c/8111c", RTL_GIGA_MAC_VER_22, 0xff7e1880), // PCI-E
Francois Romieu7f3e3d32008-07-20 18:53:20 +0200162 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_23, 0xff7e1880), // PCI-E
Francois Romieu5b538df2008-07-20 16:22:45 +0200163 _R("RTL8168cp/8111cp", RTL_GIGA_MAC_VER_24, 0xff7e1880), // PCI-E
françois romieudaf9df62009-10-07 12:44:20 +0000164 _R("RTL8168d/8111d", RTL_GIGA_MAC_VER_25, 0xff7e1880), // PCI-E
165 _R("RTL8168d/8111d", RTL_GIGA_MAC_VER_26, 0xff7e1880), // PCI-E
françois romieue6de30d2011-01-03 15:08:37 +0000166 _R("RTL8168dp/8111dp", RTL_GIGA_MAC_VER_27, 0xff7e1880), // PCI-E
Hayes Wang5a5e4442011-02-22 17:26:21 +0800167 _R("RTL8168dp/8111dp", RTL_GIGA_MAC_VER_28, 0xff7e1880), // PCI-E
168 _R("RTL8105e", RTL_GIGA_MAC_VER_29, 0xff7e1880), // PCI-E
169 _R("RTL8105e", RTL_GIGA_MAC_VER_30, 0xff7e1880) // PCI-E
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170};
171#undef _R
172
Francois Romieubcf0bf92006-07-26 23:14:13 +0200173enum cfg_version {
174 RTL_CFG_0 = 0x00,
175 RTL_CFG_1,
176 RTL_CFG_2
177};
178
Francois Romieu07ce4062007-02-23 23:36:39 +0100179static void rtl_hw_start_8169(struct net_device *);
180static void rtl_hw_start_8168(struct net_device *);
181static void rtl_hw_start_8101(struct net_device *);
182
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000183static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200184 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200185 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200186 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100187 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200188 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
189 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200190 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200191 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
192 { PCI_VENDOR_ID_LINKSYS, 0x1032,
193 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100194 { 0x0001, 0x8168,
195 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 {0,},
197};
198
199MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
200
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000201static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700202static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200203static struct {
204 u32 msg_enable;
205} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Francois Romieu07d3f512007-02-21 22:40:46 +0100207enum rtl_registers {
208 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100209 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100210 MAR0 = 8, /* Multicast filter. */
211 CounterAddrLow = 0x10,
212 CounterAddrHigh = 0x14,
213 TxDescStartAddrLow = 0x20,
214 TxDescStartAddrHigh = 0x24,
215 TxHDescStartAddrLow = 0x28,
216 TxHDescStartAddrHigh = 0x2c,
217 FLASH = 0x30,
218 ERSR = 0x36,
219 ChipCmd = 0x37,
220 TxPoll = 0x38,
221 IntrMask = 0x3c,
222 IntrStatus = 0x3e,
223 TxConfig = 0x40,
224 RxConfig = 0x44,
225 RxMissed = 0x4c,
226 Cfg9346 = 0x50,
227 Config0 = 0x51,
228 Config1 = 0x52,
229 Config2 = 0x53,
230 Config3 = 0x54,
231 Config4 = 0x55,
232 Config5 = 0x56,
233 MultiIntr = 0x5c,
234 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100235 PHYstatus = 0x6c,
236 RxMaxSize = 0xda,
237 CPlusCmd = 0xe0,
238 IntrMitigate = 0xe2,
239 RxDescAddrLow = 0xe4,
240 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000241 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
242
243#define NoEarlyTx 0x3f /* Max value : no early transmit. */
244
245 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
246
247#define TxPacketMax (8064 >> 7)
248
Francois Romieu07d3f512007-02-21 22:40:46 +0100249 FuncEvent = 0xf0,
250 FuncEventMask = 0xf4,
251 FuncPresetState = 0xf8,
252 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253};
254
Francois Romieuf162a5d2008-06-01 22:37:49 +0200255enum rtl8110_registers {
256 TBICSR = 0x64,
257 TBI_ANAR = 0x68,
258 TBI_LPAR = 0x6a,
259};
260
261enum rtl8168_8101_registers {
262 CSIDR = 0x64,
263 CSIAR = 0x68,
264#define CSIAR_FLAG 0x80000000
265#define CSIAR_WRITE_CMD 0x80000000
266#define CSIAR_BYTE_ENABLE 0x0f
267#define CSIAR_BYTE_ENABLE_SHIFT 12
268#define CSIAR_ADDR_MASK 0x0fff
françois romieu065c27c2011-01-03 15:08:12 +0000269 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200270 EPHYAR = 0x80,
271#define EPHYAR_FLAG 0x80000000
272#define EPHYAR_WRITE_CMD 0x80000000
273#define EPHYAR_REG_MASK 0x1f
274#define EPHYAR_REG_SHIFT 16
275#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800276 DLLPR = 0xd0,
277#define PM_SWITCH (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200278 DBG_REG = 0xd1,
279#define FIX_NAK_1 (1 << 4)
280#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800281 TWSI = 0xd2,
282 MCU = 0xd3,
283#define EN_NDP (1 << 3)
284#define EN_OOB_RESET (1 << 2)
françois romieudaf9df62009-10-07 12:44:20 +0000285 EFUSEAR = 0xdc,
286#define EFUSEAR_FLAG 0x80000000
287#define EFUSEAR_WRITE_CMD 0x80000000
288#define EFUSEAR_READ_CMD 0x00000000
289#define EFUSEAR_REG_MASK 0x03ff
290#define EFUSEAR_REG_SHIFT 8
291#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200292};
293
françois romieuc0e45c12011-01-03 15:08:04 +0000294enum rtl8168_registers {
françois romieub646d902011-01-03 15:08:21 +0000295 ERIDR = 0x70,
296 ERIAR = 0x74,
297#define ERIAR_FLAG 0x80000000
298#define ERIAR_WRITE_CMD 0x80000000
299#define ERIAR_READ_CMD 0x00000000
300#define ERIAR_ADDR_BYTE_ALIGN 4
301#define ERIAR_EXGMAC 0
302#define ERIAR_MSIX 1
303#define ERIAR_ASF 2
304#define ERIAR_TYPE_SHIFT 16
305#define ERIAR_BYTEEN 0x0f
306#define ERIAR_BYTEEN_SHIFT 12
françois romieuc0e45c12011-01-03 15:08:04 +0000307 EPHY_RXER_NUM = 0x7c,
308 OCPDR = 0xb0, /* OCP GPHY access */
309#define OCPDR_WRITE_CMD 0x80000000
310#define OCPDR_READ_CMD 0x00000000
311#define OCPDR_REG_MASK 0x7f
312#define OCPDR_GPHY_REG_SHIFT 16
313#define OCPDR_DATA_MASK 0xffff
314 OCPAR = 0xb4,
315#define OCPAR_FLAG 0x80000000
316#define OCPAR_GPHY_WRITE_CMD 0x8000f060
317#define OCPAR_GPHY_READ_CMD 0x0000f060
françois romieue6de30d2011-01-03 15:08:37 +0000318 RDSAR1 = 0xd0 /* 8168c only. Undocumented on 8168dp */
françois romieuc0e45c12011-01-03 15:08:04 +0000319};
320
Francois Romieu07d3f512007-02-21 22:40:46 +0100321enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100323 SYSErr = 0x8000,
324 PCSTimeout = 0x4000,
325 SWInt = 0x0100,
326 TxDescUnavail = 0x0080,
327 RxFIFOOver = 0x0040,
328 LinkChg = 0x0020,
329 RxOverflow = 0x0010,
330 TxErr = 0x0008,
331 TxOK = 0x0004,
332 RxErr = 0x0002,
333 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /* RxStatusDesc */
Francois Romieu9dccf612006-05-14 12:31:17 +0200336 RxFOVF = (1 << 23),
337 RxRWT = (1 << 22),
338 RxRES = (1 << 21),
339 RxRUNT = (1 << 20),
340 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 /* ChipCmdBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100343 CmdReset = 0x10,
344 CmdRxEnb = 0x08,
345 CmdTxEnb = 0x04,
346 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Francois Romieu275391a2007-02-23 23:50:28 +0100348 /* TXPoll register p.5 */
349 HPQ = 0x80, /* Poll cmd on the high prio queue */
350 NPQ = 0x40, /* Poll cmd on the low prio queue */
351 FSWInt = 0x01, /* Forced software interrupt */
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100354 Cfg9346_Lock = 0x00,
355 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100358 AcceptErr = 0x20,
359 AcceptRunt = 0x10,
360 AcceptBroadcast = 0x08,
361 AcceptMulticast = 0x04,
362 AcceptMyPhys = 0x02,
363 AcceptAllPhys = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* RxConfigBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100366 RxCfgFIFOShift = 13,
367 RxCfgDMAShift = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 /* TxConfigBits */
370 TxInterFrameGapShift = 24,
371 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
372
Francois Romieu5d06a992006-02-23 00:47:58 +0100373 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200374 LEDS1 = (1 << 7),
375 LEDS0 = (1 << 6),
Francois Romieufbac58f2007-10-04 22:51:38 +0200376 MSIEnable = (1 << 5), /* Enable Message Signaled Interrupt */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200377 Speed_down = (1 << 4),
378 MEMMAP = (1 << 3),
379 IOMAP = (1 << 2),
380 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100381 PMEnable = (1 << 0), /* Power Management Enable */
382
Francois Romieu6dccd162007-02-13 23:38:05 +0100383 /* Config2 register p. 25 */
384 PCI_Clock_66MHz = 0x01,
385 PCI_Clock_33MHz = 0x00,
386
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100387 /* Config3 register p.25 */
388 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
389 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200390 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100391
Francois Romieu5d06a992006-02-23 00:47:58 +0100392 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100393 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
394 MWF = (1 << 5), /* Accept Multicast wakeup frame */
395 UWF = (1 << 4), /* Accept Unicast wakeup frame */
396 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100397 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 /* TBICSR p.28 */
400 TBIReset = 0x80000000,
401 TBILoopback = 0x40000000,
402 TBINwEnable = 0x20000000,
403 TBINwRestart = 0x10000000,
404 TBILinkOk = 0x02000000,
405 TBINwComplete = 0x01000000,
406
407 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200408 EnableBist = (1 << 15), // 8168 8101
409 Mac_dbgo_oe = (1 << 14), // 8168 8101
410 Normal_mode = (1 << 13), // unused
411 Force_half_dup = (1 << 12), // 8168 8101
412 Force_rxflow_en = (1 << 11), // 8168 8101
413 Force_txflow_en = (1 << 10), // 8168 8101
414 Cxpl_dbg_sel = (1 << 9), // 8168 8101
415 ASF = (1 << 8), // 8168 8101
416 PktCntrDisable = (1 << 7), // 8168 8101
417 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 RxVlan = (1 << 6),
419 RxChkSum = (1 << 5),
420 PCIDAC = (1 << 4),
421 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100422 INTT_0 = 0x0000, // 8168
423 INTT_1 = 0x0001, // 8168
424 INTT_2 = 0x0002, // 8168
425 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100428 TBI_Enable = 0x80,
429 TxFlowCtrl = 0x40,
430 RxFlowCtrl = 0x20,
431 _1000bpsF = 0x10,
432 _100bps = 0x08,
433 _10bps = 0x04,
434 LinkStatus = 0x02,
435 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100438 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200439
440 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100441 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442};
443
Francois Romieu07d3f512007-02-21 22:40:46 +0100444enum desc_status_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
446 RingEnd = (1 << 30), /* End of descriptor ring */
447 FirstFrag = (1 << 29), /* First segment of a packet */
448 LastFrag = (1 << 28), /* Final segment of a packet */
449
450 /* Tx private */
451 LargeSend = (1 << 27), /* TCP Large Send Offload (TSO) */
452 MSSShift = 16, /* MSS value position */
453 MSSMask = 0xfff, /* MSS value + LargeSend bit: 12 bits */
454 IPCS = (1 << 18), /* Calculate IP checksum */
455 UDPCS = (1 << 17), /* Calculate UDP/IP checksum */
456 TCPCS = (1 << 16), /* Calculate TCP/IP checksum */
457 TxVlanTag = (1 << 17), /* Add VLAN tag */
458
459 /* Rx private */
460 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
461 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
462
463#define RxProtoUDP (PID1)
464#define RxProtoTCP (PID0)
465#define RxProtoIP (PID1 | PID0)
466#define RxProtoMask RxProtoIP
467
468 IPFail = (1 << 16), /* IP checksum failed */
469 UDPFail = (1 << 15), /* UDP/IP checksum failed */
470 TCPFail = (1 << 14), /* TCP/IP checksum failed */
471 RxVlanTag = (1 << 16), /* VLAN tag available */
472};
473
474#define RsvdMask 0x3fffc000
475
476struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200477 __le32 opts1;
478 __le32 opts2;
479 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480};
481
482struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200483 __le32 opts1;
484 __le32 opts2;
485 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486};
487
488struct ring_info {
489 struct sk_buff *skb;
490 u32 len;
491 u8 __pad[sizeof(void *) - sizeof(u32)];
492};
493
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200494enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200495 RTL_FEATURE_WOL = (1 << 0),
496 RTL_FEATURE_MSI = (1 << 1),
497 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200498};
499
Ivan Vecera355423d2009-02-06 21:49:57 -0800500struct rtl8169_counters {
501 __le64 tx_packets;
502 __le64 rx_packets;
503 __le64 tx_errors;
504 __le32 rx_errors;
505 __le16 rx_missed;
506 __le16 align_errors;
507 __le32 tx_one_collision;
508 __le32 tx_multi_collision;
509 __le64 rx_unicast;
510 __le64 rx_broadcast;
511 __le32 rx_multicast;
512 __le16 tx_aborted;
513 __le16 tx_underun;
514};
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516struct rtl8169_private {
517 void __iomem *mmio_addr; /* memory map physical address */
518 struct pci_dev *pci_dev; /* Index of PCI device */
David Howellsc4028952006-11-22 14:57:56 +0000519 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700520 struct napi_struct napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 spinlock_t lock; /* spin lock flag */
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200522 u32 msg_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 int chipset;
524 int mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
526 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
527 u32 dirty_rx;
528 u32 dirty_tx;
529 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
530 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
531 dma_addr_t TxPhyAddr;
532 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000533 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 struct timer_list timer;
536 u16 cp_cmd;
Francois Romieu0e485152007-02-20 00:00:26 +0100537 u16 intr_event;
538 u16 napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 u16 intr_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 int phy_1000_ctrl_reg;
françois romieuc0e45c12011-01-03 15:08:04 +0000541
542 struct mdio_ops {
543 void (*write)(void __iomem *, int, int);
544 int (*read)(void __iomem *, int);
545 } mdio_ops;
546
françois romieu065c27c2011-01-03 15:08:12 +0000547 struct pll_power_ops {
548 void (*down)(struct rtl8169_private *);
549 void (*up)(struct rtl8169_private *);
550 } pll_power_ops;
551
Oliver Neukum54405cd2011-01-06 21:55:13 +0100552 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200553 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000554 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100555 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000556 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800558 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
Francois Romieu9c14cea2008-07-05 00:21:15 +0200559 int pcie_cap;
David Howellsc4028952006-11-22 14:57:56 +0000560 struct delayed_work task;
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200561 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200562
563 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800564 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000565 u32 saved_wolopts;
françois romieuf1e02ed2011-01-13 13:07:53 +0000566
567 const struct firmware *fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568};
569
Ralf Baechle979b6c12005-06-13 14:30:40 -0700570MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700573MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200574module_param_named(debug, debug.msg_enable, int, 0);
575MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576MODULE_LICENSE("GPL");
577MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000578MODULE_FIRMWARE(FIRMWARE_8168D_1);
579MODULE_FIRMWARE(FIRMWARE_8168D_2);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800580MODULE_FIRMWARE(FIRMWARE_8105E_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582static int rtl8169_open(struct net_device *dev);
Stephen Hemminger613573252009-08-31 19:50:58 +0000583static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
584 struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100585static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100587static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100589static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200591static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700593 void __iomem *, u32 budget);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200594static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b02007-04-02 22:59:59 +0200596static void rtl8169_rx_clear(struct rtl8169_private *tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700597static int rtl8169_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599static const unsigned int rtl8169_rx_config =
Francois Romieu5b0384f2006-08-16 16:00:01 +0200600 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
françois romieub646d902011-01-03 15:08:21 +0000602static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
603{
604 void __iomem *ioaddr = tp->mmio_addr;
605 int i;
606
607 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
608 for (i = 0; i < 20; i++) {
609 udelay(100);
610 if (RTL_R32(OCPAR) & OCPAR_FLAG)
611 break;
612 }
613 return RTL_R32(OCPDR);
614}
615
616static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
617{
618 void __iomem *ioaddr = tp->mmio_addr;
619 int i;
620
621 RTL_W32(OCPDR, data);
622 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
623 for (i = 0; i < 20; i++) {
624 udelay(100);
625 if ((RTL_R32(OCPAR) & OCPAR_FLAG) == 0)
626 break;
627 }
628}
629
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800630static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000631{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800632 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000633 int i;
634
635 RTL_W8(ERIDR, cmd);
636 RTL_W32(ERIAR, 0x800010e8);
637 msleep(2);
638 for (i = 0; i < 5; i++) {
639 udelay(100);
640 if (!(RTL_R32(ERIDR) & ERIAR_FLAG))
641 break;
642 }
643
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800644 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000645}
646
647#define OOB_CMD_RESET 0x00
648#define OOB_CMD_DRIVER_START 0x05
649#define OOB_CMD_DRIVER_STOP 0x06
650
651static void rtl8168_driver_start(struct rtl8169_private *tp)
652{
653 int i;
654
655 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
656
657 for (i = 0; i < 10; i++) {
658 msleep(10);
659 if (ocp_read(tp, 0x0f, 0x0010) & 0x00000800)
660 break;
661 }
662}
663
664static void rtl8168_driver_stop(struct rtl8169_private *tp)
665{
666 int i;
667
668 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
669
670 for (i = 0; i < 10; i++) {
671 msleep(10);
672 if ((ocp_read(tp, 0x0f, 0x0010) & 0x00000800) == 0)
673 break;
674 }
675}
676
677
françois romieu4da19632011-01-03 15:07:55 +0000678static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 int i;
681
Francois Romieua6baf3a2007-11-08 23:23:21 +0100682 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Francois Romieu23714082006-01-29 00:49:09 +0100684 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100685 /*
686 * Check if the RTL8169 has completed writing to the specified
687 * MII register.
688 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200689 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 break;
Francois Romieu23714082006-01-29 00:49:09 +0100691 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700693 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700694 * According to hardware specs a 20us delay is required after write
695 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700696 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700697 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
françois romieu4da19632011-01-03 15:07:55 +0000700static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 int i, value = -1;
703
Francois Romieua6baf3a2007-11-08 23:23:21 +0100704 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Francois Romieu23714082006-01-29 00:49:09 +0100706 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100707 /*
708 * Check if the RTL8169 has completed retrieving data from
709 * the specified MII register.
710 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100712 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 break;
714 }
Francois Romieu23714082006-01-29 00:49:09 +0100715 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700717 /*
718 * According to hardware specs a 20us delay is required after read
719 * complete indication, but before sending next command.
720 */
721 udelay(20);
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return value;
724}
725
françois romieuc0e45c12011-01-03 15:08:04 +0000726static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
727{
728 int i;
729
730 RTL_W32(OCPDR, data |
731 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
732 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
733 RTL_W32(EPHY_RXER_NUM, 0);
734
735 for (i = 0; i < 100; i++) {
736 mdelay(1);
737 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
738 break;
739 }
740}
741
742static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
743{
744 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
745 (value & OCPDR_DATA_MASK));
746}
747
748static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
749{
750 int i;
751
752 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
753
754 mdelay(1);
755 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
756 RTL_W32(EPHY_RXER_NUM, 0);
757
758 for (i = 0; i < 100; i++) {
759 mdelay(1);
760 if (RTL_R32(OCPAR) & OCPAR_FLAG)
761 break;
762 }
763
764 return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
765}
766
françois romieue6de30d2011-01-03 15:08:37 +0000767#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
768
769static void r8168dp_2_mdio_start(void __iomem *ioaddr)
770{
771 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
772}
773
774static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
775{
776 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
777}
778
779static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
780{
781 r8168dp_2_mdio_start(ioaddr);
782
783 r8169_mdio_write(ioaddr, reg_addr, value);
784
785 r8168dp_2_mdio_stop(ioaddr);
786}
787
788static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
789{
790 int value;
791
792 r8168dp_2_mdio_start(ioaddr);
793
794 value = r8169_mdio_read(ioaddr, reg_addr);
795
796 r8168dp_2_mdio_stop(ioaddr);
797
798 return value;
799}
800
françois romieu4da19632011-01-03 15:07:55 +0000801static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +0200802{
françois romieuc0e45c12011-01-03 15:08:04 +0000803 tp->mdio_ops.write(tp->mmio_addr, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +0200804}
805
françois romieu4da19632011-01-03 15:07:55 +0000806static int rtl_readphy(struct rtl8169_private *tp, int location)
807{
françois romieuc0e45c12011-01-03 15:08:04 +0000808 return tp->mdio_ops.read(tp->mmio_addr, location);
françois romieu4da19632011-01-03 15:07:55 +0000809}
810
811static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
812{
813 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
814}
815
816static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +0000817{
818 int val;
819
françois romieu4da19632011-01-03 15:07:55 +0000820 val = rtl_readphy(tp, reg_addr);
821 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +0000822}
823
Francois Romieuccdffb92008-07-26 14:26:06 +0200824static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
825 int val)
826{
827 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200828
françois romieu4da19632011-01-03 15:07:55 +0000829 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +0200830}
831
832static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
833{
834 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200835
françois romieu4da19632011-01-03 15:07:55 +0000836 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +0200837}
838
Francois Romieudacf8152008-08-02 20:44:13 +0200839static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
840{
841 unsigned int i;
842
843 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
844 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
845
846 for (i = 0; i < 100; i++) {
847 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
848 break;
849 udelay(10);
850 }
851}
852
853static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
854{
855 u16 value = 0xffff;
856 unsigned int i;
857
858 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
859
860 for (i = 0; i < 100; i++) {
861 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
862 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
863 break;
864 }
865 udelay(10);
866 }
867
868 return value;
869}
870
871static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
872{
873 unsigned int i;
874
875 RTL_W32(CSIDR, value);
876 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
877 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
878
879 for (i = 0; i < 100; i++) {
880 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
881 break;
882 udelay(10);
883 }
884}
885
886static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
887{
888 u32 value = ~0x00;
889 unsigned int i;
890
891 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
892 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
893
894 for (i = 0; i < 100; i++) {
895 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
896 value = RTL_R32(CSIDR);
897 break;
898 }
899 udelay(10);
900 }
901
902 return value;
903}
904
françois romieudaf9df62009-10-07 12:44:20 +0000905static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
906{
907 u8 value = 0xff;
908 unsigned int i;
909
910 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
911
912 for (i = 0; i < 300; i++) {
913 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
914 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
915 break;
916 }
917 udelay(100);
918 }
919
920 return value;
921}
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
924{
925 RTL_W16(IntrMask, 0x0000);
926
927 RTL_W16(IntrStatus, 0xffff);
928}
929
930static void rtl8169_asic_down(void __iomem *ioaddr)
931{
932 RTL_W8(ChipCmd, 0x00);
933 rtl8169_irq_mask_and_ack(ioaddr);
934 RTL_R16(CPlusCmd);
935}
936
françois romieu4da19632011-01-03 15:07:55 +0000937static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
françois romieu4da19632011-01-03 15:07:55 +0000939 void __iomem *ioaddr = tp->mmio_addr;
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return RTL_R32(TBICSR) & TBIReset;
942}
943
françois romieu4da19632011-01-03 15:07:55 +0000944static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
françois romieu4da19632011-01-03 15:07:55 +0000946 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
949static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
950{
951 return RTL_R32(TBICSR) & TBILinkOk;
952}
953
954static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
955{
956 return RTL_R8(PHYstatus) & LinkStatus;
957}
958
françois romieu4da19632011-01-03 15:07:55 +0000959static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
françois romieu4da19632011-01-03 15:07:55 +0000961 void __iomem *ioaddr = tp->mmio_addr;
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
964}
965
françois romieu4da19632011-01-03 15:07:55 +0000966static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 unsigned int val;
969
françois romieu4da19632011-01-03 15:07:55 +0000970 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
971 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}
973
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000974static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieu07d3f512007-02-21 22:40:46 +0100975 struct rtl8169_private *tp,
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000976 void __iomem *ioaddr,
977 bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
979 unsigned long flags;
980
981 spin_lock_irqsave(&tp->lock, flags);
982 if (tp->link_ok(ioaddr)) {
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000983 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000984 if (pm)
985 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +0100987 if (net_ratelimit())
988 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200989 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +0000991 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000992 if (pm)
993 pm_schedule_suspend(&tp->pci_dev->dev, 100);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 spin_unlock_irqrestore(&tp->lock, flags);
996}
997
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +0000998static void rtl8169_check_link_status(struct net_device *dev,
999 struct rtl8169_private *tp,
1000 void __iomem *ioaddr)
1001{
1002 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1003}
1004
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001005#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1006
1007static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1008{
1009 void __iomem *ioaddr = tp->mmio_addr;
1010 u8 options;
1011 u32 wolopts = 0;
1012
1013 options = RTL_R8(Config1);
1014 if (!(options & PMEnable))
1015 return 0;
1016
1017 options = RTL_R8(Config3);
1018 if (options & LinkUp)
1019 wolopts |= WAKE_PHY;
1020 if (options & MagicPacket)
1021 wolopts |= WAKE_MAGIC;
1022
1023 options = RTL_R8(Config5);
1024 if (options & UWF)
1025 wolopts |= WAKE_UCAST;
1026 if (options & BWF)
1027 wolopts |= WAKE_BCAST;
1028 if (options & MWF)
1029 wolopts |= WAKE_MCAST;
1030
1031 return wolopts;
1032}
1033
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001034static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1035{
1036 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001037
1038 spin_lock_irq(&tp->lock);
1039
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001040 wol->supported = WAKE_ANY;
1041 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001042
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001043 spin_unlock_irq(&tp->lock);
1044}
1045
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001046static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001047{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001048 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001049 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001050 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001051 u32 opt;
1052 u16 reg;
1053 u8 mask;
1054 } cfg[] = {
1055 { WAKE_ANY, Config1, PMEnable },
1056 { WAKE_PHY, Config3, LinkUp },
1057 { WAKE_MAGIC, Config3, MagicPacket },
1058 { WAKE_UCAST, Config5, UWF },
1059 { WAKE_BCAST, Config5, BWF },
1060 { WAKE_MCAST, Config5, MWF },
1061 { WAKE_ANY, Config5, LanWake }
1062 };
1063
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001064 RTL_W8(Cfg9346, Cfg9346_Unlock);
1065
1066 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
1067 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001068 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001069 options |= cfg[i].mask;
1070 RTL_W8(cfg[i].reg, options);
1071 }
1072
1073 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001074}
1075
1076static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1077{
1078 struct rtl8169_private *tp = netdev_priv(dev);
1079
1080 spin_lock_irq(&tp->lock);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001081
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001082 if (wol->wolopts)
1083 tp->features |= RTL_FEATURE_WOL;
1084 else
1085 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001086 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001087 spin_unlock_irq(&tp->lock);
1088
françois romieuea809072010-11-08 13:23:58 +00001089 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1090
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001091 return 0;
1092}
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094static void rtl8169_get_drvinfo(struct net_device *dev,
1095 struct ethtool_drvinfo *info)
1096{
1097 struct rtl8169_private *tp = netdev_priv(dev);
1098
1099 strcpy(info->driver, MODULENAME);
1100 strcpy(info->version, RTL8169_VERSION);
1101 strcpy(info->bus_info, pci_name(tp->pci_dev));
1102}
1103
1104static int rtl8169_get_regs_len(struct net_device *dev)
1105{
1106 return R8169_REGS_SIZE;
1107}
1108
1109static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001110 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 struct rtl8169_private *tp = netdev_priv(dev);
1113 void __iomem *ioaddr = tp->mmio_addr;
1114 int ret = 0;
1115 u32 reg;
1116
1117 reg = RTL_R32(TBICSR);
1118 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1119 (duplex == DUPLEX_FULL)) {
1120 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1121 } else if (autoneg == AUTONEG_ENABLE)
1122 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1123 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001124 netif_warn(tp, link, dev,
1125 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 ret = -EOPNOTSUPP;
1127 }
1128
1129 return ret;
1130}
1131
1132static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001133 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
1135 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001136 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001137 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Hayes Wang716b50a2011-02-22 17:26:18 +08001139 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001142 int auto_nego;
1143
françois romieu4da19632011-01-03 15:07:55 +00001144 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001145 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1146 ADVERTISE_100HALF | ADVERTISE_100FULL);
1147
1148 if (adv & ADVERTISED_10baseT_Half)
1149 auto_nego |= ADVERTISE_10HALF;
1150 if (adv & ADVERTISED_10baseT_Full)
1151 auto_nego |= ADVERTISE_10FULL;
1152 if (adv & ADVERTISED_100baseT_Half)
1153 auto_nego |= ADVERTISE_100HALF;
1154 if (adv & ADVERTISED_100baseT_Full)
1155 auto_nego |= ADVERTISE_100FULL;
1156
françois romieu3577aa12009-05-19 10:46:48 +00001157 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1158
françois romieu4da19632011-01-03 15:07:55 +00001159 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001160 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1161
1162 /* The 8100e/8101e/8102e do Fast Ethernet only. */
1163 if ((tp->mac_version != RTL_GIGA_MAC_VER_07) &&
1164 (tp->mac_version != RTL_GIGA_MAC_VER_08) &&
1165 (tp->mac_version != RTL_GIGA_MAC_VER_09) &&
1166 (tp->mac_version != RTL_GIGA_MAC_VER_10) &&
1167 (tp->mac_version != RTL_GIGA_MAC_VER_13) &&
1168 (tp->mac_version != RTL_GIGA_MAC_VER_14) &&
1169 (tp->mac_version != RTL_GIGA_MAC_VER_15) &&
Hayes Wang5a5e4442011-02-22 17:26:21 +08001170 (tp->mac_version != RTL_GIGA_MAC_VER_16) &&
1171 (tp->mac_version != RTL_GIGA_MAC_VER_29) &&
1172 (tp->mac_version != RTL_GIGA_MAC_VER_30)) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001173 if (adv & ADVERTISED_1000baseT_Half)
1174 giga_ctrl |= ADVERTISE_1000HALF;
1175 if (adv & ADVERTISED_1000baseT_Full)
1176 giga_ctrl |= ADVERTISE_1000FULL;
1177 } else if (adv & (ADVERTISED_1000baseT_Half |
1178 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001179 netif_info(tp, link, dev,
1180 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001181 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
françois romieu3577aa12009-05-19 10:46:48 +00001184 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001185
françois romieu4da19632011-01-03 15:07:55 +00001186 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1187 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001188 } else {
1189 giga_ctrl = 0;
1190
1191 if (speed == SPEED_10)
1192 bmcr = 0;
1193 else if (speed == SPEED_100)
1194 bmcr = BMCR_SPEED100;
1195 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001196 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001197
1198 if (duplex == DUPLEX_FULL)
1199 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001200 }
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 tp->phy_1000_ctrl_reg = giga_ctrl;
1203
françois romieu4da19632011-01-03 15:07:55 +00001204 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001205
1206 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
1207 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
1208 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001209 rtl_writephy(tp, 0x17, 0x2138);
1210 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001211 } else {
françois romieu4da19632011-01-03 15:07:55 +00001212 rtl_writephy(tp, 0x17, 0x2108);
1213 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001214 }
1215 }
1216
Oliver Neukum54405cd2011-01-06 21:55:13 +01001217 rc = 0;
1218out:
1219 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
1222static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001223 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
1225 struct rtl8169_private *tp = netdev_priv(dev);
1226 int ret;
1227
Oliver Neukum54405cd2011-01-06 21:55:13 +01001228 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Francois Romieu64e4bfb2006-08-17 12:43:06 +02001230 if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
1232
1233 return ret;
1234}
1235
1236static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1237{
1238 struct rtl8169_private *tp = netdev_priv(dev);
1239 unsigned long flags;
1240 int ret;
1241
1242 spin_lock_irqsave(&tp->lock, flags);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001243 ret = rtl8169_set_speed(dev,
1244 cmd->autoneg, cmd->speed, cmd->duplex, cmd->advertising);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return ret;
1248}
1249
1250static u32 rtl8169_get_rx_csum(struct net_device *dev)
1251{
1252 struct rtl8169_private *tp = netdev_priv(dev);
1253
1254 return tp->cp_cmd & RxChkSum;
1255}
1256
1257static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
1258{
1259 struct rtl8169_private *tp = netdev_priv(dev);
1260 void __iomem *ioaddr = tp->mmio_addr;
1261 unsigned long flags;
1262
1263 spin_lock_irqsave(&tp->lock, flags);
1264
1265 if (data)
1266 tp->cp_cmd |= RxChkSum;
1267 else
1268 tp->cp_cmd &= ~RxChkSum;
1269
1270 RTL_W16(CPlusCmd, tp->cp_cmd);
1271 RTL_R16(CPlusCmd);
1272
1273 spin_unlock_irqrestore(&tp->lock, flags);
1274
1275 return 0;
1276}
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1279 struct sk_buff *skb)
1280{
Jesse Grosseab6d182010-10-20 13:56:03 +00001281 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1283}
1284
Francois Romieu7a8fc772011-03-01 17:18:33 +01001285#define NETIF_F_HW_VLAN_TX_RX (NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX)
1286
1287static void rtl8169_vlan_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
1289 struct rtl8169_private *tp = netdev_priv(dev);
1290 void __iomem *ioaddr = tp->mmio_addr;
1291 unsigned long flags;
1292
1293 spin_lock_irqsave(&tp->lock, flags);
Francois Romieu7a8fc772011-03-01 17:18:33 +01001294 if (dev->features & NETIF_F_HW_VLAN_RX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 tp->cp_cmd |= RxVlan;
1296 else
1297 tp->cp_cmd &= ~RxVlan;
1298 RTL_W16(CPlusCmd, tp->cp_cmd);
Francois Romieu7a8fc772011-03-01 17:18:33 +01001299 /* PCI commit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 RTL_R16(CPlusCmd);
1301 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu7a8fc772011-03-01 17:18:33 +01001302
1303 dev->vlan_features = dev->features &~ NETIF_F_HW_VLAN_TX_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
Francois Romieu7a8fc772011-03-01 17:18:33 +01001306static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
1308 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Francois Romieu7a8fc772011-03-01 17:18:33 +01001310 if (opts2 & RxVlanTag)
1311 __vlan_hwaccel_put_tag(skb, swab16(opts2 & 0xffff));
Eric Dumazet2edae082010-09-06 18:46:39 +00001312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 desc->opts2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
Francois Romieuccdffb92008-07-26 14:26:06 +02001316static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
1318 struct rtl8169_private *tp = netdev_priv(dev);
1319 void __iomem *ioaddr = tp->mmio_addr;
1320 u32 status;
1321
1322 cmd->supported =
1323 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1324 cmd->port = PORT_FIBRE;
1325 cmd->transceiver = XCVR_INTERNAL;
1326
1327 status = RTL_R32(TBICSR);
1328 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1329 cmd->autoneg = !!(status & TBINwEnable);
1330
1331 cmd->speed = SPEED_1000;
1332 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001333
1334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Francois Romieuccdffb92008-07-26 14:26:06 +02001337static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Francois Romieuccdffb92008-07-26 14:26:06 +02001341 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
1344static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1345{
1346 struct rtl8169_private *tp = netdev_priv(dev);
1347 unsigned long flags;
Francois Romieuccdffb92008-07-26 14:26:06 +02001348 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350 spin_lock_irqsave(&tp->lock, flags);
1351
Francois Romieuccdffb92008-07-26 14:26:06 +02001352 rc = tp->get_settings(dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieuccdffb92008-07-26 14:26:06 +02001355 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
1358static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1359 void *p)
1360{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001361 struct rtl8169_private *tp = netdev_priv(dev);
1362 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Francois Romieu5b0384f2006-08-16 16:00:01 +02001364 if (regs->len > R8169_REGS_SIZE)
1365 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Francois Romieu5b0384f2006-08-16 16:00:01 +02001367 spin_lock_irqsave(&tp->lock, flags);
1368 memcpy_fromio(p, tp->mmio_addr, regs->len);
1369 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001372static u32 rtl8169_get_msglevel(struct net_device *dev)
1373{
1374 struct rtl8169_private *tp = netdev_priv(dev);
1375
1376 return tp->msg_enable;
1377}
1378
1379static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1380{
1381 struct rtl8169_private *tp = netdev_priv(dev);
1382
1383 tp->msg_enable = value;
1384}
1385
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001386static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1387 "tx_packets",
1388 "rx_packets",
1389 "tx_errors",
1390 "rx_errors",
1391 "rx_missed",
1392 "align_errors",
1393 "tx_single_collisions",
1394 "tx_multi_collisions",
1395 "unicast",
1396 "broadcast",
1397 "multicast",
1398 "tx_aborted",
1399 "tx_underrun",
1400};
1401
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001402static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001403{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001404 switch (sset) {
1405 case ETH_SS_STATS:
1406 return ARRAY_SIZE(rtl8169_gstrings);
1407 default:
1408 return -EOPNOTSUPP;
1409 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001410}
1411
Ivan Vecera355423d2009-02-06 21:49:57 -08001412static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001413{
1414 struct rtl8169_private *tp = netdev_priv(dev);
1415 void __iomem *ioaddr = tp->mmio_addr;
1416 struct rtl8169_counters *counters;
1417 dma_addr_t paddr;
1418 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001419 int wait = 1000;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001420 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001421
Ivan Vecera355423d2009-02-06 21:49:57 -08001422 /*
1423 * Some chips are unable to dump tally counters when the receiver
1424 * is disabled.
1425 */
1426 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1427 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001428
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001429 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001430 if (!counters)
1431 return;
1432
1433 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001434 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001435 RTL_W32(CounterAddrLow, cmd);
1436 RTL_W32(CounterAddrLow, cmd | CounterDump);
1437
Ivan Vecera355423d2009-02-06 21:49:57 -08001438 while (wait--) {
1439 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
1440 /* copy updated counters */
1441 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001442 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001443 }
1444 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001445 }
1446
1447 RTL_W32(CounterAddrLow, 0);
1448 RTL_W32(CounterAddrHigh, 0);
1449
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001450 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001451}
1452
Ivan Vecera355423d2009-02-06 21:49:57 -08001453static void rtl8169_get_ethtool_stats(struct net_device *dev,
1454 struct ethtool_stats *stats, u64 *data)
1455{
1456 struct rtl8169_private *tp = netdev_priv(dev);
1457
1458 ASSERT_RTNL();
1459
1460 rtl8169_update_counters(dev);
1461
1462 data[0] = le64_to_cpu(tp->counters.tx_packets);
1463 data[1] = le64_to_cpu(tp->counters.rx_packets);
1464 data[2] = le64_to_cpu(tp->counters.tx_errors);
1465 data[3] = le32_to_cpu(tp->counters.rx_errors);
1466 data[4] = le16_to_cpu(tp->counters.rx_missed);
1467 data[5] = le16_to_cpu(tp->counters.align_errors);
1468 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1469 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1470 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1471 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1472 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1473 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1474 data[12] = le16_to_cpu(tp->counters.tx_underun);
1475}
1476
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001477static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1478{
1479 switch(stringset) {
1480 case ETH_SS_STATS:
1481 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1482 break;
1483 }
1484}
1485
Francois Romieu7a8fc772011-03-01 17:18:33 +01001486static int rtl8169_set_flags(struct net_device *dev, u32 data)
1487{
1488 struct rtl8169_private *tp = netdev_priv(dev);
1489 unsigned long old_feat = dev->features;
1490 int rc;
1491
1492 if ((tp->mac_version == RTL_GIGA_MAC_VER_05) &&
1493 !(data & ETH_FLAG_RXVLAN)) {
1494 netif_info(tp, drv, dev, "8110SCd requires hardware Rx VLAN\n");
1495 return -EINVAL;
1496 }
1497
1498 rc = ethtool_op_set_flags(dev, data, ETH_FLAG_TXVLAN | ETH_FLAG_RXVLAN);
1499 if (rc)
1500 return rc;
1501
1502 if ((old_feat ^ dev->features) & NETIF_F_HW_VLAN_RX)
1503 rtl8169_vlan_mode(dev);
1504
1505 return 0;
1506}
1507
Jeff Garzik7282d492006-09-13 14:30:00 -04001508static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 .get_drvinfo = rtl8169_get_drvinfo,
1510 .get_regs_len = rtl8169_get_regs_len,
1511 .get_link = ethtool_op_get_link,
1512 .get_settings = rtl8169_get_settings,
1513 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001514 .get_msglevel = rtl8169_get_msglevel,
1515 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 .get_rx_csum = rtl8169_get_rx_csum,
1517 .set_rx_csum = rtl8169_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 .set_tx_csum = ethtool_op_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 .set_tso = ethtool_op_set_tso,
1521 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001522 .get_wol = rtl8169_get_wol,
1523 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001524 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001525 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001526 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Francois Romieu7a8fc772011-03-01 17:18:33 +01001527 .set_flags = rtl8169_set_flags,
1528 .get_flags = ethtool_op_get_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529};
1530
Francois Romieu07d3f512007-02-21 22:40:46 +01001531static void rtl8169_get_mac_version(struct rtl8169_private *tp,
1532 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Francois Romieu0e485152007-02-20 00:00:26 +01001534 /*
1535 * The driver currently handles the 8168Bf and the 8168Be identically
1536 * but they can be identified more specifically through the test below
1537 * if needed:
1538 *
1539 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001540 *
1541 * Same thing for the 8101Eb and the 8101Ec:
1542 *
1543 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001544 */
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001545 static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001547 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 int mac_version;
1549 } mac_info[] = {
Francois Romieu5b538df2008-07-20 16:22:45 +02001550 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001551 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1552 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00001553 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001554
françois romieue6de30d2011-01-03 15:08:37 +00001555 /* 8168DP family. */
1556 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1557 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
1558
Francois Romieuef808d52008-06-29 13:10:54 +02001559 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001560 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001561 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001562 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001563 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001564 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1565 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001566 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001567 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001568 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001569
1570 /* 8168B family. */
1571 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1572 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1573 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1574 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1575
1576 /* 8101 family. */
Hayes Wang5a5e4442011-02-22 17:26:21 +08001577 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
1578 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
1579 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001580 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1581 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1582 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1583 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1584 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1585 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001586 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001587 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001588 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001589 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1590 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001591 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1592 /* FIXME: where did these entries come from ? -- FR */
1593 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1594 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1595
1596 /* 8110 family. */
1597 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1598 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1599 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1600 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1601 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1602 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1603
Jean Delvaref21b75e2009-05-26 20:54:48 -07001604 /* Catch-all */
1605 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }, *p = mac_info;
1607 u32 reg;
1608
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001609 reg = RTL_R32(TxConfig);
1610 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 p++;
1612 tp->mac_version = p->mac_version;
1613}
1614
1615static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1616{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001617 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
1619
Francois Romieu867763c2007-08-17 18:21:58 +02001620struct phy_reg {
1621 u16 reg;
1622 u16 val;
1623};
1624
françois romieu4da19632011-01-03 15:07:55 +00001625static void rtl_writephy_batch(struct rtl8169_private *tp,
1626 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001627{
1628 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001629 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001630 regs++;
1631 }
1632}
1633
françois romieubca03d52011-01-03 15:07:31 +00001634#define PHY_READ 0x00000000
1635#define PHY_DATA_OR 0x10000000
1636#define PHY_DATA_AND 0x20000000
1637#define PHY_BJMPN 0x30000000
1638#define PHY_READ_EFUSE 0x40000000
1639#define PHY_READ_MAC_BYTE 0x50000000
1640#define PHY_WRITE_MAC_BYTE 0x60000000
1641#define PHY_CLEAR_READCOUNT 0x70000000
1642#define PHY_WRITE 0x80000000
1643#define PHY_READCOUNT_EQ_SKIP 0x90000000
1644#define PHY_COMP_EQ_SKIPN 0xa0000000
1645#define PHY_COMP_NEQ_SKIPN 0xb0000000
1646#define PHY_WRITE_PREVIOUS 0xc0000000
1647#define PHY_SKIPN 0xd0000000
1648#define PHY_DELAY_MS 0xe0000000
1649#define PHY_WRITE_ERI_WORD 0xf0000000
1650
1651static void
1652rtl_phy_write_fw(struct rtl8169_private *tp, const struct firmware *fw)
1653{
françois romieubca03d52011-01-03 15:07:31 +00001654 __le32 *phytable = (__le32 *)fw->data;
1655 struct net_device *dev = tp->dev;
hayeswang42b82dc2011-01-10 02:07:25 +00001656 size_t index, fw_size = fw->size / sizeof(*phytable);
1657 u32 predata, count;
françois romieubca03d52011-01-03 15:07:31 +00001658
1659 if (fw->size % sizeof(*phytable)) {
1660 netif_err(tp, probe, dev, "odd sized firmware %zd\n", fw->size);
1661 return;
1662 }
1663
hayeswang42b82dc2011-01-10 02:07:25 +00001664 for (index = 0; index < fw_size; index++) {
1665 u32 action = le32_to_cpu(phytable[index]);
1666 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00001667
hayeswang42b82dc2011-01-10 02:07:25 +00001668 switch(action & 0xf0000000) {
1669 case PHY_READ:
1670 case PHY_DATA_OR:
1671 case PHY_DATA_AND:
1672 case PHY_READ_EFUSE:
1673 case PHY_CLEAR_READCOUNT:
1674 case PHY_WRITE:
1675 case PHY_WRITE_PREVIOUS:
1676 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00001677 break;
1678
hayeswang42b82dc2011-01-10 02:07:25 +00001679 case PHY_BJMPN:
1680 if (regno > index) {
1681 netif_err(tp, probe, tp->dev,
1682 "Out of range of firmware\n");
1683 return;
1684 }
1685 break;
1686 case PHY_READCOUNT_EQ_SKIP:
1687 if (index + 2 >= fw_size) {
1688 netif_err(tp, probe, tp->dev,
1689 "Out of range of firmware\n");
1690 return;
1691 }
1692 break;
1693 case PHY_COMP_EQ_SKIPN:
1694 case PHY_COMP_NEQ_SKIPN:
1695 case PHY_SKIPN:
1696 if (index + 1 + regno >= fw_size) {
1697 netif_err(tp, probe, tp->dev,
1698 "Out of range of firmware\n");
1699 return;
1700 }
1701 break;
1702
1703 case PHY_READ_MAC_BYTE:
1704 case PHY_WRITE_MAC_BYTE:
1705 case PHY_WRITE_ERI_WORD:
1706 default:
1707 netif_err(tp, probe, tp->dev,
1708 "Invalid action 0x%08x\n", action);
françois romieubca03d52011-01-03 15:07:31 +00001709 return;
1710 }
1711 }
1712
hayeswang42b82dc2011-01-10 02:07:25 +00001713 predata = 0;
1714 count = 0;
1715
1716 for (index = 0; index < fw_size; ) {
1717 u32 action = le32_to_cpu(phytable[index]);
françois romieubca03d52011-01-03 15:07:31 +00001718 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00001719 u32 regno = (action & 0x0fff0000) >> 16;
1720
1721 if (!action)
1722 break;
françois romieubca03d52011-01-03 15:07:31 +00001723
1724 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00001725 case PHY_READ:
1726 predata = rtl_readphy(tp, regno);
1727 count++;
1728 index++;
françois romieubca03d52011-01-03 15:07:31 +00001729 break;
hayeswang42b82dc2011-01-10 02:07:25 +00001730 case PHY_DATA_OR:
1731 predata |= data;
1732 index++;
1733 break;
1734 case PHY_DATA_AND:
1735 predata &= data;
1736 index++;
1737 break;
1738 case PHY_BJMPN:
1739 index -= regno;
1740 break;
1741 case PHY_READ_EFUSE:
1742 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
1743 index++;
1744 break;
1745 case PHY_CLEAR_READCOUNT:
1746 count = 0;
1747 index++;
1748 break;
1749 case PHY_WRITE:
1750 rtl_writephy(tp, regno, data);
1751 index++;
1752 break;
1753 case PHY_READCOUNT_EQ_SKIP:
1754 if (count == data)
1755 index += 2;
1756 else
1757 index += 1;
1758 break;
1759 case PHY_COMP_EQ_SKIPN:
1760 if (predata == data)
1761 index += regno;
1762 index++;
1763 break;
1764 case PHY_COMP_NEQ_SKIPN:
1765 if (predata != data)
1766 index += regno;
1767 index++;
1768 break;
1769 case PHY_WRITE_PREVIOUS:
1770 rtl_writephy(tp, regno, predata);
1771 index++;
1772 break;
1773 case PHY_SKIPN:
1774 index += regno + 1;
1775 break;
1776 case PHY_DELAY_MS:
1777 mdelay(data);
1778 index++;
1779 break;
1780
1781 case PHY_READ_MAC_BYTE:
1782 case PHY_WRITE_MAC_BYTE:
1783 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00001784 default:
1785 BUG();
1786 }
1787 }
1788}
1789
françois romieuf1e02ed2011-01-13 13:07:53 +00001790static void rtl_release_firmware(struct rtl8169_private *tp)
1791{
1792 release_firmware(tp->fw);
1793 tp->fw = NULL;
1794}
1795
1796static int rtl_apply_firmware(struct rtl8169_private *tp, const char *fw_name)
1797{
1798 const struct firmware **fw = &tp->fw;
1799 int rc = !*fw;
1800
1801 if (rc) {
1802 rc = request_firmware(fw, fw_name, &tp->pci_dev->dev);
1803 if (rc < 0)
1804 goto out;
1805 }
1806
1807 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
1808 rtl_phy_write_fw(tp, *fw);
1809out:
1810 return rc;
1811}
1812
françois romieu4da19632011-01-03 15:07:55 +00001813static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001815 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00001816 { 0x1f, 0x0001 },
1817 { 0x06, 0x006e },
1818 { 0x08, 0x0708 },
1819 { 0x15, 0x4000 },
1820 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
françois romieu0b9b5712009-08-10 19:44:56 +00001822 { 0x1f, 0x0001 },
1823 { 0x03, 0x00a1 },
1824 { 0x02, 0x0008 },
1825 { 0x01, 0x0120 },
1826 { 0x00, 0x1000 },
1827 { 0x04, 0x0800 },
1828 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
françois romieu0b9b5712009-08-10 19:44:56 +00001830 { 0x03, 0xff41 },
1831 { 0x02, 0xdf60 },
1832 { 0x01, 0x0140 },
1833 { 0x00, 0x0077 },
1834 { 0x04, 0x7800 },
1835 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
françois romieu0b9b5712009-08-10 19:44:56 +00001837 { 0x03, 0x802f },
1838 { 0x02, 0x4f02 },
1839 { 0x01, 0x0409 },
1840 { 0x00, 0xf0f9 },
1841 { 0x04, 0x9800 },
1842 { 0x04, 0x9000 },
1843
1844 { 0x03, 0xdf01 },
1845 { 0x02, 0xdf20 },
1846 { 0x01, 0xff95 },
1847 { 0x00, 0xba00 },
1848 { 0x04, 0xa800 },
1849 { 0x04, 0xa000 },
1850
1851 { 0x03, 0xff41 },
1852 { 0x02, 0xdf20 },
1853 { 0x01, 0x0140 },
1854 { 0x00, 0x00bb },
1855 { 0x04, 0xb800 },
1856 { 0x04, 0xb000 },
1857
1858 { 0x03, 0xdf41 },
1859 { 0x02, 0xdc60 },
1860 { 0x01, 0x6340 },
1861 { 0x00, 0x007d },
1862 { 0x04, 0xd800 },
1863 { 0x04, 0xd000 },
1864
1865 { 0x03, 0xdf01 },
1866 { 0x02, 0xdf20 },
1867 { 0x01, 0x100a },
1868 { 0x00, 0xa0ff },
1869 { 0x04, 0xf800 },
1870 { 0x04, 0xf000 },
1871
1872 { 0x1f, 0x0000 },
1873 { 0x0b, 0x0000 },
1874 { 0x00, 0x9200 }
1875 };
1876
françois romieu4da19632011-01-03 15:07:55 +00001877 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878}
1879
françois romieu4da19632011-01-03 15:07:55 +00001880static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02001881{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001882 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02001883 { 0x1f, 0x0002 },
1884 { 0x01, 0x90d0 },
1885 { 0x1f, 0x0000 }
1886 };
1887
françois romieu4da19632011-01-03 15:07:55 +00001888 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02001889}
1890
françois romieu4da19632011-01-03 15:07:55 +00001891static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001892{
1893 struct pci_dev *pdev = tp->pci_dev;
1894 u16 vendor_id, device_id;
1895
1896 pci_read_config_word(pdev, PCI_SUBSYSTEM_VENDOR_ID, &vendor_id);
1897 pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &device_id);
1898
1899 if ((vendor_id != PCI_VENDOR_ID_GIGABYTE) || (device_id != 0xe000))
1900 return;
1901
françois romieu4da19632011-01-03 15:07:55 +00001902 rtl_writephy(tp, 0x1f, 0x0001);
1903 rtl_writephy(tp, 0x10, 0xf01b);
1904 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00001905}
1906
françois romieu4da19632011-01-03 15:07:55 +00001907static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001908{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001909 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00001910 { 0x1f, 0x0001 },
1911 { 0x04, 0x0000 },
1912 { 0x03, 0x00a1 },
1913 { 0x02, 0x0008 },
1914 { 0x01, 0x0120 },
1915 { 0x00, 0x1000 },
1916 { 0x04, 0x0800 },
1917 { 0x04, 0x9000 },
1918 { 0x03, 0x802f },
1919 { 0x02, 0x4f02 },
1920 { 0x01, 0x0409 },
1921 { 0x00, 0xf099 },
1922 { 0x04, 0x9800 },
1923 { 0x04, 0xa000 },
1924 { 0x03, 0xdf01 },
1925 { 0x02, 0xdf20 },
1926 { 0x01, 0xff95 },
1927 { 0x00, 0xba00 },
1928 { 0x04, 0xa800 },
1929 { 0x04, 0xf000 },
1930 { 0x03, 0xdf01 },
1931 { 0x02, 0xdf20 },
1932 { 0x01, 0x101a },
1933 { 0x00, 0xa0ff },
1934 { 0x04, 0xf800 },
1935 { 0x04, 0x0000 },
1936 { 0x1f, 0x0000 },
1937
1938 { 0x1f, 0x0001 },
1939 { 0x10, 0xf41b },
1940 { 0x14, 0xfb54 },
1941 { 0x18, 0xf5c7 },
1942 { 0x1f, 0x0000 },
1943
1944 { 0x1f, 0x0001 },
1945 { 0x17, 0x0cc0 },
1946 { 0x1f, 0x0000 }
1947 };
1948
françois romieu4da19632011-01-03 15:07:55 +00001949 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00001950
françois romieu4da19632011-01-03 15:07:55 +00001951 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00001952}
1953
françois romieu4da19632011-01-03 15:07:55 +00001954static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00001955{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001956 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00001957 { 0x1f, 0x0001 },
1958 { 0x04, 0x0000 },
1959 { 0x03, 0x00a1 },
1960 { 0x02, 0x0008 },
1961 { 0x01, 0x0120 },
1962 { 0x00, 0x1000 },
1963 { 0x04, 0x0800 },
1964 { 0x04, 0x9000 },
1965 { 0x03, 0x802f },
1966 { 0x02, 0x4f02 },
1967 { 0x01, 0x0409 },
1968 { 0x00, 0xf099 },
1969 { 0x04, 0x9800 },
1970 { 0x04, 0xa000 },
1971 { 0x03, 0xdf01 },
1972 { 0x02, 0xdf20 },
1973 { 0x01, 0xff95 },
1974 { 0x00, 0xba00 },
1975 { 0x04, 0xa800 },
1976 { 0x04, 0xf000 },
1977 { 0x03, 0xdf01 },
1978 { 0x02, 0xdf20 },
1979 { 0x01, 0x101a },
1980 { 0x00, 0xa0ff },
1981 { 0x04, 0xf800 },
1982 { 0x04, 0x0000 },
1983 { 0x1f, 0x0000 },
1984
1985 { 0x1f, 0x0001 },
1986 { 0x0b, 0x8480 },
1987 { 0x1f, 0x0000 },
1988
1989 { 0x1f, 0x0001 },
1990 { 0x18, 0x67c7 },
1991 { 0x04, 0x2000 },
1992 { 0x03, 0x002f },
1993 { 0x02, 0x4360 },
1994 { 0x01, 0x0109 },
1995 { 0x00, 0x3022 },
1996 { 0x04, 0x2800 },
1997 { 0x1f, 0x0000 },
1998
1999 { 0x1f, 0x0001 },
2000 { 0x17, 0x0cc0 },
2001 { 0x1f, 0x0000 }
2002 };
2003
françois romieu4da19632011-01-03 15:07:55 +00002004 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002005}
2006
françois romieu4da19632011-01-03 15:07:55 +00002007static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002008{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002009 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002010 { 0x10, 0xf41b },
2011 { 0x1f, 0x0000 }
2012 };
2013
françois romieu4da19632011-01-03 15:07:55 +00002014 rtl_writephy(tp, 0x1f, 0x0001);
2015 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002016
françois romieu4da19632011-01-03 15:07:55 +00002017 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002018}
2019
françois romieu4da19632011-01-03 15:07:55 +00002020static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002021{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002022 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002023 { 0x1f, 0x0001 },
2024 { 0x10, 0xf41b },
2025 { 0x1f, 0x0000 }
2026 };
2027
françois romieu4da19632011-01-03 15:07:55 +00002028 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002029}
2030
françois romieu4da19632011-01-03 15:07:55 +00002031static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002032{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002033 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002034 { 0x1f, 0x0000 },
2035 { 0x1d, 0x0f00 },
2036 { 0x1f, 0x0002 },
2037 { 0x0c, 0x1ec8 },
2038 { 0x1f, 0x0000 }
2039 };
2040
françois romieu4da19632011-01-03 15:07:55 +00002041 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002042}
2043
françois romieu4da19632011-01-03 15:07:55 +00002044static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002045{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002046 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002047 { 0x1f, 0x0001 },
2048 { 0x1d, 0x3d98 },
2049 { 0x1f, 0x0000 }
2050 };
2051
françois romieu4da19632011-01-03 15:07:55 +00002052 rtl_writephy(tp, 0x1f, 0x0000);
2053 rtl_patchphy(tp, 0x14, 1 << 5);
2054 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002055
françois romieu4da19632011-01-03 15:07:55 +00002056 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002057}
2058
françois romieu4da19632011-01-03 15:07:55 +00002059static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002060{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002061 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002062 { 0x1f, 0x0001 },
2063 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002064 { 0x1f, 0x0002 },
2065 { 0x00, 0x88d4 },
2066 { 0x01, 0x82b1 },
2067 { 0x03, 0x7002 },
2068 { 0x08, 0x9e30 },
2069 { 0x09, 0x01f0 },
2070 { 0x0a, 0x5500 },
2071 { 0x0c, 0x00c8 },
2072 { 0x1f, 0x0003 },
2073 { 0x12, 0xc096 },
2074 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002075 { 0x1f, 0x0000 },
2076 { 0x1f, 0x0000 },
2077 { 0x09, 0x2000 },
2078 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002079 };
2080
françois romieu4da19632011-01-03 15:07:55 +00002081 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002082
françois romieu4da19632011-01-03 15:07:55 +00002083 rtl_patchphy(tp, 0x14, 1 << 5);
2084 rtl_patchphy(tp, 0x0d, 1 << 5);
2085 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002086}
2087
françois romieu4da19632011-01-03 15:07:55 +00002088static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002089{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002090 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002091 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002092 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002093 { 0x03, 0x802f },
2094 { 0x02, 0x4f02 },
2095 { 0x01, 0x0409 },
2096 { 0x00, 0xf099 },
2097 { 0x04, 0x9800 },
2098 { 0x04, 0x9000 },
2099 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002100 { 0x1f, 0x0002 },
2101 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002102 { 0x06, 0x0761 },
2103 { 0x1f, 0x0003 },
2104 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002105 { 0x1f, 0x0000 }
2106 };
2107
françois romieu4da19632011-01-03 15:07:55 +00002108 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002109
françois romieu4da19632011-01-03 15:07:55 +00002110 rtl_patchphy(tp, 0x16, 1 << 0);
2111 rtl_patchphy(tp, 0x14, 1 << 5);
2112 rtl_patchphy(tp, 0x0d, 1 << 5);
2113 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002114}
2115
françois romieu4da19632011-01-03 15:07:55 +00002116static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002117{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002118 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002119 { 0x1f, 0x0001 },
2120 { 0x12, 0x2300 },
2121 { 0x1d, 0x3d98 },
2122 { 0x1f, 0x0002 },
2123 { 0x0c, 0x7eb8 },
2124 { 0x06, 0x5461 },
2125 { 0x1f, 0x0003 },
2126 { 0x16, 0x0f0a },
2127 { 0x1f, 0x0000 }
2128 };
2129
françois romieu4da19632011-01-03 15:07:55 +00002130 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002131
françois romieu4da19632011-01-03 15:07:55 +00002132 rtl_patchphy(tp, 0x16, 1 << 0);
2133 rtl_patchphy(tp, 0x14, 1 << 5);
2134 rtl_patchphy(tp, 0x0d, 1 << 5);
2135 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002136}
2137
françois romieu4da19632011-01-03 15:07:55 +00002138static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002139{
françois romieu4da19632011-01-03 15:07:55 +00002140 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002141}
2142
françois romieubca03d52011-01-03 15:07:31 +00002143static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002144{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002145 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002146 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002147 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002148 { 0x06, 0x4064 },
2149 { 0x07, 0x2863 },
2150 { 0x08, 0x059c },
2151 { 0x09, 0x26b4 },
2152 { 0x0a, 0x6a19 },
2153 { 0x0b, 0xdcc8 },
2154 { 0x10, 0xf06d },
2155 { 0x14, 0x7f68 },
2156 { 0x18, 0x7fd9 },
2157 { 0x1c, 0xf0ff },
2158 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002159 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002160 { 0x12, 0xf49f },
2161 { 0x13, 0x070b },
2162 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002163 { 0x14, 0x94c0 },
2164
2165 /*
2166 * Tx Error Issue
2167 * enhance line driver power
2168 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002169 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002170 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002171 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002172 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002173 { 0x06, 0x5561 },
2174
2175 /*
2176 * Can not link to 1Gbps with bad cable
2177 * Decrease SNR threshold form 21.07dB to 19.04dB
2178 */
2179 { 0x1f, 0x0001 },
2180 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002181
2182 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002183 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002184 };
françois romieubca03d52011-01-03 15:07:31 +00002185 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu5b538df2008-07-20 16:22:45 +02002186
françois romieu4da19632011-01-03 15:07:55 +00002187 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002188
françois romieubca03d52011-01-03 15:07:31 +00002189 /*
2190 * Rx Error Issue
2191 * Fine Tune Switching regulator parameter
2192 */
françois romieu4da19632011-01-03 15:07:55 +00002193 rtl_writephy(tp, 0x1f, 0x0002);
2194 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2195 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002196
françois romieudaf9df62009-10-07 12:44:20 +00002197 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002198 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002199 { 0x1f, 0x0002 },
2200 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002201 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002202 { 0x05, 0x8330 },
2203 { 0x06, 0x669a },
2204 { 0x1f, 0x0002 }
2205 };
2206 int val;
2207
françois romieu4da19632011-01-03 15:07:55 +00002208 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002209
françois romieu4da19632011-01-03 15:07:55 +00002210 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002211
2212 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002213 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002214 0x0065, 0x0066, 0x0067, 0x0068,
2215 0x0069, 0x006a, 0x006b, 0x006c
2216 };
2217 int i;
2218
françois romieu4da19632011-01-03 15:07:55 +00002219 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002220
2221 val &= 0xff00;
2222 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002223 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002224 }
2225 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002226 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002227 { 0x1f, 0x0002 },
2228 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002229 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002230 { 0x05, 0x8330 },
2231 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002232 };
2233
françois romieu4da19632011-01-03 15:07:55 +00002234 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002235 }
2236
françois romieubca03d52011-01-03 15:07:31 +00002237 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002238 rtl_writephy(tp, 0x1f, 0x0002);
2239 rtl_patchphy(tp, 0x0d, 0x0300);
2240 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002241
françois romieubca03d52011-01-03 15:07:31 +00002242 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002243 rtl_writephy(tp, 0x1f, 0x0002);
2244 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2245 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002246
françois romieu4da19632011-01-03 15:07:55 +00002247 rtl_writephy(tp, 0x1f, 0x0005);
2248 rtl_writephy(tp, 0x05, 0x001b);
françois romieuf1e02ed2011-01-13 13:07:53 +00002249 if ((rtl_readphy(tp, 0x06) != 0xbf00) ||
2250 (rtl_apply_firmware(tp, FIRMWARE_8168D_1) < 0)) {
françois romieubca03d52011-01-03 15:07:31 +00002251 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2252 }
2253
françois romieu4da19632011-01-03 15:07:55 +00002254 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002255}
2256
françois romieubca03d52011-01-03 15:07:31 +00002257static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002258{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002259 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002260 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002261 { 0x1f, 0x0001 },
2262 { 0x06, 0x4064 },
2263 { 0x07, 0x2863 },
2264 { 0x08, 0x059c },
2265 { 0x09, 0x26b4 },
2266 { 0x0a, 0x6a19 },
2267 { 0x0b, 0xdcc8 },
2268 { 0x10, 0xf06d },
2269 { 0x14, 0x7f68 },
2270 { 0x18, 0x7fd9 },
2271 { 0x1c, 0xf0ff },
2272 { 0x1d, 0x3d9c },
2273 { 0x1f, 0x0003 },
2274 { 0x12, 0xf49f },
2275 { 0x13, 0x070b },
2276 { 0x1a, 0x05ad },
2277 { 0x14, 0x94c0 },
2278
françois romieubca03d52011-01-03 15:07:31 +00002279 /*
2280 * Tx Error Issue
2281 * enhance line driver power
2282 */
françois romieudaf9df62009-10-07 12:44:20 +00002283 { 0x1f, 0x0002 },
2284 { 0x06, 0x5561 },
2285 { 0x1f, 0x0005 },
2286 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002287 { 0x06, 0x5561 },
2288
2289 /*
2290 * Can not link to 1Gbps with bad cable
2291 * Decrease SNR threshold form 21.07dB to 19.04dB
2292 */
2293 { 0x1f, 0x0001 },
2294 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002295
2296 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002297 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002298 };
françois romieubca03d52011-01-03 15:07:31 +00002299 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00002300
françois romieu4da19632011-01-03 15:07:55 +00002301 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002302
2303 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002304 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002305 { 0x1f, 0x0002 },
2306 { 0x05, 0x669a },
2307 { 0x1f, 0x0005 },
2308 { 0x05, 0x8330 },
2309 { 0x06, 0x669a },
2310
2311 { 0x1f, 0x0002 }
2312 };
2313 int val;
2314
françois romieu4da19632011-01-03 15:07:55 +00002315 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002316
françois romieu4da19632011-01-03 15:07:55 +00002317 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002318 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002319 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002320 0x0065, 0x0066, 0x0067, 0x0068,
2321 0x0069, 0x006a, 0x006b, 0x006c
2322 };
2323 int i;
2324
françois romieu4da19632011-01-03 15:07:55 +00002325 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002326
2327 val &= 0xff00;
2328 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002329 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002330 }
2331 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002332 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002333 { 0x1f, 0x0002 },
2334 { 0x05, 0x2642 },
2335 { 0x1f, 0x0005 },
2336 { 0x05, 0x8330 },
2337 { 0x06, 0x2642 }
2338 };
2339
françois romieu4da19632011-01-03 15:07:55 +00002340 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002341 }
2342
françois romieubca03d52011-01-03 15:07:31 +00002343 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002344 rtl_writephy(tp, 0x1f, 0x0002);
2345 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2346 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002347
françois romieubca03d52011-01-03 15:07:31 +00002348 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002349 rtl_writephy(tp, 0x1f, 0x0002);
2350 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002351
françois romieu4da19632011-01-03 15:07:55 +00002352 rtl_writephy(tp, 0x1f, 0x0005);
2353 rtl_writephy(tp, 0x05, 0x001b);
françois romieuf1e02ed2011-01-13 13:07:53 +00002354 if ((rtl_readphy(tp, 0x06) != 0xb300) ||
2355 (rtl_apply_firmware(tp, FIRMWARE_8168D_2) < 0)) {
françois romieubca03d52011-01-03 15:07:31 +00002356 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2357 }
2358
françois romieu4da19632011-01-03 15:07:55 +00002359 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002360}
2361
françois romieu4da19632011-01-03 15:07:55 +00002362static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002363{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002364 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002365 { 0x1f, 0x0002 },
2366 { 0x10, 0x0008 },
2367 { 0x0d, 0x006c },
2368
2369 { 0x1f, 0x0000 },
2370 { 0x0d, 0xf880 },
2371
2372 { 0x1f, 0x0001 },
2373 { 0x17, 0x0cc0 },
2374
2375 { 0x1f, 0x0001 },
2376 { 0x0b, 0xa4d8 },
2377 { 0x09, 0x281c },
2378 { 0x07, 0x2883 },
2379 { 0x0a, 0x6b35 },
2380 { 0x1d, 0x3da4 },
2381 { 0x1c, 0xeffd },
2382 { 0x14, 0x7f52 },
2383 { 0x18, 0x7fc6 },
2384 { 0x08, 0x0601 },
2385 { 0x06, 0x4063 },
2386 { 0x10, 0xf074 },
2387 { 0x1f, 0x0003 },
2388 { 0x13, 0x0789 },
2389 { 0x12, 0xf4bd },
2390 { 0x1a, 0x04fd },
2391 { 0x14, 0x84b0 },
2392 { 0x1f, 0x0000 },
2393 { 0x00, 0x9200 },
2394
2395 { 0x1f, 0x0005 },
2396 { 0x01, 0x0340 },
2397 { 0x1f, 0x0001 },
2398 { 0x04, 0x4000 },
2399 { 0x03, 0x1d21 },
2400 { 0x02, 0x0c32 },
2401 { 0x01, 0x0200 },
2402 { 0x00, 0x5554 },
2403 { 0x04, 0x4800 },
2404 { 0x04, 0x4000 },
2405 { 0x04, 0xf000 },
2406 { 0x03, 0xdf01 },
2407 { 0x02, 0xdf20 },
2408 { 0x01, 0x101a },
2409 { 0x00, 0xa0ff },
2410 { 0x04, 0xf800 },
2411 { 0x04, 0xf000 },
2412 { 0x1f, 0x0000 },
2413
2414 { 0x1f, 0x0007 },
2415 { 0x1e, 0x0023 },
2416 { 0x16, 0x0000 },
2417 { 0x1f, 0x0000 }
2418 };
2419
françois romieu4da19632011-01-03 15:07:55 +00002420 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002421}
2422
françois romieue6de30d2011-01-03 15:08:37 +00002423static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2424{
2425 static const struct phy_reg phy_reg_init[] = {
2426 { 0x1f, 0x0001 },
2427 { 0x17, 0x0cc0 },
2428
2429 { 0x1f, 0x0007 },
2430 { 0x1e, 0x002d },
2431 { 0x18, 0x0040 },
2432 { 0x1f, 0x0000 }
2433 };
2434
2435 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2436 rtl_patchphy(tp, 0x0d, 1 << 5);
2437}
2438
françois romieu4da19632011-01-03 15:07:55 +00002439static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02002440{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002441 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02002442 { 0x1f, 0x0003 },
2443 { 0x08, 0x441d },
2444 { 0x01, 0x9100 },
2445 { 0x1f, 0x0000 }
2446 };
2447
françois romieu4da19632011-01-03 15:07:55 +00002448 rtl_writephy(tp, 0x1f, 0x0000);
2449 rtl_patchphy(tp, 0x11, 1 << 12);
2450 rtl_patchphy(tp, 0x19, 1 << 13);
2451 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002452
françois romieu4da19632011-01-03 15:07:55 +00002453 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02002454}
2455
Hayes Wang5a5e4442011-02-22 17:26:21 +08002456static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
2457{
2458 static const struct phy_reg phy_reg_init[] = {
2459 { 0x1f, 0x0005 },
2460 { 0x1a, 0x0000 },
2461 { 0x1f, 0x0000 },
2462
2463 { 0x1f, 0x0004 },
2464 { 0x1c, 0x0000 },
2465 { 0x1f, 0x0000 },
2466
2467 { 0x1f, 0x0001 },
2468 { 0x15, 0x7701 },
2469 { 0x1f, 0x0000 }
2470 };
2471
2472 /* Disable ALDPS before ram code */
2473 rtl_writephy(tp, 0x1f, 0x0000);
2474 rtl_writephy(tp, 0x18, 0x0310);
2475 msleep(100);
2476
2477 if (rtl_apply_firmware(tp, FIRMWARE_8105E_1) < 0)
2478 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2479
2480 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2481}
2482
Francois Romieu5615d9f2007-08-17 17:50:46 +02002483static void rtl_hw_phy_config(struct net_device *dev)
2484{
2485 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002486
2487 rtl8169_print_mac_version(tp);
2488
2489 switch (tp->mac_version) {
2490 case RTL_GIGA_MAC_VER_01:
2491 break;
2492 case RTL_GIGA_MAC_VER_02:
2493 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00002494 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002495 break;
2496 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00002497 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002498 break;
françois romieu2e9558562009-08-10 19:44:19 +00002499 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00002500 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002501 break;
françois romieu8c7006a2009-08-10 19:43:29 +00002502 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00002503 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00002504 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02002505 case RTL_GIGA_MAC_VER_07:
2506 case RTL_GIGA_MAC_VER_08:
2507 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00002508 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002509 break;
Francois Romieu236b8082008-05-30 16:11:48 +02002510 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00002511 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002512 break;
2513 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00002514 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002515 break;
2516 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00002517 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002518 break;
Francois Romieu867763c2007-08-17 18:21:58 +02002519 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00002520 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002521 break;
2522 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00002523 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002524 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02002525 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00002526 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002527 break;
Francois Romieu197ff762008-06-28 13:16:02 +02002528 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00002529 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02002530 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02002531 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00002532 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002533 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002534 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002535 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00002536 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02002537 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02002538 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00002539 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002540 break;
2541 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00002542 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002543 break;
2544 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00002545 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02002546 break;
françois romieue6de30d2011-01-03 15:08:37 +00002547 case RTL_GIGA_MAC_VER_28:
2548 rtl8168d_4_hw_phy_config(tp);
2549 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08002550 case RTL_GIGA_MAC_VER_29:
2551 case RTL_GIGA_MAC_VER_30:
2552 rtl8105e_hw_phy_config(tp);
2553 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002554
Francois Romieu5615d9f2007-08-17 17:50:46 +02002555 default:
2556 break;
2557 }
2558}
2559
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560static void rtl8169_phy_timer(unsigned long __opaque)
2561{
2562 struct net_device *dev = (struct net_device *)__opaque;
2563 struct rtl8169_private *tp = netdev_priv(dev);
2564 struct timer_list *timer = &tp->timer;
2565 void __iomem *ioaddr = tp->mmio_addr;
2566 unsigned long timeout = RTL8169_PHY_TIMEOUT;
2567
Francois Romieubcf0bf92006-07-26 23:14:13 +02002568 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Francois Romieu64e4bfb2006-08-17 12:43:06 +02002570 if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 return;
2572
2573 spin_lock_irq(&tp->lock);
2574
françois romieu4da19632011-01-03 15:07:55 +00002575 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02002576 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 * A busy loop could burn quite a few cycles on nowadays CPU.
2578 * Let's delay the execution of the timer for a few ticks.
2579 */
2580 timeout = HZ/10;
2581 goto out_mod_timer;
2582 }
2583
2584 if (tp->link_ok(ioaddr))
2585 goto out_unlock;
2586
Joe Perchesbf82c182010-02-09 11:49:50 +00002587 netif_warn(tp, link, dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
françois romieu4da19632011-01-03 15:07:55 +00002589 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
2591out_mod_timer:
2592 mod_timer(timer, jiffies + timeout);
2593out_unlock:
2594 spin_unlock_irq(&tp->lock);
2595}
2596
2597static inline void rtl8169_delete_timer(struct net_device *dev)
2598{
2599 struct rtl8169_private *tp = netdev_priv(dev);
2600 struct timer_list *timer = &tp->timer;
2601
Francois Romieue179bb72007-08-17 15:05:21 +02002602 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 return;
2604
2605 del_timer_sync(timer);
2606}
2607
2608static inline void rtl8169_request_timer(struct net_device *dev)
2609{
2610 struct rtl8169_private *tp = netdev_priv(dev);
2611 struct timer_list *timer = &tp->timer;
2612
Francois Romieue179bb72007-08-17 15:05:21 +02002613 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 return;
2615
Francois Romieu2efa53f2007-03-09 00:00:05 +01002616 mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617}
2618
2619#ifdef CONFIG_NET_POLL_CONTROLLER
2620/*
2621 * Polling 'interrupt' - used by things like netconsole to send skbs
2622 * without having to re-enable interrupts. It's not called while
2623 * the interrupt routine is executing.
2624 */
2625static void rtl8169_netpoll(struct net_device *dev)
2626{
2627 struct rtl8169_private *tp = netdev_priv(dev);
2628 struct pci_dev *pdev = tp->pci_dev;
2629
2630 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002631 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 enable_irq(pdev->irq);
2633}
2634#endif
2635
2636static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
2637 void __iomem *ioaddr)
2638{
2639 iounmap(ioaddr);
2640 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00002641 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 pci_disable_device(pdev);
2643 free_netdev(dev);
2644}
2645
Francois Romieubf793292006-11-01 00:53:05 +01002646static void rtl8169_phy_reset(struct net_device *dev,
2647 struct rtl8169_private *tp)
2648{
Francois Romieu07d3f512007-02-21 22:40:46 +01002649 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01002650
françois romieu4da19632011-01-03 15:07:55 +00002651 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01002652 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00002653 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01002654 return;
2655 msleep(1);
2656 }
Joe Perchesbf82c182010-02-09 11:49:50 +00002657 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01002658}
2659
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002660static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002662 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002663
Francois Romieu5615d9f2007-08-17 17:50:46 +02002664 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002665
Marcus Sundberg773328942008-07-10 21:28:08 +02002666 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
2667 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2668 RTL_W8(0x82, 0x01);
2669 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002670
Francois Romieu6dccd162007-02-13 23:38:05 +01002671 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
2672
2673 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
2674 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002675
Francois Romieubcf0bf92006-07-26 23:14:13 +02002676 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002677 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2678 RTL_W8(0x82, 0x01);
2679 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00002680 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002681 }
2682
Francois Romieubf793292006-11-01 00:53:05 +01002683 rtl8169_phy_reset(dev, tp);
2684
Oliver Neukum54405cd2011-01-06 21:55:13 +01002685 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
2686 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
2687 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
Eric Dumazetdb552b32011-03-19 16:39:11 +01002688 (tp->mii.supports_gmii ?
Oliver Neukum54405cd2011-01-06 21:55:13 +01002689 ADVERTISED_1000baseT_Half |
Eric Dumazetdb552b32011-03-19 16:39:11 +01002690 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002691
Joe Perchesbf82c182010-02-09 11:49:50 +00002692 if (RTL_R8(PHYstatus) & TBI_Enable)
2693 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002694}
2695
Francois Romieu773d2022007-01-31 23:47:43 +01002696static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
2697{
2698 void __iomem *ioaddr = tp->mmio_addr;
2699 u32 high;
2700 u32 low;
2701
2702 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
2703 high = addr[4] | (addr[5] << 8);
2704
2705 spin_lock_irq(&tp->lock);
2706
2707 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00002708
Francois Romieu773d2022007-01-31 23:47:43 +01002709 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00002710 RTL_R32(MAC4);
2711
Francois Romieu78f1cd02010-03-27 19:35:46 -07002712 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00002713 RTL_R32(MAC0);
2714
Francois Romieu773d2022007-01-31 23:47:43 +01002715 RTL_W8(Cfg9346, Cfg9346_Lock);
2716
2717 spin_unlock_irq(&tp->lock);
2718}
2719
2720static int rtl_set_mac_address(struct net_device *dev, void *p)
2721{
2722 struct rtl8169_private *tp = netdev_priv(dev);
2723 struct sockaddr *addr = p;
2724
2725 if (!is_valid_ether_addr(addr->sa_data))
2726 return -EADDRNOTAVAIL;
2727
2728 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2729
2730 rtl_rar_set(tp, dev->dev_addr);
2731
2732 return 0;
2733}
2734
Francois Romieu5f787a12006-08-17 13:02:36 +02002735static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2736{
2737 struct rtl8169_private *tp = netdev_priv(dev);
2738 struct mii_ioctl_data *data = if_mii(ifr);
2739
Francois Romieu8b4ab282008-11-19 22:05:25 -08002740 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
2741}
Francois Romieu5f787a12006-08-17 13:02:36 +02002742
Francois Romieu8b4ab282008-11-19 22:05:25 -08002743static int rtl_xmii_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2744{
Francois Romieu5f787a12006-08-17 13:02:36 +02002745 switch (cmd) {
2746 case SIOCGMIIPHY:
2747 data->phy_id = 32; /* Internal PHY */
2748 return 0;
2749
2750 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002751 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02002752 return 0;
2753
2754 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002755 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02002756 return 0;
2757 }
2758 return -EOPNOTSUPP;
2759}
2760
Francois Romieu8b4ab282008-11-19 22:05:25 -08002761static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2762{
2763 return -EOPNOTSUPP;
2764}
2765
Francois Romieu0e485152007-02-20 00:00:26 +01002766static const struct rtl_cfg_info {
2767 void (*hw_start)(struct net_device *);
2768 unsigned int region;
2769 unsigned int align;
2770 u16 intr_event;
2771 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02002772 unsigned features;
Jean Delvaref21b75e2009-05-26 20:54:48 -07002773 u8 default_ver;
Francois Romieu0e485152007-02-20 00:00:26 +01002774} rtl_cfg_infos [] = {
2775 [RTL_CFG_0] = {
2776 .hw_start = rtl_hw_start_8169,
2777 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01002778 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01002779 .intr_event = SYSErr | LinkChg | RxOverflow |
2780 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002781 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002782 .features = RTL_FEATURE_GMII,
2783 .default_ver = RTL_GIGA_MAC_VER_01,
Francois Romieu0e485152007-02-20 00:00:26 +01002784 },
2785 [RTL_CFG_1] = {
2786 .hw_start = rtl_hw_start_8168,
2787 .region = 2,
2788 .align = 8,
françois romieu53f57352010-11-08 13:23:05 +00002789 .intr_event = SYSErr | LinkChg | RxOverflow |
Francois Romieu0e485152007-02-20 00:00:26 +01002790 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002791 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002792 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
2793 .default_ver = RTL_GIGA_MAC_VER_11,
Francois Romieu0e485152007-02-20 00:00:26 +01002794 },
2795 [RTL_CFG_2] = {
2796 .hw_start = rtl_hw_start_8101,
2797 .region = 2,
2798 .align = 8,
2799 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
2800 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002801 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002802 .features = RTL_FEATURE_MSI,
2803 .default_ver = RTL_GIGA_MAC_VER_13,
Francois Romieu0e485152007-02-20 00:00:26 +01002804 }
2805};
2806
Francois Romieufbac58f2007-10-04 22:51:38 +02002807/* Cfg9346_Unlock assumed. */
2808static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
2809 const struct rtl_cfg_info *cfg)
2810{
2811 unsigned msi = 0;
2812 u8 cfg2;
2813
2814 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02002815 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02002816 if (pci_enable_msi(pdev)) {
2817 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
2818 } else {
2819 cfg2 |= MSIEnable;
2820 msi = RTL_FEATURE_MSI;
2821 }
2822 }
2823 RTL_W8(Config2, cfg2);
2824 return msi;
2825}
2826
2827static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
2828{
2829 if (tp->features & RTL_FEATURE_MSI) {
2830 pci_disable_msi(pdev);
2831 tp->features &= ~RTL_FEATURE_MSI;
2832 }
2833}
2834
Francois Romieu8b4ab282008-11-19 22:05:25 -08002835static const struct net_device_ops rtl8169_netdev_ops = {
2836 .ndo_open = rtl8169_open,
2837 .ndo_stop = rtl8169_close,
2838 .ndo_get_stats = rtl8169_get_stats,
Stephen Hemminger00829822008-11-20 20:14:53 -08002839 .ndo_start_xmit = rtl8169_start_xmit,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002840 .ndo_tx_timeout = rtl8169_tx_timeout,
2841 .ndo_validate_addr = eth_validate_addr,
2842 .ndo_change_mtu = rtl8169_change_mtu,
2843 .ndo_set_mac_address = rtl_set_mac_address,
2844 .ndo_do_ioctl = rtl8169_ioctl,
2845 .ndo_set_multicast_list = rtl_set_rx_mode,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002846#ifdef CONFIG_NET_POLL_CONTROLLER
2847 .ndo_poll_controller = rtl8169_netpoll,
2848#endif
2849
2850};
2851
françois romieuc0e45c12011-01-03 15:08:04 +00002852static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
2853{
2854 struct mdio_ops *ops = &tp->mdio_ops;
2855
2856 switch (tp->mac_version) {
2857 case RTL_GIGA_MAC_VER_27:
2858 ops->write = r8168dp_1_mdio_write;
2859 ops->read = r8168dp_1_mdio_read;
2860 break;
françois romieue6de30d2011-01-03 15:08:37 +00002861 case RTL_GIGA_MAC_VER_28:
2862 ops->write = r8168dp_2_mdio_write;
2863 ops->read = r8168dp_2_mdio_read;
2864 break;
françois romieuc0e45c12011-01-03 15:08:04 +00002865 default:
2866 ops->write = r8169_mdio_write;
2867 ops->read = r8169_mdio_read;
2868 break;
2869 }
2870}
2871
françois romieu065c27c2011-01-03 15:08:12 +00002872static void r810x_phy_power_down(struct rtl8169_private *tp)
2873{
2874 rtl_writephy(tp, 0x1f, 0x0000);
2875 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
2876}
2877
2878static void r810x_phy_power_up(struct rtl8169_private *tp)
2879{
2880 rtl_writephy(tp, 0x1f, 0x0000);
2881 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
2882}
2883
2884static void r810x_pll_power_down(struct rtl8169_private *tp)
2885{
2886 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
2887 rtl_writephy(tp, 0x1f, 0x0000);
2888 rtl_writephy(tp, MII_BMCR, 0x0000);
2889 return;
2890 }
2891
2892 r810x_phy_power_down(tp);
2893}
2894
2895static void r810x_pll_power_up(struct rtl8169_private *tp)
2896{
2897 r810x_phy_power_up(tp);
2898}
2899
2900static void r8168_phy_power_up(struct rtl8169_private *tp)
2901{
2902 rtl_writephy(tp, 0x1f, 0x0000);
2903 rtl_writephy(tp, 0x0e, 0x0000);
2904 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
2905}
2906
2907static void r8168_phy_power_down(struct rtl8169_private *tp)
2908{
2909 rtl_writephy(tp, 0x1f, 0x0000);
2910 rtl_writephy(tp, 0x0e, 0x0200);
2911 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
2912}
2913
2914static void r8168_pll_power_down(struct rtl8169_private *tp)
2915{
2916 void __iomem *ioaddr = tp->mmio_addr;
2917
Hayes Wang5d2e1952011-02-22 17:26:22 +08002918 if (((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
2919 (tp->mac_version == RTL_GIGA_MAC_VER_28)) &&
2920 (ocp_read(tp, 0x0f, 0x0010) & 0x00008000)) {
françois romieu065c27c2011-01-03 15:08:12 +00002921 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08002922 }
françois romieu065c27c2011-01-03 15:08:12 +00002923
2924 if (((tp->mac_version == RTL_GIGA_MAC_VER_23) ||
2925 (tp->mac_version == RTL_GIGA_MAC_VER_24)) &&
2926 (RTL_R16(CPlusCmd) & ASF)) {
2927 return;
2928 }
2929
2930 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
2931 rtl_writephy(tp, 0x1f, 0x0000);
2932 rtl_writephy(tp, MII_BMCR, 0x0000);
2933
2934 RTL_W32(RxConfig, RTL_R32(RxConfig) |
2935 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
2936 return;
2937 }
2938
2939 r8168_phy_power_down(tp);
2940
2941 switch (tp->mac_version) {
2942 case RTL_GIGA_MAC_VER_25:
2943 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08002944 case RTL_GIGA_MAC_VER_27:
2945 case RTL_GIGA_MAC_VER_28:
françois romieu065c27c2011-01-03 15:08:12 +00002946 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
2947 break;
2948 }
2949}
2950
2951static void r8168_pll_power_up(struct rtl8169_private *tp)
2952{
2953 void __iomem *ioaddr = tp->mmio_addr;
2954
Hayes Wang5d2e1952011-02-22 17:26:22 +08002955 if (((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
2956 (tp->mac_version == RTL_GIGA_MAC_VER_28)) &&
2957 (ocp_read(tp, 0x0f, 0x0010) & 0x00008000)) {
françois romieu065c27c2011-01-03 15:08:12 +00002958 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08002959 }
françois romieu065c27c2011-01-03 15:08:12 +00002960
2961 switch (tp->mac_version) {
2962 case RTL_GIGA_MAC_VER_25:
2963 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08002964 case RTL_GIGA_MAC_VER_27:
2965 case RTL_GIGA_MAC_VER_28:
françois romieu065c27c2011-01-03 15:08:12 +00002966 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
2967 break;
2968 }
2969
2970 r8168_phy_power_up(tp);
2971}
2972
2973static void rtl_pll_power_op(struct rtl8169_private *tp,
2974 void (*op)(struct rtl8169_private *))
2975{
2976 if (op)
2977 op(tp);
2978}
2979
2980static void rtl_pll_power_down(struct rtl8169_private *tp)
2981{
2982 rtl_pll_power_op(tp, tp->pll_power_ops.down);
2983}
2984
2985static void rtl_pll_power_up(struct rtl8169_private *tp)
2986{
2987 rtl_pll_power_op(tp, tp->pll_power_ops.up);
2988}
2989
2990static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
2991{
2992 struct pll_power_ops *ops = &tp->pll_power_ops;
2993
2994 switch (tp->mac_version) {
2995 case RTL_GIGA_MAC_VER_07:
2996 case RTL_GIGA_MAC_VER_08:
2997 case RTL_GIGA_MAC_VER_09:
2998 case RTL_GIGA_MAC_VER_10:
2999 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08003000 case RTL_GIGA_MAC_VER_29:
3001 case RTL_GIGA_MAC_VER_30:
françois romieu065c27c2011-01-03 15:08:12 +00003002 ops->down = r810x_pll_power_down;
3003 ops->up = r810x_pll_power_up;
3004 break;
3005
3006 case RTL_GIGA_MAC_VER_11:
3007 case RTL_GIGA_MAC_VER_12:
3008 case RTL_GIGA_MAC_VER_17:
3009 case RTL_GIGA_MAC_VER_18:
3010 case RTL_GIGA_MAC_VER_19:
3011 case RTL_GIGA_MAC_VER_20:
3012 case RTL_GIGA_MAC_VER_21:
3013 case RTL_GIGA_MAC_VER_22:
3014 case RTL_GIGA_MAC_VER_23:
3015 case RTL_GIGA_MAC_VER_24:
3016 case RTL_GIGA_MAC_VER_25:
3017 case RTL_GIGA_MAC_VER_26:
3018 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00003019 case RTL_GIGA_MAC_VER_28:
françois romieu065c27c2011-01-03 15:08:12 +00003020 ops->down = r8168_pll_power_down;
3021 ops->up = r8168_pll_power_up;
3022 break;
3023
3024 default:
3025 ops->down = NULL;
3026 ops->up = NULL;
3027 break;
3028 }
3029}
3030
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003031static int __devinit
3032rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
3033{
Francois Romieu0e485152007-02-20 00:00:26 +01003034 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
3035 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02003037 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003038 struct net_device *dev;
3039 void __iomem *ioaddr;
Francois Romieu07d3f512007-02-21 22:40:46 +01003040 unsigned int i;
3041 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003043 if (netif_msg_drv(&debug)) {
3044 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
3045 MODULENAME, RTL8169_VERSION);
3046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003049 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003050 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04003051 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003052 rc = -ENOMEM;
3053 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 }
3055
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieu8b4ab282008-11-19 22:05:25 -08003057 dev->netdev_ops = &rtl8169_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00003059 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02003060 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003061 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
Francois Romieuccdffb92008-07-26 14:26:06 +02003063 mii = &tp->mii;
3064 mii->dev = dev;
3065 mii->mdio_read = rtl_mdio_read;
3066 mii->mdio_write = rtl_mdio_write;
3067 mii->phy_id_mask = 0x1f;
3068 mii->reg_num_mask = 0x1f;
3069 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
3070
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +00003071 /* disable ASPM completely as that cause random device stop working
3072 * problems as well as full system hangs for some PCIe devices users */
3073 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
3074 PCIE_LINK_STATE_CLKPM);
3075
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 /* enable device (incl. PCI PM wakeup and hotplug setup) */
3077 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003078 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003079 netif_err(tp, probe, dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003080 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 }
3082
françois romieu87aeec72010-04-26 11:42:06 +00003083 if (pci_set_mwi(pdev) < 0)
3084 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003087 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003088 netif_err(tp, probe, dev,
3089 "region #%d not an MMIO resource, aborting\n",
3090 region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003092 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003094
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003096 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003097 netif_err(tp, probe, dev,
3098 "Invalid PCI region size(s), aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003100 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 }
3102
3103 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003104 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003105 netif_err(tp, probe, dev, "could not request regions\n");
françois romieu87aeec72010-04-26 11:42:06 +00003106 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 }
3108
Hayes Wangd24e9aa2011-02-22 17:26:19 +08003109 tp->cp_cmd = RxChkSum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
3111 if ((sizeof(dma_addr_t) > 4) &&
David S. Miller4300e8c2010-03-26 10:23:30 -07003112 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 tp->cp_cmd |= PCIDAC;
3114 dev->features |= NETIF_F_HIGHDMA;
3115 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07003116 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003118 netif_err(tp, probe, dev, "DMA configuration failed\n");
françois romieu87aeec72010-04-26 11:42:06 +00003119 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 }
3121 }
3122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003124 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003125 if (!ioaddr) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003126 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 rc = -EIO;
françois romieu87aeec72010-04-26 11:42:06 +00003128 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 }
3130
David S. Miller4300e8c2010-03-26 10:23:30 -07003131 tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
3132 if (!tp->pcie_cap)
3133 netif_info(tp, probe, dev, "no PCI Express capability\n");
3134
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003135 RTL_W16(IntrMask, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
3137 /* Soft reset the chip. */
3138 RTL_W8(ChipCmd, CmdReset);
3139
3140 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003141 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3143 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003144 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 }
3146
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003147 RTL_W16(IntrStatus, 0xffff);
3148
françois romieuca52efd2009-07-24 12:34:19 +00003149 pci_set_master(pdev);
3150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 /* Identify chip attached to board */
3152 rtl8169_get_mac_version(tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
Francois Romieu7a8fc772011-03-01 17:18:33 +01003154 /*
3155 * Pretend we are using VLANs; This bypasses a nasty bug where
3156 * Interrupts stop flowing on high load on 8110SCd controllers.
3157 */
3158 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3159 tp->cp_cmd |= RxVlan;
3160
françois romieuc0e45c12011-01-03 15:08:04 +00003161 rtl_init_mdio_ops(tp);
françois romieu065c27c2011-01-03 15:08:12 +00003162 rtl_init_pll_power_ops(tp);
françois romieuc0e45c12011-01-03 15:08:04 +00003163
Jean Delvaref21b75e2009-05-26 20:54:48 -07003164 /* Use appropriate default if unknown */
3165 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003166 netif_notice(tp, probe, dev,
3167 "unknown MAC, using family default\n");
Jean Delvaref21b75e2009-05-26 20:54:48 -07003168 tp->mac_version = cfg->default_ver;
3169 }
3170
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
Roel Kluincee60c32008-04-17 22:35:54 +02003173 for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 if (tp->mac_version == rtl_chip_info[i].mac_version)
3175 break;
3176 }
Roel Kluincee60c32008-04-17 22:35:54 +02003177 if (i == ARRAY_SIZE(rtl_chip_info)) {
Jean Delvaref21b75e2009-05-26 20:54:48 -07003178 dev_err(&pdev->dev,
3179 "driver bug, MAC version not found in rtl_chip_info\n");
françois romieu87aeec72010-04-26 11:42:06 +00003180 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 }
3182 tp->chipset = i;
3183
Francois Romieu5d06a992006-02-23 00:47:58 +01003184 RTL_W8(Cfg9346, Cfg9346_Unlock);
3185 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
3186 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Bruno Prémont20037fa2008-10-08 17:05:03 -07003187 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
3188 tp->features |= RTL_FEATURE_WOL;
3189 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
3190 tp->features |= RTL_FEATURE_WOL;
Francois Romieufbac58f2007-10-04 22:51:38 +02003191 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01003192 RTL_W8(Cfg9346, Cfg9346_Lock);
3193
Francois Romieu66ec5d42007-11-06 22:56:10 +01003194 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
3195 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 tp->set_speed = rtl8169_set_speed_tbi;
3197 tp->get_settings = rtl8169_gset_tbi;
3198 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
3199 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
3200 tp->link_ok = rtl8169_tbi_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003201 tp->do_ioctl = rtl_tbi_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
Francois Romieu64e4bfb2006-08-17 12:43:06 +02003203 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 } else {
3205 tp->set_speed = rtl8169_set_speed_xmii;
3206 tp->get_settings = rtl8169_gset_xmii;
3207 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
3208 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
3209 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003210 tp->do_ioctl = rtl_xmii_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 }
3212
Francois Romieudf58ef512008-10-09 14:35:58 -07003213 spin_lock_init(&tp->lock);
3214
Petr Vandrovec738e1e62008-10-12 20:58:29 -07003215 tp->mmio_addr = ioaddr;
3216
Ivan Vecera7bf6bf42008-09-23 22:46:29 +00003217 /* Get MAC address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 for (i = 0; i < MAC_ADDR_LEN; i++)
3219 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04003220 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
3224 dev->irq = pdev->irq;
3225 dev->base_addr = (unsigned long) ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003227 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
Francois Romieu7a8fc772011-03-01 17:18:33 +01003229 dev->features |= NETIF_F_HW_VLAN_TX_RX | NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
3231 tp->intr_mask = 0xffff;
Francois Romieu0e485152007-02-20 00:00:26 +01003232 tp->hw_start = cfg->hw_start;
3233 tp->intr_event = cfg->intr_event;
3234 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Francois Romieu2efa53f2007-03-09 00:00:05 +01003236 init_timer(&tp->timer);
3237 tp->timer.data = (unsigned long) dev;
3238 tp->timer.function = rtl8169_phy_timer;
3239
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003241 if (rc < 0)
françois romieu87aeec72010-04-26 11:42:06 +00003242 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
3244 pci_set_drvdata(pdev, dev);
3245
Joe Perchesbf82c182010-02-09 11:49:50 +00003246 netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
3247 rtl_chip_info[tp->chipset].name,
3248 dev->base_addr, dev->dev_addr,
3249 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
françois romieue6de30d2011-01-03 15:08:37 +00003251 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
3252 (tp->mac_version == RTL_GIGA_MAC_VER_28)) {
françois romieub646d902011-01-03 15:08:21 +00003253 rtl8168_driver_start(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003254 }
françois romieub646d902011-01-03 15:08:21 +00003255
Bruno Prémont8b76ab32008-10-08 17:06:25 -07003256 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Alan Sternf3ec4f82010-06-08 15:23:51 -04003258 if (pci_dev_run_wake(pdev))
3259 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003260
Ivan Vecera0d672e92011-02-15 02:08:39 +00003261 netif_carrier_off(dev);
3262
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003263out:
3264 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
françois romieu87aeec72010-04-26 11:42:06 +00003266err_out_msi_4:
Francois Romieufbac58f2007-10-04 22:51:38 +02003267 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003268 iounmap(ioaddr);
françois romieu87aeec72010-04-26 11:42:06 +00003269err_out_free_res_3:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003270 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003271err_out_mwi_2:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003272 pci_clear_mwi(pdev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003273 pci_disable_device(pdev);
3274err_out_free_dev_1:
3275 free_netdev(dev);
3276 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277}
3278
Francois Romieu07d3f512007-02-21 22:40:46 +01003279static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280{
3281 struct net_device *dev = pci_get_drvdata(pdev);
3282 struct rtl8169_private *tp = netdev_priv(dev);
3283
françois romieue6de30d2011-01-03 15:08:37 +00003284 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
3285 (tp->mac_version == RTL_GIGA_MAC_VER_28)) {
françois romieub646d902011-01-03 15:08:21 +00003286 rtl8168_driver_stop(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003287 }
françois romieub646d902011-01-03 15:08:21 +00003288
Tejun Heo23f333a2010-12-12 16:45:14 +01003289 cancel_delayed_work_sync(&tp->task);
Francois Romieueb2a0212007-02-15 23:37:21 +01003290
françois romieuf1e02ed2011-01-13 13:07:53 +00003291 rtl_release_firmware(tp);
3292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 unregister_netdev(dev);
Ivan Veceracc098dc2009-11-29 23:12:52 -08003294
Alan Sternf3ec4f82010-06-08 15:23:51 -04003295 if (pci_dev_run_wake(pdev))
3296 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003297
Ivan Veceracc098dc2009-11-29 23:12:52 -08003298 /* restore original MAC address */
3299 rtl_rar_set(tp, dev->perm_addr);
3300
Francois Romieufbac58f2007-10-04 22:51:38 +02003301 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 rtl8169_release_board(pdev, dev, tp->mmio_addr);
3303 pci_set_drvdata(pdev, NULL);
3304}
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306static int rtl8169_open(struct net_device *dev)
3307{
3308 struct rtl8169_private *tp = netdev_priv(dev);
françois romieueee3a962011-01-08 02:17:26 +00003309 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b02007-04-02 22:59:59 +02003311 int retval = -ENOMEM;
3312
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003313 pm_runtime_get_sync(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Neil Hormanc0cd8842010-03-29 13:16:02 -07003315 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 * Rx and Tx desscriptors needs 256 bytes alignment.
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003317 * dma_alloc_coherent provides more.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 */
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003319 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
3320 &tp->TxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 if (!tp->TxDescArray)
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003322 goto err_pm_runtime_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003324 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
3325 &tp->RxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 if (!tp->RxDescArray)
Francois Romieu99f252b02007-04-02 22:59:59 +02003327 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
3329 retval = rtl8169_init_ring(dev);
3330 if (retval < 0)
Francois Romieu99f252b02007-04-02 22:59:59 +02003331 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
David Howellsc4028952006-11-22 14:57:56 +00003333 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
Francois Romieu99f252b02007-04-02 22:59:59 +02003335 smp_mb();
3336
Francois Romieufbac58f2007-10-04 22:51:38 +02003337 retval = request_irq(dev->irq, rtl8169_interrupt,
3338 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b02007-04-02 22:59:59 +02003339 dev->name, dev);
3340 if (retval < 0)
3341 goto err_release_ring_2;
3342
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003343 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003344
françois romieueee3a962011-01-08 02:17:26 +00003345 rtl8169_init_phy(dev, tp);
3346
Francois Romieu7a8fc772011-03-01 17:18:33 +01003347 rtl8169_vlan_mode(dev);
françois romieueee3a962011-01-08 02:17:26 +00003348
françois romieu065c27c2011-01-03 15:08:12 +00003349 rtl_pll_power_up(tp);
3350
Francois Romieu07ce4062007-02-23 23:36:39 +01003351 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352
3353 rtl8169_request_timer(dev);
3354
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003355 tp->saved_wolopts = 0;
3356 pm_runtime_put_noidle(&pdev->dev);
3357
françois romieueee3a962011-01-08 02:17:26 +00003358 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359out:
3360 return retval;
3361
Francois Romieu99f252b02007-04-02 22:59:59 +02003362err_release_ring_2:
3363 rtl8169_rx_clear(tp);
3364err_free_rx_1:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003365 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
3366 tp->RxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003367 tp->RxDescArray = NULL;
Francois Romieu99f252b02007-04-02 22:59:59 +02003368err_free_tx_0:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003369 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
3370 tp->TxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003371 tp->TxDescArray = NULL;
3372err_pm_runtime_put:
3373 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 goto out;
3375}
3376
françois romieue6de30d2011-01-03 15:08:37 +00003377static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378{
françois romieue6de30d2011-01-03 15:08:37 +00003379 void __iomem *ioaddr = tp->mmio_addr;
3380
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 /* Disable interrupts */
3382 rtl8169_irq_mask_and_ack(ioaddr);
3383
Hayes Wang5d2e1952011-02-22 17:26:22 +08003384 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3385 tp->mac_version == RTL_GIGA_MAC_VER_28) {
françois romieue6de30d2011-01-03 15:08:37 +00003386 while (RTL_R8(TxPoll) & NPQ)
3387 udelay(20);
3388
3389 }
3390
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 /* Reset the chipset */
3392 RTL_W8(ChipCmd, CmdReset);
3393
3394 /* PCI commit */
3395 RTL_R8(ChipCmd);
3396}
3397
Francois Romieu7f796d832007-06-11 23:04:41 +02003398static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01003399{
3400 void __iomem *ioaddr = tp->mmio_addr;
3401 u32 cfg = rtl8169_rx_config;
3402
3403 cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
3404 RTL_W32(RxConfig, cfg);
3405
3406 /* Set DMA burst size and Interframe Gap Time */
3407 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3408 (InterFrameGap << TxInterFrameGapShift));
3409}
3410
Francois Romieu07ce4062007-02-23 23:36:39 +01003411static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412{
3413 struct rtl8169_private *tp = netdev_priv(dev);
3414 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01003415 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
3417 /* Soft reset the chip. */
3418 RTL_W8(ChipCmd, CmdReset);
3419
3420 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003421 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3423 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003424 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 }
3426
Francois Romieu07ce4062007-02-23 23:36:39 +01003427 tp->hw_start(dev);
3428
Francois Romieu07ce4062007-02-23 23:36:39 +01003429 netif_start_queue(dev);
3430}
3431
3432
Francois Romieu7f796d832007-06-11 23:04:41 +02003433static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
3434 void __iomem *ioaddr)
3435{
3436 /*
3437 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
3438 * register to be written before TxDescAddrLow to work.
3439 * Switching from MMIO to I/O access fixes the issue as well.
3440 */
3441 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003442 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02003443 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003444 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d832007-06-11 23:04:41 +02003445}
3446
3447static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
3448{
3449 u16 cmd;
3450
3451 cmd = RTL_R16(CPlusCmd);
3452 RTL_W16(CPlusCmd, cmd);
3453 return cmd;
3454}
3455
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07003456static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d832007-06-11 23:04:41 +02003457{
3458 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e872009-10-26 10:52:37 +00003459 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d832007-06-11 23:04:41 +02003460}
3461
Francois Romieu6dccd162007-02-13 23:38:05 +01003462static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
3463{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003464 static const struct {
Francois Romieu6dccd162007-02-13 23:38:05 +01003465 u32 mac_version;
3466 u32 clk;
3467 u32 val;
3468 } cfg2_info [] = {
3469 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
3470 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
3471 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
3472 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
3473 }, *p = cfg2_info;
3474 unsigned int i;
3475 u32 clk;
3476
3477 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01003478 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01003479 if ((p->mac_version == mac_version) && (p->clk == clk)) {
3480 RTL_W32(0x7c, p->val);
3481 break;
3482 }
3483 }
3484}
3485
Francois Romieu07ce4062007-02-23 23:36:39 +01003486static void rtl_hw_start_8169(struct net_device *dev)
3487{
3488 struct rtl8169_private *tp = netdev_priv(dev);
3489 void __iomem *ioaddr = tp->mmio_addr;
3490 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01003491
Francois Romieu9cb427b2006-11-02 00:10:16 +01003492 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
3493 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
3494 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
3495 }
3496
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003498 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3499 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3500 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3501 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3502 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3503
françois romieuf0298f82011-01-03 15:07:42 +00003504 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003506 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Francois Romieuc946b302007-10-04 00:42:50 +02003508 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3509 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3510 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3511 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3512 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Francois Romieu7f796d832007-06-11 23:04:41 +02003514 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02003515
3516 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3517 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Joe Perches06fa7352007-10-18 21:15:00 +02003518 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02003520 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 }
3522
Francois Romieubcf0bf92006-07-26 23:14:13 +02003523 RTL_W16(CPlusCmd, tp->cp_cmd);
3524
Francois Romieu6dccd162007-02-13 23:38:05 +01003525 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
3526
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 /*
3528 * Undocumented corner. Supposedly:
3529 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
3530 */
3531 RTL_W16(IntrMitigate, 0x0000);
3532
Francois Romieu7f796d832007-06-11 23:04:41 +02003533 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003534
Francois Romieuc946b302007-10-04 00:42:50 +02003535 if ((tp->mac_version != RTL_GIGA_MAC_VER_01) &&
3536 (tp->mac_version != RTL_GIGA_MAC_VER_02) &&
3537 (tp->mac_version != RTL_GIGA_MAC_VER_03) &&
3538 (tp->mac_version != RTL_GIGA_MAC_VER_04)) {
3539 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3540 rtl_set_rx_tx_config_registers(tp);
3541 }
3542
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02003544
3545 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
3546 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
3548 RTL_W32(RxMissed, 0);
3549
Francois Romieu07ce4062007-02-23 23:36:39 +01003550 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551
3552 /* no early-rx interrupts */
3553 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003554
3555 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01003556 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003557}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558
Francois Romieu9c14cea2008-07-05 00:21:15 +02003559static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02003560{
Francois Romieu9c14cea2008-07-05 00:21:15 +02003561 struct net_device *dev = pci_get_drvdata(pdev);
3562 struct rtl8169_private *tp = netdev_priv(dev);
3563 int cap = tp->pcie_cap;
Francois Romieu458a9f62008-08-02 15:50:02 +02003564
Francois Romieu9c14cea2008-07-05 00:21:15 +02003565 if (cap) {
3566 u16 ctl;
3567
3568 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
3569 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
3570 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
3571 }
Francois Romieu458a9f62008-08-02 15:50:02 +02003572}
3573
françois romieu650e8d52011-01-03 15:08:29 +00003574static void rtl_csi_access_enable(void __iomem *ioaddr, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02003575{
3576 u32 csi;
3577
3578 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
françois romieu650e8d52011-01-03 15:08:29 +00003579 rtl_csi_write(ioaddr, 0x070c, csi | bits);
3580}
3581
françois romieue6de30d2011-01-03 15:08:37 +00003582static void rtl_csi_access_enable_1(void __iomem *ioaddr)
3583{
3584 rtl_csi_access_enable(ioaddr, 0x17000000);
3585}
3586
françois romieu650e8d52011-01-03 15:08:29 +00003587static void rtl_csi_access_enable_2(void __iomem *ioaddr)
3588{
3589 rtl_csi_access_enable(ioaddr, 0x27000000);
Francois Romieudacf8152008-08-02 20:44:13 +02003590}
3591
3592struct ephy_info {
3593 unsigned int offset;
3594 u16 mask;
3595 u16 bits;
3596};
3597
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003598static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02003599{
3600 u16 w;
3601
3602 while (len-- > 0) {
3603 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
3604 rtl_ephy_write(ioaddr, e->offset, w);
3605 e++;
3606 }
3607}
3608
Francois Romieub726e492008-06-28 12:22:59 +02003609static void rtl_disable_clock_request(struct pci_dev *pdev)
3610{
3611 struct net_device *dev = pci_get_drvdata(pdev);
3612 struct rtl8169_private *tp = netdev_priv(dev);
3613 int cap = tp->pcie_cap;
3614
3615 if (cap) {
3616 u16 ctl;
3617
3618 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3619 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
3620 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3621 }
3622}
3623
françois romieue6de30d2011-01-03 15:08:37 +00003624static void rtl_enable_clock_request(struct pci_dev *pdev)
3625{
3626 struct net_device *dev = pci_get_drvdata(pdev);
3627 struct rtl8169_private *tp = netdev_priv(dev);
3628 int cap = tp->pcie_cap;
3629
3630 if (cap) {
3631 u16 ctl;
3632
3633 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3634 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3635 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3636 }
3637}
3638
Francois Romieub726e492008-06-28 12:22:59 +02003639#define R8168_CPCMD_QUIRK_MASK (\
3640 EnableBist | \
3641 Mac_dbgo_oe | \
3642 Force_half_dup | \
3643 Force_rxflow_en | \
3644 Force_txflow_en | \
3645 Cxpl_dbg_sel | \
3646 ASF | \
3647 PktCntrDisable | \
3648 Mac_dbgo_sel)
3649
Francois Romieu219a1e92008-06-28 11:58:39 +02003650static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
3651{
Francois Romieub726e492008-06-28 12:22:59 +02003652 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3653
3654 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3655
Francois Romieu2e68ae42008-06-28 12:00:55 +02003656 rtl_tx_performance_tweak(pdev,
3657 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02003658}
3659
3660static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
3661{
3662 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02003663
françois romieuf0298f82011-01-03 15:07:42 +00003664 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02003665
3666 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02003667}
3668
3669static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
3670{
Francois Romieub726e492008-06-28 12:22:59 +02003671 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
3672
3673 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3674
Francois Romieu219a1e92008-06-28 11:58:39 +02003675 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02003676
3677 rtl_disable_clock_request(pdev);
3678
3679 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02003680}
3681
Francois Romieuef3386f2008-06-29 12:24:30 +02003682static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02003683{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003684 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003685 { 0x01, 0, 0x0001 },
3686 { 0x02, 0x0800, 0x1000 },
3687 { 0x03, 0, 0x0042 },
3688 { 0x06, 0x0080, 0x0000 },
3689 { 0x07, 0, 0x2000 }
3690 };
3691
françois romieu650e8d52011-01-03 15:08:29 +00003692 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003693
3694 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
3695
Francois Romieu219a1e92008-06-28 11:58:39 +02003696 __rtl_hw_start_8168cp(ioaddr, pdev);
3697}
3698
Francois Romieuef3386f2008-06-29 12:24:30 +02003699static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
3700{
françois romieu650e8d52011-01-03 15:08:29 +00003701 rtl_csi_access_enable_2(ioaddr);
Francois Romieuef3386f2008-06-29 12:24:30 +02003702
3703 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3704
3705 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3706
3707 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3708}
3709
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003710static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
3711{
françois romieu650e8d52011-01-03 15:08:29 +00003712 rtl_csi_access_enable_2(ioaddr);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003713
3714 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3715
3716 /* Magic. */
3717 RTL_W8(DBG_REG, 0x20);
3718
françois romieuf0298f82011-01-03 15:07:42 +00003719 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003720
3721 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3722
3723 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3724}
3725
Francois Romieu219a1e92008-06-28 11:58:39 +02003726static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
3727{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003728 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003729 { 0x02, 0x0800, 0x1000 },
3730 { 0x03, 0, 0x0002 },
3731 { 0x06, 0x0080, 0x0000 }
3732 };
3733
françois romieu650e8d52011-01-03 15:08:29 +00003734 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003735
3736 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
3737
3738 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
3739
Francois Romieu219a1e92008-06-28 11:58:39 +02003740 __rtl_hw_start_8168cp(ioaddr, pdev);
3741}
3742
3743static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
3744{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003745 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003746 { 0x01, 0, 0x0001 },
3747 { 0x03, 0x0400, 0x0220 }
3748 };
3749
françois romieu650e8d52011-01-03 15:08:29 +00003750 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003751
3752 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
3753
Francois Romieu219a1e92008-06-28 11:58:39 +02003754 __rtl_hw_start_8168cp(ioaddr, pdev);
3755}
3756
Francois Romieu197ff762008-06-28 13:16:02 +02003757static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
3758{
3759 rtl_hw_start_8168c_2(ioaddr, pdev);
3760}
3761
Francois Romieu6fb07052008-06-29 11:54:28 +02003762static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
3763{
françois romieu650e8d52011-01-03 15:08:29 +00003764 rtl_csi_access_enable_2(ioaddr);
Francois Romieu6fb07052008-06-29 11:54:28 +02003765
3766 __rtl_hw_start_8168cp(ioaddr, pdev);
3767}
3768
Francois Romieu5b538df2008-07-20 16:22:45 +02003769static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
3770{
françois romieu650e8d52011-01-03 15:08:29 +00003771 rtl_csi_access_enable_2(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02003772
3773 rtl_disable_clock_request(pdev);
3774
françois romieuf0298f82011-01-03 15:07:42 +00003775 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02003776
3777 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3778
3779 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3780}
3781
françois romieue6de30d2011-01-03 15:08:37 +00003782static void rtl_hw_start_8168d_4(void __iomem *ioaddr, struct pci_dev *pdev)
3783{
3784 static const struct ephy_info e_info_8168d_4[] = {
3785 { 0x0b, ~0, 0x48 },
3786 { 0x19, 0x20, 0x50 },
3787 { 0x0c, ~0, 0x20 }
3788 };
3789 int i;
3790
3791 rtl_csi_access_enable_1(ioaddr);
3792
3793 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3794
3795 RTL_W8(MaxTxPacketSize, TxPacketMax);
3796
3797 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
3798 const struct ephy_info *e = e_info_8168d_4 + i;
3799 u16 w;
3800
3801 w = rtl_ephy_read(ioaddr, e->offset);
3802 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
3803 }
3804
3805 rtl_enable_clock_request(pdev);
3806}
3807
Francois Romieu07ce4062007-02-23 23:36:39 +01003808static void rtl_hw_start_8168(struct net_device *dev)
3809{
Francois Romieu2dd99532007-06-11 23:22:52 +02003810 struct rtl8169_private *tp = netdev_priv(dev);
3811 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01003812 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02003813
3814 RTL_W8(Cfg9346, Cfg9346_Unlock);
3815
françois romieuf0298f82011-01-03 15:07:42 +00003816 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02003817
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003818 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02003819
Francois Romieu0e485152007-02-20 00:00:26 +01003820 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02003821
3822 RTL_W16(CPlusCmd, tp->cp_cmd);
3823
Francois Romieu0e485152007-02-20 00:00:26 +01003824 RTL_W16(IntrMitigate, 0x5151);
3825
3826 /* Work around for RxFIFO overflow. */
Ivan Vecerab5ba6d12011-01-27 12:24:11 +01003827 if (tp->mac_version == RTL_GIGA_MAC_VER_11 ||
3828 tp->mac_version == RTL_GIGA_MAC_VER_22) {
Francois Romieu0e485152007-02-20 00:00:26 +01003829 tp->intr_event |= RxFIFOOver | PCSTimeout;
3830 tp->intr_event &= ~RxOverflow;
3831 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003832
3833 rtl_set_rx_tx_desc_registers(tp, ioaddr);
3834
Francois Romieub8363902008-06-01 12:31:57 +02003835 rtl_set_rx_mode(dev);
3836
3837 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3838 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02003839
3840 RTL_R8(IntrMask);
3841
Francois Romieu219a1e92008-06-28 11:58:39 +02003842 switch (tp->mac_version) {
3843 case RTL_GIGA_MAC_VER_11:
3844 rtl_hw_start_8168bb(ioaddr, pdev);
3845 break;
3846
3847 case RTL_GIGA_MAC_VER_12:
3848 case RTL_GIGA_MAC_VER_17:
3849 rtl_hw_start_8168bef(ioaddr, pdev);
3850 break;
3851
3852 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02003853 rtl_hw_start_8168cp_1(ioaddr, pdev);
Francois Romieu219a1e92008-06-28 11:58:39 +02003854 break;
3855
3856 case RTL_GIGA_MAC_VER_19:
3857 rtl_hw_start_8168c_1(ioaddr, pdev);
3858 break;
3859
3860 case RTL_GIGA_MAC_VER_20:
3861 rtl_hw_start_8168c_2(ioaddr, pdev);
3862 break;
3863
Francois Romieu197ff762008-06-28 13:16:02 +02003864 case RTL_GIGA_MAC_VER_21:
3865 rtl_hw_start_8168c_3(ioaddr, pdev);
3866 break;
3867
Francois Romieu6fb07052008-06-29 11:54:28 +02003868 case RTL_GIGA_MAC_VER_22:
3869 rtl_hw_start_8168c_4(ioaddr, pdev);
3870 break;
3871
Francois Romieuef3386f2008-06-29 12:24:30 +02003872 case RTL_GIGA_MAC_VER_23:
3873 rtl_hw_start_8168cp_2(ioaddr, pdev);
3874 break;
3875
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003876 case RTL_GIGA_MAC_VER_24:
3877 rtl_hw_start_8168cp_3(ioaddr, pdev);
3878 break;
3879
Francois Romieu5b538df2008-07-20 16:22:45 +02003880 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00003881 case RTL_GIGA_MAC_VER_26:
3882 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02003883 rtl_hw_start_8168d(ioaddr, pdev);
3884 break;
3885
françois romieue6de30d2011-01-03 15:08:37 +00003886 case RTL_GIGA_MAC_VER_28:
3887 rtl_hw_start_8168d_4(ioaddr, pdev);
3888 break;
3889
Francois Romieu219a1e92008-06-28 11:58:39 +02003890 default:
3891 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
3892 dev->name, tp->mac_version);
3893 break;
3894 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003895
Francois Romieu0e485152007-02-20 00:00:26 +01003896 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3897
Francois Romieub8363902008-06-01 12:31:57 +02003898 RTL_W8(Cfg9346, Cfg9346_Lock);
3899
Francois Romieu2dd99532007-06-11 23:22:52 +02003900 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003901
Francois Romieu0e485152007-02-20 00:00:26 +01003902 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003903}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904
Francois Romieu2857ffb2008-08-02 21:08:49 +02003905#define R810X_CPCMD_QUIRK_MASK (\
3906 EnableBist | \
3907 Mac_dbgo_oe | \
3908 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00003909 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02003910 Force_txflow_en | \
3911 Cxpl_dbg_sel | \
3912 ASF | \
3913 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08003914 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02003915
3916static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
3917{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003918 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003919 { 0x01, 0, 0x6e65 },
3920 { 0x02, 0, 0x091f },
3921 { 0x03, 0, 0xc2f9 },
3922 { 0x06, 0, 0xafb5 },
3923 { 0x07, 0, 0x0e00 },
3924 { 0x19, 0, 0xec80 },
3925 { 0x01, 0, 0x2e65 },
3926 { 0x01, 0, 0x6e65 }
3927 };
3928 u8 cfg1;
3929
françois romieu650e8d52011-01-03 15:08:29 +00003930 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003931
3932 RTL_W8(DBG_REG, FIX_NAK_1);
3933
3934 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3935
3936 RTL_W8(Config1,
3937 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
3938 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3939
3940 cfg1 = RTL_R8(Config1);
3941 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
3942 RTL_W8(Config1, cfg1 & ~LEDS0);
3943
Francois Romieu2857ffb2008-08-02 21:08:49 +02003944 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
3945}
3946
3947static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
3948{
françois romieu650e8d52011-01-03 15:08:29 +00003949 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003950
3951 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3952
3953 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
3954 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003955}
3956
3957static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
3958{
3959 rtl_hw_start_8102e_2(ioaddr, pdev);
3960
3961 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
3962}
3963
Hayes Wang5a5e4442011-02-22 17:26:21 +08003964static void rtl_hw_start_8105e_1(void __iomem *ioaddr, struct pci_dev *pdev)
3965{
3966 static const struct ephy_info e_info_8105e_1[] = {
3967 { 0x07, 0, 0x4000 },
3968 { 0x19, 0, 0x0200 },
3969 { 0x19, 0, 0x0020 },
3970 { 0x1e, 0, 0x2000 },
3971 { 0x03, 0, 0x0001 },
3972 { 0x19, 0, 0x0100 },
3973 { 0x19, 0, 0x0004 },
3974 { 0x0a, 0, 0x0020 }
3975 };
3976
3977 /* Force LAN exit from ASPM if Rx/Tx are not idel */
3978 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
3979
3980 /* disable Early Tally Counter */
3981 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
3982
3983 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
3984 RTL_W8(DLLPR, RTL_R8(DLLPR) | PM_SWITCH);
3985
3986 rtl_ephy_init(ioaddr, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
3987}
3988
3989static void rtl_hw_start_8105e_2(void __iomem *ioaddr, struct pci_dev *pdev)
3990{
3991 rtl_hw_start_8105e_1(ioaddr, pdev);
3992 rtl_ephy_write(ioaddr, 0x1e, rtl_ephy_read(ioaddr, 0x1e) | 0x8000);
3993}
3994
Francois Romieu07ce4062007-02-23 23:36:39 +01003995static void rtl_hw_start_8101(struct net_device *dev)
3996{
Francois Romieucdf1a602007-06-11 23:29:50 +02003997 struct rtl8169_private *tp = netdev_priv(dev);
3998 void __iomem *ioaddr = tp->mmio_addr;
3999 struct pci_dev *pdev = tp->pci_dev;
4000
Francois Romieue3cf0cc2007-08-17 14:55:46 +02004001 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
4002 (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
Francois Romieu9c14cea2008-07-05 00:21:15 +02004003 int cap = tp->pcie_cap;
4004
4005 if (cap) {
4006 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
4007 PCI_EXP_DEVCTL_NOSNOOP_EN);
4008 }
Francois Romieucdf1a602007-06-11 23:29:50 +02004009 }
4010
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004011 RTL_W8(Cfg9346, Cfg9346_Unlock);
4012
Francois Romieu2857ffb2008-08-02 21:08:49 +02004013 switch (tp->mac_version) {
4014 case RTL_GIGA_MAC_VER_07:
4015 rtl_hw_start_8102e_1(ioaddr, pdev);
4016 break;
4017
4018 case RTL_GIGA_MAC_VER_08:
4019 rtl_hw_start_8102e_3(ioaddr, pdev);
4020 break;
4021
4022 case RTL_GIGA_MAC_VER_09:
4023 rtl_hw_start_8102e_2(ioaddr, pdev);
4024 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004025
4026 case RTL_GIGA_MAC_VER_29:
4027 rtl_hw_start_8105e_1(ioaddr, pdev);
4028 break;
4029 case RTL_GIGA_MAC_VER_30:
4030 rtl_hw_start_8105e_2(ioaddr, pdev);
4031 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02004032 }
4033
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004034 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02004035
françois romieuf0298f82011-01-03 15:07:42 +00004036 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02004037
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004038 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02004039
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004040 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
Francois Romieucdf1a602007-06-11 23:29:50 +02004041 RTL_W16(CPlusCmd, tp->cp_cmd);
4042
4043 RTL_W16(IntrMitigate, 0x0000);
4044
4045 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4046
4047 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4048 rtl_set_rx_tx_config_registers(tp);
4049
Francois Romieucdf1a602007-06-11 23:29:50 +02004050 RTL_R8(IntrMask);
4051
Francois Romieucdf1a602007-06-11 23:29:50 +02004052 rtl_set_rx_mode(dev);
4053
4054 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01004055
Francois Romieu0e485152007-02-20 00:00:26 +01004056 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057}
4058
4059static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
4060{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
4062 return -EINVAL;
4063
4064 dev->mtu = new_mtu;
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004065 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066}
4067
4068static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
4069{
Al Viro95e09182007-12-22 18:55:39 +00004070 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
4072}
4073
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004074static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
4075 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004077 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004078 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004079
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004080 kfree(*data_buff);
4081 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 rtl8169_make_unusable_by_asic(desc);
4083}
4084
4085static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
4086{
4087 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
4088
4089 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
4090}
4091
4092static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
4093 u32 rx_buf_sz)
4094{
4095 desc->addr = cpu_to_le64(mapping);
4096 wmb();
4097 rtl8169_mark_to_asic(desc, rx_buf_sz);
4098}
4099
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004100static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004102 return (void *)ALIGN((long)data, 16);
4103}
4104
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004105static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
4106 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004107{
4108 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004110 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004111 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004112 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004114 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
4115 if (!data)
4116 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01004117
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004118 if (rtl8169_align(data) != data) {
4119 kfree(data);
4120 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
4121 if (!data)
4122 return NULL;
4123 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004124
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004125 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004126 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004127 if (unlikely(dma_mapping_error(d, mapping))) {
4128 if (net_ratelimit())
4129 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004130 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132
4133 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004134 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004135
4136err_out:
4137 kfree(data);
4138 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139}
4140
4141static void rtl8169_rx_clear(struct rtl8169_private *tp)
4142{
Francois Romieu07d3f512007-02-21 22:40:46 +01004143 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
4145 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004146 if (tp->Rx_databuff[i]) {
4147 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 tp->RxDescArray + i);
4149 }
4150 }
4151}
4152
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004153static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004155 desc->opts1 |= cpu_to_le32(RingEnd);
4156}
Francois Romieu5b0384f2006-08-16 16:00:01 +02004157
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004158static int rtl8169_rx_fill(struct rtl8169_private *tp)
4159{
4160 unsigned int i;
4161
4162 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004163 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02004164
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004165 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004167
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004168 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004169 if (!data) {
4170 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004171 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004172 }
4173 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004176 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
4177 return 0;
4178
4179err_out:
4180 rtl8169_rx_clear(tp);
4181 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182}
4183
4184static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4185{
4186 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
4187}
4188
4189static int rtl8169_init_ring(struct net_device *dev)
4190{
4191 struct rtl8169_private *tp = netdev_priv(dev);
4192
4193 rtl8169_init_ring_indexes(tp);
4194
4195 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004196 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004198 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199}
4200
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004201static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 struct TxDesc *desc)
4203{
4204 unsigned int len = tx_skb->len;
4205
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004206 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
4207
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 desc->opts1 = 0x00;
4209 desc->opts2 = 0x00;
4210 desc->addr = 0x00;
4211 tx_skb->len = 0;
4212}
4213
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004214static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
4215 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216{
4217 unsigned int i;
4218
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004219 for (i = 0; i < n; i++) {
4220 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 struct ring_info *tx_skb = tp->tx_skb + entry;
4222 unsigned int len = tx_skb->len;
4223
4224 if (len) {
4225 struct sk_buff *skb = tx_skb->skb;
4226
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004227 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 tp->TxDescArray + entry);
4229 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004230 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 dev_kfree_skb(skb);
4232 tx_skb->skb = NULL;
4233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 }
4235 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004236}
4237
4238static void rtl8169_tx_clear(struct rtl8169_private *tp)
4239{
4240 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 tp->cur_tx = tp->dirty_tx = 0;
4242}
4243
David Howellsc4028952006-11-22 14:57:56 +00004244static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245{
4246 struct rtl8169_private *tp = netdev_priv(dev);
4247
David Howellsc4028952006-11-22 14:57:56 +00004248 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 schedule_delayed_work(&tp->task, 4);
4250}
4251
4252static void rtl8169_wait_for_quiescence(struct net_device *dev)
4253{
4254 struct rtl8169_private *tp = netdev_priv(dev);
4255 void __iomem *ioaddr = tp->mmio_addr;
4256
4257 synchronize_irq(dev->irq);
4258
4259 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004260 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261
4262 rtl8169_irq_mask_and_ack(ioaddr);
4263
David S. Millerd1d08d12008-01-07 20:53:33 -08004264 tp->intr_mask = 0xffff;
4265 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004266 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267}
4268
David Howellsc4028952006-11-22 14:57:56 +00004269static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270{
David Howellsc4028952006-11-22 14:57:56 +00004271 struct rtl8169_private *tp =
4272 container_of(work, struct rtl8169_private, task.work);
4273 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 int ret;
4275
Francois Romieueb2a0212007-02-15 23:37:21 +01004276 rtnl_lock();
4277
4278 if (!netif_running(dev))
4279 goto out_unlock;
4280
4281 rtl8169_wait_for_quiescence(dev);
4282 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283
4284 ret = rtl8169_open(dev);
4285 if (unlikely(ret < 0)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004286 if (net_ratelimit())
4287 netif_err(tp, drv, dev,
4288 "reinit failure (status = %d). Rescheduling\n",
4289 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 rtl8169_schedule_work(dev, rtl8169_reinit_task);
4291 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004292
4293out_unlock:
4294 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295}
4296
David Howellsc4028952006-11-22 14:57:56 +00004297static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298{
David Howellsc4028952006-11-22 14:57:56 +00004299 struct rtl8169_private *tp =
4300 container_of(work, struct rtl8169_private, task.work);
4301 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302
Francois Romieueb2a0212007-02-15 23:37:21 +01004303 rtnl_lock();
4304
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01004306 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
4308 rtl8169_wait_for_quiescence(dev);
4309
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004310 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, ~(u32)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 rtl8169_tx_clear(tp);
4312
4313 if (tp->dirty_rx == tp->cur_rx) {
4314 rtl8169_init_ring_indexes(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004315 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 netif_wake_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004317 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 } else {
Joe Perchesbf82c182010-02-09 11:49:50 +00004319 if (net_ratelimit())
4320 netif_emerg(tp, intr, dev, "Rx buffers shortage\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 rtl8169_schedule_work(dev, rtl8169_reset_task);
4322 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004323
4324out_unlock:
4325 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326}
4327
4328static void rtl8169_tx_timeout(struct net_device *dev)
4329{
4330 struct rtl8169_private *tp = netdev_priv(dev);
4331
françois romieue6de30d2011-01-03 15:08:37 +00004332 rtl8169_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333
4334 /* Let's wait a bit while any (async) irq lands on */
4335 rtl8169_schedule_work(dev, rtl8169_reset_task);
4336}
4337
4338static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
4339 u32 opts1)
4340{
4341 struct skb_shared_info *info = skb_shinfo(skb);
4342 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04004343 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004344 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
4346 entry = tp->cur_tx;
4347 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
4348 skb_frag_t *frag = info->frags + cur_frag;
4349 dma_addr_t mapping;
4350 u32 status, len;
4351 void *addr;
4352
4353 entry = (entry + 1) % NUM_TX_DESC;
4354
4355 txd = tp->TxDescArray + entry;
4356 len = frag->size;
4357 addr = ((void *) page_address(frag->page)) + frag->page_offset;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004358 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004359 if (unlikely(dma_mapping_error(d, mapping))) {
4360 if (net_ratelimit())
4361 netif_err(tp, drv, tp->dev,
4362 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004363 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
4366 /* anti gcc 2.95.3 bugware (sic) */
4367 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
4368
4369 txd->opts1 = cpu_to_le32(status);
4370 txd->addr = cpu_to_le64(mapping);
4371
4372 tp->tx_skb[entry].len = len;
4373 }
4374
4375 if (cur_frag) {
4376 tp->tx_skb[entry].skb = skb;
4377 txd->opts1 |= cpu_to_le32(LastFrag);
4378 }
4379
4380 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004381
4382err_out:
4383 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
4384 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385}
4386
4387static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
4388{
4389 if (dev->features & NETIF_F_TSO) {
Herbert Xu79671682006-06-22 02:40:14 -07004390 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391
4392 if (mss)
4393 return LargeSend | ((mss & MSSMask) << MSSShift);
4394 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07004395 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004396 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397
4398 if (ip->protocol == IPPROTO_TCP)
4399 return IPCS | TCPCS;
4400 else if (ip->protocol == IPPROTO_UDP)
4401 return IPCS | UDPCS;
4402 WARN_ON(1); /* we need a WARN() */
4403 }
4404 return 0;
4405}
4406
Stephen Hemminger613573252009-08-31 19:50:58 +00004407static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
4408 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409{
4410 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004411 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 struct TxDesc *txd = tp->TxDescArray + entry;
4413 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004414 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415 dma_addr_t mapping;
4416 u32 status, len;
4417 u32 opts1;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004418 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02004419
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004421 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004422 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 }
4424
4425 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004426 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004428 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004429 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004430 if (unlikely(dma_mapping_error(d, mapping))) {
4431 if (net_ratelimit())
4432 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004433 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435
4436 tp->tx_skb[entry].len = len;
4437 txd->addr = cpu_to_le64(mapping);
4438 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
4439
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004440 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
4441
4442 frags = rtl8169_xmit_frags(tp, skb, opts1);
4443 if (frags < 0)
4444 goto err_dma_1;
4445 else if (frags)
4446 opts1 |= FirstFrag;
4447 else {
4448 opts1 |= FirstFrag | LastFrag;
4449 tp->tx_skb[entry].skb = skb;
4450 }
4451
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 wmb();
4453
4454 /* anti gcc 2.95.3 bugware (sic) */
4455 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
4456 txd->opts1 = cpu_to_le32(status);
4457
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 tp->cur_tx += frags + 1;
4459
David Dillow4c020a92010-03-03 16:33:10 +00004460 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461
Francois Romieu275391a2007-02-23 23:50:28 +01004462 RTL_W8(TxPoll, NPQ); /* set polling bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
4464 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
4465 netif_stop_queue(dev);
4466 smp_rmb();
4467 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
4468 netif_wake_queue(dev);
4469 }
4470
Stephen Hemminger613573252009-08-31 19:50:58 +00004471 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004473err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004474 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004475err_dma_0:
4476 dev_kfree_skb(skb);
4477 dev->stats.tx_dropped++;
4478 return NETDEV_TX_OK;
4479
4480err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004482 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00004483 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484}
4485
4486static void rtl8169_pcierr_interrupt(struct net_device *dev)
4487{
4488 struct rtl8169_private *tp = netdev_priv(dev);
4489 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 u16 pci_status, pci_cmd;
4491
4492 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
4493 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
4494
Joe Perchesbf82c182010-02-09 11:49:50 +00004495 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
4496 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497
4498 /*
4499 * The recovery sequence below admits a very elaborated explanation:
4500 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01004501 * - I did not see what else could be done;
4502 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 *
4504 * Feel free to adjust to your needs.
4505 */
Francois Romieua27993f2006-12-18 00:04:19 +01004506 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01004507 pci_cmd &= ~PCI_COMMAND_PARITY;
4508 else
4509 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
4510
4511 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512
4513 pci_write_config_word(pdev, PCI_STATUS,
4514 pci_status & (PCI_STATUS_DETECTED_PARITY |
4515 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
4516 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
4517
4518 /* The infamous DAC f*ckup only happens at boot time */
4519 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00004520 void __iomem *ioaddr = tp->mmio_addr;
4521
Joe Perchesbf82c182010-02-09 11:49:50 +00004522 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 tp->cp_cmd &= ~PCIDAC;
4524 RTL_W16(CPlusCmd, tp->cp_cmd);
4525 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 }
4527
françois romieue6de30d2011-01-03 15:08:37 +00004528 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01004529
4530 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531}
4532
Francois Romieu07d3f512007-02-21 22:40:46 +01004533static void rtl8169_tx_interrupt(struct net_device *dev,
4534 struct rtl8169_private *tp,
4535 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536{
4537 unsigned int dirty_tx, tx_left;
4538
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 dirty_tx = tp->dirty_tx;
4540 smp_rmb();
4541 tx_left = tp->cur_tx - dirty_tx;
4542
4543 while (tx_left > 0) {
4544 unsigned int entry = dirty_tx % NUM_TX_DESC;
4545 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 u32 status;
4547
4548 rmb();
4549 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
4550 if (status & DescOwn)
4551 break;
4552
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004553 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
4554 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 if (status & LastFrag) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004556 dev->stats.tx_packets++;
4557 dev->stats.tx_bytes += tx_skb->skb->len;
Eric Dumazet87433bf2009-06-09 22:55:53 +00004558 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 tx_skb->skb = NULL;
4560 }
4561 dirty_tx++;
4562 tx_left--;
4563 }
4564
4565 if (tp->dirty_tx != dirty_tx) {
4566 tp->dirty_tx = dirty_tx;
4567 smp_wmb();
4568 if (netif_queue_stopped(dev) &&
4569 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
4570 netif_wake_queue(dev);
4571 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02004572 /*
4573 * 8168 hack: TxPoll requests are lost when the Tx packets are
4574 * too close. Let's kick an extra TxPoll request when a burst
4575 * of start_xmit activity is detected (if it is not detected,
4576 * it is slow enough). -- FR
4577 */
4578 smp_rmb();
4579 if (tp->cur_tx != dirty_tx)
4580 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 }
4582}
4583
Francois Romieu126fa4b2005-05-12 20:09:17 -04004584static inline int rtl8169_fragmented_frame(u32 status)
4585{
4586 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
4587}
4588
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004589static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 u32 status = opts1 & RxProtoMask;
4592
4593 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00004594 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 skb->ip_summed = CHECKSUM_UNNECESSARY;
4596 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07004597 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598}
4599
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004600static struct sk_buff *rtl8169_try_rx_copy(void *data,
4601 struct rtl8169_private *tp,
4602 int pkt_size,
4603 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004605 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004606 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004608 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004609 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004610 prefetch(data);
4611 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
4612 if (skb)
4613 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004614 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
4615
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004616 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617}
4618
Eric Dumazet630b9432010-03-31 02:08:31 +00004619/*
4620 * Warning : rtl8169_rx_interrupt() might be called :
4621 * 1) from NAPI (softirq) context
4622 * (polling = 1 : we should call netif_receive_skb())
4623 * 2) from process context (rtl8169_reset_task())
4624 * (polling = 0 : we must call netif_rx() instead)
4625 */
Francois Romieu07d3f512007-02-21 22:40:46 +01004626static int rtl8169_rx_interrupt(struct net_device *dev,
4627 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004628 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629{
4630 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004631 unsigned int count;
Eric Dumazet630b9432010-03-31 02:08:31 +00004632 int polling = (budget != ~(u32)0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 cur_rx = tp->cur_rx;
4635 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02004636 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004638 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004640 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 u32 status;
4642
4643 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04004644 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
4646 if (status & DescOwn)
4647 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004648 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004649 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
4650 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004651 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02004653 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02004655 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004656 if (status & RxFOVF) {
4657 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004658 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004659 }
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004660 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004662 struct sk_buff *skb;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004663 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 int pkt_size = (status & 0x00001FFF) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
Francois Romieu126fa4b2005-05-12 20:09:17 -04004666 /*
4667 * The driver does not support incoming fragmented
4668 * frames. They are seen as a symptom of over-mtu
4669 * sized frames.
4670 */
4671 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02004672 dev->stats.rx_dropped++;
4673 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004674 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004675 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004676 }
4677
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004678 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
4679 tp, pkt_size, addr);
4680 rtl8169_mark_to_asic(desc, rx_buf_sz);
4681 if (!skb) {
4682 dev->stats.rx_dropped++;
4683 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 }
4685
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004686 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 skb_put(skb, pkt_size);
4688 skb->protocol = eth_type_trans(skb, dev);
4689
Francois Romieu7a8fc772011-03-01 17:18:33 +01004690 rtl8169_rx_vlan_tag(desc, skb);
4691
4692 if (likely(polling))
4693 napi_gro_receive(&tp->napi, skb);
4694 else
4695 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696
Francois Romieucebf8cc2007-10-18 12:06:54 +02004697 dev->stats.rx_bytes += pkt_size;
4698 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 }
Francois Romieu6dccd162007-02-13 23:38:05 +01004700
4701 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00004702 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01004703 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
4704 desc->opts2 = 0;
4705 cur_rx++;
4706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 }
4708
4709 count = cur_rx - tp->cur_rx;
4710 tp->cur_rx = cur_rx;
4711
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004712 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
4714 return count;
4715}
4716
Francois Romieu07d3f512007-02-21 22:40:46 +01004717static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718{
Francois Romieu07d3f512007-02-21 22:40:46 +01004719 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02004723 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
David Dillowf11a3772009-05-22 15:29:34 +00004725 /* loop handling interrupts until we have no new ones or
4726 * we hit a invalid/hotplug case.
4727 */
Francois Romieu865c6522008-05-11 14:51:00 +02004728 status = RTL_R16(IntrStatus);
David Dillowf11a3772009-05-22 15:29:34 +00004729 while (status && status != 0xffff) {
4730 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731
David Dillowf11a3772009-05-22 15:29:34 +00004732 /* Handle all of the error cases first. These will reset
4733 * the chip, so just exit the loop.
4734 */
4735 if (unlikely(!netif_running(dev))) {
4736 rtl8169_asic_down(ioaddr);
4737 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 }
David Dillowf11a3772009-05-22 15:29:34 +00004739
Francois Romieu1519e572011-02-03 12:02:36 +01004740 if (unlikely(status & RxFIFOOver)) {
4741 switch (tp->mac_version) {
4742 /* Work around for rx fifo overflow */
4743 case RTL_GIGA_MAC_VER_11:
4744 case RTL_GIGA_MAC_VER_22:
4745 case RTL_GIGA_MAC_VER_26:
4746 netif_stop_queue(dev);
4747 rtl8169_tx_timeout(dev);
4748 goto done;
Francois Romieuf60ac8e2011-02-03 17:27:52 +01004749 /* Testers needed. */
4750 case RTL_GIGA_MAC_VER_17:
4751 case RTL_GIGA_MAC_VER_19:
4752 case RTL_GIGA_MAC_VER_20:
4753 case RTL_GIGA_MAC_VER_21:
4754 case RTL_GIGA_MAC_VER_23:
4755 case RTL_GIGA_MAC_VER_24:
4756 case RTL_GIGA_MAC_VER_27:
4757 case RTL_GIGA_MAC_VER_28:
Francois Romieu1519e572011-02-03 12:02:36 +01004758 /* Experimental science. Pktgen proof. */
4759 case RTL_GIGA_MAC_VER_12:
4760 case RTL_GIGA_MAC_VER_25:
4761 if (status == RxFIFOOver)
4762 goto done;
4763 break;
4764 default:
4765 break;
4766 }
David Dillowf11a3772009-05-22 15:29:34 +00004767 }
4768
4769 if (unlikely(status & SYSErr)) {
4770 rtl8169_pcierr_interrupt(dev);
4771 break;
4772 }
4773
4774 if (status & LinkChg)
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00004775 __rtl8169_check_link_status(dev, tp, ioaddr, true);
David Dillowf11a3772009-05-22 15:29:34 +00004776
4777 /* We need to see the lastest version of tp->intr_mask to
4778 * avoid ignoring an MSI interrupt and having to wait for
4779 * another event which may never come.
4780 */
4781 smp_rmb();
4782 if (status & tp->intr_mask & tp->napi_event) {
4783 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
4784 tp->intr_mask = ~tp->napi_event;
4785
4786 if (likely(napi_schedule_prep(&tp->napi)))
4787 __napi_schedule(&tp->napi);
Joe Perchesbf82c182010-02-09 11:49:50 +00004788 else
4789 netif_info(tp, intr, dev,
4790 "interrupt %04x in poll\n", status);
David Dillowf11a3772009-05-22 15:29:34 +00004791 }
4792
4793 /* We only get a new MSI interrupt when all active irq
4794 * sources on the chip have been acknowledged. So, ack
4795 * everything we've seen and check if new sources have become
4796 * active to avoid blocking all interrupts from the chip.
4797 */
4798 RTL_W16(IntrStatus,
4799 (status & RxFIFOOver) ? (status | RxOverflow) : status);
4800 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 }
Francois Romieu1519e572011-02-03 12:02:36 +01004802done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 return IRQ_RETVAL(handled);
4804}
4805
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004806static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004808 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
4809 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004811 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004813 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 rtl8169_tx_interrupt(dev, tp, ioaddr);
4815
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004816 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08004817 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00004818
4819 /* We need for force the visibility of tp->intr_mask
4820 * for other CPUs, as we can loose an MSI interrupt
4821 * and potentially wait for a retransmit timeout if we don't.
4822 * The posted write to IntrMask is safe, as it will
4823 * eventually make it to the chip and we won't loose anything
4824 * until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825 */
David Dillowf11a3772009-05-22 15:29:34 +00004826 tp->intr_mask = 0xffff;
David Dillow4c020a92010-03-03 16:33:10 +00004827 wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01004828 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 }
4830
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004831 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833
Francois Romieu523a6092008-09-10 22:28:56 +02004834static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
4835{
4836 struct rtl8169_private *tp = netdev_priv(dev);
4837
4838 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
4839 return;
4840
4841 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
4842 RTL_W32(RxMissed, 0);
4843}
4844
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845static void rtl8169_down(struct net_device *dev)
4846{
4847 struct rtl8169_private *tp = netdev_priv(dev);
4848 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849
4850 rtl8169_delete_timer(dev);
4851
4852 netif_stop_queue(dev);
4853
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004854 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004855
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 spin_lock_irq(&tp->lock);
4857
4858 rtl8169_asic_down(ioaddr);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004859 /*
4860 * At this point device interrupts can not be enabled in any function,
4861 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
4862 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
4863 */
Francois Romieu523a6092008-09-10 22:28:56 +02004864 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865
4866 spin_unlock_irq(&tp->lock);
4867
4868 synchronize_irq(dev->irq);
4869
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07004871 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 rtl8169_tx_clear(tp);
4874
4875 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00004876
4877 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878}
4879
4880static int rtl8169_close(struct net_device *dev)
4881{
4882 struct rtl8169_private *tp = netdev_priv(dev);
4883 struct pci_dev *pdev = tp->pci_dev;
4884
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004885 pm_runtime_get_sync(&pdev->dev);
4886
Ivan Vecera355423d2009-02-06 21:49:57 -08004887 /* update counters before going down */
4888 rtl8169_update_counters(dev);
4889
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 rtl8169_down(dev);
4891
4892 free_irq(dev->irq, dev);
4893
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00004894 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
4895 tp->RxPhyAddr);
4896 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
4897 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 tp->TxDescArray = NULL;
4899 tp->RxDescArray = NULL;
4900
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004901 pm_runtime_put_sync(&pdev->dev);
4902
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 return 0;
4904}
4905
Francois Romieu07ce4062007-02-23 23:36:39 +01004906static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907{
4908 struct rtl8169_private *tp = netdev_priv(dev);
4909 void __iomem *ioaddr = tp->mmio_addr;
4910 unsigned long flags;
4911 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01004912 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 u32 tmp = 0;
4914
4915 if (dev->flags & IFF_PROMISC) {
4916 /* Unconditionally log net taps. */
Joe Perchesbf82c182010-02-09 11:49:50 +00004917 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918 rx_mode =
4919 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4920 AcceptAllPhys;
4921 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00004922 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00004923 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 /* Too many to filter perfectly -- accept all multicasts. */
4925 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4926 mc_filter[1] = mc_filter[0] = 0xffffffff;
4927 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00004928 struct netdev_hw_addr *ha;
Francois Romieu07d3f512007-02-21 22:40:46 +01004929
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 rx_mode = AcceptBroadcast | AcceptMyPhys;
4931 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00004932 netdev_for_each_mc_addr(ha, dev) {
4933 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4935 rx_mode |= AcceptMulticast;
4936 }
4937 }
4938
4939 spin_lock_irqsave(&tp->lock, flags);
4940
4941 tmp = rtl8169_rx_config | rx_mode |
4942 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
4943
Francois Romieuf887cce2008-07-17 22:24:18 +02004944 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01004945 u32 data = mc_filter[0];
4946
4947 mc_filter[0] = swab32(mc_filter[1]);
4948 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02004949 }
4950
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 RTL_W32(MAR0 + 4, mc_filter[1]);
Francois Romieu78f1cd02010-03-27 19:35:46 -07004952 RTL_W32(MAR0 + 0, mc_filter[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953
Francois Romieu57a9f232007-06-04 22:10:15 +02004954 RTL_W32(RxConfig, tmp);
4955
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 spin_unlock_irqrestore(&tp->lock, flags);
4957}
4958
4959/**
4960 * rtl8169_get_stats - Get rtl8169 read/write statistics
4961 * @dev: The Ethernet Device to get statistics for
4962 *
4963 * Get TX/RX statistics for rtl8169
4964 */
4965static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
4966{
4967 struct rtl8169_private *tp = netdev_priv(dev);
4968 void __iomem *ioaddr = tp->mmio_addr;
4969 unsigned long flags;
4970
4971 if (netif_running(dev)) {
4972 spin_lock_irqsave(&tp->lock, flags);
Francois Romieu523a6092008-09-10 22:28:56 +02004973 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 spin_unlock_irqrestore(&tp->lock, flags);
4975 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02004976
Francois Romieucebf8cc2007-10-18 12:06:54 +02004977 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978}
4979
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004980static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01004981{
françois romieu065c27c2011-01-03 15:08:12 +00004982 struct rtl8169_private *tp = netdev_priv(dev);
4983
Francois Romieu5d06a992006-02-23 00:47:58 +01004984 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004985 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01004986
françois romieu065c27c2011-01-03 15:08:12 +00004987 rtl_pll_power_down(tp);
4988
Francois Romieu5d06a992006-02-23 00:47:58 +01004989 netif_device_detach(dev);
4990 netif_stop_queue(dev);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004991}
Francois Romieu5d06a992006-02-23 00:47:58 +01004992
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004993#ifdef CONFIG_PM
4994
4995static int rtl8169_suspend(struct device *device)
4996{
4997 struct pci_dev *pdev = to_pci_dev(device);
4998 struct net_device *dev = pci_get_drvdata(pdev);
4999
5000 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02005001
Francois Romieu5d06a992006-02-23 00:47:58 +01005002 return 0;
5003}
5004
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005005static void __rtl8169_resume(struct net_device *dev)
5006{
françois romieu065c27c2011-01-03 15:08:12 +00005007 struct rtl8169_private *tp = netdev_priv(dev);
5008
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005009 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00005010
5011 rtl_pll_power_up(tp);
5012
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005013 rtl8169_schedule_work(dev, rtl8169_reset_task);
5014}
5015
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005016static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01005017{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005018 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01005019 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005020 struct rtl8169_private *tp = netdev_priv(dev);
5021
5022 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01005023
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005024 if (netif_running(dev))
5025 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01005026
Francois Romieu5d06a992006-02-23 00:47:58 +01005027 return 0;
5028}
5029
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005030static int rtl8169_runtime_suspend(struct device *device)
5031{
5032 struct pci_dev *pdev = to_pci_dev(device);
5033 struct net_device *dev = pci_get_drvdata(pdev);
5034 struct rtl8169_private *tp = netdev_priv(dev);
5035
5036 if (!tp->TxDescArray)
5037 return 0;
5038
5039 spin_lock_irq(&tp->lock);
5040 tp->saved_wolopts = __rtl8169_get_wol(tp);
5041 __rtl8169_set_wol(tp, WAKE_ANY);
5042 spin_unlock_irq(&tp->lock);
5043
5044 rtl8169_net_suspend(dev);
5045
5046 return 0;
5047}
5048
5049static int rtl8169_runtime_resume(struct device *device)
5050{
5051 struct pci_dev *pdev = to_pci_dev(device);
5052 struct net_device *dev = pci_get_drvdata(pdev);
5053 struct rtl8169_private *tp = netdev_priv(dev);
5054
5055 if (!tp->TxDescArray)
5056 return 0;
5057
5058 spin_lock_irq(&tp->lock);
5059 __rtl8169_set_wol(tp, tp->saved_wolopts);
5060 tp->saved_wolopts = 0;
5061 spin_unlock_irq(&tp->lock);
5062
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005063 rtl8169_init_phy(dev, tp);
5064
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005065 __rtl8169_resume(dev);
5066
5067 return 0;
5068}
5069
5070static int rtl8169_runtime_idle(struct device *device)
5071{
5072 struct pci_dev *pdev = to_pci_dev(device);
5073 struct net_device *dev = pci_get_drvdata(pdev);
5074 struct rtl8169_private *tp = netdev_priv(dev);
5075
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00005076 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005077}
5078
Alexey Dobriyan47145212009-12-14 18:00:08 -08005079static const struct dev_pm_ops rtl8169_pm_ops = {
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005080 .suspend = rtl8169_suspend,
5081 .resume = rtl8169_resume,
5082 .freeze = rtl8169_suspend,
5083 .thaw = rtl8169_resume,
5084 .poweroff = rtl8169_suspend,
5085 .restore = rtl8169_resume,
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005086 .runtime_suspend = rtl8169_runtime_suspend,
5087 .runtime_resume = rtl8169_runtime_resume,
5088 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005089};
5090
5091#define RTL8169_PM_OPS (&rtl8169_pm_ops)
5092
5093#else /* !CONFIG_PM */
5094
5095#define RTL8169_PM_OPS NULL
5096
5097#endif /* !CONFIG_PM */
5098
Francois Romieu1765f952008-09-13 17:21:40 +02005099static void rtl_shutdown(struct pci_dev *pdev)
5100{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005101 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00005102 struct rtl8169_private *tp = netdev_priv(dev);
5103 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu1765f952008-09-13 17:21:40 +02005104
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005105 rtl8169_net_suspend(dev);
5106
Ivan Veceracc098dc2009-11-29 23:12:52 -08005107 /* restore original MAC address */
5108 rtl_rar_set(tp, dev->perm_addr);
5109
françois romieu4bb3f522009-06-17 11:41:45 +00005110 spin_lock_irq(&tp->lock);
5111
5112 rtl8169_asic_down(ioaddr);
5113
5114 spin_unlock_irq(&tp->lock);
5115
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005116 if (system_state == SYSTEM_POWER_OFF) {
françois romieuca52efd2009-07-24 12:34:19 +00005117 /* WoL fails with some 8168 when the receiver is disabled. */
5118 if (tp->features & RTL_FEATURE_WOL) {
5119 pci_clear_master(pdev);
5120
5121 RTL_W8(ChipCmd, CmdRxEnb);
5122 /* PCI commit */
5123 RTL_R8(ChipCmd);
5124 }
5125
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005126 pci_wake_from_d3(pdev, true);
5127 pci_set_power_state(pdev, PCI_D3hot);
5128 }
5129}
Francois Romieu5d06a992006-02-23 00:47:58 +01005130
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131static struct pci_driver rtl8169_pci_driver = {
5132 .name = MODULENAME,
5133 .id_table = rtl8169_pci_tbl,
5134 .probe = rtl8169_init_one,
5135 .remove = __devexit_p(rtl8169_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02005136 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005137 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138};
5139
Francois Romieu07d3f512007-02-21 22:40:46 +01005140static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141{
Jeff Garzik29917622006-08-19 17:48:59 -04005142 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143}
5144
Francois Romieu07d3f512007-02-21 22:40:46 +01005145static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146{
5147 pci_unregister_driver(&rtl8169_pci_driver);
5148}
5149
5150module_init(rtl8169_init_module);
5151module_exit(rtl8169_cleanup_module);