blob: 604f94647b63f5f458fa0349e1b8dace26e2ebc8 [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 Wang5a5e4442011-02-22 17:26:21 +080044#define FIRMWARE_8105E_1 "rtl_nic/rtl8105e-1.fw"
françois romieubca03d52011-01-03 15:07:31 +000045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#ifdef RTL8169_DEBUG
47#define assert(expr) \
Francois Romieu5b0384f2006-08-16 16:00:01 +020048 if (!(expr)) { \
49 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -070050 #expr,__FILE__,__func__,__LINE__); \
Francois Romieu5b0384f2006-08-16 16:00:01 +020051 }
Joe Perches06fa7352007-10-18 21:15:00 +020052#define dprintk(fmt, args...) \
53 do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#else
55#define assert(expr) do {} while (0)
56#define dprintk(fmt, args...) do {} while (0)
57#endif /* RTL8169_DEBUG */
58
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020059#define R8169_MSG_DEFAULT \
Francois Romieuf0e837d2005-09-30 16:54:02 -070060 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +020061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define TX_BUFFS_AVAIL(tp) \
63 (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
66 The RTL chips use a 64 element hash table based on the Ethernet CRC. */
Arjan van de Venf71e1302006-03-03 21:33:57 -050067static const int multicast_filter_limit = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* MAC address length */
70#define MAC_ADDR_LEN 6
71
Francois Romieu9c14cea2008-07-05 00:21:15 +020072#define MAX_READ_REQUEST_SHIFT 12
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define SafeMtu 0x1c20 /* ... actually life sucks beyond ~7k */
75#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
76
77#define R8169_REGS_SIZE 256
78#define R8169_NAPI_WEIGHT 64
79#define NUM_TX_DESC 64 /* Number of Tx descriptor registers */
80#define NUM_RX_DESC 256 /* Number of Rx descriptor registers */
81#define RX_BUF_SIZE 1536 /* Rx Buffer size */
82#define R8169_TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
83#define R8169_RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
84
85#define RTL8169_TX_TIMEOUT (6*HZ)
86#define RTL8169_PHY_TIMEOUT (10*HZ)
87
françois romieuea8dbdd2009-03-15 01:10:50 +000088#define RTL_EEPROM_SIG cpu_to_le32(0x8129)
89#define RTL_EEPROM_SIG_MASK cpu_to_le32(0xffff)
Francois Romieue1564ec2008-10-16 22:46:13 +020090#define RTL_EEPROM_SIG_ADDR 0x0000
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* write/read MMIO register */
93#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
94#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
95#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
96#define RTL_R8(reg) readb (ioaddr + (reg))
97#define RTL_R16(reg) readw (ioaddr + (reg))
Junchang Wang06f555f2010-05-30 02:26:07 +000098#define RTL_R32(reg) readl (ioaddr + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100enum mac_version {
Francois Romieu85bffe62011-04-27 08:22:39 +0200101 RTL_GIGA_MAC_VER_01 = 0,
102 RTL_GIGA_MAC_VER_02,
103 RTL_GIGA_MAC_VER_03,
104 RTL_GIGA_MAC_VER_04,
105 RTL_GIGA_MAC_VER_05,
106 RTL_GIGA_MAC_VER_06,
107 RTL_GIGA_MAC_VER_07,
108 RTL_GIGA_MAC_VER_08,
109 RTL_GIGA_MAC_VER_09,
110 RTL_GIGA_MAC_VER_10,
111 RTL_GIGA_MAC_VER_11,
112 RTL_GIGA_MAC_VER_12,
113 RTL_GIGA_MAC_VER_13,
114 RTL_GIGA_MAC_VER_14,
115 RTL_GIGA_MAC_VER_15,
116 RTL_GIGA_MAC_VER_16,
117 RTL_GIGA_MAC_VER_17,
118 RTL_GIGA_MAC_VER_18,
119 RTL_GIGA_MAC_VER_19,
120 RTL_GIGA_MAC_VER_20,
121 RTL_GIGA_MAC_VER_21,
122 RTL_GIGA_MAC_VER_22,
123 RTL_GIGA_MAC_VER_23,
124 RTL_GIGA_MAC_VER_24,
125 RTL_GIGA_MAC_VER_25,
126 RTL_GIGA_MAC_VER_26,
127 RTL_GIGA_MAC_VER_27,
128 RTL_GIGA_MAC_VER_28,
129 RTL_GIGA_MAC_VER_29,
130 RTL_GIGA_MAC_VER_30,
131 RTL_GIGA_MAC_VER_31,
132 RTL_GIGA_MAC_VER_32,
133 RTL_GIGA_MAC_VER_33,
134 RTL_GIGA_MAC_NONE = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
Francois Romieu2b7b4312011-04-18 22:53:24 -0700137enum rtl_tx_desc_version {
138 RTL_TD_0 = 0,
139 RTL_TD_1 = 1,
140};
141
Francois Romieu85bffe62011-04-27 08:22:39 +0200142#define _R(NAME,TD,FW) \
143 { .name = NAME, .txd_version = TD, .fw_name = FW }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800145static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 const char *name;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700147 enum rtl_tx_desc_version txd_version;
Francois Romieu85bffe62011-04-27 08:22:39 +0200148 const char *fw_name;
149} rtl_chip_infos[] = {
150 /* PCI devices. */
151 [RTL_GIGA_MAC_VER_01] =
152 _R("RTL8169", RTL_TD_0, NULL),
153 [RTL_GIGA_MAC_VER_02] =
154 _R("RTL8169s", RTL_TD_0, NULL),
155 [RTL_GIGA_MAC_VER_03] =
156 _R("RTL8110s", RTL_TD_0, NULL),
157 [RTL_GIGA_MAC_VER_04] =
158 _R("RTL8169sb/8110sb", RTL_TD_0, NULL),
159 [RTL_GIGA_MAC_VER_05] =
160 _R("RTL8169sc/8110sc", RTL_TD_0, NULL),
161 [RTL_GIGA_MAC_VER_06] =
162 _R("RTL8169sc/8110sc", RTL_TD_0, NULL),
163 /* PCI-E devices. */
164 [RTL_GIGA_MAC_VER_07] =
165 _R("RTL8102e", RTL_TD_1, NULL),
166 [RTL_GIGA_MAC_VER_08] =
167 _R("RTL8102e", RTL_TD_1, NULL),
168 [RTL_GIGA_MAC_VER_09] =
169 _R("RTL8102e", RTL_TD_1, NULL),
170 [RTL_GIGA_MAC_VER_10] =
171 _R("RTL8101e", RTL_TD_0, NULL),
172 [RTL_GIGA_MAC_VER_11] =
173 _R("RTL8168b/8111b", RTL_TD_0, NULL),
174 [RTL_GIGA_MAC_VER_12] =
175 _R("RTL8168b/8111b", RTL_TD_0, NULL),
176 [RTL_GIGA_MAC_VER_13] =
177 _R("RTL8101e", RTL_TD_0, NULL),
178 [RTL_GIGA_MAC_VER_14] =
179 _R("RTL8100e", RTL_TD_0, NULL),
180 [RTL_GIGA_MAC_VER_15] =
181 _R("RTL8100e", RTL_TD_0, NULL),
182 [RTL_GIGA_MAC_VER_16] =
183 _R("RTL8101e", RTL_TD_0, NULL),
184 [RTL_GIGA_MAC_VER_17] =
185 _R("RTL8168b/8111b", RTL_TD_0, NULL),
186 [RTL_GIGA_MAC_VER_18] =
187 _R("RTL8168cp/8111cp", RTL_TD_1, NULL),
188 [RTL_GIGA_MAC_VER_19] =
189 _R("RTL8168c/8111c", RTL_TD_1, NULL),
190 [RTL_GIGA_MAC_VER_20] =
191 _R("RTL8168c/8111c", RTL_TD_1, NULL),
192 [RTL_GIGA_MAC_VER_21] =
193 _R("RTL8168c/8111c", RTL_TD_1, NULL),
194 [RTL_GIGA_MAC_VER_22] =
195 _R("RTL8168c/8111c", RTL_TD_1, NULL),
196 [RTL_GIGA_MAC_VER_23] =
197 _R("RTL8168cp/8111cp", RTL_TD_1, NULL),
198 [RTL_GIGA_MAC_VER_24] =
199 _R("RTL8168cp/8111cp", RTL_TD_1, NULL),
200 [RTL_GIGA_MAC_VER_25] =
201 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_1),
202 [RTL_GIGA_MAC_VER_26] =
203 _R("RTL8168d/8111d", RTL_TD_1, FIRMWARE_8168D_2),
204 [RTL_GIGA_MAC_VER_27] =
205 _R("RTL8168dp/8111dp", RTL_TD_1, NULL),
206 [RTL_GIGA_MAC_VER_28] =
207 _R("RTL8168dp/8111dp", RTL_TD_1, NULL),
208 [RTL_GIGA_MAC_VER_29] =
209 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1),
210 [RTL_GIGA_MAC_VER_30] =
211 _R("RTL8105e", RTL_TD_1, FIRMWARE_8105E_1),
212 [RTL_GIGA_MAC_VER_31] =
213 _R("RTL8168dp/8111dp", RTL_TD_1, NULL),
214 [RTL_GIGA_MAC_VER_32] =
215 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_1),
216 [RTL_GIGA_MAC_VER_33] =
217 _R("RTL8168e/8111e", RTL_TD_1, FIRMWARE_8168E_2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219#undef _R
220
Francois Romieubcf0bf92006-07-26 23:14:13 +0200221enum cfg_version {
222 RTL_CFG_0 = 0x00,
223 RTL_CFG_1,
224 RTL_CFG_2
225};
226
Francois Romieu07ce4062007-02-23 23:36:39 +0100227static void rtl_hw_start_8169(struct net_device *);
228static void rtl_hw_start_8168(struct net_device *);
229static void rtl_hw_start_8101(struct net_device *);
230
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000231static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
Francois Romieubcf0bf92006-07-26 23:14:13 +0200232 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8129), 0, 0, RTL_CFG_0 },
Francois Romieud2eed8c2006-08-31 22:01:07 +0200233 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8136), 0, 0, RTL_CFG_2 },
Francois Romieud81bf552006-09-20 21:31:20 +0200234 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167), 0, 0, RTL_CFG_0 },
Francois Romieu07ce4062007-02-23 23:36:39 +0100235 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168), 0, 0, RTL_CFG_1 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200236 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 },
237 { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 },
Francois Romieubc1660b2007-10-12 23:58:09 +0200238 { PCI_DEVICE(PCI_VENDOR_ID_AT, 0xc107), 0, 0, RTL_CFG_0 },
Francois Romieubcf0bf92006-07-26 23:14:13 +0200239 { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 },
240 { PCI_VENDOR_ID_LINKSYS, 0x1032,
241 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
Ciaran McCreesh11d2e282007-11-01 22:48:15 +0100242 { 0x0001, 0x8168,
243 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 {0,},
245};
246
247MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
248
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000249static int rx_buf_sz = 16383;
David S. Miller4300e8c2010-03-26 10:23:30 -0700250static int use_dac;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200251static struct {
252 u32 msg_enable;
253} debug = { -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Francois Romieu07d3f512007-02-21 22:40:46 +0100255enum rtl_registers {
256 MAC0 = 0, /* Ethernet hardware address. */
Francois Romieu773d2022007-01-31 23:47:43 +0100257 MAC4 = 4,
Francois Romieu07d3f512007-02-21 22:40:46 +0100258 MAR0 = 8, /* Multicast filter. */
259 CounterAddrLow = 0x10,
260 CounterAddrHigh = 0x14,
261 TxDescStartAddrLow = 0x20,
262 TxDescStartAddrHigh = 0x24,
263 TxHDescStartAddrLow = 0x28,
264 TxHDescStartAddrHigh = 0x2c,
265 FLASH = 0x30,
266 ERSR = 0x36,
267 ChipCmd = 0x37,
268 TxPoll = 0x38,
269 IntrMask = 0x3c,
270 IntrStatus = 0x3e,
Francois Romieu2b7b4312011-04-18 22:53:24 -0700271
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800272 TxConfig = 0x40,
273#define TXCFG_AUTO_FIFO (1 << 7) /* 8111e-vl */
274#define TXCFG_EMPTY (1 << 11) /* 8111e-vl */
275
276 RxConfig = 0x44,
277#define RX128_INT_EN (1 << 15) /* 8111c and later */
278#define RX_MULTI_EN (1 << 14) /* 8111c only */
279#define RXCFG_FIFO_SHIFT 13
280 /* No threshold before first PCI xfer */
281#define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT)
282#define RXCFG_DMA_SHIFT 8
283 /* Unlimited maximum PCI burst. */
284#define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT)
Francois Romieu2b7b4312011-04-18 22:53:24 -0700285#define RTL_RX_CONFIG_MASK 0xff7e1880u
286
Francois Romieu07d3f512007-02-21 22:40:46 +0100287 RxMissed = 0x4c,
288 Cfg9346 = 0x50,
289 Config0 = 0x51,
290 Config1 = 0x52,
291 Config2 = 0x53,
292 Config3 = 0x54,
293 Config4 = 0x55,
294 Config5 = 0x56,
295 MultiIntr = 0x5c,
296 PHYAR = 0x60,
Francois Romieu07d3f512007-02-21 22:40:46 +0100297 PHYstatus = 0x6c,
298 RxMaxSize = 0xda,
299 CPlusCmd = 0xe0,
300 IntrMitigate = 0xe2,
301 RxDescAddrLow = 0xe4,
302 RxDescAddrHigh = 0xe8,
françois romieuf0298f82011-01-03 15:07:42 +0000303 EarlyTxThres = 0xec, /* 8169. Unit of 32 bytes. */
304
305#define NoEarlyTx 0x3f /* Max value : no early transmit. */
306
307 MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
308
309#define TxPacketMax (8064 >> 7)
310
Francois Romieu07d3f512007-02-21 22:40:46 +0100311 FuncEvent = 0xf0,
312 FuncEventMask = 0xf4,
313 FuncPresetState = 0xf8,
314 FuncForceEvent = 0xfc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
Francois Romieuf162a5d2008-06-01 22:37:49 +0200317enum rtl8110_registers {
318 TBICSR = 0x64,
319 TBI_ANAR = 0x68,
320 TBI_LPAR = 0x6a,
321};
322
323enum rtl8168_8101_registers {
324 CSIDR = 0x64,
325 CSIAR = 0x68,
326#define CSIAR_FLAG 0x80000000
327#define CSIAR_WRITE_CMD 0x80000000
328#define CSIAR_BYTE_ENABLE 0x0f
329#define CSIAR_BYTE_ENABLE_SHIFT 12
330#define CSIAR_ADDR_MASK 0x0fff
françois romieu065c27c2011-01-03 15:08:12 +0000331 PMCH = 0x6f,
Francois Romieuf162a5d2008-06-01 22:37:49 +0200332 EPHYAR = 0x80,
333#define EPHYAR_FLAG 0x80000000
334#define EPHYAR_WRITE_CMD 0x80000000
335#define EPHYAR_REG_MASK 0x1f
336#define EPHYAR_REG_SHIFT 16
337#define EPHYAR_DATA_MASK 0xffff
Hayes Wang5a5e4442011-02-22 17:26:21 +0800338 DLLPR = 0xd0,
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800339#define PFM_EN (1 << 6)
Francois Romieuf162a5d2008-06-01 22:37:49 +0200340 DBG_REG = 0xd1,
341#define FIX_NAK_1 (1 << 4)
342#define FIX_NAK_2 (1 << 3)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800343 TWSI = 0xd2,
344 MCU = 0xd3,
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800345#define NOW_IS_OOB (1 << 7)
Hayes Wang5a5e4442011-02-22 17:26:21 +0800346#define EN_NDP (1 << 3)
347#define EN_OOB_RESET (1 << 2)
françois romieudaf9df62009-10-07 12:44:20 +0000348 EFUSEAR = 0xdc,
349#define EFUSEAR_FLAG 0x80000000
350#define EFUSEAR_WRITE_CMD 0x80000000
351#define EFUSEAR_READ_CMD 0x00000000
352#define EFUSEAR_REG_MASK 0x03ff
353#define EFUSEAR_REG_SHIFT 8
354#define EFUSEAR_DATA_MASK 0xff
Francois Romieuf162a5d2008-06-01 22:37:49 +0200355};
356
françois romieuc0e45c12011-01-03 15:08:04 +0000357enum rtl8168_registers {
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800358 LED_FREQ = 0x1a,
359 EEE_LED = 0x1b,
françois romieub646d902011-01-03 15:08:21 +0000360 ERIDR = 0x70,
361 ERIAR = 0x74,
362#define ERIAR_FLAG 0x80000000
363#define ERIAR_WRITE_CMD 0x80000000
364#define ERIAR_READ_CMD 0x00000000
365#define ERIAR_ADDR_BYTE_ALIGN 4
françois romieub646d902011-01-03 15:08:21 +0000366#define ERIAR_TYPE_SHIFT 16
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800367#define ERIAR_EXGMAC (0x00 << ERIAR_TYPE_SHIFT)
368#define ERIAR_MSIX (0x01 << ERIAR_TYPE_SHIFT)
369#define ERIAR_ASF (0x02 << ERIAR_TYPE_SHIFT)
370#define ERIAR_MASK_SHIFT 12
371#define ERIAR_MASK_0001 (0x1 << ERIAR_MASK_SHIFT)
372#define ERIAR_MASK_0011 (0x3 << ERIAR_MASK_SHIFT)
373#define ERIAR_MASK_1111 (0xf << ERIAR_MASK_SHIFT)
françois romieuc0e45c12011-01-03 15:08:04 +0000374 EPHY_RXER_NUM = 0x7c,
375 OCPDR = 0xb0, /* OCP GPHY access */
376#define OCPDR_WRITE_CMD 0x80000000
377#define OCPDR_READ_CMD 0x00000000
378#define OCPDR_REG_MASK 0x7f
379#define OCPDR_GPHY_REG_SHIFT 16
380#define OCPDR_DATA_MASK 0xffff
381 OCPAR = 0xb4,
382#define OCPAR_FLAG 0x80000000
383#define OCPAR_GPHY_WRITE_CMD 0x8000f060
384#define OCPAR_GPHY_READ_CMD 0x0000f060
hayeswang01dc7fe2011-03-21 01:50:28 +0000385 RDSAR1 = 0xd0, /* 8168c only. Undocumented on 8168dp */
386 MISC = 0xf0, /* 8168e only. */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200387#define TXPLA_RST (1 << 29)
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800388#define PWM_EN (1 << 22)
françois romieuc0e45c12011-01-03 15:08:04 +0000389};
390
Francois Romieu07d3f512007-02-21 22:40:46 +0100391enum rtl_register_content {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /* InterruptStatusBits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100393 SYSErr = 0x8000,
394 PCSTimeout = 0x4000,
395 SWInt = 0x0100,
396 TxDescUnavail = 0x0080,
397 RxFIFOOver = 0x0040,
398 LinkChg = 0x0020,
399 RxOverflow = 0x0010,
400 TxErr = 0x0008,
401 TxOK = 0x0004,
402 RxErr = 0x0002,
403 RxOK = 0x0001,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 /* RxStatusDesc */
Francois Romieu9dccf612006-05-14 12:31:17 +0200406 RxFOVF = (1 << 23),
407 RxRWT = (1 << 22),
408 RxRES = (1 << 21),
409 RxRUNT = (1 << 20),
410 RxCRC = (1 << 19),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /* ChipCmdBits */
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800413 StopReq = 0x80,
Francois Romieu07d3f512007-02-21 22:40:46 +0100414 CmdReset = 0x10,
415 CmdRxEnb = 0x08,
416 CmdTxEnb = 0x04,
417 RxBufEmpty = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Francois Romieu275391a2007-02-23 23:50:28 +0100419 /* TXPoll register p.5 */
420 HPQ = 0x80, /* Poll cmd on the high prio queue */
421 NPQ = 0x40, /* Poll cmd on the low prio queue */
422 FSWInt = 0x01, /* Forced software interrupt */
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 /* Cfg9346Bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100425 Cfg9346_Lock = 0x00,
426 Cfg9346_Unlock = 0xc0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /* rx_mode_bits */
Francois Romieu07d3f512007-02-21 22:40:46 +0100429 AcceptErr = 0x20,
430 AcceptRunt = 0x10,
431 AcceptBroadcast = 0x08,
432 AcceptMulticast = 0x04,
433 AcceptMyPhys = 0x02,
434 AcceptAllPhys = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /* TxConfigBits */
437 TxInterFrameGapShift = 24,
438 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
439
Francois Romieu5d06a992006-02-23 00:47:58 +0100440 /* Config1 register p.24 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200441 LEDS1 = (1 << 7),
442 LEDS0 = (1 << 6),
Francois Romieufbac58f2007-10-04 22:51:38 +0200443 MSIEnable = (1 << 5), /* Enable Message Signaled Interrupt */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200444 Speed_down = (1 << 4),
445 MEMMAP = (1 << 3),
446 IOMAP = (1 << 2),
447 VPD = (1 << 1),
Francois Romieu5d06a992006-02-23 00:47:58 +0100448 PMEnable = (1 << 0), /* Power Management Enable */
449
Francois Romieu6dccd162007-02-13 23:38:05 +0100450 /* Config2 register p. 25 */
451 PCI_Clock_66MHz = 0x01,
452 PCI_Clock_33MHz = 0x00,
453
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100454 /* Config3 register p.25 */
455 MagicPacket = (1 << 5), /* Wake up when receives a Magic Packet */
456 LinkUp = (1 << 4), /* Wake up when the cable connection is re-established */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200457 Beacon_en = (1 << 0), /* 8168 only. Reserved in the 8168b */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100458
Francois Romieu5d06a992006-02-23 00:47:58 +0100459 /* Config5 register p.27 */
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100460 BWF = (1 << 6), /* Accept Broadcast wakeup frame */
461 MWF = (1 << 5), /* Accept Multicast wakeup frame */
462 UWF = (1 << 4), /* Accept Unicast wakeup frame */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200463 Spi_en = (1 << 3),
Francois Romieu61a4dcc2006-02-23 00:55:25 +0100464 LanWake = (1 << 1), /* LanWake enable/disable */
Francois Romieu5d06a992006-02-23 00:47:58 +0100465 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 /* TBICSR p.28 */
468 TBIReset = 0x80000000,
469 TBILoopback = 0x40000000,
470 TBINwEnable = 0x20000000,
471 TBINwRestart = 0x10000000,
472 TBILinkOk = 0x02000000,
473 TBINwComplete = 0x01000000,
474
475 /* CPlusCmd p.31 */
Francois Romieuf162a5d2008-06-01 22:37:49 +0200476 EnableBist = (1 << 15), // 8168 8101
477 Mac_dbgo_oe = (1 << 14), // 8168 8101
478 Normal_mode = (1 << 13), // unused
479 Force_half_dup = (1 << 12), // 8168 8101
480 Force_rxflow_en = (1 << 11), // 8168 8101
481 Force_txflow_en = (1 << 10), // 8168 8101
482 Cxpl_dbg_sel = (1 << 9), // 8168 8101
483 ASF = (1 << 8), // 8168 8101
484 PktCntrDisable = (1 << 7), // 8168 8101
485 Mac_dbgo_sel = 0x001c, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 RxVlan = (1 << 6),
487 RxChkSum = (1 << 5),
488 PCIDAC = (1 << 4),
489 PCIMulRW = (1 << 3),
Francois Romieu0e485152007-02-20 00:00:26 +0100490 INTT_0 = 0x0000, // 8168
491 INTT_1 = 0x0001, // 8168
492 INTT_2 = 0x0002, // 8168
493 INTT_3 = 0x0003, // 8168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 /* rtl8169_PHYstatus */
Francois Romieu07d3f512007-02-21 22:40:46 +0100496 TBI_Enable = 0x80,
497 TxFlowCtrl = 0x40,
498 RxFlowCtrl = 0x20,
499 _1000bpsF = 0x10,
500 _100bps = 0x08,
501 _10bps = 0x04,
502 LinkStatus = 0x02,
503 FullDup = 0x01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /* _TBICSRBit */
Francois Romieu07d3f512007-02-21 22:40:46 +0100506 TBILinkOK = 0x02000000,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +0200507
508 /* DumpCounterCommand */
Francois Romieu07d3f512007-02-21 22:40:46 +0100509 CounterDump = 0x8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510};
511
Francois Romieu2b7b4312011-04-18 22:53:24 -0700512enum rtl_desc_bit {
513 /* First doubleword. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 DescOwn = (1 << 31), /* Descriptor is owned by NIC */
515 RingEnd = (1 << 30), /* End of descriptor ring */
516 FirstFrag = (1 << 29), /* First segment of a packet */
517 LastFrag = (1 << 28), /* Final segment of a packet */
Francois Romieu2b7b4312011-04-18 22:53:24 -0700518};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Francois Romieu2b7b4312011-04-18 22:53:24 -0700520/* Generic case. */
521enum rtl_tx_desc_bit {
522 /* First doubleword. */
523 TD_LSO = (1 << 27), /* Large Send Offload */
524#define TD_MSS_MAX 0x07ffu /* MSS value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Francois Romieu2b7b4312011-04-18 22:53:24 -0700526 /* Second doubleword. */
527 TxVlanTag = (1 << 17), /* Add VLAN tag */
528};
529
530/* 8169, 8168b and 810x except 8102e. */
531enum rtl_tx_desc_bit_0 {
532 /* First doubleword. */
533#define TD0_MSS_SHIFT 16 /* MSS position (11 bits) */
534 TD0_TCP_CS = (1 << 16), /* Calculate TCP/IP checksum */
535 TD0_UDP_CS = (1 << 17), /* Calculate UDP/IP checksum */
536 TD0_IP_CS = (1 << 18), /* Calculate IP checksum */
537};
538
539/* 8102e, 8168c and beyond. */
540enum rtl_tx_desc_bit_1 {
541 /* Second doubleword. */
542#define TD1_MSS_SHIFT 18 /* MSS position (11 bits) */
543 TD1_IP_CS = (1 << 29), /* Calculate IP checksum */
544 TD1_TCP_CS = (1 << 30), /* Calculate TCP/IP checksum */
545 TD1_UDP_CS = (1 << 31), /* Calculate UDP/IP checksum */
546};
547
548static const struct rtl_tx_desc_info {
549 struct {
550 u32 udp;
551 u32 tcp;
552 } checksum;
553 u16 mss_shift;
554 u16 opts_offset;
555} tx_desc_info [] = {
556 [RTL_TD_0] = {
557 .checksum = {
558 .udp = TD0_IP_CS | TD0_UDP_CS,
559 .tcp = TD0_IP_CS | TD0_TCP_CS
560 },
561 .mss_shift = TD0_MSS_SHIFT,
562 .opts_offset = 0
563 },
564 [RTL_TD_1] = {
565 .checksum = {
566 .udp = TD1_IP_CS | TD1_UDP_CS,
567 .tcp = TD1_IP_CS | TD1_TCP_CS
568 },
569 .mss_shift = TD1_MSS_SHIFT,
570 .opts_offset = 1
571 }
572};
573
574enum rtl_rx_desc_bit {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 /* Rx private */
576 PID1 = (1 << 18), /* Protocol ID bit 1/2 */
577 PID0 = (1 << 17), /* Protocol ID bit 2/2 */
578
579#define RxProtoUDP (PID1)
580#define RxProtoTCP (PID0)
581#define RxProtoIP (PID1 | PID0)
582#define RxProtoMask RxProtoIP
583
584 IPFail = (1 << 16), /* IP checksum failed */
585 UDPFail = (1 << 15), /* UDP/IP checksum failed */
586 TCPFail = (1 << 14), /* TCP/IP checksum failed */
587 RxVlanTag = (1 << 16), /* VLAN tag available */
588};
589
590#define RsvdMask 0x3fffc000
591
592struct TxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200593 __le32 opts1;
594 __le32 opts2;
595 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596};
597
598struct RxDesc {
Rolf Eike Beer6cccd6e2007-05-21 22:11:04 +0200599 __le32 opts1;
600 __le32 opts2;
601 __le64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602};
603
604struct ring_info {
605 struct sk_buff *skb;
606 u32 len;
607 u8 __pad[sizeof(void *) - sizeof(u32)];
608};
609
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200610enum features {
Francois Romieuccdffb92008-07-26 14:26:06 +0200611 RTL_FEATURE_WOL = (1 << 0),
612 RTL_FEATURE_MSI = (1 << 1),
613 RTL_FEATURE_GMII = (1 << 2),
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200614};
615
Ivan Vecera355423d2009-02-06 21:49:57 -0800616struct rtl8169_counters {
617 __le64 tx_packets;
618 __le64 rx_packets;
619 __le64 tx_errors;
620 __le32 rx_errors;
621 __le16 rx_missed;
622 __le16 align_errors;
623 __le32 tx_one_collision;
624 __le32 tx_multi_collision;
625 __le64 rx_unicast;
626 __le64 rx_broadcast;
627 __le32 rx_multicast;
628 __le16 tx_aborted;
629 __le16 tx_underun;
630};
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632struct rtl8169_private {
633 void __iomem *mmio_addr; /* memory map physical address */
Francois Romieucecb5fd2011-04-01 10:21:07 +0200634 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000635 struct net_device *dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700636 struct napi_struct napi;
Francois Romieucecb5fd2011-04-01 10:21:07 +0200637 spinlock_t lock;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200638 u32 msg_enable;
Francois Romieu2b7b4312011-04-18 22:53:24 -0700639 u16 txd_version;
640 u16 mac_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
642 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
643 u32 dirty_rx;
644 u32 dirty_tx;
645 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
646 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
647 dma_addr_t TxPhyAddr;
648 dma_addr_t RxPhyAddr;
Eric Dumazet6f0333b2010-10-11 11:17:47 +0000649 void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 struct timer_list timer;
652 u16 cp_cmd;
Francois Romieu0e485152007-02-20 00:00:26 +0100653 u16 intr_event;
654 u16 napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 u16 intr_mask;
françois romieuc0e45c12011-01-03 15:08:04 +0000656
657 struct mdio_ops {
658 void (*write)(void __iomem *, int, int);
659 int (*read)(void __iomem *, int);
660 } mdio_ops;
661
françois romieu065c27c2011-01-03 15:08:12 +0000662 struct pll_power_ops {
663 void (*down)(struct rtl8169_private *);
664 void (*up)(struct rtl8169_private *);
665 } pll_power_ops;
666
Oliver Neukum54405cd2011-01-06 21:55:13 +0100667 int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
Francois Romieuccdffb92008-07-26 14:26:06 +0200668 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
françois romieu4da19632011-01-03 15:07:55 +0000669 void (*phy_reset_enable)(struct rtl8169_private *tp);
Francois Romieu07ce4062007-02-23 23:36:39 +0100670 void (*hw_start)(struct net_device *);
françois romieu4da19632011-01-03 15:07:55 +0000671 unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 unsigned int (*link_ok)(void __iomem *);
Francois Romieu8b4ab282008-11-19 22:05:25 -0800673 int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
David Howellsc4028952006-11-22 14:57:56 +0000674 struct delayed_work task;
Francois Romieuf23e7fd2007-10-04 22:36:14 +0200675 unsigned features;
Francois Romieuccdffb92008-07-26 14:26:06 +0200676
677 struct mii_if_info mii;
Ivan Vecera355423d2009-02-06 21:49:57 -0800678 struct rtl8169_counters counters;
Rafael J. Wysockie1759442010-03-14 14:33:51 +0000679 u32 saved_wolopts;
françois romieuf1e02ed2011-01-13 13:07:53 +0000680
Francois Romieub6ffd972011-06-17 17:00:05 +0200681 struct rtl_fw {
682 const struct firmware *fw;
Francois Romieu1c361ef2011-06-17 17:16:24 +0200683
684#define RTL_VER_SIZE 32
685
686 char version[RTL_VER_SIZE];
687
688 struct rtl_fw_phy_action {
689 __le32 *code;
690 size_t size;
691 } phy_action;
Francois Romieub6ffd972011-06-17 17:00:05 +0200692 } *rtl_fw;
François Romieu953a12c2011-04-24 17:38:48 +0200693#define RTL_FIRMWARE_UNKNOWN ERR_PTR(-EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694};
695
Ralf Baechle979b6c12005-06-13 14:30:40 -0700696MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698module_param(use_dac, int, 0);
David S. Miller4300e8c2010-03-26 10:23:30 -0700699MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +0200700module_param_named(debug, debug.msg_enable, int, 0);
701MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702MODULE_LICENSE("GPL");
703MODULE_VERSION(RTL8169_VERSION);
françois romieubca03d52011-01-03 15:07:31 +0000704MODULE_FIRMWARE(FIRMWARE_8168D_1);
705MODULE_FIRMWARE(FIRMWARE_8168D_2);
hayeswang01dc7fe2011-03-21 01:50:28 +0000706MODULE_FIRMWARE(FIRMWARE_8168E_1);
707MODULE_FIRMWARE(FIRMWARE_8168E_2);
Hayes Wang5a5e4442011-02-22 17:26:21 +0800708MODULE_FIRMWARE(FIRMWARE_8105E_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710static int rtl8169_open(struct net_device *dev);
Stephen Hemminger613573252009-08-31 19:50:58 +0000711static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
712 struct net_device *dev);
David Howells7d12e782006-10-05 14:55:46 +0100713static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714static int rtl8169_init_ring(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100715static void rtl_hw_start(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716static int rtl8169_close(struct net_device *dev);
Francois Romieu07ce4062007-02-23 23:36:39 +0100717static void rtl_set_rx_mode(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718static void rtl8169_tx_timeout(struct net_device *dev);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200719static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700721 void __iomem *, u32 budget);
Richard Dawe4dcb7d32005-05-27 21:12:00 +0200722static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723static void rtl8169_down(struct net_device *dev);
Francois Romieu99f252b2007-04-02 22:59:59 +0200724static void rtl8169_rx_clear(struct rtl8169_private *tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700725static int rtl8169_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Hayes Wang4f6b00e2011-07-06 15:58:02 +0800727static const unsigned int rtl8169_rx_config = RX_FIFO_THRESH | RX_DMA_BURST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
françois romieub646d902011-01-03 15:08:21 +0000729static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
730{
731 void __iomem *ioaddr = tp->mmio_addr;
732 int i;
733
734 RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
735 for (i = 0; i < 20; i++) {
736 udelay(100);
737 if (RTL_R32(OCPAR) & OCPAR_FLAG)
738 break;
739 }
740 return RTL_R32(OCPDR);
741}
742
743static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
744{
745 void __iomem *ioaddr = tp->mmio_addr;
746 int i;
747
748 RTL_W32(OCPDR, data);
749 RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
750 for (i = 0; i < 20; i++) {
751 udelay(100);
752 if ((RTL_R32(OCPAR) & OCPAR_FLAG) == 0)
753 break;
754 }
755}
756
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800757static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
françois romieub646d902011-01-03 15:08:21 +0000758{
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800759 void __iomem *ioaddr = tp->mmio_addr;
françois romieub646d902011-01-03 15:08:21 +0000760 int i;
761
762 RTL_W8(ERIDR, cmd);
763 RTL_W32(ERIAR, 0x800010e8);
764 msleep(2);
765 for (i = 0; i < 5; i++) {
766 udelay(100);
Francois Romieu1e4e82b2011-06-24 19:52:13 +0200767 if (!(RTL_R32(ERIAR) & ERIAR_FLAG))
françois romieub646d902011-01-03 15:08:21 +0000768 break;
769 }
770
Hayes Wangfac5b3c2011-02-22 17:26:20 +0800771 ocp_write(tp, 0x1, 0x30, 0x00000001);
françois romieub646d902011-01-03 15:08:21 +0000772}
773
774#define OOB_CMD_RESET 0x00
775#define OOB_CMD_DRIVER_START 0x05
776#define OOB_CMD_DRIVER_STOP 0x06
777
Francois Romieucecb5fd2011-04-01 10:21:07 +0200778static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
779{
780 return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
781}
782
françois romieub646d902011-01-03 15:08:21 +0000783static void rtl8168_driver_start(struct rtl8169_private *tp)
784{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200785 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000786 int i;
787
788 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
789
Francois Romieucecb5fd2011-04-01 10:21:07 +0200790 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000791
françois romieub646d902011-01-03 15:08:21 +0000792 for (i = 0; i < 10; i++) {
793 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000794 if (ocp_read(tp, 0x0f, reg) & 0x00000800)
françois romieub646d902011-01-03 15:08:21 +0000795 break;
796 }
797}
798
799static void rtl8168_driver_stop(struct rtl8169_private *tp)
800{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200801 u16 reg;
françois romieub646d902011-01-03 15:08:21 +0000802 int i;
803
804 rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
805
Francois Romieucecb5fd2011-04-01 10:21:07 +0200806 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000807
françois romieub646d902011-01-03 15:08:21 +0000808 for (i = 0; i < 10; i++) {
809 msleep(10);
hayeswang4804b3b2011-03-21 01:50:29 +0000810 if ((ocp_read(tp, 0x0f, reg) & 0x00000800) == 0)
françois romieub646d902011-01-03 15:08:21 +0000811 break;
812 }
813}
814
hayeswang4804b3b2011-03-21 01:50:29 +0000815static int r8168dp_check_dash(struct rtl8169_private *tp)
816{
Francois Romieucecb5fd2011-04-01 10:21:07 +0200817 u16 reg = rtl8168_get_ocp_reg(tp);
hayeswang4804b3b2011-03-21 01:50:29 +0000818
Francois Romieucecb5fd2011-04-01 10:21:07 +0200819 return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
hayeswang4804b3b2011-03-21 01:50:29 +0000820}
françois romieub646d902011-01-03 15:08:21 +0000821
françois romieu4da19632011-01-03 15:07:55 +0000822static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 int i;
825
Francois Romieua6baf3a2007-11-08 23:23:21 +0100826 RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Francois Romieu23714082006-01-29 00:49:09 +0100828 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100829 /*
830 * Check if the RTL8169 has completed writing to the specified
831 * MII register.
832 */
Francois Romieu5b0384f2006-08-16 16:00:01 +0200833 if (!(RTL_R32(PHYAR) & 0x80000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 break;
Francois Romieu23714082006-01-29 00:49:09 +0100835 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
Timo Teräs024a07b2010-06-06 15:38:47 -0700837 /*
Timo Teräs81a95f02010-06-09 17:31:48 -0700838 * According to hardware specs a 20us delay is required after write
839 * complete indication, but before sending next command.
Timo Teräs024a07b2010-06-06 15:38:47 -0700840 */
Timo Teräs81a95f02010-06-09 17:31:48 -0700841 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
françois romieu4da19632011-01-03 15:07:55 +0000844static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 int i, value = -1;
847
Francois Romieua6baf3a2007-11-08 23:23:21 +0100848 RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Francois Romieu23714082006-01-29 00:49:09 +0100850 for (i = 20; i > 0; i--) {
Francois Romieu07d3f512007-02-21 22:40:46 +0100851 /*
852 * Check if the RTL8169 has completed retrieving data from
853 * the specified MII register.
854 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (RTL_R32(PHYAR) & 0x80000000) {
Francois Romieua6baf3a2007-11-08 23:23:21 +0100856 value = RTL_R32(PHYAR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 break;
858 }
Francois Romieu23714082006-01-29 00:49:09 +0100859 udelay(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
Timo Teräs81a95f02010-06-09 17:31:48 -0700861 /*
862 * According to hardware specs a 20us delay is required after read
863 * complete indication, but before sending next command.
864 */
865 udelay(20);
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return value;
868}
869
françois romieuc0e45c12011-01-03 15:08:04 +0000870static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
871{
872 int i;
873
874 RTL_W32(OCPDR, data |
875 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
876 RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
877 RTL_W32(EPHY_RXER_NUM, 0);
878
879 for (i = 0; i < 100; i++) {
880 mdelay(1);
881 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
882 break;
883 }
884}
885
886static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
887{
888 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
889 (value & OCPDR_DATA_MASK));
890}
891
892static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
893{
894 int i;
895
896 r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
897
898 mdelay(1);
899 RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
900 RTL_W32(EPHY_RXER_NUM, 0);
901
902 for (i = 0; i < 100; i++) {
903 mdelay(1);
904 if (RTL_R32(OCPAR) & OCPAR_FLAG)
905 break;
906 }
907
908 return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
909}
910
françois romieue6de30d2011-01-03 15:08:37 +0000911#define R8168DP_1_MDIO_ACCESS_BIT 0x00020000
912
913static void r8168dp_2_mdio_start(void __iomem *ioaddr)
914{
915 RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
916}
917
918static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
919{
920 RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
921}
922
923static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
924{
925 r8168dp_2_mdio_start(ioaddr);
926
927 r8169_mdio_write(ioaddr, reg_addr, value);
928
929 r8168dp_2_mdio_stop(ioaddr);
930}
931
932static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
933{
934 int value;
935
936 r8168dp_2_mdio_start(ioaddr);
937
938 value = r8169_mdio_read(ioaddr, reg_addr);
939
940 r8168dp_2_mdio_stop(ioaddr);
941
942 return value;
943}
944
françois romieu4da19632011-01-03 15:07:55 +0000945static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
Francois Romieudacf8152008-08-02 20:44:13 +0200946{
françois romieuc0e45c12011-01-03 15:08:04 +0000947 tp->mdio_ops.write(tp->mmio_addr, location, val);
Francois Romieudacf8152008-08-02 20:44:13 +0200948}
949
françois romieu4da19632011-01-03 15:07:55 +0000950static int rtl_readphy(struct rtl8169_private *tp, int location)
951{
françois romieuc0e45c12011-01-03 15:08:04 +0000952 return tp->mdio_ops.read(tp->mmio_addr, location);
françois romieu4da19632011-01-03 15:07:55 +0000953}
954
955static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
956{
957 rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
958}
959
960static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
françois romieudaf9df62009-10-07 12:44:20 +0000961{
962 int val;
963
françois romieu4da19632011-01-03 15:07:55 +0000964 val = rtl_readphy(tp, reg_addr);
965 rtl_writephy(tp, reg_addr, (val | p) & ~m);
françois romieudaf9df62009-10-07 12:44:20 +0000966}
967
Francois Romieuccdffb92008-07-26 14:26:06 +0200968static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
969 int val)
970{
971 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200972
françois romieu4da19632011-01-03 15:07:55 +0000973 rtl_writephy(tp, location, val);
Francois Romieuccdffb92008-07-26 14:26:06 +0200974}
975
976static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
977{
978 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieuccdffb92008-07-26 14:26:06 +0200979
françois romieu4da19632011-01-03 15:07:55 +0000980 return rtl_readphy(tp, location);
Francois Romieuccdffb92008-07-26 14:26:06 +0200981}
982
Francois Romieudacf8152008-08-02 20:44:13 +0200983static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
984{
985 unsigned int i;
986
987 RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
988 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
989
990 for (i = 0; i < 100; i++) {
991 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
992 break;
993 udelay(10);
994 }
995}
996
997static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
998{
999 u16 value = 0xffff;
1000 unsigned int i;
1001
1002 RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1003
1004 for (i = 0; i < 100; i++) {
1005 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
1006 value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
1007 break;
1008 }
1009 udelay(10);
1010 }
1011
1012 return value;
1013}
1014
1015static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
1016{
1017 unsigned int i;
1018
1019 RTL_W32(CSIDR, value);
1020 RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
1021 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
1022
1023 for (i = 0; i < 100; i++) {
1024 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
1025 break;
1026 udelay(10);
1027 }
1028}
1029
1030static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
1031{
1032 u32 value = ~0x00;
1033 unsigned int i;
1034
1035 RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
1036 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
1037
1038 for (i = 0; i < 100; i++) {
1039 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
1040 value = RTL_R32(CSIDR);
1041 break;
1042 }
1043 udelay(10);
1044 }
1045
1046 return value;
1047}
1048
françois romieudaf9df62009-10-07 12:44:20 +00001049static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
1050{
1051 u8 value = 0xff;
1052 unsigned int i;
1053
1054 RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1055
1056 for (i = 0; i < 300; i++) {
1057 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
1058 value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
1059 break;
1060 }
1061 udelay(100);
1062 }
1063
1064 return value;
1065}
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
1068{
1069 RTL_W16(IntrMask, 0x0000);
1070
1071 RTL_W16(IntrStatus, 0xffff);
1072}
1073
françois romieu4da19632011-01-03 15:07:55 +00001074static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
françois romieu4da19632011-01-03 15:07:55 +00001076 void __iomem *ioaddr = tp->mmio_addr;
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return RTL_R32(TBICSR) & TBIReset;
1079}
1080
françois romieu4da19632011-01-03 15:07:55 +00001081static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
françois romieu4da19632011-01-03 15:07:55 +00001083 return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084}
1085
1086static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1087{
1088 return RTL_R32(TBICSR) & TBILinkOk;
1089}
1090
1091static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1092{
1093 return RTL_R8(PHYstatus) & LinkStatus;
1094}
1095
françois romieu4da19632011-01-03 15:07:55 +00001096static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
françois romieu4da19632011-01-03 15:07:55 +00001098 void __iomem *ioaddr = tp->mmio_addr;
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1101}
1102
françois romieu4da19632011-01-03 15:07:55 +00001103static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
1105 unsigned int val;
1106
françois romieu4da19632011-01-03 15:07:55 +00001107 val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1108 rtl_writephy(tp, MII_BMCR, val & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001111static void __rtl8169_check_link_status(struct net_device *dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001112 struct rtl8169_private *tp,
1113 void __iomem *ioaddr, bool pm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
1115 unsigned long flags;
1116
1117 spin_lock_irqsave(&tp->lock, flags);
1118 if (tp->link_ok(ioaddr)) {
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001119 /* This is to cancel a scheduled suspend if there's one. */
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001120 if (pm)
1121 pm_request_resume(&tp->pci_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 netif_carrier_on(dev);
Francois Romieu1519e572011-02-03 12:02:36 +01001123 if (net_ratelimit())
1124 netif_info(tp, ifup, dev, "link up\n");
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001125 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 netif_carrier_off(dev);
Joe Perchesbf82c182010-02-09 11:49:50 +00001127 netif_info(tp, ifdown, dev, "link down\n");
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001128 if (pm)
1129 pm_schedule_suspend(&tp->pci_dev->dev, 100);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 spin_unlock_irqrestore(&tp->lock, flags);
1132}
1133
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00001134static void rtl8169_check_link_status(struct net_device *dev,
1135 struct rtl8169_private *tp,
1136 void __iomem *ioaddr)
1137{
1138 __rtl8169_check_link_status(dev, tp, ioaddr, false);
1139}
1140
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001141#define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1142
1143static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1144{
1145 void __iomem *ioaddr = tp->mmio_addr;
1146 u8 options;
1147 u32 wolopts = 0;
1148
1149 options = RTL_R8(Config1);
1150 if (!(options & PMEnable))
1151 return 0;
1152
1153 options = RTL_R8(Config3);
1154 if (options & LinkUp)
1155 wolopts |= WAKE_PHY;
1156 if (options & MagicPacket)
1157 wolopts |= WAKE_MAGIC;
1158
1159 options = RTL_R8(Config5);
1160 if (options & UWF)
1161 wolopts |= WAKE_UCAST;
1162 if (options & BWF)
1163 wolopts |= WAKE_BCAST;
1164 if (options & MWF)
1165 wolopts |= WAKE_MCAST;
1166
1167 return wolopts;
1168}
1169
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001170static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1171{
1172 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001173
1174 spin_lock_irq(&tp->lock);
1175
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001176 wol->supported = WAKE_ANY;
1177 wol->wolopts = __rtl8169_get_wol(tp);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001178
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001179 spin_unlock_irq(&tp->lock);
1180}
1181
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001182static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001183{
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001184 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu07d3f512007-02-21 22:40:46 +01001185 unsigned int i;
Alexey Dobriyan350f7592009-11-25 15:54:21 -08001186 static const struct {
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001187 u32 opt;
1188 u16 reg;
1189 u8 mask;
1190 } cfg[] = {
1191 { WAKE_ANY, Config1, PMEnable },
1192 { WAKE_PHY, Config3, LinkUp },
1193 { WAKE_MAGIC, Config3, MagicPacket },
1194 { WAKE_UCAST, Config5, UWF },
1195 { WAKE_BCAST, Config5, BWF },
1196 { WAKE_MCAST, Config5, MWF },
1197 { WAKE_ANY, Config5, LanWake }
1198 };
1199
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001200 RTL_W8(Cfg9346, Cfg9346_Unlock);
1201
1202 for (i = 0; i < ARRAY_SIZE(cfg); i++) {
1203 u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001204 if (wolopts & cfg[i].opt)
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001205 options |= cfg[i].mask;
1206 RTL_W8(cfg[i].reg, options);
1207 }
1208
1209 RTL_W8(Cfg9346, Cfg9346_Lock);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001210}
1211
1212static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1213{
1214 struct rtl8169_private *tp = netdev_priv(dev);
1215
1216 spin_lock_irq(&tp->lock);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001217
Francois Romieuf23e7fd2007-10-04 22:36:14 +02001218 if (wol->wolopts)
1219 tp->features |= RTL_FEATURE_WOL;
1220 else
1221 tp->features &= ~RTL_FEATURE_WOL;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00001222 __rtl8169_set_wol(tp, wol->wolopts);
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001223 spin_unlock_irq(&tp->lock);
1224
françois romieuea809072010-11-08 13:23:58 +00001225 device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1226
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001227 return 0;
1228}
1229
Francois Romieu31bd2042011-04-26 18:58:59 +02001230static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1231{
Francois Romieu85bffe62011-04-27 08:22:39 +02001232 return rtl_chip_infos[tp->mac_version].fw_name;
Francois Romieu31bd2042011-04-26 18:58:59 +02001233}
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235static void rtl8169_get_drvinfo(struct net_device *dev,
1236 struct ethtool_drvinfo *info)
1237{
1238 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieub6ffd972011-06-17 17:00:05 +02001239 struct rtl_fw *rtl_fw = tp->rtl_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 strcpy(info->driver, MODULENAME);
1242 strcpy(info->version, RTL8169_VERSION);
1243 strcpy(info->bus_info, pci_name(tp->pci_dev));
Francois Romieu1c361ef2011-06-17 17:16:24 +02001244 BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
1245 strcpy(info->fw_version, IS_ERR_OR_NULL(rtl_fw) ? "N/A" :
1246 rtl_fw->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
1249static int rtl8169_get_regs_len(struct net_device *dev)
1250{
1251 return R8169_REGS_SIZE;
1252}
1253
1254static int rtl8169_set_speed_tbi(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001255 u8 autoneg, u16 speed, u8 duplex, u32 ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
1257 struct rtl8169_private *tp = netdev_priv(dev);
1258 void __iomem *ioaddr = tp->mmio_addr;
1259 int ret = 0;
1260 u32 reg;
1261
1262 reg = RTL_R32(TBICSR);
1263 if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1264 (duplex == DUPLEX_FULL)) {
1265 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1266 } else if (autoneg == AUTONEG_ENABLE)
1267 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1268 else {
Joe Perchesbf82c182010-02-09 11:49:50 +00001269 netif_warn(tp, link, dev,
1270 "incorrect speed setting refused in TBI mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 ret = -EOPNOTSUPP;
1272 }
1273
1274 return ret;
1275}
1276
1277static int rtl8169_set_speed_xmii(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001278 u8 autoneg, u16 speed, u8 duplex, u32 adv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 struct rtl8169_private *tp = netdev_priv(dev);
françois romieu3577aa12009-05-19 10:46:48 +00001281 int giga_ctrl, bmcr;
Oliver Neukum54405cd2011-01-06 21:55:13 +01001282 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Hayes Wang716b50a2011-02-22 17:26:18 +08001284 rtl_writephy(tp, 0x1f, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 if (autoneg == AUTONEG_ENABLE) {
françois romieu3577aa12009-05-19 10:46:48 +00001287 int auto_nego;
1288
françois romieu4da19632011-01-03 15:07:55 +00001289 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
Oliver Neukum54405cd2011-01-06 21:55:13 +01001290 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1291 ADVERTISE_100HALF | ADVERTISE_100FULL);
1292
1293 if (adv & ADVERTISED_10baseT_Half)
1294 auto_nego |= ADVERTISE_10HALF;
1295 if (adv & ADVERTISED_10baseT_Full)
1296 auto_nego |= ADVERTISE_10FULL;
1297 if (adv & ADVERTISED_100baseT_Half)
1298 auto_nego |= ADVERTISE_100HALF;
1299 if (adv & ADVERTISED_100baseT_Full)
1300 auto_nego |= ADVERTISE_100FULL;
1301
françois romieu3577aa12009-05-19 10:46:48 +00001302 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1303
françois romieu4da19632011-01-03 15:07:55 +00001304 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
françois romieu3577aa12009-05-19 10:46:48 +00001305 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1306
1307 /* The 8100e/8101e/8102e do Fast Ethernet only. */
Francois Romieu826e6cb2011-03-11 20:30:24 +01001308 if (tp->mii.supports_gmii) {
Oliver Neukum54405cd2011-01-06 21:55:13 +01001309 if (adv & ADVERTISED_1000baseT_Half)
1310 giga_ctrl |= ADVERTISE_1000HALF;
1311 if (adv & ADVERTISED_1000baseT_Full)
1312 giga_ctrl |= ADVERTISE_1000FULL;
1313 } else if (adv & (ADVERTISED_1000baseT_Half |
1314 ADVERTISED_1000baseT_Full)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00001315 netif_info(tp, link, dev,
1316 "PHY does not support 1000Mbps\n");
Oliver Neukum54405cd2011-01-06 21:55:13 +01001317 goto out;
Francois Romieubcf0bf92006-07-26 23:14:13 +02001318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
françois romieu3577aa12009-05-19 10:46:48 +00001320 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Francois Romieu623a1592006-05-14 12:42:14 +02001321
françois romieu4da19632011-01-03 15:07:55 +00001322 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1323 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
françois romieu3577aa12009-05-19 10:46:48 +00001324 } else {
1325 giga_ctrl = 0;
1326
1327 if (speed == SPEED_10)
1328 bmcr = 0;
1329 else if (speed == SPEED_100)
1330 bmcr = BMCR_SPEED100;
1331 else
Oliver Neukum54405cd2011-01-06 21:55:13 +01001332 goto out;
françois romieu3577aa12009-05-19 10:46:48 +00001333
1334 if (duplex == DUPLEX_FULL)
1335 bmcr |= BMCR_FULLDPLX;
Roger So2584fbc2007-07-31 23:52:42 +02001336 }
1337
françois romieu4da19632011-01-03 15:07:55 +00001338 rtl_writephy(tp, MII_BMCR, bmcr);
françois romieu3577aa12009-05-19 10:46:48 +00001339
Francois Romieucecb5fd2011-04-01 10:21:07 +02001340 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1341 tp->mac_version == RTL_GIGA_MAC_VER_03) {
françois romieu3577aa12009-05-19 10:46:48 +00001342 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
françois romieu4da19632011-01-03 15:07:55 +00001343 rtl_writephy(tp, 0x17, 0x2138);
1344 rtl_writephy(tp, 0x0e, 0x0260);
françois romieu3577aa12009-05-19 10:46:48 +00001345 } else {
françois romieu4da19632011-01-03 15:07:55 +00001346 rtl_writephy(tp, 0x17, 0x2108);
1347 rtl_writephy(tp, 0x0e, 0x0000);
françois romieu3577aa12009-05-19 10:46:48 +00001348 }
1349 }
1350
Oliver Neukum54405cd2011-01-06 21:55:13 +01001351 rc = 0;
1352out:
1353 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
1355
1356static int rtl8169_set_speed(struct net_device *dev,
Oliver Neukum54405cd2011-01-06 21:55:13 +01001357 u8 autoneg, u16 speed, u8 duplex, u32 advertising)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
1359 struct rtl8169_private *tp = netdev_priv(dev);
1360 int ret;
1361
Oliver Neukum54405cd2011-01-06 21:55:13 +01001362 ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
Francois Romieu4876cc12011-03-11 21:07:11 +01001363 if (ret < 0)
1364 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Francois Romieu4876cc12011-03-11 21:07:11 +01001366 if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
1367 (advertising & ADVERTISED_1000baseT_Full)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
Francois Romieu4876cc12011-03-11 21:07:11 +01001369 }
1370out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return ret;
1372}
1373
1374static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1375{
1376 struct rtl8169_private *tp = netdev_priv(dev);
1377 unsigned long flags;
1378 int ret;
1379
Francois Romieu4876cc12011-03-11 21:07:11 +01001380 del_timer_sync(&tp->timer);
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 spin_lock_irqsave(&tp->lock, flags);
Francois Romieucecb5fd2011-04-01 10:21:07 +02001383 ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
David Decotigny25db0332011-04-27 18:32:39 +00001384 cmd->duplex, cmd->advertising);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieu5b0384f2006-08-16 16:00:01 +02001386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return ret;
1388}
1389
Michał Mirosław350fb322011-04-08 06:35:56 +00001390static u32 rtl8169_fix_features(struct net_device *dev, u32 features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
Francois Romieu2b7b4312011-04-18 22:53:24 -07001392 if (dev->mtu > TD_MSS_MAX)
Michał Mirosław350fb322011-04-08 06:35:56 +00001393 features &= ~NETIF_F_ALL_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Michał Mirosław350fb322011-04-08 06:35:56 +00001395 return features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396}
1397
Michał Mirosław350fb322011-04-08 06:35:56 +00001398static int rtl8169_set_features(struct net_device *dev, u32 features)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
1400 struct rtl8169_private *tp = netdev_priv(dev);
1401 void __iomem *ioaddr = tp->mmio_addr;
1402 unsigned long flags;
1403
1404 spin_lock_irqsave(&tp->lock, flags);
1405
Michał Mirosław350fb322011-04-08 06:35:56 +00001406 if (features & NETIF_F_RXCSUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 tp->cp_cmd |= RxChkSum;
1408 else
1409 tp->cp_cmd &= ~RxChkSum;
1410
Michał Mirosław350fb322011-04-08 06:35:56 +00001411 if (dev->features & NETIF_F_HW_VLAN_RX)
1412 tp->cp_cmd |= RxVlan;
1413 else
1414 tp->cp_cmd &= ~RxVlan;
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 RTL_W16(CPlusCmd, tp->cp_cmd);
1417 RTL_R16(CPlusCmd);
1418
1419 spin_unlock_irqrestore(&tp->lock, flags);
1420
1421 return 0;
1422}
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1425 struct sk_buff *skb)
1426{
Jesse Grosseab6d182010-10-20 13:56:03 +00001427 return (vlan_tx_tag_present(skb)) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1429}
1430
Francois Romieu7a8fc772011-03-01 17:18:33 +01001431static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
1433 u32 opts2 = le32_to_cpu(desc->opts2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Francois Romieu7a8fc772011-03-01 17:18:33 +01001435 if (opts2 & RxVlanTag)
1436 __vlan_hwaccel_put_tag(skb, swab16(opts2 & 0xffff));
Eric Dumazet2edae082010-09-06 18:46:39 +00001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 desc->opts2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439}
1440
Francois Romieuccdffb92008-07-26 14:26:06 +02001441static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
1443 struct rtl8169_private *tp = netdev_priv(dev);
1444 void __iomem *ioaddr = tp->mmio_addr;
1445 u32 status;
1446
1447 cmd->supported =
1448 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1449 cmd->port = PORT_FIBRE;
1450 cmd->transceiver = XCVR_INTERNAL;
1451
1452 status = RTL_R32(TBICSR);
1453 cmd->advertising = (status & TBINwEnable) ? ADVERTISED_Autoneg : 0;
1454 cmd->autoneg = !!(status & TBINwEnable);
1455
David Decotigny70739492011-04-27 18:32:40 +00001456 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 cmd->duplex = DUPLEX_FULL; /* Always set */
Francois Romieuccdffb92008-07-26 14:26:06 +02001458
1459 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460}
1461
Francois Romieuccdffb92008-07-26 14:26:06 +02001462static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
1464 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Francois Romieuccdffb92008-07-26 14:26:06 +02001466 return mii_ethtool_gset(&tp->mii, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
1468
1469static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1470{
1471 struct rtl8169_private *tp = netdev_priv(dev);
1472 unsigned long flags;
Francois Romieuccdffb92008-07-26 14:26:06 +02001473 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 spin_lock_irqsave(&tp->lock, flags);
1476
Francois Romieuccdffb92008-07-26 14:26:06 +02001477 rc = tp->get_settings(dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 spin_unlock_irqrestore(&tp->lock, flags);
Francois Romieuccdffb92008-07-26 14:26:06 +02001480 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481}
1482
1483static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1484 void *p)
1485{
Francois Romieu5b0384f2006-08-16 16:00:01 +02001486 struct rtl8169_private *tp = netdev_priv(dev);
1487 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Francois Romieu5b0384f2006-08-16 16:00:01 +02001489 if (regs->len > R8169_REGS_SIZE)
1490 regs->len = R8169_REGS_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Francois Romieu5b0384f2006-08-16 16:00:01 +02001492 spin_lock_irqsave(&tp->lock, flags);
1493 memcpy_fromio(p, tp->mmio_addr, regs->len);
1494 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001497static u32 rtl8169_get_msglevel(struct net_device *dev)
1498{
1499 struct rtl8169_private *tp = netdev_priv(dev);
1500
1501 return tp->msg_enable;
1502}
1503
1504static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1505{
1506 struct rtl8169_private *tp = netdev_priv(dev);
1507
1508 tp->msg_enable = value;
1509}
1510
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001511static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1512 "tx_packets",
1513 "rx_packets",
1514 "tx_errors",
1515 "rx_errors",
1516 "rx_missed",
1517 "align_errors",
1518 "tx_single_collisions",
1519 "tx_multi_collisions",
1520 "unicast",
1521 "broadcast",
1522 "multicast",
1523 "tx_aborted",
1524 "tx_underrun",
1525};
1526
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001527static int rtl8169_get_sset_count(struct net_device *dev, int sset)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001528{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001529 switch (sset) {
1530 case ETH_SS_STATS:
1531 return ARRAY_SIZE(rtl8169_gstrings);
1532 default:
1533 return -EOPNOTSUPP;
1534 }
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001535}
1536
Ivan Vecera355423d2009-02-06 21:49:57 -08001537static void rtl8169_update_counters(struct net_device *dev)
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001538{
1539 struct rtl8169_private *tp = netdev_priv(dev);
1540 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieucecb5fd2011-04-01 10:21:07 +02001541 struct device *d = &tp->pci_dev->dev;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001542 struct rtl8169_counters *counters;
1543 dma_addr_t paddr;
1544 u32 cmd;
Ivan Vecera355423d2009-02-06 21:49:57 -08001545 int wait = 1000;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001546
Ivan Vecera355423d2009-02-06 21:49:57 -08001547 /*
1548 * Some chips are unable to dump tally counters when the receiver
1549 * is disabled.
1550 */
1551 if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1552 return;
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001553
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001554 counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001555 if (!counters)
1556 return;
1557
1558 RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07001559 cmd = (u64)paddr & DMA_BIT_MASK(32);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001560 RTL_W32(CounterAddrLow, cmd);
1561 RTL_W32(CounterAddrLow, cmd | CounterDump);
1562
Ivan Vecera355423d2009-02-06 21:49:57 -08001563 while (wait--) {
1564 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
Ivan Vecera355423d2009-02-06 21:49:57 -08001565 memcpy(&tp->counters, counters, sizeof(*counters));
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001566 break;
Ivan Vecera355423d2009-02-06 21:49:57 -08001567 }
1568 udelay(10);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001569 }
1570
1571 RTL_W32(CounterAddrLow, 0);
1572 RTL_W32(CounterAddrHigh, 0);
1573
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00001574 dma_free_coherent(d, sizeof(*counters), counters, paddr);
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001575}
1576
Ivan Vecera355423d2009-02-06 21:49:57 -08001577static void rtl8169_get_ethtool_stats(struct net_device *dev,
1578 struct ethtool_stats *stats, u64 *data)
1579{
1580 struct rtl8169_private *tp = netdev_priv(dev);
1581
1582 ASSERT_RTNL();
1583
1584 rtl8169_update_counters(dev);
1585
1586 data[0] = le64_to_cpu(tp->counters.tx_packets);
1587 data[1] = le64_to_cpu(tp->counters.rx_packets);
1588 data[2] = le64_to_cpu(tp->counters.tx_errors);
1589 data[3] = le32_to_cpu(tp->counters.rx_errors);
1590 data[4] = le16_to_cpu(tp->counters.rx_missed);
1591 data[5] = le16_to_cpu(tp->counters.align_errors);
1592 data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1593 data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1594 data[8] = le64_to_cpu(tp->counters.rx_unicast);
1595 data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1596 data[10] = le32_to_cpu(tp->counters.rx_multicast);
1597 data[11] = le16_to_cpu(tp->counters.tx_aborted);
1598 data[12] = le16_to_cpu(tp->counters.tx_underun);
1599}
1600
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001601static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1602{
1603 switch(stringset) {
1604 case ETH_SS_STATS:
1605 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1606 break;
1607 }
1608}
1609
Jeff Garzik7282d492006-09-13 14:30:00 -04001610static const struct ethtool_ops rtl8169_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 .get_drvinfo = rtl8169_get_drvinfo,
1612 .get_regs_len = rtl8169_get_regs_len,
1613 .get_link = ethtool_op_get_link,
1614 .get_settings = rtl8169_get_settings,
1615 .set_settings = rtl8169_set_settings,
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02001616 .get_msglevel = rtl8169_get_msglevel,
1617 .set_msglevel = rtl8169_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 .get_regs = rtl8169_get_regs,
Francois Romieu61a4dcc2006-02-23 00:55:25 +01001619 .get_wol = rtl8169_get_wol,
1620 .set_wol = rtl8169_set_wol,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001621 .get_strings = rtl8169_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001622 .get_sset_count = rtl8169_get_sset_count,
Stephen Hemmingerd4a3a0f2005-05-27 21:11:56 +02001623 .get_ethtool_stats = rtl8169_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624};
1625
Francois Romieu07d3f512007-02-21 22:40:46 +01001626static void rtl8169_get_mac_version(struct rtl8169_private *tp,
Francois Romieu5d320a22011-05-08 17:47:36 +02001627 struct net_device *dev, u8 default_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628{
Francois Romieu5d320a22011-05-08 17:47:36 +02001629 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01001630 /*
1631 * The driver currently handles the 8168Bf and the 8168Be identically
1632 * but they can be identified more specifically through the test below
1633 * if needed:
1634 *
1635 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
Francois Romieu01272152007-02-20 22:58:51 +01001636 *
1637 * Same thing for the 8101Eb and the 8101Ec:
1638 *
1639 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
Francois Romieu0e485152007-02-20 00:00:26 +01001640 */
Francois Romieu37441002011-06-17 22:58:54 +02001641 static const struct rtl_mac_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 u32 mask;
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001643 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 int mac_version;
1645 } mac_info[] = {
hayeswang01dc7fe2011-03-21 01:50:28 +00001646 /* 8168E family. */
1647 { 0x7cf00000, 0x2c200000, RTL_GIGA_MAC_VER_33 },
1648 { 0x7cf00000, 0x2c100000, RTL_GIGA_MAC_VER_32 },
1649 { 0x7c800000, 0x2c000000, RTL_GIGA_MAC_VER_33 },
1650
Francois Romieu5b538df2008-07-20 16:22:45 +02001651 /* 8168D family. */
françois romieudaf9df62009-10-07 12:44:20 +00001652 { 0x7cf00000, 0x28300000, RTL_GIGA_MAC_VER_26 },
1653 { 0x7cf00000, 0x28100000, RTL_GIGA_MAC_VER_25 },
françois romieudaf9df62009-10-07 12:44:20 +00001654 { 0x7c800000, 0x28000000, RTL_GIGA_MAC_VER_26 },
Francois Romieu5b538df2008-07-20 16:22:45 +02001655
françois romieue6de30d2011-01-03 15:08:37 +00001656 /* 8168DP family. */
1657 { 0x7cf00000, 0x28800000, RTL_GIGA_MAC_VER_27 },
1658 { 0x7cf00000, 0x28a00000, RTL_GIGA_MAC_VER_28 },
hayeswang4804b3b2011-03-21 01:50:29 +00001659 { 0x7cf00000, 0x28b00000, RTL_GIGA_MAC_VER_31 },
françois romieue6de30d2011-01-03 15:08:37 +00001660
Francois Romieuef808d52008-06-29 13:10:54 +02001661 /* 8168C family. */
Francois Romieu17c99292010-07-11 17:10:09 -07001662 { 0x7cf00000, 0x3cb00000, RTL_GIGA_MAC_VER_24 },
Francois Romieuef3386f2008-06-29 12:24:30 +02001663 { 0x7cf00000, 0x3c900000, RTL_GIGA_MAC_VER_23 },
Francois Romieuef808d52008-06-29 13:10:54 +02001664 { 0x7cf00000, 0x3c800000, RTL_GIGA_MAC_VER_18 },
Francois Romieu7f3e3d32008-07-20 18:53:20 +02001665 { 0x7c800000, 0x3c800000, RTL_GIGA_MAC_VER_24 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001666 { 0x7cf00000, 0x3c000000, RTL_GIGA_MAC_VER_19 },
1667 { 0x7cf00000, 0x3c200000, RTL_GIGA_MAC_VER_20 },
Francois Romieu197ff762008-06-28 13:16:02 +02001668 { 0x7cf00000, 0x3c300000, RTL_GIGA_MAC_VER_21 },
Francois Romieu6fb07052008-06-29 11:54:28 +02001669 { 0x7cf00000, 0x3c400000, RTL_GIGA_MAC_VER_22 },
Francois Romieuef808d52008-06-29 13:10:54 +02001670 { 0x7c800000, 0x3c000000, RTL_GIGA_MAC_VER_22 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001671
1672 /* 8168B family. */
1673 { 0x7cf00000, 0x38000000, RTL_GIGA_MAC_VER_12 },
1674 { 0x7cf00000, 0x38500000, RTL_GIGA_MAC_VER_17 },
1675 { 0x7c800000, 0x38000000, RTL_GIGA_MAC_VER_17 },
1676 { 0x7c800000, 0x30000000, RTL_GIGA_MAC_VER_11 },
1677
1678 /* 8101 family. */
hayeswang36a0e6c2011-03-21 01:50:30 +00001679 { 0x7cf00000, 0x40b00000, RTL_GIGA_MAC_VER_30 },
Hayes Wang5a5e4442011-02-22 17:26:21 +08001680 { 0x7cf00000, 0x40a00000, RTL_GIGA_MAC_VER_30 },
1681 { 0x7cf00000, 0x40900000, RTL_GIGA_MAC_VER_29 },
1682 { 0x7c800000, 0x40800000, RTL_GIGA_MAC_VER_30 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001683 { 0x7cf00000, 0x34a00000, RTL_GIGA_MAC_VER_09 },
1684 { 0x7cf00000, 0x24a00000, RTL_GIGA_MAC_VER_09 },
1685 { 0x7cf00000, 0x34900000, RTL_GIGA_MAC_VER_08 },
1686 { 0x7cf00000, 0x24900000, RTL_GIGA_MAC_VER_08 },
1687 { 0x7cf00000, 0x34800000, RTL_GIGA_MAC_VER_07 },
1688 { 0x7cf00000, 0x24800000, RTL_GIGA_MAC_VER_07 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001689 { 0x7cf00000, 0x34000000, RTL_GIGA_MAC_VER_13 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001690 { 0x7cf00000, 0x34300000, RTL_GIGA_MAC_VER_10 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001691 { 0x7cf00000, 0x34200000, RTL_GIGA_MAC_VER_16 },
Francois Romieu2857ffb2008-08-02 21:08:49 +02001692 { 0x7c800000, 0x34800000, RTL_GIGA_MAC_VER_09 },
1693 { 0x7c800000, 0x24800000, RTL_GIGA_MAC_VER_09 },
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001694 { 0x7c800000, 0x34000000, RTL_GIGA_MAC_VER_16 },
1695 /* FIXME: where did these entries come from ? -- FR */
1696 { 0xfc800000, 0x38800000, RTL_GIGA_MAC_VER_15 },
1697 { 0xfc800000, 0x30800000, RTL_GIGA_MAC_VER_14 },
1698
1699 /* 8110 family. */
1700 { 0xfc800000, 0x98000000, RTL_GIGA_MAC_VER_06 },
1701 { 0xfc800000, 0x18000000, RTL_GIGA_MAC_VER_05 },
1702 { 0xfc800000, 0x10000000, RTL_GIGA_MAC_VER_04 },
1703 { 0xfc800000, 0x04000000, RTL_GIGA_MAC_VER_03 },
1704 { 0xfc800000, 0x00800000, RTL_GIGA_MAC_VER_02 },
1705 { 0xfc800000, 0x00000000, RTL_GIGA_MAC_VER_01 },
1706
Jean Delvaref21b75e2009-05-26 20:54:48 -07001707 /* Catch-all */
1708 { 0x00000000, 0x00000000, RTL_GIGA_MAC_NONE }
Francois Romieu37441002011-06-17 22:58:54 +02001709 };
1710 const struct rtl_mac_info *p = mac_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 u32 reg;
1712
Francois Romieue3cf0cc2007-08-17 14:55:46 +02001713 reg = RTL_R32(TxConfig);
1714 while ((reg & p->mask) != p->val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 p++;
1716 tp->mac_version = p->mac_version;
Francois Romieu5d320a22011-05-08 17:47:36 +02001717
1718 if (tp->mac_version == RTL_GIGA_MAC_NONE) {
1719 netif_notice(tp, probe, dev,
1720 "unknown MAC, using family default\n");
1721 tp->mac_version = default_version;
1722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723}
1724
1725static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1726{
Francois Romieubcf0bf92006-07-26 23:14:13 +02001727 dprintk("mac_version = 0x%02x\n", tp->mac_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728}
1729
Francois Romieu867763c2007-08-17 18:21:58 +02001730struct phy_reg {
1731 u16 reg;
1732 u16 val;
1733};
1734
françois romieu4da19632011-01-03 15:07:55 +00001735static void rtl_writephy_batch(struct rtl8169_private *tp,
1736 const struct phy_reg *regs, int len)
Francois Romieu867763c2007-08-17 18:21:58 +02001737{
1738 while (len-- > 0) {
françois romieu4da19632011-01-03 15:07:55 +00001739 rtl_writephy(tp, regs->reg, regs->val);
Francois Romieu867763c2007-08-17 18:21:58 +02001740 regs++;
1741 }
1742}
1743
françois romieubca03d52011-01-03 15:07:31 +00001744#define PHY_READ 0x00000000
1745#define PHY_DATA_OR 0x10000000
1746#define PHY_DATA_AND 0x20000000
1747#define PHY_BJMPN 0x30000000
1748#define PHY_READ_EFUSE 0x40000000
1749#define PHY_READ_MAC_BYTE 0x50000000
1750#define PHY_WRITE_MAC_BYTE 0x60000000
1751#define PHY_CLEAR_READCOUNT 0x70000000
1752#define PHY_WRITE 0x80000000
1753#define PHY_READCOUNT_EQ_SKIP 0x90000000
1754#define PHY_COMP_EQ_SKIPN 0xa0000000
1755#define PHY_COMP_NEQ_SKIPN 0xb0000000
1756#define PHY_WRITE_PREVIOUS 0xc0000000
1757#define PHY_SKIPN 0xd0000000
1758#define PHY_DELAY_MS 0xe0000000
1759#define PHY_WRITE_ERI_WORD 0xf0000000
1760
Hayes Wang960aee62011-06-18 11:37:48 +02001761struct fw_info {
1762 u32 magic;
1763 char version[RTL_VER_SIZE];
1764 __le32 fw_start;
1765 __le32 fw_len;
1766 u8 chksum;
1767} __packed;
1768
Francois Romieu1c361ef2011-06-17 17:16:24 +02001769#define FW_OPCODE_SIZE sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
1770
1771static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
françois romieubca03d52011-01-03 15:07:31 +00001772{
Francois Romieub6ffd972011-06-17 17:00:05 +02001773 const struct firmware *fw = rtl_fw->fw;
Hayes Wang960aee62011-06-18 11:37:48 +02001774 struct fw_info *fw_info = (struct fw_info *)fw->data;
Francois Romieu1c361ef2011-06-17 17:16:24 +02001775 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
1776 char *version = rtl_fw->version;
1777 bool rc = false;
françois romieubca03d52011-01-03 15:07:31 +00001778
Francois Romieu1c361ef2011-06-17 17:16:24 +02001779 if (fw->size < FW_OPCODE_SIZE)
1780 goto out;
Hayes Wang960aee62011-06-18 11:37:48 +02001781
1782 if (!fw_info->magic) {
1783 size_t i, size, start;
1784 u8 checksum = 0;
1785
1786 if (fw->size < sizeof(*fw_info))
1787 goto out;
1788
1789 for (i = 0; i < fw->size; i++)
1790 checksum += fw->data[i];
1791 if (checksum != 0)
1792 goto out;
1793
1794 start = le32_to_cpu(fw_info->fw_start);
1795 if (start > fw->size)
1796 goto out;
1797
1798 size = le32_to_cpu(fw_info->fw_len);
1799 if (size > (fw->size - start) / FW_OPCODE_SIZE)
1800 goto out;
1801
1802 memcpy(version, fw_info->version, RTL_VER_SIZE);
1803
1804 pa->code = (__le32 *)(fw->data + start);
1805 pa->size = size;
1806 } else {
Francois Romieu1c361ef2011-06-17 17:16:24 +02001807 if (fw->size % FW_OPCODE_SIZE)
1808 goto out;
1809
1810 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
1811
1812 pa->code = (__le32 *)fw->data;
1813 pa->size = fw->size / FW_OPCODE_SIZE;
1814 }
1815 version[RTL_VER_SIZE - 1] = 0;
1816
1817 rc = true;
1818out:
1819 return rc;
1820}
1821
Francois Romieufd112f22011-06-18 00:10:29 +02001822static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
1823 struct rtl_fw_phy_action *pa)
Francois Romieu1c361ef2011-06-17 17:16:24 +02001824{
Francois Romieufd112f22011-06-18 00:10:29 +02001825 bool rc = false;
Francois Romieu1c361ef2011-06-17 17:16:24 +02001826 size_t index;
1827
Francois Romieu1c361ef2011-06-17 17:16:24 +02001828 for (index = 0; index < pa->size; index++) {
1829 u32 action = le32_to_cpu(pa->code[index]);
hayeswang42b82dc2011-01-10 02:07:25 +00001830 u32 regno = (action & 0x0fff0000) >> 16;
françois romieubca03d52011-01-03 15:07:31 +00001831
hayeswang42b82dc2011-01-10 02:07:25 +00001832 switch(action & 0xf0000000) {
1833 case PHY_READ:
1834 case PHY_DATA_OR:
1835 case PHY_DATA_AND:
1836 case PHY_READ_EFUSE:
1837 case PHY_CLEAR_READCOUNT:
1838 case PHY_WRITE:
1839 case PHY_WRITE_PREVIOUS:
1840 case PHY_DELAY_MS:
françois romieubca03d52011-01-03 15:07:31 +00001841 break;
1842
hayeswang42b82dc2011-01-10 02:07:25 +00001843 case PHY_BJMPN:
1844 if (regno > index) {
Francois Romieufd112f22011-06-18 00:10:29 +02001845 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001846 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02001847 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00001848 }
1849 break;
1850 case PHY_READCOUNT_EQ_SKIP:
Francois Romieu1c361ef2011-06-17 17:16:24 +02001851 if (index + 2 >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02001852 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001853 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02001854 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00001855 }
1856 break;
1857 case PHY_COMP_EQ_SKIPN:
1858 case PHY_COMP_NEQ_SKIPN:
1859 case PHY_SKIPN:
Francois Romieu1c361ef2011-06-17 17:16:24 +02001860 if (index + 1 + regno >= pa->size) {
Francois Romieufd112f22011-06-18 00:10:29 +02001861 netif_err(tp, ifup, tp->dev,
Francois Romieucecb5fd2011-04-01 10:21:07 +02001862 "Out of range of firmware\n");
Francois Romieufd112f22011-06-18 00:10:29 +02001863 goto out;
hayeswang42b82dc2011-01-10 02:07:25 +00001864 }
1865 break;
1866
1867 case PHY_READ_MAC_BYTE:
1868 case PHY_WRITE_MAC_BYTE:
1869 case PHY_WRITE_ERI_WORD:
1870 default:
Francois Romieufd112f22011-06-18 00:10:29 +02001871 netif_err(tp, ifup, tp->dev,
hayeswang42b82dc2011-01-10 02:07:25 +00001872 "Invalid action 0x%08x\n", action);
Francois Romieufd112f22011-06-18 00:10:29 +02001873 goto out;
françois romieubca03d52011-01-03 15:07:31 +00001874 }
1875 }
Francois Romieufd112f22011-06-18 00:10:29 +02001876 rc = true;
1877out:
1878 return rc;
1879}
françois romieubca03d52011-01-03 15:07:31 +00001880
Francois Romieufd112f22011-06-18 00:10:29 +02001881static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
1882{
1883 struct net_device *dev = tp->dev;
1884 int rc = -EINVAL;
1885
1886 if (!rtl_fw_format_ok(tp, rtl_fw)) {
1887 netif_err(tp, ifup, dev, "invalid firwmare\n");
1888 goto out;
1889 }
1890
1891 if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
1892 rc = 0;
1893out:
1894 return rc;
1895}
1896
1897static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
1898{
1899 struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
1900 u32 predata, count;
1901 size_t index;
1902
1903 predata = count = 0;
hayeswang42b82dc2011-01-10 02:07:25 +00001904
Francois Romieu1c361ef2011-06-17 17:16:24 +02001905 for (index = 0; index < pa->size; ) {
1906 u32 action = le32_to_cpu(pa->code[index]);
françois romieubca03d52011-01-03 15:07:31 +00001907 u32 data = action & 0x0000ffff;
hayeswang42b82dc2011-01-10 02:07:25 +00001908 u32 regno = (action & 0x0fff0000) >> 16;
1909
1910 if (!action)
1911 break;
françois romieubca03d52011-01-03 15:07:31 +00001912
1913 switch(action & 0xf0000000) {
hayeswang42b82dc2011-01-10 02:07:25 +00001914 case PHY_READ:
1915 predata = rtl_readphy(tp, regno);
1916 count++;
1917 index++;
françois romieubca03d52011-01-03 15:07:31 +00001918 break;
hayeswang42b82dc2011-01-10 02:07:25 +00001919 case PHY_DATA_OR:
1920 predata |= data;
1921 index++;
1922 break;
1923 case PHY_DATA_AND:
1924 predata &= data;
1925 index++;
1926 break;
1927 case PHY_BJMPN:
1928 index -= regno;
1929 break;
1930 case PHY_READ_EFUSE:
1931 predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
1932 index++;
1933 break;
1934 case PHY_CLEAR_READCOUNT:
1935 count = 0;
1936 index++;
1937 break;
1938 case PHY_WRITE:
1939 rtl_writephy(tp, regno, data);
1940 index++;
1941 break;
1942 case PHY_READCOUNT_EQ_SKIP:
Francois Romieucecb5fd2011-04-01 10:21:07 +02001943 index += (count == data) ? 2 : 1;
hayeswang42b82dc2011-01-10 02:07:25 +00001944 break;
1945 case PHY_COMP_EQ_SKIPN:
1946 if (predata == data)
1947 index += regno;
1948 index++;
1949 break;
1950 case PHY_COMP_NEQ_SKIPN:
1951 if (predata != data)
1952 index += regno;
1953 index++;
1954 break;
1955 case PHY_WRITE_PREVIOUS:
1956 rtl_writephy(tp, regno, predata);
1957 index++;
1958 break;
1959 case PHY_SKIPN:
1960 index += regno + 1;
1961 break;
1962 case PHY_DELAY_MS:
1963 mdelay(data);
1964 index++;
1965 break;
1966
1967 case PHY_READ_MAC_BYTE:
1968 case PHY_WRITE_MAC_BYTE:
1969 case PHY_WRITE_ERI_WORD:
françois romieubca03d52011-01-03 15:07:31 +00001970 default:
1971 BUG();
1972 }
1973 }
1974}
1975
françois romieuf1e02ed2011-01-13 13:07:53 +00001976static void rtl_release_firmware(struct rtl8169_private *tp)
1977{
Francois Romieub6ffd972011-06-17 17:00:05 +02001978 if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
1979 release_firmware(tp->rtl_fw->fw);
1980 kfree(tp->rtl_fw);
1981 }
1982 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
françois romieuf1e02ed2011-01-13 13:07:53 +00001983}
1984
François Romieu953a12c2011-04-24 17:38:48 +02001985static void rtl_apply_firmware(struct rtl8169_private *tp)
françois romieuf1e02ed2011-01-13 13:07:53 +00001986{
Francois Romieub6ffd972011-06-17 17:00:05 +02001987 struct rtl_fw *rtl_fw = tp->rtl_fw;
françois romieuf1e02ed2011-01-13 13:07:53 +00001988
1989 /* TODO: release firmware once rtl_phy_write_fw signals failures. */
Francois Romieub6ffd972011-06-17 17:00:05 +02001990 if (!IS_ERR_OR_NULL(rtl_fw))
1991 rtl_phy_write_fw(tp, rtl_fw);
François Romieu953a12c2011-04-24 17:38:48 +02001992}
1993
1994static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
1995{
1996 if (rtl_readphy(tp, reg) != val)
1997 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
1998 else
1999 rtl_apply_firmware(tp);
françois romieuf1e02ed2011-01-13 13:07:53 +00002000}
2001
françois romieu4da19632011-01-03 15:07:55 +00002002static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002004 static const struct phy_reg phy_reg_init[] = {
françois romieu0b9b5712009-08-10 19:44:56 +00002005 { 0x1f, 0x0001 },
2006 { 0x06, 0x006e },
2007 { 0x08, 0x0708 },
2008 { 0x15, 0x4000 },
2009 { 0x18, 0x65c7 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
françois romieu0b9b5712009-08-10 19:44:56 +00002011 { 0x1f, 0x0001 },
2012 { 0x03, 0x00a1 },
2013 { 0x02, 0x0008 },
2014 { 0x01, 0x0120 },
2015 { 0x00, 0x1000 },
2016 { 0x04, 0x0800 },
2017 { 0x04, 0x0000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
françois romieu0b9b5712009-08-10 19:44:56 +00002019 { 0x03, 0xff41 },
2020 { 0x02, 0xdf60 },
2021 { 0x01, 0x0140 },
2022 { 0x00, 0x0077 },
2023 { 0x04, 0x7800 },
2024 { 0x04, 0x7000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
françois romieu0b9b5712009-08-10 19:44:56 +00002026 { 0x03, 0x802f },
2027 { 0x02, 0x4f02 },
2028 { 0x01, 0x0409 },
2029 { 0x00, 0xf0f9 },
2030 { 0x04, 0x9800 },
2031 { 0x04, 0x9000 },
2032
2033 { 0x03, 0xdf01 },
2034 { 0x02, 0xdf20 },
2035 { 0x01, 0xff95 },
2036 { 0x00, 0xba00 },
2037 { 0x04, 0xa800 },
2038 { 0x04, 0xa000 },
2039
2040 { 0x03, 0xff41 },
2041 { 0x02, 0xdf20 },
2042 { 0x01, 0x0140 },
2043 { 0x00, 0x00bb },
2044 { 0x04, 0xb800 },
2045 { 0x04, 0xb000 },
2046
2047 { 0x03, 0xdf41 },
2048 { 0x02, 0xdc60 },
2049 { 0x01, 0x6340 },
2050 { 0x00, 0x007d },
2051 { 0x04, 0xd800 },
2052 { 0x04, 0xd000 },
2053
2054 { 0x03, 0xdf01 },
2055 { 0x02, 0xdf20 },
2056 { 0x01, 0x100a },
2057 { 0x00, 0xa0ff },
2058 { 0x04, 0xf800 },
2059 { 0x04, 0xf000 },
2060
2061 { 0x1f, 0x0000 },
2062 { 0x0b, 0x0000 },
2063 { 0x00, 0x9200 }
2064 };
2065
françois romieu4da19632011-01-03 15:07:55 +00002066 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067}
2068
françois romieu4da19632011-01-03 15:07:55 +00002069static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5615d9f2007-08-17 17:50:46 +02002070{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002071 static const struct phy_reg phy_reg_init[] = {
Francois Romieua441d7b2007-08-17 18:26:35 +02002072 { 0x1f, 0x0002 },
2073 { 0x01, 0x90d0 },
2074 { 0x1f, 0x0000 }
2075 };
2076
françois romieu4da19632011-01-03 15:07:55 +00002077 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5615d9f2007-08-17 17:50:46 +02002078}
2079
françois romieu4da19632011-01-03 15:07:55 +00002080static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002081{
2082 struct pci_dev *pdev = tp->pci_dev;
2083 u16 vendor_id, device_id;
2084
2085 pci_read_config_word(pdev, PCI_SUBSYSTEM_VENDOR_ID, &vendor_id);
2086 pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &device_id);
2087
2088 if ((vendor_id != PCI_VENDOR_ID_GIGABYTE) || (device_id != 0xe000))
2089 return;
2090
françois romieu4da19632011-01-03 15:07:55 +00002091 rtl_writephy(tp, 0x1f, 0x0001);
2092 rtl_writephy(tp, 0x10, 0xf01b);
2093 rtl_writephy(tp, 0x1f, 0x0000);
françois romieu2e9558562009-08-10 19:44:19 +00002094}
2095
françois romieu4da19632011-01-03 15:07:55 +00002096static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
françois romieu2e9558562009-08-10 19:44:19 +00002097{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002098 static const struct phy_reg phy_reg_init[] = {
françois romieu2e9558562009-08-10 19:44:19 +00002099 { 0x1f, 0x0001 },
2100 { 0x04, 0x0000 },
2101 { 0x03, 0x00a1 },
2102 { 0x02, 0x0008 },
2103 { 0x01, 0x0120 },
2104 { 0x00, 0x1000 },
2105 { 0x04, 0x0800 },
2106 { 0x04, 0x9000 },
2107 { 0x03, 0x802f },
2108 { 0x02, 0x4f02 },
2109 { 0x01, 0x0409 },
2110 { 0x00, 0xf099 },
2111 { 0x04, 0x9800 },
2112 { 0x04, 0xa000 },
2113 { 0x03, 0xdf01 },
2114 { 0x02, 0xdf20 },
2115 { 0x01, 0xff95 },
2116 { 0x00, 0xba00 },
2117 { 0x04, 0xa800 },
2118 { 0x04, 0xf000 },
2119 { 0x03, 0xdf01 },
2120 { 0x02, 0xdf20 },
2121 { 0x01, 0x101a },
2122 { 0x00, 0xa0ff },
2123 { 0x04, 0xf800 },
2124 { 0x04, 0x0000 },
2125 { 0x1f, 0x0000 },
2126
2127 { 0x1f, 0x0001 },
2128 { 0x10, 0xf41b },
2129 { 0x14, 0xfb54 },
2130 { 0x18, 0xf5c7 },
2131 { 0x1f, 0x0000 },
2132
2133 { 0x1f, 0x0001 },
2134 { 0x17, 0x0cc0 },
2135 { 0x1f, 0x0000 }
2136 };
2137
françois romieu4da19632011-01-03 15:07:55 +00002138 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu2e9558562009-08-10 19:44:19 +00002139
françois romieu4da19632011-01-03 15:07:55 +00002140 rtl8169scd_hw_phy_config_quirk(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002141}
2142
françois romieu4da19632011-01-03 15:07:55 +00002143static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
françois romieu8c7006a2009-08-10 19:43:29 +00002144{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002145 static const struct phy_reg phy_reg_init[] = {
françois romieu8c7006a2009-08-10 19:43:29 +00002146 { 0x1f, 0x0001 },
2147 { 0x04, 0x0000 },
2148 { 0x03, 0x00a1 },
2149 { 0x02, 0x0008 },
2150 { 0x01, 0x0120 },
2151 { 0x00, 0x1000 },
2152 { 0x04, 0x0800 },
2153 { 0x04, 0x9000 },
2154 { 0x03, 0x802f },
2155 { 0x02, 0x4f02 },
2156 { 0x01, 0x0409 },
2157 { 0x00, 0xf099 },
2158 { 0x04, 0x9800 },
2159 { 0x04, 0xa000 },
2160 { 0x03, 0xdf01 },
2161 { 0x02, 0xdf20 },
2162 { 0x01, 0xff95 },
2163 { 0x00, 0xba00 },
2164 { 0x04, 0xa800 },
2165 { 0x04, 0xf000 },
2166 { 0x03, 0xdf01 },
2167 { 0x02, 0xdf20 },
2168 { 0x01, 0x101a },
2169 { 0x00, 0xa0ff },
2170 { 0x04, 0xf800 },
2171 { 0x04, 0x0000 },
2172 { 0x1f, 0x0000 },
2173
2174 { 0x1f, 0x0001 },
2175 { 0x0b, 0x8480 },
2176 { 0x1f, 0x0000 },
2177
2178 { 0x1f, 0x0001 },
2179 { 0x18, 0x67c7 },
2180 { 0x04, 0x2000 },
2181 { 0x03, 0x002f },
2182 { 0x02, 0x4360 },
2183 { 0x01, 0x0109 },
2184 { 0x00, 0x3022 },
2185 { 0x04, 0x2800 },
2186 { 0x1f, 0x0000 },
2187
2188 { 0x1f, 0x0001 },
2189 { 0x17, 0x0cc0 },
2190 { 0x1f, 0x0000 }
2191 };
2192
françois romieu4da19632011-01-03 15:07:55 +00002193 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieu8c7006a2009-08-10 19:43:29 +00002194}
2195
françois romieu4da19632011-01-03 15:07:55 +00002196static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002197{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002198 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002199 { 0x10, 0xf41b },
2200 { 0x1f, 0x0000 }
2201 };
2202
françois romieu4da19632011-01-03 15:07:55 +00002203 rtl_writephy(tp, 0x1f, 0x0001);
2204 rtl_patchphy(tp, 0x16, 1 << 0);
Francois Romieu236b8082008-05-30 16:11:48 +02002205
françois romieu4da19632011-01-03 15:07:55 +00002206 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002207}
2208
françois romieu4da19632011-01-03 15:07:55 +00002209static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu236b8082008-05-30 16:11:48 +02002210{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002211 static const struct phy_reg phy_reg_init[] = {
Francois Romieu236b8082008-05-30 16:11:48 +02002212 { 0x1f, 0x0001 },
2213 { 0x10, 0xf41b },
2214 { 0x1f, 0x0000 }
2215 };
2216
françois romieu4da19632011-01-03 15:07:55 +00002217 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu236b8082008-05-30 16:11:48 +02002218}
2219
françois romieu4da19632011-01-03 15:07:55 +00002220static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002221{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002222 static const struct phy_reg phy_reg_init[] = {
Francois Romieu867763c2007-08-17 18:21:58 +02002223 { 0x1f, 0x0000 },
2224 { 0x1d, 0x0f00 },
2225 { 0x1f, 0x0002 },
2226 { 0x0c, 0x1ec8 },
2227 { 0x1f, 0x0000 }
2228 };
2229
françois romieu4da19632011-01-03 15:07:55 +00002230 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu867763c2007-08-17 18:21:58 +02002231}
2232
françois romieu4da19632011-01-03 15:07:55 +00002233static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieuef3386f2008-06-29 12:24:30 +02002234{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002235 static const struct phy_reg phy_reg_init[] = {
Francois Romieuef3386f2008-06-29 12:24:30 +02002236 { 0x1f, 0x0001 },
2237 { 0x1d, 0x3d98 },
2238 { 0x1f, 0x0000 }
2239 };
2240
françois romieu4da19632011-01-03 15:07:55 +00002241 rtl_writephy(tp, 0x1f, 0x0000);
2242 rtl_patchphy(tp, 0x14, 1 << 5);
2243 rtl_patchphy(tp, 0x0d, 1 << 5);
Francois Romieuef3386f2008-06-29 12:24:30 +02002244
françois romieu4da19632011-01-03 15:07:55 +00002245 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuef3386f2008-06-29 12:24:30 +02002246}
2247
françois romieu4da19632011-01-03 15:07:55 +00002248static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu867763c2007-08-17 18:21:58 +02002249{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002250 static const struct phy_reg phy_reg_init[] = {
Francois Romieua3f80672007-10-18 14:35:11 +02002251 { 0x1f, 0x0001 },
2252 { 0x12, 0x2300 },
Francois Romieu867763c2007-08-17 18:21:58 +02002253 { 0x1f, 0x0002 },
2254 { 0x00, 0x88d4 },
2255 { 0x01, 0x82b1 },
2256 { 0x03, 0x7002 },
2257 { 0x08, 0x9e30 },
2258 { 0x09, 0x01f0 },
2259 { 0x0a, 0x5500 },
2260 { 0x0c, 0x00c8 },
2261 { 0x1f, 0x0003 },
2262 { 0x12, 0xc096 },
2263 { 0x16, 0x000a },
Francois Romieuf50d4272008-05-30 16:07:07 +02002264 { 0x1f, 0x0000 },
2265 { 0x1f, 0x0000 },
2266 { 0x09, 0x2000 },
2267 { 0x09, 0x0000 }
Francois Romieu867763c2007-08-17 18:21:58 +02002268 };
2269
françois romieu4da19632011-01-03 15:07:55 +00002270 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieuf50d4272008-05-30 16:07:07 +02002271
françois romieu4da19632011-01-03 15:07:55 +00002272 rtl_patchphy(tp, 0x14, 1 << 5);
2273 rtl_patchphy(tp, 0x0d, 1 << 5);
2274 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu867763c2007-08-17 18:21:58 +02002275}
2276
françois romieu4da19632011-01-03 15:07:55 +00002277static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu7da97ec2007-10-18 15:20:43 +02002278{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002279 static const struct phy_reg phy_reg_init[] = {
Francois Romieuf50d4272008-05-30 16:07:07 +02002280 { 0x1f, 0x0001 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002281 { 0x12, 0x2300 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002282 { 0x03, 0x802f },
2283 { 0x02, 0x4f02 },
2284 { 0x01, 0x0409 },
2285 { 0x00, 0xf099 },
2286 { 0x04, 0x9800 },
2287 { 0x04, 0x9000 },
2288 { 0x1d, 0x3d98 },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002289 { 0x1f, 0x0002 },
2290 { 0x0c, 0x7eb8 },
Francois Romieuf50d4272008-05-30 16:07:07 +02002291 { 0x06, 0x0761 },
2292 { 0x1f, 0x0003 },
2293 { 0x16, 0x0f0a },
Francois Romieu7da97ec2007-10-18 15:20:43 +02002294 { 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 Romieuf50d4272008-05-30 16:07:07 +02002298
françois romieu4da19632011-01-03 15:07:55 +00002299 rtl_patchphy(tp, 0x16, 1 << 0);
2300 rtl_patchphy(tp, 0x14, 1 << 5);
2301 rtl_patchphy(tp, 0x0d, 1 << 5);
2302 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002303}
2304
françois romieu4da19632011-01-03 15:07:55 +00002305static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu197ff762008-06-28 13:16:02 +02002306{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002307 static const struct phy_reg phy_reg_init[] = {
Francois Romieu197ff762008-06-28 13:16:02 +02002308 { 0x1f, 0x0001 },
2309 { 0x12, 0x2300 },
2310 { 0x1d, 0x3d98 },
2311 { 0x1f, 0x0002 },
2312 { 0x0c, 0x7eb8 },
2313 { 0x06, 0x5461 },
2314 { 0x1f, 0x0003 },
2315 { 0x16, 0x0f0a },
2316 { 0x1f, 0x0000 }
2317 };
2318
françois romieu4da19632011-01-03 15:07:55 +00002319 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu197ff762008-06-28 13:16:02 +02002320
françois romieu4da19632011-01-03 15:07:55 +00002321 rtl_patchphy(tp, 0x16, 1 << 0);
2322 rtl_patchphy(tp, 0x14, 1 << 5);
2323 rtl_patchphy(tp, 0x0d, 1 << 5);
2324 rtl_writephy(tp, 0x1f, 0x0000);
Francois Romieu197ff762008-06-28 13:16:02 +02002325}
2326
françois romieu4da19632011-01-03 15:07:55 +00002327static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu6fb07052008-06-29 11:54:28 +02002328{
françois romieu4da19632011-01-03 15:07:55 +00002329 rtl8168c_3_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002330}
2331
françois romieubca03d52011-01-03 15:07:31 +00002332static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu5b538df2008-07-20 16:22:45 +02002333{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002334 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002335 /* Channel Estimation */
Francois Romieu5b538df2008-07-20 16:22:45 +02002336 { 0x1f, 0x0001 },
françois romieudaf9df62009-10-07 12:44:20 +00002337 { 0x06, 0x4064 },
2338 { 0x07, 0x2863 },
2339 { 0x08, 0x059c },
2340 { 0x09, 0x26b4 },
2341 { 0x0a, 0x6a19 },
2342 { 0x0b, 0xdcc8 },
2343 { 0x10, 0xf06d },
2344 { 0x14, 0x7f68 },
2345 { 0x18, 0x7fd9 },
2346 { 0x1c, 0xf0ff },
2347 { 0x1d, 0x3d9c },
Francois Romieu5b538df2008-07-20 16:22:45 +02002348 { 0x1f, 0x0003 },
françois romieudaf9df62009-10-07 12:44:20 +00002349 { 0x12, 0xf49f },
2350 { 0x13, 0x070b },
2351 { 0x1a, 0x05ad },
françois romieubca03d52011-01-03 15:07:31 +00002352 { 0x14, 0x94c0 },
2353
2354 /*
2355 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002356 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002357 */
Francois Romieu5b538df2008-07-20 16:22:45 +02002358 { 0x1f, 0x0002 },
françois romieudaf9df62009-10-07 12:44:20 +00002359 { 0x06, 0x5561 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002360 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002361 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002362 { 0x06, 0x5561 },
2363
2364 /*
2365 * Can not link to 1Gbps with bad cable
2366 * Decrease SNR threshold form 21.07dB to 19.04dB
2367 */
2368 { 0x1f, 0x0001 },
2369 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002370
2371 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002372 { 0x0d, 0xf880 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002373 };
françois romieubca03d52011-01-03 15:07:31 +00002374 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu5b538df2008-07-20 16:22:45 +02002375
françois romieu4da19632011-01-03 15:07:55 +00002376 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
Francois Romieu5b538df2008-07-20 16:22:45 +02002377
françois romieubca03d52011-01-03 15:07:31 +00002378 /*
2379 * Rx Error Issue
2380 * Fine Tune Switching regulator parameter
2381 */
françois romieu4da19632011-01-03 15:07:55 +00002382 rtl_writephy(tp, 0x1f, 0x0002);
2383 rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2384 rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
françois romieudaf9df62009-10-07 12:44:20 +00002385
françois romieudaf9df62009-10-07 12:44:20 +00002386 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002387 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002388 { 0x1f, 0x0002 },
2389 { 0x05, 0x669a },
Francois Romieu5b538df2008-07-20 16:22:45 +02002390 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002391 { 0x05, 0x8330 },
2392 { 0x06, 0x669a },
2393 { 0x1f, 0x0002 }
2394 };
2395 int val;
2396
françois romieu4da19632011-01-03 15:07:55 +00002397 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002398
françois romieu4da19632011-01-03 15:07:55 +00002399 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002400
2401 if ((val & 0x00ff) != 0x006c) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002402 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002403 0x0065, 0x0066, 0x0067, 0x0068,
2404 0x0069, 0x006a, 0x006b, 0x006c
2405 };
2406 int i;
2407
françois romieu4da19632011-01-03 15:07:55 +00002408 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002409
2410 val &= 0xff00;
2411 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002412 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002413 }
2414 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002415 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002416 { 0x1f, 0x0002 },
2417 { 0x05, 0x6662 },
Francois Romieu5b538df2008-07-20 16:22:45 +02002418 { 0x1f, 0x0005 },
françois romieudaf9df62009-10-07 12:44:20 +00002419 { 0x05, 0x8330 },
2420 { 0x06, 0x6662 }
Francois Romieu5b538df2008-07-20 16:22:45 +02002421 };
2422
françois romieu4da19632011-01-03 15:07:55 +00002423 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002424 }
2425
françois romieubca03d52011-01-03 15:07:31 +00002426 /* RSET couple improve */
françois romieu4da19632011-01-03 15:07:55 +00002427 rtl_writephy(tp, 0x1f, 0x0002);
2428 rtl_patchphy(tp, 0x0d, 0x0300);
2429 rtl_patchphy(tp, 0x0f, 0x0010);
françois romieudaf9df62009-10-07 12:44:20 +00002430
françois romieubca03d52011-01-03 15:07:31 +00002431 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002432 rtl_writephy(tp, 0x1f, 0x0002);
2433 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2434 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002435
françois romieu4da19632011-01-03 15:07:55 +00002436 rtl_writephy(tp, 0x1f, 0x0005);
2437 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002438
2439 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
françois romieubca03d52011-01-03 15:07:31 +00002440
françois romieu4da19632011-01-03 15:07:55 +00002441 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002442}
2443
françois romieubca03d52011-01-03 15:07:31 +00002444static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002445{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002446 static const struct phy_reg phy_reg_init_0[] = {
françois romieubca03d52011-01-03 15:07:31 +00002447 /* Channel Estimation */
françois romieudaf9df62009-10-07 12:44:20 +00002448 { 0x1f, 0x0001 },
2449 { 0x06, 0x4064 },
2450 { 0x07, 0x2863 },
2451 { 0x08, 0x059c },
2452 { 0x09, 0x26b4 },
2453 { 0x0a, 0x6a19 },
2454 { 0x0b, 0xdcc8 },
2455 { 0x10, 0xf06d },
2456 { 0x14, 0x7f68 },
2457 { 0x18, 0x7fd9 },
2458 { 0x1c, 0xf0ff },
2459 { 0x1d, 0x3d9c },
2460 { 0x1f, 0x0003 },
2461 { 0x12, 0xf49f },
2462 { 0x13, 0x070b },
2463 { 0x1a, 0x05ad },
2464 { 0x14, 0x94c0 },
2465
françois romieubca03d52011-01-03 15:07:31 +00002466 /*
2467 * Tx Error Issue
Francois Romieucecb5fd2011-04-01 10:21:07 +02002468 * Enhance line driver power
françois romieubca03d52011-01-03 15:07:31 +00002469 */
françois romieudaf9df62009-10-07 12:44:20 +00002470 { 0x1f, 0x0002 },
2471 { 0x06, 0x5561 },
2472 { 0x1f, 0x0005 },
2473 { 0x05, 0x8332 },
françois romieubca03d52011-01-03 15:07:31 +00002474 { 0x06, 0x5561 },
2475
2476 /*
2477 * Can not link to 1Gbps with bad cable
2478 * Decrease SNR threshold form 21.07dB to 19.04dB
2479 */
2480 { 0x1f, 0x0001 },
2481 { 0x17, 0x0cc0 },
françois romieudaf9df62009-10-07 12:44:20 +00002482
2483 { 0x1f, 0x0000 },
françois romieubca03d52011-01-03 15:07:31 +00002484 { 0x0d, 0xf880 }
françois romieudaf9df62009-10-07 12:44:20 +00002485 };
françois romieubca03d52011-01-03 15:07:31 +00002486 void __iomem *ioaddr = tp->mmio_addr;
françois romieudaf9df62009-10-07 12:44:20 +00002487
françois romieu4da19632011-01-03 15:07:55 +00002488 rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
françois romieudaf9df62009-10-07 12:44:20 +00002489
2490 if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002491 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002492 { 0x1f, 0x0002 },
2493 { 0x05, 0x669a },
2494 { 0x1f, 0x0005 },
2495 { 0x05, 0x8330 },
2496 { 0x06, 0x669a },
2497
2498 { 0x1f, 0x0002 }
2499 };
2500 int val;
2501
françois romieu4da19632011-01-03 15:07:55 +00002502 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002503
françois romieu4da19632011-01-03 15:07:55 +00002504 val = rtl_readphy(tp, 0x0d);
françois romieudaf9df62009-10-07 12:44:20 +00002505 if ((val & 0x00ff) != 0x006c) {
Joe Perchesb6bc7652010-12-21 02:16:08 -08002506 static const u32 set[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002507 0x0065, 0x0066, 0x0067, 0x0068,
2508 0x0069, 0x006a, 0x006b, 0x006c
2509 };
2510 int i;
2511
françois romieu4da19632011-01-03 15:07:55 +00002512 rtl_writephy(tp, 0x1f, 0x0002);
françois romieudaf9df62009-10-07 12:44:20 +00002513
2514 val &= 0xff00;
2515 for (i = 0; i < ARRAY_SIZE(set); i++)
françois romieu4da19632011-01-03 15:07:55 +00002516 rtl_writephy(tp, 0x0d, val | set[i]);
françois romieudaf9df62009-10-07 12:44:20 +00002517 }
2518 } else {
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002519 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002520 { 0x1f, 0x0002 },
2521 { 0x05, 0x2642 },
2522 { 0x1f, 0x0005 },
2523 { 0x05, 0x8330 },
2524 { 0x06, 0x2642 }
2525 };
2526
françois romieu4da19632011-01-03 15:07:55 +00002527 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
françois romieudaf9df62009-10-07 12:44:20 +00002528 }
2529
françois romieubca03d52011-01-03 15:07:31 +00002530 /* Fine tune PLL performance */
françois romieu4da19632011-01-03 15:07:55 +00002531 rtl_writephy(tp, 0x1f, 0x0002);
2532 rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2533 rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
françois romieudaf9df62009-10-07 12:44:20 +00002534
françois romieubca03d52011-01-03 15:07:31 +00002535 /* Switching regulator Slew rate */
françois romieu4da19632011-01-03 15:07:55 +00002536 rtl_writephy(tp, 0x1f, 0x0002);
2537 rtl_patchphy(tp, 0x0f, 0x0017);
françois romieudaf9df62009-10-07 12:44:20 +00002538
françois romieu4da19632011-01-03 15:07:55 +00002539 rtl_writephy(tp, 0x1f, 0x0005);
2540 rtl_writephy(tp, 0x05, 0x001b);
François Romieu953a12c2011-04-24 17:38:48 +02002541
2542 rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
françois romieubca03d52011-01-03 15:07:31 +00002543
françois romieu4da19632011-01-03 15:07:55 +00002544 rtl_writephy(tp, 0x1f, 0x0000);
françois romieudaf9df62009-10-07 12:44:20 +00002545}
2546
françois romieu4da19632011-01-03 15:07:55 +00002547static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
françois romieudaf9df62009-10-07 12:44:20 +00002548{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002549 static const struct phy_reg phy_reg_init[] = {
françois romieudaf9df62009-10-07 12:44:20 +00002550 { 0x1f, 0x0002 },
2551 { 0x10, 0x0008 },
2552 { 0x0d, 0x006c },
2553
2554 { 0x1f, 0x0000 },
2555 { 0x0d, 0xf880 },
2556
2557 { 0x1f, 0x0001 },
2558 { 0x17, 0x0cc0 },
2559
2560 { 0x1f, 0x0001 },
2561 { 0x0b, 0xa4d8 },
2562 { 0x09, 0x281c },
2563 { 0x07, 0x2883 },
2564 { 0x0a, 0x6b35 },
2565 { 0x1d, 0x3da4 },
2566 { 0x1c, 0xeffd },
2567 { 0x14, 0x7f52 },
2568 { 0x18, 0x7fc6 },
2569 { 0x08, 0x0601 },
2570 { 0x06, 0x4063 },
2571 { 0x10, 0xf074 },
2572 { 0x1f, 0x0003 },
2573 { 0x13, 0x0789 },
2574 { 0x12, 0xf4bd },
2575 { 0x1a, 0x04fd },
2576 { 0x14, 0x84b0 },
2577 { 0x1f, 0x0000 },
2578 { 0x00, 0x9200 },
2579
2580 { 0x1f, 0x0005 },
2581 { 0x01, 0x0340 },
2582 { 0x1f, 0x0001 },
2583 { 0x04, 0x4000 },
2584 { 0x03, 0x1d21 },
2585 { 0x02, 0x0c32 },
2586 { 0x01, 0x0200 },
2587 { 0x00, 0x5554 },
2588 { 0x04, 0x4800 },
2589 { 0x04, 0x4000 },
2590 { 0x04, 0xf000 },
2591 { 0x03, 0xdf01 },
2592 { 0x02, 0xdf20 },
2593 { 0x01, 0x101a },
2594 { 0x00, 0xa0ff },
2595 { 0x04, 0xf800 },
2596 { 0x04, 0xf000 },
2597 { 0x1f, 0x0000 },
2598
2599 { 0x1f, 0x0007 },
2600 { 0x1e, 0x0023 },
2601 { 0x16, 0x0000 },
2602 { 0x1f, 0x0000 }
2603 };
2604
françois romieu4da19632011-01-03 15:07:55 +00002605 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu5b538df2008-07-20 16:22:45 +02002606}
2607
françois romieue6de30d2011-01-03 15:08:37 +00002608static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2609{
2610 static const struct phy_reg phy_reg_init[] = {
2611 { 0x1f, 0x0001 },
2612 { 0x17, 0x0cc0 },
2613
2614 { 0x1f, 0x0007 },
2615 { 0x1e, 0x002d },
2616 { 0x18, 0x0040 },
2617 { 0x1f, 0x0000 }
2618 };
2619
2620 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2621 rtl_patchphy(tp, 0x0d, 1 << 5);
2622}
2623
hayeswang01dc7fe2011-03-21 01:50:28 +00002624static void rtl8168e_hw_phy_config(struct rtl8169_private *tp)
2625{
2626 static const struct phy_reg phy_reg_init[] = {
2627 /* Enable Delay cap */
2628 { 0x1f, 0x0005 },
2629 { 0x05, 0x8b80 },
2630 { 0x06, 0xc896 },
2631 { 0x1f, 0x0000 },
2632
2633 /* Channel estimation fine tune */
2634 { 0x1f, 0x0001 },
2635 { 0x0b, 0x6c20 },
2636 { 0x07, 0x2872 },
2637 { 0x1c, 0xefff },
2638 { 0x1f, 0x0003 },
2639 { 0x14, 0x6420 },
2640 { 0x1f, 0x0000 },
2641
2642 /* Update PFM & 10M TX idle timer */
2643 { 0x1f, 0x0007 },
2644 { 0x1e, 0x002f },
2645 { 0x15, 0x1919 },
2646 { 0x1f, 0x0000 },
2647
2648 { 0x1f, 0x0007 },
2649 { 0x1e, 0x00ac },
2650 { 0x18, 0x0006 },
2651 { 0x1f, 0x0000 }
2652 };
2653
Francois Romieu15ecd032011-04-27 13:52:22 -07002654 rtl_apply_firmware(tp);
2655
hayeswang01dc7fe2011-03-21 01:50:28 +00002656 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2657
2658 /* DCO enable for 10M IDLE Power */
2659 rtl_writephy(tp, 0x1f, 0x0007);
2660 rtl_writephy(tp, 0x1e, 0x0023);
2661 rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2662 rtl_writephy(tp, 0x1f, 0x0000);
2663
2664 /* For impedance matching */
2665 rtl_writephy(tp, 0x1f, 0x0002);
2666 rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
Francois Romieucecb5fd2011-04-01 10:21:07 +02002667 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00002668
2669 /* PHY auto speed down */
2670 rtl_writephy(tp, 0x1f, 0x0007);
2671 rtl_writephy(tp, 0x1e, 0x002d);
2672 rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
2673 rtl_writephy(tp, 0x1f, 0x0000);
2674 rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2675
2676 rtl_writephy(tp, 0x1f, 0x0005);
2677 rtl_writephy(tp, 0x05, 0x8b86);
2678 rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
2679 rtl_writephy(tp, 0x1f, 0x0000);
2680
2681 rtl_writephy(tp, 0x1f, 0x0005);
2682 rtl_writephy(tp, 0x05, 0x8b85);
2683 rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
2684 rtl_writephy(tp, 0x1f, 0x0007);
2685 rtl_writephy(tp, 0x1e, 0x0020);
2686 rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
2687 rtl_writephy(tp, 0x1f, 0x0006);
2688 rtl_writephy(tp, 0x00, 0x5a00);
2689 rtl_writephy(tp, 0x1f, 0x0000);
2690 rtl_writephy(tp, 0x0d, 0x0007);
2691 rtl_writephy(tp, 0x0e, 0x003c);
2692 rtl_writephy(tp, 0x0d, 0x4007);
2693 rtl_writephy(tp, 0x0e, 0x0000);
2694 rtl_writephy(tp, 0x0d, 0x0000);
2695}
2696
françois romieu4da19632011-01-03 15:07:55 +00002697static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
Francois Romieu2857ffb2008-08-02 21:08:49 +02002698{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08002699 static const struct phy_reg phy_reg_init[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02002700 { 0x1f, 0x0003 },
2701 { 0x08, 0x441d },
2702 { 0x01, 0x9100 },
2703 { 0x1f, 0x0000 }
2704 };
2705
françois romieu4da19632011-01-03 15:07:55 +00002706 rtl_writephy(tp, 0x1f, 0x0000);
2707 rtl_patchphy(tp, 0x11, 1 << 12);
2708 rtl_patchphy(tp, 0x19, 1 << 13);
2709 rtl_patchphy(tp, 0x10, 1 << 15);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002710
françois romieu4da19632011-01-03 15:07:55 +00002711 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
Francois Romieu2857ffb2008-08-02 21:08:49 +02002712}
2713
Hayes Wang5a5e4442011-02-22 17:26:21 +08002714static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
2715{
2716 static const struct phy_reg phy_reg_init[] = {
2717 { 0x1f, 0x0005 },
2718 { 0x1a, 0x0000 },
2719 { 0x1f, 0x0000 },
2720
2721 { 0x1f, 0x0004 },
2722 { 0x1c, 0x0000 },
2723 { 0x1f, 0x0000 },
2724
2725 { 0x1f, 0x0001 },
2726 { 0x15, 0x7701 },
2727 { 0x1f, 0x0000 }
2728 };
2729
2730 /* Disable ALDPS before ram code */
2731 rtl_writephy(tp, 0x1f, 0x0000);
2732 rtl_writephy(tp, 0x18, 0x0310);
2733 msleep(100);
2734
François Romieu953a12c2011-04-24 17:38:48 +02002735 rtl_apply_firmware(tp);
Hayes Wang5a5e4442011-02-22 17:26:21 +08002736
2737 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2738}
2739
Francois Romieu5615d9f2007-08-17 17:50:46 +02002740static void rtl_hw_phy_config(struct net_device *dev)
2741{
2742 struct rtl8169_private *tp = netdev_priv(dev);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002743
2744 rtl8169_print_mac_version(tp);
2745
2746 switch (tp->mac_version) {
2747 case RTL_GIGA_MAC_VER_01:
2748 break;
2749 case RTL_GIGA_MAC_VER_02:
2750 case RTL_GIGA_MAC_VER_03:
françois romieu4da19632011-01-03 15:07:55 +00002751 rtl8169s_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002752 break;
2753 case RTL_GIGA_MAC_VER_04:
françois romieu4da19632011-01-03 15:07:55 +00002754 rtl8169sb_hw_phy_config(tp);
Francois Romieu5615d9f2007-08-17 17:50:46 +02002755 break;
françois romieu2e9558562009-08-10 19:44:19 +00002756 case RTL_GIGA_MAC_VER_05:
françois romieu4da19632011-01-03 15:07:55 +00002757 rtl8169scd_hw_phy_config(tp);
françois romieu2e9558562009-08-10 19:44:19 +00002758 break;
françois romieu8c7006a2009-08-10 19:43:29 +00002759 case RTL_GIGA_MAC_VER_06:
françois romieu4da19632011-01-03 15:07:55 +00002760 rtl8169sce_hw_phy_config(tp);
françois romieu8c7006a2009-08-10 19:43:29 +00002761 break;
Francois Romieu2857ffb2008-08-02 21:08:49 +02002762 case RTL_GIGA_MAC_VER_07:
2763 case RTL_GIGA_MAC_VER_08:
2764 case RTL_GIGA_MAC_VER_09:
françois romieu4da19632011-01-03 15:07:55 +00002765 rtl8102e_hw_phy_config(tp);
Francois Romieu2857ffb2008-08-02 21:08:49 +02002766 break;
Francois Romieu236b8082008-05-30 16:11:48 +02002767 case RTL_GIGA_MAC_VER_11:
françois romieu4da19632011-01-03 15:07:55 +00002768 rtl8168bb_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002769 break;
2770 case RTL_GIGA_MAC_VER_12:
françois romieu4da19632011-01-03 15:07:55 +00002771 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002772 break;
2773 case RTL_GIGA_MAC_VER_17:
françois romieu4da19632011-01-03 15:07:55 +00002774 rtl8168bef_hw_phy_config(tp);
Francois Romieu236b8082008-05-30 16:11:48 +02002775 break;
Francois Romieu867763c2007-08-17 18:21:58 +02002776 case RTL_GIGA_MAC_VER_18:
françois romieu4da19632011-01-03 15:07:55 +00002777 rtl8168cp_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002778 break;
2779 case RTL_GIGA_MAC_VER_19:
françois romieu4da19632011-01-03 15:07:55 +00002780 rtl8168c_1_hw_phy_config(tp);
Francois Romieu867763c2007-08-17 18:21:58 +02002781 break;
Francois Romieu7da97ec2007-10-18 15:20:43 +02002782 case RTL_GIGA_MAC_VER_20:
françois romieu4da19632011-01-03 15:07:55 +00002783 rtl8168c_2_hw_phy_config(tp);
Francois Romieu7da97ec2007-10-18 15:20:43 +02002784 break;
Francois Romieu197ff762008-06-28 13:16:02 +02002785 case RTL_GIGA_MAC_VER_21:
françois romieu4da19632011-01-03 15:07:55 +00002786 rtl8168c_3_hw_phy_config(tp);
Francois Romieu197ff762008-06-28 13:16:02 +02002787 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02002788 case RTL_GIGA_MAC_VER_22:
françois romieu4da19632011-01-03 15:07:55 +00002789 rtl8168c_4_hw_phy_config(tp);
Francois Romieu6fb07052008-06-29 11:54:28 +02002790 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002791 case RTL_GIGA_MAC_VER_23:
Francois Romieu7f3e3d32008-07-20 18:53:20 +02002792 case RTL_GIGA_MAC_VER_24:
françois romieu4da19632011-01-03 15:07:55 +00002793 rtl8168cp_2_hw_phy_config(tp);
Francois Romieuef3386f2008-06-29 12:24:30 +02002794 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02002795 case RTL_GIGA_MAC_VER_25:
françois romieubca03d52011-01-03 15:07:31 +00002796 rtl8168d_1_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002797 break;
2798 case RTL_GIGA_MAC_VER_26:
françois romieubca03d52011-01-03 15:07:31 +00002799 rtl8168d_2_hw_phy_config(tp);
françois romieudaf9df62009-10-07 12:44:20 +00002800 break;
2801 case RTL_GIGA_MAC_VER_27:
françois romieu4da19632011-01-03 15:07:55 +00002802 rtl8168d_3_hw_phy_config(tp);
Francois Romieu5b538df2008-07-20 16:22:45 +02002803 break;
françois romieue6de30d2011-01-03 15:08:37 +00002804 case RTL_GIGA_MAC_VER_28:
2805 rtl8168d_4_hw_phy_config(tp);
2806 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08002807 case RTL_GIGA_MAC_VER_29:
2808 case RTL_GIGA_MAC_VER_30:
2809 rtl8105e_hw_phy_config(tp);
2810 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02002811 case RTL_GIGA_MAC_VER_31:
2812 /* None. */
2813 break;
hayeswang01dc7fe2011-03-21 01:50:28 +00002814 case RTL_GIGA_MAC_VER_32:
hayeswang01dc7fe2011-03-21 01:50:28 +00002815 case RTL_GIGA_MAC_VER_33:
Francois Romieu15ecd032011-04-27 13:52:22 -07002816 rtl8168e_hw_phy_config(tp);
hayeswang01dc7fe2011-03-21 01:50:28 +00002817 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02002818
Francois Romieu5615d9f2007-08-17 17:50:46 +02002819 default:
2820 break;
2821 }
2822}
2823
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824static void rtl8169_phy_timer(unsigned long __opaque)
2825{
2826 struct net_device *dev = (struct net_device *)__opaque;
2827 struct rtl8169_private *tp = netdev_priv(dev);
2828 struct timer_list *timer = &tp->timer;
2829 void __iomem *ioaddr = tp->mmio_addr;
2830 unsigned long timeout = RTL8169_PHY_TIMEOUT;
2831
Francois Romieubcf0bf92006-07-26 23:14:13 +02002832 assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 spin_lock_irq(&tp->lock);
2835
françois romieu4da19632011-01-03 15:07:55 +00002836 if (tp->phy_reset_pending(tp)) {
Francois Romieu5b0384f2006-08-16 16:00:01 +02002837 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 * A busy loop could burn quite a few cycles on nowadays CPU.
2839 * Let's delay the execution of the timer for a few ticks.
2840 */
2841 timeout = HZ/10;
2842 goto out_mod_timer;
2843 }
2844
2845 if (tp->link_ok(ioaddr))
2846 goto out_unlock;
2847
Joe Perchesbf82c182010-02-09 11:49:50 +00002848 netif_warn(tp, link, dev, "PHY reset until link up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
françois romieu4da19632011-01-03 15:07:55 +00002850 tp->phy_reset_enable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852out_mod_timer:
2853 mod_timer(timer, jiffies + timeout);
2854out_unlock:
2855 spin_unlock_irq(&tp->lock);
2856}
2857
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858#ifdef CONFIG_NET_POLL_CONTROLLER
2859/*
2860 * Polling 'interrupt' - used by things like netconsole to send skbs
2861 * without having to re-enable interrupts. It's not called while
2862 * the interrupt routine is executing.
2863 */
2864static void rtl8169_netpoll(struct net_device *dev)
2865{
2866 struct rtl8169_private *tp = netdev_priv(dev);
2867 struct pci_dev *pdev = tp->pci_dev;
2868
2869 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002870 rtl8169_interrupt(pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 enable_irq(pdev->irq);
2872}
2873#endif
2874
2875static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
2876 void __iomem *ioaddr)
2877{
2878 iounmap(ioaddr);
2879 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00002880 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 pci_disable_device(pdev);
2882 free_netdev(dev);
2883}
2884
Francois Romieubf793292006-11-01 00:53:05 +01002885static void rtl8169_phy_reset(struct net_device *dev,
2886 struct rtl8169_private *tp)
2887{
Francois Romieu07d3f512007-02-21 22:40:46 +01002888 unsigned int i;
Francois Romieubf793292006-11-01 00:53:05 +01002889
françois romieu4da19632011-01-03 15:07:55 +00002890 tp->phy_reset_enable(tp);
Francois Romieubf793292006-11-01 00:53:05 +01002891 for (i = 0; i < 100; i++) {
françois romieu4da19632011-01-03 15:07:55 +00002892 if (!tp->phy_reset_pending(tp))
Francois Romieubf793292006-11-01 00:53:05 +01002893 return;
2894 msleep(1);
2895 }
Joe Perchesbf82c182010-02-09 11:49:50 +00002896 netif_err(tp, link, dev, "PHY reset failed\n");
Francois Romieubf793292006-11-01 00:53:05 +01002897}
2898
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002899static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900{
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002901 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002902
Francois Romieu5615d9f2007-08-17 17:50:46 +02002903 rtl_hw_phy_config(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002904
Marcus Sundberg773328942008-07-10 21:28:08 +02002905 if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
2906 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2907 RTL_W8(0x82, 0x01);
2908 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002909
Francois Romieu6dccd162007-02-13 23:38:05 +01002910 pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
2911
2912 if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
2913 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002914
Francois Romieubcf0bf92006-07-26 23:14:13 +02002915 if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002916 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
2917 RTL_W8(0x82, 0x01);
2918 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
françois romieu4da19632011-01-03 15:07:55 +00002919 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002920 }
2921
Francois Romieubf793292006-11-01 00:53:05 +01002922 rtl8169_phy_reset(dev, tp);
2923
Oliver Neukum54405cd2011-01-06 21:55:13 +01002924 rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
Francois Romieucecb5fd2011-04-01 10:21:07 +02002925 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
2926 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
2927 (tp->mii.supports_gmii ?
2928 ADVERTISED_1000baseT_Half |
2929 ADVERTISED_1000baseT_Full : 0));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002930
Joe Perchesbf82c182010-02-09 11:49:50 +00002931 if (RTL_R8(PHYstatus) & TBI_Enable)
2932 netif_info(tp, link, dev, "TBI auto-negotiating\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02002933}
2934
Francois Romieu773d2022007-01-31 23:47:43 +01002935static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
2936{
2937 void __iomem *ioaddr = tp->mmio_addr;
2938 u32 high;
2939 u32 low;
2940
2941 low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
2942 high = addr[4] | (addr[5] << 8);
2943
2944 spin_lock_irq(&tp->lock);
2945
2946 RTL_W8(Cfg9346, Cfg9346_Unlock);
françois romieu908ba2b2010-04-26 11:42:58 +00002947
Francois Romieu773d2022007-01-31 23:47:43 +01002948 RTL_W32(MAC4, high);
françois romieu908ba2b2010-04-26 11:42:58 +00002949 RTL_R32(MAC4);
2950
Francois Romieu78f1cd02010-03-27 19:35:46 -07002951 RTL_W32(MAC0, low);
françois romieu908ba2b2010-04-26 11:42:58 +00002952 RTL_R32(MAC0);
2953
Francois Romieu773d2022007-01-31 23:47:43 +01002954 RTL_W8(Cfg9346, Cfg9346_Lock);
2955
2956 spin_unlock_irq(&tp->lock);
2957}
2958
2959static int rtl_set_mac_address(struct net_device *dev, void *p)
2960{
2961 struct rtl8169_private *tp = netdev_priv(dev);
2962 struct sockaddr *addr = p;
2963
2964 if (!is_valid_ether_addr(addr->sa_data))
2965 return -EADDRNOTAVAIL;
2966
2967 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2968
2969 rtl_rar_set(tp, dev->dev_addr);
2970
2971 return 0;
2972}
2973
Francois Romieu5f787a12006-08-17 13:02:36 +02002974static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2975{
2976 struct rtl8169_private *tp = netdev_priv(dev);
2977 struct mii_ioctl_data *data = if_mii(ifr);
2978
Francois Romieu8b4ab282008-11-19 22:05:25 -08002979 return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
2980}
Francois Romieu5f787a12006-08-17 13:02:36 +02002981
Francois Romieucecb5fd2011-04-01 10:21:07 +02002982static int rtl_xmii_ioctl(struct rtl8169_private *tp,
2983 struct mii_ioctl_data *data, int cmd)
Francois Romieu8b4ab282008-11-19 22:05:25 -08002984{
Francois Romieu5f787a12006-08-17 13:02:36 +02002985 switch (cmd) {
2986 case SIOCGMIIPHY:
2987 data->phy_id = 32; /* Internal PHY */
2988 return 0;
2989
2990 case SIOCGMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002991 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
Francois Romieu5f787a12006-08-17 13:02:36 +02002992 return 0;
2993
2994 case SIOCSMIIREG:
françois romieu4da19632011-01-03 15:07:55 +00002995 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
Francois Romieu5f787a12006-08-17 13:02:36 +02002996 return 0;
2997 }
2998 return -EOPNOTSUPP;
2999}
3000
Francois Romieu8b4ab282008-11-19 22:05:25 -08003001static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
3002{
3003 return -EOPNOTSUPP;
3004}
3005
Francois Romieu0e485152007-02-20 00:00:26 +01003006static const struct rtl_cfg_info {
3007 void (*hw_start)(struct net_device *);
3008 unsigned int region;
3009 unsigned int align;
3010 u16 intr_event;
3011 u16 napi_event;
Francois Romieuccdffb92008-07-26 14:26:06 +02003012 unsigned features;
Jean Delvaref21b75e2009-05-26 20:54:48 -07003013 u8 default_ver;
Francois Romieu0e485152007-02-20 00:00:26 +01003014} rtl_cfg_infos [] = {
3015 [RTL_CFG_0] = {
3016 .hw_start = rtl_hw_start_8169,
3017 .region = 1,
Francois Romieue9f63f32007-02-28 23:16:57 +01003018 .align = 0,
Francois Romieu0e485152007-02-20 00:00:26 +01003019 .intr_event = SYSErr | LinkChg | RxOverflow |
3020 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02003021 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07003022 .features = RTL_FEATURE_GMII,
3023 .default_ver = RTL_GIGA_MAC_VER_01,
Francois Romieu0e485152007-02-20 00:00:26 +01003024 },
3025 [RTL_CFG_1] = {
3026 .hw_start = rtl_hw_start_8168,
3027 .region = 2,
3028 .align = 8,
françois romieu53f57352010-11-08 13:23:05 +00003029 .intr_event = SYSErr | LinkChg | RxOverflow |
Francois Romieu0e485152007-02-20 00:00:26 +01003030 TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02003031 .napi_event = TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07003032 .features = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
3033 .default_ver = RTL_GIGA_MAC_VER_11,
Francois Romieu0e485152007-02-20 00:00:26 +01003034 },
3035 [RTL_CFG_2] = {
3036 .hw_start = rtl_hw_start_8101,
3037 .region = 2,
3038 .align = 8,
3039 .intr_event = SYSErr | LinkChg | RxOverflow | PCSTimeout |
3040 RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
Francois Romieufbac58f2007-10-04 22:51:38 +02003041 .napi_event = RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
Jean Delvaref21b75e2009-05-26 20:54:48 -07003042 .features = RTL_FEATURE_MSI,
3043 .default_ver = RTL_GIGA_MAC_VER_13,
Francois Romieu0e485152007-02-20 00:00:26 +01003044 }
3045};
3046
Francois Romieufbac58f2007-10-04 22:51:38 +02003047/* Cfg9346_Unlock assumed. */
3048static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
3049 const struct rtl_cfg_info *cfg)
3050{
3051 unsigned msi = 0;
3052 u8 cfg2;
3053
3054 cfg2 = RTL_R8(Config2) & ~MSIEnable;
Francois Romieuccdffb92008-07-26 14:26:06 +02003055 if (cfg->features & RTL_FEATURE_MSI) {
Francois Romieufbac58f2007-10-04 22:51:38 +02003056 if (pci_enable_msi(pdev)) {
3057 dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
3058 } else {
3059 cfg2 |= MSIEnable;
3060 msi = RTL_FEATURE_MSI;
3061 }
3062 }
3063 RTL_W8(Config2, cfg2);
3064 return msi;
3065}
3066
3067static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
3068{
3069 if (tp->features & RTL_FEATURE_MSI) {
3070 pci_disable_msi(pdev);
3071 tp->features &= ~RTL_FEATURE_MSI;
3072 }
3073}
3074
Francois Romieu8b4ab282008-11-19 22:05:25 -08003075static const struct net_device_ops rtl8169_netdev_ops = {
3076 .ndo_open = rtl8169_open,
3077 .ndo_stop = rtl8169_close,
3078 .ndo_get_stats = rtl8169_get_stats,
Stephen Hemminger00829822008-11-20 20:14:53 -08003079 .ndo_start_xmit = rtl8169_start_xmit,
Francois Romieu8b4ab282008-11-19 22:05:25 -08003080 .ndo_tx_timeout = rtl8169_tx_timeout,
3081 .ndo_validate_addr = eth_validate_addr,
3082 .ndo_change_mtu = rtl8169_change_mtu,
Michał Mirosław350fb322011-04-08 06:35:56 +00003083 .ndo_fix_features = rtl8169_fix_features,
3084 .ndo_set_features = rtl8169_set_features,
Francois Romieu8b4ab282008-11-19 22:05:25 -08003085 .ndo_set_mac_address = rtl_set_mac_address,
3086 .ndo_do_ioctl = rtl8169_ioctl,
3087 .ndo_set_multicast_list = rtl_set_rx_mode,
Francois Romieu8b4ab282008-11-19 22:05:25 -08003088#ifdef CONFIG_NET_POLL_CONTROLLER
3089 .ndo_poll_controller = rtl8169_netpoll,
3090#endif
3091
3092};
3093
françois romieuc0e45c12011-01-03 15:08:04 +00003094static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
3095{
3096 struct mdio_ops *ops = &tp->mdio_ops;
3097
3098 switch (tp->mac_version) {
3099 case RTL_GIGA_MAC_VER_27:
3100 ops->write = r8168dp_1_mdio_write;
3101 ops->read = r8168dp_1_mdio_read;
3102 break;
françois romieue6de30d2011-01-03 15:08:37 +00003103 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003104 case RTL_GIGA_MAC_VER_31:
françois romieue6de30d2011-01-03 15:08:37 +00003105 ops->write = r8168dp_2_mdio_write;
3106 ops->read = r8168dp_2_mdio_read;
3107 break;
françois romieuc0e45c12011-01-03 15:08:04 +00003108 default:
3109 ops->write = r8169_mdio_write;
3110 ops->read = r8169_mdio_read;
3111 break;
3112 }
3113}
3114
françois romieu065c27c2011-01-03 15:08:12 +00003115static void r810x_phy_power_down(struct rtl8169_private *tp)
3116{
3117 rtl_writephy(tp, 0x1f, 0x0000);
3118 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3119}
3120
3121static void r810x_phy_power_up(struct rtl8169_private *tp)
3122{
3123 rtl_writephy(tp, 0x1f, 0x0000);
3124 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3125}
3126
3127static void r810x_pll_power_down(struct rtl8169_private *tp)
3128{
3129 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
3130 rtl_writephy(tp, 0x1f, 0x0000);
3131 rtl_writephy(tp, MII_BMCR, 0x0000);
3132 return;
3133 }
3134
3135 r810x_phy_power_down(tp);
3136}
3137
3138static void r810x_pll_power_up(struct rtl8169_private *tp)
3139{
3140 r810x_phy_power_up(tp);
3141}
3142
3143static void r8168_phy_power_up(struct rtl8169_private *tp)
3144{
3145 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003146 switch (tp->mac_version) {
3147 case RTL_GIGA_MAC_VER_11:
3148 case RTL_GIGA_MAC_VER_12:
3149 case RTL_GIGA_MAC_VER_17:
3150 case RTL_GIGA_MAC_VER_18:
3151 case RTL_GIGA_MAC_VER_19:
3152 case RTL_GIGA_MAC_VER_20:
3153 case RTL_GIGA_MAC_VER_21:
3154 case RTL_GIGA_MAC_VER_22:
3155 case RTL_GIGA_MAC_VER_23:
3156 case RTL_GIGA_MAC_VER_24:
3157 case RTL_GIGA_MAC_VER_25:
3158 case RTL_GIGA_MAC_VER_26:
3159 case RTL_GIGA_MAC_VER_27:
3160 case RTL_GIGA_MAC_VER_28:
3161 case RTL_GIGA_MAC_VER_31:
3162 rtl_writephy(tp, 0x0e, 0x0000);
3163 break;
3164 default:
3165 break;
3166 }
françois romieu065c27c2011-01-03 15:08:12 +00003167 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3168}
3169
3170static void r8168_phy_power_down(struct rtl8169_private *tp)
3171{
3172 rtl_writephy(tp, 0x1f, 0x0000);
hayeswang01dc7fe2011-03-21 01:50:28 +00003173 switch (tp->mac_version) {
3174 case RTL_GIGA_MAC_VER_32:
3175 case RTL_GIGA_MAC_VER_33:
3176 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
3177 break;
3178
3179 case RTL_GIGA_MAC_VER_11:
3180 case RTL_GIGA_MAC_VER_12:
3181 case RTL_GIGA_MAC_VER_17:
3182 case RTL_GIGA_MAC_VER_18:
3183 case RTL_GIGA_MAC_VER_19:
3184 case RTL_GIGA_MAC_VER_20:
3185 case RTL_GIGA_MAC_VER_21:
3186 case RTL_GIGA_MAC_VER_22:
3187 case RTL_GIGA_MAC_VER_23:
3188 case RTL_GIGA_MAC_VER_24:
3189 case RTL_GIGA_MAC_VER_25:
3190 case RTL_GIGA_MAC_VER_26:
3191 case RTL_GIGA_MAC_VER_27:
3192 case RTL_GIGA_MAC_VER_28:
3193 case RTL_GIGA_MAC_VER_31:
3194 rtl_writephy(tp, 0x0e, 0x0200);
3195 default:
3196 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3197 break;
3198 }
françois romieu065c27c2011-01-03 15:08:12 +00003199}
3200
3201static void r8168_pll_power_down(struct rtl8169_private *tp)
3202{
3203 void __iomem *ioaddr = tp->mmio_addr;
3204
Francois Romieucecb5fd2011-04-01 10:21:07 +02003205 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3206 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3207 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003208 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003209 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003210 }
françois romieu065c27c2011-01-03 15:08:12 +00003211
Francois Romieucecb5fd2011-04-01 10:21:07 +02003212 if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
3213 tp->mac_version == RTL_GIGA_MAC_VER_24) &&
françois romieu065c27c2011-01-03 15:08:12 +00003214 (RTL_R16(CPlusCmd) & ASF)) {
3215 return;
3216 }
3217
hayeswang01dc7fe2011-03-21 01:50:28 +00003218 if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
3219 tp->mac_version == RTL_GIGA_MAC_VER_33)
3220 rtl_ephy_write(ioaddr, 0x19, 0xff64);
3221
françois romieu065c27c2011-01-03 15:08:12 +00003222 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
3223 rtl_writephy(tp, 0x1f, 0x0000);
3224 rtl_writephy(tp, MII_BMCR, 0x0000);
3225
3226 RTL_W32(RxConfig, RTL_R32(RxConfig) |
3227 AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
3228 return;
3229 }
3230
3231 r8168_phy_power_down(tp);
3232
3233 switch (tp->mac_version) {
3234 case RTL_GIGA_MAC_VER_25:
3235 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003236 case RTL_GIGA_MAC_VER_27:
3237 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003238 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003239 case RTL_GIGA_MAC_VER_32:
3240 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003241 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3242 break;
3243 }
3244}
3245
3246static void r8168_pll_power_up(struct rtl8169_private *tp)
3247{
3248 void __iomem *ioaddr = tp->mmio_addr;
3249
Francois Romieucecb5fd2011-04-01 10:21:07 +02003250 if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3251 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3252 tp->mac_version == RTL_GIGA_MAC_VER_31) &&
hayeswang4804b3b2011-03-21 01:50:29 +00003253 r8168dp_check_dash(tp)) {
françois romieu065c27c2011-01-03 15:08:12 +00003254 return;
Hayes Wang5d2e1952011-02-22 17:26:22 +08003255 }
françois romieu065c27c2011-01-03 15:08:12 +00003256
3257 switch (tp->mac_version) {
3258 case RTL_GIGA_MAC_VER_25:
3259 case RTL_GIGA_MAC_VER_26:
Hayes Wang5d2e1952011-02-22 17:26:22 +08003260 case RTL_GIGA_MAC_VER_27:
3261 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003262 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003263 case RTL_GIGA_MAC_VER_32:
3264 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003265 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3266 break;
3267 }
3268
3269 r8168_phy_power_up(tp);
3270}
3271
3272static void rtl_pll_power_op(struct rtl8169_private *tp,
3273 void (*op)(struct rtl8169_private *))
3274{
3275 if (op)
3276 op(tp);
3277}
3278
3279static void rtl_pll_power_down(struct rtl8169_private *tp)
3280{
3281 rtl_pll_power_op(tp, tp->pll_power_ops.down);
3282}
3283
3284static void rtl_pll_power_up(struct rtl8169_private *tp)
3285{
3286 rtl_pll_power_op(tp, tp->pll_power_ops.up);
3287}
3288
3289static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
3290{
3291 struct pll_power_ops *ops = &tp->pll_power_ops;
3292
3293 switch (tp->mac_version) {
3294 case RTL_GIGA_MAC_VER_07:
3295 case RTL_GIGA_MAC_VER_08:
3296 case RTL_GIGA_MAC_VER_09:
3297 case RTL_GIGA_MAC_VER_10:
3298 case RTL_GIGA_MAC_VER_16:
Hayes Wang5a5e4442011-02-22 17:26:21 +08003299 case RTL_GIGA_MAC_VER_29:
3300 case RTL_GIGA_MAC_VER_30:
françois romieu065c27c2011-01-03 15:08:12 +00003301 ops->down = r810x_pll_power_down;
3302 ops->up = r810x_pll_power_up;
3303 break;
3304
3305 case RTL_GIGA_MAC_VER_11:
3306 case RTL_GIGA_MAC_VER_12:
3307 case RTL_GIGA_MAC_VER_17:
3308 case RTL_GIGA_MAC_VER_18:
3309 case RTL_GIGA_MAC_VER_19:
3310 case RTL_GIGA_MAC_VER_20:
3311 case RTL_GIGA_MAC_VER_21:
3312 case RTL_GIGA_MAC_VER_22:
3313 case RTL_GIGA_MAC_VER_23:
3314 case RTL_GIGA_MAC_VER_24:
3315 case RTL_GIGA_MAC_VER_25:
3316 case RTL_GIGA_MAC_VER_26:
3317 case RTL_GIGA_MAC_VER_27:
françois romieue6de30d2011-01-03 15:08:37 +00003318 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00003319 case RTL_GIGA_MAC_VER_31:
hayeswang01dc7fe2011-03-21 01:50:28 +00003320 case RTL_GIGA_MAC_VER_32:
3321 case RTL_GIGA_MAC_VER_33:
françois romieu065c27c2011-01-03 15:08:12 +00003322 ops->down = r8168_pll_power_down;
3323 ops->up = r8168_pll_power_up;
3324 break;
3325
3326 default:
3327 ops->down = NULL;
3328 ops->up = NULL;
3329 break;
3330 }
3331}
3332
Hayes Wang92fc43b2011-07-06 15:58:03 +08003333static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
3334{
3335 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
3336}
3337
Francois Romieu6f43adc2011-04-29 15:05:51 +02003338static void rtl_hw_reset(struct rtl8169_private *tp)
3339{
3340 void __iomem *ioaddr = tp->mmio_addr;
3341 int i;
3342
3343 /* Soft reset the chip. */
3344 RTL_W8(ChipCmd, CmdReset);
3345
3346 /* Check that the chip has finished the reset. */
3347 for (i = 0; i < 100; i++) {
3348 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
3349 break;
Hayes Wang92fc43b2011-07-06 15:58:03 +08003350 udelay(100);
Francois Romieu6f43adc2011-04-29 15:05:51 +02003351 }
Hayes Wang92fc43b2011-07-06 15:58:03 +08003352
3353 rtl8169_init_ring_indexes(tp);
Francois Romieu6f43adc2011-04-29 15:05:51 +02003354}
3355
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003356static int __devinit
3357rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
3358{
Francois Romieu0e485152007-02-20 00:00:26 +01003359 const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
3360 const unsigned int region = cfg->region;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 struct rtl8169_private *tp;
Francois Romieuccdffb92008-07-26 14:26:06 +02003362 struct mii_if_info *mii;
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003363 struct net_device *dev;
3364 void __iomem *ioaddr;
Francois Romieu2b7b4312011-04-18 22:53:24 -07003365 int chipset, i;
Francois Romieu07d3f512007-02-21 22:40:46 +01003366 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003368 if (netif_msg_drv(&debug)) {
3369 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
3370 MODULENAME, RTL8169_VERSION);
3371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 dev = alloc_etherdev(sizeof (*tp));
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003374 if (!dev) {
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003375 if (netif_msg_drv(&debug))
Jeff Garzik9b91cf92006-06-27 11:39:50 -04003376 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003377 rc = -ENOMEM;
3378 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 }
3380
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 SET_NETDEV_DEV(dev, &pdev->dev);
Francois Romieu8b4ab282008-11-19 22:05:25 -08003382 dev->netdev_ops = &rtl8169_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00003384 tp->dev = dev;
Ivan Vecera21e197f2008-04-17 22:48:41 +02003385 tp->pci_dev = pdev;
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003386 tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387
Francois Romieuccdffb92008-07-26 14:26:06 +02003388 mii = &tp->mii;
3389 mii->dev = dev;
3390 mii->mdio_read = rtl_mdio_read;
3391 mii->mdio_write = rtl_mdio_write;
3392 mii->phy_id_mask = 0x1f;
3393 mii->reg_num_mask = 0x1f;
3394 mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
3395
Stanislaw Gruszkaba04c7c2011-02-22 02:00:11 +00003396 /* disable ASPM completely as that cause random device stop working
3397 * problems as well as full system hangs for some PCIe devices users */
3398 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
3399 PCIE_LINK_STATE_CLKPM);
3400
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 /* enable device (incl. PCI PM wakeup and hotplug setup) */
3402 rc = pci_enable_device(pdev);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003403 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003404 netif_err(tp, probe, dev, "enable failure\n");
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003405 goto err_out_free_dev_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 }
3407
françois romieu87aeec72010-04-26 11:42:06 +00003408 if (pci_set_mwi(pdev) < 0)
3409 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 /* make sure PCI base addr 1 is MMIO */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003412 if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003413 netif_err(tp, probe, dev,
3414 "region #%d not an MMIO resource, aborting\n",
3415 region);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003417 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 }
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003419
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 /* check for weird/broken PCI region reporting */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003421 if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003422 netif_err(tp, probe, dev,
3423 "Invalid PCI region size(s), aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 rc = -ENODEV;
françois romieu87aeec72010-04-26 11:42:06 +00003425 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 }
3427
3428 rc = pci_request_regions(pdev, MODULENAME);
Stephen Hemmingerb57b7e52005-05-27 21:11:52 +02003429 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003430 netif_err(tp, probe, dev, "could not request regions\n");
françois romieu87aeec72010-04-26 11:42:06 +00003431 goto err_out_mwi_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 }
3433
Hayes Wangd24e9aa2011-02-22 17:26:19 +08003434 tp->cp_cmd = RxChkSum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
3436 if ((sizeof(dma_addr_t) > 4) &&
David S. Miller4300e8c2010-03-26 10:23:30 -07003437 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 tp->cp_cmd |= PCIDAC;
3439 dev->features |= NETIF_F_HIGHDMA;
3440 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07003441 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 if (rc < 0) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003443 netif_err(tp, probe, dev, "DMA configuration failed\n");
françois romieu87aeec72010-04-26 11:42:06 +00003444 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 }
3446 }
3447
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 /* ioremap MMIO region */
Francois Romieubcf0bf92006-07-26 23:14:13 +02003449 ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003450 if (!ioaddr) {
Joe Perchesbf82c182010-02-09 11:49:50 +00003451 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 rc = -EIO;
françois romieu87aeec72010-04-26 11:42:06 +00003453 goto err_out_free_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 }
Francois Romieu6f43adc2011-04-29 15:05:51 +02003455 tp->mmio_addr = ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Jon Masone44daad2011-06-27 07:46:31 +00003457 if (!pci_is_pcie(pdev))
3458 netif_info(tp, probe, dev, "not PCI Express\n");
David S. Miller4300e8c2010-03-26 10:23:30 -07003459
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003460 RTL_W16(IntrMask, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
Francois Romieu6f43adc2011-04-29 15:05:51 +02003462 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
Karsten Wiesed78ad8c2009-04-02 01:06:01 -07003464 RTL_W16(IntrStatus, 0xffff);
3465
françois romieuca52efd2009-07-24 12:34:19 +00003466 pci_set_master(pdev);
3467
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 /* Identify chip attached to board */
Francois Romieu5d320a22011-05-08 17:47:36 +02003469 rtl8169_get_mac_version(tp, dev, cfg->default_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
Francois Romieu7a8fc772011-03-01 17:18:33 +01003471 /*
3472 * Pretend we are using VLANs; This bypasses a nasty bug where
3473 * Interrupts stop flowing on high load on 8110SCd controllers.
3474 */
3475 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3476 tp->cp_cmd |= RxVlan;
3477
françois romieuc0e45c12011-01-03 15:08:04 +00003478 rtl_init_mdio_ops(tp);
françois romieu065c27c2011-01-03 15:08:12 +00003479 rtl_init_pll_power_ops(tp);
françois romieuc0e45c12011-01-03 15:08:04 +00003480
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 rtl8169_print_mac_version(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
Francois Romieu85bffe62011-04-27 08:22:39 +02003483 chipset = tp->mac_version;
3484 tp->txd_version = rtl_chip_infos[chipset].txd_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Francois Romieu5d06a992006-02-23 00:47:58 +01003486 RTL_W8(Cfg9346, Cfg9346_Unlock);
3487 RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
3488 RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
Bruno Prémont20037fa2008-10-08 17:05:03 -07003489 if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
3490 tp->features |= RTL_FEATURE_WOL;
3491 if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
3492 tp->features |= RTL_FEATURE_WOL;
Francois Romieufbac58f2007-10-04 22:51:38 +02003493 tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
Francois Romieu5d06a992006-02-23 00:47:58 +01003494 RTL_W8(Cfg9346, Cfg9346_Lock);
3495
Francois Romieu66ec5d42007-11-06 22:56:10 +01003496 if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
3497 (RTL_R8(PHYstatus) & TBI_Enable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 tp->set_speed = rtl8169_set_speed_tbi;
3499 tp->get_settings = rtl8169_gset_tbi;
3500 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
3501 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
3502 tp->link_ok = rtl8169_tbi_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003503 tp->do_ioctl = rtl_tbi_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 } else {
3505 tp->set_speed = rtl8169_set_speed_xmii;
3506 tp->get_settings = rtl8169_gset_xmii;
3507 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
3508 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
3509 tp->link_ok = rtl8169_xmii_link_ok;
Francois Romieu8b4ab282008-11-19 22:05:25 -08003510 tp->do_ioctl = rtl_xmii_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 }
3512
Francois Romieudf58ef52008-10-09 14:35:58 -07003513 spin_lock_init(&tp->lock);
3514
Ivan Vecera7bf6bf42008-09-23 22:46:29 +00003515 /* Get MAC address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 for (i = 0; i < MAC_ADDR_LEN; i++)
3517 dev->dev_addr[i] = RTL_R8(MAC0 + i);
John W. Linville6d6525b2005-09-12 10:48:57 -04003518 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
3522 dev->irq = pdev->irq;
3523 dev->base_addr = (unsigned long) ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003525 netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
Michał Mirosław350fb322011-04-08 06:35:56 +00003527 /* don't enable SG, IP_CSUM and TSO by default - it might not work
3528 * properly for all devices */
3529 dev->features |= NETIF_F_RXCSUM |
3530 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
3531
3532 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
3533 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
3534 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
3535 NETIF_F_HIGHDMA;
3536
3537 if (tp->mac_version == RTL_GIGA_MAC_VER_05)
3538 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
3539 dev->hw_features &= ~NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540
3541 tp->intr_mask = 0xffff;
Francois Romieu0e485152007-02-20 00:00:26 +01003542 tp->hw_start = cfg->hw_start;
3543 tp->intr_event = cfg->intr_event;
3544 tp->napi_event = cfg->napi_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
Francois Romieu2efa53f2007-03-09 00:00:05 +01003546 init_timer(&tp->timer);
3547 tp->timer.data = (unsigned long) dev;
3548 tp->timer.function = rtl8169_phy_timer;
3549
Francois Romieub6ffd972011-06-17 17:00:05 +02003550 tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
François Romieu953a12c2011-04-24 17:38:48 +02003551
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 rc = register_netdev(dev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003553 if (rc < 0)
françois romieu87aeec72010-04-26 11:42:06 +00003554 goto err_out_msi_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
3556 pci_set_drvdata(pdev, dev);
3557
Joe Perchesbf82c182010-02-09 11:49:50 +00003558 netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
Francois Romieu85bffe62011-04-27 08:22:39 +02003559 rtl_chip_infos[chipset].name, dev->base_addr, dev->dev_addr,
Joe Perchesbf82c182010-02-09 11:49:50 +00003560 (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561
Francois Romieucecb5fd2011-04-01 10:21:07 +02003562 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3563 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3564 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieub646d902011-01-03 15:08:21 +00003565 rtl8168_driver_start(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003566 }
françois romieub646d902011-01-03 15:08:21 +00003567
Bruno Prémont8b76ab32008-10-08 17:06:25 -07003568 device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
Alan Sternf3ec4f82010-06-08 15:23:51 -04003570 if (pci_dev_run_wake(pdev))
3571 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003572
Ivan Vecera0d672e92011-02-15 02:08:39 +00003573 netif_carrier_off(dev);
3574
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003575out:
3576 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
françois romieu87aeec72010-04-26 11:42:06 +00003578err_out_msi_4:
Francois Romieufbac58f2007-10-04 22:51:38 +02003579 rtl_disable_msi(pdev, tp);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003580 iounmap(ioaddr);
françois romieu87aeec72010-04-26 11:42:06 +00003581err_out_free_res_3:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003582 pci_release_regions(pdev);
françois romieu87aeec72010-04-26 11:42:06 +00003583err_out_mwi_2:
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003584 pci_clear_mwi(pdev);
Francois Romieu4ff96fa2006-07-26 22:05:06 +02003585 pci_disable_device(pdev);
3586err_out_free_dev_1:
3587 free_netdev(dev);
3588 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589}
3590
Francois Romieu07d3f512007-02-21 22:40:46 +01003591static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592{
3593 struct net_device *dev = pci_get_drvdata(pdev);
3594 struct rtl8169_private *tp = netdev_priv(dev);
3595
Francois Romieucecb5fd2011-04-01 10:21:07 +02003596 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3597 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3598 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieub646d902011-01-03 15:08:21 +00003599 rtl8168_driver_stop(tp);
françois romieue6de30d2011-01-03 15:08:37 +00003600 }
françois romieub646d902011-01-03 15:08:21 +00003601
Tejun Heo23f333a2010-12-12 16:45:14 +01003602 cancel_delayed_work_sync(&tp->task);
Francois Romieueb2a0212007-02-15 23:37:21 +01003603
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 unregister_netdev(dev);
Ivan Veceracc098dc2009-11-29 23:12:52 -08003605
François Romieu953a12c2011-04-24 17:38:48 +02003606 rtl_release_firmware(tp);
3607
Alan Sternf3ec4f82010-06-08 15:23:51 -04003608 if (pci_dev_run_wake(pdev))
3609 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003610
Ivan Veceracc098dc2009-11-29 23:12:52 -08003611 /* restore original MAC address */
3612 rtl_rar_set(tp, dev->perm_addr);
3613
Francois Romieufbac58f2007-10-04 22:51:38 +02003614 rtl_disable_msi(pdev, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 rtl8169_release_board(pdev, dev, tp->mmio_addr);
3616 pci_set_drvdata(pdev, NULL);
3617}
3618
Francois Romieub6ffd972011-06-17 17:00:05 +02003619static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
3620{
3621 struct rtl_fw *rtl_fw;
3622 const char *name;
3623 int rc = -ENOMEM;
3624
3625 name = rtl_lookup_firmware_name(tp);
3626 if (!name)
3627 goto out_no_firmware;
3628
3629 rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
3630 if (!rtl_fw)
3631 goto err_warn;
3632
3633 rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
3634 if (rc < 0)
3635 goto err_free;
3636
Francois Romieufd112f22011-06-18 00:10:29 +02003637 rc = rtl_check_firmware(tp, rtl_fw);
3638 if (rc < 0)
3639 goto err_release_firmware;
3640
Francois Romieub6ffd972011-06-17 17:00:05 +02003641 tp->rtl_fw = rtl_fw;
3642out:
3643 return;
3644
Francois Romieufd112f22011-06-18 00:10:29 +02003645err_release_firmware:
3646 release_firmware(rtl_fw->fw);
Francois Romieub6ffd972011-06-17 17:00:05 +02003647err_free:
3648 kfree(rtl_fw);
3649err_warn:
3650 netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
3651 name, rc);
3652out_no_firmware:
3653 tp->rtl_fw = NULL;
3654 goto out;
3655}
3656
François Romieu953a12c2011-04-24 17:38:48 +02003657static void rtl_request_firmware(struct rtl8169_private *tp)
3658{
Francois Romieub6ffd972011-06-17 17:00:05 +02003659 if (IS_ERR(tp->rtl_fw))
3660 rtl_request_uncached_firmware(tp);
François Romieu953a12c2011-04-24 17:38:48 +02003661}
3662
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663static int rtl8169_open(struct net_device *dev)
3664{
3665 struct rtl8169_private *tp = netdev_priv(dev);
françois romieueee3a962011-01-08 02:17:26 +00003666 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu99f252b2007-04-02 22:59:59 +02003668 int retval = -ENOMEM;
3669
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003670 pm_runtime_get_sync(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
Neil Hormanc0cd8842010-03-29 13:16:02 -07003672 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 * Rx and Tx desscriptors needs 256 bytes alignment.
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003674 * dma_alloc_coherent provides more.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 */
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003676 tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
3677 &tp->TxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 if (!tp->TxDescArray)
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003679 goto err_pm_runtime_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003681 tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
3682 &tp->RxPhyAddr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 if (!tp->RxDescArray)
Francois Romieu99f252b2007-04-02 22:59:59 +02003684 goto err_free_tx_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685
3686 retval = rtl8169_init_ring(dev);
3687 if (retval < 0)
Francois Romieu99f252b2007-04-02 22:59:59 +02003688 goto err_free_rx_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
David Howellsc4028952006-11-22 14:57:56 +00003690 INIT_DELAYED_WORK(&tp->task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Francois Romieu99f252b2007-04-02 22:59:59 +02003692 smp_mb();
3693
François Romieu953a12c2011-04-24 17:38:48 +02003694 rtl_request_firmware(tp);
3695
Francois Romieufbac58f2007-10-04 22:51:38 +02003696 retval = request_irq(dev->irq, rtl8169_interrupt,
3697 (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
Francois Romieu99f252b2007-04-02 22:59:59 +02003698 dev->name, dev);
3699 if (retval < 0)
François Romieu953a12c2011-04-24 17:38:48 +02003700 goto err_release_fw_2;
Francois Romieu99f252b2007-04-02 22:59:59 +02003701
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003702 napi_enable(&tp->napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003703
françois romieueee3a962011-01-08 02:17:26 +00003704 rtl8169_init_phy(dev, tp);
3705
Michał Mirosław350fb322011-04-08 06:35:56 +00003706 rtl8169_set_features(dev, dev->features);
françois romieueee3a962011-01-08 02:17:26 +00003707
françois romieu065c27c2011-01-03 15:08:12 +00003708 rtl_pll_power_up(tp);
3709
Francois Romieu07ce4062007-02-23 23:36:39 +01003710 rtl_hw_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003712 tp->saved_wolopts = 0;
3713 pm_runtime_put_noidle(&pdev->dev);
3714
françois romieueee3a962011-01-08 02:17:26 +00003715 rtl8169_check_link_status(dev, tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716out:
3717 return retval;
3718
François Romieu953a12c2011-04-24 17:38:48 +02003719err_release_fw_2:
3720 rtl_release_firmware(tp);
Francois Romieu99f252b2007-04-02 22:59:59 +02003721 rtl8169_rx_clear(tp);
3722err_free_rx_1:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003723 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
3724 tp->RxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003725 tp->RxDescArray = NULL;
Francois Romieu99f252b2007-04-02 22:59:59 +02003726err_free_tx_0:
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00003727 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
3728 tp->TxPhyAddr);
Rafael J. Wysockie1759442010-03-14 14:33:51 +00003729 tp->TxDescArray = NULL;
3730err_pm_runtime_put:
3731 pm_runtime_put_noidle(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 goto out;
3733}
3734
Hayes Wang92fc43b2011-07-06 15:58:03 +08003735static void rtl_rx_close(struct rtl8169_private *tp)
3736{
3737 void __iomem *ioaddr = tp->mmio_addr;
3738 u32 rxcfg = RTL_R32(RxConfig);
3739
3740 rxcfg &= ~(AcceptErr | AcceptRunt | AcceptBroadcast | AcceptMulticast |
3741 AcceptMyPhys | AcceptAllPhys);
3742 RTL_W32(RxConfig, rxcfg);
3743}
3744
françois romieue6de30d2011-01-03 15:08:37 +00003745static void rtl8169_hw_reset(struct rtl8169_private *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746{
françois romieue6de30d2011-01-03 15:08:37 +00003747 void __iomem *ioaddr = tp->mmio_addr;
3748
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 /* Disable interrupts */
3750 rtl8169_irq_mask_and_ack(ioaddr);
3751
Hayes Wang92fc43b2011-07-06 15:58:03 +08003752 rtl_rx_close(tp);
3753
Hayes Wang5d2e1952011-02-22 17:26:22 +08003754 if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
hayeswang4804b3b2011-03-21 01:50:29 +00003755 tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3756 tp->mac_version == RTL_GIGA_MAC_VER_31) {
françois romieue6de30d2011-01-03 15:08:37 +00003757 while (RTL_R8(TxPoll) & NPQ)
3758 udelay(20);
Hayes Wang92fc43b2011-07-06 15:58:03 +08003759 } else {
3760 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
3761 udelay(100);
françois romieue6de30d2011-01-03 15:08:37 +00003762 }
3763
Hayes Wang92fc43b2011-07-06 15:58:03 +08003764 rtl_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765}
3766
Francois Romieu7f796d82007-06-11 23:04:41 +02003767static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
Francois Romieu9cb427b2006-11-02 00:10:16 +01003768{
3769 void __iomem *ioaddr = tp->mmio_addr;
3770 u32 cfg = rtl8169_rx_config;
3771
Francois Romieu2b7b4312011-04-18 22:53:24 -07003772 cfg |= (RTL_R32(RxConfig) & RTL_RX_CONFIG_MASK);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003773 RTL_W32(RxConfig, cfg);
3774
3775 /* Set DMA burst size and Interframe Gap Time */
3776 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
3777 (InterFrameGap << TxInterFrameGapShift));
3778}
3779
Francois Romieu07ce4062007-02-23 23:36:39 +01003780static void rtl_hw_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781{
3782 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
Francois Romieu07ce4062007-02-23 23:36:39 +01003784 tp->hw_start(dev);
3785
Francois Romieu07ce4062007-02-23 23:36:39 +01003786 netif_start_queue(dev);
3787}
3788
Francois Romieu7f796d82007-06-11 23:04:41 +02003789static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
3790 void __iomem *ioaddr)
3791{
3792 /*
3793 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
3794 * register to be written before TxDescAddrLow to work.
3795 * Switching from MMIO to I/O access fixes the issue as well.
3796 */
3797 RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003798 RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003799 RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
Yang Hongyang284901a2009-04-06 19:01:15 -07003800 RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
Francois Romieu7f796d82007-06-11 23:04:41 +02003801}
3802
3803static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
3804{
3805 u16 cmd;
3806
3807 cmd = RTL_R16(CPlusCmd);
3808 RTL_W16(CPlusCmd, cmd);
3809 return cmd;
3810}
3811
Eric Dumazetfdd7b4c2009-06-09 04:01:02 -07003812static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
Francois Romieu7f796d82007-06-11 23:04:41 +02003813{
3814 /* Low hurts. Let's disable the filtering. */
Raimonds Cicans207d6e82009-10-26 10:52:37 +00003815 RTL_W16(RxMaxSize, rx_buf_sz + 1);
Francois Romieu7f796d82007-06-11 23:04:41 +02003816}
3817
Francois Romieu6dccd162007-02-13 23:38:05 +01003818static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
3819{
Francois Romieu37441002011-06-17 22:58:54 +02003820 static const struct rtl_cfg2_info {
Francois Romieu6dccd162007-02-13 23:38:05 +01003821 u32 mac_version;
3822 u32 clk;
3823 u32 val;
3824 } cfg2_info [] = {
3825 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
3826 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
3827 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
3828 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
Francois Romieu37441002011-06-17 22:58:54 +02003829 };
3830 const struct rtl_cfg2_info *p = cfg2_info;
Francois Romieu6dccd162007-02-13 23:38:05 +01003831 unsigned int i;
3832 u32 clk;
3833
3834 clk = RTL_R8(Config2) & PCI_Clock_66MHz;
Francois Romieucadf1852008-01-03 23:38:38 +01003835 for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
Francois Romieu6dccd162007-02-13 23:38:05 +01003836 if ((p->mac_version == mac_version) && (p->clk == clk)) {
3837 RTL_W32(0x7c, p->val);
3838 break;
3839 }
3840 }
3841}
3842
Francois Romieu07ce4062007-02-23 23:36:39 +01003843static void rtl_hw_start_8169(struct net_device *dev)
3844{
3845 struct rtl8169_private *tp = netdev_priv(dev);
3846 void __iomem *ioaddr = tp->mmio_addr;
3847 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu07ce4062007-02-23 23:36:39 +01003848
Francois Romieu9cb427b2006-11-02 00:10:16 +01003849 if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
3850 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
3851 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
3852 }
3853
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 RTL_W8(Cfg9346, Cfg9346_Unlock);
Francois Romieucecb5fd2011-04-01 10:21:07 +02003855 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
3856 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
3857 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
3858 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieu9cb427b2006-11-02 00:10:16 +01003859 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3860
françois romieuf0298f82011-01-03 15:07:42 +00003861 RTL_W8(EarlyTxThres, NoEarlyTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862
Eric Dumazet6f0333b2010-10-11 11:17:47 +00003863 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
Francois Romieucecb5fd2011-04-01 10:21:07 +02003865 if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
3866 tp->mac_version == RTL_GIGA_MAC_VER_02 ||
3867 tp->mac_version == RTL_GIGA_MAC_VER_03 ||
3868 tp->mac_version == RTL_GIGA_MAC_VER_04)
Francois Romieuc946b302007-10-04 00:42:50 +02003869 rtl_set_rx_tx_config_registers(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870
Francois Romieu7f796d82007-06-11 23:04:41 +02003871 tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
Francois Romieubcf0bf92006-07-26 23:14:13 +02003872
Francois Romieucecb5fd2011-04-01 10:21:07 +02003873 if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
3874 tp->mac_version == RTL_GIGA_MAC_VER_03) {
Joe Perches06fa7352007-10-18 21:15:00 +02003875 dprintk("Set MAC Reg C+CR Offset 0xE0. "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 "Bit-3 and bit-14 MUST be 1\n");
Francois Romieubcf0bf92006-07-26 23:14:13 +02003877 tp->cp_cmd |= (1 << 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 }
3879
Francois Romieubcf0bf92006-07-26 23:14:13 +02003880 RTL_W16(CPlusCmd, tp->cp_cmd);
3881
Francois Romieu6dccd162007-02-13 23:38:05 +01003882 rtl8169_set_magic_reg(ioaddr, tp->mac_version);
3883
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 /*
3885 * Undocumented corner. Supposedly:
3886 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
3887 */
3888 RTL_W16(IntrMitigate, 0x0000);
3889
Francois Romieu7f796d82007-06-11 23:04:41 +02003890 rtl_set_rx_tx_desc_registers(tp, ioaddr);
Francois Romieu9cb427b2006-11-02 00:10:16 +01003891
Francois Romieucecb5fd2011-04-01 10:21:07 +02003892 if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
3893 tp->mac_version != RTL_GIGA_MAC_VER_02 &&
3894 tp->mac_version != RTL_GIGA_MAC_VER_03 &&
3895 tp->mac_version != RTL_GIGA_MAC_VER_04) {
Francois Romieuc946b302007-10-04 00:42:50 +02003896 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
3897 rtl_set_rx_tx_config_registers(tp);
3898 }
3899
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieub518fa82006-08-16 15:23:13 +02003901
3902 /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
3903 RTL_R8(IntrMask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904
3905 RTL_W32(RxMissed, 0);
3906
Francois Romieu07ce4062007-02-23 23:36:39 +01003907 rtl_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
3909 /* no early-rx interrupts */
3910 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01003911
3912 /* Enable all known interrupts by setting the interrupt mask. */
Francois Romieu0e485152007-02-20 00:00:26 +01003913 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01003914}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
Francois Romieu9c14cea2008-07-05 00:21:15 +02003916static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
Francois Romieu458a9f62008-08-02 15:50:02 +02003917{
Jon Masone44daad2011-06-27 07:46:31 +00003918 int cap = pci_pcie_cap(pdev);
Francois Romieu458a9f62008-08-02 15:50:02 +02003919
Francois Romieu9c14cea2008-07-05 00:21:15 +02003920 if (cap) {
3921 u16 ctl;
3922
3923 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
3924 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
3925 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
3926 }
Francois Romieu458a9f62008-08-02 15:50:02 +02003927}
3928
françois romieu650e8d52011-01-03 15:08:29 +00003929static void rtl_csi_access_enable(void __iomem *ioaddr, u32 bits)
Francois Romieudacf8152008-08-02 20:44:13 +02003930{
3931 u32 csi;
3932
3933 csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
françois romieu650e8d52011-01-03 15:08:29 +00003934 rtl_csi_write(ioaddr, 0x070c, csi | bits);
3935}
3936
françois romieue6de30d2011-01-03 15:08:37 +00003937static void rtl_csi_access_enable_1(void __iomem *ioaddr)
3938{
3939 rtl_csi_access_enable(ioaddr, 0x17000000);
3940}
3941
françois romieu650e8d52011-01-03 15:08:29 +00003942static void rtl_csi_access_enable_2(void __iomem *ioaddr)
3943{
3944 rtl_csi_access_enable(ioaddr, 0x27000000);
Francois Romieudacf8152008-08-02 20:44:13 +02003945}
3946
3947struct ephy_info {
3948 unsigned int offset;
3949 u16 mask;
3950 u16 bits;
3951};
3952
Alexey Dobriyan350f7592009-11-25 15:54:21 -08003953static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
Francois Romieudacf8152008-08-02 20:44:13 +02003954{
3955 u16 w;
3956
3957 while (len-- > 0) {
3958 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
3959 rtl_ephy_write(ioaddr, e->offset, w);
3960 e++;
3961 }
3962}
3963
Francois Romieub726e492008-06-28 12:22:59 +02003964static void rtl_disable_clock_request(struct pci_dev *pdev)
3965{
Jon Masone44daad2011-06-27 07:46:31 +00003966 int cap = pci_pcie_cap(pdev);
Francois Romieub726e492008-06-28 12:22:59 +02003967
3968 if (cap) {
3969 u16 ctl;
3970
3971 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3972 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
3973 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3974 }
3975}
3976
françois romieue6de30d2011-01-03 15:08:37 +00003977static void rtl_enable_clock_request(struct pci_dev *pdev)
3978{
Jon Masone44daad2011-06-27 07:46:31 +00003979 int cap = pci_pcie_cap(pdev);
françois romieue6de30d2011-01-03 15:08:37 +00003980
3981 if (cap) {
3982 u16 ctl;
3983
3984 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
3985 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3986 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
3987 }
3988}
3989
Francois Romieub726e492008-06-28 12:22:59 +02003990#define R8168_CPCMD_QUIRK_MASK (\
3991 EnableBist | \
3992 Mac_dbgo_oe | \
3993 Force_half_dup | \
3994 Force_rxflow_en | \
3995 Force_txflow_en | \
3996 Cxpl_dbg_sel | \
3997 ASF | \
3998 PktCntrDisable | \
3999 Mac_dbgo_sel)
4000
Francois Romieu219a1e92008-06-28 11:58:39 +02004001static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
4002{
Francois Romieub726e492008-06-28 12:22:59 +02004003 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4004
4005 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4006
Francois Romieu2e68ae42008-06-28 12:00:55 +02004007 rtl_tx_performance_tweak(pdev,
4008 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
Francois Romieu219a1e92008-06-28 11:58:39 +02004009}
4010
4011static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
4012{
4013 rtl_hw_start_8168bb(ioaddr, pdev);
Francois Romieub726e492008-06-28 12:22:59 +02004014
françois romieuf0298f82011-01-03 15:07:42 +00004015 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieub726e492008-06-28 12:22:59 +02004016
4017 RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
Francois Romieu219a1e92008-06-28 11:58:39 +02004018}
4019
4020static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
4021{
Francois Romieub726e492008-06-28 12:22:59 +02004022 RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
4023
4024 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4025
Francois Romieu219a1e92008-06-28 11:58:39 +02004026 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
Francois Romieub726e492008-06-28 12:22:59 +02004027
4028 rtl_disable_clock_request(pdev);
4029
4030 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
Francois Romieu219a1e92008-06-28 11:58:39 +02004031}
4032
Francois Romieuef3386f2008-06-29 12:24:30 +02004033static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
Francois Romieu219a1e92008-06-28 11:58:39 +02004034{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004035 static const struct ephy_info e_info_8168cp[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004036 { 0x01, 0, 0x0001 },
4037 { 0x02, 0x0800, 0x1000 },
4038 { 0x03, 0, 0x0042 },
4039 { 0x06, 0x0080, 0x0000 },
4040 { 0x07, 0, 0x2000 }
4041 };
4042
françois romieu650e8d52011-01-03 15:08:29 +00004043 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004044
4045 rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
4046
Francois Romieu219a1e92008-06-28 11:58:39 +02004047 __rtl_hw_start_8168cp(ioaddr, pdev);
4048}
4049
Francois Romieuef3386f2008-06-29 12:24:30 +02004050static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
4051{
françois romieu650e8d52011-01-03 15:08:29 +00004052 rtl_csi_access_enable_2(ioaddr);
Francois Romieuef3386f2008-06-29 12:24:30 +02004053
4054 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4055
4056 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4057
4058 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4059}
4060
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004061static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
4062{
françois romieu650e8d52011-01-03 15:08:29 +00004063 rtl_csi_access_enable_2(ioaddr);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004064
4065 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4066
4067 /* Magic. */
4068 RTL_W8(DBG_REG, 0x20);
4069
françois romieuf0298f82011-01-03 15:07:42 +00004070 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004071
4072 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4073
4074 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4075}
4076
Francois Romieu219a1e92008-06-28 11:58:39 +02004077static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
4078{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004079 static const struct ephy_info e_info_8168c_1[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004080 { 0x02, 0x0800, 0x1000 },
4081 { 0x03, 0, 0x0002 },
4082 { 0x06, 0x0080, 0x0000 }
4083 };
4084
françois romieu650e8d52011-01-03 15:08:29 +00004085 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004086
4087 RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
4088
4089 rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
4090
Francois Romieu219a1e92008-06-28 11:58:39 +02004091 __rtl_hw_start_8168cp(ioaddr, pdev);
4092}
4093
4094static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
4095{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004096 static const struct ephy_info e_info_8168c_2[] = {
Francois Romieub726e492008-06-28 12:22:59 +02004097 { 0x01, 0, 0x0001 },
4098 { 0x03, 0x0400, 0x0220 }
4099 };
4100
françois romieu650e8d52011-01-03 15:08:29 +00004101 rtl_csi_access_enable_2(ioaddr);
Francois Romieub726e492008-06-28 12:22:59 +02004102
4103 rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
4104
Francois Romieu219a1e92008-06-28 11:58:39 +02004105 __rtl_hw_start_8168cp(ioaddr, pdev);
4106}
4107
Francois Romieu197ff762008-06-28 13:16:02 +02004108static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
4109{
4110 rtl_hw_start_8168c_2(ioaddr, pdev);
4111}
4112
Francois Romieu6fb07052008-06-29 11:54:28 +02004113static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
4114{
françois romieu650e8d52011-01-03 15:08:29 +00004115 rtl_csi_access_enable_2(ioaddr);
Francois Romieu6fb07052008-06-29 11:54:28 +02004116
4117 __rtl_hw_start_8168cp(ioaddr, pdev);
4118}
4119
Francois Romieu5b538df2008-07-20 16:22:45 +02004120static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
4121{
françois romieu650e8d52011-01-03 15:08:29 +00004122 rtl_csi_access_enable_2(ioaddr);
Francois Romieu5b538df2008-07-20 16:22:45 +02004123
4124 rtl_disable_clock_request(pdev);
4125
françois romieuf0298f82011-01-03 15:07:42 +00004126 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu5b538df2008-07-20 16:22:45 +02004127
4128 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4129
4130 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4131}
4132
hayeswang4804b3b2011-03-21 01:50:29 +00004133static void rtl_hw_start_8168dp(void __iomem *ioaddr, struct pci_dev *pdev)
4134{
4135 rtl_csi_access_enable_1(ioaddr);
4136
4137 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4138
4139 RTL_W8(MaxTxPacketSize, TxPacketMax);
4140
4141 rtl_disable_clock_request(pdev);
4142}
4143
françois romieue6de30d2011-01-03 15:08:37 +00004144static void rtl_hw_start_8168d_4(void __iomem *ioaddr, struct pci_dev *pdev)
4145{
4146 static const struct ephy_info e_info_8168d_4[] = {
4147 { 0x0b, ~0, 0x48 },
4148 { 0x19, 0x20, 0x50 },
4149 { 0x0c, ~0, 0x20 }
4150 };
4151 int i;
4152
4153 rtl_csi_access_enable_1(ioaddr);
4154
4155 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4156
4157 RTL_W8(MaxTxPacketSize, TxPacketMax);
4158
4159 for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
4160 const struct ephy_info *e = e_info_8168d_4 + i;
4161 u16 w;
4162
4163 w = rtl_ephy_read(ioaddr, e->offset);
4164 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
4165 }
4166
4167 rtl_enable_clock_request(pdev);
4168}
4169
hayeswang01dc7fe2011-03-21 01:50:28 +00004170static void rtl_hw_start_8168e(void __iomem *ioaddr, struct pci_dev *pdev)
4171{
4172 static const struct ephy_info e_info_8168e[] = {
4173 { 0x00, 0x0200, 0x0100 },
4174 { 0x00, 0x0000, 0x0004 },
4175 { 0x06, 0x0002, 0x0001 },
4176 { 0x06, 0x0000, 0x0030 },
4177 { 0x07, 0x0000, 0x2000 },
4178 { 0x00, 0x0000, 0x0020 },
4179 { 0x03, 0x5800, 0x2000 },
4180 { 0x03, 0x0000, 0x0001 },
4181 { 0x01, 0x0800, 0x1000 },
4182 { 0x07, 0x0000, 0x4000 },
4183 { 0x1e, 0x0000, 0x2000 },
4184 { 0x19, 0xffff, 0xfe6c },
4185 { 0x0a, 0x0000, 0x0040 }
4186 };
4187
4188 rtl_csi_access_enable_2(ioaddr);
4189
4190 rtl_ephy_init(ioaddr, e_info_8168e, ARRAY_SIZE(e_info_8168e));
4191
4192 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4193
4194 RTL_W8(MaxTxPacketSize, TxPacketMax);
4195
4196 rtl_disable_clock_request(pdev);
4197
4198 /* Reset tx FIFO pointer */
Francois Romieucecb5fd2011-04-01 10:21:07 +02004199 RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
4200 RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
hayeswang01dc7fe2011-03-21 01:50:28 +00004201
Francois Romieucecb5fd2011-04-01 10:21:07 +02004202 RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
hayeswang01dc7fe2011-03-21 01:50:28 +00004203}
4204
Francois Romieu07ce4062007-02-23 23:36:39 +01004205static void rtl_hw_start_8168(struct net_device *dev)
4206{
Francois Romieu2dd99532007-06-11 23:22:52 +02004207 struct rtl8169_private *tp = netdev_priv(dev);
4208 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu0e485152007-02-20 00:00:26 +01004209 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu2dd99532007-06-11 23:22:52 +02004210
4211 RTL_W8(Cfg9346, Cfg9346_Unlock);
4212
françois romieuf0298f82011-01-03 15:07:42 +00004213 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieu2dd99532007-06-11 23:22:52 +02004214
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004215 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieu2dd99532007-06-11 23:22:52 +02004216
Francois Romieu0e485152007-02-20 00:00:26 +01004217 tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
Francois Romieu2dd99532007-06-11 23:22:52 +02004218
4219 RTL_W16(CPlusCmd, tp->cp_cmd);
4220
Francois Romieu0e485152007-02-20 00:00:26 +01004221 RTL_W16(IntrMitigate, 0x5151);
4222
4223 /* Work around for RxFIFO overflow. */
Ivan Vecerab5ba6d12011-01-27 12:24:11 +01004224 if (tp->mac_version == RTL_GIGA_MAC_VER_11 ||
4225 tp->mac_version == RTL_GIGA_MAC_VER_22) {
Francois Romieu0e485152007-02-20 00:00:26 +01004226 tp->intr_event |= RxFIFOOver | PCSTimeout;
4227 tp->intr_event &= ~RxOverflow;
4228 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004229
4230 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4231
Francois Romieub8363902008-06-01 12:31:57 +02004232 rtl_set_rx_mode(dev);
4233
4234 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4235 (InterFrameGap << TxInterFrameGapShift));
Francois Romieu2dd99532007-06-11 23:22:52 +02004236
4237 RTL_R8(IntrMask);
4238
Francois Romieu219a1e92008-06-28 11:58:39 +02004239 switch (tp->mac_version) {
4240 case RTL_GIGA_MAC_VER_11:
4241 rtl_hw_start_8168bb(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004242 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004243
4244 case RTL_GIGA_MAC_VER_12:
4245 case RTL_GIGA_MAC_VER_17:
4246 rtl_hw_start_8168bef(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004247 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004248
4249 case RTL_GIGA_MAC_VER_18:
Francois Romieuef3386f2008-06-29 12:24:30 +02004250 rtl_hw_start_8168cp_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004251 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004252
4253 case RTL_GIGA_MAC_VER_19:
4254 rtl_hw_start_8168c_1(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004255 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004256
4257 case RTL_GIGA_MAC_VER_20:
4258 rtl_hw_start_8168c_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004259 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004260
Francois Romieu197ff762008-06-28 13:16:02 +02004261 case RTL_GIGA_MAC_VER_21:
4262 rtl_hw_start_8168c_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004263 break;
Francois Romieu197ff762008-06-28 13:16:02 +02004264
Francois Romieu6fb07052008-06-29 11:54:28 +02004265 case RTL_GIGA_MAC_VER_22:
4266 rtl_hw_start_8168c_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004267 break;
Francois Romieu6fb07052008-06-29 11:54:28 +02004268
Francois Romieuef3386f2008-06-29 12:24:30 +02004269 case RTL_GIGA_MAC_VER_23:
4270 rtl_hw_start_8168cp_2(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004271 break;
Francois Romieuef3386f2008-06-29 12:24:30 +02004272
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004273 case RTL_GIGA_MAC_VER_24:
4274 rtl_hw_start_8168cp_3(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004275 break;
Francois Romieu7f3e3d32008-07-20 18:53:20 +02004276
Francois Romieu5b538df2008-07-20 16:22:45 +02004277 case RTL_GIGA_MAC_VER_25:
françois romieudaf9df62009-10-07 12:44:20 +00004278 case RTL_GIGA_MAC_VER_26:
4279 case RTL_GIGA_MAC_VER_27:
Francois Romieu5b538df2008-07-20 16:22:45 +02004280 rtl_hw_start_8168d(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004281 break;
Francois Romieu5b538df2008-07-20 16:22:45 +02004282
françois romieue6de30d2011-01-03 15:08:37 +00004283 case RTL_GIGA_MAC_VER_28:
4284 rtl_hw_start_8168d_4(ioaddr, pdev);
hayeswang4804b3b2011-03-21 01:50:29 +00004285 break;
Francois Romieucecb5fd2011-04-01 10:21:07 +02004286
hayeswang4804b3b2011-03-21 01:50:29 +00004287 case RTL_GIGA_MAC_VER_31:
4288 rtl_hw_start_8168dp(ioaddr, pdev);
4289 break;
4290
hayeswang01dc7fe2011-03-21 01:50:28 +00004291 case RTL_GIGA_MAC_VER_32:
4292 case RTL_GIGA_MAC_VER_33:
4293 rtl_hw_start_8168e(ioaddr, pdev);
4294 break;
françois romieue6de30d2011-01-03 15:08:37 +00004295
Francois Romieu219a1e92008-06-28 11:58:39 +02004296 default:
4297 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
4298 dev->name, tp->mac_version);
hayeswang4804b3b2011-03-21 01:50:29 +00004299 break;
Francois Romieu219a1e92008-06-28 11:58:39 +02004300 }
Francois Romieu2dd99532007-06-11 23:22:52 +02004301
Francois Romieu0e485152007-02-20 00:00:26 +01004302 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4303
Francois Romieub8363902008-06-01 12:31:57 +02004304 RTL_W8(Cfg9346, Cfg9346_Lock);
4305
Francois Romieu2dd99532007-06-11 23:22:52 +02004306 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
Francois Romieu6dccd162007-02-13 23:38:05 +01004307
Francois Romieu0e485152007-02-20 00:00:26 +01004308 RTL_W16(IntrMask, tp->intr_event);
Francois Romieu07ce4062007-02-23 23:36:39 +01004309}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310
Francois Romieu2857ffb2008-08-02 21:08:49 +02004311#define R810X_CPCMD_QUIRK_MASK (\
4312 EnableBist | \
4313 Mac_dbgo_oe | \
4314 Force_half_dup | \
françois romieu5edcc532009-08-10 19:41:52 +00004315 Force_rxflow_en | \
Francois Romieu2857ffb2008-08-02 21:08:49 +02004316 Force_txflow_en | \
4317 Cxpl_dbg_sel | \
4318 ASF | \
4319 PktCntrDisable | \
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004320 Mac_dbgo_sel)
Francois Romieu2857ffb2008-08-02 21:08:49 +02004321
4322static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
4323{
Alexey Dobriyan350f7592009-11-25 15:54:21 -08004324 static const struct ephy_info e_info_8102e_1[] = {
Francois Romieu2857ffb2008-08-02 21:08:49 +02004325 { 0x01, 0, 0x6e65 },
4326 { 0x02, 0, 0x091f },
4327 { 0x03, 0, 0xc2f9 },
4328 { 0x06, 0, 0xafb5 },
4329 { 0x07, 0, 0x0e00 },
4330 { 0x19, 0, 0xec80 },
4331 { 0x01, 0, 0x2e65 },
4332 { 0x01, 0, 0x6e65 }
4333 };
4334 u8 cfg1;
4335
françois romieu650e8d52011-01-03 15:08:29 +00004336 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004337
4338 RTL_W8(DBG_REG, FIX_NAK_1);
4339
4340 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4341
4342 RTL_W8(Config1,
4343 LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
4344 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4345
4346 cfg1 = RTL_R8(Config1);
4347 if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
4348 RTL_W8(Config1, cfg1 & ~LEDS0);
4349
Francois Romieu2857ffb2008-08-02 21:08:49 +02004350 rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
4351}
4352
4353static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4354{
françois romieu650e8d52011-01-03 15:08:29 +00004355 rtl_csi_access_enable_2(ioaddr);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004356
4357 rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4358
4359 RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
4360 RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
Francois Romieu2857ffb2008-08-02 21:08:49 +02004361}
4362
4363static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
4364{
4365 rtl_hw_start_8102e_2(ioaddr, pdev);
4366
4367 rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
4368}
4369
Hayes Wang5a5e4442011-02-22 17:26:21 +08004370static void rtl_hw_start_8105e_1(void __iomem *ioaddr, struct pci_dev *pdev)
4371{
4372 static const struct ephy_info e_info_8105e_1[] = {
4373 { 0x07, 0, 0x4000 },
4374 { 0x19, 0, 0x0200 },
4375 { 0x19, 0, 0x0020 },
4376 { 0x1e, 0, 0x2000 },
4377 { 0x03, 0, 0x0001 },
4378 { 0x19, 0, 0x0100 },
4379 { 0x19, 0, 0x0004 },
4380 { 0x0a, 0, 0x0020 }
4381 };
4382
Francois Romieucecb5fd2011-04-01 10:21:07 +02004383 /* Force LAN exit from ASPM if Rx/Tx are not idle */
Hayes Wang5a5e4442011-02-22 17:26:21 +08004384 RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
4385
Francois Romieucecb5fd2011-04-01 10:21:07 +02004386 /* Disable Early Tally Counter */
Hayes Wang5a5e4442011-02-22 17:26:21 +08004387 RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
4388
4389 RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
Hayes Wang4f6b00e2011-07-06 15:58:02 +08004390 RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
Hayes Wang5a5e4442011-02-22 17:26:21 +08004391
4392 rtl_ephy_init(ioaddr, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
4393}
4394
4395static void rtl_hw_start_8105e_2(void __iomem *ioaddr, struct pci_dev *pdev)
4396{
4397 rtl_hw_start_8105e_1(ioaddr, pdev);
4398 rtl_ephy_write(ioaddr, 0x1e, rtl_ephy_read(ioaddr, 0x1e) | 0x8000);
4399}
4400
Francois Romieu07ce4062007-02-23 23:36:39 +01004401static void rtl_hw_start_8101(struct net_device *dev)
4402{
Francois Romieucdf1a602007-06-11 23:29:50 +02004403 struct rtl8169_private *tp = netdev_priv(dev);
4404 void __iomem *ioaddr = tp->mmio_addr;
4405 struct pci_dev *pdev = tp->pci_dev;
4406
Francois Romieucecb5fd2011-04-01 10:21:07 +02004407 if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
4408 tp->mac_version == RTL_GIGA_MAC_VER_16) {
Jon Masone44daad2011-06-27 07:46:31 +00004409 int cap = pci_pcie_cap(pdev);
Francois Romieu9c14cea2008-07-05 00:21:15 +02004410
4411 if (cap) {
4412 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
4413 PCI_EXP_DEVCTL_NOSNOOP_EN);
4414 }
Francois Romieucdf1a602007-06-11 23:29:50 +02004415 }
4416
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004417 RTL_W8(Cfg9346, Cfg9346_Unlock);
4418
Francois Romieu2857ffb2008-08-02 21:08:49 +02004419 switch (tp->mac_version) {
4420 case RTL_GIGA_MAC_VER_07:
4421 rtl_hw_start_8102e_1(ioaddr, pdev);
4422 break;
4423
4424 case RTL_GIGA_MAC_VER_08:
4425 rtl_hw_start_8102e_3(ioaddr, pdev);
4426 break;
4427
4428 case RTL_GIGA_MAC_VER_09:
4429 rtl_hw_start_8102e_2(ioaddr, pdev);
4430 break;
Hayes Wang5a5e4442011-02-22 17:26:21 +08004431
4432 case RTL_GIGA_MAC_VER_29:
4433 rtl_hw_start_8105e_1(ioaddr, pdev);
4434 break;
4435 case RTL_GIGA_MAC_VER_30:
4436 rtl_hw_start_8105e_2(ioaddr, pdev);
4437 break;
Francois Romieucdf1a602007-06-11 23:29:50 +02004438 }
4439
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004440 RTL_W8(Cfg9346, Cfg9346_Lock);
Francois Romieucdf1a602007-06-11 23:29:50 +02004441
françois romieuf0298f82011-01-03 15:07:42 +00004442 RTL_W8(MaxTxPacketSize, TxPacketMax);
Francois Romieucdf1a602007-06-11 23:29:50 +02004443
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004444 rtl_set_rx_max_size(ioaddr, rx_buf_sz);
Francois Romieucdf1a602007-06-11 23:29:50 +02004445
Hayes Wangd24e9aa2011-02-22 17:26:19 +08004446 tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
Francois Romieucdf1a602007-06-11 23:29:50 +02004447 RTL_W16(CPlusCmd, tp->cp_cmd);
4448
4449 RTL_W16(IntrMitigate, 0x0000);
4450
4451 rtl_set_rx_tx_desc_registers(tp, ioaddr);
4452
4453 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4454 rtl_set_rx_tx_config_registers(tp);
4455
Francois Romieucdf1a602007-06-11 23:29:50 +02004456 RTL_R8(IntrMask);
4457
Francois Romieucdf1a602007-06-11 23:29:50 +02004458 rtl_set_rx_mode(dev);
4459
4460 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
Francois Romieu6dccd162007-02-13 23:38:05 +01004461
Francois Romieu0e485152007-02-20 00:00:26 +01004462 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463}
4464
4465static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
4466{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
4468 return -EINVAL;
4469
4470 dev->mtu = new_mtu;
Michał Mirosław350fb322011-04-08 06:35:56 +00004471 netdev_update_features(dev);
4472
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00004473 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474}
4475
4476static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
4477{
Al Viro95e09182007-12-22 18:55:39 +00004478 desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
4480}
4481
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004482static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
4483 void **data_buff, struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484{
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004485 dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004486 DMA_FROM_DEVICE);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004487
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004488 kfree(*data_buff);
4489 *data_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 rtl8169_make_unusable_by_asic(desc);
4491}
4492
4493static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
4494{
4495 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
4496
4497 desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
4498}
4499
4500static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
4501 u32 rx_buf_sz)
4502{
4503 desc->addr = cpu_to_le64(mapping);
4504 wmb();
4505 rtl8169_mark_to_asic(desc, rx_buf_sz);
4506}
4507
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004508static inline void *rtl8169_align(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509{
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004510 return (void *)ALIGN((long)data, 16);
4511}
4512
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004513static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
4514 struct RxDesc *desc)
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004515{
4516 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 dma_addr_t mapping;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004518 struct device *d = &tp->pci_dev->dev;
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004519 struct net_device *dev = tp->dev;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004520 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004522 data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
4523 if (!data)
4524 return NULL;
Francois Romieue9f63f32007-02-28 23:16:57 +01004525
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004526 if (rtl8169_align(data) != data) {
4527 kfree(data);
4528 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
4529 if (!data)
4530 return NULL;
4531 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004532
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004533 mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
Stanislaw Gruszka231aee62010-10-20 22:25:38 +00004534 DMA_FROM_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004535 if (unlikely(dma_mapping_error(d, mapping))) {
4536 if (net_ratelimit())
4537 netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004538 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540
4541 rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004542 return data;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004543
4544err_out:
4545 kfree(data);
4546 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547}
4548
4549static void rtl8169_rx_clear(struct rtl8169_private *tp)
4550{
Francois Romieu07d3f512007-02-21 22:40:46 +01004551 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
4553 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004554 if (tp->Rx_databuff[i]) {
4555 rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 tp->RxDescArray + i);
4557 }
4558 }
4559}
4560
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004561static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562{
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004563 desc->opts1 |= cpu_to_le32(RingEnd);
4564}
Francois Romieu5b0384f2006-08-16 16:00:01 +02004565
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004566static int rtl8169_rx_fill(struct rtl8169_private *tp)
4567{
4568 unsigned int i;
4569
4570 for (i = 0; i < NUM_RX_DESC; i++) {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004571 void *data;
Francois Romieu4ae47c22007-06-16 23:28:45 +02004572
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004573 if (tp->Rx_databuff[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 continue;
Francois Romieubcf0bf92006-07-26 23:14:13 +02004575
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004576 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004577 if (!data) {
4578 rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004579 goto err_out;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004580 }
4581 tp->Rx_databuff[i] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004584 rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
4585 return 0;
4586
4587err_out:
4588 rtl8169_rx_clear(tp);
4589 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590}
4591
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592static int rtl8169_init_ring(struct net_device *dev)
4593{
4594 struct rtl8169_private *tp = netdev_priv(dev);
4595
4596 rtl8169_init_ring_indexes(tp);
4597
4598 memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
Eric Dumazet6f0333b2010-10-11 11:17:47 +00004599 memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
Stanislaw Gruszka0ecbe1c2010-10-20 22:25:37 +00004601 return rtl8169_rx_fill(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602}
4603
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004604static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 struct TxDesc *desc)
4606{
4607 unsigned int len = tx_skb->len;
4608
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004609 dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
4610
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 desc->opts1 = 0x00;
4612 desc->opts2 = 0x00;
4613 desc->addr = 0x00;
4614 tx_skb->len = 0;
4615}
4616
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004617static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
4618 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619{
4620 unsigned int i;
4621
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004622 for (i = 0; i < n; i++) {
4623 unsigned int entry = (start + i) % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 struct ring_info *tx_skb = tp->tx_skb + entry;
4625 unsigned int len = tx_skb->len;
4626
4627 if (len) {
4628 struct sk_buff *skb = tx_skb->skb;
4629
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004630 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 tp->TxDescArray + entry);
4632 if (skb) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004633 tp->dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 dev_kfree_skb(skb);
4635 tx_skb->skb = NULL;
4636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 }
4638 }
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004639}
4640
4641static void rtl8169_tx_clear(struct rtl8169_private *tp)
4642{
4643 rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644 tp->cur_tx = tp->dirty_tx = 0;
4645}
4646
David Howellsc4028952006-11-22 14:57:56 +00004647static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648{
4649 struct rtl8169_private *tp = netdev_priv(dev);
4650
David Howellsc4028952006-11-22 14:57:56 +00004651 PREPARE_DELAYED_WORK(&tp->task, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 schedule_delayed_work(&tp->task, 4);
4653}
4654
4655static void rtl8169_wait_for_quiescence(struct net_device *dev)
4656{
4657 struct rtl8169_private *tp = netdev_priv(dev);
4658 void __iomem *ioaddr = tp->mmio_addr;
4659
4660 synchronize_irq(dev->irq);
4661
4662 /* Wait for any pending NAPI task to complete */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004663 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664
4665 rtl8169_irq_mask_and_ack(ioaddr);
4666
David S. Millerd1d08d12008-01-07 20:53:33 -08004667 tp->intr_mask = 0xffff;
4668 RTL_W16(IntrMask, tp->intr_event);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004669 napi_enable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670}
4671
David Howellsc4028952006-11-22 14:57:56 +00004672static void rtl8169_reinit_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673{
David Howellsc4028952006-11-22 14:57:56 +00004674 struct rtl8169_private *tp =
4675 container_of(work, struct rtl8169_private, task.work);
4676 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 int ret;
4678
Francois Romieueb2a0212007-02-15 23:37:21 +01004679 rtnl_lock();
4680
4681 if (!netif_running(dev))
4682 goto out_unlock;
4683
4684 rtl8169_wait_for_quiescence(dev);
4685 rtl8169_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686
4687 ret = rtl8169_open(dev);
4688 if (unlikely(ret < 0)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004689 if (net_ratelimit())
4690 netif_err(tp, drv, dev,
4691 "reinit failure (status = %d). Rescheduling\n",
4692 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 rtl8169_schedule_work(dev, rtl8169_reinit_task);
4694 }
Francois Romieueb2a0212007-02-15 23:37:21 +01004695
4696out_unlock:
4697 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698}
4699
David Howellsc4028952006-11-22 14:57:56 +00004700static void rtl8169_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701{
David Howellsc4028952006-11-22 14:57:56 +00004702 struct rtl8169_private *tp =
4703 container_of(work, struct rtl8169_private, task.work);
4704 struct net_device *dev = tp->dev;
Francois Romieu56de4142011-03-15 17:29:31 +01004705 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
Francois Romieueb2a0212007-02-15 23:37:21 +01004707 rtnl_lock();
4708
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 if (!netif_running(dev))
Francois Romieueb2a0212007-02-15 23:37:21 +01004710 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711
4712 rtl8169_wait_for_quiescence(dev);
4713
Francois Romieu56de4142011-03-15 17:29:31 +01004714 for (i = 0; i < NUM_RX_DESC; i++)
4715 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
4716
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 rtl8169_tx_clear(tp);
4718
Hayes Wang92fc43b2011-07-06 15:58:03 +08004719 rtl8169_hw_reset(tp);
Francois Romieu56de4142011-03-15 17:29:31 +01004720 rtl_hw_start(dev);
4721 netif_wake_queue(dev);
4722 rtl8169_check_link_status(dev, tp, tp->mmio_addr);
Francois Romieueb2a0212007-02-15 23:37:21 +01004723
4724out_unlock:
4725 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726}
4727
4728static void rtl8169_tx_timeout(struct net_device *dev)
4729{
4730 struct rtl8169_private *tp = netdev_priv(dev);
4731
françois romieue6de30d2011-01-03 15:08:37 +00004732 rtl8169_hw_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
4734 /* Let's wait a bit while any (async) irq lands on */
4735 rtl8169_schedule_work(dev, rtl8169_reset_task);
4736}
4737
4738static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
Francois Romieu2b7b4312011-04-18 22:53:24 -07004739 u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740{
4741 struct skb_shared_info *info = skb_shinfo(skb);
4742 unsigned int cur_frag, entry;
Jeff Garzika6343af2007-07-17 05:39:58 -04004743 struct TxDesc * uninitialized_var(txd);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004744 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745
4746 entry = tp->cur_tx;
4747 for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
4748 skb_frag_t *frag = info->frags + cur_frag;
4749 dma_addr_t mapping;
4750 u32 status, len;
4751 void *addr;
4752
4753 entry = (entry + 1) % NUM_TX_DESC;
4754
4755 txd = tp->TxDescArray + entry;
4756 len = frag->size;
4757 addr = ((void *) page_address(frag->page)) + frag->page_offset;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004758 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004759 if (unlikely(dma_mapping_error(d, mapping))) {
4760 if (net_ratelimit())
4761 netif_err(tp, drv, tp->dev,
4762 "Failed to map TX fragments DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004763 goto err_out;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765
Francois Romieucecb5fd2011-04-01 10:21:07 +02004766 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07004767 status = opts[0] | len |
4768 (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
4770 txd->opts1 = cpu_to_le32(status);
Francois Romieu2b7b4312011-04-18 22:53:24 -07004771 txd->opts2 = cpu_to_le32(opts[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 txd->addr = cpu_to_le64(mapping);
4773
4774 tp->tx_skb[entry].len = len;
4775 }
4776
4777 if (cur_frag) {
4778 tp->tx_skb[entry].skb = skb;
4779 txd->opts1 |= cpu_to_le32(LastFrag);
4780 }
4781
4782 return cur_frag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004783
4784err_out:
4785 rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
4786 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787}
4788
Francois Romieu2b7b4312011-04-18 22:53:24 -07004789static inline void rtl8169_tso_csum(struct rtl8169_private *tp,
4790 struct sk_buff *skb, u32 *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791{
Francois Romieu2b7b4312011-04-18 22:53:24 -07004792 const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
Michał Mirosław350fb322011-04-08 06:35:56 +00004793 u32 mss = skb_shinfo(skb)->gso_size;
Francois Romieu2b7b4312011-04-18 22:53:24 -07004794 int offset = info->opts_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795
Francois Romieu2b7b4312011-04-18 22:53:24 -07004796 if (mss) {
4797 opts[0] |= TD_LSO;
4798 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
4799 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004800 const struct iphdr *ip = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801
4802 if (ip->protocol == IPPROTO_TCP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07004803 opts[offset] |= info->checksum.tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 else if (ip->protocol == IPPROTO_UDP)
Francois Romieu2b7b4312011-04-18 22:53:24 -07004805 opts[offset] |= info->checksum.udp;
4806 else
4807 WARN_ON_ONCE(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809}
4810
Stephen Hemminger613573252009-08-31 19:50:58 +00004811static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
4812 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813{
4814 struct rtl8169_private *tp = netdev_priv(dev);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004815 unsigned int entry = tp->cur_tx % NUM_TX_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 struct TxDesc *txd = tp->TxDescArray + entry;
4817 void __iomem *ioaddr = tp->mmio_addr;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004818 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819 dma_addr_t mapping;
4820 u32 status, len;
Francois Romieu2b7b4312011-04-18 22:53:24 -07004821 u32 opts[2];
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004822 int frags;
Francois Romieu5b0384f2006-08-16 16:00:01 +02004823
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00004825 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004826 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827 }
4828
4829 if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004830 goto err_stop_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004832 len = skb_headlen(skb);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004833 mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004834 if (unlikely(dma_mapping_error(d, mapping))) {
4835 if (net_ratelimit())
4836 netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004837 goto err_dma_0;
Stanislaw Gruszkad827d862010-10-20 22:25:43 +00004838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839
4840 tp->tx_skb[entry].len = len;
4841 txd->addr = cpu_to_le64(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842
Francois Romieu2b7b4312011-04-18 22:53:24 -07004843 opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
4844 opts[0] = DescOwn;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004845
Francois Romieu2b7b4312011-04-18 22:53:24 -07004846 rtl8169_tso_csum(tp, skb, opts);
4847
4848 frags = rtl8169_xmit_frags(tp, skb, opts);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004849 if (frags < 0)
4850 goto err_dma_1;
4851 else if (frags)
Francois Romieu2b7b4312011-04-18 22:53:24 -07004852 opts[0] |= FirstFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004853 else {
Francois Romieu2b7b4312011-04-18 22:53:24 -07004854 opts[0] |= FirstFrag | LastFrag;
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004855 tp->tx_skb[entry].skb = skb;
4856 }
4857
Francois Romieu2b7b4312011-04-18 22:53:24 -07004858 txd->opts2 = cpu_to_le32(opts[1]);
4859
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 wmb();
4861
Francois Romieucecb5fd2011-04-01 10:21:07 +02004862 /* Anti gcc 2.95.3 bugware (sic) */
Francois Romieu2b7b4312011-04-18 22:53:24 -07004863 status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864 txd->opts1 = cpu_to_le32(status);
4865
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 tp->cur_tx += frags + 1;
4867
David Dillow4c020a92010-03-03 16:33:10 +00004868 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869
Francois Romieucecb5fd2011-04-01 10:21:07 +02004870 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871
4872 if (TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
4873 netif_stop_queue(dev);
4874 smp_rmb();
4875 if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
4876 netif_wake_queue(dev);
4877 }
4878
Stephen Hemminger613573252009-08-31 19:50:58 +00004879 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004881err_dma_1:
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004882 rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
Stanislaw Gruszka3eafe502010-10-20 22:25:36 +00004883err_dma_0:
4884 dev_kfree_skb(skb);
4885 dev->stats.tx_dropped++;
4886 return NETDEV_TX_OK;
4887
4888err_stop_0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 netif_stop_queue(dev);
Francois Romieucebf8cc2007-10-18 12:06:54 +02004890 dev->stats.tx_dropped++;
Stephen Hemminger613573252009-08-31 19:50:58 +00004891 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892}
4893
4894static void rtl8169_pcierr_interrupt(struct net_device *dev)
4895{
4896 struct rtl8169_private *tp = netdev_priv(dev);
4897 struct pci_dev *pdev = tp->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 u16 pci_status, pci_cmd;
4899
4900 pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
4901 pci_read_config_word(pdev, PCI_STATUS, &pci_status);
4902
Joe Perchesbf82c182010-02-09 11:49:50 +00004903 netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
4904 pci_cmd, pci_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905
4906 /*
4907 * The recovery sequence below admits a very elaborated explanation:
4908 * - it seems to work;
Francois Romieud03902b2006-11-23 00:00:42 +01004909 * - I did not see what else could be done;
4910 * - it makes iop3xx happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911 *
4912 * Feel free to adjust to your needs.
4913 */
Francois Romieua27993f2006-12-18 00:04:19 +01004914 if (pdev->broken_parity_status)
Francois Romieud03902b2006-11-23 00:00:42 +01004915 pci_cmd &= ~PCI_COMMAND_PARITY;
4916 else
4917 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
4918
4919 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920
4921 pci_write_config_word(pdev, PCI_STATUS,
4922 pci_status & (PCI_STATUS_DETECTED_PARITY |
4923 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
4924 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
4925
4926 /* The infamous DAC f*ckup only happens at boot time */
4927 if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
françois romieue6de30d2011-01-03 15:08:37 +00004928 void __iomem *ioaddr = tp->mmio_addr;
4929
Joe Perchesbf82c182010-02-09 11:49:50 +00004930 netif_info(tp, intr, dev, "disabling PCI DAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 tp->cp_cmd &= ~PCIDAC;
4932 RTL_W16(CPlusCmd, tp->cp_cmd);
4933 dev->features &= ~NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 }
4935
françois romieue6de30d2011-01-03 15:08:37 +00004936 rtl8169_hw_reset(tp);
Francois Romieud03902b2006-11-23 00:00:42 +01004937
4938 rtl8169_schedule_work(dev, rtl8169_reinit_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939}
4940
Francois Romieu07d3f512007-02-21 22:40:46 +01004941static void rtl8169_tx_interrupt(struct net_device *dev,
4942 struct rtl8169_private *tp,
4943 void __iomem *ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944{
4945 unsigned int dirty_tx, tx_left;
4946
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 dirty_tx = tp->dirty_tx;
4948 smp_rmb();
4949 tx_left = tp->cur_tx - dirty_tx;
4950
4951 while (tx_left > 0) {
4952 unsigned int entry = dirty_tx % NUM_TX_DESC;
4953 struct ring_info *tx_skb = tp->tx_skb + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 u32 status;
4955
4956 rmb();
4957 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
4958 if (status & DescOwn)
4959 break;
4960
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00004961 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
4962 tp->TxDescArray + entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 if (status & LastFrag) {
Stanislaw Gruszkacac4b222010-10-20 22:25:40 +00004964 dev->stats.tx_packets++;
4965 dev->stats.tx_bytes += tx_skb->skb->len;
Eric Dumazet87433bf2009-06-09 22:55:53 +00004966 dev_kfree_skb(tx_skb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 tx_skb->skb = NULL;
4968 }
4969 dirty_tx++;
4970 tx_left--;
4971 }
4972
4973 if (tp->dirty_tx != dirty_tx) {
4974 tp->dirty_tx = dirty_tx;
4975 smp_wmb();
4976 if (netif_queue_stopped(dev) &&
4977 (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
4978 netif_wake_queue(dev);
4979 }
Francois Romieud78ae2d2007-08-26 20:08:19 +02004980 /*
4981 * 8168 hack: TxPoll requests are lost when the Tx packets are
4982 * too close. Let's kick an extra TxPoll request when a burst
4983 * of start_xmit activity is detected (if it is not detected,
4984 * it is slow enough). -- FR
4985 */
4986 smp_rmb();
4987 if (tp->cur_tx != dirty_tx)
4988 RTL_W8(TxPoll, NPQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 }
4990}
4991
Francois Romieu126fa4b2005-05-12 20:09:17 -04004992static inline int rtl8169_fragmented_frame(u32 status)
4993{
4994 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
4995}
4996
Eric Dumazetadea1ac72010-09-05 20:04:05 -07004997static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 u32 status = opts1 & RxProtoMask;
5000
5001 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
Shan Weid5d3ebe2010-11-12 00:15:25 +00005002 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003 skb->ip_summed = CHECKSUM_UNNECESSARY;
5004 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005005 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006}
5007
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005008static struct sk_buff *rtl8169_try_rx_copy(void *data,
5009 struct rtl8169_private *tp,
5010 int pkt_size,
5011 dma_addr_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012{
Stephen Hemmingerb4496552007-06-17 01:06:49 +02005013 struct sk_buff *skb;
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005014 struct device *d = &tp->pci_dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005016 data = rtl8169_align(data);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005017 dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005018 prefetch(data);
5019 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
5020 if (skb)
5021 memcpy(skb->data, data, pkt_size);
Stanislaw Gruszka48addcc2010-10-20 22:25:39 +00005022 dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
5023
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005024 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025}
5026
Francois Romieu07d3f512007-02-21 22:40:46 +01005027static int rtl8169_rx_interrupt(struct net_device *dev,
5028 struct rtl8169_private *tp,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005029 void __iomem *ioaddr, u32 budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030{
5031 unsigned int cur_rx, rx_left;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005032 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 cur_rx = tp->cur_rx;
5035 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
Francois Romieu865c6522008-05-11 14:51:00 +02005036 rx_left = min(rx_left, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005038 for (; rx_left > 0; rx_left--, cur_rx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 unsigned int entry = cur_rx % NUM_RX_DESC;
Francois Romieu126fa4b2005-05-12 20:09:17 -04005040 struct RxDesc *desc = tp->RxDescArray + entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041 u32 status;
5042
5043 rmb();
Francois Romieu126fa4b2005-05-12 20:09:17 -04005044 status = le32_to_cpu(desc->opts1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
5046 if (status & DescOwn)
5047 break;
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005048 if (unlikely(status & RxRES)) {
Joe Perchesbf82c182010-02-09 11:49:50 +00005049 netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
5050 status);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005051 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052 if (status & (RxRWT | RxRUNT))
Francois Romieucebf8cc2007-10-18 12:06:54 +02005053 dev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054 if (status & RxCRC)
Francois Romieucebf8cc2007-10-18 12:06:54 +02005055 dev->stats.rx_crc_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02005056 if (status & RxFOVF) {
5057 rtl8169_schedule_work(dev, rtl8169_reset_task);
Francois Romieucebf8cc2007-10-18 12:06:54 +02005058 dev->stats.rx_fifo_errors++;
Francois Romieu9dccf612006-05-14 12:31:17 +02005059 }
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005060 rtl8169_mark_to_asic(desc, rx_buf_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 } else {
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005062 struct sk_buff *skb;
Stephen Hemmingerb4496552007-06-17 01:06:49 +02005063 dma_addr_t addr = le64_to_cpu(desc->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 int pkt_size = (status & 0x00001FFF) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065
Francois Romieu126fa4b2005-05-12 20:09:17 -04005066 /*
5067 * The driver does not support incoming fragmented
5068 * frames. They are seen as a symptom of over-mtu
5069 * sized frames.
5070 */
5071 if (unlikely(rtl8169_fragmented_frame(status))) {
Francois Romieucebf8cc2007-10-18 12:06:54 +02005072 dev->stats.rx_dropped++;
5073 dev->stats.rx_length_errors++;
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005074 rtl8169_mark_to_asic(desc, rx_buf_sz);
Richard Dawe4dcb7d32005-05-27 21:12:00 +02005075 continue;
Francois Romieu126fa4b2005-05-12 20:09:17 -04005076 }
5077
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005078 skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
5079 tp, pkt_size, addr);
5080 rtl8169_mark_to_asic(desc, rx_buf_sz);
5081 if (!skb) {
5082 dev->stats.rx_dropped++;
5083 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084 }
5085
Eric Dumazetadea1ac72010-09-05 20:04:05 -07005086 rtl8169_rx_csum(skb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087 skb_put(skb, pkt_size);
5088 skb->protocol = eth_type_trans(skb, dev);
5089
Francois Romieu7a8fc772011-03-01 17:18:33 +01005090 rtl8169_rx_vlan_tag(desc, skb);
5091
Francois Romieu56de4142011-03-15 17:29:31 +01005092 napi_gro_receive(&tp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093
Francois Romieucebf8cc2007-10-18 12:06:54 +02005094 dev->stats.rx_bytes += pkt_size;
5095 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096 }
Francois Romieu6dccd162007-02-13 23:38:05 +01005097
5098 /* Work around for AMD plateform. */
Al Viro95e09182007-12-22 18:55:39 +00005099 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
Francois Romieu6dccd162007-02-13 23:38:05 +01005100 (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
5101 desc->opts2 = 0;
5102 cur_rx++;
5103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 }
5105
5106 count = cur_rx - tp->cur_rx;
5107 tp->cur_rx = cur_rx;
5108
Eric Dumazet6f0333b2010-10-11 11:17:47 +00005109 tp->dirty_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110
5111 return count;
5112}
5113
Francois Romieu07d3f512007-02-21 22:40:46 +01005114static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115{
Francois Romieu07d3f512007-02-21 22:40:46 +01005116 struct net_device *dev = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 struct rtl8169_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 int handled = 0;
Francois Romieu865c6522008-05-11 14:51:00 +02005120 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121
David Dillowf11a3772009-05-22 15:29:34 +00005122 /* loop handling interrupts until we have no new ones or
5123 * we hit a invalid/hotplug case.
5124 */
Francois Romieu865c6522008-05-11 14:51:00 +02005125 status = RTL_R16(IntrStatus);
David Dillowf11a3772009-05-22 15:29:34 +00005126 while (status && status != 0xffff) {
5127 handled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128
David Dillowf11a3772009-05-22 15:29:34 +00005129 /* Handle all of the error cases first. These will reset
5130 * the chip, so just exit the loop.
5131 */
5132 if (unlikely(!netif_running(dev))) {
Hayes Wang92fc43b2011-07-06 15:58:03 +08005133 rtl8169_hw_reset(tp);
David Dillowf11a3772009-05-22 15:29:34 +00005134 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 }
David Dillowf11a3772009-05-22 15:29:34 +00005136
Francois Romieu1519e572011-02-03 12:02:36 +01005137 if (unlikely(status & RxFIFOOver)) {
5138 switch (tp->mac_version) {
5139 /* Work around for rx fifo overflow */
5140 case RTL_GIGA_MAC_VER_11:
5141 case RTL_GIGA_MAC_VER_22:
5142 case RTL_GIGA_MAC_VER_26:
5143 netif_stop_queue(dev);
5144 rtl8169_tx_timeout(dev);
5145 goto done;
Francois Romieuf60ac8e2011-02-03 17:27:52 +01005146 /* Testers needed. */
5147 case RTL_GIGA_MAC_VER_17:
5148 case RTL_GIGA_MAC_VER_19:
5149 case RTL_GIGA_MAC_VER_20:
5150 case RTL_GIGA_MAC_VER_21:
5151 case RTL_GIGA_MAC_VER_23:
5152 case RTL_GIGA_MAC_VER_24:
5153 case RTL_GIGA_MAC_VER_27:
5154 case RTL_GIGA_MAC_VER_28:
hayeswang4804b3b2011-03-21 01:50:29 +00005155 case RTL_GIGA_MAC_VER_31:
Francois Romieu1519e572011-02-03 12:02:36 +01005156 /* Experimental science. Pktgen proof. */
5157 case RTL_GIGA_MAC_VER_12:
5158 case RTL_GIGA_MAC_VER_25:
5159 if (status == RxFIFOOver)
5160 goto done;
5161 break;
5162 default:
5163 break;
5164 }
David Dillowf11a3772009-05-22 15:29:34 +00005165 }
5166
5167 if (unlikely(status & SYSErr)) {
5168 rtl8169_pcierr_interrupt(dev);
5169 break;
5170 }
5171
5172 if (status & LinkChg)
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00005173 __rtl8169_check_link_status(dev, tp, ioaddr, true);
David Dillowf11a3772009-05-22 15:29:34 +00005174
5175 /* We need to see the lastest version of tp->intr_mask to
5176 * avoid ignoring an MSI interrupt and having to wait for
5177 * another event which may never come.
5178 */
5179 smp_rmb();
5180 if (status & tp->intr_mask & tp->napi_event) {
5181 RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
5182 tp->intr_mask = ~tp->napi_event;
5183
5184 if (likely(napi_schedule_prep(&tp->napi)))
5185 __napi_schedule(&tp->napi);
Joe Perchesbf82c182010-02-09 11:49:50 +00005186 else
5187 netif_info(tp, intr, dev,
5188 "interrupt %04x in poll\n", status);
David Dillowf11a3772009-05-22 15:29:34 +00005189 }
5190
5191 /* We only get a new MSI interrupt when all active irq
5192 * sources on the chip have been acknowledged. So, ack
5193 * everything we've seen and check if new sources have become
5194 * active to avoid blocking all interrupts from the chip.
5195 */
5196 RTL_W16(IntrStatus,
5197 (status & RxFIFOOver) ? (status | RxOverflow) : status);
5198 status = RTL_R16(IntrStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 }
Francois Romieu1519e572011-02-03 12:02:36 +01005200done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 return IRQ_RETVAL(handled);
5202}
5203
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005204static int rtl8169_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005206 struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
5207 struct net_device *dev = tp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 void __iomem *ioaddr = tp->mmio_addr;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005209 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005211 work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 rtl8169_tx_interrupt(dev, tp, ioaddr);
5213
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005214 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005215 napi_complete(napi);
David Dillowf11a3772009-05-22 15:29:34 +00005216
5217 /* We need for force the visibility of tp->intr_mask
5218 * for other CPUs, as we can loose an MSI interrupt
5219 * and potentially wait for a retransmit timeout if we don't.
5220 * The posted write to IntrMask is safe, as it will
5221 * eventually make it to the chip and we won't loose anything
5222 * until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 */
David Dillowf11a3772009-05-22 15:29:34 +00005224 tp->intr_mask = 0xffff;
David Dillow4c020a92010-03-03 16:33:10 +00005225 wmb();
Francois Romieu0e485152007-02-20 00:00:26 +01005226 RTL_W16(IntrMask, tp->intr_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 }
5228
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005229 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231
Francois Romieu523a6092008-09-10 22:28:56 +02005232static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
5233{
5234 struct rtl8169_private *tp = netdev_priv(dev);
5235
5236 if (tp->mac_version > RTL_GIGA_MAC_VER_06)
5237 return;
5238
5239 dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
5240 RTL_W32(RxMissed, 0);
5241}
5242
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243static void rtl8169_down(struct net_device *dev)
5244{
5245 struct rtl8169_private *tp = netdev_priv(dev);
5246 void __iomem *ioaddr = tp->mmio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247
Francois Romieu4876cc12011-03-11 21:07:11 +01005248 del_timer_sync(&tp->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249
5250 netif_stop_queue(dev);
5251
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01005252 napi_disable(&tp->napi);
Stephen Hemminger93dd79e2007-10-28 17:14:06 +01005253
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254 spin_lock_irq(&tp->lock);
5255
Hayes Wang92fc43b2011-07-06 15:58:03 +08005256 rtl8169_hw_reset(tp);
Stanislaw Gruszka323bb682010-10-20 22:25:41 +00005257 /*
5258 * At this point device interrupts can not be enabled in any function,
5259 * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task,
5260 * rtl8169_reinit_task) and napi is disabled (rtl8169_poll).
5261 */
Francois Romieu523a6092008-09-10 22:28:56 +02005262 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263
5264 spin_unlock_irq(&tp->lock);
5265
5266 synchronize_irq(dev->irq);
5267
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268 /* Give a racing hard_start_xmit a few cycles to complete. */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07005269 synchronize_sched(); /* FIXME: should this be synchronize_irq()? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 rtl8169_tx_clear(tp);
5272
5273 rtl8169_rx_clear(tp);
françois romieu065c27c2011-01-03 15:08:12 +00005274
5275 rtl_pll_power_down(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276}
5277
5278static int rtl8169_close(struct net_device *dev)
5279{
5280 struct rtl8169_private *tp = netdev_priv(dev);
5281 struct pci_dev *pdev = tp->pci_dev;
5282
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005283 pm_runtime_get_sync(&pdev->dev);
5284
Francois Romieucecb5fd2011-04-01 10:21:07 +02005285 /* Update counters before going down */
Ivan Vecera355423d2009-02-06 21:49:57 -08005286 rtl8169_update_counters(dev);
5287
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288 rtl8169_down(dev);
5289
5290 free_irq(dev->irq, dev);
5291
Stanislaw Gruszka82553bb2010-10-08 04:25:01 +00005292 dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
5293 tp->RxPhyAddr);
5294 dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
5295 tp->TxPhyAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 tp->TxDescArray = NULL;
5297 tp->RxDescArray = NULL;
5298
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005299 pm_runtime_put_sync(&pdev->dev);
5300
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301 return 0;
5302}
5303
Francois Romieu07ce4062007-02-23 23:36:39 +01005304static void rtl_set_rx_mode(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305{
5306 struct rtl8169_private *tp = netdev_priv(dev);
5307 void __iomem *ioaddr = tp->mmio_addr;
5308 unsigned long flags;
5309 u32 mc_filter[2]; /* Multicast hash filter */
Francois Romieu07d3f512007-02-21 22:40:46 +01005310 int rx_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311 u32 tmp = 0;
5312
5313 if (dev->flags & IFF_PROMISC) {
5314 /* Unconditionally log net taps. */
Joe Perchesbf82c182010-02-09 11:49:50 +00005315 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316 rx_mode =
5317 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
5318 AcceptAllPhys;
5319 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00005320 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Joe Perches8e95a202009-12-03 07:58:21 +00005321 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322 /* Too many to filter perfectly -- accept all multicasts. */
5323 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
5324 mc_filter[1] = mc_filter[0] = 0xffffffff;
5325 } else {
Jiri Pirko22bedad2010-04-01 21:22:57 +00005326 struct netdev_hw_addr *ha;
Francois Romieu07d3f512007-02-21 22:40:46 +01005327
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328 rx_mode = AcceptBroadcast | AcceptMyPhys;
5329 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00005330 netdev_for_each_mc_addr(ha, dev) {
5331 int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
5333 rx_mode |= AcceptMulticast;
5334 }
5335 }
5336
5337 spin_lock_irqsave(&tp->lock, flags);
5338
5339 tmp = rtl8169_rx_config | rx_mode |
Francois Romieu2b7b4312011-04-18 22:53:24 -07005340 (RTL_R32(RxConfig) & RTL_RX_CONFIG_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341
Francois Romieuf887cce2008-07-17 22:24:18 +02005342 if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
Francois Romieu1087f4f2007-12-26 22:46:05 +01005343 u32 data = mc_filter[0];
5344
5345 mc_filter[0] = swab32(mc_filter[1]);
5346 mc_filter[1] = swab32(data);
Francois Romieubcf0bf92006-07-26 23:14:13 +02005347 }
5348
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 RTL_W32(MAR0 + 4, mc_filter[1]);
Francois Romieu78f1cd02010-03-27 19:35:46 -07005350 RTL_W32(MAR0 + 0, mc_filter[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
Francois Romieu57a9f232007-06-04 22:10:15 +02005352 RTL_W32(RxConfig, tmp);
5353
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 spin_unlock_irqrestore(&tp->lock, flags);
5355}
5356
5357/**
5358 * rtl8169_get_stats - Get rtl8169 read/write statistics
5359 * @dev: The Ethernet Device to get statistics for
5360 *
5361 * Get TX/RX statistics for rtl8169
5362 */
5363static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
5364{
5365 struct rtl8169_private *tp = netdev_priv(dev);
5366 void __iomem *ioaddr = tp->mmio_addr;
5367 unsigned long flags;
5368
5369 if (netif_running(dev)) {
5370 spin_lock_irqsave(&tp->lock, flags);
Francois Romieu523a6092008-09-10 22:28:56 +02005371 rtl8169_rx_missed(dev, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 spin_unlock_irqrestore(&tp->lock, flags);
5373 }
Francois Romieu5b0384f2006-08-16 16:00:01 +02005374
Francois Romieucebf8cc2007-10-18 12:06:54 +02005375 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376}
5377
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005378static void rtl8169_net_suspend(struct net_device *dev)
Francois Romieu5d06a992006-02-23 00:47:58 +01005379{
françois romieu065c27c2011-01-03 15:08:12 +00005380 struct rtl8169_private *tp = netdev_priv(dev);
5381
Francois Romieu5d06a992006-02-23 00:47:58 +01005382 if (!netif_running(dev))
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005383 return;
Francois Romieu5d06a992006-02-23 00:47:58 +01005384
françois romieu065c27c2011-01-03 15:08:12 +00005385 rtl_pll_power_down(tp);
5386
Francois Romieu5d06a992006-02-23 00:47:58 +01005387 netif_device_detach(dev);
5388 netif_stop_queue(dev);
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005389}
Francois Romieu5d06a992006-02-23 00:47:58 +01005390
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005391#ifdef CONFIG_PM
5392
5393static int rtl8169_suspend(struct device *device)
5394{
5395 struct pci_dev *pdev = to_pci_dev(device);
5396 struct net_device *dev = pci_get_drvdata(pdev);
5397
5398 rtl8169_net_suspend(dev);
Francois Romieu1371fa62007-04-02 23:01:11 +02005399
Francois Romieu5d06a992006-02-23 00:47:58 +01005400 return 0;
5401}
5402
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005403static void __rtl8169_resume(struct net_device *dev)
5404{
françois romieu065c27c2011-01-03 15:08:12 +00005405 struct rtl8169_private *tp = netdev_priv(dev);
5406
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005407 netif_device_attach(dev);
françois romieu065c27c2011-01-03 15:08:12 +00005408
5409 rtl_pll_power_up(tp);
5410
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005411 rtl8169_schedule_work(dev, rtl8169_reset_task);
5412}
5413
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005414static int rtl8169_resume(struct device *device)
Francois Romieu5d06a992006-02-23 00:47:58 +01005415{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005416 struct pci_dev *pdev = to_pci_dev(device);
Francois Romieu5d06a992006-02-23 00:47:58 +01005417 struct net_device *dev = pci_get_drvdata(pdev);
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005418 struct rtl8169_private *tp = netdev_priv(dev);
5419
5420 rtl8169_init_phy(dev, tp);
Francois Romieu5d06a992006-02-23 00:47:58 +01005421
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005422 if (netif_running(dev))
5423 __rtl8169_resume(dev);
Francois Romieu5d06a992006-02-23 00:47:58 +01005424
Francois Romieu5d06a992006-02-23 00:47:58 +01005425 return 0;
5426}
5427
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005428static int rtl8169_runtime_suspend(struct device *device)
5429{
5430 struct pci_dev *pdev = to_pci_dev(device);
5431 struct net_device *dev = pci_get_drvdata(pdev);
5432 struct rtl8169_private *tp = netdev_priv(dev);
5433
5434 if (!tp->TxDescArray)
5435 return 0;
5436
5437 spin_lock_irq(&tp->lock);
5438 tp->saved_wolopts = __rtl8169_get_wol(tp);
5439 __rtl8169_set_wol(tp, WAKE_ANY);
5440 spin_unlock_irq(&tp->lock);
5441
5442 rtl8169_net_suspend(dev);
5443
5444 return 0;
5445}
5446
5447static int rtl8169_runtime_resume(struct device *device)
5448{
5449 struct pci_dev *pdev = to_pci_dev(device);
5450 struct net_device *dev = pci_get_drvdata(pdev);
5451 struct rtl8169_private *tp = netdev_priv(dev);
5452
5453 if (!tp->TxDescArray)
5454 return 0;
5455
5456 spin_lock_irq(&tp->lock);
5457 __rtl8169_set_wol(tp, tp->saved_wolopts);
5458 tp->saved_wolopts = 0;
5459 spin_unlock_irq(&tp->lock);
5460
Stanislaw Gruszkafccec102010-10-20 22:25:42 +00005461 rtl8169_init_phy(dev, tp);
5462
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005463 __rtl8169_resume(dev);
5464
5465 return 0;
5466}
5467
5468static int rtl8169_runtime_idle(struct device *device)
5469{
5470 struct pci_dev *pdev = to_pci_dev(device);
5471 struct net_device *dev = pci_get_drvdata(pdev);
5472 struct rtl8169_private *tp = netdev_priv(dev);
5473
Rafael J. Wysockie4fbce72010-12-08 15:32:14 +00005474 return tp->TxDescArray ? -EBUSY : 0;
Rafael J. Wysockie1759442010-03-14 14:33:51 +00005475}
5476
Alexey Dobriyan47145212009-12-14 18:00:08 -08005477static const struct dev_pm_ops rtl8169_pm_ops = {
Francois Romieucecb5fd2011-04-01 10:21:07 +02005478 .suspend = rtl8169_suspend,
5479 .resume = rtl8169_resume,
5480 .freeze = rtl8169_suspend,
5481 .thaw = rtl8169_resume,
5482 .poweroff = rtl8169_suspend,
5483 .restore = rtl8169_resume,
5484 .runtime_suspend = rtl8169_runtime_suspend,
5485 .runtime_resume = rtl8169_runtime_resume,
5486 .runtime_idle = rtl8169_runtime_idle,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005487};
5488
5489#define RTL8169_PM_OPS (&rtl8169_pm_ops)
5490
5491#else /* !CONFIG_PM */
5492
5493#define RTL8169_PM_OPS NULL
5494
5495#endif /* !CONFIG_PM */
5496
Francois Romieu1765f952008-09-13 17:21:40 +02005497static void rtl_shutdown(struct pci_dev *pdev)
5498{
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005499 struct net_device *dev = pci_get_drvdata(pdev);
françois romieu4bb3f522009-06-17 11:41:45 +00005500 struct rtl8169_private *tp = netdev_priv(dev);
5501 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu1765f952008-09-13 17:21:40 +02005502
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005503 rtl8169_net_suspend(dev);
5504
Francois Romieucecb5fd2011-04-01 10:21:07 +02005505 /* Restore original MAC address */
Ivan Veceracc098dc2009-11-29 23:12:52 -08005506 rtl_rar_set(tp, dev->perm_addr);
5507
françois romieu4bb3f522009-06-17 11:41:45 +00005508 spin_lock_irq(&tp->lock);
5509
Hayes Wang92fc43b2011-07-06 15:58:03 +08005510 rtl8169_hw_reset(tp);
françois romieu4bb3f522009-06-17 11:41:45 +00005511
5512 spin_unlock_irq(&tp->lock);
5513
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005514 if (system_state == SYSTEM_POWER_OFF) {
françois romieuca52efd2009-07-24 12:34:19 +00005515 /* WoL fails with some 8168 when the receiver is disabled. */
5516 if (tp->features & RTL_FEATURE_WOL) {
5517 pci_clear_master(pdev);
5518
5519 RTL_W8(ChipCmd, CmdRxEnb);
5520 /* PCI commit */
5521 RTL_R8(ChipCmd);
5522 }
5523
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005524 pci_wake_from_d3(pdev, true);
5525 pci_set_power_state(pdev, PCI_D3hot);
5526 }
5527}
Francois Romieu5d06a992006-02-23 00:47:58 +01005528
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529static struct pci_driver rtl8169_pci_driver = {
5530 .name = MODULENAME,
5531 .id_table = rtl8169_pci_tbl,
5532 .probe = rtl8169_init_one,
5533 .remove = __devexit_p(rtl8169_remove_one),
Francois Romieu1765f952008-09-13 17:21:40 +02005534 .shutdown = rtl_shutdown,
Rafael J. Wysocki861ab442009-04-05 08:40:04 +00005535 .driver.pm = RTL8169_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536};
5537
Francois Romieu07d3f512007-02-21 22:40:46 +01005538static int __init rtl8169_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539{
Jeff Garzik29917622006-08-19 17:48:59 -04005540 return pci_register_driver(&rtl8169_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541}
5542
Francois Romieu07d3f512007-02-21 22:40:46 +01005543static void __exit rtl8169_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544{
5545 pci_unregister_driver(&rtl8169_pci_driver);
5546}
5547
5548module_init(rtl8169_init_module);
5549module_exit(rtl8169_cleanup_module);