blob: 40bcb82d9116d3f9b6197bb450dbbb3227b79598 [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>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000025#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/dma-mapping.h>
Rafael J. Wysockie1759442010-03-14 14:33:51 +000027#include <linux/pm_runtime.h>
françois romieubca03d52011-01-03 15:07:31 +000028#include <linux/firmware.h>
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +000029#include <linux/pci-aspm.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040030#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Francois Romieu99f252b2007-04-02 22:59:59 +020032#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/io.h>
34#include <asm/irq.h>
35
Francois Romieu865c6522008-05-11 14:51:00 +020036#define RTL8169_VERSION "2.3LK-NAPI"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define MODULENAME "r8169"
38#define PFX MODULENAME ": "
39
françois romieubca03d52011-01-03 15:07:31 +000040#define FIRMWARE_8168D_1 "rtl_nic/rtl8168d-1.fw"
41#define FIRMWARE_8168D_2 "rtl_nic/rtl8168d-2.fw"
hayeswang01dc7fe2011-03-21 01:50:28 +000042#define FIRMWARE_8168E_1 "rtl_nic/rtl8168e-1.fw"
43#define FIRMWARE_8168E_2 "rtl_nic/rtl8168e-2.fw"
Hayes Wang70090422011-07-06 15:58:06 +080044#define FIRMWARE_8168E_3 "rtl_nic/rtl8168e-3.fw"
Hayes Wang5a5e4442011-02-22 17:26:21 +080045#define FIRMWARE_8105E_1 "rtl_nic/rtl8105e-1.fw"
françois romieubca03d52011-01-03 15:07:31 +000046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#ifdef RTL8169_DEBUG
48#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020049 if (!(expr)) { \
50 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070051 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020052 }
Joe Perches06fa7352007-10-18 21:15:00 +020053#define dprintk(fmt, args...) \
54 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#else
56#define assert(expr) do {} while (0)
57#define dprintk(fmt, args...) do {} while (0)
58#endif /* RTL8169_DEBUG */
59
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020060#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070061 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define TX_BUFFS_AVAIL(tp) \
64 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
67 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050068static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/* MAC address length */
71#define MAC_ADDR_LEN 6
72
Francois Romieu9c14cea2008-07-05 00:21:15 +020073#define MAX_READ_REQUEST_SHIFT 12
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
76#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
77
78#define R8169_REGS_SIZE 256
79#define R8169_NAPI_WEIGHT 64
80#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
81#define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
82#define RX_BUF_SIZE 1536 /* Rx Buffer size */
83#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
84#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
85
86#define RTL8169_TX_TIMEOUT (6*HZ)
87#define RTL8169_PHY_TIMEOUT (10*HZ)
88
françois romieuea8dbdd2009-03-15 01:10:50 +000089#define RTL_EEPROM_SIG cpu_to_le32(0x8129)
90#define RTL_EEPROM_SIG_MASK cpu_to_le32(0xffff)
Francois Romieue1564ec2008-10-16 22:46:13 +020091#define RTL_EEPROM_SIG_ADDR 0x0000
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/* write/read MMIO register */
94#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
95#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
96#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
97#define RTL_R8(reg) readb (ioaddr + (reg))
98#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +000099#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101enum mac_version {
Francois Romieu85bffe62011-04-27 08:22:39 +0200102 RTL_GIGA_MAC_VER_01 = 0,
103 RTL_GIGA_MAC_VER_02,
104 RTL_GIGA_MAC_VER_03,
105 RTL_GIGA_MAC_VER_04,
106 RTL_GIGA_MAC_VER_05,
107 RTL_GIGA_MAC_VER_06,
108 RTL_GIGA_MAC_VER_07,
109 RTL_GIGA_MAC_VER_08,
110 RTL_GIGA_MAC_VER_09,
111 RTL_GIGA_MAC_VER_10,
112 RTL_GIGA_MAC_VER_11,
113 RTL_GIGA_MAC_VER_12,
114 RTL_GIGA_MAC_VER_13,
115 RTL_GIGA_MAC_VER_14,
116 RTL_GIGA_MAC_VER_15,
117 RTL_GIGA_MAC_VER_16,
118 RTL_GIGA_MAC_VER_17,
119 RTL_GIGA_MAC_VER_18,
120 RTL_GIGA_MAC_VER_19,
121 RTL_GIGA_MAC_VER_20,
122 RTL_GIGA_MAC_VER_21,
123 RTL_GIGA_MAC_VER_22,
124 RTL_GIGA_MAC_VER_23,
125 RTL_GIGA_MAC_VER_24,
126 RTL_GIGA_MAC_VER_25,
127 RTL_GIGA_MAC_VER_26,
128 RTL_GIGA_MAC_VER_27,
129 RTL_GIGA_MAC_VER_28,
130 RTL_GIGA_MAC_VER_29,
131 RTL_GIGA_MAC_VER_30,
132 RTL_GIGA_MAC_VER_31,
133 RTL_GIGA_MAC_VER_32,
134 RTL_GIGA_MAC_VER_33,
Hayes Wang70090422011-07-06 15:58:06 +0800135 RTL_GIGA_MAC_VER_34,
Francois Romieu85bffe62011-04-27 08:22:39 +0200136 RTL_GIGA_MAC_NONE = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137};
138
Francois Romieu2b7b4312011-04-18 22:53:24 -0700139enum rtl_tx_desc_version {
140 RTL_TD_0 = 0,
141 RTL_TD_1 = 1,
142};
143
Francois Romieu85bffe62011-04-27 08:22:39 +0200144#define _R(NAME,TD,FW) \
145 { .name = NAME, .txd_version = TD, .fw_name = FW }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800147static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 const char *name;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700149 enum rtl_tx_desc_version txd_version;
Francois Romieu85bffe62011-04-27 08:22:39 +0200150 const char *fw_name;
151} rtl_chip_infos[] = {
152 /* PCI devices. */
153 [RTL_GIGA_MAC_VER_01] =
154 _R("RTL8169", RTL_TD_0, NULL),
155 [RTL_GIGA_MAC_VER_02] =
156 _R("RTL8169s", RTL_TD_0, NULL),
157 [RTL_GIGA_MAC_VER_03] =
158 _R("RTL8110s", RTL_TD_0, NULL),
159 [RTL_GIGA_MAC_VER_04] =
160 _R("RTL8169sb/8110sb", RTL_TD_0, NULL),
161 [RTL_GIGA_MAC_VER_05] =
162 _R("RTL8169sc/8110sc", RTL_TD_0, NULL),
163 [RTL_GIGA_MAC_VER_06] =
164 _R("RTL8169sc/8110sc", RTL_TD_0, NULL),
165 /* PCI-E devices. */
166 [RTL_GIGA_MAC_VER_07] =
167 _R("RTL8102e", RTL_TD_1, NULL),
168 [RTL_GIGA_MAC_VER_08] =
169 _R("RTL8102e", RTL_TD_1, NULL),
170 [RTL_GIGA_MAC_VER_09] =
171 _R("RTL8102e", RTL_TD_1, NULL),
172 [RTL_GIGA_MAC_VER_10] =
173 _R("RTL8101e", RTL_TD_0, NULL),
174 [RTL_GIGA_MAC_VER_11] =
175 _R("RTL8168b/8111b", RTL_TD_0, NULL),
176 [RTL_GIGA_MAC_VER_12] =
177 _R("RTL8168b/8111b", RTL_TD_0, NULL),
178 [RTL_GIGA_MAC_VER_13] =
179 _R("RTL8101e", RTL_TD_0, NULL),
180 [RTL_GIGA_MAC_VER_14] =
181 _R("RTL8100e", RTL_TD_0, NULL),
182 [RTL_GIGA_MAC_VER_15] =
183 _R("RTL8100e", RTL_TD_0, NULL),
184 [RTL_GIGA_MAC_VER_16] =
185 _R("RTL8101e", RTL_TD_0, NULL),
186 [RTL_GIGA_MAC_VER_17] =
187 _R("RTL8168b/8111b", RTL_TD_0, NULL),
188 [RTL_GIGA_MAC_VER_18] =
189 _R("RTL8168cp/8111cp", RTL_TD_1, NULL),
190 [RTL_GIGA_MAC_VER_19] =
191 _R("RTL8168c/8111c", RTL_TD_1, NULL),
192 [RTL_GIGA_MAC_VER_20] =
193 _R("RTL8168c/8111c", RTL_TD_1, NULL),
194 [RTL_GIGA_MAC_VER_21] =
195 _R("RTL8168c/8111c", RTL_TD_1, NULL),
196 [RTL_GIGA_MAC_VER_22] =
197 _R("RTL8168c/8111c", RTL_TD_1, NULL),
198 [RTL_GIGA_MAC_VER_23] =
199 _R("RTL8168cp/8111cp", RTL_TD_1, NULL),
200 [RTL_GIGA_MAC_VER_24] =
201 _R("RTL8168cp/8111cp", RTL_TD_1, NULL),
202 [RTL_GIGA_MAC_VER_25] =
203 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_1),
204 [RTL_GIGA_MAC_VER_26] =
205 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_2),
206 [RTL_GIGA_MAC_VER_27] =
207 _R("RTL8168dp/8111dp", RTL_TD_1, NULL),
208 [RTL_GIGA_MAC_VER_28] =
209 _R("RTL8168dp/8111dp", RTL_TD_1, NULL),
210 [RTL_GIGA_MAC_VER_29] =
211 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1),
212 [RTL_GIGA_MAC_VER_30] =
213 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1),
214 [RTL_GIGA_MAC_VER_31] =
215 _R("RTL8168dp/8111dp", RTL_TD_1, NULL),
216 [RTL_GIGA_MAC_VER_32] =
217 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_1),
218 [RTL_GIGA_MAC_VER_33] =
Hayes Wang70090422011-07-06 15:58:06 +0800219 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_2),
220 [RTL_GIGA_MAC_VER_34] =
221 _R("RTL8168evl/8111evl",RTL_TD_1, FIRMWARE_8168E_3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222};
223#undef _R
224
Francois Romieubcf0bf92006-07-26 23:14:13 +0200225enum cfg_version {
226 RTL_CFG_0 = 0x00,
227 RTL_CFG_1,
228 RTL_CFG_2
229};
230
Francois Romieu07ce4062007-02-23 23:36:39 +0100231static void rtl_hw_start_8169(struct net_device *);
232static void rtl_hw_start_8168(struct net_device *);
233static void rtl_hw_start_8101(struct net_device *);
234
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000235static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200236 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200237 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200238 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100239 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200240 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
241 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200242 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200243 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
244 { PCI_VENDOR_ID_LINKSYS, 0x1032,
245 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100246 { 0x0001, 0x8168,
247 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 {0,},
249};
250
251MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
252
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000253static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700254static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200255static struct {
256 u32 msg_enable;
257} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Francois Romieu07d3f512007-02-21 22:40:46 +0100259enum rtl_registers {
260 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100261 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100262 MAR0 = 8, /* Multicast filter. */
263 CounterAddrLow = 0x10,
264 CounterAddrHigh = 0x14,
265 TxDescStartAddrLow = 0x20,
266 TxDescStartAddrHigh = 0x24,
267 TxHDescStartAddrLow = 0x28,
268 TxHDescStartAddrHigh = 0x2c,
269 FLASH = 0x30,
270 ERSR = 0x36,
271 ChipCmd = 0x37,
272 TxPoll = 0x38,
273 IntrMask = 0x3c,
274 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700275
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800276 TxConfig = 0x40,
277#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
278#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
279
280 RxConfig = 0x44,
281#define RX128_INT_EN (1 << 15) /* 8111c and later */
282#define RX_MULTI_EN (1 << 14) /* 8111c only */
283#define RXCFG_FIFO_SHIFT 13
284 /* No threshold before first PCI xfer */
285#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
286#define RXCFG_DMA_SHIFT 8
287 /* Unlimited maximum PCI burst. */
288#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700289
Francois Romieu07d3f512007-02-21 22:40:46 +0100290 RxMissed = 0x4c,
291 Cfg9346 = 0x50,
292 Config0 = 0x51,
293 Config1 = 0x52,
294 Config2 = 0x53,
295 Config3 = 0x54,
296 Config4 = 0x55,
297 Config5 = 0x56,
298 MultiIntr = 0x5c,
299 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100300 PHYstatus = 0x6c,
301 RxMaxSize = 0xda,
302 CPlusCmd = 0xe0,
303 IntrMitigate = 0xe2,
304 RxDescAddrLow = 0xe4,
305 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000306 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
307
308#define NoEarlyTx 0x3f /* Max value : no early transmit. */
309
310 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
311
312#define TxPacketMax (8064 >> 7)
313
Francois Romieu07d3f512007-02-21 22:40:46 +0100314 FuncEvent = 0xf0,
315 FuncEventMask = 0xf4,
316 FuncPresetState = 0xf8,
317 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318};
319
Francois Romieuf162a5d2008-06-01 22:37:49 +0200320enum rtl8110_registers {
321 TBICSR = 0x64,
322 TBI_ANAR = 0x68,
323 TBI_LPAR = 0x6a,
324};
325
326enum rtl8168_8101_registers {
327 CSIDR = 0x64,
328 CSIAR = 0x68,
329#define CSIAR_FLAG 0x80000000
330#define CSIAR_WRITE_CMD 0x80000000
331#define CSIAR_BYTE_ENABLE 0x0f
332#define CSIAR_BYTE_ENABLE_SHIFT 12
333#define CSIAR_ADDR_MASK 0x0fff
françois romieu065c27c2011-01-03 15:08:12 +0000334 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200335 EPHYAR = 0x80,
336#define EPHYAR_FLAG 0x80000000
337#define EPHYAR_WRITE_CMD 0x80000000
338#define EPHYAR_REG_MASK 0x1f
339#define EPHYAR_REG_SHIFT 16
340#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800341 DLLPR = 0xd0,
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800342#define PFM_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200343 DBG_REG = 0xd1,
344#define FIX_NAK_1 (1 << 4)
345#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800346 TWSI = 0xd2,
347 MCU = 0xd3,
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800348#define NOW_IS_OOB (1 << 7)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800349#define EN_NDP (1 << 3)
350#define EN_OOB_RESET (1 << 2)
françois romieudaf9df62009-10-07 12:44:20 +0000351 EFUSEAR = 0xdc,
352#define EFUSEAR_FLAG 0x80000000
353#define EFUSEAR_WRITE_CMD 0x80000000
354#define EFUSEAR_READ_CMD 0x00000000
355#define EFUSEAR_REG_MASK 0x03ff
356#define EFUSEAR_REG_SHIFT 8
357#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200358};
359
françois romieuc0e45c12011-01-03 15:08:04 +0000360enum rtl8168_registers {
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800361 LED_FREQ = 0x1a,
362 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000363 ERIDR = 0x70,
364 ERIAR = 0x74,
365#define ERIAR_FLAG 0x80000000
366#define ERIAR_WRITE_CMD 0x80000000
367#define ERIAR_READ_CMD 0x00000000
368#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000369#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800370#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
371#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
372#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
373#define ERIAR_MASK_SHIFT 12
374#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
375#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
376#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000377 EPHY_RXER_NUM = 0x7c,
378 OCPDR = 0xb0, /* OCP GPHY access */
379#define OCPDR_WRITE_CMD 0x80000000
380#define OCPDR_READ_CMD 0x00000000
381#define OCPDR_REG_MASK 0x7f
382#define OCPDR_GPHY_REG_SHIFT 16
383#define OCPDR_DATA_MASK 0xffff
384 OCPAR = 0xb4,
385#define OCPAR_FLAG 0x80000000
386#define OCPAR_GPHY_WRITE_CMD 0x8000f060
387#define OCPAR_GPHY_READ_CMD 0x0000f060
hayeswang01dc7fe2011-03-21 01:50:28 +0000388 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
389 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200390#define TXPLA_RST (1 << 29)
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800391#define PWM_EN (1 << 22)
françois romieuc0e45c12011-01-03 15:08:04 +0000392};
393
Francois Romieu07d3f512007-02-21 22:40:46 +0100394enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100396 SYSErr = 0x8000,
397 PCSTimeout = 0x4000,
398 SWInt = 0x0100,
399 TxDescUnavail = 0x0080,
400 RxFIFOOver = 0x0040,
401 LinkChg = 0x0020,
402 RxOverflow = 0x0010,
403 TxErr = 0x0008,
404 TxOK = 0x0004,
405 RxErr = 0x0002,
406 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 /* RxStatusDesc */
Francois Romieu9dccf612006-05-14 12:31:17 +0200409 RxFOVF = (1 << 23),
410 RxRWT = (1 << 22),
411 RxRES = (1 << 21),
412 RxRUNT = (1 << 20),
413 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 /* ChipCmdBits */
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800416 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100417 CmdReset = 0x10,
418 CmdRxEnb = 0x08,
419 CmdTxEnb = 0x04,
420 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Francois Romieu275391a2007-02-23 23:50:28 +0100422 /* TXPoll register p.5 */
423 HPQ = 0x80, /* Poll cmd on the high prio queue */
424 NPQ = 0x40, /* Poll cmd on the low prio queue */
425 FSWInt = 0x01, /* Forced software interrupt */
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100428 Cfg9346_Lock = 0x00,
429 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100432 AcceptErr = 0x20,
433 AcceptRunt = 0x10,
434 AcceptBroadcast = 0x08,
435 AcceptMulticast = 0x04,
436 AcceptMyPhys = 0x02,
437 AcceptAllPhys = 0x01,
Francois Romieu1687b562011-07-19 17:21:29 +0200438#define RX_CONFIG_ACCEPT_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /* TxConfigBits */
441 TxInterFrameGapShift = 24,
442 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
443
Francois Romieu5d06a992006-02-23 00:47:58 +0100444 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200445 LEDS1 = (1 << 7),
446 LEDS0 = (1 << 6),
Francois Romieufbac58f2007-10-04 22:51:38 +0200447 MSIEnable = (1 << 5), /* Enable Message Signaled Interrupt */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200448 Speed_down = (1 << 4),
449 MEMMAP = (1 << 3),
450 IOMAP = (1 << 2),
451 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100452 PMEnable = (1 << 0), /* Power Management Enable */
453
Francois Romieu6dccd162007-02-13 23:38:05 +0100454 /* Config2 register p. 25 */
455 PCI_Clock_66MHz = 0x01,
456 PCI_Clock_33MHz = 0x00,
457
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100458 /* Config3 register p.25 */
459 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
460 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200461 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100462
Francois Romieu5d06a992006-02-23 00:47:58 +0100463 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100464 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
465 MWF = (1 << 5), /* Accept Multicast wakeup frame */
466 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200467 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100468 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100469 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /* TBICSR p.28 */
472 TBIReset = 0x80000000,
473 TBILoopback = 0x40000000,
474 TBINwEnable = 0x20000000,
475 TBINwRestart = 0x10000000,
476 TBILinkOk = 0x02000000,
477 TBINwComplete = 0x01000000,
478
479 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200480 EnableBist = (1 << 15), // 8168 8101
481 Mac_dbgo_oe = (1 << 14), // 8168 8101
482 Normal_mode = (1 << 13), // unused
483 Force_half_dup = (1 << 12), // 8168 8101
484 Force_rxflow_en = (1 << 11), // 8168 8101
485 Force_txflow_en = (1 << 10), // 8168 8101
486 Cxpl_dbg_sel = (1 << 9), // 8168 8101
487 ASF = (1 << 8), // 8168 8101
488 PktCntrDisable = (1 << 7), // 8168 8101
489 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 RxVlan = (1 << 6),
491 RxChkSum = (1 << 5),
492 PCIDAC = (1 << 4),
493 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100494 INTT_0 = 0x0000, // 8168
495 INTT_1 = 0x0001, // 8168
496 INTT_2 = 0x0002, // 8168
497 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100500 TBI_Enable = 0x80,
501 TxFlowCtrl = 0x40,
502 RxFlowCtrl = 0x20,
503 _1000bpsF = 0x10,
504 _100bps = 0x08,
505 _10bps = 0x04,
506 LinkStatus = 0x02,
507 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100510 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200511
512 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100513 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514};
515
Francois Romieu2b7b4312011-04-18 22:53:24 -0700516enum rtl_desc_bit {
517 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
519 RingEnd = (1 << 30), /* End of descriptor ring */
520 FirstFrag = (1 << 29), /* First segment of a packet */
521 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700522};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Francois Romieu2b7b4312011-04-18 22:53:24 -0700524/* Generic case. */
525enum rtl_tx_desc_bit {
526 /* First doubleword. */
527 TD_LSO = (1 << 27), /* Large Send Offload */
528#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Francois Romieu2b7b4312011-04-18 22:53:24 -0700530 /* Second doubleword. */
531 TxVlanTag = (1 << 17), /* Add VLAN tag */
532};
533
534/* 8169, 8168b and 810x except 8102e. */
535enum rtl_tx_desc_bit_0 {
536 /* First doubleword. */
537#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
538 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
539 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
540 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
541};
542
543/* 8102e, 8168c and beyond. */
544enum rtl_tx_desc_bit_1 {
545 /* Second doubleword. */
546#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
547 TD1_IP_CS = (1 << 29), /* Calculate IP checksum */
548 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
549 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
550};
551
552static const struct rtl_tx_desc_info {
553 struct {
554 u32 udp;
555 u32 tcp;
556 } checksum;
557 u16 mss_shift;
558 u16 opts_offset;
559} tx_desc_info [] = {
560 [RTL_TD_0] = {
561 .checksum = {
562 .udp = TD0_IP_CS | TD0_UDP_CS,
563 .tcp = TD0_IP_CS | TD0_TCP_CS
564 },
565 .mss_shift = TD0_MSS_SHIFT,
566 .opts_offset = 0
567 },
568 [RTL_TD_1] = {
569 .checksum = {
570 .udp = TD1_IP_CS | TD1_UDP_CS,
571 .tcp = TD1_IP_CS | TD1_TCP_CS
572 },
573 .mss_shift = TD1_MSS_SHIFT,
574 .opts_offset = 1
575 }
576};
577
578enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 /* Rx private */
580 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
581 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
582
583#define RxProtoUDP (PID1)
584#define RxProtoTCP (PID0)
585#define RxProtoIP (PID1 | PID0)
586#define RxProtoMask RxProtoIP
587
588 IPFail = (1 << 16), /* IP checksum failed */
589 UDPFail = (1 << 15), /* UDP/IP checksum failed */
590 TCPFail = (1 << 14), /* TCP/IP checksum failed */
591 RxVlanTag = (1 << 16), /* VLAN tag available */
592};
593
594#define RsvdMask 0x3fffc000
595
596struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200597 __le32 opts1;
598 __le32 opts2;
599 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600};
601
602struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200603 __le32 opts1;
604 __le32 opts2;
605 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606};
607
608struct ring_info {
609 struct sk_buff *skb;
610 u32 len;
611 u8 __pad[sizeof(void *) - sizeof(u32)];
612};
613
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200614enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200615 RTL_FEATURE_WOL = (1 << 0),
616 RTL_FEATURE_MSI = (1 << 1),
617 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200618};
619
Ivan Vecera355423d2009-02-06 21:49:57 -0800620struct rtl8169_counters {
621 __le64 tx_packets;
622 __le64 rx_packets;
623 __le64 tx_errors;
624 __le32 rx_errors;
625 __le16 rx_missed;
626 __le16 align_errors;
627 __le32 tx_one_collision;
628 __le32 tx_multi_collision;
629 __le64 rx_unicast;
630 __le64 rx_broadcast;
631 __le32 rx_multicast;
632 __le16 tx_aborted;
633 __le16 tx_underun;
634};
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636struct rtl8169_private {
637 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200638 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000639 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700640 struct napi_struct napi;
Francois Romieucecb5fd2011-04-01 10:21:07 +0200641 spinlock_t lock;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200642 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700643 u16 txd_version;
644 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
646 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
647 u32 dirty_rx;
648 u32 dirty_tx;
649 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
650 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
651 dma_addr_t TxPhyAddr;
652 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000653 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 struct timer_list timer;
656 u16 cp_cmd;
Francois Romieu0e485152007-02-20 00:00:26 +0100657 u16 intr_event;
658 u16 napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 u16 intr_mask;
françois romieuc0e45c12011-01-03 15:08:04 +0000660
661 struct mdio_ops {
662 void (*write)(void __iomem *, int, int);
663 int (*read)(void __iomem *, int);
664 } mdio_ops;
665
françois romieu065c27c2011-01-03 15:08:12 +0000666 struct pll_power_ops {
667 void (*down)(struct rtl8169_private *);
668 void (*up)(struct rtl8169_private *);
669 } pll_power_ops;
670
Oliver Neukum54405cd2011-01-06 21:55:13 +0100671 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200672 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000673 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100674 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000675 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800677 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
David Howellsc4028952006-11-22 14:57:56 +0000678 struct delayed_work task;
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200679 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200680
681 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800682 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000683 u32 saved_wolopts;
françois romieuf1e02ed2011-01-13 13:07:53 +0000684
Francois Romieub6ffd972011-06-17 17:00:05 +0200685 struct rtl_fw {
686 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200687
688#define RTL_VER_SIZE 32
689
690 char version[RTL_VER_SIZE];
691
692 struct rtl_fw_phy_action {
693 __le32 *code;
694 size_t size;
695 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200696 } *rtl_fw;
François Romieu953a12c2011-04-24 17:38:48 +0200697#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698};
699
Ralf Baechle979b6c12005-06-13 14:30:40 -0700700MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700703MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200704module_param_named(debug, debug.msg_enable, int, 0);
705MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706MODULE_LICENSE("GPL");
707MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000708MODULE_FIRMWARE(FIRMWARE_8168D_1);
709MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000710MODULE_FIRMWARE(FIRMWARE_8168E_1);
711MODULE_FIRMWARE(FIRMWARE_8168E_2);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800712MODULE_FIRMWARE(FIRMWARE_8105E_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714static int rtl8169_open(struct net_device *dev);
Stephen Hemminger613573252009-08-31 19:50:58 +0000715static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
716 struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100717static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100719static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100721static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200723static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700725 void __iomem *, u32 budget);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200726static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b2007-04-02 22:59:59 +0200728static void rtl8169_rx_clear(struct rtl8169_private *tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700729static int rtl8169_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
françois romieub646d902011-01-03 15:08:21 +0000731static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
732{
733 void __iomem *ioaddr = tp->mmio_addr;
734 int i;
735
736 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
737 for (i = 0; i < 20; i++) {
738 udelay(100);
739 if (RTL_R32(OCPAR) & OCPAR_FLAG)
740 break;
741 }
742 return RTL_R32(OCPDR);
743}
744
745static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
746{
747 void __iomem *ioaddr = tp->mmio_addr;
748 int i;
749
750 RTL_W32(OCPDR, data);
751 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
752 for (i = 0; i < 20; i++) {
753 udelay(100);
754 if ((RTL_R32(OCPAR) & OCPAR_FLAG) == 0)
755 break;
756 }
757}
758
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800759static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000760{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800761 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000762 int i;
763
764 RTL_W8(ERIDR, cmd);
765 RTL_W32(ERIAR, 0x800010e8);
766 msleep(2);
767 for (i = 0; i < 5; i++) {
768 udelay(100);
Francois Romieu1e4e82b2011-06-24 19:52:13 +0200769 if (!(RTL_R32(ERIAR) & ERIAR_FLAG))
françois romieub646d902011-01-03 15:08:21 +0000770 break;
771 }
772
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800773 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000774}
775
776#define OOB_CMD_RESET 0x00
777#define OOB_CMD_DRIVER_START 0x05
778#define OOB_CMD_DRIVER_STOP 0x06
779
Francois Romieucecb5fd2011-04-01 10:21:07 +0200780static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
781{
782 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
783}
784
françois romieub646d902011-01-03 15:08:21 +0000785static void rtl8168_driver_start(struct rtl8169_private *tp)
786{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200787 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000788 int i;
789
790 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
791
Francois Romieucecb5fd2011-04-01 10:21:07 +0200792 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000793
françois romieub646d902011-01-03 15:08:21 +0000794 for (i = 0; i < 10; i++) {
795 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000796 if (ocp_read(tp, 0x0f, reg) & 0x00000800)
françois romieub646d902011-01-03 15:08:21 +0000797 break;
798 }
799}
800
801static void rtl8168_driver_stop(struct rtl8169_private *tp)
802{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200803 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000804 int i;
805
806 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
807
Francois Romieucecb5fd2011-04-01 10:21:07 +0200808 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000809
françois romieub646d902011-01-03 15:08:21 +0000810 for (i = 0; i < 10; i++) {
811 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000812 if ((ocp_read(tp, 0x0f, reg) & 0x00000800) == 0)
françois romieub646d902011-01-03 15:08:21 +0000813 break;
814 }
815}
816
hayeswang4804b3b2011-03-21 01:50:29 +0000817static int r8168dp_check_dash(struct rtl8169_private *tp)
818{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200819 u16 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000820
Francois Romieucecb5fd2011-04-01 10:21:07 +0200821 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
hayeswang4804b3b2011-03-21 01:50:29 +0000822}
françois romieub646d902011-01-03 15:08:21 +0000823
françois romieu4da19632011-01-03 15:07:55 +0000824static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 int i;
827
Francois Romieua6baf3a2007-11-08 23:23:21 +0100828 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Francois Romieu23714082006-01-29 00:49:09 +0100830 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100831 /*
832 * Check if the RTL8169 has completed writing to the specified
833 * MII register.
834 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200835 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 break;
Francois Romieu23714082006-01-29 00:49:09 +0100837 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700839 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700840 * According to hardware specs a 20us delay is required after write
841 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700842 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700843 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
françois romieu4da19632011-01-03 15:07:55 +0000846static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
848 int i, value = -1;
849
Francois Romieua6baf3a2007-11-08 23:23:21 +0100850 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Francois Romieu23714082006-01-29 00:49:09 +0100852 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100853 /*
854 * Check if the RTL8169 has completed retrieving data from
855 * the specified MII register.
856 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100858 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 break;
860 }
Francois Romieu23714082006-01-29 00:49:09 +0100861 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700863 /*
864 * According to hardware specs a 20us delay is required after read
865 * complete indication, but before sending next command.
866 */
867 udelay(20);
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return value;
870}
871
françois romieuc0e45c12011-01-03 15:08:04 +0000872static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
873{
874 int i;
875
876 RTL_W32(OCPDR, data |
877 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
878 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
879 RTL_W32(EPHY_RXER_NUM, 0);
880
881 for (i = 0; i < 100; i++) {
882 mdelay(1);
883 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
884 break;
885 }
886}
887
888static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
889{
890 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
891 (value & OCPDR_DATA_MASK));
892}
893
894static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
895{
896 int i;
897
898 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
899
900 mdelay(1);
901 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
902 RTL_W32(EPHY_RXER_NUM, 0);
903
904 for (i = 0; i < 100; i++) {
905 mdelay(1);
906 if (RTL_R32(OCPAR) & OCPAR_FLAG)
907 break;
908 }
909
910 return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
911}
912
françois romieue6de30d2011-01-03 15:08:37 +0000913#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
914
915static void r8168dp_2_mdio_start(void __iomem *ioaddr)
916{
917 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
918}
919
920static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
921{
922 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
923}
924
925static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
926{
927 r8168dp_2_mdio_start(ioaddr);
928
929 r8169_mdio_write(ioaddr, reg_addr, value);
930
931 r8168dp_2_mdio_stop(ioaddr);
932}
933
934static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
935{
936 int value;
937
938 r8168dp_2_mdio_start(ioaddr);
939
940 value = r8169_mdio_read(ioaddr, reg_addr);
941
942 r8168dp_2_mdio_stop(ioaddr);
943
944 return value;
945}
946
françois romieu4da19632011-01-03 15:07:55 +0000947static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +0200948{
françois romieuc0e45c12011-01-03 15:08:04 +0000949 tp->mdio_ops.write(tp->mmio_addr, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +0200950}
951
françois romieu4da19632011-01-03 15:07:55 +0000952static int rtl_readphy(struct rtl8169_private *tp, int location)
953{
françois romieuc0e45c12011-01-03 15:08:04 +0000954 return tp->mdio_ops.read(tp->mmio_addr, location);
françois romieu4da19632011-01-03 15:07:55 +0000955}
956
957static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
958{
959 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
960}
961
962static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +0000963{
964 int val;
965
françois romieu4da19632011-01-03 15:07:55 +0000966 val = rtl_readphy(tp, reg_addr);
967 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +0000968}
969
Francois Romieuccdffb92008-07-26 14:26:06 +0200970static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
971 int val)
972{
973 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200974
françois romieu4da19632011-01-03 15:07:55 +0000975 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +0200976}
977
978static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
979{
980 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200981
françois romieu4da19632011-01-03 15:07:55 +0000982 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +0200983}
984
Francois Romieudacf8152008-08-02 20:44:13 +0200985static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
986{
987 unsigned int i;
988
989 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
990 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
991
992 for (i = 0; i < 100; i++) {
993 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
994 break;
995 udelay(10);
996 }
997}
998
999static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
1000{
1001 u16 value = 0xffff;
1002 unsigned int i;
1003
1004 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1005
1006 for (i = 0; i < 100; i++) {
1007 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
1008 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
1009 break;
1010 }
1011 udelay(10);
1012 }
1013
1014 return value;
1015}
1016
1017static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
1018{
1019 unsigned int i;
1020
1021 RTL_W32(CSIDR, value);
1022 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
1023 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
1024
1025 for (i = 0; i < 100; i++) {
1026 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
1027 break;
1028 udelay(10);
1029 }
1030}
1031
1032static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
1033{
1034 u32 value = ~0x00;
1035 unsigned int i;
1036
1037 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
1038 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
1039
1040 for (i = 0; i < 100; i++) {
1041 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
1042 value = RTL_R32(CSIDR);
1043 break;
1044 }
1045 udelay(10);
1046 }
1047
1048 return value;
1049}
1050
Hayes Wang133ac402011-07-06 15:58:05 +08001051static
1052void rtl_eri_write(void __iomem *ioaddr, int addr, u32 mask, u32 val, int type)
1053{
1054 unsigned int i;
1055
1056 BUG_ON((addr & 3) || (mask == 0));
1057 RTL_W32(ERIDR, val);
1058 RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1059
1060 for (i = 0; i < 100; i++) {
1061 if (!(RTL_R32(ERIAR) & ERIAR_FLAG))
1062 break;
1063 udelay(100);
1064 }
1065}
1066
1067static u32 rtl_eri_read(void __iomem *ioaddr, int addr, int type)
1068{
1069 u32 value = ~0x00;
1070 unsigned int i;
1071
1072 RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1073
1074 for (i = 0; i < 100; i++) {
1075 if (RTL_R32(ERIAR) & ERIAR_FLAG) {
1076 value = RTL_R32(ERIDR);
1077 break;
1078 }
1079 udelay(100);
1080 }
1081
1082 return value;
1083}
1084
1085static void
1086rtl_w1w0_eri(void __iomem *ioaddr, int addr, u32 mask, u32 p, u32 m, int type)
1087{
1088 u32 val;
1089
1090 val = rtl_eri_read(ioaddr, addr, type);
1091 rtl_eri_write(ioaddr, addr, mask, (val & ~m) | p, type);
1092}
1093
françois romieudaf9df62009-10-07 12:44:20 +00001094static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
1095{
1096 u8 value = 0xff;
1097 unsigned int i;
1098
1099 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1100
1101 for (i = 0; i < 300; i++) {
1102 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
1103 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
1104 break;
1105 }
1106 udelay(100);
1107 }
1108
1109 return value;
1110}
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
1113{
1114 RTL_W16(IntrMask, 0x0000);
1115
1116 RTL_W16(IntrStatus, 0xffff);
1117}
1118
françois romieu4da19632011-01-03 15:07:55 +00001119static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
françois romieu4da19632011-01-03 15:07:55 +00001121 void __iomem *ioaddr = tp->mmio_addr;
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 return RTL_R32(TBICSR) & TBIReset;
1124}
1125
françois romieu4da19632011-01-03 15:07:55 +00001126static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
françois romieu4da19632011-01-03 15:07:55 +00001128 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129}
1130
1131static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1132{
1133 return RTL_R32(TBICSR) & TBILinkOk;
1134}
1135
1136static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1137{
1138 return RTL_R8(PHYstatus) & LinkStatus;
1139}
1140
françois romieu4da19632011-01-03 15:07:55 +00001141static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
françois romieu4da19632011-01-03 15:07:55 +00001143 void __iomem *ioaddr = tp->mmio_addr;
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1146}
1147
françois romieu4da19632011-01-03 15:07:55 +00001148static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 unsigned int val;
1151
françois romieu4da19632011-01-03 15:07:55 +00001152 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1153 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
Hayes Wang70090422011-07-06 15:58:06 +08001156static void rtl_link_chg_patch(struct rtl8169_private *tp)
1157{
1158 void __iomem *ioaddr = tp->mmio_addr;
1159 struct net_device *dev = tp->dev;
1160
1161 if (!netif_running(dev))
1162 return;
1163
1164 if (tp->mac_version == RTL_GIGA_MAC_VER_34) {
1165 if (RTL_R8(PHYstatus) & _1000bpsF) {
1166 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1167 0x00000011, ERIAR_EXGMAC);
1168 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1169 0x00000005, ERIAR_EXGMAC);
1170 } else if (RTL_R8(PHYstatus) & _100bps) {
1171 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1172 0x0000001f, ERIAR_EXGMAC);
1173 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1174 0x00000005, ERIAR_EXGMAC);
1175 } else {
1176 rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1177 0x0000001f, ERIAR_EXGMAC);
1178 rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1179 0x0000003f, ERIAR_EXGMAC);
1180 }
1181 /* Reset packet filter */
1182 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
1183 ERIAR_EXGMAC);
1184 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
1185 ERIAR_EXGMAC);
1186 }
1187}
1188
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001189static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001190 struct rtl8169_private *tp,
1191 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
1193 unsigned long flags;
1194
1195 spin_lock_irqsave(&tp->lock, flags);
1196 if (tp->link_ok(ioaddr)) {
Hayes Wang70090422011-07-06 15:58:06 +08001197 rtl_link_chg_patch(tp);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001198 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001199 if (pm)
1200 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001202 if (net_ratelimit())
1203 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001204 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001206 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001207 if (pm)
1208 pm_schedule_suspend(&tp->pci_dev->dev, 100);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 spin_unlock_irqrestore(&tp->lock, flags);
1211}
1212
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001213static void rtl8169_check_link_status(struct net_device *dev,
1214 struct rtl8169_private *tp,
1215 void __iomem *ioaddr)
1216{
1217 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1218}
1219
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001220#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1221
1222static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1223{
1224 void __iomem *ioaddr = tp->mmio_addr;
1225 u8 options;
1226 u32 wolopts = 0;
1227
1228 options = RTL_R8(Config1);
1229 if (!(options & PMEnable))
1230 return 0;
1231
1232 options = RTL_R8(Config3);
1233 if (options & LinkUp)
1234 wolopts |= WAKE_PHY;
1235 if (options & MagicPacket)
1236 wolopts |= WAKE_MAGIC;
1237
1238 options = RTL_R8(Config5);
1239 if (options & UWF)
1240 wolopts |= WAKE_UCAST;
1241 if (options & BWF)
1242 wolopts |= WAKE_BCAST;
1243 if (options & MWF)
1244 wolopts |= WAKE_MCAST;
1245
1246 return wolopts;
1247}
1248
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001249static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1250{
1251 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001252
1253 spin_lock_irq(&tp->lock);
1254
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001255 wol->supported = WAKE_ANY;
1256 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001257
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001258 spin_unlock_irq(&tp->lock);
1259}
1260
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001261static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001262{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001263 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001264 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001265 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001266 u32 opt;
1267 u16 reg;
1268 u8 mask;
1269 } cfg[] = {
1270 { WAKE_ANY, Config1, PMEnable },
1271 { WAKE_PHY, Config3, LinkUp },
1272 { WAKE_MAGIC, Config3, MagicPacket },
1273 { WAKE_UCAST, Config5, UWF },
1274 { WAKE_BCAST, Config5, BWF },
1275 { WAKE_MCAST, Config5, MWF },
1276 { WAKE_ANY, Config5, LanWake }
1277 };
1278
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001279 RTL_W8(Cfg9346, Cfg9346_Unlock);
1280
1281 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
1282 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001283 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001284 options |= cfg[i].mask;
1285 RTL_W8(cfg[i].reg, options);
1286 }
1287
1288 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001289}
1290
1291static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1292{
1293 struct rtl8169_private *tp = netdev_priv(dev);
1294
1295 spin_lock_irq(&tp->lock);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001296
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001297 if (wol->wolopts)
1298 tp->features |= RTL_FEATURE_WOL;
1299 else
1300 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001301 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001302 spin_unlock_irq(&tp->lock);
1303
françois romieuea809072010-11-08 13:23:58 +00001304 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1305
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001306 return 0;
1307}
1308
Francois Romieu31bd2042011-04-26 18:58:59 +02001309static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1310{
Francois Romieu85bffe62011-04-27 08:22:39 +02001311 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001312}
1313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314static void rtl8169_get_drvinfo(struct net_device *dev,
1315 struct ethtool_drvinfo *info)
1316{
1317 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001318 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 strcpy(info->driver, MODULENAME);
1321 strcpy(info->version, RTL8169_VERSION);
1322 strcpy(info->bus_info, pci_name(tp->pci_dev));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001323 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
1324 strcpy(info->fw_version, IS_ERR_OR_NULL(rtl_fw) ? "N/A" :
1325 rtl_fw->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
1328static int rtl8169_get_regs_len(struct net_device *dev)
1329{
1330 return R8169_REGS_SIZE;
1331}
1332
1333static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001334 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
1336 struct rtl8169_private *tp = netdev_priv(dev);
1337 void __iomem *ioaddr = tp->mmio_addr;
1338 int ret = 0;
1339 u32 reg;
1340
1341 reg = RTL_R32(TBICSR);
1342 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1343 (duplex == DUPLEX_FULL)) {
1344 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1345 } else if (autoneg == AUTONEG_ENABLE)
1346 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1347 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001348 netif_warn(tp, link, dev,
1349 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 ret = -EOPNOTSUPP;
1351 }
1352
1353 return ret;
1354}
1355
1356static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001357 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
1359 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001360 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001361 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Hayes Wang716b50a2011-02-22 17:26:18 +08001363 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001366 int auto_nego;
1367
françois romieu4da19632011-01-03 15:07:55 +00001368 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001369 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1370 ADVERTISE_100HALF | ADVERTISE_100FULL);
1371
1372 if (adv & ADVERTISED_10baseT_Half)
1373 auto_nego |= ADVERTISE_10HALF;
1374 if (adv & ADVERTISED_10baseT_Full)
1375 auto_nego |= ADVERTISE_10FULL;
1376 if (adv & ADVERTISED_100baseT_Half)
1377 auto_nego |= ADVERTISE_100HALF;
1378 if (adv & ADVERTISED_100baseT_Full)
1379 auto_nego |= ADVERTISE_100FULL;
1380
françois romieu3577aa12009-05-19 10:46:48 +00001381 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1382
françois romieu4da19632011-01-03 15:07:55 +00001383 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001384 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1385
1386 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001387 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001388 if (adv & ADVERTISED_1000baseT_Half)
1389 giga_ctrl |= ADVERTISE_1000HALF;
1390 if (adv & ADVERTISED_1000baseT_Full)
1391 giga_ctrl |= ADVERTISE_1000FULL;
1392 } else if (adv & (ADVERTISED_1000baseT_Half |
1393 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001394 netif_info(tp, link, dev,
1395 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001396 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
françois romieu3577aa12009-05-19 10:46:48 +00001399 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001400
françois romieu4da19632011-01-03 15:07:55 +00001401 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1402 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001403 } else {
1404 giga_ctrl = 0;
1405
1406 if (speed == SPEED_10)
1407 bmcr = 0;
1408 else if (speed == SPEED_100)
1409 bmcr = BMCR_SPEED100;
1410 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001411 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001412
1413 if (duplex == DUPLEX_FULL)
1414 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001415 }
1416
françois romieu4da19632011-01-03 15:07:55 +00001417 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001418
Francois Romieucecb5fd2011-04-01 10:21:07 +02001419 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1420 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001421 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001422 rtl_writephy(tp, 0x17, 0x2138);
1423 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001424 } else {
françois romieu4da19632011-01-03 15:07:55 +00001425 rtl_writephy(tp, 0x17, 0x2108);
1426 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001427 }
1428 }
1429
Oliver Neukum54405cd2011-01-06 21:55:13 +01001430 rc = 0;
1431out:
1432 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
1435static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001436 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
1438 struct rtl8169_private *tp = netdev_priv(dev);
1439 int ret;
1440
Oliver Neukum54405cd2011-01-06 21:55:13 +01001441 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001442 if (ret < 0)
1443 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Francois Romieu4876cc12011-03-11 21:07:11 +01001445 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
1446 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01001448 }
1449out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return ret;
1451}
1452
1453static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1454{
1455 struct rtl8169_private *tp = netdev_priv(dev);
1456 unsigned long flags;
1457 int ret;
1458
Francois Romieu4876cc12011-03-11 21:07:11 +01001459 del_timer_sync(&tp->timer);
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 spin_lock_irqsave(&tp->lock, flags);
Francois Romieucecb5fd2011-04-01 10:21:07 +02001462 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00001463 cmd->duplex, cmd->advertising);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return ret;
1467}
1468
Michał Mirosław350fb322011-04-08 06:35:56 +00001469static u32 rtl8169_fix_features(struct net_device *dev, u32 features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Francois Romieu2b7b4312011-04-18 22:53:24 -07001471 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00001472 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Michał Mirosław350fb322011-04-08 06:35:56 +00001474 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
Michał Mirosław350fb322011-04-08 06:35:56 +00001477static int rtl8169_set_features(struct net_device *dev, u32 features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
1479 struct rtl8169_private *tp = netdev_priv(dev);
1480 void __iomem *ioaddr = tp->mmio_addr;
1481 unsigned long flags;
1482
1483 spin_lock_irqsave(&tp->lock, flags);
1484
Michał Mirosław350fb322011-04-08 06:35:56 +00001485 if (features & NETIF_F_RXCSUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 tp->cp_cmd |= RxChkSum;
1487 else
1488 tp->cp_cmd &= ~RxChkSum;
1489
Michał Mirosław350fb322011-04-08 06:35:56 +00001490 if (dev->features & NETIF_F_HW_VLAN_RX)
1491 tp->cp_cmd |= RxVlan;
1492 else
1493 tp->cp_cmd &= ~RxVlan;
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 RTL_W16(CPlusCmd, tp->cp_cmd);
1496 RTL_R16(CPlusCmd);
1497
1498 spin_unlock_irqrestore(&tp->lock, flags);
1499
1500 return 0;
1501}
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1504 struct sk_buff *skb)
1505{
Jesse Grosseab6d182010-10-20 13:56:03 +00001506 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1508}
1509
Francois Romieu7a8fc772011-03-01 17:18:33 +01001510static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Francois Romieu7a8fc772011-03-01 17:18:33 +01001514 if (opts2 & RxVlanTag)
1515 __vlan_hwaccel_put_tag(skb, swab16(opts2 & 0xffff));
Eric Dumazet2edae082010-09-06 18:46:39 +00001516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 desc->opts2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518}
1519
Francois Romieuccdffb92008-07-26 14:26:06 +02001520static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
1522 struct rtl8169_private *tp = netdev_priv(dev);
1523 void __iomem *ioaddr = tp->mmio_addr;
1524 u32 status;
1525
1526 cmd->supported =
1527 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1528 cmd->port = PORT_FIBRE;
1529 cmd->transceiver = XCVR_INTERNAL;
1530
1531 status = RTL_R32(TBICSR);
1532 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1533 cmd->autoneg = !!(status & TBINwEnable);
1534
David Decotigny70739492011-04-27 18:32:40 +00001535 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001537
1538 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Francois Romieuccdffb92008-07-26 14:26:06 +02001541static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
1543 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Francois Romieuccdffb92008-07-26 14:26:06 +02001545 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
1548static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1549{
1550 struct rtl8169_private *tp = netdev_priv(dev);
1551 unsigned long flags;
Francois Romieuccdffb92008-07-26 14:26:06 +02001552 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 spin_lock_irqsave(&tp->lock, flags);
1555
Francois Romieuccdffb92008-07-26 14:26:06 +02001556 rc = tp->get_settings(dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieuccdffb92008-07-26 14:26:06 +02001559 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
1562static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1563 void *p)
1564{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001565 struct rtl8169_private *tp = netdev_priv(dev);
1566 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Francois Romieu5b0384f2006-08-16 16:00:01 +02001568 if (regs->len > R8169_REGS_SIZE)
1569 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Francois Romieu5b0384f2006-08-16 16:00:01 +02001571 spin_lock_irqsave(&tp->lock, flags);
1572 memcpy_fromio(p, tp->mmio_addr, regs->len);
1573 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001576static u32 rtl8169_get_msglevel(struct net_device *dev)
1577{
1578 struct rtl8169_private *tp = netdev_priv(dev);
1579
1580 return tp->msg_enable;
1581}
1582
1583static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1584{
1585 struct rtl8169_private *tp = netdev_priv(dev);
1586
1587 tp->msg_enable = value;
1588}
1589
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001590static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1591 "tx_packets",
1592 "rx_packets",
1593 "tx_errors",
1594 "rx_errors",
1595 "rx_missed",
1596 "align_errors",
1597 "tx_single_collisions",
1598 "tx_multi_collisions",
1599 "unicast",
1600 "broadcast",
1601 "multicast",
1602 "tx_aborted",
1603 "tx_underrun",
1604};
1605
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001606static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001607{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001608 switch (sset) {
1609 case ETH_SS_STATS:
1610 return ARRAY_SIZE(rtl8169_gstrings);
1611 default:
1612 return -EOPNOTSUPP;
1613 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001614}
1615
Ivan Vecera355423d2009-02-06 21:49:57 -08001616static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001617{
1618 struct rtl8169_private *tp = netdev_priv(dev);
1619 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieucecb5fd2011-04-01 10:21:07 +02001620 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001621 struct rtl8169_counters *counters;
1622 dma_addr_t paddr;
1623 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001624 int wait = 1000;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001625
Ivan Vecera355423d2009-02-06 21:49:57 -08001626 /*
1627 * Some chips are unable to dump tally counters when the receiver
1628 * is disabled.
1629 */
1630 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1631 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001632
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001633 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001634 if (!counters)
1635 return;
1636
1637 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001638 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001639 RTL_W32(CounterAddrLow, cmd);
1640 RTL_W32(CounterAddrLow, cmd | CounterDump);
1641
Ivan Vecera355423d2009-02-06 21:49:57 -08001642 while (wait--) {
1643 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
Ivan Vecera355423d2009-02-06 21:49:57 -08001644 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001645 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001646 }
1647 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001648 }
1649
1650 RTL_W32(CounterAddrLow, 0);
1651 RTL_W32(CounterAddrHigh, 0);
1652
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001653 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001654}
1655
Ivan Vecera355423d2009-02-06 21:49:57 -08001656static void rtl8169_get_ethtool_stats(struct net_device *dev,
1657 struct ethtool_stats *stats, u64 *data)
1658{
1659 struct rtl8169_private *tp = netdev_priv(dev);
1660
1661 ASSERT_RTNL();
1662
1663 rtl8169_update_counters(dev);
1664
1665 data[0] = le64_to_cpu(tp->counters.tx_packets);
1666 data[1] = le64_to_cpu(tp->counters.rx_packets);
1667 data[2] = le64_to_cpu(tp->counters.tx_errors);
1668 data[3] = le32_to_cpu(tp->counters.rx_errors);
1669 data[4] = le16_to_cpu(tp->counters.rx_missed);
1670 data[5] = le16_to_cpu(tp->counters.align_errors);
1671 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1672 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1673 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1674 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1675 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1676 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1677 data[12] = le16_to_cpu(tp->counters.tx_underun);
1678}
1679
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001680static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1681{
1682 switch(stringset) {
1683 case ETH_SS_STATS:
1684 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1685 break;
1686 }
1687}
1688
Jeff Garzik7282d492006-09-13 14:30:00 -04001689static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 .get_drvinfo = rtl8169_get_drvinfo,
1691 .get_regs_len = rtl8169_get_regs_len,
1692 .get_link = ethtool_op_get_link,
1693 .get_settings = rtl8169_get_settings,
1694 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001695 .get_msglevel = rtl8169_get_msglevel,
1696 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001698 .get_wol = rtl8169_get_wol,
1699 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001700 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001701 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001702 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703};
1704
Francois Romieu07d3f512007-02-21 22:40:46 +01001705static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02001706 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
Francois Romieu5d320a22011-05-08 17:47:36 +02001708 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01001709 /*
1710 * The driver currently handles the 8168Bf and the 8168Be identically
1711 * but they can be identified more specifically through the test below
1712 * if needed:
1713 *
1714 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001715 *
1716 * Same thing for the 8101Eb and the 8101Ec:
1717 *
1718 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001719 */
Francois Romieu37441002011-06-17 22:58:54 +02001720 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001722 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 int mac_version;
1724 } mac_info[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00001725 /* 8168E family. */
Hayes Wang70090422011-07-06 15:58:06 +08001726 { 0x7c800000, 0x2c800000, RTL_GIGA_MAC_VER_34 },
hayeswang01dc7fe2011-03-21 01:50:28 +00001727 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
1728 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
1729 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
1730
Francois Romieu5b538df2008-07-20 16:22:45 +02001731 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001732 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1733 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00001734 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001735
françois romieue6de30d2011-01-03 15:08:37 +00001736 /* 8168DP family. */
1737 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1738 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00001739 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00001740
Francois Romieuef808d52008-06-29 13:10:54 +02001741 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001742 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001743 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001744 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001745 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001746 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1747 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001748 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001749 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001750 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001751
1752 /* 8168B family. */
1753 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1754 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1755 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1756 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1757
1758 /* 8101 family. */
hayeswang36a0e6c2011-03-21 01:50:30 +00001759 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08001760 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
1761 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
1762 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001763 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1764 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1765 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1766 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1767 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1768 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001769 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001770 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001771 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001772 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1773 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001774 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1775 /* FIXME: where did these entries come from ? -- FR */
1776 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1777 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1778
1779 /* 8110 family. */
1780 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1781 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1782 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1783 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1784 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1785 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1786
Jean Delvaref21b75e2009-05-26 20:54:48 -07001787 /* Catch-all */
1788 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02001789 };
1790 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 u32 reg;
1792
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001793 reg = RTL_R32(TxConfig);
1794 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 p++;
1796 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02001797
1798 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
1799 netif_notice(tp, probe, dev,
1800 "unknown MAC, using family default\n");
1801 tp->mac_version = default_version;
1802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803}
1804
1805static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1806{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001807 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809
Francois Romieu867763c2007-08-17 18:21:58 +02001810struct phy_reg {
1811 u16 reg;
1812 u16 val;
1813};
1814
françois romieu4da19632011-01-03 15:07:55 +00001815static void rtl_writephy_batch(struct rtl8169_private *tp,
1816 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001817{
1818 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001819 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001820 regs++;
1821 }
1822}
1823
françois romieubca03d52011-01-03 15:07:31 +00001824#define PHY_READ 0x00000000
1825#define PHY_DATA_OR 0x10000000
1826#define PHY_DATA_AND 0x20000000
1827#define PHY_BJMPN 0x30000000
1828#define PHY_READ_EFUSE 0x40000000
1829#define PHY_READ_MAC_BYTE 0x50000000
1830#define PHY_WRITE_MAC_BYTE 0x60000000
1831#define PHY_CLEAR_READCOUNT 0x70000000
1832#define PHY_WRITE 0x80000000
1833#define PHY_READCOUNT_EQ_SKIP 0x90000000
1834#define PHY_COMP_EQ_SKIPN 0xa0000000
1835#define PHY_COMP_NEQ_SKIPN 0xb0000000
1836#define PHY_WRITE_PREVIOUS 0xc0000000
1837#define PHY_SKIPN 0xd0000000
1838#define PHY_DELAY_MS 0xe0000000
1839#define PHY_WRITE_ERI_WORD 0xf0000000
1840
Hayes Wang960aee62011-06-18 11:37:48 +02001841struct fw_info {
1842 u32 magic;
1843 char version[RTL_VER_SIZE];
1844 __le32 fw_start;
1845 __le32 fw_len;
1846 u8 chksum;
1847} __packed;
1848
Francois Romieu1c361ef2011-06-17 17:16:24 +02001849#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
1850
1851static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00001852{
Francois Romieub6ffd972011-06-17 17:00:05 +02001853 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02001854 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02001855 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
1856 char *version = rtl_fw->version;
1857 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00001858
Francois Romieu1c361ef2011-06-17 17:16:24 +02001859 if (fw->size < FW_OPCODE_SIZE)
1860 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02001861
1862 if (!fw_info->magic) {
1863 size_t i, size, start;
1864 u8 checksum = 0;
1865
1866 if (fw->size < sizeof(*fw_info))
1867 goto out;
1868
1869 for (i = 0; i < fw->size; i++)
1870 checksum += fw->data[i];
1871 if (checksum != 0)
1872 goto out;
1873
1874 start = le32_to_cpu(fw_info->fw_start);
1875 if (start > fw->size)
1876 goto out;
1877
1878 size = le32_to_cpu(fw_info->fw_len);
1879 if (size > (fw->size - start) / FW_OPCODE_SIZE)
1880 goto out;
1881
1882 memcpy(version, fw_info->version, RTL_VER_SIZE);
1883
1884 pa->code = (__le32 *)(fw->data + start);
1885 pa->size = size;
1886 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02001887 if (fw->size % FW_OPCODE_SIZE)
1888 goto out;
1889
1890 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
1891
1892 pa->code = (__le32 *)fw->data;
1893 pa->size = fw->size / FW_OPCODE_SIZE;
1894 }
1895 version[RTL_VER_SIZE - 1] = 0;
1896
1897 rc = true;
1898out:
1899 return rc;
1900}
1901
Francois Romieufd112f22011-06-18 00:10:29 +02001902static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
1903 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02001904{
Francois Romieufd112f22011-06-18 00:10:29 +02001905 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02001906 size_t index;
1907
Francois Romieu1c361ef2011-06-17 17:16:24 +02001908 for (index = 0; index < pa->size; index++) {
1909 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00001910 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00001911
hayeswang42b82dc2011-01-10 02:07:25 +00001912 switch(action & 0xf0000000) {
1913 case PHY_READ:
1914 case PHY_DATA_OR:
1915 case PHY_DATA_AND:
1916 case PHY_READ_EFUSE:
1917 case PHY_CLEAR_READCOUNT:
1918 case PHY_WRITE:
1919 case PHY_WRITE_PREVIOUS:
1920 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00001921 break;
1922
hayeswang42b82dc2011-01-10 02:07:25 +00001923 case PHY_BJMPN:
1924 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02001925 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001926 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02001927 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00001928 }
1929 break;
1930 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02001931 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02001932 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001933 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02001934 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00001935 }
1936 break;
1937 case PHY_COMP_EQ_SKIPN:
1938 case PHY_COMP_NEQ_SKIPN:
1939 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02001940 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02001941 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001942 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02001943 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00001944 }
1945 break;
1946
1947 case PHY_READ_MAC_BYTE:
1948 case PHY_WRITE_MAC_BYTE:
1949 case PHY_WRITE_ERI_WORD:
1950 default:
Francois Romieufd112f22011-06-18 00:10:29 +02001951 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00001952 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02001953 goto out;
françois romieubca03d52011-01-03 15:07:31 +00001954 }
1955 }
Francois Romieufd112f22011-06-18 00:10:29 +02001956 rc = true;
1957out:
1958 return rc;
1959}
françois romieubca03d52011-01-03 15:07:31 +00001960
Francois Romieufd112f22011-06-18 00:10:29 +02001961static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
1962{
1963 struct net_device *dev = tp->dev;
1964 int rc = -EINVAL;
1965
1966 if (!rtl_fw_format_ok(tp, rtl_fw)) {
1967 netif_err(tp, ifup, dev, "invalid firwmare\n");
1968 goto out;
1969 }
1970
1971 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
1972 rc = 0;
1973out:
1974 return rc;
1975}
1976
1977static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
1978{
1979 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
1980 u32 predata, count;
1981 size_t index;
1982
1983 predata = count = 0;
hayeswang42b82dc2011-01-10 02:07:25 +00001984
Francois Romieu1c361ef2011-06-17 17:16:24 +02001985 for (index = 0; index < pa->size; ) {
1986 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00001987 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00001988 u32 regno = (action & 0x0fff0000) >> 16;
1989
1990 if (!action)
1991 break;
françois romieubca03d52011-01-03 15:07:31 +00001992
1993 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00001994 case PHY_READ:
1995 predata = rtl_readphy(tp, regno);
1996 count++;
1997 index++;
françois romieubca03d52011-01-03 15:07:31 +00001998 break;
hayeswang42b82dc2011-01-10 02:07:25 +00001999 case PHY_DATA_OR:
2000 predata |= data;
2001 index++;
2002 break;
2003 case PHY_DATA_AND:
2004 predata &= data;
2005 index++;
2006 break;
2007 case PHY_BJMPN:
2008 index -= regno;
2009 break;
2010 case PHY_READ_EFUSE:
2011 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
2012 index++;
2013 break;
2014 case PHY_CLEAR_READCOUNT:
2015 count = 0;
2016 index++;
2017 break;
2018 case PHY_WRITE:
2019 rtl_writephy(tp, regno, data);
2020 index++;
2021 break;
2022 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02002023 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00002024 break;
2025 case PHY_COMP_EQ_SKIPN:
2026 if (predata == data)
2027 index += regno;
2028 index++;
2029 break;
2030 case PHY_COMP_NEQ_SKIPN:
2031 if (predata != data)
2032 index += regno;
2033 index++;
2034 break;
2035 case PHY_WRITE_PREVIOUS:
2036 rtl_writephy(tp, regno, predata);
2037 index++;
2038 break;
2039 case PHY_SKIPN:
2040 index += regno + 1;
2041 break;
2042 case PHY_DELAY_MS:
2043 mdelay(data);
2044 index++;
2045 break;
2046
2047 case PHY_READ_MAC_BYTE:
2048 case PHY_WRITE_MAC_BYTE:
2049 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00002050 default:
2051 BUG();
2052 }
2053 }
2054}
2055
françois romieuf1e02ed2011-01-13 13:07:53 +00002056static void rtl_release_firmware(struct rtl8169_private *tp)
2057{
Francois Romieub6ffd972011-06-17 17:00:05 +02002058 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2059 release_firmware(tp->rtl_fw->fw);
2060 kfree(tp->rtl_fw);
2061 }
2062 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00002063}
2064
François Romieu953a12c2011-04-24 17:38:48 +02002065static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00002066{
Francois Romieub6ffd972011-06-17 17:00:05 +02002067 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00002068
2069 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieub6ffd972011-06-17 17:00:05 +02002070 if (!IS_ERR_OR_NULL(rtl_fw))
2071 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02002072}
2073
2074static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2075{
2076 if (rtl_readphy(tp, reg) != val)
2077 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2078 else
2079 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002080}
2081
françois romieu4da19632011-01-03 15:07:55 +00002082static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002084 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002085 { 0x1f, 0x0001 },
2086 { 0x06, 0x006e },
2087 { 0x08, 0x0708 },
2088 { 0x15, 0x4000 },
2089 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
françois romieu0b9b5712009-08-10 19:44:56 +00002091 { 0x1f, 0x0001 },
2092 { 0x03, 0x00a1 },
2093 { 0x02, 0x0008 },
2094 { 0x01, 0x0120 },
2095 { 0x00, 0x1000 },
2096 { 0x04, 0x0800 },
2097 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
françois romieu0b9b5712009-08-10 19:44:56 +00002099 { 0x03, 0xff41 },
2100 { 0x02, 0xdf60 },
2101 { 0x01, 0x0140 },
2102 { 0x00, 0x0077 },
2103 { 0x04, 0x7800 },
2104 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
françois romieu0b9b5712009-08-10 19:44:56 +00002106 { 0x03, 0x802f },
2107 { 0x02, 0x4f02 },
2108 { 0x01, 0x0409 },
2109 { 0x00, 0xf0f9 },
2110 { 0x04, 0x9800 },
2111 { 0x04, 0x9000 },
2112
2113 { 0x03, 0xdf01 },
2114 { 0x02, 0xdf20 },
2115 { 0x01, 0xff95 },
2116 { 0x00, 0xba00 },
2117 { 0x04, 0xa800 },
2118 { 0x04, 0xa000 },
2119
2120 { 0x03, 0xff41 },
2121 { 0x02, 0xdf20 },
2122 { 0x01, 0x0140 },
2123 { 0x00, 0x00bb },
2124 { 0x04, 0xb800 },
2125 { 0x04, 0xb000 },
2126
2127 { 0x03, 0xdf41 },
2128 { 0x02, 0xdc60 },
2129 { 0x01, 0x6340 },
2130 { 0x00, 0x007d },
2131 { 0x04, 0xd800 },
2132 { 0x04, 0xd000 },
2133
2134 { 0x03, 0xdf01 },
2135 { 0x02, 0xdf20 },
2136 { 0x01, 0x100a },
2137 { 0x00, 0xa0ff },
2138 { 0x04, 0xf800 },
2139 { 0x04, 0xf000 },
2140
2141 { 0x1f, 0x0000 },
2142 { 0x0b, 0x0000 },
2143 { 0x00, 0x9200 }
2144 };
2145
françois romieu4da19632011-01-03 15:07:55 +00002146 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
2148
françois romieu4da19632011-01-03 15:07:55 +00002149static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002150{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002151 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002152 { 0x1f, 0x0002 },
2153 { 0x01, 0x90d0 },
2154 { 0x1f, 0x0000 }
2155 };
2156
françois romieu4da19632011-01-03 15:07:55 +00002157 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002158}
2159
françois romieu4da19632011-01-03 15:07:55 +00002160static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002161{
2162 struct pci_dev *pdev = tp->pci_dev;
2163 u16 vendor_id, device_id;
2164
2165 pci_read_config_word(pdev, PCI_SUBSYSTEM_VENDOR_ID, &vendor_id);
2166 pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &device_id);
2167
2168 if ((vendor_id != PCI_VENDOR_ID_GIGABYTE) || (device_id != 0xe000))
2169 return;
2170
françois romieu4da19632011-01-03 15:07:55 +00002171 rtl_writephy(tp, 0x1f, 0x0001);
2172 rtl_writephy(tp, 0x10, 0xf01b);
2173 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002174}
2175
françois romieu4da19632011-01-03 15:07:55 +00002176static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002177{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002178 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002179 { 0x1f, 0x0001 },
2180 { 0x04, 0x0000 },
2181 { 0x03, 0x00a1 },
2182 { 0x02, 0x0008 },
2183 { 0x01, 0x0120 },
2184 { 0x00, 0x1000 },
2185 { 0x04, 0x0800 },
2186 { 0x04, 0x9000 },
2187 { 0x03, 0x802f },
2188 { 0x02, 0x4f02 },
2189 { 0x01, 0x0409 },
2190 { 0x00, 0xf099 },
2191 { 0x04, 0x9800 },
2192 { 0x04, 0xa000 },
2193 { 0x03, 0xdf01 },
2194 { 0x02, 0xdf20 },
2195 { 0x01, 0xff95 },
2196 { 0x00, 0xba00 },
2197 { 0x04, 0xa800 },
2198 { 0x04, 0xf000 },
2199 { 0x03, 0xdf01 },
2200 { 0x02, 0xdf20 },
2201 { 0x01, 0x101a },
2202 { 0x00, 0xa0ff },
2203 { 0x04, 0xf800 },
2204 { 0x04, 0x0000 },
2205 { 0x1f, 0x0000 },
2206
2207 { 0x1f, 0x0001 },
2208 { 0x10, 0xf41b },
2209 { 0x14, 0xfb54 },
2210 { 0x18, 0xf5c7 },
2211 { 0x1f, 0x0000 },
2212
2213 { 0x1f, 0x0001 },
2214 { 0x17, 0x0cc0 },
2215 { 0x1f, 0x0000 }
2216 };
2217
françois romieu4da19632011-01-03 15:07:55 +00002218 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002219
françois romieu4da19632011-01-03 15:07:55 +00002220 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002221}
2222
françois romieu4da19632011-01-03 15:07:55 +00002223static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002224{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002225 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002226 { 0x1f, 0x0001 },
2227 { 0x04, 0x0000 },
2228 { 0x03, 0x00a1 },
2229 { 0x02, 0x0008 },
2230 { 0x01, 0x0120 },
2231 { 0x00, 0x1000 },
2232 { 0x04, 0x0800 },
2233 { 0x04, 0x9000 },
2234 { 0x03, 0x802f },
2235 { 0x02, 0x4f02 },
2236 { 0x01, 0x0409 },
2237 { 0x00, 0xf099 },
2238 { 0x04, 0x9800 },
2239 { 0x04, 0xa000 },
2240 { 0x03, 0xdf01 },
2241 { 0x02, 0xdf20 },
2242 { 0x01, 0xff95 },
2243 { 0x00, 0xba00 },
2244 { 0x04, 0xa800 },
2245 { 0x04, 0xf000 },
2246 { 0x03, 0xdf01 },
2247 { 0x02, 0xdf20 },
2248 { 0x01, 0x101a },
2249 { 0x00, 0xa0ff },
2250 { 0x04, 0xf800 },
2251 { 0x04, 0x0000 },
2252 { 0x1f, 0x0000 },
2253
2254 { 0x1f, 0x0001 },
2255 { 0x0b, 0x8480 },
2256 { 0x1f, 0x0000 },
2257
2258 { 0x1f, 0x0001 },
2259 { 0x18, 0x67c7 },
2260 { 0x04, 0x2000 },
2261 { 0x03, 0x002f },
2262 { 0x02, 0x4360 },
2263 { 0x01, 0x0109 },
2264 { 0x00, 0x3022 },
2265 { 0x04, 0x2800 },
2266 { 0x1f, 0x0000 },
2267
2268 { 0x1f, 0x0001 },
2269 { 0x17, 0x0cc0 },
2270 { 0x1f, 0x0000 }
2271 };
2272
françois romieu4da19632011-01-03 15:07:55 +00002273 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002274}
2275
françois romieu4da19632011-01-03 15:07:55 +00002276static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002277{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002278 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002279 { 0x10, 0xf41b },
2280 { 0x1f, 0x0000 }
2281 };
2282
françois romieu4da19632011-01-03 15:07:55 +00002283 rtl_writephy(tp, 0x1f, 0x0001);
2284 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002285
françois romieu4da19632011-01-03 15:07:55 +00002286 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002287}
2288
françois romieu4da19632011-01-03 15:07:55 +00002289static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002290{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002291 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002292 { 0x1f, 0x0001 },
2293 { 0x10, 0xf41b },
2294 { 0x1f, 0x0000 }
2295 };
2296
françois romieu4da19632011-01-03 15:07:55 +00002297 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002298}
2299
françois romieu4da19632011-01-03 15:07:55 +00002300static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002301{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002302 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002303 { 0x1f, 0x0000 },
2304 { 0x1d, 0x0f00 },
2305 { 0x1f, 0x0002 },
2306 { 0x0c, 0x1ec8 },
2307 { 0x1f, 0x0000 }
2308 };
2309
françois romieu4da19632011-01-03 15:07:55 +00002310 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002311}
2312
françois romieu4da19632011-01-03 15:07:55 +00002313static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002314{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002315 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002316 { 0x1f, 0x0001 },
2317 { 0x1d, 0x3d98 },
2318 { 0x1f, 0x0000 }
2319 };
2320
françois romieu4da19632011-01-03 15:07:55 +00002321 rtl_writephy(tp, 0x1f, 0x0000);
2322 rtl_patchphy(tp, 0x14, 1 << 5);
2323 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002324
françois romieu4da19632011-01-03 15:07:55 +00002325 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002326}
2327
françois romieu4da19632011-01-03 15:07:55 +00002328static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002329{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002330 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002331 { 0x1f, 0x0001 },
2332 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002333 { 0x1f, 0x0002 },
2334 { 0x00, 0x88d4 },
2335 { 0x01, 0x82b1 },
2336 { 0x03, 0x7002 },
2337 { 0x08, 0x9e30 },
2338 { 0x09, 0x01f0 },
2339 { 0x0a, 0x5500 },
2340 { 0x0c, 0x00c8 },
2341 { 0x1f, 0x0003 },
2342 { 0x12, 0xc096 },
2343 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002344 { 0x1f, 0x0000 },
2345 { 0x1f, 0x0000 },
2346 { 0x09, 0x2000 },
2347 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002348 };
2349
françois romieu4da19632011-01-03 15:07:55 +00002350 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002351
françois romieu4da19632011-01-03 15:07:55 +00002352 rtl_patchphy(tp, 0x14, 1 << 5);
2353 rtl_patchphy(tp, 0x0d, 1 << 5);
2354 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002355}
2356
françois romieu4da19632011-01-03 15:07:55 +00002357static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002358{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002359 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002360 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002361 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002362 { 0x03, 0x802f },
2363 { 0x02, 0x4f02 },
2364 { 0x01, 0x0409 },
2365 { 0x00, 0xf099 },
2366 { 0x04, 0x9800 },
2367 { 0x04, 0x9000 },
2368 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002369 { 0x1f, 0x0002 },
2370 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002371 { 0x06, 0x0761 },
2372 { 0x1f, 0x0003 },
2373 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002374 { 0x1f, 0x0000 }
2375 };
2376
françois romieu4da19632011-01-03 15:07:55 +00002377 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002378
françois romieu4da19632011-01-03 15:07:55 +00002379 rtl_patchphy(tp, 0x16, 1 << 0);
2380 rtl_patchphy(tp, 0x14, 1 << 5);
2381 rtl_patchphy(tp, 0x0d, 1 << 5);
2382 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002383}
2384
françois romieu4da19632011-01-03 15:07:55 +00002385static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002386{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002387 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002388 { 0x1f, 0x0001 },
2389 { 0x12, 0x2300 },
2390 { 0x1d, 0x3d98 },
2391 { 0x1f, 0x0002 },
2392 { 0x0c, 0x7eb8 },
2393 { 0x06, 0x5461 },
2394 { 0x1f, 0x0003 },
2395 { 0x16, 0x0f0a },
2396 { 0x1f, 0x0000 }
2397 };
2398
françois romieu4da19632011-01-03 15:07:55 +00002399 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002400
françois romieu4da19632011-01-03 15:07:55 +00002401 rtl_patchphy(tp, 0x16, 1 << 0);
2402 rtl_patchphy(tp, 0x14, 1 << 5);
2403 rtl_patchphy(tp, 0x0d, 1 << 5);
2404 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002405}
2406
françois romieu4da19632011-01-03 15:07:55 +00002407static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002408{
françois romieu4da19632011-01-03 15:07:55 +00002409 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002410}
2411
françois romieubca03d52011-01-03 15:07:31 +00002412static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002413{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002414 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002415 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002416 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002417 { 0x06, 0x4064 },
2418 { 0x07, 0x2863 },
2419 { 0x08, 0x059c },
2420 { 0x09, 0x26b4 },
2421 { 0x0a, 0x6a19 },
2422 { 0x0b, 0xdcc8 },
2423 { 0x10, 0xf06d },
2424 { 0x14, 0x7f68 },
2425 { 0x18, 0x7fd9 },
2426 { 0x1c, 0xf0ff },
2427 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002428 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002429 { 0x12, 0xf49f },
2430 { 0x13, 0x070b },
2431 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002432 { 0x14, 0x94c0 },
2433
2434 /*
2435 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002436 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002437 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002438 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002439 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002440 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002441 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002442 { 0x06, 0x5561 },
2443
2444 /*
2445 * Can not link to 1Gbps with bad cable
2446 * Decrease SNR threshold form 21.07dB to 19.04dB
2447 */
2448 { 0x1f, 0x0001 },
2449 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002450
2451 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002452 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002453 };
françois romieubca03d52011-01-03 15:07:31 +00002454 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu5b538df2008-07-20 16:22:45 +02002455
françois romieu4da19632011-01-03 15:07:55 +00002456 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002457
françois romieubca03d52011-01-03 15:07:31 +00002458 /*
2459 * Rx Error Issue
2460 * Fine Tune Switching regulator parameter
2461 */
françois romieu4da19632011-01-03 15:07:55 +00002462 rtl_writephy(tp, 0x1f, 0x0002);
2463 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2464 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002465
françois romieudaf9df62009-10-07 12:44:20 +00002466 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002467 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002468 { 0x1f, 0x0002 },
2469 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002470 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002471 { 0x05, 0x8330 },
2472 { 0x06, 0x669a },
2473 { 0x1f, 0x0002 }
2474 };
2475 int val;
2476
françois romieu4da19632011-01-03 15:07:55 +00002477 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002478
françois romieu4da19632011-01-03 15:07:55 +00002479 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002480
2481 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002482 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002483 0x0065, 0x0066, 0x0067, 0x0068,
2484 0x0069, 0x006a, 0x006b, 0x006c
2485 };
2486 int i;
2487
françois romieu4da19632011-01-03 15:07:55 +00002488 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002489
2490 val &= 0xff00;
2491 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002492 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002493 }
2494 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002495 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002496 { 0x1f, 0x0002 },
2497 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002498 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002499 { 0x05, 0x8330 },
2500 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002501 };
2502
françois romieu4da19632011-01-03 15:07:55 +00002503 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002504 }
2505
françois romieubca03d52011-01-03 15:07:31 +00002506 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002507 rtl_writephy(tp, 0x1f, 0x0002);
2508 rtl_patchphy(tp, 0x0d, 0x0300);
2509 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002510
françois romieubca03d52011-01-03 15:07:31 +00002511 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002512 rtl_writephy(tp, 0x1f, 0x0002);
2513 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2514 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002515
françois romieu4da19632011-01-03 15:07:55 +00002516 rtl_writephy(tp, 0x1f, 0x0005);
2517 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002518
2519 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00002520
françois romieu4da19632011-01-03 15:07:55 +00002521 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002522}
2523
françois romieubca03d52011-01-03 15:07:31 +00002524static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002525{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002526 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002527 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002528 { 0x1f, 0x0001 },
2529 { 0x06, 0x4064 },
2530 { 0x07, 0x2863 },
2531 { 0x08, 0x059c },
2532 { 0x09, 0x26b4 },
2533 { 0x0a, 0x6a19 },
2534 { 0x0b, 0xdcc8 },
2535 { 0x10, 0xf06d },
2536 { 0x14, 0x7f68 },
2537 { 0x18, 0x7fd9 },
2538 { 0x1c, 0xf0ff },
2539 { 0x1d, 0x3d9c },
2540 { 0x1f, 0x0003 },
2541 { 0x12, 0xf49f },
2542 { 0x13, 0x070b },
2543 { 0x1a, 0x05ad },
2544 { 0x14, 0x94c0 },
2545
françois romieubca03d52011-01-03 15:07:31 +00002546 /*
2547 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002548 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002549 */
françois romieudaf9df62009-10-07 12:44:20 +00002550 { 0x1f, 0x0002 },
2551 { 0x06, 0x5561 },
2552 { 0x1f, 0x0005 },
2553 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002554 { 0x06, 0x5561 },
2555
2556 /*
2557 * Can not link to 1Gbps with bad cable
2558 * Decrease SNR threshold form 21.07dB to 19.04dB
2559 */
2560 { 0x1f, 0x0001 },
2561 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002562
2563 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002564 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002565 };
françois romieubca03d52011-01-03 15:07:31 +00002566 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00002567
françois romieu4da19632011-01-03 15:07:55 +00002568 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002569
2570 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002571 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002572 { 0x1f, 0x0002 },
2573 { 0x05, 0x669a },
2574 { 0x1f, 0x0005 },
2575 { 0x05, 0x8330 },
2576 { 0x06, 0x669a },
2577
2578 { 0x1f, 0x0002 }
2579 };
2580 int val;
2581
françois romieu4da19632011-01-03 15:07:55 +00002582 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002583
françois romieu4da19632011-01-03 15:07:55 +00002584 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002585 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002586 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002587 0x0065, 0x0066, 0x0067, 0x0068,
2588 0x0069, 0x006a, 0x006b, 0x006c
2589 };
2590 int i;
2591
françois romieu4da19632011-01-03 15:07:55 +00002592 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002593
2594 val &= 0xff00;
2595 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002596 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002597 }
2598 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002599 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002600 { 0x1f, 0x0002 },
2601 { 0x05, 0x2642 },
2602 { 0x1f, 0x0005 },
2603 { 0x05, 0x8330 },
2604 { 0x06, 0x2642 }
2605 };
2606
françois romieu4da19632011-01-03 15:07:55 +00002607 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002608 }
2609
françois romieubca03d52011-01-03 15:07:31 +00002610 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002611 rtl_writephy(tp, 0x1f, 0x0002);
2612 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2613 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002614
françois romieubca03d52011-01-03 15:07:31 +00002615 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002616 rtl_writephy(tp, 0x1f, 0x0002);
2617 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002618
françois romieu4da19632011-01-03 15:07:55 +00002619 rtl_writephy(tp, 0x1f, 0x0005);
2620 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002621
2622 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00002623
françois romieu4da19632011-01-03 15:07:55 +00002624 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002625}
2626
françois romieu4da19632011-01-03 15:07:55 +00002627static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002628{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002629 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002630 { 0x1f, 0x0002 },
2631 { 0x10, 0x0008 },
2632 { 0x0d, 0x006c },
2633
2634 { 0x1f, 0x0000 },
2635 { 0x0d, 0xf880 },
2636
2637 { 0x1f, 0x0001 },
2638 { 0x17, 0x0cc0 },
2639
2640 { 0x1f, 0x0001 },
2641 { 0x0b, 0xa4d8 },
2642 { 0x09, 0x281c },
2643 { 0x07, 0x2883 },
2644 { 0x0a, 0x6b35 },
2645 { 0x1d, 0x3da4 },
2646 { 0x1c, 0xeffd },
2647 { 0x14, 0x7f52 },
2648 { 0x18, 0x7fc6 },
2649 { 0x08, 0x0601 },
2650 { 0x06, 0x4063 },
2651 { 0x10, 0xf074 },
2652 { 0x1f, 0x0003 },
2653 { 0x13, 0x0789 },
2654 { 0x12, 0xf4bd },
2655 { 0x1a, 0x04fd },
2656 { 0x14, 0x84b0 },
2657 { 0x1f, 0x0000 },
2658 { 0x00, 0x9200 },
2659
2660 { 0x1f, 0x0005 },
2661 { 0x01, 0x0340 },
2662 { 0x1f, 0x0001 },
2663 { 0x04, 0x4000 },
2664 { 0x03, 0x1d21 },
2665 { 0x02, 0x0c32 },
2666 { 0x01, 0x0200 },
2667 { 0x00, 0x5554 },
2668 { 0x04, 0x4800 },
2669 { 0x04, 0x4000 },
2670 { 0x04, 0xf000 },
2671 { 0x03, 0xdf01 },
2672 { 0x02, 0xdf20 },
2673 { 0x01, 0x101a },
2674 { 0x00, 0xa0ff },
2675 { 0x04, 0xf800 },
2676 { 0x04, 0xf000 },
2677 { 0x1f, 0x0000 },
2678
2679 { 0x1f, 0x0007 },
2680 { 0x1e, 0x0023 },
2681 { 0x16, 0x0000 },
2682 { 0x1f, 0x0000 }
2683 };
2684
françois romieu4da19632011-01-03 15:07:55 +00002685 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002686}
2687
françois romieue6de30d2011-01-03 15:08:37 +00002688static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2689{
2690 static const struct phy_reg phy_reg_init[] = {
2691 { 0x1f, 0x0001 },
2692 { 0x17, 0x0cc0 },
2693
2694 { 0x1f, 0x0007 },
2695 { 0x1e, 0x002d },
2696 { 0x18, 0x0040 },
2697 { 0x1f, 0x0000 }
2698 };
2699
2700 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2701 rtl_patchphy(tp, 0x0d, 1 << 5);
2702}
2703
Hayes Wang70090422011-07-06 15:58:06 +08002704static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
hayeswang01dc7fe2011-03-21 01:50:28 +00002705{
2706 static const struct phy_reg phy_reg_init[] = {
2707 /* Enable Delay cap */
2708 { 0x1f, 0x0005 },
2709 { 0x05, 0x8b80 },
2710 { 0x06, 0xc896 },
2711 { 0x1f, 0x0000 },
2712
2713 /* Channel estimation fine tune */
2714 { 0x1f, 0x0001 },
2715 { 0x0b, 0x6c20 },
2716 { 0x07, 0x2872 },
2717 { 0x1c, 0xefff },
2718 { 0x1f, 0x0003 },
2719 { 0x14, 0x6420 },
2720 { 0x1f, 0x0000 },
2721
2722 /* Update PFM & 10M TX idle timer */
2723 { 0x1f, 0x0007 },
2724 { 0x1e, 0x002f },
2725 { 0x15, 0x1919 },
2726 { 0x1f, 0x0000 },
2727
2728 { 0x1f, 0x0007 },
2729 { 0x1e, 0x00ac },
2730 { 0x18, 0x0006 },
2731 { 0x1f, 0x0000 }
2732 };
2733
Francois Romieu15ecd032011-04-27 13:52:22 -07002734 rtl_apply_firmware(tp);
2735
hayeswang01dc7fe2011-03-21 01:50:28 +00002736 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2737
2738 /* DCO enable for 10M IDLE Power */
2739 rtl_writephy(tp, 0x1f, 0x0007);
2740 rtl_writephy(tp, 0x1e, 0x0023);
2741 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2742 rtl_writephy(tp, 0x1f, 0x0000);
2743
2744 /* For impedance matching */
2745 rtl_writephy(tp, 0x1f, 0x0002);
2746 rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02002747 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00002748
2749 /* PHY auto speed down */
2750 rtl_writephy(tp, 0x1f, 0x0007);
2751 rtl_writephy(tp, 0x1e, 0x002d);
2752 rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
2753 rtl_writephy(tp, 0x1f, 0x0000);
2754 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2755
2756 rtl_writephy(tp, 0x1f, 0x0005);
2757 rtl_writephy(tp, 0x05, 0x8b86);
2758 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
2759 rtl_writephy(tp, 0x1f, 0x0000);
2760
2761 rtl_writephy(tp, 0x1f, 0x0005);
2762 rtl_writephy(tp, 0x05, 0x8b85);
2763 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
2764 rtl_writephy(tp, 0x1f, 0x0007);
2765 rtl_writephy(tp, 0x1e, 0x0020);
2766 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
2767 rtl_writephy(tp, 0x1f, 0x0006);
2768 rtl_writephy(tp, 0x00, 0x5a00);
2769 rtl_writephy(tp, 0x1f, 0x0000);
2770 rtl_writephy(tp, 0x0d, 0x0007);
2771 rtl_writephy(tp, 0x0e, 0x003c);
2772 rtl_writephy(tp, 0x0d, 0x4007);
2773 rtl_writephy(tp, 0x0e, 0x0000);
2774 rtl_writephy(tp, 0x0d, 0x0000);
2775}
2776
Hayes Wang70090422011-07-06 15:58:06 +08002777static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
2778{
2779 static const struct phy_reg phy_reg_init[] = {
2780 /* Enable Delay cap */
2781 { 0x1f, 0x0004 },
2782 { 0x1f, 0x0007 },
2783 { 0x1e, 0x00ac },
2784 { 0x18, 0x0006 },
2785 { 0x1f, 0x0002 },
2786 { 0x1f, 0x0000 },
2787 { 0x1f, 0x0000 },
2788
2789 /* Channel estimation fine tune */
2790 { 0x1f, 0x0003 },
2791 { 0x09, 0xa20f },
2792 { 0x1f, 0x0000 },
2793 { 0x1f, 0x0000 },
2794
2795 /* Green Setting */
2796 { 0x1f, 0x0005 },
2797 { 0x05, 0x8b5b },
2798 { 0x06, 0x9222 },
2799 { 0x05, 0x8b6d },
2800 { 0x06, 0x8000 },
2801 { 0x05, 0x8b76 },
2802 { 0x06, 0x8000 },
2803 { 0x1f, 0x0000 }
2804 };
2805
2806 rtl_apply_firmware(tp);
2807
2808 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2809
2810 /* For 4-corner performance improve */
2811 rtl_writephy(tp, 0x1f, 0x0005);
2812 rtl_writephy(tp, 0x05, 0x8b80);
2813 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2814 rtl_writephy(tp, 0x1f, 0x0000);
2815
2816 /* PHY auto speed down */
2817 rtl_writephy(tp, 0x1f, 0x0004);
2818 rtl_writephy(tp, 0x1f, 0x0007);
2819 rtl_writephy(tp, 0x1e, 0x002d);
2820 rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
2821 rtl_writephy(tp, 0x1f, 0x0002);
2822 rtl_writephy(tp, 0x1f, 0x0000);
2823 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2824
2825 /* improve 10M EEE waveform */
2826 rtl_writephy(tp, 0x1f, 0x0005);
2827 rtl_writephy(tp, 0x05, 0x8b86);
2828 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
2829 rtl_writephy(tp, 0x1f, 0x0000);
2830
2831 /* Improve 2-pair detection performance */
2832 rtl_writephy(tp, 0x1f, 0x0005);
2833 rtl_writephy(tp, 0x05, 0x8b85);
2834 rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
2835 rtl_writephy(tp, 0x1f, 0x0000);
2836
2837 /* EEE setting */
2838 rtl_w1w0_eri(tp->mmio_addr, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003,
2839 ERIAR_EXGMAC);
2840 rtl_writephy(tp, 0x1f, 0x0005);
2841 rtl_writephy(tp, 0x05, 0x8b85);
2842 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
2843 rtl_writephy(tp, 0x1f, 0x0004);
2844 rtl_writephy(tp, 0x1f, 0x0007);
2845 rtl_writephy(tp, 0x1e, 0x0020);
2846 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
2847 rtl_writephy(tp, 0x1f, 0x0002);
2848 rtl_writephy(tp, 0x1f, 0x0000);
2849 rtl_writephy(tp, 0x0d, 0x0007);
2850 rtl_writephy(tp, 0x0e, 0x003c);
2851 rtl_writephy(tp, 0x0d, 0x4007);
2852 rtl_writephy(tp, 0x0e, 0x0000);
2853 rtl_writephy(tp, 0x0d, 0x0000);
2854
2855 /* Green feature */
2856 rtl_writephy(tp, 0x1f, 0x0003);
2857 rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
2858 rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
2859 rtl_writephy(tp, 0x1f, 0x0000);
2860}
2861
françois romieu4da19632011-01-03 15:07:55 +00002862static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02002863{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002864 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02002865 { 0x1f, 0x0003 },
2866 { 0x08, 0x441d },
2867 { 0x01, 0x9100 },
2868 { 0x1f, 0x0000 }
2869 };
2870
françois romieu4da19632011-01-03 15:07:55 +00002871 rtl_writephy(tp, 0x1f, 0x0000);
2872 rtl_patchphy(tp, 0x11, 1 << 12);
2873 rtl_patchphy(tp, 0x19, 1 << 13);
2874 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002875
françois romieu4da19632011-01-03 15:07:55 +00002876 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02002877}
2878
Hayes Wang5a5e4442011-02-22 17:26:21 +08002879static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
2880{
2881 static const struct phy_reg phy_reg_init[] = {
2882 { 0x1f, 0x0005 },
2883 { 0x1a, 0x0000 },
2884 { 0x1f, 0x0000 },
2885
2886 { 0x1f, 0x0004 },
2887 { 0x1c, 0x0000 },
2888 { 0x1f, 0x0000 },
2889
2890 { 0x1f, 0x0001 },
2891 { 0x15, 0x7701 },
2892 { 0x1f, 0x0000 }
2893 };
2894
2895 /* Disable ALDPS before ram code */
2896 rtl_writephy(tp, 0x1f, 0x0000);
2897 rtl_writephy(tp, 0x18, 0x0310);
2898 msleep(100);
2899
François Romieu953a12c2011-04-24 17:38:48 +02002900 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08002901
2902 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2903}
2904
Francois Romieu5615d9f2007-08-17 17:50:46 +02002905static void rtl_hw_phy_config(struct net_device *dev)
2906{
2907 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002908
2909 rtl8169_print_mac_version(tp);
2910
2911 switch (tp->mac_version) {
2912 case RTL_GIGA_MAC_VER_01:
2913 break;
2914 case RTL_GIGA_MAC_VER_02:
2915 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00002916 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002917 break;
2918 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00002919 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002920 break;
françois romieu2e9558562009-08-10 19:44:19 +00002921 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00002922 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002923 break;
françois romieu8c7006a2009-08-10 19:43:29 +00002924 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00002925 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00002926 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02002927 case RTL_GIGA_MAC_VER_07:
2928 case RTL_GIGA_MAC_VER_08:
2929 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00002930 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002931 break;
Francois Romieu236b8082008-05-30 16:11:48 +02002932 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00002933 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002934 break;
2935 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00002936 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002937 break;
2938 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00002939 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002940 break;
Francois Romieu867763c2007-08-17 18:21:58 +02002941 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00002942 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002943 break;
2944 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00002945 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002946 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02002947 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00002948 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002949 break;
Francois Romieu197ff762008-06-28 13:16:02 +02002950 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00002951 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02002952 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02002953 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00002954 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002955 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002956 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002957 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00002958 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02002959 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02002960 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00002961 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002962 break;
2963 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00002964 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002965 break;
2966 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00002967 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02002968 break;
françois romieue6de30d2011-01-03 15:08:37 +00002969 case RTL_GIGA_MAC_VER_28:
2970 rtl8168d_4_hw_phy_config(tp);
2971 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08002972 case RTL_GIGA_MAC_VER_29:
2973 case RTL_GIGA_MAC_VER_30:
2974 rtl8105e_hw_phy_config(tp);
2975 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02002976 case RTL_GIGA_MAC_VER_31:
2977 /* None. */
2978 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00002979 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00002980 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08002981 rtl8168e_1_hw_phy_config(tp);
2982 break;
2983 case RTL_GIGA_MAC_VER_34:
2984 rtl8168e_2_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00002985 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002986
Francois Romieu5615d9f2007-08-17 17:50:46 +02002987 default:
2988 break;
2989 }
2990}
2991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992static void rtl8169_phy_timer(unsigned long __opaque)
2993{
2994 struct net_device *dev = (struct net_device *)__opaque;
2995 struct rtl8169_private *tp = netdev_priv(dev);
2996 struct timer_list *timer = &tp->timer;
2997 void __iomem *ioaddr = tp->mmio_addr;
2998 unsigned long timeout = RTL8169_PHY_TIMEOUT;
2999
Francois Romieubcf0bf92006-07-26 23:14:13 +02003000 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 spin_lock_irq(&tp->lock);
3003
françois romieu4da19632011-01-03 15:07:55 +00003004 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02003005 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 * A busy loop could burn quite a few cycles on nowadays CPU.
3007 * Let's delay the execution of the timer for a few ticks.
3008 */
3009 timeout = HZ/10;
3010 goto out_mod_timer;
3011 }
3012
3013 if (tp->link_ok(ioaddr))
3014 goto out_unlock;
3015
Joe Perchesbf82c182010-02-09 11:49:50 +00003016 netif_warn(tp, link, dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
françois romieu4da19632011-01-03 15:07:55 +00003018 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
3020out_mod_timer:
3021 mod_timer(timer, jiffies + timeout);
3022out_unlock:
3023 spin_unlock_irq(&tp->lock);
3024}
3025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026#ifdef CONFIG_NET_POLL_CONTROLLER
3027/*
3028 * Polling 'interrupt' - used by things like netconsole to send skbs
3029 * without having to re-enable interrupts. It's not called while
3030 * the interrupt routine is executing.
3031 */
3032static void rtl8169_netpoll(struct net_device *dev)
3033{
3034 struct rtl8169_private *tp = netdev_priv(dev);
3035 struct pci_dev *pdev = tp->pci_dev;
3036
3037 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01003038 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 enable_irq(pdev->irq);
3040}
3041#endif
3042
3043static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
3044 void __iomem *ioaddr)
3045{
3046 iounmap(ioaddr);
3047 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003048 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 pci_disable_device(pdev);
3050 free_netdev(dev);
3051}
3052
Francois Romieubf793292006-11-01 00:53:05 +01003053static void rtl8169_phy_reset(struct net_device *dev,
3054 struct rtl8169_private *tp)
3055{
Francois Romieu07d3f512007-02-21 22:40:46 +01003056 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01003057
françois romieu4da19632011-01-03 15:07:55 +00003058 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01003059 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00003060 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01003061 return;
3062 msleep(1);
3063 }
Joe Perchesbf82c182010-02-09 11:49:50 +00003064 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01003065}
3066
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003067static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003069 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003070
Francois Romieu5615d9f2007-08-17 17:50:46 +02003071 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003072
Marcus Sundberg773328942008-07-10 21:28:08 +02003073 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
3074 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3075 RTL_W8(0x82, 0x01);
3076 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003077
Francois Romieu6dccd162007-02-13 23:38:05 +01003078 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
3079
3080 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
3081 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003082
Francois Romieubcf0bf92006-07-26 23:14:13 +02003083 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003084 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3085 RTL_W8(0x82, 0x01);
3086 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00003087 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003088 }
3089
Francois Romieubf793292006-11-01 00:53:05 +01003090 rtl8169_phy_reset(dev, tp);
3091
Oliver Neukum54405cd2011-01-06 21:55:13 +01003092 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02003093 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3094 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
3095 (tp->mii.supports_gmii ?
3096 ADVERTISED_1000baseT_Half |
3097 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003098
Joe Perchesbf82c182010-02-09 11:49:50 +00003099 if (RTL_R8(PHYstatus) & TBI_Enable)
3100 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003101}
3102
Francois Romieu773d2022007-01-31 23:47:43 +01003103static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
3104{
3105 void __iomem *ioaddr = tp->mmio_addr;
3106 u32 high;
3107 u32 low;
3108
3109 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
3110 high = addr[4] | (addr[5] << 8);
3111
3112 spin_lock_irq(&tp->lock);
3113
3114 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00003115
Francois Romieu773d2022007-01-31 23:47:43 +01003116 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00003117 RTL_R32(MAC4);
3118
Francois Romieu78f1cd02010-03-27 19:35:46 -07003119 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00003120 RTL_R32(MAC0);
3121
Francois Romieu773d2022007-01-31 23:47:43 +01003122 RTL_W8(Cfg9346, Cfg9346_Lock);
3123
3124 spin_unlock_irq(&tp->lock);
3125}
3126
3127static int rtl_set_mac_address(struct net_device *dev, void *p)
3128{
3129 struct rtl8169_private *tp = netdev_priv(dev);
3130 struct sockaddr *addr = p;
3131
3132 if (!is_valid_ether_addr(addr->sa_data))
3133 return -EADDRNOTAVAIL;
3134
3135 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3136
3137 rtl_rar_set(tp, dev->dev_addr);
3138
3139 return 0;
3140}
3141
Francois Romieu5f787a12006-08-17 13:02:36 +02003142static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
3143{
3144 struct rtl8169_private *tp = netdev_priv(dev);
3145 struct mii_ioctl_data *data = if_mii(ifr);
3146
Francois Romieu8b4ab282008-11-19 22:05:25 -08003147 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
3148}
Francois Romieu5f787a12006-08-17 13:02:36 +02003149
Francois Romieucecb5fd2011-04-01 10:21:07 +02003150static int rtl_xmii_ioctl(struct rtl8169_private *tp,
3151 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08003152{
Francois Romieu5f787a12006-08-17 13:02:36 +02003153 switch (cmd) {
3154 case SIOCGMIIPHY:
3155 data->phy_id = 32; /* Internal PHY */
3156 return 0;
3157
3158 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003159 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02003160 return 0;
3161
3162 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00003163 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02003164 return 0;
3165 }
3166 return -EOPNOTSUPP;
3167}
3168
Francois Romieu8b4ab282008-11-19 22:05:25 -08003169static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
3170{
3171 return -EOPNOTSUPP;
3172}
3173
Francois Romieu0e485152007-02-20 00:00:26 +01003174static const struct rtl_cfg_info {
3175 void (*hw_start)(struct net_device *);
3176 unsigned int region;
3177 unsigned int align;
3178 u16 intr_event;
3179 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02003180 unsigned features;
Jean Delvaref21b75e2009-05-26 20:54:48 -07003181 u8 default_ver;
Francois Romieu0e485152007-02-20 00:00:26 +01003182} rtl_cfg_infos [] = {
3183 [RTL_CFG_0] = {
3184 .hw_start = rtl_hw_start_8169,
3185 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01003186 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01003187 .intr_event = SYSErr | LinkChg | RxOverflow |
3188 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02003189 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07003190 .features = RTL_FEATURE_GMII,
3191 .default_ver = RTL_GIGA_MAC_VER_01,
Francois Romieu0e485152007-02-20 00:00:26 +01003192 },
3193 [RTL_CFG_1] = {
3194 .hw_start = rtl_hw_start_8168,
3195 .region = 2,
3196 .align = 8,
françois romieu53f57352010-11-08 13:23:05 +00003197 .intr_event = SYSErr | LinkChg | RxOverflow |
Francois Romieu0e485152007-02-20 00:00:26 +01003198 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02003199 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07003200 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
3201 .default_ver = RTL_GIGA_MAC_VER_11,
Francois Romieu0e485152007-02-20 00:00:26 +01003202 },
3203 [RTL_CFG_2] = {
3204 .hw_start = rtl_hw_start_8101,
3205 .region = 2,
3206 .align = 8,
3207 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
3208 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02003209 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07003210 .features = RTL_FEATURE_MSI,
3211 .default_ver = RTL_GIGA_MAC_VER_13,
Francois Romieu0e485152007-02-20 00:00:26 +01003212 }
3213};
3214
Francois Romieufbac58f2007-10-04 22:51:38 +02003215/* Cfg9346_Unlock assumed. */
3216static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
3217 const struct rtl_cfg_info *cfg)
3218{
3219 unsigned msi = 0;
3220 u8 cfg2;
3221
3222 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02003223 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02003224 if (pci_enable_msi(pdev)) {
3225 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
3226 } else {
3227 cfg2 |= MSIEnable;
3228 msi = RTL_FEATURE_MSI;
3229 }
3230 }
3231 RTL_W8(Config2, cfg2);
3232 return msi;
3233}
3234
3235static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
3236{
3237 if (tp->features & RTL_FEATURE_MSI) {
3238 pci_disable_msi(pdev);
3239 tp->features &= ~RTL_FEATURE_MSI;
3240 }
3241}
3242
Francois Romieu8b4ab282008-11-19 22:05:25 -08003243static const struct net_device_ops rtl8169_netdev_ops = {
3244 .ndo_open = rtl8169_open,
3245 .ndo_stop = rtl8169_close,
3246 .ndo_get_stats = rtl8169_get_stats,
Stephen Hemminger00829822008-11-20 20:14:53 -08003247 .ndo_start_xmit = rtl8169_start_xmit,
Francois Romieu8b4ab282008-11-19 22:05:25 -08003248 .ndo_tx_timeout = rtl8169_tx_timeout,
3249 .ndo_validate_addr = eth_validate_addr,
3250 .ndo_change_mtu = rtl8169_change_mtu,
Michał Mirosław350fb322011-04-08 06:35:56 +00003251 .ndo_fix_features = rtl8169_fix_features,
3252 .ndo_set_features = rtl8169_set_features,
Francois Romieu8b4ab282008-11-19 22:05:25 -08003253 .ndo_set_mac_address = rtl_set_mac_address,
3254 .ndo_do_ioctl = rtl8169_ioctl,
3255 .ndo_set_multicast_list = rtl_set_rx_mode,
Francois Romieu8b4ab282008-11-19 22:05:25 -08003256#ifdef CONFIG_NET_POLL_CONTROLLER
3257 .ndo_poll_controller = rtl8169_netpoll,
3258#endif
3259
3260};
3261
françois romieuc0e45c12011-01-03 15:08:04 +00003262static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
3263{
3264 struct mdio_ops *ops = &tp->mdio_ops;
3265
3266 switch (tp->mac_version) {
3267 case RTL_GIGA_MAC_VER_27:
3268 ops->write = r8168dp_1_mdio_write;
3269 ops->read = r8168dp_1_mdio_read;
3270 break;
françois romieue6de30d2011-01-03 15:08:37 +00003271 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003272 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00003273 ops->write = r8168dp_2_mdio_write;
3274 ops->read = r8168dp_2_mdio_read;
3275 break;
françois romieuc0e45c12011-01-03 15:08:04 +00003276 default:
3277 ops->write = r8169_mdio_write;
3278 ops->read = r8169_mdio_read;
3279 break;
3280 }
3281}
3282
françois romieu065c27c2011-01-03 15:08:12 +00003283static void r810x_phy_power_down(struct rtl8169_private *tp)
3284{
3285 rtl_writephy(tp, 0x1f, 0x0000);
3286 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3287}
3288
3289static void r810x_phy_power_up(struct rtl8169_private *tp)
3290{
3291 rtl_writephy(tp, 0x1f, 0x0000);
3292 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3293}
3294
3295static void r810x_pll_power_down(struct rtl8169_private *tp)
3296{
3297 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
3298 rtl_writephy(tp, 0x1f, 0x0000);
3299 rtl_writephy(tp, MII_BMCR, 0x0000);
3300 return;
3301 }
3302
3303 r810x_phy_power_down(tp);
3304}
3305
3306static void r810x_pll_power_up(struct rtl8169_private *tp)
3307{
3308 r810x_phy_power_up(tp);
3309}
3310
3311static void r8168_phy_power_up(struct rtl8169_private *tp)
3312{
3313 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003314 switch (tp->mac_version) {
3315 case RTL_GIGA_MAC_VER_11:
3316 case RTL_GIGA_MAC_VER_12:
3317 case RTL_GIGA_MAC_VER_17:
3318 case RTL_GIGA_MAC_VER_18:
3319 case RTL_GIGA_MAC_VER_19:
3320 case RTL_GIGA_MAC_VER_20:
3321 case RTL_GIGA_MAC_VER_21:
3322 case RTL_GIGA_MAC_VER_22:
3323 case RTL_GIGA_MAC_VER_23:
3324 case RTL_GIGA_MAC_VER_24:
3325 case RTL_GIGA_MAC_VER_25:
3326 case RTL_GIGA_MAC_VER_26:
3327 case RTL_GIGA_MAC_VER_27:
3328 case RTL_GIGA_MAC_VER_28:
3329 case RTL_GIGA_MAC_VER_31:
3330 rtl_writephy(tp, 0x0e, 0x0000);
3331 break;
3332 default:
3333 break;
3334 }
françois romieu065c27c2011-01-03 15:08:12 +00003335 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3336}
3337
3338static void r8168_phy_power_down(struct rtl8169_private *tp)
3339{
3340 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003341 switch (tp->mac_version) {
3342 case RTL_GIGA_MAC_VER_32:
3343 case RTL_GIGA_MAC_VER_33:
3344 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
3345 break;
3346
3347 case RTL_GIGA_MAC_VER_11:
3348 case RTL_GIGA_MAC_VER_12:
3349 case RTL_GIGA_MAC_VER_17:
3350 case RTL_GIGA_MAC_VER_18:
3351 case RTL_GIGA_MAC_VER_19:
3352 case RTL_GIGA_MAC_VER_20:
3353 case RTL_GIGA_MAC_VER_21:
3354 case RTL_GIGA_MAC_VER_22:
3355 case RTL_GIGA_MAC_VER_23:
3356 case RTL_GIGA_MAC_VER_24:
3357 case RTL_GIGA_MAC_VER_25:
3358 case RTL_GIGA_MAC_VER_26:
3359 case RTL_GIGA_MAC_VER_27:
3360 case RTL_GIGA_MAC_VER_28:
3361 case RTL_GIGA_MAC_VER_31:
3362 rtl_writephy(tp, 0x0e, 0x0200);
3363 default:
3364 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3365 break;
3366 }
françois romieu065c27c2011-01-03 15:08:12 +00003367}
3368
3369static void r8168_pll_power_down(struct rtl8169_private *tp)
3370{
3371 void __iomem *ioaddr = tp->mmio_addr;
3372
Francois Romieucecb5fd2011-04-01 10:21:07 +02003373 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3374 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3375 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003376 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003377 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003378 }
françois romieu065c27c2011-01-03 15:08:12 +00003379
Francois Romieucecb5fd2011-04-01 10:21:07 +02003380 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
3381 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00003382 (RTL_R16(CPlusCmd) & ASF)) {
3383 return;
3384 }
3385
hayeswang01dc7fe2011-03-21 01:50:28 +00003386 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
3387 tp->mac_version == RTL_GIGA_MAC_VER_33)
3388 rtl_ephy_write(ioaddr, 0x19, 0xff64);
3389
françois romieu065c27c2011-01-03 15:08:12 +00003390 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
3391 rtl_writephy(tp, 0x1f, 0x0000);
3392 rtl_writephy(tp, MII_BMCR, 0x0000);
3393
Hayes Wangd4ed95d2011-07-06 15:58:07 +08003394 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
3395 tp->mac_version == RTL_GIGA_MAC_VER_33)
3396 RTL_W32(RxConfig, RTL_R32(RxConfig) | AcceptBroadcast |
3397 AcceptMulticast | AcceptMyPhys);
françois romieu065c27c2011-01-03 15:08:12 +00003398 return;
3399 }
3400
3401 r8168_phy_power_down(tp);
3402
3403 switch (tp->mac_version) {
3404 case RTL_GIGA_MAC_VER_25:
3405 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003406 case RTL_GIGA_MAC_VER_27:
3407 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003408 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003409 case RTL_GIGA_MAC_VER_32:
3410 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003411 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3412 break;
3413 }
3414}
3415
3416static void r8168_pll_power_up(struct rtl8169_private *tp)
3417{
3418 void __iomem *ioaddr = tp->mmio_addr;
3419
Francois Romieucecb5fd2011-04-01 10:21:07 +02003420 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3421 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3422 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003423 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003424 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003425 }
françois romieu065c27c2011-01-03 15:08:12 +00003426
3427 switch (tp->mac_version) {
3428 case RTL_GIGA_MAC_VER_25:
3429 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003430 case RTL_GIGA_MAC_VER_27:
3431 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003432 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003433 case RTL_GIGA_MAC_VER_32:
3434 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003435 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3436 break;
3437 }
3438
3439 r8168_phy_power_up(tp);
3440}
3441
3442static void rtl_pll_power_op(struct rtl8169_private *tp,
3443 void (*op)(struct rtl8169_private *))
3444{
3445 if (op)
3446 op(tp);
3447}
3448
3449static void rtl_pll_power_down(struct rtl8169_private *tp)
3450{
3451 rtl_pll_power_op(tp, tp->pll_power_ops.down);
3452}
3453
3454static void rtl_pll_power_up(struct rtl8169_private *tp)
3455{
3456 rtl_pll_power_op(tp, tp->pll_power_ops.up);
3457}
3458
3459static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
3460{
3461 struct pll_power_ops *ops = &tp->pll_power_ops;
3462
3463 switch (tp->mac_version) {
3464 case RTL_GIGA_MAC_VER_07:
3465 case RTL_GIGA_MAC_VER_08:
3466 case RTL_GIGA_MAC_VER_09:
3467 case RTL_GIGA_MAC_VER_10:
3468 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08003469 case RTL_GIGA_MAC_VER_29:
3470 case RTL_GIGA_MAC_VER_30:
françois romieu065c27c2011-01-03 15:08:12 +00003471 ops->down = r810x_pll_power_down;
3472 ops->up = r810x_pll_power_up;
3473 break;
3474
3475 case RTL_GIGA_MAC_VER_11:
3476 case RTL_GIGA_MAC_VER_12:
3477 case RTL_GIGA_MAC_VER_17:
3478 case RTL_GIGA_MAC_VER_18:
3479 case RTL_GIGA_MAC_VER_19:
3480 case RTL_GIGA_MAC_VER_20:
3481 case RTL_GIGA_MAC_VER_21:
3482 case RTL_GIGA_MAC_VER_22:
3483 case RTL_GIGA_MAC_VER_23:
3484 case RTL_GIGA_MAC_VER_24:
3485 case RTL_GIGA_MAC_VER_25:
3486 case RTL_GIGA_MAC_VER_26:
3487 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00003488 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003489 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003490 case RTL_GIGA_MAC_VER_32:
3491 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08003492 case RTL_GIGA_MAC_VER_34:
françois romieu065c27c2011-01-03 15:08:12 +00003493 ops->down = r8168_pll_power_down;
3494 ops->up = r8168_pll_power_up;
3495 break;
3496
3497 default:
3498 ops->down = NULL;
3499 ops->up = NULL;
3500 break;
3501 }
3502}
3503
Hayes Wange542a222011-07-06 15:58:04 +08003504static void rtl_init_rxcfg(struct rtl8169_private *tp)
3505{
3506 void __iomem *ioaddr = tp->mmio_addr;
3507
3508 switch (tp->mac_version) {
3509 case RTL_GIGA_MAC_VER_01:
3510 case RTL_GIGA_MAC_VER_02:
3511 case RTL_GIGA_MAC_VER_03:
3512 case RTL_GIGA_MAC_VER_04:
3513 case RTL_GIGA_MAC_VER_05:
3514 case RTL_GIGA_MAC_VER_06:
3515 case RTL_GIGA_MAC_VER_10:
3516 case RTL_GIGA_MAC_VER_11:
3517 case RTL_GIGA_MAC_VER_12:
3518 case RTL_GIGA_MAC_VER_13:
3519 case RTL_GIGA_MAC_VER_14:
3520 case RTL_GIGA_MAC_VER_15:
3521 case RTL_GIGA_MAC_VER_16:
3522 case RTL_GIGA_MAC_VER_17:
3523 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
3524 break;
3525 case RTL_GIGA_MAC_VER_18:
3526 case RTL_GIGA_MAC_VER_19:
3527 case RTL_GIGA_MAC_VER_20:
3528 case RTL_GIGA_MAC_VER_21:
3529 case RTL_GIGA_MAC_VER_22:
3530 case RTL_GIGA_MAC_VER_23:
3531 case RTL_GIGA_MAC_VER_24:
3532 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
3533 break;
3534 default:
3535 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
3536 break;
3537 }
3538}
3539
Hayes Wang92fc43b2011-07-06 15:58:03 +08003540static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
3541{
3542 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
3543}
3544
Francois Romieu6f43adc2011-04-29 15:05:51 +02003545static void rtl_hw_reset(struct rtl8169_private *tp)
3546{
3547 void __iomem *ioaddr = tp->mmio_addr;
3548 int i;
3549
3550 /* Soft reset the chip. */
3551 RTL_W8(ChipCmd, CmdReset);
3552
3553 /* Check that the chip has finished the reset. */
3554 for (i = 0; i < 100; i++) {
3555 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3556 break;
Hayes Wang92fc43b2011-07-06 15:58:03 +08003557 udelay(100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02003558 }
Hayes Wang92fc43b2011-07-06 15:58:03 +08003559
3560 rtl8169_init_ring_indexes(tp);
Francois Romieu6f43adc2011-04-29 15:05:51 +02003561}
3562
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003563static int __devinit
3564rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
3565{
Francois Romieu0e485152007-02-20 00:00:26 +01003566 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
3567 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02003569 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003570 struct net_device *dev;
3571 void __iomem *ioaddr;
Francois Romieu2b7b4312011-04-18 22:53:24 -07003572 int chipset, i;
Francois Romieu07d3f512007-02-21 22:40:46 +01003573 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003575 if (netif_msg_drv(&debug)) {
3576 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
3577 MODULENAME, RTL8169_VERSION);
3578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003581 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003582 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04003583 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003584 rc = -ENOMEM;
3585 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 }
3587
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieu8b4ab282008-11-19 22:05:25 -08003589 dev->netdev_ops = &rtl8169_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00003591 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02003592 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003593 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594
Francois Romieuccdffb92008-07-26 14:26:06 +02003595 mii = &tp->mii;
3596 mii->dev = dev;
3597 mii->mdio_read = rtl_mdio_read;
3598 mii->mdio_write = rtl_mdio_write;
3599 mii->phy_id_mask = 0x1f;
3600 mii->reg_num_mask = 0x1f;
3601 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
3602
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +00003603 /* disable ASPM completely as that cause random device stop working
3604 * problems as well as full system hangs for some PCIe devices users */
3605 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
3606 PCIE_LINK_STATE_CLKPM);
3607
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 /* enable device (incl. PCI PM wakeup and hotplug setup) */
3609 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003610 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003611 netif_err(tp, probe, dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003612 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 }
3614
françois romieu87aeec72010-04-26 11:42:06 +00003615 if (pci_set_mwi(pdev) < 0)
3616 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003619 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003620 netif_err(tp, probe, dev,
3621 "region #%d not an MMIO resource, aborting\n",
3622 region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003624 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003626
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003628 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003629 netif_err(tp, probe, dev,
3630 "Invalid PCI region size(s), aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003632 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 }
3634
3635 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003636 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003637 netif_err(tp, probe, dev, "could not request regions\n");
françois romieu87aeec72010-04-26 11:42:06 +00003638 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 }
3640
Hayes Wangd24e9aa2011-02-22 17:26:19 +08003641 tp->cp_cmd = RxChkSum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642
3643 if ((sizeof(dma_addr_t) > 4) &&
David S. Miller4300e8c2010-03-26 10:23:30 -07003644 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 tp->cp_cmd |= PCIDAC;
3646 dev->features |= NETIF_F_HIGHDMA;
3647 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07003648 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003650 netif_err(tp, probe, dev, "DMA configuration failed\n");
françois romieu87aeec72010-04-26 11:42:06 +00003651 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 }
3653 }
3654
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003656 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003657 if (!ioaddr) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003658 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 rc = -EIO;
françois romieu87aeec72010-04-26 11:42:06 +00003660 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 }
Francois Romieu6f43adc2011-04-29 15:05:51 +02003662 tp->mmio_addr = ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663
Jon Masone44daad2011-06-27 07:46:31 +00003664 if (!pci_is_pcie(pdev))
3665 netif_info(tp, probe, dev, "not PCI Express\n");
David S. Miller4300e8c2010-03-26 10:23:30 -07003666
Hayes Wange542a222011-07-06 15:58:04 +08003667 /* Identify chip attached to board */
3668 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
3669
3670 rtl_init_rxcfg(tp);
3671
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003672 RTL_W16(IntrMask, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
Francois Romieu6f43adc2011-04-29 15:05:51 +02003674 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003676 RTL_W16(IntrStatus, 0xffff);
3677
françois romieuca52efd2009-07-24 12:34:19 +00003678 pci_set_master(pdev);
3679
Francois Romieu7a8fc772011-03-01 17:18:33 +01003680 /*
3681 * Pretend we are using VLANs; This bypasses a nasty bug where
3682 * Interrupts stop flowing on high load on 8110SCd controllers.
3683 */
3684 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3685 tp->cp_cmd |= RxVlan;
3686
françois romieuc0e45c12011-01-03 15:08:04 +00003687 rtl_init_mdio_ops(tp);
françois romieu065c27c2011-01-03 15:08:12 +00003688 rtl_init_pll_power_ops(tp);
françois romieuc0e45c12011-01-03 15:08:04 +00003689
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Francois Romieu85bffe62011-04-27 08:22:39 +02003692 chipset = tp->mac_version;
3693 tp->txd_version = rtl_chip_infos[chipset].txd_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
Francois Romieu5d06a992006-02-23 00:47:58 +01003695 RTL_W8(Cfg9346, Cfg9346_Unlock);
3696 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
3697 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Bruno Prémont20037fa2008-10-08 17:05:03 -07003698 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
3699 tp->features |= RTL_FEATURE_WOL;
3700 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
3701 tp->features |= RTL_FEATURE_WOL;
Francois Romieufbac58f2007-10-04 22:51:38 +02003702 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01003703 RTL_W8(Cfg9346, Cfg9346_Lock);
3704
Francois Romieu66ec5d42007-11-06 22:56:10 +01003705 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
3706 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 tp->set_speed = rtl8169_set_speed_tbi;
3708 tp->get_settings = rtl8169_gset_tbi;
3709 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
3710 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
3711 tp->link_ok = rtl8169_tbi_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003712 tp->do_ioctl = rtl_tbi_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 } else {
3714 tp->set_speed = rtl8169_set_speed_xmii;
3715 tp->get_settings = rtl8169_gset_xmii;
3716 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
3717 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
3718 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003719 tp->do_ioctl = rtl_xmii_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 }
3721
Francois Romieudf58ef52008-10-09 14:35:58 -07003722 spin_lock_init(&tp->lock);
3723
Ivan Vecera7bf6bf42008-09-23 22:46:29 +00003724 /* Get MAC address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 for (i = 0; i < MAC_ADDR_LEN; i++)
3726 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04003727 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
3731 dev->irq = pdev->irq;
3732 dev->base_addr = (unsigned long) ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003734 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735
Michał Mirosław350fb322011-04-08 06:35:56 +00003736 /* don't enable SG, IP_CSUM and TSO by default - it might not work
3737 * properly for all devices */
3738 dev->features |= NETIF_F_RXCSUM |
3739 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
3740
3741 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
3742 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
3743 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
3744 NETIF_F_HIGHDMA;
3745
3746 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3747 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
3748 dev->hw_features &= ~NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749
3750 tp->intr_mask = 0xffff;
Francois Romieu0e485152007-02-20 00:00:26 +01003751 tp->hw_start = cfg->hw_start;
3752 tp->intr_event = cfg->intr_event;
3753 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754
Francois Romieu2efa53f2007-03-09 00:00:05 +01003755 init_timer(&tp->timer);
3756 tp->timer.data = (unsigned long) dev;
3757 tp->timer.function = rtl8169_phy_timer;
3758
Francois Romieub6ffd972011-06-17 17:00:05 +02003759 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
François Romieu953a12c2011-04-24 17:38:48 +02003760
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003762 if (rc < 0)
françois romieu87aeec72010-04-26 11:42:06 +00003763 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
3765 pci_set_drvdata(pdev, dev);
3766
Joe Perchesbf82c182010-02-09 11:49:50 +00003767 netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
Francois Romieu85bffe62011-04-27 08:22:39 +02003768 rtl_chip_infos[chipset].name, dev->base_addr, dev->dev_addr,
Joe Perchesbf82c182010-02-09 11:49:50 +00003769 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
Francois Romieucecb5fd2011-04-01 10:21:07 +02003771 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3772 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3773 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieub646d902011-01-03 15:08:21 +00003774 rtl8168_driver_start(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003775 }
françois romieub646d902011-01-03 15:08:21 +00003776
Bruno Prémont8b76ab32008-10-08 17:06:25 -07003777 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778
Alan Sternf3ec4f82010-06-08 15:23:51 -04003779 if (pci_dev_run_wake(pdev))
3780 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003781
Ivan Vecera0d672e92011-02-15 02:08:39 +00003782 netif_carrier_off(dev);
3783
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003784out:
3785 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
françois romieu87aeec72010-04-26 11:42:06 +00003787err_out_msi_4:
Francois Romieufbac58f2007-10-04 22:51:38 +02003788 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003789 iounmap(ioaddr);
françois romieu87aeec72010-04-26 11:42:06 +00003790err_out_free_res_3:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003791 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003792err_out_mwi_2:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003793 pci_clear_mwi(pdev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003794 pci_disable_device(pdev);
3795err_out_free_dev_1:
3796 free_netdev(dev);
3797 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798}
3799
Francois Romieu07d3f512007-02-21 22:40:46 +01003800static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801{
3802 struct net_device *dev = pci_get_drvdata(pdev);
3803 struct rtl8169_private *tp = netdev_priv(dev);
3804
Francois Romieucecb5fd2011-04-01 10:21:07 +02003805 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3806 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3807 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieub646d902011-01-03 15:08:21 +00003808 rtl8168_driver_stop(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003809 }
françois romieub646d902011-01-03 15:08:21 +00003810
Tejun Heo23f333a2010-12-12 16:45:14 +01003811 cancel_delayed_work_sync(&tp->task);
Francois Romieueb2a0212007-02-15 23:37:21 +01003812
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 unregister_netdev(dev);
Ivan Veceracc098dc2009-11-29 23:12:52 -08003814
François Romieu953a12c2011-04-24 17:38:48 +02003815 rtl_release_firmware(tp);
3816
Alan Sternf3ec4f82010-06-08 15:23:51 -04003817 if (pci_dev_run_wake(pdev))
3818 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003819
Ivan Veceracc098dc2009-11-29 23:12:52 -08003820 /* restore original MAC address */
3821 rtl_rar_set(tp, dev->perm_addr);
3822
Francois Romieufbac58f2007-10-04 22:51:38 +02003823 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 rtl8169_release_board(pdev, dev, tp->mmio_addr);
3825 pci_set_drvdata(pdev, NULL);
3826}
3827
Francois Romieub6ffd972011-06-17 17:00:05 +02003828static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
3829{
3830 struct rtl_fw *rtl_fw;
3831 const char *name;
3832 int rc = -ENOMEM;
3833
3834 name = rtl_lookup_firmware_name(tp);
3835 if (!name)
3836 goto out_no_firmware;
3837
3838 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
3839 if (!rtl_fw)
3840 goto err_warn;
3841
3842 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
3843 if (rc < 0)
3844 goto err_free;
3845
Francois Romieufd112f22011-06-18 00:10:29 +02003846 rc = rtl_check_firmware(tp, rtl_fw);
3847 if (rc < 0)
3848 goto err_release_firmware;
3849
Francois Romieub6ffd972011-06-17 17:00:05 +02003850 tp->rtl_fw = rtl_fw;
3851out:
3852 return;
3853
Francois Romieufd112f22011-06-18 00:10:29 +02003854err_release_firmware:
3855 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02003856err_free:
3857 kfree(rtl_fw);
3858err_warn:
3859 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
3860 name, rc);
3861out_no_firmware:
3862 tp->rtl_fw = NULL;
3863 goto out;
3864}
3865
François Romieu953a12c2011-04-24 17:38:48 +02003866static void rtl_request_firmware(struct rtl8169_private *tp)
3867{
Francois Romieub6ffd972011-06-17 17:00:05 +02003868 if (IS_ERR(tp->rtl_fw))
3869 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02003870}
3871
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872static int rtl8169_open(struct net_device *dev)
3873{
3874 struct rtl8169_private *tp = netdev_priv(dev);
françois romieueee3a962011-01-08 02:17:26 +00003875 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02003877 int retval = -ENOMEM;
3878
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003879 pm_runtime_get_sync(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880
Neil Hormanc0cd8842010-03-29 13:16:02 -07003881 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 * Rx and Tx desscriptors needs 256 bytes alignment.
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003883 * dma_alloc_coherent provides more.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 */
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003885 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
3886 &tp->TxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 if (!tp->TxDescArray)
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003888 goto err_pm_runtime_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003890 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
3891 &tp->RxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02003893 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894
3895 retval = rtl8169_init_ring(dev);
3896 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02003897 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
David Howellsc4028952006-11-22 14:57:56 +00003899 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
Francois Romieu99f252b2007-04-02 22:59:59 +02003901 smp_mb();
3902
François Romieu953a12c2011-04-24 17:38:48 +02003903 rtl_request_firmware(tp);
3904
Francois Romieufbac58f2007-10-04 22:51:38 +02003905 retval = request_irq(dev->irq, rtl8169_interrupt,
3906 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02003907 dev->name, dev);
3908 if (retval < 0)
François Romieu953a12c2011-04-24 17:38:48 +02003909 goto err_release_fw_2;
Francois Romieu99f252b2007-04-02 22:59:59 +02003910
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003911 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003912
françois romieueee3a962011-01-08 02:17:26 +00003913 rtl8169_init_phy(dev, tp);
3914
Michał Mirosław350fb322011-04-08 06:35:56 +00003915 rtl8169_set_features(dev, dev->features);
françois romieueee3a962011-01-08 02:17:26 +00003916
françois romieu065c27c2011-01-03 15:08:12 +00003917 rtl_pll_power_up(tp);
3918
Francois Romieu07ce4062007-02-23 23:36:39 +01003919 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003921 tp->saved_wolopts = 0;
3922 pm_runtime_put_noidle(&pdev->dev);
3923
françois romieueee3a962011-01-08 02:17:26 +00003924 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925out:
3926 return retval;
3927
François Romieu953a12c2011-04-24 17:38:48 +02003928err_release_fw_2:
3929 rtl_release_firmware(tp);
Francois Romieu99f252b2007-04-02 22:59:59 +02003930 rtl8169_rx_clear(tp);
3931err_free_rx_1:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003932 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
3933 tp->RxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003934 tp->RxDescArray = NULL;
Francois Romieu99f252b2007-04-02 22:59:59 +02003935err_free_tx_0:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003936 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
3937 tp->TxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003938 tp->TxDescArray = NULL;
3939err_pm_runtime_put:
3940 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 goto out;
3942}
3943
Hayes Wang92fc43b2011-07-06 15:58:03 +08003944static void rtl_rx_close(struct rtl8169_private *tp)
3945{
3946 void __iomem *ioaddr = tp->mmio_addr;
Hayes Wang92fc43b2011-07-06 15:58:03 +08003947
Francois Romieu1687b562011-07-19 17:21:29 +02003948 RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
Hayes Wang92fc43b2011-07-06 15:58:03 +08003949}
3950
françois romieue6de30d2011-01-03 15:08:37 +00003951static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952{
françois romieue6de30d2011-01-03 15:08:37 +00003953 void __iomem *ioaddr = tp->mmio_addr;
3954
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 /* Disable interrupts */
3956 rtl8169_irq_mask_and_ack(ioaddr);
3957
Hayes Wang92fc43b2011-07-06 15:58:03 +08003958 rtl_rx_close(tp);
3959
Hayes Wang5d2e1952011-02-22 17:26:22 +08003960 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00003961 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3962 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieue6de30d2011-01-03 15:08:37 +00003963 while (RTL_R8(TxPoll) & NPQ)
3964 udelay(20);
Hayes Wang70090422011-07-06 15:58:06 +08003965 } else if (tp->mac_version == RTL_GIGA_MAC_VER_34) {
3966 while (!(RTL_R32(TxConfig) & TXCFG_EMPTY))
3967 udelay(100);
Hayes Wang92fc43b2011-07-06 15:58:03 +08003968 } else {
3969 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
3970 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00003971 }
3972
Hayes Wang92fc43b2011-07-06 15:58:03 +08003973 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974}
3975
Francois Romieu7f796d82007-06-11 23:04:41 +02003976static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01003977{
3978 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9cb427b2006-11-02 00:10:16 +01003979
3980 /* Set DMA burst size and Interframe Gap Time */
3981 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3982 (InterFrameGap << TxInterFrameGapShift));
3983}
3984
Francois Romieu07ce4062007-02-23 23:36:39 +01003985static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986{
3987 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988
Francois Romieu07ce4062007-02-23 23:36:39 +01003989 tp->hw_start(dev);
3990
Francois Romieu07ce4062007-02-23 23:36:39 +01003991 netif_start_queue(dev);
3992}
3993
Francois Romieu7f796d82007-06-11 23:04:41 +02003994static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
3995 void __iomem *ioaddr)
3996{
3997 /*
3998 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
3999 * register to be written before TxDescAddrLow to work.
4000 * Switching from MMIO to I/O access fixes the issue as well.
4001 */
4002 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004003 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02004004 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07004005 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02004006}
4007
4008static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
4009{
4010 u16 cmd;
4011
4012 cmd = RTL_R16(CPlusCmd);
4013 RTL_W16(CPlusCmd, cmd);
4014 return cmd;
4015}
4016
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07004017static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d82007-06-11 23:04:41 +02004018{
4019 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e82009-10-26 10:52:37 +00004020 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d82007-06-11 23:04:41 +02004021}
4022
Francois Romieu6dccd162007-02-13 23:38:05 +01004023static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
4024{
Francois Romieu37441002011-06-17 22:58:54 +02004025 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01004026 u32 mac_version;
4027 u32 clk;
4028 u32 val;
4029 } cfg2_info [] = {
4030 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
4031 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
4032 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
4033 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02004034 };
4035 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01004036 unsigned int i;
4037 u32 clk;
4038
4039 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01004040 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01004041 if ((p->mac_version == mac_version) && (p->clk == clk)) {
4042 RTL_W32(0x7c, p->val);
4043 break;
4044 }
4045 }
4046}
4047
Francois Romieu07ce4062007-02-23 23:36:39 +01004048static void rtl_hw_start_8169(struct net_device *dev)
4049{
4050 struct rtl8169_private *tp = netdev_priv(dev);
4051 void __iomem *ioaddr = tp->mmio_addr;
4052 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01004053
Francois Romieu9cb427b2006-11-02 00:10:16 +01004054 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
4055 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
4056 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
4057 }
4058
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02004060 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4061 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4062 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4063 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01004064 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4065
Hayes Wange542a222011-07-06 15:58:04 +08004066 rtl_init_rxcfg(tp);
4067
françois romieuf0298f82011-01-03 15:07:42 +00004068 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004070 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071
Francois Romieucecb5fd2011-04-01 10:21:07 +02004072 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4073 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4074 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4075 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02004076 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
Francois Romieu7f796d82007-06-11 23:04:41 +02004078 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004079
Francois Romieucecb5fd2011-04-01 10:21:07 +02004080 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4081 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Joe Perches06fa7352007-10-18 21:15:00 +02004082 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02004084 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 }
4086
Francois Romieubcf0bf92006-07-26 23:14:13 +02004087 RTL_W16(CPlusCmd, tp->cp_cmd);
4088
Francois Romieu6dccd162007-02-13 23:38:05 +01004089 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
4090
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 /*
4092 * Undocumented corner. Supposedly:
4093 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
4094 */
4095 RTL_W16(IntrMitigate, 0x0000);
4096
Francois Romieu7f796d82007-06-11 23:04:41 +02004097 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01004098
Francois Romieucecb5fd2011-04-01 10:21:07 +02004099 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
4100 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
4101 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
4102 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02004103 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4104 rtl_set_rx_tx_config_registers(tp);
4105 }
4106
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02004108
4109 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
4110 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111
4112 RTL_W32(RxMissed, 0);
4113
Francois Romieu07ce4062007-02-23 23:36:39 +01004114 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115
4116 /* no early-rx interrupts */
4117 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01004118
4119 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01004120 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01004121}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122
Francois Romieu9c14cea2008-07-05 00:21:15 +02004123static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02004124{
Jon Masone44daad2011-06-27 07:46:31 +00004125 int cap = pci_pcie_cap(pdev);
Francois Romieu458a9f62008-08-02 15:50:02 +02004126
Francois Romieu9c14cea2008-07-05 00:21:15 +02004127 if (cap) {
4128 u16 ctl;
4129
4130 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
4131 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
4132 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
4133 }
Francois Romieu458a9f62008-08-02 15:50:02 +02004134}
4135
françois romieu650e8d52011-01-03 15:08:29 +00004136static void rtl_csi_access_enable(void __iomem *ioaddr, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02004137{
4138 u32 csi;
4139
4140 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
françois romieu650e8d52011-01-03 15:08:29 +00004141 rtl_csi_write(ioaddr, 0x070c, csi | bits);
4142}
4143
françois romieue6de30d2011-01-03 15:08:37 +00004144static void rtl_csi_access_enable_1(void __iomem *ioaddr)
4145{
4146 rtl_csi_access_enable(ioaddr, 0x17000000);
4147}
4148
françois romieu650e8d52011-01-03 15:08:29 +00004149static void rtl_csi_access_enable_2(void __iomem *ioaddr)
4150{
4151 rtl_csi_access_enable(ioaddr, 0x27000000);
Francois Romieudacf8152008-08-02 20:44:13 +02004152}
4153
4154struct ephy_info {
4155 unsigned int offset;
4156 u16 mask;
4157 u16 bits;
4158};
4159
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004160static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02004161{
4162 u16 w;
4163
4164 while (len-- > 0) {
4165 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
4166 rtl_ephy_write(ioaddr, e->offset, w);
4167 e++;
4168 }
4169}
4170
Francois Romieub726e492008-06-28 12:22:59 +02004171static void rtl_disable_clock_request(struct pci_dev *pdev)
4172{
Jon Masone44daad2011-06-27 07:46:31 +00004173 int cap = pci_pcie_cap(pdev);
Francois Romieub726e492008-06-28 12:22:59 +02004174
4175 if (cap) {
4176 u16 ctl;
4177
4178 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
4179 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
4180 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
4181 }
4182}
4183
françois romieue6de30d2011-01-03 15:08:37 +00004184static void rtl_enable_clock_request(struct pci_dev *pdev)
4185{
Jon Masone44daad2011-06-27 07:46:31 +00004186 int cap = pci_pcie_cap(pdev);
françois romieue6de30d2011-01-03 15:08:37 +00004187
4188 if (cap) {
4189 u16 ctl;
4190
4191 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
4192 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
4193 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
4194 }
4195}
4196
Francois Romieub726e492008-06-28 12:22:59 +02004197#define R8168_CPCMD_QUIRK_MASK (\
4198 EnableBist | \
4199 Mac_dbgo_oe | \
4200 Force_half_dup | \
4201 Force_rxflow_en | \
4202 Force_txflow_en | \
4203 Cxpl_dbg_sel | \
4204 ASF | \
4205 PktCntrDisable | \
4206 Mac_dbgo_sel)
4207
Francois Romieu219a1e92008-06-28 11:58:39 +02004208static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
4209{
Francois Romieub726e492008-06-28 12:22:59 +02004210 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4211
4212 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4213
Francois Romieu2e68ae42008-06-28 12:00:55 +02004214 rtl_tx_performance_tweak(pdev,
4215 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02004216}
4217
4218static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
4219{
4220 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02004221
françois romieuf0298f82011-01-03 15:07:42 +00004222 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02004223
4224 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02004225}
4226
4227static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
4228{
Francois Romieub726e492008-06-28 12:22:59 +02004229 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
4230
4231 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4232
Francois Romieu219a1e92008-06-28 11:58:39 +02004233 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02004234
4235 rtl_disable_clock_request(pdev);
4236
4237 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02004238}
4239
Francois Romieuef3386f2008-06-29 12:24:30 +02004240static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02004241{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004242 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004243 { 0x01, 0, 0x0001 },
4244 { 0x02, 0x0800, 0x1000 },
4245 { 0x03, 0, 0x0042 },
4246 { 0x06, 0x0080, 0x0000 },
4247 { 0x07, 0, 0x2000 }
4248 };
4249
françois romieu650e8d52011-01-03 15:08:29 +00004250 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004251
4252 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
4253
Francois Romieu219a1e92008-06-28 11:58:39 +02004254 __rtl_hw_start_8168cp(ioaddr, pdev);
4255}
4256
Francois Romieuef3386f2008-06-29 12:24:30 +02004257static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
4258{
françois romieu650e8d52011-01-03 15:08:29 +00004259 rtl_csi_access_enable_2(ioaddr);
Francois Romieuef3386f2008-06-29 12:24:30 +02004260
4261 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4262
4263 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4264
4265 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4266}
4267
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004268static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
4269{
françois romieu650e8d52011-01-03 15:08:29 +00004270 rtl_csi_access_enable_2(ioaddr);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004271
4272 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4273
4274 /* Magic. */
4275 RTL_W8(DBG_REG, 0x20);
4276
françois romieuf0298f82011-01-03 15:07:42 +00004277 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004278
4279 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4280
4281 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4282}
4283
Francois Romieu219a1e92008-06-28 11:58:39 +02004284static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
4285{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004286 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004287 { 0x02, 0x0800, 0x1000 },
4288 { 0x03, 0, 0x0002 },
4289 { 0x06, 0x0080, 0x0000 }
4290 };
4291
françois romieu650e8d52011-01-03 15:08:29 +00004292 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004293
4294 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
4295
4296 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
4297
Francois Romieu219a1e92008-06-28 11:58:39 +02004298 __rtl_hw_start_8168cp(ioaddr, pdev);
4299}
4300
4301static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
4302{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004303 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004304 { 0x01, 0, 0x0001 },
4305 { 0x03, 0x0400, 0x0220 }
4306 };
4307
françois romieu650e8d52011-01-03 15:08:29 +00004308 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004309
4310 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
4311
Francois Romieu219a1e92008-06-28 11:58:39 +02004312 __rtl_hw_start_8168cp(ioaddr, pdev);
4313}
4314
Francois Romieu197ff762008-06-28 13:16:02 +02004315static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
4316{
4317 rtl_hw_start_8168c_2(ioaddr, pdev);
4318}
4319
Francois Romieu6fb07052008-06-29 11:54:28 +02004320static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
4321{
françois romieu650e8d52011-01-03 15:08:29 +00004322 rtl_csi_access_enable_2(ioaddr);
Francois Romieu6fb07052008-06-29 11:54:28 +02004323
4324 __rtl_hw_start_8168cp(ioaddr, pdev);
4325}
4326
Francois Romieu5b538df2008-07-20 16:22:45 +02004327static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
4328{
françois romieu650e8d52011-01-03 15:08:29 +00004329 rtl_csi_access_enable_2(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02004330
4331 rtl_disable_clock_request(pdev);
4332
françois romieuf0298f82011-01-03 15:07:42 +00004333 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02004334
4335 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4336
4337 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4338}
4339
hayeswang4804b3b2011-03-21 01:50:29 +00004340static void rtl_hw_start_8168dp(void __iomem *ioaddr, struct pci_dev *pdev)
4341{
4342 rtl_csi_access_enable_1(ioaddr);
4343
4344 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4345
4346 RTL_W8(MaxTxPacketSize, TxPacketMax);
4347
4348 rtl_disable_clock_request(pdev);
4349}
4350
françois romieue6de30d2011-01-03 15:08:37 +00004351static void rtl_hw_start_8168d_4(void __iomem *ioaddr, struct pci_dev *pdev)
4352{
4353 static const struct ephy_info e_info_8168d_4[] = {
4354 { 0x0b, ~0, 0x48 },
4355 { 0x19, 0x20, 0x50 },
4356 { 0x0c, ~0, 0x20 }
4357 };
4358 int i;
4359
4360 rtl_csi_access_enable_1(ioaddr);
4361
4362 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4363
4364 RTL_W8(MaxTxPacketSize, TxPacketMax);
4365
4366 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
4367 const struct ephy_info *e = e_info_8168d_4 + i;
4368 u16 w;
4369
4370 w = rtl_ephy_read(ioaddr, e->offset);
4371 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
4372 }
4373
4374 rtl_enable_clock_request(pdev);
4375}
4376
Hayes Wang70090422011-07-06 15:58:06 +08004377static void rtl_hw_start_8168e_1(void __iomem *ioaddr, struct pci_dev *pdev)
hayeswang01dc7fe2011-03-21 01:50:28 +00004378{
Hayes Wang70090422011-07-06 15:58:06 +08004379 static const struct ephy_info e_info_8168e_1[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00004380 { 0x00, 0x0200, 0x0100 },
4381 { 0x00, 0x0000, 0x0004 },
4382 { 0x06, 0x0002, 0x0001 },
4383 { 0x06, 0x0000, 0x0030 },
4384 { 0x07, 0x0000, 0x2000 },
4385 { 0x00, 0x0000, 0x0020 },
4386 { 0x03, 0x5800, 0x2000 },
4387 { 0x03, 0x0000, 0x0001 },
4388 { 0x01, 0x0800, 0x1000 },
4389 { 0x07, 0x0000, 0x4000 },
4390 { 0x1e, 0x0000, 0x2000 },
4391 { 0x19, 0xffff, 0xfe6c },
4392 { 0x0a, 0x0000, 0x0040 }
4393 };
4394
4395 rtl_csi_access_enable_2(ioaddr);
4396
Hayes Wang70090422011-07-06 15:58:06 +08004397 rtl_ephy_init(ioaddr, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
hayeswang01dc7fe2011-03-21 01:50:28 +00004398
4399 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4400
4401 RTL_W8(MaxTxPacketSize, TxPacketMax);
4402
4403 rtl_disable_clock_request(pdev);
4404
4405 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02004406 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
4407 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00004408
Francois Romieucecb5fd2011-04-01 10:21:07 +02004409 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00004410}
4411
Hayes Wang70090422011-07-06 15:58:06 +08004412static void rtl_hw_start_8168e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4413{
4414 static const struct ephy_info e_info_8168e_2[] = {
4415 { 0x09, 0x0000, 0x0080 },
4416 { 0x19, 0x0000, 0x0224 }
4417 };
4418
4419 rtl_csi_access_enable_1(ioaddr);
4420
4421 rtl_ephy_init(ioaddr, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
4422
4423 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4424
4425 rtl_eri_write(ioaddr, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4426 rtl_eri_write(ioaddr, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4427 rtl_eri_write(ioaddr, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
4428 rtl_eri_write(ioaddr, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
4429 rtl_eri_write(ioaddr, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
4430 rtl_eri_write(ioaddr, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
4431 rtl_w1w0_eri(ioaddr, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4432 rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00,
4433 ERIAR_EXGMAC);
4434
4435 RTL_W8(MaxTxPacketSize, 0x27);
4436
4437 rtl_disable_clock_request(pdev);
4438
4439 RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
4440 RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
4441
4442 /* Adjust EEE LED frequency */
4443 RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
4444
4445 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
4446 RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
4447 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
4448}
4449
Francois Romieu07ce4062007-02-23 23:36:39 +01004450static void rtl_hw_start_8168(struct net_device *dev)
4451{
Francois Romieu2dd99532007-06-11 23:22:52 +02004452 struct rtl8169_private *tp = netdev_priv(dev);
4453 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01004454 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02004455
4456 RTL_W8(Cfg9346, Cfg9346_Unlock);
4457
françois romieuf0298f82011-01-03 15:07:42 +00004458 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02004459
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004460 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02004461
Francois Romieu0e485152007-02-20 00:00:26 +01004462 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02004463
4464 RTL_W16(CPlusCmd, tp->cp_cmd);
4465
Francois Romieu0e485152007-02-20 00:00:26 +01004466 RTL_W16(IntrMitigate, 0x5151);
4467
4468 /* Work around for RxFIFO overflow. */
Ivan Vecerab5ba6d12011-01-27 12:24:11 +01004469 if (tp->mac_version == RTL_GIGA_MAC_VER_11 ||
4470 tp->mac_version == RTL_GIGA_MAC_VER_22) {
Francois Romieu0e485152007-02-20 00:00:26 +01004471 tp->intr_event |= RxFIFOOver | PCSTimeout;
4472 tp->intr_event &= ~RxOverflow;
4473 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004474
4475 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4476
Francois Romieub8363902008-06-01 12:31:57 +02004477 rtl_set_rx_mode(dev);
4478
4479 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4480 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02004481
4482 RTL_R8(IntrMask);
4483
Francois Romieu219a1e92008-06-28 11:58:39 +02004484 switch (tp->mac_version) {
4485 case RTL_GIGA_MAC_VER_11:
4486 rtl_hw_start_8168bb(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004487 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004488
4489 case RTL_GIGA_MAC_VER_12:
4490 case RTL_GIGA_MAC_VER_17:
4491 rtl_hw_start_8168bef(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004492 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004493
4494 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02004495 rtl_hw_start_8168cp_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004496 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004497
4498 case RTL_GIGA_MAC_VER_19:
4499 rtl_hw_start_8168c_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004500 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004501
4502 case RTL_GIGA_MAC_VER_20:
4503 rtl_hw_start_8168c_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004504 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004505
Francois Romieu197ff762008-06-28 13:16:02 +02004506 case RTL_GIGA_MAC_VER_21:
4507 rtl_hw_start_8168c_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004508 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004509
Francois Romieu6fb07052008-06-29 11:54:28 +02004510 case RTL_GIGA_MAC_VER_22:
4511 rtl_hw_start_8168c_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004512 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004513
Francois Romieuef3386f2008-06-29 12:24:30 +02004514 case RTL_GIGA_MAC_VER_23:
4515 rtl_hw_start_8168cp_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004516 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004517
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004518 case RTL_GIGA_MAC_VER_24:
4519 rtl_hw_start_8168cp_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004520 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004521
Francois Romieu5b538df2008-07-20 16:22:45 +02004522 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00004523 case RTL_GIGA_MAC_VER_26:
4524 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02004525 rtl_hw_start_8168d(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004526 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02004527
françois romieue6de30d2011-01-03 15:08:37 +00004528 case RTL_GIGA_MAC_VER_28:
4529 rtl_hw_start_8168d_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004530 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02004531
hayeswang4804b3b2011-03-21 01:50:29 +00004532 case RTL_GIGA_MAC_VER_31:
4533 rtl_hw_start_8168dp(ioaddr, pdev);
4534 break;
4535
hayeswang01dc7fe2011-03-21 01:50:28 +00004536 case RTL_GIGA_MAC_VER_32:
4537 case RTL_GIGA_MAC_VER_33:
Hayes Wang70090422011-07-06 15:58:06 +08004538 rtl_hw_start_8168e_1(ioaddr, pdev);
4539 break;
4540 case RTL_GIGA_MAC_VER_34:
4541 rtl_hw_start_8168e_2(ioaddr, pdev);
hayeswang01dc7fe2011-03-21 01:50:28 +00004542 break;
françois romieue6de30d2011-01-03 15:08:37 +00004543
Francois Romieu219a1e92008-06-28 11:58:39 +02004544 default:
4545 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
4546 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00004547 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004548 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004549
Francois Romieu0e485152007-02-20 00:00:26 +01004550 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4551
Francois Romieub8363902008-06-01 12:31:57 +02004552 RTL_W8(Cfg9346, Cfg9346_Lock);
4553
Francois Romieu2dd99532007-06-11 23:22:52 +02004554 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01004555
Francois Romieu0e485152007-02-20 00:00:26 +01004556 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01004557}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558
Francois Romieu2857ffb2008-08-02 21:08:49 +02004559#define R810X_CPCMD_QUIRK_MASK (\
4560 EnableBist | \
4561 Mac_dbgo_oe | \
4562 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00004563 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02004564 Force_txflow_en | \
4565 Cxpl_dbg_sel | \
4566 ASF | \
4567 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004568 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02004569
4570static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
4571{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004572 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02004573 { 0x01, 0, 0x6e65 },
4574 { 0x02, 0, 0x091f },
4575 { 0x03, 0, 0xc2f9 },
4576 { 0x06, 0, 0xafb5 },
4577 { 0x07, 0, 0x0e00 },
4578 { 0x19, 0, 0xec80 },
4579 { 0x01, 0, 0x2e65 },
4580 { 0x01, 0, 0x6e65 }
4581 };
4582 u8 cfg1;
4583
françois romieu650e8d52011-01-03 15:08:29 +00004584 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004585
4586 RTL_W8(DBG_REG, FIX_NAK_1);
4587
4588 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4589
4590 RTL_W8(Config1,
4591 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
4592 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4593
4594 cfg1 = RTL_R8(Config1);
4595 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
4596 RTL_W8(Config1, cfg1 & ~LEDS0);
4597
Francois Romieu2857ffb2008-08-02 21:08:49 +02004598 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
4599}
4600
4601static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4602{
françois romieu650e8d52011-01-03 15:08:29 +00004603 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004604
4605 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4606
4607 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
4608 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004609}
4610
4611static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
4612{
4613 rtl_hw_start_8102e_2(ioaddr, pdev);
4614
4615 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
4616}
4617
Hayes Wang5a5e4442011-02-22 17:26:21 +08004618static void rtl_hw_start_8105e_1(void __iomem *ioaddr, struct pci_dev *pdev)
4619{
4620 static const struct ephy_info e_info_8105e_1[] = {
4621 { 0x07, 0, 0x4000 },
4622 { 0x19, 0, 0x0200 },
4623 { 0x19, 0, 0x0020 },
4624 { 0x1e, 0, 0x2000 },
4625 { 0x03, 0, 0x0001 },
4626 { 0x19, 0, 0x0100 },
4627 { 0x19, 0, 0x0004 },
4628 { 0x0a, 0, 0x0020 }
4629 };
4630
Francois Romieucecb5fd2011-04-01 10:21:07 +02004631 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08004632 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
4633
Francois Romieucecb5fd2011-04-01 10:21:07 +02004634 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08004635 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
4636
4637 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e2011-07-06 15:58:02 +08004638 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004639
4640 rtl_ephy_init(ioaddr, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
4641}
4642
4643static void rtl_hw_start_8105e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4644{
4645 rtl_hw_start_8105e_1(ioaddr, pdev);
4646 rtl_ephy_write(ioaddr, 0x1e, rtl_ephy_read(ioaddr, 0x1e) | 0x8000);
4647}
4648
Francois Romieu07ce4062007-02-23 23:36:39 +01004649static void rtl_hw_start_8101(struct net_device *dev)
4650{
Francois Romieucdf1a602007-06-11 23:29:50 +02004651 struct rtl8169_private *tp = netdev_priv(dev);
4652 void __iomem *ioaddr = tp->mmio_addr;
4653 struct pci_dev *pdev = tp->pci_dev;
4654
Francois Romieucecb5fd2011-04-01 10:21:07 +02004655 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
4656 tp->mac_version == RTL_GIGA_MAC_VER_16) {
Jon Masone44daad2011-06-27 07:46:31 +00004657 int cap = pci_pcie_cap(pdev);
Francois Romieu9c14cea2008-07-05 00:21:15 +02004658
4659 if (cap) {
4660 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
4661 PCI_EXP_DEVCTL_NOSNOOP_EN);
4662 }
Francois Romieucdf1a602007-06-11 23:29:50 +02004663 }
4664
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004665 RTL_W8(Cfg9346, Cfg9346_Unlock);
4666
Francois Romieu2857ffb2008-08-02 21:08:49 +02004667 switch (tp->mac_version) {
4668 case RTL_GIGA_MAC_VER_07:
4669 rtl_hw_start_8102e_1(ioaddr, pdev);
4670 break;
4671
4672 case RTL_GIGA_MAC_VER_08:
4673 rtl_hw_start_8102e_3(ioaddr, pdev);
4674 break;
4675
4676 case RTL_GIGA_MAC_VER_09:
4677 rtl_hw_start_8102e_2(ioaddr, pdev);
4678 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004679
4680 case RTL_GIGA_MAC_VER_29:
4681 rtl_hw_start_8105e_1(ioaddr, pdev);
4682 break;
4683 case RTL_GIGA_MAC_VER_30:
4684 rtl_hw_start_8105e_2(ioaddr, pdev);
4685 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02004686 }
4687
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004688 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02004689
françois romieuf0298f82011-01-03 15:07:42 +00004690 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02004691
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004692 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02004693
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004694 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
Francois Romieucdf1a602007-06-11 23:29:50 +02004695 RTL_W16(CPlusCmd, tp->cp_cmd);
4696
4697 RTL_W16(IntrMitigate, 0x0000);
4698
4699 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4700
4701 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4702 rtl_set_rx_tx_config_registers(tp);
4703
Francois Romieucdf1a602007-06-11 23:29:50 +02004704 RTL_R8(IntrMask);
4705
Francois Romieucdf1a602007-06-11 23:29:50 +02004706 rtl_set_rx_mode(dev);
4707
4708 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01004709
Francois Romieu0e485152007-02-20 00:00:26 +01004710 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711}
4712
4713static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
4714{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
4716 return -EINVAL;
4717
4718 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00004719 netdev_update_features(dev);
4720
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722}
4723
4724static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
4725{
Al Viro95e09182007-12-22 18:55:39 +00004726 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
4728}
4729
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004730static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
4731 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004733 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004734 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004735
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004736 kfree(*data_buff);
4737 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 rtl8169_make_unusable_by_asic(desc);
4739}
4740
4741static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
4742{
4743 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
4744
4745 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
4746}
4747
4748static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
4749 u32 rx_buf_sz)
4750{
4751 desc->addr = cpu_to_le64(mapping);
4752 wmb();
4753 rtl8169_mark_to_asic(desc, rx_buf_sz);
4754}
4755
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004756static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004758 return (void *)ALIGN((long)data, 16);
4759}
4760
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004761static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
4762 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004763{
4764 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004766 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004767 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004768 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004770 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
4771 if (!data)
4772 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01004773
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004774 if (rtl8169_align(data) != data) {
4775 kfree(data);
4776 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
4777 if (!data)
4778 return NULL;
4779 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004780
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004781 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004782 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004783 if (unlikely(dma_mapping_error(d, mapping))) {
4784 if (net_ratelimit())
4785 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004786 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
4789 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004790 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004791
4792err_out:
4793 kfree(data);
4794 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795}
4796
4797static void rtl8169_rx_clear(struct rtl8169_private *tp)
4798{
Francois Romieu07d3f512007-02-21 22:40:46 +01004799 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
4801 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004802 if (tp->Rx_databuff[i]) {
4803 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 tp->RxDescArray + i);
4805 }
4806 }
4807}
4808
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004809static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004811 desc->opts1 |= cpu_to_le32(RingEnd);
4812}
Francois Romieu5b0384f2006-08-16 16:00:01 +02004813
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004814static int rtl8169_rx_fill(struct rtl8169_private *tp)
4815{
4816 unsigned int i;
4817
4818 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004819 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02004820
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004821 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004823
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004824 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004825 if (!data) {
4826 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004827 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004828 }
4829 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004832 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
4833 return 0;
4834
4835err_out:
4836 rtl8169_rx_clear(tp);
4837 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838}
4839
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840static int rtl8169_init_ring(struct net_device *dev)
4841{
4842 struct rtl8169_private *tp = netdev_priv(dev);
4843
4844 rtl8169_init_ring_indexes(tp);
4845
4846 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004847 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004849 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850}
4851
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004852static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 struct TxDesc *desc)
4854{
4855 unsigned int len = tx_skb->len;
4856
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004857 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
4858
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 desc->opts1 = 0x00;
4860 desc->opts2 = 0x00;
4861 desc->addr = 0x00;
4862 tx_skb->len = 0;
4863}
4864
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004865static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
4866 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867{
4868 unsigned int i;
4869
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004870 for (i = 0; i < n; i++) {
4871 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 struct ring_info *tx_skb = tp->tx_skb + entry;
4873 unsigned int len = tx_skb->len;
4874
4875 if (len) {
4876 struct sk_buff *skb = tx_skb->skb;
4877
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004878 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 tp->TxDescArray + entry);
4880 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004881 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 dev_kfree_skb(skb);
4883 tx_skb->skb = NULL;
4884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885 }
4886 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004887}
4888
4889static void rtl8169_tx_clear(struct rtl8169_private *tp)
4890{
4891 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 tp->cur_tx = tp->dirty_tx = 0;
4893}
4894
David Howellsc4028952006-11-22 14:57:56 +00004895static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896{
4897 struct rtl8169_private *tp = netdev_priv(dev);
4898
David Howellsc4028952006-11-22 14:57:56 +00004899 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 schedule_delayed_work(&tp->task, 4);
4901}
4902
4903static void rtl8169_wait_for_quiescence(struct net_device *dev)
4904{
4905 struct rtl8169_private *tp = netdev_priv(dev);
4906 void __iomem *ioaddr = tp->mmio_addr;
4907
4908 synchronize_irq(dev->irq);
4909
4910 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004911 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912
4913 rtl8169_irq_mask_and_ack(ioaddr);
4914
David S. Millerd1d08d12008-01-07 20:53:33 -08004915 tp->intr_mask = 0xffff;
4916 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004917 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918}
4919
David Howellsc4028952006-11-22 14:57:56 +00004920static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921{
David Howellsc4028952006-11-22 14:57:56 +00004922 struct rtl8169_private *tp =
4923 container_of(work, struct rtl8169_private, task.work);
4924 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 int ret;
4926
Francois Romieueb2a0212007-02-15 23:37:21 +01004927 rtnl_lock();
4928
4929 if (!netif_running(dev))
4930 goto out_unlock;
4931
4932 rtl8169_wait_for_quiescence(dev);
4933 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934
4935 ret = rtl8169_open(dev);
4936 if (unlikely(ret < 0)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004937 if (net_ratelimit())
4938 netif_err(tp, drv, dev,
4939 "reinit failure (status = %d). Rescheduling\n",
4940 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941 rtl8169_schedule_work(dev, rtl8169_reinit_task);
4942 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004943
4944out_unlock:
4945 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946}
4947
David Howellsc4028952006-11-22 14:57:56 +00004948static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949{
David Howellsc4028952006-11-22 14:57:56 +00004950 struct rtl8169_private *tp =
4951 container_of(work, struct rtl8169_private, task.work);
4952 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01004953 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954
Francois Romieueb2a0212007-02-15 23:37:21 +01004955 rtnl_lock();
4956
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01004958 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959
4960 rtl8169_wait_for_quiescence(dev);
4961
Francois Romieu56de4142011-03-15 17:29:31 +01004962 for (i = 0; i < NUM_RX_DESC; i++)
4963 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
4964
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965 rtl8169_tx_clear(tp);
4966
Hayes Wang92fc43b2011-07-06 15:58:03 +08004967 rtl8169_hw_reset(tp);
Francois Romieu56de4142011-03-15 17:29:31 +01004968 rtl_hw_start(dev);
4969 netif_wake_queue(dev);
4970 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Francois Romieueb2a0212007-02-15 23:37:21 +01004971
4972out_unlock:
4973 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974}
4975
4976static void rtl8169_tx_timeout(struct net_device *dev)
4977{
4978 struct rtl8169_private *tp = netdev_priv(dev);
4979
françois romieue6de30d2011-01-03 15:08:37 +00004980 rtl8169_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981
4982 /* Let's wait a bit while any (async) irq lands on */
4983 rtl8169_schedule_work(dev, rtl8169_reset_task);
4984}
4985
4986static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07004987 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988{
4989 struct skb_shared_info *info = skb_shinfo(skb);
4990 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04004991 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004992 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993
4994 entry = tp->cur_tx;
4995 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
4996 skb_frag_t *frag = info->frags + cur_frag;
4997 dma_addr_t mapping;
4998 u32 status, len;
4999 void *addr;
5000
5001 entry = (entry + 1) % NUM_TX_DESC;
5002
5003 txd = tp->TxDescArray + entry;
5004 len = frag->size;
5005 addr = ((void *) page_address(frag->page)) + frag->page_offset;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005006 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005007 if (unlikely(dma_mapping_error(d, mapping))) {
5008 if (net_ratelimit())
5009 netif_err(tp, drv, tp->dev,
5010 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005011 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013
Francois Romieucecb5fd2011-04-01 10:21:07 +02005014 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005015 status = opts[0] | len |
5016 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017
5018 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07005019 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 txd->addr = cpu_to_le64(mapping);
5021
5022 tp->tx_skb[entry].len = len;
5023 }
5024
5025 if (cur_frag) {
5026 tp->tx_skb[entry].skb = skb;
5027 txd->opts1 |= cpu_to_le32(LastFrag);
5028 }
5029
5030 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005031
5032err_out:
5033 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
5034 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035}
5036
Francois Romieu2b7b4312011-04-18 22:53:24 -07005037static inline void rtl8169_tso_csum(struct rtl8169_private *tp,
5038 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039{
Francois Romieu2b7b4312011-04-18 22:53:24 -07005040 const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
Michał Mirosław350fb322011-04-08 06:35:56 +00005041 u32 mss = skb_shinfo(skb)->gso_size;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005042 int offset = info->opts_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043
Francois Romieu2b7b4312011-04-18 22:53:24 -07005044 if (mss) {
5045 opts[0] |= TD_LSO;
5046 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
5047 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005048 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049
5050 if (ip->protocol == IPPROTO_TCP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005051 opts[offset] |= info->checksum.tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052 else if (ip->protocol == IPPROTO_UDP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005053 opts[offset] |= info->checksum.udp;
5054 else
5055 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057}
5058
Stephen Hemminger613573252009-08-31 19:50:58 +00005059static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
5060 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061{
5062 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005063 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 struct TxDesc *txd = tp->TxDescArray + entry;
5065 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005066 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067 dma_addr_t mapping;
5068 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07005069 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005070 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02005071
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005073 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005074 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 }
5076
5077 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005078 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005080 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005081 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005082 if (unlikely(dma_mapping_error(d, mapping))) {
5083 if (net_ratelimit())
5084 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005085 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00005086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087
5088 tp->tx_skb[entry].len = len;
5089 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090
Francois Romieu2b7b4312011-04-18 22:53:24 -07005091 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
5092 opts[0] = DescOwn;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005093
Francois Romieu2b7b4312011-04-18 22:53:24 -07005094 rtl8169_tso_csum(tp, skb, opts);
5095
5096 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005097 if (frags < 0)
5098 goto err_dma_1;
5099 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07005100 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005101 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07005102 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005103 tp->tx_skb[entry].skb = skb;
5104 }
5105
Francois Romieu2b7b4312011-04-18 22:53:24 -07005106 txd->opts2 = cpu_to_le32(opts[1]);
5107
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108 wmb();
5109
Francois Romieucecb5fd2011-04-01 10:21:07 +02005110 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07005111 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 txd->opts1 = cpu_to_le32(status);
5113
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 tp->cur_tx += frags + 1;
5115
David Dillow4c020a92010-03-03 16:33:10 +00005116 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117
Francois Romieucecb5fd2011-04-01 10:21:07 +02005118 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119
5120 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
5121 netif_stop_queue(dev);
5122 smp_rmb();
5123 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
5124 netif_wake_queue(dev);
5125 }
5126
Stephen Hemminger613573252009-08-31 19:50:58 +00005127 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005129err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005130 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00005131err_dma_0:
5132 dev_kfree_skb(skb);
5133 dev->stats.tx_dropped++;
5134 return NETDEV_TX_OK;
5135
5136err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005138 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00005139 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140}
5141
5142static void rtl8169_pcierr_interrupt(struct net_device *dev)
5143{
5144 struct rtl8169_private *tp = netdev_priv(dev);
5145 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 u16 pci_status, pci_cmd;
5147
5148 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
5149 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
5150
Joe Perchesbf82c182010-02-09 11:49:50 +00005151 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
5152 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153
5154 /*
5155 * The recovery sequence below admits a very elaborated explanation:
5156 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01005157 * - I did not see what else could be done;
5158 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 *
5160 * Feel free to adjust to your needs.
5161 */
Francois Romieua27993f2006-12-18 00:04:19 +01005162 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01005163 pci_cmd &= ~PCI_COMMAND_PARITY;
5164 else
5165 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
5166
5167 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168
5169 pci_write_config_word(pdev, PCI_STATUS,
5170 pci_status & (PCI_STATUS_DETECTED_PARITY |
5171 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
5172 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
5173
5174 /* The infamous DAC f*ckup only happens at boot time */
5175 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00005176 void __iomem *ioaddr = tp->mmio_addr;
5177
Joe Perchesbf82c182010-02-09 11:49:50 +00005178 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179 tp->cp_cmd &= ~PCIDAC;
5180 RTL_W16(CPlusCmd, tp->cp_cmd);
5181 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182 }
5183
françois romieue6de30d2011-01-03 15:08:37 +00005184 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01005185
5186 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187}
5188
Francois Romieu07d3f512007-02-21 22:40:46 +01005189static void rtl8169_tx_interrupt(struct net_device *dev,
5190 struct rtl8169_private *tp,
5191 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192{
5193 unsigned int dirty_tx, tx_left;
5194
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 dirty_tx = tp->dirty_tx;
5196 smp_rmb();
5197 tx_left = tp->cur_tx - dirty_tx;
5198
5199 while (tx_left > 0) {
5200 unsigned int entry = dirty_tx % NUM_TX_DESC;
5201 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202 u32 status;
5203
5204 rmb();
5205 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
5206 if (status & DescOwn)
5207 break;
5208
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005209 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
5210 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 if (status & LastFrag) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00005212 dev->stats.tx_packets++;
5213 dev->stats.tx_bytes += tx_skb->skb->len;
Eric Dumazet87433bf2009-06-09 22:55:53 +00005214 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215 tx_skb->skb = NULL;
5216 }
5217 dirty_tx++;
5218 tx_left--;
5219 }
5220
5221 if (tp->dirty_tx != dirty_tx) {
5222 tp->dirty_tx = dirty_tx;
5223 smp_wmb();
5224 if (netif_queue_stopped(dev) &&
5225 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
5226 netif_wake_queue(dev);
5227 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02005228 /*
5229 * 8168 hack: TxPoll requests are lost when the Tx packets are
5230 * too close. Let's kick an extra TxPoll request when a burst
5231 * of start_xmit activity is detected (if it is not detected,
5232 * it is slow enough). -- FR
5233 */
5234 smp_rmb();
5235 if (tp->cur_tx != dirty_tx)
5236 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237 }
5238}
5239
Francois Romieu126fa4b2005-05-12 20:09:17 -04005240static inline int rtl8169_fragmented_frame(u32 status)
5241{
5242 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
5243}
5244
Eric Dumazetadea1ac72010-09-05 20:04:05 -07005245static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247 u32 status = opts1 & RxProtoMask;
5248
5249 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00005250 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251 skb->ip_summed = CHECKSUM_UNNECESSARY;
5252 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005253 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254}
5255
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005256static struct sk_buff *rtl8169_try_rx_copy(void *data,
5257 struct rtl8169_private *tp,
5258 int pkt_size,
5259 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02005261 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005262 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005264 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005265 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005266 prefetch(data);
5267 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
5268 if (skb)
5269 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005270 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
5271
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005272 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273}
5274
Francois Romieu07d3f512007-02-21 22:40:46 +01005275static int rtl8169_rx_interrupt(struct net_device *dev,
5276 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005277 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278{
5279 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005280 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282 cur_rx = tp->cur_rx;
5283 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02005284 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005286 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04005288 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 u32 status;
5290
5291 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04005292 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293
5294 if (status & DescOwn)
5295 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005296 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005297 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
5298 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005299 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02005301 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02005303 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02005304 if (status & RxFOVF) {
5305 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005306 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02005307 }
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005308 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005310 struct sk_buff *skb;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02005311 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 int pkt_size = (status & 0x00001FFF) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313
Francois Romieu126fa4b2005-05-12 20:09:17 -04005314 /*
5315 * The driver does not support incoming fragmented
5316 * frames. They are seen as a symptom of over-mtu
5317 * sized frames.
5318 */
5319 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02005320 dev->stats.rx_dropped++;
5321 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005322 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005323 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04005324 }
5325
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005326 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
5327 tp, pkt_size, addr);
5328 rtl8169_mark_to_asic(desc, rx_buf_sz);
5329 if (!skb) {
5330 dev->stats.rx_dropped++;
5331 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332 }
5333
Eric Dumazetadea1ac72010-09-05 20:04:05 -07005334 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335 skb_put(skb, pkt_size);
5336 skb->protocol = eth_type_trans(skb, dev);
5337
Francois Romieu7a8fc772011-03-01 17:18:33 +01005338 rtl8169_rx_vlan_tag(desc, skb);
5339
Francois Romieu56de4142011-03-15 17:29:31 +01005340 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341
Francois Romieucebf8cc2007-10-18 12:06:54 +02005342 dev->stats.rx_bytes += pkt_size;
5343 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 }
Francois Romieu6dccd162007-02-13 23:38:05 +01005345
5346 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00005347 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01005348 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
5349 desc->opts2 = 0;
5350 cur_rx++;
5351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352 }
5353
5354 count = cur_rx - tp->cur_rx;
5355 tp->cur_rx = cur_rx;
5356
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005357 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358
5359 return count;
5360}
5361
Francois Romieu07d3f512007-02-21 22:40:46 +01005362static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363{
Francois Romieu07d3f512007-02-21 22:40:46 +01005364 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02005368 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369
David Dillowf11a3772009-05-22 15:29:34 +00005370 /* loop handling interrupts until we have no new ones or
5371 * we hit a invalid/hotplug case.
5372 */
Francois Romieu865c6522008-05-11 14:51:00 +02005373 status = RTL_R16(IntrStatus);
David Dillowf11a3772009-05-22 15:29:34 +00005374 while (status && status != 0xffff) {
5375 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376
David Dillowf11a3772009-05-22 15:29:34 +00005377 /* Handle all of the error cases first. These will reset
5378 * the chip, so just exit the loop.
5379 */
5380 if (unlikely(!netif_running(dev))) {
Hayes Wang92fc43b2011-07-06 15:58:03 +08005381 rtl8169_hw_reset(tp);
David Dillowf11a3772009-05-22 15:29:34 +00005382 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 }
David Dillowf11a3772009-05-22 15:29:34 +00005384
Francois Romieu1519e572011-02-03 12:02:36 +01005385 if (unlikely(status & RxFIFOOver)) {
5386 switch (tp->mac_version) {
5387 /* Work around for rx fifo overflow */
5388 case RTL_GIGA_MAC_VER_11:
5389 case RTL_GIGA_MAC_VER_22:
5390 case RTL_GIGA_MAC_VER_26:
5391 netif_stop_queue(dev);
5392 rtl8169_tx_timeout(dev);
5393 goto done;
Francois Romieuf60ac8e2011-02-03 17:27:52 +01005394 /* Testers needed. */
5395 case RTL_GIGA_MAC_VER_17:
5396 case RTL_GIGA_MAC_VER_19:
5397 case RTL_GIGA_MAC_VER_20:
5398 case RTL_GIGA_MAC_VER_21:
5399 case RTL_GIGA_MAC_VER_23:
5400 case RTL_GIGA_MAC_VER_24:
5401 case RTL_GIGA_MAC_VER_27:
5402 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00005403 case RTL_GIGA_MAC_VER_31:
Francois Romieu1519e572011-02-03 12:02:36 +01005404 /* Experimental science. Pktgen proof. */
5405 case RTL_GIGA_MAC_VER_12:
5406 case RTL_GIGA_MAC_VER_25:
5407 if (status == RxFIFOOver)
5408 goto done;
5409 break;
5410 default:
5411 break;
5412 }
David Dillowf11a3772009-05-22 15:29:34 +00005413 }
5414
5415 if (unlikely(status & SYSErr)) {
5416 rtl8169_pcierr_interrupt(dev);
5417 break;
5418 }
5419
5420 if (status & LinkChg)
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00005421 __rtl8169_check_link_status(dev, tp, ioaddr, true);
David Dillowf11a3772009-05-22 15:29:34 +00005422
5423 /* We need to see the lastest version of tp->intr_mask to
5424 * avoid ignoring an MSI interrupt and having to wait for
5425 * another event which may never come.
5426 */
5427 smp_rmb();
5428 if (status & tp->intr_mask & tp->napi_event) {
5429 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
5430 tp->intr_mask = ~tp->napi_event;
5431
5432 if (likely(napi_schedule_prep(&tp->napi)))
5433 __napi_schedule(&tp->napi);
Joe Perchesbf82c182010-02-09 11:49:50 +00005434 else
5435 netif_info(tp, intr, dev,
5436 "interrupt %04x in poll\n", status);
David Dillowf11a3772009-05-22 15:29:34 +00005437 }
5438
5439 /* We only get a new MSI interrupt when all active irq
5440 * sources on the chip have been acknowledged. So, ack
5441 * everything we've seen and check if new sources have become
5442 * active to avoid blocking all interrupts from the chip.
5443 */
5444 RTL_W16(IntrStatus,
5445 (status & RxFIFOOver) ? (status | RxOverflow) : status);
5446 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447 }
Francois Romieu1519e572011-02-03 12:02:36 +01005448done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449 return IRQ_RETVAL(handled);
5450}
5451
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005452static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005454 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
5455 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005457 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005459 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 rtl8169_tx_interrupt(dev, tp, ioaddr);
5461
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005462 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005463 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00005464
5465 /* We need for force the visibility of tp->intr_mask
5466 * for other CPUs, as we can loose an MSI interrupt
5467 * and potentially wait for a retransmit timeout if we don't.
5468 * The posted write to IntrMask is safe, as it will
5469 * eventually make it to the chip and we won't loose anything
5470 * until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471 */
David Dillowf11a3772009-05-22 15:29:34 +00005472 tp->intr_mask = 0xffff;
David Dillow4c020a92010-03-03 16:33:10 +00005473 wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01005474 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475 }
5476
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005477 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479
Francois Romieu523a6092008-09-10 22:28:56 +02005480static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
5481{
5482 struct rtl8169_private *tp = netdev_priv(dev);
5483
5484 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
5485 return;
5486
5487 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
5488 RTL_W32(RxMissed, 0);
5489}
5490
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491static void rtl8169_down(struct net_device *dev)
5492{
5493 struct rtl8169_private *tp = netdev_priv(dev);
5494 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495
Francois Romieu4876cc12011-03-11 21:07:11 +01005496 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497
5498 netif_stop_queue(dev);
5499
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01005500 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01005501
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502 spin_lock_irq(&tp->lock);
5503
Hayes Wang92fc43b2011-07-06 15:58:03 +08005504 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005505 /*
5506 * At this point device interrupts can not be enabled in any function,
5507 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
5508 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
5509 */
Francois Romieu523a6092008-09-10 22:28:56 +02005510 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
5512 spin_unlock_irq(&tp->lock);
5513
5514 synchronize_irq(dev->irq);
5515
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07005517 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519 rtl8169_tx_clear(tp);
5520
5521 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00005522
5523 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524}
5525
5526static int rtl8169_close(struct net_device *dev)
5527{
5528 struct rtl8169_private *tp = netdev_priv(dev);
5529 struct pci_dev *pdev = tp->pci_dev;
5530
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005531 pm_runtime_get_sync(&pdev->dev);
5532
Francois Romieucecb5fd2011-04-01 10:21:07 +02005533 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08005534 rtl8169_update_counters(dev);
5535
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536 rtl8169_down(dev);
5537
5538 free_irq(dev->irq, dev);
5539
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00005540 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
5541 tp->RxPhyAddr);
5542 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
5543 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544 tp->TxDescArray = NULL;
5545 tp->RxDescArray = NULL;
5546
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005547 pm_runtime_put_sync(&pdev->dev);
5548
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549 return 0;
5550}
5551
Francois Romieu07ce4062007-02-23 23:36:39 +01005552static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553{
5554 struct rtl8169_private *tp = netdev_priv(dev);
5555 void __iomem *ioaddr = tp->mmio_addr;
5556 unsigned long flags;
5557 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01005558 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559 u32 tmp = 0;
5560
5561 if (dev->flags & IFF_PROMISC) {
5562 /* Unconditionally log net taps. */
Joe Perchesbf82c182010-02-09 11:49:50 +00005563 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564 rx_mode =
5565 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
5566 AcceptAllPhys;
5567 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00005568 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00005569 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570 /* Too many to filter perfectly -- accept all multicasts. */
5571 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
5572 mc_filter[1] = mc_filter[0] = 0xffffffff;
5573 } else {
Jiri Pirko22bedad2010-04-01 21:22:57 +00005574 struct netdev_hw_addr *ha;
Francois Romieu07d3f512007-02-21 22:40:46 +01005575
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576 rx_mode = AcceptBroadcast | AcceptMyPhys;
5577 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00005578 netdev_for_each_mc_addr(ha, dev) {
5579 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
5581 rx_mode |= AcceptMulticast;
5582 }
5583 }
5584
5585 spin_lock_irqsave(&tp->lock, flags);
5586
Francois Romieu1687b562011-07-19 17:21:29 +02005587 tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588
Francois Romieuf887cce2008-07-17 22:24:18 +02005589 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01005590 u32 data = mc_filter[0];
5591
5592 mc_filter[0] = swab32(mc_filter[1]);
5593 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02005594 }
5595
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596 RTL_W32(MAR0 + 4, mc_filter[1]);
Francois Romieu78f1cd02010-03-27 19:35:46 -07005597 RTL_W32(MAR0 + 0, mc_filter[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598
Francois Romieu57a9f232007-06-04 22:10:15 +02005599 RTL_W32(RxConfig, tmp);
5600
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 spin_unlock_irqrestore(&tp->lock, flags);
5602}
5603
5604/**
5605 * rtl8169_get_stats - Get rtl8169 read/write statistics
5606 * @dev: The Ethernet Device to get statistics for
5607 *
5608 * Get TX/RX statistics for rtl8169
5609 */
5610static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
5611{
5612 struct rtl8169_private *tp = netdev_priv(dev);
5613 void __iomem *ioaddr = tp->mmio_addr;
5614 unsigned long flags;
5615
5616 if (netif_running(dev)) {
5617 spin_lock_irqsave(&tp->lock, flags);
Francois Romieu523a6092008-09-10 22:28:56 +02005618 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619 spin_unlock_irqrestore(&tp->lock, flags);
5620 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02005621
Francois Romieucebf8cc2007-10-18 12:06:54 +02005622 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623}
5624
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005625static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01005626{
françois romieu065c27c2011-01-03 15:08:12 +00005627 struct rtl8169_private *tp = netdev_priv(dev);
5628
Francois Romieu5d06a992006-02-23 00:47:58 +01005629 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005630 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01005631
françois romieu065c27c2011-01-03 15:08:12 +00005632 rtl_pll_power_down(tp);
5633
Francois Romieu5d06a992006-02-23 00:47:58 +01005634 netif_device_detach(dev);
5635 netif_stop_queue(dev);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005636}
Francois Romieu5d06a992006-02-23 00:47:58 +01005637
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005638#ifdef CONFIG_PM
5639
5640static int rtl8169_suspend(struct device *device)
5641{
5642 struct pci_dev *pdev = to_pci_dev(device);
5643 struct net_device *dev = pci_get_drvdata(pdev);
5644
5645 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02005646
Francois Romieu5d06a992006-02-23 00:47:58 +01005647 return 0;
5648}
5649
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005650static void __rtl8169_resume(struct net_device *dev)
5651{
françois romieu065c27c2011-01-03 15:08:12 +00005652 struct rtl8169_private *tp = netdev_priv(dev);
5653
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005654 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00005655
5656 rtl_pll_power_up(tp);
5657
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005658 rtl8169_schedule_work(dev, rtl8169_reset_task);
5659}
5660
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005661static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01005662{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005663 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01005664 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005665 struct rtl8169_private *tp = netdev_priv(dev);
5666
5667 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01005668
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005669 if (netif_running(dev))
5670 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01005671
Francois Romieu5d06a992006-02-23 00:47:58 +01005672 return 0;
5673}
5674
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005675static int rtl8169_runtime_suspend(struct device *device)
5676{
5677 struct pci_dev *pdev = to_pci_dev(device);
5678 struct net_device *dev = pci_get_drvdata(pdev);
5679 struct rtl8169_private *tp = netdev_priv(dev);
5680
5681 if (!tp->TxDescArray)
5682 return 0;
5683
5684 spin_lock_irq(&tp->lock);
5685 tp->saved_wolopts = __rtl8169_get_wol(tp);
5686 __rtl8169_set_wol(tp, WAKE_ANY);
5687 spin_unlock_irq(&tp->lock);
5688
5689 rtl8169_net_suspend(dev);
5690
5691 return 0;
5692}
5693
5694static int rtl8169_runtime_resume(struct device *device)
5695{
5696 struct pci_dev *pdev = to_pci_dev(device);
5697 struct net_device *dev = pci_get_drvdata(pdev);
5698 struct rtl8169_private *tp = netdev_priv(dev);
5699
5700 if (!tp->TxDescArray)
5701 return 0;
5702
5703 spin_lock_irq(&tp->lock);
5704 __rtl8169_set_wol(tp, tp->saved_wolopts);
5705 tp->saved_wolopts = 0;
5706 spin_unlock_irq(&tp->lock);
5707
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005708 rtl8169_init_phy(dev, tp);
5709
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005710 __rtl8169_resume(dev);
5711
5712 return 0;
5713}
5714
5715static int rtl8169_runtime_idle(struct device *device)
5716{
5717 struct pci_dev *pdev = to_pci_dev(device);
5718 struct net_device *dev = pci_get_drvdata(pdev);
5719 struct rtl8169_private *tp = netdev_priv(dev);
5720
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00005721 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005722}
5723
Alexey Dobriyan47145212009-12-14 18:00:08 -08005724static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02005725 .suspend = rtl8169_suspend,
5726 .resume = rtl8169_resume,
5727 .freeze = rtl8169_suspend,
5728 .thaw = rtl8169_resume,
5729 .poweroff = rtl8169_suspend,
5730 .restore = rtl8169_resume,
5731 .runtime_suspend = rtl8169_runtime_suspend,
5732 .runtime_resume = rtl8169_runtime_resume,
5733 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005734};
5735
5736#define RTL8169_PM_OPS (&rtl8169_pm_ops)
5737
5738#else /* !CONFIG_PM */
5739
5740#define RTL8169_PM_OPS NULL
5741
5742#endif /* !CONFIG_PM */
5743
Francois Romieu1765f952008-09-13 17:21:40 +02005744static void rtl_shutdown(struct pci_dev *pdev)
5745{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005746 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00005747 struct rtl8169_private *tp = netdev_priv(dev);
5748 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu1765f952008-09-13 17:21:40 +02005749
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005750 rtl8169_net_suspend(dev);
5751
Francois Romieucecb5fd2011-04-01 10:21:07 +02005752 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08005753 rtl_rar_set(tp, dev->perm_addr);
5754
françois romieu4bb3f522009-06-17 11:41:45 +00005755 spin_lock_irq(&tp->lock);
5756
Hayes Wang92fc43b2011-07-06 15:58:03 +08005757 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00005758
5759 spin_unlock_irq(&tp->lock);
5760
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005761 if (system_state == SYSTEM_POWER_OFF) {
Hayes Wangaaa89c02011-07-06 15:58:08 +08005762 /* WoL fails with 8168b when the receiver is disabled. */
5763 if ((tp->mac_version == RTL_GIGA_MAC_VER_11 ||
5764 tp->mac_version == RTL_GIGA_MAC_VER_12 ||
5765 tp->mac_version == RTL_GIGA_MAC_VER_17) &&
5766 (tp->features & RTL_FEATURE_WOL)) {
françois romieuca52efd2009-07-24 12:34:19 +00005767 pci_clear_master(pdev);
5768
5769 RTL_W8(ChipCmd, CmdRxEnb);
5770 /* PCI commit */
5771 RTL_R8(ChipCmd);
5772 }
5773
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005774 pci_wake_from_d3(pdev, true);
5775 pci_set_power_state(pdev, PCI_D3hot);
5776 }
5777}
Francois Romieu5d06a992006-02-23 00:47:58 +01005778
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779static struct pci_driver rtl8169_pci_driver = {
5780 .name = MODULENAME,
5781 .id_table = rtl8169_pci_tbl,
5782 .probe = rtl8169_init_one,
5783 .remove = __devexit_p(rtl8169_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02005784 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005785 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786};
5787
Francois Romieu07d3f512007-02-21 22:40:46 +01005788static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789{
Jeff Garzik29917622006-08-19 17:48:59 -04005790 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791}
5792
Francois Romieu07d3f512007-02-21 22:40:46 +01005793static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794{
5795 pci_unregister_driver(&rtl8169_pci_driver);
5796}
5797
5798module_init(rtl8169_init_module);
5799module_exit(rtl8169_cleanup_module);