blob: 0111a143c99256aa8a267cf2809609f759134053 [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 Romieu99f252b2007-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 Romieu99f252b2007-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. */
hayeswang36a0e6c2011-03-21 01:50:30 +00001577 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08001578 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
1579 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
1580 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001581 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1582 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1583 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1584 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1585 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1586 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001587 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001588 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001589 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001590 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1591 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001592 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1593 /* FIXME: where did these entries come from ? -- FR */
1594 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1595 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1596
1597 /* 8110 family. */
1598 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1599 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1600 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1601 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1602 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1603 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1604
Jean Delvaref21b75e2009-05-26 20:54:48 -07001605 /* Catch-all */
1606 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 }, *p = mac_info;
1608 u32 reg;
1609
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001610 reg = RTL_R32(TxConfig);
1611 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 p++;
1613 tp->mac_version = p->mac_version;
1614}
1615
1616static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1617{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001618 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
Francois Romieu867763c2007-08-17 18:21:58 +02001621struct phy_reg {
1622 u16 reg;
1623 u16 val;
1624};
1625
françois romieu4da19632011-01-03 15:07:55 +00001626static void rtl_writephy_batch(struct rtl8169_private *tp,
1627 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001628{
1629 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001630 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001631 regs++;
1632 }
1633}
1634
françois romieubca03d52011-01-03 15:07:31 +00001635#define PHY_READ 0x00000000
1636#define PHY_DATA_OR 0x10000000
1637#define PHY_DATA_AND 0x20000000
1638#define PHY_BJMPN 0x30000000
1639#define PHY_READ_EFUSE 0x40000000
1640#define PHY_READ_MAC_BYTE 0x50000000
1641#define PHY_WRITE_MAC_BYTE 0x60000000
1642#define PHY_CLEAR_READCOUNT 0x70000000
1643#define PHY_WRITE 0x80000000
1644#define PHY_READCOUNT_EQ_SKIP 0x90000000
1645#define PHY_COMP_EQ_SKIPN 0xa0000000
1646#define PHY_COMP_NEQ_SKIPN 0xb0000000
1647#define PHY_WRITE_PREVIOUS 0xc0000000
1648#define PHY_SKIPN 0xd0000000
1649#define PHY_DELAY_MS 0xe0000000
1650#define PHY_WRITE_ERI_WORD 0xf0000000
1651
1652static void
1653rtl_phy_write_fw(struct rtl8169_private *tp, const struct firmware *fw)
1654{
françois romieubca03d52011-01-03 15:07:31 +00001655 __le32 *phytable = (__le32 *)fw->data;
1656 struct net_device *dev = tp->dev;
hayeswang42b82dc2011-01-10 02:07:25 +00001657 size_t index, fw_size = fw->size / sizeof(*phytable);
1658 u32 predata, count;
françois romieubca03d52011-01-03 15:07:31 +00001659
1660 if (fw->size % sizeof(*phytable)) {
1661 netif_err(tp, probe, dev, "odd sized firmware %zd\n", fw->size);
1662 return;
1663 }
1664
hayeswang42b82dc2011-01-10 02:07:25 +00001665 for (index = 0; index < fw_size; index++) {
1666 u32 action = le32_to_cpu(phytable[index]);
1667 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00001668
hayeswang42b82dc2011-01-10 02:07:25 +00001669 switch(action & 0xf0000000) {
1670 case PHY_READ:
1671 case PHY_DATA_OR:
1672 case PHY_DATA_AND:
1673 case PHY_READ_EFUSE:
1674 case PHY_CLEAR_READCOUNT:
1675 case PHY_WRITE:
1676 case PHY_WRITE_PREVIOUS:
1677 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00001678 break;
1679
hayeswang42b82dc2011-01-10 02:07:25 +00001680 case PHY_BJMPN:
1681 if (regno > index) {
1682 netif_err(tp, probe, tp->dev,
1683 "Out of range of firmware\n");
1684 return;
1685 }
1686 break;
1687 case PHY_READCOUNT_EQ_SKIP:
1688 if (index + 2 >= fw_size) {
1689 netif_err(tp, probe, tp->dev,
1690 "Out of range of firmware\n");
1691 return;
1692 }
1693 break;
1694 case PHY_COMP_EQ_SKIPN:
1695 case PHY_COMP_NEQ_SKIPN:
1696 case PHY_SKIPN:
1697 if (index + 1 + regno >= fw_size) {
1698 netif_err(tp, probe, tp->dev,
1699 "Out of range of firmware\n");
1700 return;
1701 }
1702 break;
1703
1704 case PHY_READ_MAC_BYTE:
1705 case PHY_WRITE_MAC_BYTE:
1706 case PHY_WRITE_ERI_WORD:
1707 default:
1708 netif_err(tp, probe, tp->dev,
1709 "Invalid action 0x%08x\n", action);
françois romieubca03d52011-01-03 15:07:31 +00001710 return;
1711 }
1712 }
1713
hayeswang42b82dc2011-01-10 02:07:25 +00001714 predata = 0;
1715 count = 0;
1716
1717 for (index = 0; index < fw_size; ) {
1718 u32 action = le32_to_cpu(phytable[index]);
françois romieubca03d52011-01-03 15:07:31 +00001719 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00001720 u32 regno = (action & 0x0fff0000) >> 16;
1721
1722 if (!action)
1723 break;
françois romieubca03d52011-01-03 15:07:31 +00001724
1725 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00001726 case PHY_READ:
1727 predata = rtl_readphy(tp, regno);
1728 count++;
1729 index++;
françois romieubca03d52011-01-03 15:07:31 +00001730 break;
hayeswang42b82dc2011-01-10 02:07:25 +00001731 case PHY_DATA_OR:
1732 predata |= data;
1733 index++;
1734 break;
1735 case PHY_DATA_AND:
1736 predata &= data;
1737 index++;
1738 break;
1739 case PHY_BJMPN:
1740 index -= regno;
1741 break;
1742 case PHY_READ_EFUSE:
1743 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
1744 index++;
1745 break;
1746 case PHY_CLEAR_READCOUNT:
1747 count = 0;
1748 index++;
1749 break;
1750 case PHY_WRITE:
1751 rtl_writephy(tp, regno, data);
1752 index++;
1753 break;
1754 case PHY_READCOUNT_EQ_SKIP:
1755 if (count == data)
1756 index += 2;
1757 else
1758 index += 1;
1759 break;
1760 case PHY_COMP_EQ_SKIPN:
1761 if (predata == data)
1762 index += regno;
1763 index++;
1764 break;
1765 case PHY_COMP_NEQ_SKIPN:
1766 if (predata != data)
1767 index += regno;
1768 index++;
1769 break;
1770 case PHY_WRITE_PREVIOUS:
1771 rtl_writephy(tp, regno, predata);
1772 index++;
1773 break;
1774 case PHY_SKIPN:
1775 index += regno + 1;
1776 break;
1777 case PHY_DELAY_MS:
1778 mdelay(data);
1779 index++;
1780 break;
1781
1782 case PHY_READ_MAC_BYTE:
1783 case PHY_WRITE_MAC_BYTE:
1784 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00001785 default:
1786 BUG();
1787 }
1788 }
1789}
1790
françois romieuf1e02ed2011-01-13 13:07:53 +00001791static void rtl_release_firmware(struct rtl8169_private *tp)
1792{
1793 release_firmware(tp->fw);
1794 tp->fw = NULL;
1795}
1796
1797static int rtl_apply_firmware(struct rtl8169_private *tp, const char *fw_name)
1798{
1799 const struct firmware **fw = &tp->fw;
1800 int rc = !*fw;
1801
1802 if (rc) {
1803 rc = request_firmware(fw, fw_name, &tp->pci_dev->dev);
1804 if (rc < 0)
1805 goto out;
1806 }
1807
1808 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
1809 rtl_phy_write_fw(tp, *fw);
1810out:
1811 return rc;
1812}
1813
françois romieu4da19632011-01-03 15:07:55 +00001814static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001816 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00001817 { 0x1f, 0x0001 },
1818 { 0x06, 0x006e },
1819 { 0x08, 0x0708 },
1820 { 0x15, 0x4000 },
1821 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
françois romieu0b9b5712009-08-10 19:44:56 +00001823 { 0x1f, 0x0001 },
1824 { 0x03, 0x00a1 },
1825 { 0x02, 0x0008 },
1826 { 0x01, 0x0120 },
1827 { 0x00, 0x1000 },
1828 { 0x04, 0x0800 },
1829 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
françois romieu0b9b5712009-08-10 19:44:56 +00001831 { 0x03, 0xff41 },
1832 { 0x02, 0xdf60 },
1833 { 0x01, 0x0140 },
1834 { 0x00, 0x0077 },
1835 { 0x04, 0x7800 },
1836 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
françois romieu0b9b5712009-08-10 19:44:56 +00001838 { 0x03, 0x802f },
1839 { 0x02, 0x4f02 },
1840 { 0x01, 0x0409 },
1841 { 0x00, 0xf0f9 },
1842 { 0x04, 0x9800 },
1843 { 0x04, 0x9000 },
1844
1845 { 0x03, 0xdf01 },
1846 { 0x02, 0xdf20 },
1847 { 0x01, 0xff95 },
1848 { 0x00, 0xba00 },
1849 { 0x04, 0xa800 },
1850 { 0x04, 0xa000 },
1851
1852 { 0x03, 0xff41 },
1853 { 0x02, 0xdf20 },
1854 { 0x01, 0x0140 },
1855 { 0x00, 0x00bb },
1856 { 0x04, 0xb800 },
1857 { 0x04, 0xb000 },
1858
1859 { 0x03, 0xdf41 },
1860 { 0x02, 0xdc60 },
1861 { 0x01, 0x6340 },
1862 { 0x00, 0x007d },
1863 { 0x04, 0xd800 },
1864 { 0x04, 0xd000 },
1865
1866 { 0x03, 0xdf01 },
1867 { 0x02, 0xdf20 },
1868 { 0x01, 0x100a },
1869 { 0x00, 0xa0ff },
1870 { 0x04, 0xf800 },
1871 { 0x04, 0xf000 },
1872
1873 { 0x1f, 0x0000 },
1874 { 0x0b, 0x0000 },
1875 { 0x00, 0x9200 }
1876 };
1877
françois romieu4da19632011-01-03 15:07:55 +00001878 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880
françois romieu4da19632011-01-03 15:07:55 +00001881static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02001882{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001883 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02001884 { 0x1f, 0x0002 },
1885 { 0x01, 0x90d0 },
1886 { 0x1f, 0x0000 }
1887 };
1888
françois romieu4da19632011-01-03 15:07:55 +00001889 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02001890}
1891
françois romieu4da19632011-01-03 15:07:55 +00001892static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001893{
1894 struct pci_dev *pdev = tp->pci_dev;
1895 u16 vendor_id, device_id;
1896
1897 pci_read_config_word(pdev, PCI_SUBSYSTEM_VENDOR_ID, &vendor_id);
1898 pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &device_id);
1899
1900 if ((vendor_id != PCI_VENDOR_ID_GIGABYTE) || (device_id != 0xe000))
1901 return;
1902
françois romieu4da19632011-01-03 15:07:55 +00001903 rtl_writephy(tp, 0x1f, 0x0001);
1904 rtl_writephy(tp, 0x10, 0xf01b);
1905 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00001906}
1907
françois romieu4da19632011-01-03 15:07:55 +00001908static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00001909{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001910 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00001911 { 0x1f, 0x0001 },
1912 { 0x04, 0x0000 },
1913 { 0x03, 0x00a1 },
1914 { 0x02, 0x0008 },
1915 { 0x01, 0x0120 },
1916 { 0x00, 0x1000 },
1917 { 0x04, 0x0800 },
1918 { 0x04, 0x9000 },
1919 { 0x03, 0x802f },
1920 { 0x02, 0x4f02 },
1921 { 0x01, 0x0409 },
1922 { 0x00, 0xf099 },
1923 { 0x04, 0x9800 },
1924 { 0x04, 0xa000 },
1925 { 0x03, 0xdf01 },
1926 { 0x02, 0xdf20 },
1927 { 0x01, 0xff95 },
1928 { 0x00, 0xba00 },
1929 { 0x04, 0xa800 },
1930 { 0x04, 0xf000 },
1931 { 0x03, 0xdf01 },
1932 { 0x02, 0xdf20 },
1933 { 0x01, 0x101a },
1934 { 0x00, 0xa0ff },
1935 { 0x04, 0xf800 },
1936 { 0x04, 0x0000 },
1937 { 0x1f, 0x0000 },
1938
1939 { 0x1f, 0x0001 },
1940 { 0x10, 0xf41b },
1941 { 0x14, 0xfb54 },
1942 { 0x18, 0xf5c7 },
1943 { 0x1f, 0x0000 },
1944
1945 { 0x1f, 0x0001 },
1946 { 0x17, 0x0cc0 },
1947 { 0x1f, 0x0000 }
1948 };
1949
françois romieu4da19632011-01-03 15:07:55 +00001950 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00001951
françois romieu4da19632011-01-03 15:07:55 +00001952 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00001953}
1954
françois romieu4da19632011-01-03 15:07:55 +00001955static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00001956{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001957 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00001958 { 0x1f, 0x0001 },
1959 { 0x04, 0x0000 },
1960 { 0x03, 0x00a1 },
1961 { 0x02, 0x0008 },
1962 { 0x01, 0x0120 },
1963 { 0x00, 0x1000 },
1964 { 0x04, 0x0800 },
1965 { 0x04, 0x9000 },
1966 { 0x03, 0x802f },
1967 { 0x02, 0x4f02 },
1968 { 0x01, 0x0409 },
1969 { 0x00, 0xf099 },
1970 { 0x04, 0x9800 },
1971 { 0x04, 0xa000 },
1972 { 0x03, 0xdf01 },
1973 { 0x02, 0xdf20 },
1974 { 0x01, 0xff95 },
1975 { 0x00, 0xba00 },
1976 { 0x04, 0xa800 },
1977 { 0x04, 0xf000 },
1978 { 0x03, 0xdf01 },
1979 { 0x02, 0xdf20 },
1980 { 0x01, 0x101a },
1981 { 0x00, 0xa0ff },
1982 { 0x04, 0xf800 },
1983 { 0x04, 0x0000 },
1984 { 0x1f, 0x0000 },
1985
1986 { 0x1f, 0x0001 },
1987 { 0x0b, 0x8480 },
1988 { 0x1f, 0x0000 },
1989
1990 { 0x1f, 0x0001 },
1991 { 0x18, 0x67c7 },
1992 { 0x04, 0x2000 },
1993 { 0x03, 0x002f },
1994 { 0x02, 0x4360 },
1995 { 0x01, 0x0109 },
1996 { 0x00, 0x3022 },
1997 { 0x04, 0x2800 },
1998 { 0x1f, 0x0000 },
1999
2000 { 0x1f, 0x0001 },
2001 { 0x17, 0x0cc0 },
2002 { 0x1f, 0x0000 }
2003 };
2004
françois romieu4da19632011-01-03 15:07:55 +00002005 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002006}
2007
françois romieu4da19632011-01-03 15:07:55 +00002008static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002009{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002010 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002011 { 0x10, 0xf41b },
2012 { 0x1f, 0x0000 }
2013 };
2014
françois romieu4da19632011-01-03 15:07:55 +00002015 rtl_writephy(tp, 0x1f, 0x0001);
2016 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002017
françois romieu4da19632011-01-03 15:07:55 +00002018 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002019}
2020
françois romieu4da19632011-01-03 15:07:55 +00002021static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002022{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002023 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002024 { 0x1f, 0x0001 },
2025 { 0x10, 0xf41b },
2026 { 0x1f, 0x0000 }
2027 };
2028
françois romieu4da19632011-01-03 15:07:55 +00002029 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002030}
2031
françois romieu4da19632011-01-03 15:07:55 +00002032static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002033{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002034 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002035 { 0x1f, 0x0000 },
2036 { 0x1d, 0x0f00 },
2037 { 0x1f, 0x0002 },
2038 { 0x0c, 0x1ec8 },
2039 { 0x1f, 0x0000 }
2040 };
2041
françois romieu4da19632011-01-03 15:07:55 +00002042 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002043}
2044
françois romieu4da19632011-01-03 15:07:55 +00002045static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002046{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002047 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002048 { 0x1f, 0x0001 },
2049 { 0x1d, 0x3d98 },
2050 { 0x1f, 0x0000 }
2051 };
2052
françois romieu4da19632011-01-03 15:07:55 +00002053 rtl_writephy(tp, 0x1f, 0x0000);
2054 rtl_patchphy(tp, 0x14, 1 << 5);
2055 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002056
françois romieu4da19632011-01-03 15:07:55 +00002057 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002058}
2059
françois romieu4da19632011-01-03 15:07:55 +00002060static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002061{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002062 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002063 { 0x1f, 0x0001 },
2064 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002065 { 0x1f, 0x0002 },
2066 { 0x00, 0x88d4 },
2067 { 0x01, 0x82b1 },
2068 { 0x03, 0x7002 },
2069 { 0x08, 0x9e30 },
2070 { 0x09, 0x01f0 },
2071 { 0x0a, 0x5500 },
2072 { 0x0c, 0x00c8 },
2073 { 0x1f, 0x0003 },
2074 { 0x12, 0xc096 },
2075 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002076 { 0x1f, 0x0000 },
2077 { 0x1f, 0x0000 },
2078 { 0x09, 0x2000 },
2079 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002080 };
2081
françois romieu4da19632011-01-03 15:07:55 +00002082 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002083
françois romieu4da19632011-01-03 15:07:55 +00002084 rtl_patchphy(tp, 0x14, 1 << 5);
2085 rtl_patchphy(tp, 0x0d, 1 << 5);
2086 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002087}
2088
françois romieu4da19632011-01-03 15:07:55 +00002089static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002090{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002091 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002092 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002093 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002094 { 0x03, 0x802f },
2095 { 0x02, 0x4f02 },
2096 { 0x01, 0x0409 },
2097 { 0x00, 0xf099 },
2098 { 0x04, 0x9800 },
2099 { 0x04, 0x9000 },
2100 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002101 { 0x1f, 0x0002 },
2102 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002103 { 0x06, 0x0761 },
2104 { 0x1f, 0x0003 },
2105 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002106 { 0x1f, 0x0000 }
2107 };
2108
françois romieu4da19632011-01-03 15:07:55 +00002109 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002110
françois romieu4da19632011-01-03 15:07:55 +00002111 rtl_patchphy(tp, 0x16, 1 << 0);
2112 rtl_patchphy(tp, 0x14, 1 << 5);
2113 rtl_patchphy(tp, 0x0d, 1 << 5);
2114 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002115}
2116
françois romieu4da19632011-01-03 15:07:55 +00002117static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002118{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002119 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002120 { 0x1f, 0x0001 },
2121 { 0x12, 0x2300 },
2122 { 0x1d, 0x3d98 },
2123 { 0x1f, 0x0002 },
2124 { 0x0c, 0x7eb8 },
2125 { 0x06, 0x5461 },
2126 { 0x1f, 0x0003 },
2127 { 0x16, 0x0f0a },
2128 { 0x1f, 0x0000 }
2129 };
2130
françois romieu4da19632011-01-03 15:07:55 +00002131 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002132
françois romieu4da19632011-01-03 15:07:55 +00002133 rtl_patchphy(tp, 0x16, 1 << 0);
2134 rtl_patchphy(tp, 0x14, 1 << 5);
2135 rtl_patchphy(tp, 0x0d, 1 << 5);
2136 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002137}
2138
françois romieu4da19632011-01-03 15:07:55 +00002139static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002140{
françois romieu4da19632011-01-03 15:07:55 +00002141 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002142}
2143
françois romieubca03d52011-01-03 15:07:31 +00002144static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002145{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002146 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002147 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002148 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002149 { 0x06, 0x4064 },
2150 { 0x07, 0x2863 },
2151 { 0x08, 0x059c },
2152 { 0x09, 0x26b4 },
2153 { 0x0a, 0x6a19 },
2154 { 0x0b, 0xdcc8 },
2155 { 0x10, 0xf06d },
2156 { 0x14, 0x7f68 },
2157 { 0x18, 0x7fd9 },
2158 { 0x1c, 0xf0ff },
2159 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002160 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002161 { 0x12, 0xf49f },
2162 { 0x13, 0x070b },
2163 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002164 { 0x14, 0x94c0 },
2165
2166 /*
2167 * Tx Error Issue
2168 * enhance line driver power
2169 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002170 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002171 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002172 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002173 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002174 { 0x06, 0x5561 },
2175
2176 /*
2177 * Can not link to 1Gbps with bad cable
2178 * Decrease SNR threshold form 21.07dB to 19.04dB
2179 */
2180 { 0x1f, 0x0001 },
2181 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002182
2183 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002184 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002185 };
françois romieubca03d52011-01-03 15:07:31 +00002186 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu5b538df2008-07-20 16:22:45 +02002187
françois romieu4da19632011-01-03 15:07:55 +00002188 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002189
françois romieubca03d52011-01-03 15:07:31 +00002190 /*
2191 * Rx Error Issue
2192 * Fine Tune Switching regulator parameter
2193 */
françois romieu4da19632011-01-03 15:07:55 +00002194 rtl_writephy(tp, 0x1f, 0x0002);
2195 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2196 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002197
françois romieudaf9df62009-10-07 12:44:20 +00002198 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002199 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002200 { 0x1f, 0x0002 },
2201 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002202 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002203 { 0x05, 0x8330 },
2204 { 0x06, 0x669a },
2205 { 0x1f, 0x0002 }
2206 };
2207 int val;
2208
françois romieu4da19632011-01-03 15:07:55 +00002209 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002210
françois romieu4da19632011-01-03 15:07:55 +00002211 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002212
2213 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002214 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002215 0x0065, 0x0066, 0x0067, 0x0068,
2216 0x0069, 0x006a, 0x006b, 0x006c
2217 };
2218 int i;
2219
françois romieu4da19632011-01-03 15:07:55 +00002220 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002221
2222 val &= 0xff00;
2223 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002224 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002225 }
2226 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002227 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002228 { 0x1f, 0x0002 },
2229 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002230 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002231 { 0x05, 0x8330 },
2232 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002233 };
2234
françois romieu4da19632011-01-03 15:07:55 +00002235 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002236 }
2237
françois romieubca03d52011-01-03 15:07:31 +00002238 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002239 rtl_writephy(tp, 0x1f, 0x0002);
2240 rtl_patchphy(tp, 0x0d, 0x0300);
2241 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002242
françois romieubca03d52011-01-03 15:07:31 +00002243 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002244 rtl_writephy(tp, 0x1f, 0x0002);
2245 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2246 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002247
françois romieu4da19632011-01-03 15:07:55 +00002248 rtl_writephy(tp, 0x1f, 0x0005);
2249 rtl_writephy(tp, 0x05, 0x001b);
françois romieuf1e02ed2011-01-13 13:07:53 +00002250 if ((rtl_readphy(tp, 0x06) != 0xbf00) ||
2251 (rtl_apply_firmware(tp, FIRMWARE_8168D_1) < 0)) {
françois romieubca03d52011-01-03 15:07:31 +00002252 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2253 }
2254
françois romieu4da19632011-01-03 15:07:55 +00002255 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002256}
2257
françois romieubca03d52011-01-03 15:07:31 +00002258static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002259{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002260 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002261 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002262 { 0x1f, 0x0001 },
2263 { 0x06, 0x4064 },
2264 { 0x07, 0x2863 },
2265 { 0x08, 0x059c },
2266 { 0x09, 0x26b4 },
2267 { 0x0a, 0x6a19 },
2268 { 0x0b, 0xdcc8 },
2269 { 0x10, 0xf06d },
2270 { 0x14, 0x7f68 },
2271 { 0x18, 0x7fd9 },
2272 { 0x1c, 0xf0ff },
2273 { 0x1d, 0x3d9c },
2274 { 0x1f, 0x0003 },
2275 { 0x12, 0xf49f },
2276 { 0x13, 0x070b },
2277 { 0x1a, 0x05ad },
2278 { 0x14, 0x94c0 },
2279
françois romieubca03d52011-01-03 15:07:31 +00002280 /*
2281 * Tx Error Issue
2282 * enhance line driver power
2283 */
françois romieudaf9df62009-10-07 12:44:20 +00002284 { 0x1f, 0x0002 },
2285 { 0x06, 0x5561 },
2286 { 0x1f, 0x0005 },
2287 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002288 { 0x06, 0x5561 },
2289
2290 /*
2291 * Can not link to 1Gbps with bad cable
2292 * Decrease SNR threshold form 21.07dB to 19.04dB
2293 */
2294 { 0x1f, 0x0001 },
2295 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002296
2297 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002298 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002299 };
françois romieubca03d52011-01-03 15:07:31 +00002300 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00002301
françois romieu4da19632011-01-03 15:07:55 +00002302 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002303
2304 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002305 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002306 { 0x1f, 0x0002 },
2307 { 0x05, 0x669a },
2308 { 0x1f, 0x0005 },
2309 { 0x05, 0x8330 },
2310 { 0x06, 0x669a },
2311
2312 { 0x1f, 0x0002 }
2313 };
2314 int val;
2315
françois romieu4da19632011-01-03 15:07:55 +00002316 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002317
françois romieu4da19632011-01-03 15:07:55 +00002318 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002319 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002320 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002321 0x0065, 0x0066, 0x0067, 0x0068,
2322 0x0069, 0x006a, 0x006b, 0x006c
2323 };
2324 int i;
2325
françois romieu4da19632011-01-03 15:07:55 +00002326 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002327
2328 val &= 0xff00;
2329 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002330 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002331 }
2332 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002333 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002334 { 0x1f, 0x0002 },
2335 { 0x05, 0x2642 },
2336 { 0x1f, 0x0005 },
2337 { 0x05, 0x8330 },
2338 { 0x06, 0x2642 }
2339 };
2340
françois romieu4da19632011-01-03 15:07:55 +00002341 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002342 }
2343
françois romieubca03d52011-01-03 15:07:31 +00002344 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002345 rtl_writephy(tp, 0x1f, 0x0002);
2346 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2347 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002348
françois romieubca03d52011-01-03 15:07:31 +00002349 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002350 rtl_writephy(tp, 0x1f, 0x0002);
2351 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002352
françois romieu4da19632011-01-03 15:07:55 +00002353 rtl_writephy(tp, 0x1f, 0x0005);
2354 rtl_writephy(tp, 0x05, 0x001b);
françois romieuf1e02ed2011-01-13 13:07:53 +00002355 if ((rtl_readphy(tp, 0x06) != 0xb300) ||
2356 (rtl_apply_firmware(tp, FIRMWARE_8168D_2) < 0)) {
françois romieubca03d52011-01-03 15:07:31 +00002357 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2358 }
2359
françois romieu4da19632011-01-03 15:07:55 +00002360 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002361}
2362
françois romieu4da19632011-01-03 15:07:55 +00002363static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002364{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002365 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002366 { 0x1f, 0x0002 },
2367 { 0x10, 0x0008 },
2368 { 0x0d, 0x006c },
2369
2370 { 0x1f, 0x0000 },
2371 { 0x0d, 0xf880 },
2372
2373 { 0x1f, 0x0001 },
2374 { 0x17, 0x0cc0 },
2375
2376 { 0x1f, 0x0001 },
2377 { 0x0b, 0xa4d8 },
2378 { 0x09, 0x281c },
2379 { 0x07, 0x2883 },
2380 { 0x0a, 0x6b35 },
2381 { 0x1d, 0x3da4 },
2382 { 0x1c, 0xeffd },
2383 { 0x14, 0x7f52 },
2384 { 0x18, 0x7fc6 },
2385 { 0x08, 0x0601 },
2386 { 0x06, 0x4063 },
2387 { 0x10, 0xf074 },
2388 { 0x1f, 0x0003 },
2389 { 0x13, 0x0789 },
2390 { 0x12, 0xf4bd },
2391 { 0x1a, 0x04fd },
2392 { 0x14, 0x84b0 },
2393 { 0x1f, 0x0000 },
2394 { 0x00, 0x9200 },
2395
2396 { 0x1f, 0x0005 },
2397 { 0x01, 0x0340 },
2398 { 0x1f, 0x0001 },
2399 { 0x04, 0x4000 },
2400 { 0x03, 0x1d21 },
2401 { 0x02, 0x0c32 },
2402 { 0x01, 0x0200 },
2403 { 0x00, 0x5554 },
2404 { 0x04, 0x4800 },
2405 { 0x04, 0x4000 },
2406 { 0x04, 0xf000 },
2407 { 0x03, 0xdf01 },
2408 { 0x02, 0xdf20 },
2409 { 0x01, 0x101a },
2410 { 0x00, 0xa0ff },
2411 { 0x04, 0xf800 },
2412 { 0x04, 0xf000 },
2413 { 0x1f, 0x0000 },
2414
2415 { 0x1f, 0x0007 },
2416 { 0x1e, 0x0023 },
2417 { 0x16, 0x0000 },
2418 { 0x1f, 0x0000 }
2419 };
2420
françois romieu4da19632011-01-03 15:07:55 +00002421 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002422}
2423
françois romieue6de30d2011-01-03 15:08:37 +00002424static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2425{
2426 static const struct phy_reg phy_reg_init[] = {
2427 { 0x1f, 0x0001 },
2428 { 0x17, 0x0cc0 },
2429
2430 { 0x1f, 0x0007 },
2431 { 0x1e, 0x002d },
2432 { 0x18, 0x0040 },
2433 { 0x1f, 0x0000 }
2434 };
2435
2436 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2437 rtl_patchphy(tp, 0x0d, 1 << 5);
2438}
2439
françois romieu4da19632011-01-03 15:07:55 +00002440static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02002441{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002442 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02002443 { 0x1f, 0x0003 },
2444 { 0x08, 0x441d },
2445 { 0x01, 0x9100 },
2446 { 0x1f, 0x0000 }
2447 };
2448
françois romieu4da19632011-01-03 15:07:55 +00002449 rtl_writephy(tp, 0x1f, 0x0000);
2450 rtl_patchphy(tp, 0x11, 1 << 12);
2451 rtl_patchphy(tp, 0x19, 1 << 13);
2452 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002453
françois romieu4da19632011-01-03 15:07:55 +00002454 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02002455}
2456
Hayes Wang5a5e4442011-02-22 17:26:21 +08002457static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
2458{
2459 static const struct phy_reg phy_reg_init[] = {
2460 { 0x1f, 0x0005 },
2461 { 0x1a, 0x0000 },
2462 { 0x1f, 0x0000 },
2463
2464 { 0x1f, 0x0004 },
2465 { 0x1c, 0x0000 },
2466 { 0x1f, 0x0000 },
2467
2468 { 0x1f, 0x0001 },
2469 { 0x15, 0x7701 },
2470 { 0x1f, 0x0000 }
2471 };
2472
2473 /* Disable ALDPS before ram code */
2474 rtl_writephy(tp, 0x1f, 0x0000);
2475 rtl_writephy(tp, 0x18, 0x0310);
2476 msleep(100);
2477
2478 if (rtl_apply_firmware(tp, FIRMWARE_8105E_1) < 0)
2479 netif_warn(tp, probe, tp->dev, "unable to apply firmware patch\n");
2480
2481 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2482}
2483
Francois Romieu5615d9f2007-08-17 17:50:46 +02002484static void rtl_hw_phy_config(struct net_device *dev)
2485{
2486 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002487
2488 rtl8169_print_mac_version(tp);
2489
2490 switch (tp->mac_version) {
2491 case RTL_GIGA_MAC_VER_01:
2492 break;
2493 case RTL_GIGA_MAC_VER_02:
2494 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00002495 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002496 break;
2497 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00002498 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002499 break;
françois romieu2e9558562009-08-10 19:44:19 +00002500 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00002501 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002502 break;
françois romieu8c7006a2009-08-10 19:43:29 +00002503 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00002504 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00002505 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02002506 case RTL_GIGA_MAC_VER_07:
2507 case RTL_GIGA_MAC_VER_08:
2508 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00002509 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002510 break;
Francois Romieu236b8082008-05-30 16:11:48 +02002511 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00002512 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002513 break;
2514 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00002515 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002516 break;
2517 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00002518 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002519 break;
Francois Romieu867763c2007-08-17 18:21:58 +02002520 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00002521 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002522 break;
2523 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00002524 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002525 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02002526 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00002527 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002528 break;
Francois Romieu197ff762008-06-28 13:16:02 +02002529 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00002530 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02002531 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02002532 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00002533 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002534 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002535 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002536 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00002537 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02002538 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02002539 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00002540 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002541 break;
2542 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00002543 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002544 break;
2545 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00002546 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02002547 break;
françois romieue6de30d2011-01-03 15:08:37 +00002548 case RTL_GIGA_MAC_VER_28:
2549 rtl8168d_4_hw_phy_config(tp);
2550 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08002551 case RTL_GIGA_MAC_VER_29:
2552 case RTL_GIGA_MAC_VER_30:
2553 rtl8105e_hw_phy_config(tp);
2554 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002555
Francois Romieu5615d9f2007-08-17 17:50:46 +02002556 default:
2557 break;
2558 }
2559}
2560
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561static void rtl8169_phy_timer(unsigned long __opaque)
2562{
2563 struct net_device *dev = (struct net_device *)__opaque;
2564 struct rtl8169_private *tp = netdev_priv(dev);
2565 struct timer_list *timer = &tp->timer;
2566 void __iomem *ioaddr = tp->mmio_addr;
2567 unsigned long timeout = RTL8169_PHY_TIMEOUT;
2568
Francois Romieubcf0bf92006-07-26 23:14:13 +02002569 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Francois Romieu64e4bfb2006-08-17 12:43:06 +02002571 if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 return;
2573
2574 spin_lock_irq(&tp->lock);
2575
françois romieu4da19632011-01-03 15:07:55 +00002576 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02002577 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 * A busy loop could burn quite a few cycles on nowadays CPU.
2579 * Let's delay the execution of the timer for a few ticks.
2580 */
2581 timeout = HZ/10;
2582 goto out_mod_timer;
2583 }
2584
2585 if (tp->link_ok(ioaddr))
2586 goto out_unlock;
2587
Joe Perchesbf82c182010-02-09 11:49:50 +00002588 netif_warn(tp, link, dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
françois romieu4da19632011-01-03 15:07:55 +00002590 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592out_mod_timer:
2593 mod_timer(timer, jiffies + timeout);
2594out_unlock:
2595 spin_unlock_irq(&tp->lock);
2596}
2597
2598static inline void rtl8169_delete_timer(struct net_device *dev)
2599{
2600 struct rtl8169_private *tp = netdev_priv(dev);
2601 struct timer_list *timer = &tp->timer;
2602
Francois Romieue179bb72007-08-17 15:05:21 +02002603 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 return;
2605
2606 del_timer_sync(timer);
2607}
2608
2609static inline void rtl8169_request_timer(struct net_device *dev)
2610{
2611 struct rtl8169_private *tp = netdev_priv(dev);
2612 struct timer_list *timer = &tp->timer;
2613
Francois Romieue179bb72007-08-17 15:05:21 +02002614 if (tp->mac_version <= RTL_GIGA_MAC_VER_01)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 return;
2616
Francois Romieu2efa53f2007-03-09 00:00:05 +01002617 mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618}
2619
2620#ifdef CONFIG_NET_POLL_CONTROLLER
2621/*
2622 * Polling 'interrupt' - used by things like netconsole to send skbs
2623 * without having to re-enable interrupts. It's not called while
2624 * the interrupt routine is executing.
2625 */
2626static void rtl8169_netpoll(struct net_device *dev)
2627{
2628 struct rtl8169_private *tp = netdev_priv(dev);
2629 struct pci_dev *pdev = tp->pci_dev;
2630
2631 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002632 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 enable_irq(pdev->irq);
2634}
2635#endif
2636
2637static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
2638 void __iomem *ioaddr)
2639{
2640 iounmap(ioaddr);
2641 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00002642 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 pci_disable_device(pdev);
2644 free_netdev(dev);
2645}
2646
Francois Romieubf793292006-11-01 00:53:05 +01002647static void rtl8169_phy_reset(struct net_device *dev,
2648 struct rtl8169_private *tp)
2649{
Francois Romieu07d3f512007-02-21 22:40:46 +01002650 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01002651
françois romieu4da19632011-01-03 15:07:55 +00002652 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01002653 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00002654 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01002655 return;
2656 msleep(1);
2657 }
Joe Perchesbf82c182010-02-09 11:49:50 +00002658 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01002659}
2660
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002661static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002663 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002664
Francois Romieu5615d9f2007-08-17 17:50:46 +02002665 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002666
Marcus Sundberg773328942008-07-10 21:28:08 +02002667 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
2668 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2669 RTL_W8(0x82, 0x01);
2670 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002671
Francois Romieu6dccd162007-02-13 23:38:05 +01002672 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
2673
2674 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
2675 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002676
Francois Romieubcf0bf92006-07-26 23:14:13 +02002677 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002678 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2679 RTL_W8(0x82, 0x01);
2680 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00002681 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002682 }
2683
Francois Romieubf793292006-11-01 00:53:05 +01002684 rtl8169_phy_reset(dev, tp);
2685
Oliver Neukum54405cd2011-01-06 21:55:13 +01002686 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
2687 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
2688 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
Eric Dumazetdb552b32011-03-19 16:39:11 +01002689 (tp->mii.supports_gmii ?
Oliver Neukum54405cd2011-01-06 21:55:13 +01002690 ADVERTISED_1000baseT_Half |
Eric Dumazetdb552b32011-03-19 16:39:11 +01002691 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002692
Joe Perchesbf82c182010-02-09 11:49:50 +00002693 if (RTL_R8(PHYstatus) & TBI_Enable)
2694 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002695}
2696
Francois Romieu773d2022007-01-31 23:47:43 +01002697static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
2698{
2699 void __iomem *ioaddr = tp->mmio_addr;
2700 u32 high;
2701 u32 low;
2702
2703 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
2704 high = addr[4] | (addr[5] << 8);
2705
2706 spin_lock_irq(&tp->lock);
2707
2708 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00002709
Francois Romieu773d2022007-01-31 23:47:43 +01002710 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00002711 RTL_R32(MAC4);
2712
Francois Romieu78f1cd02010-03-27 19:35:46 -07002713 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00002714 RTL_R32(MAC0);
2715
Francois Romieu773d2022007-01-31 23:47:43 +01002716 RTL_W8(Cfg9346, Cfg9346_Lock);
2717
2718 spin_unlock_irq(&tp->lock);
2719}
2720
2721static int rtl_set_mac_address(struct net_device *dev, void *p)
2722{
2723 struct rtl8169_private *tp = netdev_priv(dev);
2724 struct sockaddr *addr = p;
2725
2726 if (!is_valid_ether_addr(addr->sa_data))
2727 return -EADDRNOTAVAIL;
2728
2729 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2730
2731 rtl_rar_set(tp, dev->dev_addr);
2732
2733 return 0;
2734}
2735
Francois Romieu5f787a12006-08-17 13:02:36 +02002736static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2737{
2738 struct rtl8169_private *tp = netdev_priv(dev);
2739 struct mii_ioctl_data *data = if_mii(ifr);
2740
Francois Romieu8b4ab282008-11-19 22:05:25 -08002741 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
2742}
Francois Romieu5f787a12006-08-17 13:02:36 +02002743
Francois Romieu8b4ab282008-11-19 22:05:25 -08002744static int rtl_xmii_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2745{
Francois Romieu5f787a12006-08-17 13:02:36 +02002746 switch (cmd) {
2747 case SIOCGMIIPHY:
2748 data->phy_id = 32; /* Internal PHY */
2749 return 0;
2750
2751 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002752 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02002753 return 0;
2754
2755 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002756 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02002757 return 0;
2758 }
2759 return -EOPNOTSUPP;
2760}
2761
Francois Romieu8b4ab282008-11-19 22:05:25 -08002762static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
2763{
2764 return -EOPNOTSUPP;
2765}
2766
Francois Romieu0e485152007-02-20 00:00:26 +01002767static const struct rtl_cfg_info {
2768 void (*hw_start)(struct net_device *);
2769 unsigned int region;
2770 unsigned int align;
2771 u16 intr_event;
2772 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02002773 unsigned features;
Jean Delvaref21b75e2009-05-26 20:54:48 -07002774 u8 default_ver;
Francois Romieu0e485152007-02-20 00:00:26 +01002775} rtl_cfg_infos [] = {
2776 [RTL_CFG_0] = {
2777 .hw_start = rtl_hw_start_8169,
2778 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01002779 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01002780 .intr_event = SYSErr | LinkChg | RxOverflow |
2781 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002782 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002783 .features = RTL_FEATURE_GMII,
2784 .default_ver = RTL_GIGA_MAC_VER_01,
Francois Romieu0e485152007-02-20 00:00:26 +01002785 },
2786 [RTL_CFG_1] = {
2787 .hw_start = rtl_hw_start_8168,
2788 .region = 2,
2789 .align = 8,
françois romieu53f57352010-11-08 13:23:05 +00002790 .intr_event = SYSErr | LinkChg | RxOverflow |
Francois Romieu0e485152007-02-20 00:00:26 +01002791 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002792 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002793 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
2794 .default_ver = RTL_GIGA_MAC_VER_11,
Francois Romieu0e485152007-02-20 00:00:26 +01002795 },
2796 [RTL_CFG_2] = {
2797 .hw_start = rtl_hw_start_8101,
2798 .region = 2,
2799 .align = 8,
2800 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
2801 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02002802 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07002803 .features = RTL_FEATURE_MSI,
2804 .default_ver = RTL_GIGA_MAC_VER_13,
Francois Romieu0e485152007-02-20 00:00:26 +01002805 }
2806};
2807
Francois Romieufbac58f2007-10-04 22:51:38 +02002808/* Cfg9346_Unlock assumed. */
2809static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
2810 const struct rtl_cfg_info *cfg)
2811{
2812 unsigned msi = 0;
2813 u8 cfg2;
2814
2815 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02002816 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02002817 if (pci_enable_msi(pdev)) {
2818 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
2819 } else {
2820 cfg2 |= MSIEnable;
2821 msi = RTL_FEATURE_MSI;
2822 }
2823 }
2824 RTL_W8(Config2, cfg2);
2825 return msi;
2826}
2827
2828static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
2829{
2830 if (tp->features & RTL_FEATURE_MSI) {
2831 pci_disable_msi(pdev);
2832 tp->features &= ~RTL_FEATURE_MSI;
2833 }
2834}
2835
Francois Romieu8b4ab282008-11-19 22:05:25 -08002836static const struct net_device_ops rtl8169_netdev_ops = {
2837 .ndo_open = rtl8169_open,
2838 .ndo_stop = rtl8169_close,
2839 .ndo_get_stats = rtl8169_get_stats,
Stephen Hemminger00829822008-11-20 20:14:53 -08002840 .ndo_start_xmit = rtl8169_start_xmit,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002841 .ndo_tx_timeout = rtl8169_tx_timeout,
2842 .ndo_validate_addr = eth_validate_addr,
2843 .ndo_change_mtu = rtl8169_change_mtu,
2844 .ndo_set_mac_address = rtl_set_mac_address,
2845 .ndo_do_ioctl = rtl8169_ioctl,
2846 .ndo_set_multicast_list = rtl_set_rx_mode,
Francois Romieu8b4ab282008-11-19 22:05:25 -08002847#ifdef CONFIG_NET_POLL_CONTROLLER
2848 .ndo_poll_controller = rtl8169_netpoll,
2849#endif
2850
2851};
2852
françois romieuc0e45c12011-01-03 15:08:04 +00002853static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
2854{
2855 struct mdio_ops *ops = &tp->mdio_ops;
2856
2857 switch (tp->mac_version) {
2858 case RTL_GIGA_MAC_VER_27:
2859 ops->write = r8168dp_1_mdio_write;
2860 ops->read = r8168dp_1_mdio_read;
2861 break;
françois romieue6de30d2011-01-03 15:08:37 +00002862 case RTL_GIGA_MAC_VER_28:
2863 ops->write = r8168dp_2_mdio_write;
2864 ops->read = r8168dp_2_mdio_read;
2865 break;
françois romieuc0e45c12011-01-03 15:08:04 +00002866 default:
2867 ops->write = r8169_mdio_write;
2868 ops->read = r8169_mdio_read;
2869 break;
2870 }
2871}
2872
françois romieu065c27c2011-01-03 15:08:12 +00002873static void r810x_phy_power_down(struct rtl8169_private *tp)
2874{
2875 rtl_writephy(tp, 0x1f, 0x0000);
2876 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
2877}
2878
2879static void r810x_phy_power_up(struct rtl8169_private *tp)
2880{
2881 rtl_writephy(tp, 0x1f, 0x0000);
2882 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
2883}
2884
2885static void r810x_pll_power_down(struct rtl8169_private *tp)
2886{
2887 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
2888 rtl_writephy(tp, 0x1f, 0x0000);
2889 rtl_writephy(tp, MII_BMCR, 0x0000);
2890 return;
2891 }
2892
2893 r810x_phy_power_down(tp);
2894}
2895
2896static void r810x_pll_power_up(struct rtl8169_private *tp)
2897{
2898 r810x_phy_power_up(tp);
2899}
2900
2901static void r8168_phy_power_up(struct rtl8169_private *tp)
2902{
2903 rtl_writephy(tp, 0x1f, 0x0000);
2904 rtl_writephy(tp, 0x0e, 0x0000);
2905 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
2906}
2907
2908static void r8168_phy_power_down(struct rtl8169_private *tp)
2909{
2910 rtl_writephy(tp, 0x1f, 0x0000);
2911 rtl_writephy(tp, 0x0e, 0x0200);
2912 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
2913}
2914
2915static void r8168_pll_power_down(struct rtl8169_private *tp)
2916{
2917 void __iomem *ioaddr = tp->mmio_addr;
2918
Hayes Wang5d2e1952011-02-22 17:26:22 +08002919 if (((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
2920 (tp->mac_version == RTL_GIGA_MAC_VER_28)) &&
2921 (ocp_read(tp, 0x0f, 0x0010) & 0x00008000)) {
françois romieu065c27c2011-01-03 15:08:12 +00002922 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08002923 }
françois romieu065c27c2011-01-03 15:08:12 +00002924
2925 if (((tp->mac_version == RTL_GIGA_MAC_VER_23) ||
2926 (tp->mac_version == RTL_GIGA_MAC_VER_24)) &&
2927 (RTL_R16(CPlusCmd) & ASF)) {
2928 return;
2929 }
2930
2931 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
2932 rtl_writephy(tp, 0x1f, 0x0000);
2933 rtl_writephy(tp, MII_BMCR, 0x0000);
2934
2935 RTL_W32(RxConfig, RTL_R32(RxConfig) |
2936 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
2937 return;
2938 }
2939
2940 r8168_phy_power_down(tp);
2941
2942 switch (tp->mac_version) {
2943 case RTL_GIGA_MAC_VER_25:
2944 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08002945 case RTL_GIGA_MAC_VER_27:
2946 case RTL_GIGA_MAC_VER_28:
françois romieu065c27c2011-01-03 15:08:12 +00002947 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
2948 break;
2949 }
2950}
2951
2952static void r8168_pll_power_up(struct rtl8169_private *tp)
2953{
2954 void __iomem *ioaddr = tp->mmio_addr;
2955
Hayes Wang5d2e1952011-02-22 17:26:22 +08002956 if (((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
2957 (tp->mac_version == RTL_GIGA_MAC_VER_28)) &&
2958 (ocp_read(tp, 0x0f, 0x0010) & 0x00008000)) {
françois romieu065c27c2011-01-03 15:08:12 +00002959 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08002960 }
françois romieu065c27c2011-01-03 15:08:12 +00002961
2962 switch (tp->mac_version) {
2963 case RTL_GIGA_MAC_VER_25:
2964 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08002965 case RTL_GIGA_MAC_VER_27:
2966 case RTL_GIGA_MAC_VER_28:
françois romieu065c27c2011-01-03 15:08:12 +00002967 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
2968 break;
2969 }
2970
2971 r8168_phy_power_up(tp);
2972}
2973
2974static void rtl_pll_power_op(struct rtl8169_private *tp,
2975 void (*op)(struct rtl8169_private *))
2976{
2977 if (op)
2978 op(tp);
2979}
2980
2981static void rtl_pll_power_down(struct rtl8169_private *tp)
2982{
2983 rtl_pll_power_op(tp, tp->pll_power_ops.down);
2984}
2985
2986static void rtl_pll_power_up(struct rtl8169_private *tp)
2987{
2988 rtl_pll_power_op(tp, tp->pll_power_ops.up);
2989}
2990
2991static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
2992{
2993 struct pll_power_ops *ops = &tp->pll_power_ops;
2994
2995 switch (tp->mac_version) {
2996 case RTL_GIGA_MAC_VER_07:
2997 case RTL_GIGA_MAC_VER_08:
2998 case RTL_GIGA_MAC_VER_09:
2999 case RTL_GIGA_MAC_VER_10:
3000 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08003001 case RTL_GIGA_MAC_VER_29:
3002 case RTL_GIGA_MAC_VER_30:
françois romieu065c27c2011-01-03 15:08:12 +00003003 ops->down = r810x_pll_power_down;
3004 ops->up = r810x_pll_power_up;
3005 break;
3006
3007 case RTL_GIGA_MAC_VER_11:
3008 case RTL_GIGA_MAC_VER_12:
3009 case RTL_GIGA_MAC_VER_17:
3010 case RTL_GIGA_MAC_VER_18:
3011 case RTL_GIGA_MAC_VER_19:
3012 case RTL_GIGA_MAC_VER_20:
3013 case RTL_GIGA_MAC_VER_21:
3014 case RTL_GIGA_MAC_VER_22:
3015 case RTL_GIGA_MAC_VER_23:
3016 case RTL_GIGA_MAC_VER_24:
3017 case RTL_GIGA_MAC_VER_25:
3018 case RTL_GIGA_MAC_VER_26:
3019 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00003020 case RTL_GIGA_MAC_VER_28:
françois romieu065c27c2011-01-03 15:08:12 +00003021 ops->down = r8168_pll_power_down;
3022 ops->up = r8168_pll_power_up;
3023 break;
3024
3025 default:
3026 ops->down = NULL;
3027 ops->up = NULL;
3028 break;
3029 }
3030}
3031
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003032static int __devinit
3033rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
3034{
Francois Romieu0e485152007-02-20 00:00:26 +01003035 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
3036 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02003038 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003039 struct net_device *dev;
3040 void __iomem *ioaddr;
Francois Romieu07d3f512007-02-21 22:40:46 +01003041 unsigned int i;
3042 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003044 if (netif_msg_drv(&debug)) {
3045 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
3046 MODULENAME, RTL8169_VERSION);
3047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003050 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003051 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04003052 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003053 rc = -ENOMEM;
3054 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 }
3056
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieu8b4ab282008-11-19 22:05:25 -08003058 dev->netdev_ops = &rtl8169_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00003060 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02003061 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003062 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Francois Romieuccdffb92008-07-26 14:26:06 +02003064 mii = &tp->mii;
3065 mii->dev = dev;
3066 mii->mdio_read = rtl_mdio_read;
3067 mii->mdio_write = rtl_mdio_write;
3068 mii->phy_id_mask = 0x1f;
3069 mii->reg_num_mask = 0x1f;
3070 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
3071
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +00003072 /* disable ASPM completely as that cause random device stop working
3073 * problems as well as full system hangs for some PCIe devices users */
3074 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
3075 PCIE_LINK_STATE_CLKPM);
3076
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 /* enable device (incl. PCI PM wakeup and hotplug setup) */
3078 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003079 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003080 netif_err(tp, probe, dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003081 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
3083
françois romieu87aeec72010-04-26 11:42:06 +00003084 if (pci_set_mwi(pdev) < 0)
3085 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003088 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003089 netif_err(tp, probe, dev,
3090 "region #%d not an MMIO resource, aborting\n",
3091 region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003093 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003095
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003097 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003098 netif_err(tp, probe, dev,
3099 "Invalid PCI region size(s), aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003101 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 }
3103
3104 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003105 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003106 netif_err(tp, probe, dev, "could not request regions\n");
françois romieu87aeec72010-04-26 11:42:06 +00003107 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 }
3109
Hayes Wangd24e9aa2011-02-22 17:26:19 +08003110 tp->cp_cmd = RxChkSum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
3112 if ((sizeof(dma_addr_t) > 4) &&
David S. Miller4300e8c2010-03-26 10:23:30 -07003113 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 tp->cp_cmd |= PCIDAC;
3115 dev->features |= NETIF_F_HIGHDMA;
3116 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07003117 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003119 netif_err(tp, probe, dev, "DMA configuration failed\n");
françois romieu87aeec72010-04-26 11:42:06 +00003120 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 }
3122 }
3123
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003125 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003126 if (!ioaddr) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003127 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 rc = -EIO;
françois romieu87aeec72010-04-26 11:42:06 +00003129 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 }
3131
David S. Miller4300e8c2010-03-26 10:23:30 -07003132 tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
3133 if (!tp->pcie_cap)
3134 netif_info(tp, probe, dev, "no PCI Express capability\n");
3135
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003136 RTL_W16(IntrMask, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137
3138 /* Soft reset the chip. */
3139 RTL_W8(ChipCmd, CmdReset);
3140
3141 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003142 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3144 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003145 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 }
3147
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003148 RTL_W16(IntrStatus, 0xffff);
3149
françois romieuca52efd2009-07-24 12:34:19 +00003150 pci_set_master(pdev);
3151
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 /* Identify chip attached to board */
3153 rtl8169_get_mac_version(tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Francois Romieu7a8fc772011-03-01 17:18:33 +01003155 /*
3156 * Pretend we are using VLANs; This bypasses a nasty bug where
3157 * Interrupts stop flowing on high load on 8110SCd controllers.
3158 */
3159 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3160 tp->cp_cmd |= RxVlan;
3161
françois romieuc0e45c12011-01-03 15:08:04 +00003162 rtl_init_mdio_ops(tp);
françois romieu065c27c2011-01-03 15:08:12 +00003163 rtl_init_pll_power_ops(tp);
françois romieuc0e45c12011-01-03 15:08:04 +00003164
Jean Delvaref21b75e2009-05-26 20:54:48 -07003165 /* Use appropriate default if unknown */
3166 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003167 netif_notice(tp, probe, dev,
3168 "unknown MAC, using family default\n");
Jean Delvaref21b75e2009-05-26 20:54:48 -07003169 tp->mac_version = cfg->default_ver;
3170 }
3171
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
Roel Kluincee60c32008-04-17 22:35:54 +02003174 for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 if (tp->mac_version == rtl_chip_info[i].mac_version)
3176 break;
3177 }
Roel Kluincee60c32008-04-17 22:35:54 +02003178 if (i == ARRAY_SIZE(rtl_chip_info)) {
Jean Delvaref21b75e2009-05-26 20:54:48 -07003179 dev_err(&pdev->dev,
3180 "driver bug, MAC version not found in rtl_chip_info\n");
françois romieu87aeec72010-04-26 11:42:06 +00003181 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 }
3183 tp->chipset = i;
3184
Francois Romieu5d06a992006-02-23 00:47:58 +01003185 RTL_W8(Cfg9346, Cfg9346_Unlock);
3186 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
3187 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Bruno Prémont20037fa2008-10-08 17:05:03 -07003188 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
3189 tp->features |= RTL_FEATURE_WOL;
3190 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
3191 tp->features |= RTL_FEATURE_WOL;
Francois Romieufbac58f2007-10-04 22:51:38 +02003192 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01003193 RTL_W8(Cfg9346, Cfg9346_Lock);
3194
Francois Romieu66ec5d42007-11-06 22:56:10 +01003195 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
3196 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 tp->set_speed = rtl8169_set_speed_tbi;
3198 tp->get_settings = rtl8169_gset_tbi;
3199 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
3200 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
3201 tp->link_ok = rtl8169_tbi_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003202 tp->do_ioctl = rtl_tbi_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Francois Romieu64e4bfb2006-08-17 12:43:06 +02003204 tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 } else {
3206 tp->set_speed = rtl8169_set_speed_xmii;
3207 tp->get_settings = rtl8169_gset_xmii;
3208 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
3209 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
3210 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003211 tp->do_ioctl = rtl_xmii_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 }
3213
Francois Romieudf58ef52008-10-09 14:35:58 -07003214 spin_lock_init(&tp->lock);
3215
Petr Vandrovec738e1e62008-10-12 20:58:29 -07003216 tp->mmio_addr = ioaddr;
3217
Ivan Vecera7bf6bf42008-09-23 22:46:29 +00003218 /* Get MAC address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 for (i = 0; i < MAC_ADDR_LEN; i++)
3220 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04003221 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
3225 dev->irq = pdev->irq;
3226 dev->base_addr = (unsigned long) ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003228 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
Francois Romieu7a8fc772011-03-01 17:18:33 +01003230 dev->features |= NETIF_F_HW_VLAN_TX_RX | NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
3232 tp->intr_mask = 0xffff;
Francois Romieu0e485152007-02-20 00:00:26 +01003233 tp->hw_start = cfg->hw_start;
3234 tp->intr_event = cfg->intr_event;
3235 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Francois Romieu2efa53f2007-03-09 00:00:05 +01003237 init_timer(&tp->timer);
3238 tp->timer.data = (unsigned long) dev;
3239 tp->timer.function = rtl8169_phy_timer;
3240
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003242 if (rc < 0)
françois romieu87aeec72010-04-26 11:42:06 +00003243 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
3245 pci_set_drvdata(pdev, dev);
3246
Joe Perchesbf82c182010-02-09 11:49:50 +00003247 netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
3248 rtl_chip_info[tp->chipset].name,
3249 dev->base_addr, dev->dev_addr,
3250 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
françois romieue6de30d2011-01-03 15:08:37 +00003252 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
3253 (tp->mac_version == RTL_GIGA_MAC_VER_28)) {
françois romieub646d902011-01-03 15:08:21 +00003254 rtl8168_driver_start(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003255 }
françois romieub646d902011-01-03 15:08:21 +00003256
Bruno Prémont8b76ab32008-10-08 17:06:25 -07003257 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Alan Sternf3ec4f82010-06-08 15:23:51 -04003259 if (pci_dev_run_wake(pdev))
3260 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003261
Ivan Vecera0d672e92011-02-15 02:08:39 +00003262 netif_carrier_off(dev);
3263
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003264out:
3265 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
françois romieu87aeec72010-04-26 11:42:06 +00003267err_out_msi_4:
Francois Romieufbac58f2007-10-04 22:51:38 +02003268 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003269 iounmap(ioaddr);
françois romieu87aeec72010-04-26 11:42:06 +00003270err_out_free_res_3:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003271 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003272err_out_mwi_2:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003273 pci_clear_mwi(pdev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003274 pci_disable_device(pdev);
3275err_out_free_dev_1:
3276 free_netdev(dev);
3277 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278}
3279
Francois Romieu07d3f512007-02-21 22:40:46 +01003280static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281{
3282 struct net_device *dev = pci_get_drvdata(pdev);
3283 struct rtl8169_private *tp = netdev_priv(dev);
3284
françois romieue6de30d2011-01-03 15:08:37 +00003285 if ((tp->mac_version == RTL_GIGA_MAC_VER_27) ||
3286 (tp->mac_version == RTL_GIGA_MAC_VER_28)) {
françois romieub646d902011-01-03 15:08:21 +00003287 rtl8168_driver_stop(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003288 }
françois romieub646d902011-01-03 15:08:21 +00003289
Tejun Heo23f333a2010-12-12 16:45:14 +01003290 cancel_delayed_work_sync(&tp->task);
Francois Romieueb2a0212007-02-15 23:37:21 +01003291
françois romieuf1e02ed2011-01-13 13:07:53 +00003292 rtl_release_firmware(tp);
3293
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 unregister_netdev(dev);
Ivan Veceracc098dc2009-11-29 23:12:52 -08003295
Alan Sternf3ec4f82010-06-08 15:23:51 -04003296 if (pci_dev_run_wake(pdev))
3297 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003298
Ivan Veceracc098dc2009-11-29 23:12:52 -08003299 /* restore original MAC address */
3300 rtl_rar_set(tp, dev->perm_addr);
3301
Francois Romieufbac58f2007-10-04 22:51:38 +02003302 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 rtl8169_release_board(pdev, dev, tp->mmio_addr);
3304 pci_set_drvdata(pdev, NULL);
3305}
3306
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307static int rtl8169_open(struct net_device *dev)
3308{
3309 struct rtl8169_private *tp = netdev_priv(dev);
françois romieueee3a962011-01-08 02:17:26 +00003310 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02003312 int retval = -ENOMEM;
3313
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003314 pm_runtime_get_sync(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
Neil Hormanc0cd8842010-03-29 13:16:02 -07003316 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 * Rx and Tx desscriptors needs 256 bytes alignment.
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003318 * dma_alloc_coherent provides more.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 */
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003320 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
3321 &tp->TxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 if (!tp->TxDescArray)
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003323 goto err_pm_runtime_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003325 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
3326 &tp->RxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02003328 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
3330 retval = rtl8169_init_ring(dev);
3331 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02003332 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
David Howellsc4028952006-11-22 14:57:56 +00003334 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
Francois Romieu99f252b2007-04-02 22:59:59 +02003336 smp_mb();
3337
Francois Romieufbac58f2007-10-04 22:51:38 +02003338 retval = request_irq(dev->irq, rtl8169_interrupt,
3339 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02003340 dev->name, dev);
3341 if (retval < 0)
3342 goto err_release_ring_2;
3343
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003344 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003345
françois romieueee3a962011-01-08 02:17:26 +00003346 rtl8169_init_phy(dev, tp);
3347
Francois Romieu7a8fc772011-03-01 17:18:33 +01003348 rtl8169_vlan_mode(dev);
françois romieueee3a962011-01-08 02:17:26 +00003349
françois romieu065c27c2011-01-03 15:08:12 +00003350 rtl_pll_power_up(tp);
3351
Francois Romieu07ce4062007-02-23 23:36:39 +01003352 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
3354 rtl8169_request_timer(dev);
3355
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003356 tp->saved_wolopts = 0;
3357 pm_runtime_put_noidle(&pdev->dev);
3358
françois romieueee3a962011-01-08 02:17:26 +00003359 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360out:
3361 return retval;
3362
Francois Romieu99f252b2007-04-02 22:59:59 +02003363err_release_ring_2:
3364 rtl8169_rx_clear(tp);
3365err_free_rx_1:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003366 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
3367 tp->RxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003368 tp->RxDescArray = NULL;
Francois Romieu99f252b2007-04-02 22:59:59 +02003369err_free_tx_0:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003370 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
3371 tp->TxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003372 tp->TxDescArray = NULL;
3373err_pm_runtime_put:
3374 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 goto out;
3376}
3377
françois romieue6de30d2011-01-03 15:08:37 +00003378static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379{
françois romieue6de30d2011-01-03 15:08:37 +00003380 void __iomem *ioaddr = tp->mmio_addr;
3381
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 /* Disable interrupts */
3383 rtl8169_irq_mask_and_ack(ioaddr);
3384
Hayes Wang5d2e1952011-02-22 17:26:22 +08003385 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3386 tp->mac_version == RTL_GIGA_MAC_VER_28) {
françois romieue6de30d2011-01-03 15:08:37 +00003387 while (RTL_R8(TxPoll) & NPQ)
3388 udelay(20);
3389
3390 }
3391
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 /* Reset the chipset */
3393 RTL_W8(ChipCmd, CmdReset);
3394
3395 /* PCI commit */
3396 RTL_R8(ChipCmd);
3397}
3398
Francois Romieu7f796d82007-06-11 23:04:41 +02003399static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01003400{
3401 void __iomem *ioaddr = tp->mmio_addr;
3402 u32 cfg = rtl8169_rx_config;
3403
3404 cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
3405 RTL_W32(RxConfig, cfg);
3406
3407 /* Set DMA burst size and Interframe Gap Time */
3408 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3409 (InterFrameGap << TxInterFrameGapShift));
3410}
3411
Francois Romieu07ce4062007-02-23 23:36:39 +01003412static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413{
3414 struct rtl8169_private *tp = netdev_priv(dev);
3415 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01003416 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
3418 /* Soft reset the chip. */
3419 RTL_W8(ChipCmd, CmdReset);
3420
3421 /* Check that the chip has finished the reset. */
Francois Romieu07d3f512007-02-21 22:40:46 +01003422 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3424 break;
Francois Romieub518fa82006-08-16 15:23:13 +02003425 msleep_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 }
3427
Francois Romieu07ce4062007-02-23 23:36:39 +01003428 tp->hw_start(dev);
3429
Francois Romieu07ce4062007-02-23 23:36:39 +01003430 netif_start_queue(dev);
3431}
3432
3433
Francois Romieu7f796d82007-06-11 23:04:41 +02003434static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
3435 void __iomem *ioaddr)
3436{
3437 /*
3438 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
3439 * register to be written before TxDescAddrLow to work.
3440 * Switching from MMIO to I/O access fixes the issue as well.
3441 */
3442 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003443 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003444 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003445 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003446}
3447
3448static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
3449{
3450 u16 cmd;
3451
3452 cmd = RTL_R16(CPlusCmd);
3453 RTL_W16(CPlusCmd, cmd);
3454 return cmd;
3455}
3456
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07003457static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d82007-06-11 23:04:41 +02003458{
3459 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e82009-10-26 10:52:37 +00003460 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d82007-06-11 23:04:41 +02003461}
3462
Francois Romieu6dccd162007-02-13 23:38:05 +01003463static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
3464{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003465 static const struct {
Francois Romieu6dccd162007-02-13 23:38:05 +01003466 u32 mac_version;
3467 u32 clk;
3468 u32 val;
3469 } cfg2_info [] = {
3470 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
3471 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
3472 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
3473 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
3474 }, *p = cfg2_info;
3475 unsigned int i;
3476 u32 clk;
3477
3478 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01003479 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01003480 if ((p->mac_version == mac_version) && (p->clk == clk)) {
3481 RTL_W32(0x7c, p->val);
3482 break;
3483 }
3484 }
3485}
3486
Francois Romieu07ce4062007-02-23 23:36:39 +01003487static void rtl_hw_start_8169(struct net_device *dev)
3488{
3489 struct rtl8169_private *tp = netdev_priv(dev);
3490 void __iomem *ioaddr = tp->mmio_addr;
3491 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01003492
Francois Romieu9cb427b2006-11-02 00:10:16 +01003493 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
3494 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
3495 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
3496 }
3497
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003499 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3500 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3501 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3502 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3503 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3504
françois romieuf0298f82011-01-03 15:07:42 +00003505 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003507 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508
Francois Romieuc946b302007-10-04 00:42:50 +02003509 if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
3510 (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3511 (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
3512 (tp->mac_version == RTL_GIGA_MAC_VER_04))
3513 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
Francois Romieu7f796d82007-06-11 23:04:41 +02003515 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02003516
3517 if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
3518 (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
Joe Perches06fa7352007-10-18 21:15:00 +02003519 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02003521 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 }
3523
Francois Romieubcf0bf92006-07-26 23:14:13 +02003524 RTL_W16(CPlusCmd, tp->cp_cmd);
3525
Francois Romieu6dccd162007-02-13 23:38:05 +01003526 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
3527
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 /*
3529 * Undocumented corner. Supposedly:
3530 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
3531 */
3532 RTL_W16(IntrMitigate, 0x0000);
3533
Francois Romieu7f796d82007-06-11 23:04:41 +02003534 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003535
Francois Romieuc946b302007-10-04 00:42:50 +02003536 if ((tp->mac_version != RTL_GIGA_MAC_VER_01) &&
3537 (tp->mac_version != RTL_GIGA_MAC_VER_02) &&
3538 (tp->mac_version != RTL_GIGA_MAC_VER_03) &&
3539 (tp->mac_version != RTL_GIGA_MAC_VER_04)) {
3540 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3541 rtl_set_rx_tx_config_registers(tp);
3542 }
3543
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02003545
3546 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
3547 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
3549 RTL_W32(RxMissed, 0);
3550
Francois Romieu07ce4062007-02-23 23:36:39 +01003551 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
3553 /* no early-rx interrupts */
3554 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003555
3556 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01003557 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003558}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
Francois Romieu9c14cea2008-07-05 00:21:15 +02003560static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02003561{
Francois Romieu9c14cea2008-07-05 00:21:15 +02003562 struct net_device *dev = pci_get_drvdata(pdev);
3563 struct rtl8169_private *tp = netdev_priv(dev);
3564 int cap = tp->pcie_cap;
Francois Romieu458a9f62008-08-02 15:50:02 +02003565
Francois Romieu9c14cea2008-07-05 00:21:15 +02003566 if (cap) {
3567 u16 ctl;
3568
3569 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
3570 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
3571 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
3572 }
Francois Romieu458a9f62008-08-02 15:50:02 +02003573}
3574
françois romieu650e8d52011-01-03 15:08:29 +00003575static void rtl_csi_access_enable(void __iomem *ioaddr, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02003576{
3577 u32 csi;
3578
3579 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
françois romieu650e8d52011-01-03 15:08:29 +00003580 rtl_csi_write(ioaddr, 0x070c, csi | bits);
3581}
3582
françois romieue6de30d2011-01-03 15:08:37 +00003583static void rtl_csi_access_enable_1(void __iomem *ioaddr)
3584{
3585 rtl_csi_access_enable(ioaddr, 0x17000000);
3586}
3587
françois romieu650e8d52011-01-03 15:08:29 +00003588static void rtl_csi_access_enable_2(void __iomem *ioaddr)
3589{
3590 rtl_csi_access_enable(ioaddr, 0x27000000);
Francois Romieudacf8152008-08-02 20:44:13 +02003591}
3592
3593struct ephy_info {
3594 unsigned int offset;
3595 u16 mask;
3596 u16 bits;
3597};
3598
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003599static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02003600{
3601 u16 w;
3602
3603 while (len-- > 0) {
3604 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
3605 rtl_ephy_write(ioaddr, e->offset, w);
3606 e++;
3607 }
3608}
3609
Francois Romieub726e492008-06-28 12:22:59 +02003610static void rtl_disable_clock_request(struct pci_dev *pdev)
3611{
3612 struct net_device *dev = pci_get_drvdata(pdev);
3613 struct rtl8169_private *tp = netdev_priv(dev);
3614 int cap = tp->pcie_cap;
3615
3616 if (cap) {
3617 u16 ctl;
3618
3619 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3620 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
3621 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3622 }
3623}
3624
françois romieue6de30d2011-01-03 15:08:37 +00003625static void rtl_enable_clock_request(struct pci_dev *pdev)
3626{
3627 struct net_device *dev = pci_get_drvdata(pdev);
3628 struct rtl8169_private *tp = netdev_priv(dev);
3629 int cap = tp->pcie_cap;
3630
3631 if (cap) {
3632 u16 ctl;
3633
3634 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3635 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3636 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3637 }
3638}
3639
Francois Romieub726e492008-06-28 12:22:59 +02003640#define R8168_CPCMD_QUIRK_MASK (\
3641 EnableBist | \
3642 Mac_dbgo_oe | \
3643 Force_half_dup | \
3644 Force_rxflow_en | \
3645 Force_txflow_en | \
3646 Cxpl_dbg_sel | \
3647 ASF | \
3648 PktCntrDisable | \
3649 Mac_dbgo_sel)
3650
Francois Romieu219a1e92008-06-28 11:58:39 +02003651static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
3652{
Francois Romieub726e492008-06-28 12:22:59 +02003653 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3654
3655 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3656
Francois Romieu2e68ae42008-06-28 12:00:55 +02003657 rtl_tx_performance_tweak(pdev,
3658 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02003659}
3660
3661static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
3662{
3663 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02003664
françois romieuf0298f82011-01-03 15:07:42 +00003665 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02003666
3667 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02003668}
3669
3670static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
3671{
Francois Romieub726e492008-06-28 12:22:59 +02003672 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
3673
3674 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3675
Francois Romieu219a1e92008-06-28 11:58:39 +02003676 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02003677
3678 rtl_disable_clock_request(pdev);
3679
3680 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02003681}
3682
Francois Romieuef3386f2008-06-29 12:24:30 +02003683static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02003684{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003685 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003686 { 0x01, 0, 0x0001 },
3687 { 0x02, 0x0800, 0x1000 },
3688 { 0x03, 0, 0x0042 },
3689 { 0x06, 0x0080, 0x0000 },
3690 { 0x07, 0, 0x2000 }
3691 };
3692
françois romieu650e8d52011-01-03 15:08:29 +00003693 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003694
3695 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
3696
Francois Romieu219a1e92008-06-28 11:58:39 +02003697 __rtl_hw_start_8168cp(ioaddr, pdev);
3698}
3699
Francois Romieuef3386f2008-06-29 12:24:30 +02003700static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
3701{
françois romieu650e8d52011-01-03 15:08:29 +00003702 rtl_csi_access_enable_2(ioaddr);
Francois Romieuef3386f2008-06-29 12:24:30 +02003703
3704 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3705
3706 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3707
3708 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3709}
3710
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003711static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
3712{
françois romieu650e8d52011-01-03 15:08:29 +00003713 rtl_csi_access_enable_2(ioaddr);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003714
3715 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3716
3717 /* Magic. */
3718 RTL_W8(DBG_REG, 0x20);
3719
françois romieuf0298f82011-01-03 15:07:42 +00003720 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003721
3722 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3723
3724 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3725}
3726
Francois Romieu219a1e92008-06-28 11:58:39 +02003727static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
3728{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003729 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003730 { 0x02, 0x0800, 0x1000 },
3731 { 0x03, 0, 0x0002 },
3732 { 0x06, 0x0080, 0x0000 }
3733 };
3734
françois romieu650e8d52011-01-03 15:08:29 +00003735 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003736
3737 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
3738
3739 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
3740
Francois Romieu219a1e92008-06-28 11:58:39 +02003741 __rtl_hw_start_8168cp(ioaddr, pdev);
3742}
3743
3744static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
3745{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003746 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02003747 { 0x01, 0, 0x0001 },
3748 { 0x03, 0x0400, 0x0220 }
3749 };
3750
françois romieu650e8d52011-01-03 15:08:29 +00003751 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02003752
3753 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
3754
Francois Romieu219a1e92008-06-28 11:58:39 +02003755 __rtl_hw_start_8168cp(ioaddr, pdev);
3756}
3757
Francois Romieu197ff762008-06-28 13:16:02 +02003758static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
3759{
3760 rtl_hw_start_8168c_2(ioaddr, pdev);
3761}
3762
Francois Romieu6fb07052008-06-29 11:54:28 +02003763static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
3764{
françois romieu650e8d52011-01-03 15:08:29 +00003765 rtl_csi_access_enable_2(ioaddr);
Francois Romieu6fb07052008-06-29 11:54:28 +02003766
3767 __rtl_hw_start_8168cp(ioaddr, pdev);
3768}
3769
Francois Romieu5b538df2008-07-20 16:22:45 +02003770static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
3771{
françois romieu650e8d52011-01-03 15:08:29 +00003772 rtl_csi_access_enable_2(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02003773
3774 rtl_disable_clock_request(pdev);
3775
françois romieuf0298f82011-01-03 15:07:42 +00003776 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02003777
3778 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3779
3780 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
3781}
3782
françois romieue6de30d2011-01-03 15:08:37 +00003783static void rtl_hw_start_8168d_4(void __iomem *ioaddr, struct pci_dev *pdev)
3784{
3785 static const struct ephy_info e_info_8168d_4[] = {
3786 { 0x0b, ~0, 0x48 },
3787 { 0x19, 0x20, 0x50 },
3788 { 0x0c, ~0, 0x20 }
3789 };
3790 int i;
3791
3792 rtl_csi_access_enable_1(ioaddr);
3793
3794 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3795
3796 RTL_W8(MaxTxPacketSize, TxPacketMax);
3797
3798 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
3799 const struct ephy_info *e = e_info_8168d_4 + i;
3800 u16 w;
3801
3802 w = rtl_ephy_read(ioaddr, e->offset);
3803 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
3804 }
3805
3806 rtl_enable_clock_request(pdev);
3807}
3808
Francois Romieu07ce4062007-02-23 23:36:39 +01003809static void rtl_hw_start_8168(struct net_device *dev)
3810{
Francois Romieu2dd99532007-06-11 23:22:52 +02003811 struct rtl8169_private *tp = netdev_priv(dev);
3812 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01003813 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02003814
3815 RTL_W8(Cfg9346, Cfg9346_Unlock);
3816
françois romieuf0298f82011-01-03 15:07:42 +00003817 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02003818
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003819 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02003820
Francois Romieu0e485152007-02-20 00:00:26 +01003821 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02003822
3823 RTL_W16(CPlusCmd, tp->cp_cmd);
3824
Francois Romieu0e485152007-02-20 00:00:26 +01003825 RTL_W16(IntrMitigate, 0x5151);
3826
3827 /* Work around for RxFIFO overflow. */
Ivan Vecerab5ba6d12011-01-27 12:24:11 +01003828 if (tp->mac_version == RTL_GIGA_MAC_VER_11 ||
3829 tp->mac_version == RTL_GIGA_MAC_VER_22) {
Francois Romieu0e485152007-02-20 00:00:26 +01003830 tp->intr_event |= RxFIFOOver | PCSTimeout;
3831 tp->intr_event &= ~RxOverflow;
3832 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003833
3834 rtl_set_rx_tx_desc_registers(tp, ioaddr);
3835
Francois Romieub8363902008-06-01 12:31:57 +02003836 rtl_set_rx_mode(dev);
3837
3838 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3839 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02003840
3841 RTL_R8(IntrMask);
3842
Francois Romieu219a1e92008-06-28 11:58:39 +02003843 switch (tp->mac_version) {
3844 case RTL_GIGA_MAC_VER_11:
3845 rtl_hw_start_8168bb(ioaddr, pdev);
3846 break;
3847
3848 case RTL_GIGA_MAC_VER_12:
3849 case RTL_GIGA_MAC_VER_17:
3850 rtl_hw_start_8168bef(ioaddr, pdev);
3851 break;
3852
3853 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02003854 rtl_hw_start_8168cp_1(ioaddr, pdev);
Francois Romieu219a1e92008-06-28 11:58:39 +02003855 break;
3856
3857 case RTL_GIGA_MAC_VER_19:
3858 rtl_hw_start_8168c_1(ioaddr, pdev);
3859 break;
3860
3861 case RTL_GIGA_MAC_VER_20:
3862 rtl_hw_start_8168c_2(ioaddr, pdev);
3863 break;
3864
Francois Romieu197ff762008-06-28 13:16:02 +02003865 case RTL_GIGA_MAC_VER_21:
3866 rtl_hw_start_8168c_3(ioaddr, pdev);
3867 break;
3868
Francois Romieu6fb07052008-06-29 11:54:28 +02003869 case RTL_GIGA_MAC_VER_22:
3870 rtl_hw_start_8168c_4(ioaddr, pdev);
3871 break;
3872
Francois Romieuef3386f2008-06-29 12:24:30 +02003873 case RTL_GIGA_MAC_VER_23:
3874 rtl_hw_start_8168cp_2(ioaddr, pdev);
3875 break;
3876
Francois Romieu7f3e3d32008-07-20 18:53:20 +02003877 case RTL_GIGA_MAC_VER_24:
3878 rtl_hw_start_8168cp_3(ioaddr, pdev);
3879 break;
3880
Francois Romieu5b538df2008-07-20 16:22:45 +02003881 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00003882 case RTL_GIGA_MAC_VER_26:
3883 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02003884 rtl_hw_start_8168d(ioaddr, pdev);
3885 break;
3886
françois romieue6de30d2011-01-03 15:08:37 +00003887 case RTL_GIGA_MAC_VER_28:
3888 rtl_hw_start_8168d_4(ioaddr, pdev);
3889 break;
3890
Francois Romieu219a1e92008-06-28 11:58:39 +02003891 default:
3892 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
3893 dev->name, tp->mac_version);
3894 break;
3895 }
Francois Romieu2dd99532007-06-11 23:22:52 +02003896
Francois Romieu0e485152007-02-20 00:00:26 +01003897 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3898
Francois Romieub8363902008-06-01 12:31:57 +02003899 RTL_W8(Cfg9346, Cfg9346_Lock);
3900
Francois Romieu2dd99532007-06-11 23:22:52 +02003901 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003902
Francois Romieu0e485152007-02-20 00:00:26 +01003903 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003904}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
Francois Romieu2857ffb2008-08-02 21:08:49 +02003906#define R810X_CPCMD_QUIRK_MASK (\
3907 EnableBist | \
3908 Mac_dbgo_oe | \
3909 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00003910 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02003911 Force_txflow_en | \
3912 Cxpl_dbg_sel | \
3913 ASF | \
3914 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08003915 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02003916
3917static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
3918{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003919 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02003920 { 0x01, 0, 0x6e65 },
3921 { 0x02, 0, 0x091f },
3922 { 0x03, 0, 0xc2f9 },
3923 { 0x06, 0, 0xafb5 },
3924 { 0x07, 0, 0x0e00 },
3925 { 0x19, 0, 0xec80 },
3926 { 0x01, 0, 0x2e65 },
3927 { 0x01, 0, 0x6e65 }
3928 };
3929 u8 cfg1;
3930
françois romieu650e8d52011-01-03 15:08:29 +00003931 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003932
3933 RTL_W8(DBG_REG, FIX_NAK_1);
3934
3935 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3936
3937 RTL_W8(Config1,
3938 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
3939 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
3940
3941 cfg1 = RTL_R8(Config1);
3942 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
3943 RTL_W8(Config1, cfg1 & ~LEDS0);
3944
Francois Romieu2857ffb2008-08-02 21:08:49 +02003945 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
3946}
3947
3948static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
3949{
françois romieu650e8d52011-01-03 15:08:29 +00003950 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003951
3952 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
3953
3954 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
3955 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02003956}
3957
3958static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
3959{
3960 rtl_hw_start_8102e_2(ioaddr, pdev);
3961
3962 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
3963}
3964
Hayes Wang5a5e4442011-02-22 17:26:21 +08003965static void rtl_hw_start_8105e_1(void __iomem *ioaddr, struct pci_dev *pdev)
3966{
3967 static const struct ephy_info e_info_8105e_1[] = {
3968 { 0x07, 0, 0x4000 },
3969 { 0x19, 0, 0x0200 },
3970 { 0x19, 0, 0x0020 },
3971 { 0x1e, 0, 0x2000 },
3972 { 0x03, 0, 0x0001 },
3973 { 0x19, 0, 0x0100 },
3974 { 0x19, 0, 0x0004 },
3975 { 0x0a, 0, 0x0020 }
3976 };
3977
3978 /* Force LAN exit from ASPM if Rx/Tx are not idel */
3979 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
3980
3981 /* disable Early Tally Counter */
3982 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
3983
3984 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
3985 RTL_W8(DLLPR, RTL_R8(DLLPR) | PM_SWITCH);
3986
3987 rtl_ephy_init(ioaddr, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
3988}
3989
3990static void rtl_hw_start_8105e_2(void __iomem *ioaddr, struct pci_dev *pdev)
3991{
3992 rtl_hw_start_8105e_1(ioaddr, pdev);
3993 rtl_ephy_write(ioaddr, 0x1e, rtl_ephy_read(ioaddr, 0x1e) | 0x8000);
3994}
3995
Francois Romieu07ce4062007-02-23 23:36:39 +01003996static void rtl_hw_start_8101(struct net_device *dev)
3997{
Francois Romieucdf1a602007-06-11 23:29:50 +02003998 struct rtl8169_private *tp = netdev_priv(dev);
3999 void __iomem *ioaddr = tp->mmio_addr;
4000 struct pci_dev *pdev = tp->pci_dev;
4001
Francois Romieue3cf0cc2007-08-17 14:55:46 +02004002 if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
4003 (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
Francois Romieu9c14cea2008-07-05 00:21:15 +02004004 int cap = tp->pcie_cap;
4005
4006 if (cap) {
4007 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
4008 PCI_EXP_DEVCTL_NOSNOOP_EN);
4009 }
Francois Romieucdf1a602007-06-11 23:29:50 +02004010 }
4011
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004012 RTL_W8(Cfg9346, Cfg9346_Unlock);
4013
Francois Romieu2857ffb2008-08-02 21:08:49 +02004014 switch (tp->mac_version) {
4015 case RTL_GIGA_MAC_VER_07:
4016 rtl_hw_start_8102e_1(ioaddr, pdev);
4017 break;
4018
4019 case RTL_GIGA_MAC_VER_08:
4020 rtl_hw_start_8102e_3(ioaddr, pdev);
4021 break;
4022
4023 case RTL_GIGA_MAC_VER_09:
4024 rtl_hw_start_8102e_2(ioaddr, pdev);
4025 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004026
4027 case RTL_GIGA_MAC_VER_29:
4028 rtl_hw_start_8105e_1(ioaddr, pdev);
4029 break;
4030 case RTL_GIGA_MAC_VER_30:
4031 rtl_hw_start_8105e_2(ioaddr, pdev);
4032 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02004033 }
4034
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004035 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02004036
françois romieuf0298f82011-01-03 15:07:42 +00004037 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02004038
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004039 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02004040
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004041 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
Francois Romieucdf1a602007-06-11 23:29:50 +02004042 RTL_W16(CPlusCmd, tp->cp_cmd);
4043
4044 RTL_W16(IntrMitigate, 0x0000);
4045
4046 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4047
4048 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4049 rtl_set_rx_tx_config_registers(tp);
4050
Francois Romieucdf1a602007-06-11 23:29:50 +02004051 RTL_R8(IntrMask);
4052
Francois Romieucdf1a602007-06-11 23:29:50 +02004053 rtl_set_rx_mode(dev);
4054
4055 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01004056
Francois Romieu0e485152007-02-20 00:00:26 +01004057 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058}
4059
4060static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
4061{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
4063 return -EINVAL;
4064
4065 dev->mtu = new_mtu;
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004066 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067}
4068
4069static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
4070{
Al Viro95e09182007-12-22 18:55:39 +00004071 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
4073}
4074
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004075static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
4076 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004078 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004079 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004080
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004081 kfree(*data_buff);
4082 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 rtl8169_make_unusable_by_asic(desc);
4084}
4085
4086static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
4087{
4088 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
4089
4090 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
4091}
4092
4093static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
4094 u32 rx_buf_sz)
4095{
4096 desc->addr = cpu_to_le64(mapping);
4097 wmb();
4098 rtl8169_mark_to_asic(desc, rx_buf_sz);
4099}
4100
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004101static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004103 return (void *)ALIGN((long)data, 16);
4104}
4105
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004106static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
4107 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004108{
4109 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004111 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004112 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004113 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004115 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
4116 if (!data)
4117 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01004118
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004119 if (rtl8169_align(data) != data) {
4120 kfree(data);
4121 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
4122 if (!data)
4123 return NULL;
4124 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004125
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004126 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004127 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004128 if (unlikely(dma_mapping_error(d, mapping))) {
4129 if (net_ratelimit())
4130 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004131 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
4134 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004135 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004136
4137err_out:
4138 kfree(data);
4139 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140}
4141
4142static void rtl8169_rx_clear(struct rtl8169_private *tp)
4143{
Francois Romieu07d3f512007-02-21 22:40:46 +01004144 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
4146 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004147 if (tp->Rx_databuff[i]) {
4148 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 tp->RxDescArray + i);
4150 }
4151 }
4152}
4153
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004154static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004156 desc->opts1 |= cpu_to_le32(RingEnd);
4157}
Francois Romieu5b0384f2006-08-16 16:00:01 +02004158
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004159static int rtl8169_rx_fill(struct rtl8169_private *tp)
4160{
4161 unsigned int i;
4162
4163 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004164 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02004165
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004166 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004168
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004169 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004170 if (!data) {
4171 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004172 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004173 }
4174 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004177 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
4178 return 0;
4179
4180err_out:
4181 rtl8169_rx_clear(tp);
4182 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183}
4184
4185static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
4186{
4187 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
4188}
4189
4190static int rtl8169_init_ring(struct net_device *dev)
4191{
4192 struct rtl8169_private *tp = netdev_priv(dev);
4193
4194 rtl8169_init_ring_indexes(tp);
4195
4196 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004197 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004199 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200}
4201
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004202static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 struct TxDesc *desc)
4204{
4205 unsigned int len = tx_skb->len;
4206
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004207 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
4208
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 desc->opts1 = 0x00;
4210 desc->opts2 = 0x00;
4211 desc->addr = 0x00;
4212 tx_skb->len = 0;
4213}
4214
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004215static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
4216 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217{
4218 unsigned int i;
4219
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004220 for (i = 0; i < n; i++) {
4221 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 struct ring_info *tx_skb = tp->tx_skb + entry;
4223 unsigned int len = tx_skb->len;
4224
4225 if (len) {
4226 struct sk_buff *skb = tx_skb->skb;
4227
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004228 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229 tp->TxDescArray + entry);
4230 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004231 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 dev_kfree_skb(skb);
4233 tx_skb->skb = NULL;
4234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 }
4236 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004237}
4238
4239static void rtl8169_tx_clear(struct rtl8169_private *tp)
4240{
4241 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 tp->cur_tx = tp->dirty_tx = 0;
4243}
4244
David Howellsc4028952006-11-22 14:57:56 +00004245static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246{
4247 struct rtl8169_private *tp = netdev_priv(dev);
4248
David Howellsc4028952006-11-22 14:57:56 +00004249 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 schedule_delayed_work(&tp->task, 4);
4251}
4252
4253static void rtl8169_wait_for_quiescence(struct net_device *dev)
4254{
4255 struct rtl8169_private *tp = netdev_priv(dev);
4256 void __iomem *ioaddr = tp->mmio_addr;
4257
4258 synchronize_irq(dev->irq);
4259
4260 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004261 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
4263 rtl8169_irq_mask_and_ack(ioaddr);
4264
David S. Millerd1d08d12008-01-07 20:53:33 -08004265 tp->intr_mask = 0xffff;
4266 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004267 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268}
4269
David Howellsc4028952006-11-22 14:57:56 +00004270static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271{
David Howellsc4028952006-11-22 14:57:56 +00004272 struct rtl8169_private *tp =
4273 container_of(work, struct rtl8169_private, task.work);
4274 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 int ret;
4276
Francois Romieueb2a0212007-02-15 23:37:21 +01004277 rtnl_lock();
4278
4279 if (!netif_running(dev))
4280 goto out_unlock;
4281
4282 rtl8169_wait_for_quiescence(dev);
4283 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
4285 ret = rtl8169_open(dev);
4286 if (unlikely(ret < 0)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004287 if (net_ratelimit())
4288 netif_err(tp, drv, dev,
4289 "reinit failure (status = %d). Rescheduling\n",
4290 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 rtl8169_schedule_work(dev, rtl8169_reinit_task);
4292 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004293
4294out_unlock:
4295 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296}
4297
David Howellsc4028952006-11-22 14:57:56 +00004298static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299{
David Howellsc4028952006-11-22 14:57:56 +00004300 struct rtl8169_private *tp =
4301 container_of(work, struct rtl8169_private, task.work);
4302 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303
Francois Romieueb2a0212007-02-15 23:37:21 +01004304 rtnl_lock();
4305
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01004307 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
4309 rtl8169_wait_for_quiescence(dev);
4310
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004311 rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, ~(u32)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 rtl8169_tx_clear(tp);
4313
4314 if (tp->dirty_rx == tp->cur_rx) {
4315 rtl8169_init_ring_indexes(tp);
Francois Romieu07ce4062007-02-23 23:36:39 +01004316 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 netif_wake_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004318 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 } else {
Joe Perchesbf82c182010-02-09 11:49:50 +00004320 if (net_ratelimit())
4321 netif_emerg(tp, intr, dev, "Rx buffers shortage\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 rtl8169_schedule_work(dev, rtl8169_reset_task);
4323 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004324
4325out_unlock:
4326 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327}
4328
4329static void rtl8169_tx_timeout(struct net_device *dev)
4330{
4331 struct rtl8169_private *tp = netdev_priv(dev);
4332
françois romieue6de30d2011-01-03 15:08:37 +00004333 rtl8169_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334
4335 /* Let's wait a bit while any (async) irq lands on */
4336 rtl8169_schedule_work(dev, rtl8169_reset_task);
4337}
4338
4339static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
4340 u32 opts1)
4341{
4342 struct skb_shared_info *info = skb_shinfo(skb);
4343 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04004344 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004345 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346
4347 entry = tp->cur_tx;
4348 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
4349 skb_frag_t *frag = info->frags + cur_frag;
4350 dma_addr_t mapping;
4351 u32 status, len;
4352 void *addr;
4353
4354 entry = (entry + 1) % NUM_TX_DESC;
4355
4356 txd = tp->TxDescArray + entry;
4357 len = frag->size;
4358 addr = ((void *) page_address(frag->page)) + frag->page_offset;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004359 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004360 if (unlikely(dma_mapping_error(d, mapping))) {
4361 if (net_ratelimit())
4362 netif_err(tp, drv, tp->dev,
4363 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004364 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366
4367 /* anti gcc 2.95.3 bugware (sic) */
4368 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
4369
4370 txd->opts1 = cpu_to_le32(status);
4371 txd->addr = cpu_to_le64(mapping);
4372
4373 tp->tx_skb[entry].len = len;
4374 }
4375
4376 if (cur_frag) {
4377 tp->tx_skb[entry].skb = skb;
4378 txd->opts1 |= cpu_to_le32(LastFrag);
4379 }
4380
4381 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004382
4383err_out:
4384 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
4385 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386}
4387
4388static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
4389{
4390 if (dev->features & NETIF_F_TSO) {
Herbert Xu79671682006-06-22 02:40:14 -07004391 u32 mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392
4393 if (mss)
4394 return LargeSend | ((mss & MSSMask) << MSSShift);
4395 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07004396 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004397 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398
4399 if (ip->protocol == IPPROTO_TCP)
4400 return IPCS | TCPCS;
4401 else if (ip->protocol == IPPROTO_UDP)
4402 return IPCS | UDPCS;
4403 WARN_ON(1); /* we need a WARN() */
4404 }
4405 return 0;
4406}
4407
Stephen Hemminger613573252009-08-31 19:50:58 +00004408static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
4409 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410{
4411 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004412 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 struct TxDesc *txd = tp->TxDescArray + entry;
4414 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004415 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416 dma_addr_t mapping;
4417 u32 status, len;
4418 u32 opts1;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004419 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02004420
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004422 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004423 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 }
4425
4426 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004427 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004429 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004430 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004431 if (unlikely(dma_mapping_error(d, mapping))) {
4432 if (net_ratelimit())
4433 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004434 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436
4437 tp->tx_skb[entry].len = len;
4438 txd->addr = cpu_to_le64(mapping);
4439 txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
4440
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004441 opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
4442
4443 frags = rtl8169_xmit_frags(tp, skb, opts1);
4444 if (frags < 0)
4445 goto err_dma_1;
4446 else if (frags)
4447 opts1 |= FirstFrag;
4448 else {
4449 opts1 |= FirstFrag | LastFrag;
4450 tp->tx_skb[entry].skb = skb;
4451 }
4452
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 wmb();
4454
4455 /* anti gcc 2.95.3 bugware (sic) */
4456 status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
4457 txd->opts1 = cpu_to_le32(status);
4458
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 tp->cur_tx += frags + 1;
4460
David Dillow4c020a92010-03-03 16:33:10 +00004461 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
Francois Romieu275391a2007-02-23 23:50:28 +01004463 RTL_W8(TxPoll, NPQ); /* set polling bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
4465 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
4466 netif_stop_queue(dev);
4467 smp_rmb();
4468 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
4469 netif_wake_queue(dev);
4470 }
4471
Stephen Hemminger613573252009-08-31 19:50:58 +00004472 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004474err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004475 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004476err_dma_0:
4477 dev_kfree_skb(skb);
4478 dev->stats.tx_dropped++;
4479 return NETDEV_TX_OK;
4480
4481err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004483 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00004484 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485}
4486
4487static void rtl8169_pcierr_interrupt(struct net_device *dev)
4488{
4489 struct rtl8169_private *tp = netdev_priv(dev);
4490 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 u16 pci_status, pci_cmd;
4492
4493 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
4494 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
4495
Joe Perchesbf82c182010-02-09 11:49:50 +00004496 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
4497 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498
4499 /*
4500 * The recovery sequence below admits a very elaborated explanation:
4501 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01004502 * - I did not see what else could be done;
4503 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 *
4505 * Feel free to adjust to your needs.
4506 */
Francois Romieua27993f2006-12-18 00:04:19 +01004507 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01004508 pci_cmd &= ~PCI_COMMAND_PARITY;
4509 else
4510 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
4511
4512 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513
4514 pci_write_config_word(pdev, PCI_STATUS,
4515 pci_status & (PCI_STATUS_DETECTED_PARITY |
4516 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
4517 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
4518
4519 /* The infamous DAC f*ckup only happens at boot time */
4520 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00004521 void __iomem *ioaddr = tp->mmio_addr;
4522
Joe Perchesbf82c182010-02-09 11:49:50 +00004523 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 tp->cp_cmd &= ~PCIDAC;
4525 RTL_W16(CPlusCmd, tp->cp_cmd);
4526 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 }
4528
françois romieue6de30d2011-01-03 15:08:37 +00004529 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01004530
4531 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532}
4533
Francois Romieu07d3f512007-02-21 22:40:46 +01004534static void rtl8169_tx_interrupt(struct net_device *dev,
4535 struct rtl8169_private *tp,
4536 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537{
4538 unsigned int dirty_tx, tx_left;
4539
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 dirty_tx = tp->dirty_tx;
4541 smp_rmb();
4542 tx_left = tp->cur_tx - dirty_tx;
4543
4544 while (tx_left > 0) {
4545 unsigned int entry = dirty_tx % NUM_TX_DESC;
4546 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 u32 status;
4548
4549 rmb();
4550 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
4551 if (status & DescOwn)
4552 break;
4553
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004554 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
4555 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 if (status & LastFrag) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004557 dev->stats.tx_packets++;
4558 dev->stats.tx_bytes += tx_skb->skb->len;
Eric Dumazet87433bf2009-06-09 22:55:53 +00004559 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 tx_skb->skb = NULL;
4561 }
4562 dirty_tx++;
4563 tx_left--;
4564 }
4565
4566 if (tp->dirty_tx != dirty_tx) {
4567 tp->dirty_tx = dirty_tx;
4568 smp_wmb();
4569 if (netif_queue_stopped(dev) &&
4570 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
4571 netif_wake_queue(dev);
4572 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02004573 /*
4574 * 8168 hack: TxPoll requests are lost when the Tx packets are
4575 * too close. Let's kick an extra TxPoll request when a burst
4576 * of start_xmit activity is detected (if it is not detected,
4577 * it is slow enough). -- FR
4578 */
4579 smp_rmb();
4580 if (tp->cur_tx != dirty_tx)
4581 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 }
4583}
4584
Francois Romieu126fa4b2005-05-12 20:09:17 -04004585static inline int rtl8169_fragmented_frame(u32 status)
4586{
4587 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
4588}
4589
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004590static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 u32 status = opts1 & RxProtoMask;
4593
4594 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00004595 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 skb->ip_summed = CHECKSUM_UNNECESSARY;
4597 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07004598 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599}
4600
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004601static struct sk_buff *rtl8169_try_rx_copy(void *data,
4602 struct rtl8169_private *tp,
4603 int pkt_size,
4604 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004606 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004607 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004609 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004610 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004611 prefetch(data);
4612 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
4613 if (skb)
4614 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004615 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
4616
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004617 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618}
4619
Eric Dumazet630b9432010-03-31 02:08:31 +00004620/*
4621 * Warning : rtl8169_rx_interrupt() might be called :
4622 * 1) from NAPI (softirq) context
4623 * (polling = 1 : we should call netif_receive_skb())
4624 * 2) from process context (rtl8169_reset_task())
4625 * (polling = 0 : we must call netif_rx() instead)
4626 */
Francois Romieu07d3f512007-02-21 22:40:46 +01004627static int rtl8169_rx_interrupt(struct net_device *dev,
4628 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004629 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630{
4631 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004632 unsigned int count;
Eric Dumazet630b9432010-03-31 02:08:31 +00004633 int polling = (budget != ~(u32)0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 cur_rx = tp->cur_rx;
4636 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02004637 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004639 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004641 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 u32 status;
4643
4644 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04004645 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
4647 if (status & DescOwn)
4648 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004649 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004650 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
4651 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004652 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02004654 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02004656 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004657 if (status & RxFOVF) {
4658 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004659 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02004660 }
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004661 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004663 struct sk_buff *skb;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02004664 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 int pkt_size = (status & 0x00001FFF) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666
Francois Romieu126fa4b2005-05-12 20:09:17 -04004667 /*
4668 * The driver does not support incoming fragmented
4669 * frames. They are seen as a symptom of over-mtu
4670 * sized frames.
4671 */
4672 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02004673 dev->stats.rx_dropped++;
4674 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004675 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02004676 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04004677 }
4678
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004679 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
4680 tp, pkt_size, addr);
4681 rtl8169_mark_to_asic(desc, rx_buf_sz);
4682 if (!skb) {
4683 dev->stats.rx_dropped++;
4684 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 }
4686
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004687 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 skb_put(skb, pkt_size);
4689 skb->protocol = eth_type_trans(skb, dev);
4690
Francois Romieu7a8fc772011-03-01 17:18:33 +01004691 rtl8169_rx_vlan_tag(desc, skb);
4692
4693 if (likely(polling))
4694 napi_gro_receive(&tp->napi, skb);
4695 else
4696 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
Francois Romieucebf8cc2007-10-18 12:06:54 +02004698 dev->stats.rx_bytes += pkt_size;
4699 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 }
Francois Romieu6dccd162007-02-13 23:38:05 +01004701
4702 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00004703 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01004704 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
4705 desc->opts2 = 0;
4706 cur_rx++;
4707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 }
4709
4710 count = cur_rx - tp->cur_rx;
4711 tp->cur_rx = cur_rx;
4712
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004713 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714
4715 return count;
4716}
4717
Francois Romieu07d3f512007-02-21 22:40:46 +01004718static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719{
Francois Romieu07d3f512007-02-21 22:40:46 +01004720 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02004724 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725
David Dillowf11a3772009-05-22 15:29:34 +00004726 /* loop handling interrupts until we have no new ones or
4727 * we hit a invalid/hotplug case.
4728 */
Francois Romieu865c6522008-05-11 14:51:00 +02004729 status = RTL_R16(IntrStatus);
David Dillowf11a3772009-05-22 15:29:34 +00004730 while (status && status != 0xffff) {
4731 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732
David Dillowf11a3772009-05-22 15:29:34 +00004733 /* Handle all of the error cases first. These will reset
4734 * the chip, so just exit the loop.
4735 */
4736 if (unlikely(!netif_running(dev))) {
4737 rtl8169_asic_down(ioaddr);
4738 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 }
David Dillowf11a3772009-05-22 15:29:34 +00004740
Francois Romieu1519e572011-02-03 12:02:36 +01004741 if (unlikely(status & RxFIFOOver)) {
4742 switch (tp->mac_version) {
4743 /* Work around for rx fifo overflow */
4744 case RTL_GIGA_MAC_VER_11:
4745 case RTL_GIGA_MAC_VER_22:
4746 case RTL_GIGA_MAC_VER_26:
4747 netif_stop_queue(dev);
4748 rtl8169_tx_timeout(dev);
4749 goto done;
Francois Romieuf60ac8e2011-02-03 17:27:52 +01004750 /* Testers needed. */
4751 case RTL_GIGA_MAC_VER_17:
4752 case RTL_GIGA_MAC_VER_19:
4753 case RTL_GIGA_MAC_VER_20:
4754 case RTL_GIGA_MAC_VER_21:
4755 case RTL_GIGA_MAC_VER_23:
4756 case RTL_GIGA_MAC_VER_24:
4757 case RTL_GIGA_MAC_VER_27:
4758 case RTL_GIGA_MAC_VER_28:
Francois Romieu1519e572011-02-03 12:02:36 +01004759 /* Experimental science. Pktgen proof. */
4760 case RTL_GIGA_MAC_VER_12:
4761 case RTL_GIGA_MAC_VER_25:
4762 if (status == RxFIFOOver)
4763 goto done;
4764 break;
4765 default:
4766 break;
4767 }
David Dillowf11a3772009-05-22 15:29:34 +00004768 }
4769
4770 if (unlikely(status & SYSErr)) {
4771 rtl8169_pcierr_interrupt(dev);
4772 break;
4773 }
4774
4775 if (status & LinkChg)
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00004776 __rtl8169_check_link_status(dev, tp, ioaddr, true);
David Dillowf11a3772009-05-22 15:29:34 +00004777
4778 /* We need to see the lastest version of tp->intr_mask to
4779 * avoid ignoring an MSI interrupt and having to wait for
4780 * another event which may never come.
4781 */
4782 smp_rmb();
4783 if (status & tp->intr_mask & tp->napi_event) {
4784 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
4785 tp->intr_mask = ~tp->napi_event;
4786
4787 if (likely(napi_schedule_prep(&tp->napi)))
4788 __napi_schedule(&tp->napi);
Joe Perchesbf82c182010-02-09 11:49:50 +00004789 else
4790 netif_info(tp, intr, dev,
4791 "interrupt %04x in poll\n", status);
David Dillowf11a3772009-05-22 15:29:34 +00004792 }
4793
4794 /* We only get a new MSI interrupt when all active irq
4795 * sources on the chip have been acknowledged. So, ack
4796 * everything we've seen and check if new sources have become
4797 * active to avoid blocking all interrupts from the chip.
4798 */
4799 RTL_W16(IntrStatus,
4800 (status & RxFIFOOver) ? (status | RxOverflow) : status);
4801 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 }
Francois Romieu1519e572011-02-03 12:02:36 +01004803done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 return IRQ_RETVAL(handled);
4805}
4806
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004807static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004809 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
4810 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004812 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004814 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815 rtl8169_tx_interrupt(dev, tp, ioaddr);
4816
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004817 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08004818 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00004819
4820 /* We need for force the visibility of tp->intr_mask
4821 * for other CPUs, as we can loose an MSI interrupt
4822 * and potentially wait for a retransmit timeout if we don't.
4823 * The posted write to IntrMask is safe, as it will
4824 * eventually make it to the chip and we won't loose anything
4825 * until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826 */
David Dillowf11a3772009-05-22 15:29:34 +00004827 tp->intr_mask = 0xffff;
David Dillow4c020a92010-03-03 16:33:10 +00004828 wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01004829 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 }
4831
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004832 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834
Francois Romieu523a6092008-09-10 22:28:56 +02004835static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
4836{
4837 struct rtl8169_private *tp = netdev_priv(dev);
4838
4839 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
4840 return;
4841
4842 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
4843 RTL_W32(RxMissed, 0);
4844}
4845
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846static void rtl8169_down(struct net_device *dev)
4847{
4848 struct rtl8169_private *tp = netdev_priv(dev);
4849 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850
4851 rtl8169_delete_timer(dev);
4852
4853 netif_stop_queue(dev);
4854
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004855 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01004856
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857 spin_lock_irq(&tp->lock);
4858
4859 rtl8169_asic_down(ioaddr);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004860 /*
4861 * At this point device interrupts can not be enabled in any function,
4862 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
4863 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
4864 */
Francois Romieu523a6092008-09-10 22:28:56 +02004865 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
4867 spin_unlock_irq(&tp->lock);
4868
4869 synchronize_irq(dev->irq);
4870
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07004872 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874 rtl8169_tx_clear(tp);
4875
4876 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00004877
4878 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879}
4880
4881static int rtl8169_close(struct net_device *dev)
4882{
4883 struct rtl8169_private *tp = netdev_priv(dev);
4884 struct pci_dev *pdev = tp->pci_dev;
4885
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004886 pm_runtime_get_sync(&pdev->dev);
4887
Ivan Vecera355423d2009-02-06 21:49:57 -08004888 /* update counters before going down */
4889 rtl8169_update_counters(dev);
4890
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891 rtl8169_down(dev);
4892
4893 free_irq(dev->irq, dev);
4894
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00004895 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
4896 tp->RxPhyAddr);
4897 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
4898 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 tp->TxDescArray = NULL;
4900 tp->RxDescArray = NULL;
4901
Rafael J. Wysockie1759442010-03-14 14:33:51 +00004902 pm_runtime_put_sync(&pdev->dev);
4903
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 return 0;
4905}
4906
Francois Romieu07ce4062007-02-23 23:36:39 +01004907static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908{
4909 struct rtl8169_private *tp = netdev_priv(dev);
4910 void __iomem *ioaddr = tp->mmio_addr;
4911 unsigned long flags;
4912 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01004913 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 u32 tmp = 0;
4915
4916 if (dev->flags & IFF_PROMISC) {
4917 /* Unconditionally log net taps. */
Joe Perchesbf82c182010-02-09 11:49:50 +00004918 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 rx_mode =
4920 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4921 AcceptAllPhys;
4922 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00004923 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00004924 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 /* Too many to filter perfectly -- accept all multicasts. */
4926 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4927 mc_filter[1] = mc_filter[0] = 0xffffffff;
4928 } else {
Jiri Pirko22bedad2010-04-01 21:22:57 +00004929 struct netdev_hw_addr *ha;
Francois Romieu07d3f512007-02-21 22:40:46 +01004930
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 rx_mode = AcceptBroadcast | AcceptMyPhys;
4932 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00004933 netdev_for_each_mc_addr(ha, dev) {
4934 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4936 rx_mode |= AcceptMulticast;
4937 }
4938 }
4939
4940 spin_lock_irqsave(&tp->lock, flags);
4941
4942 tmp = rtl8169_rx_config | rx_mode |
4943 (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
4944
Francois Romieuf887cce2008-07-17 22:24:18 +02004945 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01004946 u32 data = mc_filter[0];
4947
4948 mc_filter[0] = swab32(mc_filter[1]);
4949 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02004950 }
4951
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 RTL_W32(MAR0 + 4, mc_filter[1]);
Francois Romieu78f1cd02010-03-27 19:35:46 -07004953 RTL_W32(MAR0 + 0, mc_filter[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954
Francois Romieu57a9f232007-06-04 22:10:15 +02004955 RTL_W32(RxConfig, tmp);
4956
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957 spin_unlock_irqrestore(&tp->lock, flags);
4958}
4959
4960/**
4961 * rtl8169_get_stats - Get rtl8169 read/write statistics
4962 * @dev: The Ethernet Device to get statistics for
4963 *
4964 * Get TX/RX statistics for rtl8169
4965 */
4966static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
4967{
4968 struct rtl8169_private *tp = netdev_priv(dev);
4969 void __iomem *ioaddr = tp->mmio_addr;
4970 unsigned long flags;
4971
4972 if (netif_running(dev)) {
4973 spin_lock_irqsave(&tp->lock, flags);
Francois Romieu523a6092008-09-10 22:28:56 +02004974 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 spin_unlock_irqrestore(&tp->lock, flags);
4976 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02004977
Francois Romieucebf8cc2007-10-18 12:06:54 +02004978 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979}
4980
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004981static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01004982{
françois romieu065c27c2011-01-03 15:08:12 +00004983 struct rtl8169_private *tp = netdev_priv(dev);
4984
Francois Romieu5d06a992006-02-23 00:47:58 +01004985 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004986 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01004987
françois romieu065c27c2011-01-03 15:08:12 +00004988 rtl_pll_power_down(tp);
4989
Francois Romieu5d06a992006-02-23 00:47:58 +01004990 netif_device_detach(dev);
4991 netif_stop_queue(dev);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004992}
Francois Romieu5d06a992006-02-23 00:47:58 +01004993
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00004994#ifdef CONFIG_PM
4995
4996static int rtl8169_suspend(struct device *device)
4997{
4998 struct pci_dev *pdev = to_pci_dev(device);
4999 struct net_device *dev = pci_get_drvdata(pdev);
5000
5001 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02005002
Francois Romieu5d06a992006-02-23 00:47:58 +01005003 return 0;
5004}
5005
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005006static void __rtl8169_resume(struct net_device *dev)
5007{
françois romieu065c27c2011-01-03 15:08:12 +00005008 struct rtl8169_private *tp = netdev_priv(dev);
5009
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005010 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00005011
5012 rtl_pll_power_up(tp);
5013
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005014 rtl8169_schedule_work(dev, rtl8169_reset_task);
5015}
5016
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005017static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01005018{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005019 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01005020 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005021 struct rtl8169_private *tp = netdev_priv(dev);
5022
5023 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01005024
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005025 if (netif_running(dev))
5026 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01005027
Francois Romieu5d06a992006-02-23 00:47:58 +01005028 return 0;
5029}
5030
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005031static int rtl8169_runtime_suspend(struct device *device)
5032{
5033 struct pci_dev *pdev = to_pci_dev(device);
5034 struct net_device *dev = pci_get_drvdata(pdev);
5035 struct rtl8169_private *tp = netdev_priv(dev);
5036
5037 if (!tp->TxDescArray)
5038 return 0;
5039
5040 spin_lock_irq(&tp->lock);
5041 tp->saved_wolopts = __rtl8169_get_wol(tp);
5042 __rtl8169_set_wol(tp, WAKE_ANY);
5043 spin_unlock_irq(&tp->lock);
5044
5045 rtl8169_net_suspend(dev);
5046
5047 return 0;
5048}
5049
5050static int rtl8169_runtime_resume(struct device *device)
5051{
5052 struct pci_dev *pdev = to_pci_dev(device);
5053 struct net_device *dev = pci_get_drvdata(pdev);
5054 struct rtl8169_private *tp = netdev_priv(dev);
5055
5056 if (!tp->TxDescArray)
5057 return 0;
5058
5059 spin_lock_irq(&tp->lock);
5060 __rtl8169_set_wol(tp, tp->saved_wolopts);
5061 tp->saved_wolopts = 0;
5062 spin_unlock_irq(&tp->lock);
5063
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005064 rtl8169_init_phy(dev, tp);
5065
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005066 __rtl8169_resume(dev);
5067
5068 return 0;
5069}
5070
5071static int rtl8169_runtime_idle(struct device *device)
5072{
5073 struct pci_dev *pdev = to_pci_dev(device);
5074 struct net_device *dev = pci_get_drvdata(pdev);
5075 struct rtl8169_private *tp = netdev_priv(dev);
5076
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00005077 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005078}
5079
Alexey Dobriyan47145212009-12-14 18:00:08 -08005080static const struct dev_pm_ops rtl8169_pm_ops = {
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005081 .suspend = rtl8169_suspend,
5082 .resume = rtl8169_resume,
5083 .freeze = rtl8169_suspend,
5084 .thaw = rtl8169_resume,
5085 .poweroff = rtl8169_suspend,
5086 .restore = rtl8169_resume,
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005087 .runtime_suspend = rtl8169_runtime_suspend,
5088 .runtime_resume = rtl8169_runtime_resume,
5089 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005090};
5091
5092#define RTL8169_PM_OPS (&rtl8169_pm_ops)
5093
5094#else /* !CONFIG_PM */
5095
5096#define RTL8169_PM_OPS NULL
5097
5098#endif /* !CONFIG_PM */
5099
Francois Romieu1765f952008-09-13 17:21:40 +02005100static void rtl_shutdown(struct pci_dev *pdev)
5101{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005102 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00005103 struct rtl8169_private *tp = netdev_priv(dev);
5104 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu1765f952008-09-13 17:21:40 +02005105
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005106 rtl8169_net_suspend(dev);
5107
Ivan Veceracc098dc2009-11-29 23:12:52 -08005108 /* restore original MAC address */
5109 rtl_rar_set(tp, dev->perm_addr);
5110
françois romieu4bb3f522009-06-17 11:41:45 +00005111 spin_lock_irq(&tp->lock);
5112
5113 rtl8169_asic_down(ioaddr);
5114
5115 spin_unlock_irq(&tp->lock);
5116
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005117 if (system_state == SYSTEM_POWER_OFF) {
françois romieuca52efd2009-07-24 12:34:19 +00005118 /* WoL fails with some 8168 when the receiver is disabled. */
5119 if (tp->features & RTL_FEATURE_WOL) {
5120 pci_clear_master(pdev);
5121
5122 RTL_W8(ChipCmd, CmdRxEnb);
5123 /* PCI commit */
5124 RTL_R8(ChipCmd);
5125 }
5126
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005127 pci_wake_from_d3(pdev, true);
5128 pci_set_power_state(pdev, PCI_D3hot);
5129 }
5130}
Francois Romieu5d06a992006-02-23 00:47:58 +01005131
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132static struct pci_driver rtl8169_pci_driver = {
5133 .name = MODULENAME,
5134 .id_table = rtl8169_pci_tbl,
5135 .probe = rtl8169_init_one,
5136 .remove = __devexit_p(rtl8169_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02005137 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005138 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139};
5140
Francois Romieu07d3f512007-02-21 22:40:46 +01005141static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142{
Jeff Garzik29917622006-08-19 17:48:59 -04005143 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144}
5145
Francois Romieu07d3f512007-02-21 22:40:46 +01005146static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147{
5148 pci_unregister_driver(&rtl8169_pci_driver);
5149}
5150
5151module_init(rtl8169_init_module);
5152module_exit(rtl8169_cleanup_module);