]> Pileus Git - ~andy/linux/blob - drivers/net/ethernet/realtek/r8169.c
tools/power: turbostat: fix large c1% issue
[~andy/linux] / drivers / net / ethernet / realtek / r8169.c
1 /*
2  * 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.
9  */
10
11 #include <linux/module.h>
12 #include <linux/moduleparam.h>
13 #include <linux/pci.h>
14 #include <linux/netdevice.h>
15 #include <linux/etherdevice.h>
16 #include <linux/delay.h>
17 #include <linux/ethtool.h>
18 #include <linux/mii.h>
19 #include <linux/if_vlan.h>
20 #include <linux/crc32.h>
21 #include <linux/in.h>
22 #include <linux/ip.h>
23 #include <linux/tcp.h>
24 #include <linux/init.h>
25 #include <linux/interrupt.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/pm_runtime.h>
28 #include <linux/firmware.h>
29 #include <linux/pci-aspm.h>
30 #include <linux/prefetch.h>
31
32 #include <asm/io.h>
33 #include <asm/irq.h>
34
35 #define RTL8169_VERSION "2.3LK-NAPI"
36 #define MODULENAME "r8169"
37 #define PFX MODULENAME ": "
38
39 #define FIRMWARE_8168D_1        "rtl_nic/rtl8168d-1.fw"
40 #define FIRMWARE_8168D_2        "rtl_nic/rtl8168d-2.fw"
41 #define FIRMWARE_8168E_1        "rtl_nic/rtl8168e-1.fw"
42 #define FIRMWARE_8168E_2        "rtl_nic/rtl8168e-2.fw"
43 #define FIRMWARE_8168E_3        "rtl_nic/rtl8168e-3.fw"
44 #define FIRMWARE_8168F_1        "rtl_nic/rtl8168f-1.fw"
45 #define FIRMWARE_8168F_2        "rtl_nic/rtl8168f-2.fw"
46 #define FIRMWARE_8105E_1        "rtl_nic/rtl8105e-1.fw"
47 #define FIRMWARE_8402_1         "rtl_nic/rtl8402-1.fw"
48 #define FIRMWARE_8411_1         "rtl_nic/rtl8411-1.fw"
49
50 #ifdef RTL8169_DEBUG
51 #define assert(expr) \
52         if (!(expr)) {                                  \
53                 printk( "Assertion failed! %s,%s,%s,line=%d\n", \
54                 #expr,__FILE__,__func__,__LINE__);              \
55         }
56 #define dprintk(fmt, args...) \
57         do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
58 #else
59 #define assert(expr) do {} while (0)
60 #define dprintk(fmt, args...)   do {} while (0)
61 #endif /* RTL8169_DEBUG */
62
63 #define R8169_MSG_DEFAULT \
64         (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
65
66 #define TX_SLOTS_AVAIL(tp) \
67         (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx)
68
69 /* A skbuff with nr_frags needs nr_frags+1 entries in the tx queue */
70 #define TX_FRAGS_READY_FOR(tp,nr_frags) \
71         (TX_SLOTS_AVAIL(tp) >= (nr_frags + 1))
72
73 /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
74    The RTL chips use a 64 element hash table based on the Ethernet CRC. */
75 static const int multicast_filter_limit = 32;
76
77 #define MAX_READ_REQUEST_SHIFT  12
78 #define TX_DMA_BURST    6       /* Maximum PCI burst, '6' is 1024 */
79 #define SafeMtu         0x1c20  /* ... actually life sucks beyond ~7k */
80 #define InterFrameGap   0x03    /* 3 means InterFrameGap = the shortest one */
81
82 #define R8169_REGS_SIZE         256
83 #define R8169_NAPI_WEIGHT       64
84 #define NUM_TX_DESC     64      /* Number of Tx descriptor registers */
85 #define NUM_RX_DESC     256     /* Number of Rx descriptor registers */
86 #define RX_BUF_SIZE     1536    /* Rx Buffer size */
87 #define R8169_TX_RING_BYTES     (NUM_TX_DESC * sizeof(struct TxDesc))
88 #define R8169_RX_RING_BYTES     (NUM_RX_DESC * sizeof(struct RxDesc))
89
90 #define RTL8169_TX_TIMEOUT      (6*HZ)
91 #define RTL8169_PHY_TIMEOUT     (10*HZ)
92
93 #define RTL_EEPROM_SIG          cpu_to_le32(0x8129)
94 #define RTL_EEPROM_SIG_MASK     cpu_to_le32(0xffff)
95 #define RTL_EEPROM_SIG_ADDR     0x0000
96
97 /* write/read MMIO register */
98 #define RTL_W8(reg, val8)       writeb ((val8), ioaddr + (reg))
99 #define RTL_W16(reg, val16)     writew ((val16), ioaddr + (reg))
100 #define RTL_W32(reg, val32)     writel ((val32), ioaddr + (reg))
101 #define RTL_R8(reg)             readb (ioaddr + (reg))
102 #define RTL_R16(reg)            readw (ioaddr + (reg))
103 #define RTL_R32(reg)            readl (ioaddr + (reg))
104
105 enum mac_version {
106         RTL_GIGA_MAC_VER_01 = 0,
107         RTL_GIGA_MAC_VER_02,
108         RTL_GIGA_MAC_VER_03,
109         RTL_GIGA_MAC_VER_04,
110         RTL_GIGA_MAC_VER_05,
111         RTL_GIGA_MAC_VER_06,
112         RTL_GIGA_MAC_VER_07,
113         RTL_GIGA_MAC_VER_08,
114         RTL_GIGA_MAC_VER_09,
115         RTL_GIGA_MAC_VER_10,
116         RTL_GIGA_MAC_VER_11,
117         RTL_GIGA_MAC_VER_12,
118         RTL_GIGA_MAC_VER_13,
119         RTL_GIGA_MAC_VER_14,
120         RTL_GIGA_MAC_VER_15,
121         RTL_GIGA_MAC_VER_16,
122         RTL_GIGA_MAC_VER_17,
123         RTL_GIGA_MAC_VER_18,
124         RTL_GIGA_MAC_VER_19,
125         RTL_GIGA_MAC_VER_20,
126         RTL_GIGA_MAC_VER_21,
127         RTL_GIGA_MAC_VER_22,
128         RTL_GIGA_MAC_VER_23,
129         RTL_GIGA_MAC_VER_24,
130         RTL_GIGA_MAC_VER_25,
131         RTL_GIGA_MAC_VER_26,
132         RTL_GIGA_MAC_VER_27,
133         RTL_GIGA_MAC_VER_28,
134         RTL_GIGA_MAC_VER_29,
135         RTL_GIGA_MAC_VER_30,
136         RTL_GIGA_MAC_VER_31,
137         RTL_GIGA_MAC_VER_32,
138         RTL_GIGA_MAC_VER_33,
139         RTL_GIGA_MAC_VER_34,
140         RTL_GIGA_MAC_VER_35,
141         RTL_GIGA_MAC_VER_36,
142         RTL_GIGA_MAC_VER_37,
143         RTL_GIGA_MAC_VER_38,
144         RTL_GIGA_MAC_NONE   = 0xff,
145 };
146
147 enum rtl_tx_desc_version {
148         RTL_TD_0        = 0,
149         RTL_TD_1        = 1,
150 };
151
152 #define JUMBO_1K        ETH_DATA_LEN
153 #define JUMBO_4K        (4*1024 - ETH_HLEN - 2)
154 #define JUMBO_6K        (6*1024 - ETH_HLEN - 2)
155 #define JUMBO_7K        (7*1024 - ETH_HLEN - 2)
156 #define JUMBO_9K        (9*1024 - ETH_HLEN - 2)
157
158 #define _R(NAME,TD,FW,SZ,B) {   \
159         .name = NAME,           \
160         .txd_version = TD,      \
161         .fw_name = FW,          \
162         .jumbo_max = SZ,        \
163         .jumbo_tx_csum = B      \
164 }
165
166 static const struct {
167         const char *name;
168         enum rtl_tx_desc_version txd_version;
169         const char *fw_name;
170         u16 jumbo_max;
171         bool jumbo_tx_csum;
172 } rtl_chip_infos[] = {
173         /* PCI devices. */
174         [RTL_GIGA_MAC_VER_01] =
175                 _R("RTL8169",           RTL_TD_0, NULL, JUMBO_7K, true),
176         [RTL_GIGA_MAC_VER_02] =
177                 _R("RTL8169s",          RTL_TD_0, NULL, JUMBO_7K, true),
178         [RTL_GIGA_MAC_VER_03] =
179                 _R("RTL8110s",          RTL_TD_0, NULL, JUMBO_7K, true),
180         [RTL_GIGA_MAC_VER_04] =
181                 _R("RTL8169sb/8110sb",  RTL_TD_0, NULL, JUMBO_7K, true),
182         [RTL_GIGA_MAC_VER_05] =
183                 _R("RTL8169sc/8110sc",  RTL_TD_0, NULL, JUMBO_7K, true),
184         [RTL_GIGA_MAC_VER_06] =
185                 _R("RTL8169sc/8110sc",  RTL_TD_0, NULL, JUMBO_7K, true),
186         /* PCI-E devices. */
187         [RTL_GIGA_MAC_VER_07] =
188                 _R("RTL8102e",          RTL_TD_1, NULL, JUMBO_1K, true),
189         [RTL_GIGA_MAC_VER_08] =
190                 _R("RTL8102e",          RTL_TD_1, NULL, JUMBO_1K, true),
191         [RTL_GIGA_MAC_VER_09] =
192                 _R("RTL8102e",          RTL_TD_1, NULL, JUMBO_1K, true),
193         [RTL_GIGA_MAC_VER_10] =
194                 _R("RTL8101e",          RTL_TD_0, NULL, JUMBO_1K, true),
195         [RTL_GIGA_MAC_VER_11] =
196                 _R("RTL8168b/8111b",    RTL_TD_0, NULL, JUMBO_4K, false),
197         [RTL_GIGA_MAC_VER_12] =
198                 _R("RTL8168b/8111b",    RTL_TD_0, NULL, JUMBO_4K, false),
199         [RTL_GIGA_MAC_VER_13] =
200                 _R("RTL8101e",          RTL_TD_0, NULL, JUMBO_1K, true),
201         [RTL_GIGA_MAC_VER_14] =
202                 _R("RTL8100e",          RTL_TD_0, NULL, JUMBO_1K, true),
203         [RTL_GIGA_MAC_VER_15] =
204                 _R("RTL8100e",          RTL_TD_0, NULL, JUMBO_1K, true),
205         [RTL_GIGA_MAC_VER_16] =
206                 _R("RTL8101e",          RTL_TD_0, NULL, JUMBO_1K, true),
207         [RTL_GIGA_MAC_VER_17] =
208                 _R("RTL8168b/8111b",    RTL_TD_1, NULL, JUMBO_4K, false),
209         [RTL_GIGA_MAC_VER_18] =
210                 _R("RTL8168cp/8111cp",  RTL_TD_1, NULL, JUMBO_6K, false),
211         [RTL_GIGA_MAC_VER_19] =
212                 _R("RTL8168c/8111c",    RTL_TD_1, NULL, JUMBO_6K, false),
213         [RTL_GIGA_MAC_VER_20] =
214                 _R("RTL8168c/8111c",    RTL_TD_1, NULL, JUMBO_6K, false),
215         [RTL_GIGA_MAC_VER_21] =
216                 _R("RTL8168c/8111c",    RTL_TD_1, NULL, JUMBO_6K, false),
217         [RTL_GIGA_MAC_VER_22] =
218                 _R("RTL8168c/8111c",    RTL_TD_1, NULL, JUMBO_6K, false),
219         [RTL_GIGA_MAC_VER_23] =
220                 _R("RTL8168cp/8111cp",  RTL_TD_1, NULL, JUMBO_6K, false),
221         [RTL_GIGA_MAC_VER_24] =
222                 _R("RTL8168cp/8111cp",  RTL_TD_1, NULL, JUMBO_6K, false),
223         [RTL_GIGA_MAC_VER_25] =
224                 _R("RTL8168d/8111d",    RTL_TD_1, FIRMWARE_8168D_1,
225                                                         JUMBO_9K, false),
226         [RTL_GIGA_MAC_VER_26] =
227                 _R("RTL8168d/8111d",    RTL_TD_1, FIRMWARE_8168D_2,
228                                                         JUMBO_9K, false),
229         [RTL_GIGA_MAC_VER_27] =
230                 _R("RTL8168dp/8111dp",  RTL_TD_1, NULL, JUMBO_9K, false),
231         [RTL_GIGA_MAC_VER_28] =
232                 _R("RTL8168dp/8111dp",  RTL_TD_1, NULL, JUMBO_9K, false),
233         [RTL_GIGA_MAC_VER_29] =
234                 _R("RTL8105e",          RTL_TD_1, FIRMWARE_8105E_1,
235                                                         JUMBO_1K, true),
236         [RTL_GIGA_MAC_VER_30] =
237                 _R("RTL8105e",          RTL_TD_1, FIRMWARE_8105E_1,
238                                                         JUMBO_1K, true),
239         [RTL_GIGA_MAC_VER_31] =
240                 _R("RTL8168dp/8111dp",  RTL_TD_1, NULL, JUMBO_9K, false),
241         [RTL_GIGA_MAC_VER_32] =
242                 _R("RTL8168e/8111e",    RTL_TD_1, FIRMWARE_8168E_1,
243                                                         JUMBO_9K, false),
244         [RTL_GIGA_MAC_VER_33] =
245                 _R("RTL8168e/8111e",    RTL_TD_1, FIRMWARE_8168E_2,
246                                                         JUMBO_9K, false),
247         [RTL_GIGA_MAC_VER_34] =
248                 _R("RTL8168evl/8111evl",RTL_TD_1, FIRMWARE_8168E_3,
249                                                         JUMBO_9K, false),
250         [RTL_GIGA_MAC_VER_35] =
251                 _R("RTL8168f/8111f",    RTL_TD_1, FIRMWARE_8168F_1,
252                                                         JUMBO_9K, false),
253         [RTL_GIGA_MAC_VER_36] =
254                 _R("RTL8168f/8111f",    RTL_TD_1, FIRMWARE_8168F_2,
255                                                         JUMBO_9K, false),
256         [RTL_GIGA_MAC_VER_37] =
257                 _R("RTL8402",           RTL_TD_1, FIRMWARE_8402_1,
258                                                         JUMBO_1K, true),
259         [RTL_GIGA_MAC_VER_38] =
260                 _R("RTL8411",           RTL_TD_1, FIRMWARE_8411_1,
261                                                         JUMBO_9K, false),
262 };
263 #undef _R
264
265 enum cfg_version {
266         RTL_CFG_0 = 0x00,
267         RTL_CFG_1,
268         RTL_CFG_2
269 };
270
271 static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
272         { PCI_DEVICE(PCI_VENDOR_ID_REALTEK,     0x8129), 0, 0, RTL_CFG_0 },
273         { PCI_DEVICE(PCI_VENDOR_ID_REALTEK,     0x8136), 0, 0, RTL_CFG_2 },
274         { PCI_DEVICE(PCI_VENDOR_ID_REALTEK,     0x8167), 0, 0, RTL_CFG_0 },
275         { PCI_DEVICE(PCI_VENDOR_ID_REALTEK,     0x8168), 0, 0, RTL_CFG_1 },
276         { PCI_DEVICE(PCI_VENDOR_ID_REALTEK,     0x8169), 0, 0, RTL_CFG_0 },
277         { PCI_DEVICE(PCI_VENDOR_ID_DLINK,       0x4300), 0, 0, RTL_CFG_0 },
278         { PCI_DEVICE(PCI_VENDOR_ID_DLINK,       0x4302), 0, 0, RTL_CFG_0 },
279         { PCI_DEVICE(PCI_VENDOR_ID_AT,          0xc107), 0, 0, RTL_CFG_0 },
280         { PCI_DEVICE(0x16ec,                    0x0116), 0, 0, RTL_CFG_0 },
281         { PCI_VENDOR_ID_LINKSYS,                0x1032,
282                 PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
283         { 0x0001,                               0x8168,
284                 PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
285         {0,},
286 };
287
288 MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
289
290 static int rx_buf_sz = 16383;
291 static int use_dac;
292 static struct {
293         u32 msg_enable;
294 } debug = { -1 };
295
296 enum rtl_registers {
297         MAC0            = 0,    /* Ethernet hardware address. */
298         MAC4            = 4,
299         MAR0            = 8,    /* Multicast filter. */
300         CounterAddrLow          = 0x10,
301         CounterAddrHigh         = 0x14,
302         TxDescStartAddrLow      = 0x20,
303         TxDescStartAddrHigh     = 0x24,
304         TxHDescStartAddrLow     = 0x28,
305         TxHDescStartAddrHigh    = 0x2c,
306         FLASH           = 0x30,
307         ERSR            = 0x36,
308         ChipCmd         = 0x37,
309         TxPoll          = 0x38,
310         IntrMask        = 0x3c,
311         IntrStatus      = 0x3e,
312
313         TxConfig        = 0x40,
314 #define TXCFG_AUTO_FIFO                 (1 << 7)        /* 8111e-vl */
315 #define TXCFG_EMPTY                     (1 << 11)       /* 8111e-vl */
316
317         RxConfig        = 0x44,
318 #define RX128_INT_EN                    (1 << 15)       /* 8111c and later */
319 #define RX_MULTI_EN                     (1 << 14)       /* 8111c only */
320 #define RXCFG_FIFO_SHIFT                13
321                                         /* No threshold before first PCI xfer */
322 #define RX_FIFO_THRESH                  (7 << RXCFG_FIFO_SHIFT)
323 #define RXCFG_DMA_SHIFT                 8
324                                         /* Unlimited maximum PCI burst. */
325 #define RX_DMA_BURST                    (7 << RXCFG_DMA_SHIFT)
326
327         RxMissed        = 0x4c,
328         Cfg9346         = 0x50,
329         Config0         = 0x51,
330         Config1         = 0x52,
331         Config2         = 0x53,
332 #define PME_SIGNAL                      (1 << 5)        /* 8168c and later */
333
334         Config3         = 0x54,
335         Config4         = 0x55,
336         Config5         = 0x56,
337         MultiIntr       = 0x5c,
338         PHYAR           = 0x60,
339         PHYstatus       = 0x6c,
340         RxMaxSize       = 0xda,
341         CPlusCmd        = 0xe0,
342         IntrMitigate    = 0xe2,
343         RxDescAddrLow   = 0xe4,
344         RxDescAddrHigh  = 0xe8,
345         EarlyTxThres    = 0xec, /* 8169. Unit of 32 bytes. */
346
347 #define NoEarlyTx       0x3f    /* Max value : no early transmit. */
348
349         MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
350
351 #define TxPacketMax     (8064 >> 7)
352 #define EarlySize       0x27
353
354         FuncEvent       = 0xf0,
355         FuncEventMask   = 0xf4,
356         FuncPresetState = 0xf8,
357         FuncForceEvent  = 0xfc,
358 };
359
360 enum rtl8110_registers {
361         TBICSR                  = 0x64,
362         TBI_ANAR                = 0x68,
363         TBI_LPAR                = 0x6a,
364 };
365
366 enum rtl8168_8101_registers {
367         CSIDR                   = 0x64,
368         CSIAR                   = 0x68,
369 #define CSIAR_FLAG                      0x80000000
370 #define CSIAR_WRITE_CMD                 0x80000000
371 #define CSIAR_BYTE_ENABLE               0x0f
372 #define CSIAR_BYTE_ENABLE_SHIFT         12
373 #define CSIAR_ADDR_MASK                 0x0fff
374 #define CSIAR_FUNC_CARD                 0x00000000
375 #define CSIAR_FUNC_SDIO                 0x00010000
376 #define CSIAR_FUNC_NIC                  0x00020000
377         PMCH                    = 0x6f,
378         EPHYAR                  = 0x80,
379 #define EPHYAR_FLAG                     0x80000000
380 #define EPHYAR_WRITE_CMD                0x80000000
381 #define EPHYAR_REG_MASK                 0x1f
382 #define EPHYAR_REG_SHIFT                16
383 #define EPHYAR_DATA_MASK                0xffff
384         DLLPR                   = 0xd0,
385 #define PFM_EN                          (1 << 6)
386         DBG_REG                 = 0xd1,
387 #define FIX_NAK_1                       (1 << 4)
388 #define FIX_NAK_2                       (1 << 3)
389         TWSI                    = 0xd2,
390         MCU                     = 0xd3,
391 #define NOW_IS_OOB                      (1 << 7)
392 #define EN_NDP                          (1 << 3)
393 #define EN_OOB_RESET                    (1 << 2)
394         EFUSEAR                 = 0xdc,
395 #define EFUSEAR_FLAG                    0x80000000
396 #define EFUSEAR_WRITE_CMD               0x80000000
397 #define EFUSEAR_READ_CMD                0x00000000
398 #define EFUSEAR_REG_MASK                0x03ff
399 #define EFUSEAR_REG_SHIFT               8
400 #define EFUSEAR_DATA_MASK               0xff
401 };
402
403 enum rtl8168_registers {
404         LED_FREQ                = 0x1a,
405         EEE_LED                 = 0x1b,
406         ERIDR                   = 0x70,
407         ERIAR                   = 0x74,
408 #define ERIAR_FLAG                      0x80000000
409 #define ERIAR_WRITE_CMD                 0x80000000
410 #define ERIAR_READ_CMD                  0x00000000
411 #define ERIAR_ADDR_BYTE_ALIGN           4
412 #define ERIAR_TYPE_SHIFT                16
413 #define ERIAR_EXGMAC                    (0x00 << ERIAR_TYPE_SHIFT)
414 #define ERIAR_MSIX                      (0x01 << ERIAR_TYPE_SHIFT)
415 #define ERIAR_ASF                       (0x02 << ERIAR_TYPE_SHIFT)
416 #define ERIAR_MASK_SHIFT                12
417 #define ERIAR_MASK_0001                 (0x1 << ERIAR_MASK_SHIFT)
418 #define ERIAR_MASK_0011                 (0x3 << ERIAR_MASK_SHIFT)
419 #define ERIAR_MASK_1111                 (0xf << ERIAR_MASK_SHIFT)
420         EPHY_RXER_NUM           = 0x7c,
421         OCPDR                   = 0xb0, /* OCP GPHY access */
422 #define OCPDR_WRITE_CMD                 0x80000000
423 #define OCPDR_READ_CMD                  0x00000000
424 #define OCPDR_REG_MASK                  0x7f
425 #define OCPDR_GPHY_REG_SHIFT            16
426 #define OCPDR_DATA_MASK                 0xffff
427         OCPAR                   = 0xb4,
428 #define OCPAR_FLAG                      0x80000000
429 #define OCPAR_GPHY_WRITE_CMD            0x8000f060
430 #define OCPAR_GPHY_READ_CMD             0x0000f060
431         RDSAR1                  = 0xd0, /* 8168c only. Undocumented on 8168dp */
432         MISC                    = 0xf0, /* 8168e only. */
433 #define TXPLA_RST                       (1 << 29)
434 #define PWM_EN                          (1 << 22)
435 };
436
437 enum rtl_register_content {
438         /* InterruptStatusBits */
439         SYSErr          = 0x8000,
440         PCSTimeout      = 0x4000,
441         SWInt           = 0x0100,
442         TxDescUnavail   = 0x0080,
443         RxFIFOOver      = 0x0040,
444         LinkChg         = 0x0020,
445         RxOverflow      = 0x0010,
446         TxErr           = 0x0008,
447         TxOK            = 0x0004,
448         RxErr           = 0x0002,
449         RxOK            = 0x0001,
450
451         /* RxStatusDesc */
452         RxBOVF  = (1 << 24),
453         RxFOVF  = (1 << 23),
454         RxRWT   = (1 << 22),
455         RxRES   = (1 << 21),
456         RxRUNT  = (1 << 20),
457         RxCRC   = (1 << 19),
458
459         /* ChipCmdBits */
460         StopReq         = 0x80,
461         CmdReset        = 0x10,
462         CmdRxEnb        = 0x08,
463         CmdTxEnb        = 0x04,
464         RxBufEmpty      = 0x01,
465
466         /* TXPoll register p.5 */
467         HPQ             = 0x80,         /* Poll cmd on the high prio queue */
468         NPQ             = 0x40,         /* Poll cmd on the low prio queue */
469         FSWInt          = 0x01,         /* Forced software interrupt */
470
471         /* Cfg9346Bits */
472         Cfg9346_Lock    = 0x00,
473         Cfg9346_Unlock  = 0xc0,
474
475         /* rx_mode_bits */
476         AcceptErr       = 0x20,
477         AcceptRunt      = 0x10,
478         AcceptBroadcast = 0x08,
479         AcceptMulticast = 0x04,
480         AcceptMyPhys    = 0x02,
481         AcceptAllPhys   = 0x01,
482 #define RX_CONFIG_ACCEPT_MASK           0x3f
483
484         /* TxConfigBits */
485         TxInterFrameGapShift = 24,
486         TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
487
488         /* Config1 register p.24 */
489         LEDS1           = (1 << 7),
490         LEDS0           = (1 << 6),
491         Speed_down      = (1 << 4),
492         MEMMAP          = (1 << 3),
493         IOMAP           = (1 << 2),
494         VPD             = (1 << 1),
495         PMEnable        = (1 << 0),     /* Power Management Enable */
496
497         /* Config2 register p. 25 */
498         MSIEnable       = (1 << 5),     /* 8169 only. Reserved in the 8168. */
499         PCI_Clock_66MHz = 0x01,
500         PCI_Clock_33MHz = 0x00,
501
502         /* Config3 register p.25 */
503         MagicPacket     = (1 << 5),     /* Wake up when receives a Magic Packet */
504         LinkUp          = (1 << 4),     /* Wake up when the cable connection is re-established */
505         Jumbo_En0       = (1 << 2),     /* 8168 only. Reserved in the 8168b */
506         Beacon_en       = (1 << 0),     /* 8168 only. Reserved in the 8168b */
507
508         /* Config4 register */
509         Jumbo_En1       = (1 << 1),     /* 8168 only. Reserved in the 8168b */
510
511         /* Config5 register p.27 */
512         BWF             = (1 << 6),     /* Accept Broadcast wakeup frame */
513         MWF             = (1 << 5),     /* Accept Multicast wakeup frame */
514         UWF             = (1 << 4),     /* Accept Unicast wakeup frame */
515         Spi_en          = (1 << 3),
516         LanWake         = (1 << 1),     /* LanWake enable/disable */
517         PMEStatus       = (1 << 0),     /* PME status can be reset by PCI RST# */
518
519         /* TBICSR p.28 */
520         TBIReset        = 0x80000000,
521         TBILoopback     = 0x40000000,
522         TBINwEnable     = 0x20000000,
523         TBINwRestart    = 0x10000000,
524         TBILinkOk       = 0x02000000,
525         TBINwComplete   = 0x01000000,
526
527         /* CPlusCmd p.31 */
528         EnableBist      = (1 << 15),    // 8168 8101
529         Mac_dbgo_oe     = (1 << 14),    // 8168 8101
530         Normal_mode     = (1 << 13),    // unused
531         Force_half_dup  = (1 << 12),    // 8168 8101
532         Force_rxflow_en = (1 << 11),    // 8168 8101
533         Force_txflow_en = (1 << 10),    // 8168 8101
534         Cxpl_dbg_sel    = (1 << 9),     // 8168 8101
535         ASF             = (1 << 8),     // 8168 8101
536         PktCntrDisable  = (1 << 7),     // 8168 8101
537         Mac_dbgo_sel    = 0x001c,       // 8168
538         RxVlan          = (1 << 6),
539         RxChkSum        = (1 << 5),
540         PCIDAC          = (1 << 4),
541         PCIMulRW        = (1 << 3),
542         INTT_0          = 0x0000,       // 8168
543         INTT_1          = 0x0001,       // 8168
544         INTT_2          = 0x0002,       // 8168
545         INTT_3          = 0x0003,       // 8168
546
547         /* rtl8169_PHYstatus */
548         TBI_Enable      = 0x80,
549         TxFlowCtrl      = 0x40,
550         RxFlowCtrl      = 0x20,
551         _1000bpsF       = 0x10,
552         _100bps         = 0x08,
553         _10bps          = 0x04,
554         LinkStatus      = 0x02,
555         FullDup         = 0x01,
556
557         /* _TBICSRBit */
558         TBILinkOK       = 0x02000000,
559
560         /* DumpCounterCommand */
561         CounterDump     = 0x8,
562 };
563
564 enum rtl_desc_bit {
565         /* First doubleword. */
566         DescOwn         = (1 << 31), /* Descriptor is owned by NIC */
567         RingEnd         = (1 << 30), /* End of descriptor ring */
568         FirstFrag       = (1 << 29), /* First segment of a packet */
569         LastFrag        = (1 << 28), /* Final segment of a packet */
570 };
571
572 /* Generic case. */
573 enum rtl_tx_desc_bit {
574         /* First doubleword. */
575         TD_LSO          = (1 << 27),            /* Large Send Offload */
576 #define TD_MSS_MAX                      0x07ffu /* MSS value */
577
578         /* Second doubleword. */
579         TxVlanTag       = (1 << 17),            /* Add VLAN tag */
580 };
581
582 /* 8169, 8168b and 810x except 8102e. */
583 enum rtl_tx_desc_bit_0 {
584         /* First doubleword. */
585 #define TD0_MSS_SHIFT                   16      /* MSS position (11 bits) */
586         TD0_TCP_CS      = (1 << 16),            /* Calculate TCP/IP checksum */
587         TD0_UDP_CS      = (1 << 17),            /* Calculate UDP/IP checksum */
588         TD0_IP_CS       = (1 << 18),            /* Calculate IP checksum */
589 };
590
591 /* 8102e, 8168c and beyond. */
592 enum rtl_tx_desc_bit_1 {
593         /* Second doubleword. */
594 #define TD1_MSS_SHIFT                   18      /* MSS position (11 bits) */
595         TD1_IP_CS       = (1 << 29),            /* Calculate IP checksum */
596         TD1_TCP_CS      = (1 << 30),            /* Calculate TCP/IP checksum */
597         TD1_UDP_CS      = (1 << 31),            /* Calculate UDP/IP checksum */
598 };
599
600 static const struct rtl_tx_desc_info {
601         struct {
602                 u32 udp;
603                 u32 tcp;
604         } checksum;
605         u16 mss_shift;
606         u16 opts_offset;
607 } tx_desc_info [] = {
608         [RTL_TD_0] = {
609                 .checksum = {
610                         .udp    = TD0_IP_CS | TD0_UDP_CS,
611                         .tcp    = TD0_IP_CS | TD0_TCP_CS
612                 },
613                 .mss_shift      = TD0_MSS_SHIFT,
614                 .opts_offset    = 0
615         },
616         [RTL_TD_1] = {
617                 .checksum = {
618                         .udp    = TD1_IP_CS | TD1_UDP_CS,
619                         .tcp    = TD1_IP_CS | TD1_TCP_CS
620                 },
621                 .mss_shift      = TD1_MSS_SHIFT,
622                 .opts_offset    = 1
623         }
624 };
625
626 enum rtl_rx_desc_bit {
627         /* Rx private */
628         PID1            = (1 << 18), /* Protocol ID bit 1/2 */
629         PID0            = (1 << 17), /* Protocol ID bit 2/2 */
630
631 #define RxProtoUDP      (PID1)
632 #define RxProtoTCP      (PID0)
633 #define RxProtoIP       (PID1 | PID0)
634 #define RxProtoMask     RxProtoIP
635
636         IPFail          = (1 << 16), /* IP checksum failed */
637         UDPFail         = (1 << 15), /* UDP/IP checksum failed */
638         TCPFail         = (1 << 14), /* TCP/IP checksum failed */
639         RxVlanTag       = (1 << 16), /* VLAN tag available */
640 };
641
642 #define RsvdMask        0x3fffc000
643
644 struct TxDesc {
645         __le32 opts1;
646         __le32 opts2;
647         __le64 addr;
648 };
649
650 struct RxDesc {
651         __le32 opts1;
652         __le32 opts2;
653         __le64 addr;
654 };
655
656 struct ring_info {
657         struct sk_buff  *skb;
658         u32             len;
659         u8              __pad[sizeof(void *) - sizeof(u32)];
660 };
661
662 enum features {
663         RTL_FEATURE_WOL         = (1 << 0),
664         RTL_FEATURE_MSI         = (1 << 1),
665         RTL_FEATURE_GMII        = (1 << 2),
666 };
667
668 struct rtl8169_counters {
669         __le64  tx_packets;
670         __le64  rx_packets;
671         __le64  tx_errors;
672         __le32  rx_errors;
673         __le16  rx_missed;
674         __le16  align_errors;
675         __le32  tx_one_collision;
676         __le32  tx_multi_collision;
677         __le64  rx_unicast;
678         __le64  rx_broadcast;
679         __le32  rx_multicast;
680         __le16  tx_aborted;
681         __le16  tx_underun;
682 };
683
684 enum rtl_flag {
685         RTL_FLAG_TASK_ENABLED,
686         RTL_FLAG_TASK_SLOW_PENDING,
687         RTL_FLAG_TASK_RESET_PENDING,
688         RTL_FLAG_TASK_PHY_PENDING,
689         RTL_FLAG_MAX
690 };
691
692 struct rtl8169_stats {
693         u64                     packets;
694         u64                     bytes;
695         struct u64_stats_sync   syncp;
696 };
697
698 struct rtl8169_private {
699         void __iomem *mmio_addr;        /* memory map physical address */
700         struct pci_dev *pci_dev;
701         struct net_device *dev;
702         struct napi_struct napi;
703         u32 msg_enable;
704         u16 txd_version;
705         u16 mac_version;
706         u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
707         u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
708         u32 dirty_rx;
709         u32 dirty_tx;
710         struct rtl8169_stats rx_stats;
711         struct rtl8169_stats tx_stats;
712         struct TxDesc *TxDescArray;     /* 256-aligned Tx descriptor ring */
713         struct RxDesc *RxDescArray;     /* 256-aligned Rx descriptor ring */
714         dma_addr_t TxPhyAddr;
715         dma_addr_t RxPhyAddr;
716         void *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
717         struct ring_info tx_skb[NUM_TX_DESC];   /* Tx data buffers */
718         struct timer_list timer;
719         u16 cp_cmd;
720
721         u16 event_slow;
722
723         struct mdio_ops {
724                 void (*write)(void __iomem *, int, int);
725                 int (*read)(void __iomem *, int);
726         } mdio_ops;
727
728         struct pll_power_ops {
729                 void (*down)(struct rtl8169_private *);
730                 void (*up)(struct rtl8169_private *);
731         } pll_power_ops;
732
733         struct jumbo_ops {
734                 void (*enable)(struct rtl8169_private *);
735                 void (*disable)(struct rtl8169_private *);
736         } jumbo_ops;
737
738         struct csi_ops {
739                 void (*write)(void __iomem *, int, int);
740                 u32 (*read)(void __iomem *, int);
741         } csi_ops;
742
743         int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
744         int (*get_settings)(struct net_device *, struct ethtool_cmd *);
745         void (*phy_reset_enable)(struct rtl8169_private *tp);
746         void (*hw_start)(struct net_device *);
747         unsigned int (*phy_reset_pending)(struct rtl8169_private *tp);
748         unsigned int (*link_ok)(void __iomem *);
749         int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
750
751         struct {
752                 DECLARE_BITMAP(flags, RTL_FLAG_MAX);
753                 struct mutex mutex;
754                 struct work_struct work;
755         } wk;
756
757         unsigned features;
758
759         struct mii_if_info mii;
760         struct rtl8169_counters counters;
761         u32 saved_wolopts;
762         u32 opts1_mask;
763
764         struct rtl_fw {
765                 const struct firmware *fw;
766
767 #define RTL_VER_SIZE            32
768
769                 char version[RTL_VER_SIZE];
770
771                 struct rtl_fw_phy_action {
772                         __le32 *code;
773                         size_t size;
774                 } phy_action;
775         } *rtl_fw;
776 #define RTL_FIRMWARE_UNKNOWN    ERR_PTR(-EAGAIN)
777 };
778
779 MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
780 MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver");
781 module_param(use_dac, int, 0);
782 MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
783 module_param_named(debug, debug.msg_enable, int, 0);
784 MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
785 MODULE_LICENSE("GPL");
786 MODULE_VERSION(RTL8169_VERSION);
787 MODULE_FIRMWARE(FIRMWARE_8168D_1);
788 MODULE_FIRMWARE(FIRMWARE_8168D_2);
789 MODULE_FIRMWARE(FIRMWARE_8168E_1);
790 MODULE_FIRMWARE(FIRMWARE_8168E_2);
791 MODULE_FIRMWARE(FIRMWARE_8168E_3);
792 MODULE_FIRMWARE(FIRMWARE_8105E_1);
793 MODULE_FIRMWARE(FIRMWARE_8168F_1);
794 MODULE_FIRMWARE(FIRMWARE_8168F_2);
795 MODULE_FIRMWARE(FIRMWARE_8402_1);
796 MODULE_FIRMWARE(FIRMWARE_8411_1);
797
798 static void rtl_lock_work(struct rtl8169_private *tp)
799 {
800         mutex_lock(&tp->wk.mutex);
801 }
802
803 static void rtl_unlock_work(struct rtl8169_private *tp)
804 {
805         mutex_unlock(&tp->wk.mutex);
806 }
807
808 static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
809 {
810         int cap = pci_pcie_cap(pdev);
811
812         if (cap) {
813                 u16 ctl;
814
815                 pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
816                 ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
817                 pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
818         }
819 }
820
821 static u32 ocp_read(struct rtl8169_private *tp, u8 mask, u16 reg)
822 {
823         void __iomem *ioaddr = tp->mmio_addr;
824         int i;
825
826         RTL_W32(OCPAR, ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
827         for (i = 0; i < 20; i++) {
828                 udelay(100);
829                 if (RTL_R32(OCPAR) & OCPAR_FLAG)
830                         break;
831         }
832         return RTL_R32(OCPDR);
833 }
834
835 static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
836 {
837         void __iomem *ioaddr = tp->mmio_addr;
838         int i;
839
840         RTL_W32(OCPDR, data);
841         RTL_W32(OCPAR, OCPAR_FLAG | ((u32)mask & 0x0f) << 12 | (reg & 0x0fff));
842         for (i = 0; i < 20; i++) {
843                 udelay(100);
844                 if ((RTL_R32(OCPAR) & OCPAR_FLAG) == 0)
845                         break;
846         }
847 }
848
849 static void rtl8168_oob_notify(struct rtl8169_private *tp, u8 cmd)
850 {
851         void __iomem *ioaddr = tp->mmio_addr;
852         int i;
853
854         RTL_W8(ERIDR, cmd);
855         RTL_W32(ERIAR, 0x800010e8);
856         msleep(2);
857         for (i = 0; i < 5; i++) {
858                 udelay(100);
859                 if (!(RTL_R32(ERIAR) & ERIAR_FLAG))
860                         break;
861         }
862
863         ocp_write(tp, 0x1, 0x30, 0x00000001);
864 }
865
866 #define OOB_CMD_RESET           0x00
867 #define OOB_CMD_DRIVER_START    0x05
868 #define OOB_CMD_DRIVER_STOP     0x06
869
870 static u16 rtl8168_get_ocp_reg(struct rtl8169_private *tp)
871 {
872         return (tp->mac_version == RTL_GIGA_MAC_VER_31) ? 0xb8 : 0x10;
873 }
874
875 static void rtl8168_driver_start(struct rtl8169_private *tp)
876 {
877         u16 reg;
878         int i;
879
880         rtl8168_oob_notify(tp, OOB_CMD_DRIVER_START);
881
882         reg = rtl8168_get_ocp_reg(tp);
883
884         for (i = 0; i < 10; i++) {
885                 msleep(10);
886                 if (ocp_read(tp, 0x0f, reg) & 0x00000800)
887                         break;
888         }
889 }
890
891 static void rtl8168_driver_stop(struct rtl8169_private *tp)
892 {
893         u16 reg;
894         int i;
895
896         rtl8168_oob_notify(tp, OOB_CMD_DRIVER_STOP);
897
898         reg = rtl8168_get_ocp_reg(tp);
899
900         for (i = 0; i < 10; i++) {
901                 msleep(10);
902                 if ((ocp_read(tp, 0x0f, reg) & 0x00000800) == 0)
903                         break;
904         }
905 }
906
907 static int r8168dp_check_dash(struct rtl8169_private *tp)
908 {
909         u16 reg = rtl8168_get_ocp_reg(tp);
910
911         return (ocp_read(tp, 0x0f, reg) & 0x00008000) ? 1 : 0;
912 }
913
914 static void r8169_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
915 {
916         int i;
917
918         RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
919
920         for (i = 20; i > 0; i--) {
921                 /*
922                  * Check if the RTL8169 has completed writing to the specified
923                  * MII register.
924                  */
925                 if (!(RTL_R32(PHYAR) & 0x80000000))
926                         break;
927                 udelay(25);
928         }
929         /*
930          * According to hardware specs a 20us delay is required after write
931          * complete indication, but before sending next command.
932          */
933         udelay(20);
934 }
935
936 static int r8169_mdio_read(void __iomem *ioaddr, int reg_addr)
937 {
938         int i, value = -1;
939
940         RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
941
942         for (i = 20; i > 0; i--) {
943                 /*
944                  * Check if the RTL8169 has completed retrieving data from
945                  * the specified MII register.
946                  */
947                 if (RTL_R32(PHYAR) & 0x80000000) {
948                         value = RTL_R32(PHYAR) & 0xffff;
949                         break;
950                 }
951                 udelay(25);
952         }
953         /*
954          * According to hardware specs a 20us delay is required after read
955          * complete indication, but before sending next command.
956          */
957         udelay(20);
958
959         return value;
960 }
961
962 static void r8168dp_1_mdio_access(void __iomem *ioaddr, int reg_addr, u32 data)
963 {
964         int i;
965
966         RTL_W32(OCPDR, data |
967                 ((reg_addr & OCPDR_REG_MASK) << OCPDR_GPHY_REG_SHIFT));
968         RTL_W32(OCPAR, OCPAR_GPHY_WRITE_CMD);
969         RTL_W32(EPHY_RXER_NUM, 0);
970
971         for (i = 0; i < 100; i++) {
972                 mdelay(1);
973                 if (!(RTL_R32(OCPAR) & OCPAR_FLAG))
974                         break;
975         }
976 }
977
978 static void r8168dp_1_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
979 {
980         r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_WRITE_CMD |
981                 (value & OCPDR_DATA_MASK));
982 }
983
984 static int r8168dp_1_mdio_read(void __iomem *ioaddr, int reg_addr)
985 {
986         int i;
987
988         r8168dp_1_mdio_access(ioaddr, reg_addr, OCPDR_READ_CMD);
989
990         mdelay(1);
991         RTL_W32(OCPAR, OCPAR_GPHY_READ_CMD);
992         RTL_W32(EPHY_RXER_NUM, 0);
993
994         for (i = 0; i < 100; i++) {
995                 mdelay(1);
996                 if (RTL_R32(OCPAR) & OCPAR_FLAG)
997                         break;
998         }
999
1000         return RTL_R32(OCPDR) & OCPDR_DATA_MASK;
1001 }
1002
1003 #define R8168DP_1_MDIO_ACCESS_BIT       0x00020000
1004
1005 static void r8168dp_2_mdio_start(void __iomem *ioaddr)
1006 {
1007         RTL_W32(0xd0, RTL_R32(0xd0) & ~R8168DP_1_MDIO_ACCESS_BIT);
1008 }
1009
1010 static void r8168dp_2_mdio_stop(void __iomem *ioaddr)
1011 {
1012         RTL_W32(0xd0, RTL_R32(0xd0) | R8168DP_1_MDIO_ACCESS_BIT);
1013 }
1014
1015 static void r8168dp_2_mdio_write(void __iomem *ioaddr, int reg_addr, int value)
1016 {
1017         r8168dp_2_mdio_start(ioaddr);
1018
1019         r8169_mdio_write(ioaddr, reg_addr, value);
1020
1021         r8168dp_2_mdio_stop(ioaddr);
1022 }
1023
1024 static int r8168dp_2_mdio_read(void __iomem *ioaddr, int reg_addr)
1025 {
1026         int value;
1027
1028         r8168dp_2_mdio_start(ioaddr);
1029
1030         value = r8169_mdio_read(ioaddr, reg_addr);
1031
1032         r8168dp_2_mdio_stop(ioaddr);
1033
1034         return value;
1035 }
1036
1037 static void rtl_writephy(struct rtl8169_private *tp, int location, u32 val)
1038 {
1039         tp->mdio_ops.write(tp->mmio_addr, location, val);
1040 }
1041
1042 static int rtl_readphy(struct rtl8169_private *tp, int location)
1043 {
1044         return tp->mdio_ops.read(tp->mmio_addr, location);
1045 }
1046
1047 static void rtl_patchphy(struct rtl8169_private *tp, int reg_addr, int value)
1048 {
1049         rtl_writephy(tp, reg_addr, rtl_readphy(tp, reg_addr) | value);
1050 }
1051
1052 static void rtl_w1w0_phy(struct rtl8169_private *tp, int reg_addr, int p, int m)
1053 {
1054         int val;
1055
1056         val = rtl_readphy(tp, reg_addr);
1057         rtl_writephy(tp, reg_addr, (val | p) & ~m);
1058 }
1059
1060 static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
1061                            int val)
1062 {
1063         struct rtl8169_private *tp = netdev_priv(dev);
1064
1065         rtl_writephy(tp, location, val);
1066 }
1067
1068 static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
1069 {
1070         struct rtl8169_private *tp = netdev_priv(dev);
1071
1072         return rtl_readphy(tp, location);
1073 }
1074
1075 static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
1076 {
1077         unsigned int i;
1078
1079         RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
1080                 (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1081
1082         for (i = 0; i < 100; i++) {
1083                 if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
1084                         break;
1085                 udelay(10);
1086         }
1087 }
1088
1089 static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
1090 {
1091         u16 value = 0xffff;
1092         unsigned int i;
1093
1094         RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
1095
1096         for (i = 0; i < 100; i++) {
1097                 if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
1098                         value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
1099                         break;
1100                 }
1101                 udelay(10);
1102         }
1103
1104         return value;
1105 }
1106
1107 static
1108 void rtl_eri_write(void __iomem *ioaddr, int addr, u32 mask, u32 val, int type)
1109 {
1110         unsigned int i;
1111
1112         BUG_ON((addr & 3) || (mask == 0));
1113         RTL_W32(ERIDR, val);
1114         RTL_W32(ERIAR, ERIAR_WRITE_CMD | type | mask | addr);
1115
1116         for (i = 0; i < 100; i++) {
1117                 if (!(RTL_R32(ERIAR) & ERIAR_FLAG))
1118                         break;
1119                 udelay(100);
1120         }
1121 }
1122
1123 static u32 rtl_eri_read(void __iomem *ioaddr, int addr, int type)
1124 {
1125         u32 value = ~0x00;
1126         unsigned int i;
1127
1128         RTL_W32(ERIAR, ERIAR_READ_CMD | type | ERIAR_MASK_1111 | addr);
1129
1130         for (i = 0; i < 100; i++) {
1131                 if (RTL_R32(ERIAR) & ERIAR_FLAG) {
1132                         value = RTL_R32(ERIDR);
1133                         break;
1134                 }
1135                 udelay(100);
1136         }
1137
1138         return value;
1139 }
1140
1141 static void
1142 rtl_w1w0_eri(void __iomem *ioaddr, int addr, u32 mask, u32 p, u32 m, int type)
1143 {
1144         u32 val;
1145
1146         val = rtl_eri_read(ioaddr, addr, type);
1147         rtl_eri_write(ioaddr, addr, mask, (val & ~m) | p, type);
1148 }
1149
1150 struct exgmac_reg {
1151         u16 addr;
1152         u16 mask;
1153         u32 val;
1154 };
1155
1156 static void rtl_write_exgmac_batch(void __iomem *ioaddr,
1157                                    const struct exgmac_reg *r, int len)
1158 {
1159         while (len-- > 0) {
1160                 rtl_eri_write(ioaddr, r->addr, r->mask, r->val, ERIAR_EXGMAC);
1161                 r++;
1162         }
1163 }
1164
1165 static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
1166 {
1167         u8 value = 0xff;
1168         unsigned int i;
1169
1170         RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
1171
1172         for (i = 0; i < 300; i++) {
1173                 if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
1174                         value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
1175                         break;
1176                 }
1177                 udelay(100);
1178         }
1179
1180         return value;
1181 }
1182
1183 static u16 rtl_get_events(struct rtl8169_private *tp)
1184 {
1185         void __iomem *ioaddr = tp->mmio_addr;
1186
1187         return RTL_R16(IntrStatus);
1188 }
1189
1190 static void rtl_ack_events(struct rtl8169_private *tp, u16 bits)
1191 {
1192         void __iomem *ioaddr = tp->mmio_addr;
1193
1194         RTL_W16(IntrStatus, bits);
1195         mmiowb();
1196 }
1197
1198 static void rtl_irq_disable(struct rtl8169_private *tp)
1199 {
1200         void __iomem *ioaddr = tp->mmio_addr;
1201
1202         RTL_W16(IntrMask, 0);
1203         mmiowb();
1204 }
1205
1206 static void rtl_irq_enable(struct rtl8169_private *tp, u16 bits)
1207 {
1208         void __iomem *ioaddr = tp->mmio_addr;
1209
1210         RTL_W16(IntrMask, bits);
1211 }
1212
1213 #define RTL_EVENT_NAPI_RX       (RxOK | RxErr)
1214 #define RTL_EVENT_NAPI_TX       (TxOK | TxErr)
1215 #define RTL_EVENT_NAPI          (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
1216
1217 static void rtl_irq_enable_all(struct rtl8169_private *tp)
1218 {
1219         rtl_irq_enable(tp, RTL_EVENT_NAPI | tp->event_slow);
1220 }
1221
1222 static void rtl8169_irq_mask_and_ack(struct rtl8169_private *tp)
1223 {
1224         void __iomem *ioaddr = tp->mmio_addr;
1225
1226         rtl_irq_disable(tp);
1227         rtl_ack_events(tp, RTL_EVENT_NAPI | tp->event_slow);
1228         RTL_R8(ChipCmd);
1229 }
1230
1231 static unsigned int rtl8169_tbi_reset_pending(struct rtl8169_private *tp)
1232 {
1233         void __iomem *ioaddr = tp->mmio_addr;
1234
1235         return RTL_R32(TBICSR) & TBIReset;
1236 }
1237
1238 static unsigned int rtl8169_xmii_reset_pending(struct rtl8169_private *tp)
1239 {
1240         return rtl_readphy(tp, MII_BMCR) & BMCR_RESET;
1241 }
1242
1243 static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
1244 {
1245         return RTL_R32(TBICSR) & TBILinkOk;
1246 }
1247
1248 static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
1249 {
1250         return RTL_R8(PHYstatus) & LinkStatus;
1251 }
1252
1253 static void rtl8169_tbi_reset_enable(struct rtl8169_private *tp)
1254 {
1255         void __iomem *ioaddr = tp->mmio_addr;
1256
1257         RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
1258 }
1259
1260 static void rtl8169_xmii_reset_enable(struct rtl8169_private *tp)
1261 {
1262         unsigned int val;
1263
1264         val = rtl_readphy(tp, MII_BMCR) | BMCR_RESET;
1265         rtl_writephy(tp, MII_BMCR, val & 0xffff);
1266 }
1267
1268 static void rtl_link_chg_patch(struct rtl8169_private *tp)
1269 {
1270         void __iomem *ioaddr = tp->mmio_addr;
1271         struct net_device *dev = tp->dev;
1272
1273         if (!netif_running(dev))
1274                 return;
1275
1276         if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
1277             tp->mac_version == RTL_GIGA_MAC_VER_38) {
1278                 if (RTL_R8(PHYstatus) & _1000bpsF) {
1279                         rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1280                                       0x00000011, ERIAR_EXGMAC);
1281                         rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1282                                       0x00000005, ERIAR_EXGMAC);
1283                 } else if (RTL_R8(PHYstatus) & _100bps) {
1284                         rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1285                                       0x0000001f, ERIAR_EXGMAC);
1286                         rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1287                                       0x00000005, ERIAR_EXGMAC);
1288                 } else {
1289                         rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1290                                       0x0000001f, ERIAR_EXGMAC);
1291                         rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1292                                       0x0000003f, ERIAR_EXGMAC);
1293                 }
1294                 /* Reset packet filter */
1295                 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x00, 0x01,
1296                              ERIAR_EXGMAC);
1297                 rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x01, 0x00,
1298                              ERIAR_EXGMAC);
1299         } else if (tp->mac_version == RTL_GIGA_MAC_VER_35 ||
1300                    tp->mac_version == RTL_GIGA_MAC_VER_36) {
1301                 if (RTL_R8(PHYstatus) & _1000bpsF) {
1302                         rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1303                                       0x00000011, ERIAR_EXGMAC);
1304                         rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1305                                       0x00000005, ERIAR_EXGMAC);
1306                 } else {
1307                         rtl_eri_write(ioaddr, 0x1bc, ERIAR_MASK_1111,
1308                                       0x0000001f, ERIAR_EXGMAC);
1309                         rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_1111,
1310                                       0x0000003f, ERIAR_EXGMAC);
1311                 }
1312         } else if (tp->mac_version == RTL_GIGA_MAC_VER_37) {
1313                 if (RTL_R8(PHYstatus) & _10bps) {
1314                         rtl_eri_write(ioaddr, 0x1d0, ERIAR_MASK_0011,
1315                                       0x4d02, ERIAR_EXGMAC);
1316                         rtl_eri_write(ioaddr, 0x1dc, ERIAR_MASK_0011,
1317                                       0x0060, ERIAR_EXGMAC);
1318                 } else {
1319                         rtl_eri_write(ioaddr, 0x1d0, ERIAR_MASK_0011,
1320                                       0x0000, ERIAR_EXGMAC);
1321                 }
1322         }
1323 }
1324
1325 static void __rtl8169_check_link_status(struct net_device *dev,
1326                                         struct rtl8169_private *tp,
1327                                         void __iomem *ioaddr, bool pm)
1328 {
1329         if (tp->link_ok(ioaddr)) {
1330                 rtl_link_chg_patch(tp);
1331                 /* This is to cancel a scheduled suspend if there's one. */
1332                 if (pm)
1333                         pm_request_resume(&tp->pci_dev->dev);
1334                 netif_carrier_on(dev);
1335                 if (net_ratelimit())
1336                         netif_info(tp, ifup, dev, "link up\n");
1337         } else {
1338                 netif_carrier_off(dev);
1339                 netif_info(tp, ifdown, dev, "link down\n");
1340                 if (pm)
1341                         pm_schedule_suspend(&tp->pci_dev->dev, 5000);
1342         }
1343 }
1344
1345 static void rtl8169_check_link_status(struct net_device *dev,
1346                                       struct rtl8169_private *tp,
1347                                       void __iomem *ioaddr)
1348 {
1349         __rtl8169_check_link_status(dev, tp, ioaddr, false);
1350 }
1351
1352 #define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
1353
1354 static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
1355 {
1356         void __iomem *ioaddr = tp->mmio_addr;
1357         u8 options;
1358         u32 wolopts = 0;
1359
1360         options = RTL_R8(Config1);
1361         if (!(options & PMEnable))
1362                 return 0;
1363
1364         options = RTL_R8(Config3);
1365         if (options & LinkUp)
1366                 wolopts |= WAKE_PHY;
1367         if (options & MagicPacket)
1368                 wolopts |= WAKE_MAGIC;
1369
1370         options = RTL_R8(Config5);
1371         if (options & UWF)
1372                 wolopts |= WAKE_UCAST;
1373         if (options & BWF)
1374                 wolopts |= WAKE_BCAST;
1375         if (options & MWF)
1376                 wolopts |= WAKE_MCAST;
1377
1378         return wolopts;
1379 }
1380
1381 static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1382 {
1383         struct rtl8169_private *tp = netdev_priv(dev);
1384
1385         rtl_lock_work(tp);
1386
1387         wol->supported = WAKE_ANY;
1388         wol->wolopts = __rtl8169_get_wol(tp);
1389
1390         rtl_unlock_work(tp);
1391 }
1392
1393 static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
1394 {
1395         void __iomem *ioaddr = tp->mmio_addr;
1396         unsigned int i;
1397         static const struct {
1398                 u32 opt;
1399                 u16 reg;
1400                 u8  mask;
1401         } cfg[] = {
1402                 { WAKE_PHY,   Config3, LinkUp },
1403                 { WAKE_MAGIC, Config3, MagicPacket },
1404                 { WAKE_UCAST, Config5, UWF },
1405                 { WAKE_BCAST, Config5, BWF },
1406                 { WAKE_MCAST, Config5, MWF },
1407                 { WAKE_ANY,   Config5, LanWake }
1408         };
1409         u8 options;
1410
1411         RTL_W8(Cfg9346, Cfg9346_Unlock);
1412
1413         for (i = 0; i < ARRAY_SIZE(cfg); i++) {
1414                 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
1415                 if (wolopts & cfg[i].opt)
1416                         options |= cfg[i].mask;
1417                 RTL_W8(cfg[i].reg, options);
1418         }
1419
1420         switch (tp->mac_version) {
1421         case RTL_GIGA_MAC_VER_01 ... RTL_GIGA_MAC_VER_17:
1422                 options = RTL_R8(Config1) & ~PMEnable;
1423                 if (wolopts)
1424                         options |= PMEnable;
1425                 RTL_W8(Config1, options);
1426                 break;
1427         default:
1428                 options = RTL_R8(Config2) & ~PME_SIGNAL;
1429                 if (wolopts)
1430                         options |= PME_SIGNAL;
1431                 RTL_W8(Config2, options);
1432                 break;
1433         }
1434
1435         RTL_W8(Cfg9346, Cfg9346_Lock);
1436 }
1437
1438 static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1439 {
1440         struct rtl8169_private *tp = netdev_priv(dev);
1441
1442         rtl_lock_work(tp);
1443
1444         if (wol->wolopts)
1445                 tp->features |= RTL_FEATURE_WOL;
1446         else
1447                 tp->features &= ~RTL_FEATURE_WOL;
1448         __rtl8169_set_wol(tp, wol->wolopts);
1449
1450         rtl_unlock_work(tp);
1451
1452         device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
1453
1454         return 0;
1455 }
1456
1457 static const char *rtl_lookup_firmware_name(struct rtl8169_private *tp)
1458 {
1459         return rtl_chip_infos[tp->mac_version].fw_name;
1460 }
1461
1462 static void rtl8169_get_drvinfo(struct net_device *dev,
1463                                 struct ethtool_drvinfo *info)
1464 {
1465         struct rtl8169_private *tp = netdev_priv(dev);
1466         struct rtl_fw *rtl_fw = tp->rtl_fw;
1467
1468         strlcpy(info->driver, MODULENAME, sizeof(info->driver));
1469         strlcpy(info->version, RTL8169_VERSION, sizeof(info->version));
1470         strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info));
1471         BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version));
1472         if (!IS_ERR_OR_NULL(rtl_fw))
1473                 strlcpy(info->fw_version, rtl_fw->version,
1474                         sizeof(info->fw_version));
1475 }
1476
1477 static int rtl8169_get_regs_len(struct net_device *dev)
1478 {
1479         return R8169_REGS_SIZE;
1480 }
1481
1482 static int rtl8169_set_speed_tbi(struct net_device *dev,
1483                                  u8 autoneg, u16 speed, u8 duplex, u32 ignored)
1484 {
1485         struct rtl8169_private *tp = netdev_priv(dev);
1486         void __iomem *ioaddr = tp->mmio_addr;
1487         int ret = 0;
1488         u32 reg;
1489
1490         reg = RTL_R32(TBICSR);
1491         if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
1492             (duplex == DUPLEX_FULL)) {
1493                 RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
1494         } else if (autoneg == AUTONEG_ENABLE)
1495                 RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
1496         else {
1497                 netif_warn(tp, link, dev,
1498                            "incorrect speed setting refused in TBI mode\n");
1499                 ret = -EOPNOTSUPP;
1500         }
1501
1502         return ret;
1503 }
1504
1505 static int rtl8169_set_speed_xmii(struct net_device *dev,
1506                                   u8 autoneg, u16 speed, u8 duplex, u32 adv)
1507 {
1508         struct rtl8169_private *tp = netdev_priv(dev);
1509         int giga_ctrl, bmcr;
1510         int rc = -EINVAL;
1511
1512         rtl_writephy(tp, 0x1f, 0x0000);
1513
1514         if (autoneg == AUTONEG_ENABLE) {
1515                 int auto_nego;
1516
1517                 auto_nego = rtl_readphy(tp, MII_ADVERTISE);
1518                 auto_nego &= ~(ADVERTISE_10HALF | ADVERTISE_10FULL |
1519                                 ADVERTISE_100HALF | ADVERTISE_100FULL);
1520
1521                 if (adv & ADVERTISED_10baseT_Half)
1522                         auto_nego |= ADVERTISE_10HALF;
1523                 if (adv & ADVERTISED_10baseT_Full)
1524                         auto_nego |= ADVERTISE_10FULL;
1525                 if (adv & ADVERTISED_100baseT_Half)
1526                         auto_nego |= ADVERTISE_100HALF;
1527                 if (adv & ADVERTISED_100baseT_Full)
1528                         auto_nego |= ADVERTISE_100FULL;
1529
1530                 auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1531
1532                 giga_ctrl = rtl_readphy(tp, MII_CTRL1000);
1533                 giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1534
1535                 /* The 8100e/8101e/8102e do Fast Ethernet only. */
1536                 if (tp->mii.supports_gmii) {
1537                         if (adv & ADVERTISED_1000baseT_Half)
1538                                 giga_ctrl |= ADVERTISE_1000HALF;
1539                         if (adv & ADVERTISED_1000baseT_Full)
1540                                 giga_ctrl |= ADVERTISE_1000FULL;
1541                 } else if (adv & (ADVERTISED_1000baseT_Half |
1542                                   ADVERTISED_1000baseT_Full)) {
1543                         netif_info(tp, link, dev,
1544                                    "PHY does not support 1000Mbps\n");
1545                         goto out;
1546                 }
1547
1548                 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
1549
1550                 rtl_writephy(tp, MII_ADVERTISE, auto_nego);
1551                 rtl_writephy(tp, MII_CTRL1000, giga_ctrl);
1552         } else {
1553                 giga_ctrl = 0;
1554
1555                 if (speed == SPEED_10)
1556                         bmcr = 0;
1557                 else if (speed == SPEED_100)
1558                         bmcr = BMCR_SPEED100;
1559                 else
1560                         goto out;
1561
1562                 if (duplex == DUPLEX_FULL)
1563                         bmcr |= BMCR_FULLDPLX;
1564         }
1565
1566         rtl_writephy(tp, MII_BMCR, bmcr);
1567
1568         if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
1569             tp->mac_version == RTL_GIGA_MAC_VER_03) {
1570                 if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
1571                         rtl_writephy(tp, 0x17, 0x2138);
1572                         rtl_writephy(tp, 0x0e, 0x0260);
1573                 } else {
1574                         rtl_writephy(tp, 0x17, 0x2108);
1575                         rtl_writephy(tp, 0x0e, 0x0000);
1576                 }
1577         }
1578
1579         rc = 0;
1580 out:
1581         return rc;
1582 }
1583
1584 static int rtl8169_set_speed(struct net_device *dev,
1585                              u8 autoneg, u16 speed, u8 duplex, u32 advertising)
1586 {
1587         struct rtl8169_private *tp = netdev_priv(dev);
1588         int ret;
1589
1590         ret = tp->set_speed(dev, autoneg, speed, duplex, advertising);
1591         if (ret < 0)
1592                 goto out;
1593
1594         if (netif_running(dev) && (autoneg == AUTONEG_ENABLE) &&
1595             (advertising & ADVERTISED_1000baseT_Full)) {
1596                 mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
1597         }
1598 out:
1599         return ret;
1600 }
1601
1602 static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1603 {
1604         struct rtl8169_private *tp = netdev_priv(dev);
1605         int ret;
1606
1607         del_timer_sync(&tp->timer);
1608
1609         rtl_lock_work(tp);
1610         ret = rtl8169_set_speed(dev, cmd->autoneg, ethtool_cmd_speed(cmd),
1611                                 cmd->duplex, cmd->advertising);
1612         rtl_unlock_work(tp);
1613
1614         return ret;
1615 }
1616
1617 static netdev_features_t rtl8169_fix_features(struct net_device *dev,
1618         netdev_features_t features)
1619 {
1620         struct rtl8169_private *tp = netdev_priv(dev);
1621
1622         if (dev->mtu > TD_MSS_MAX)
1623                 features &= ~NETIF_F_ALL_TSO;
1624
1625         if (dev->mtu > JUMBO_1K &&
1626             !rtl_chip_infos[tp->mac_version].jumbo_tx_csum)
1627                 features &= ~NETIF_F_IP_CSUM;
1628
1629         return features;
1630 }
1631
1632 static void __rtl8169_set_features(struct net_device *dev,
1633                                    netdev_features_t features)
1634 {
1635         struct rtl8169_private *tp = netdev_priv(dev);
1636         netdev_features_t changed = features ^ dev->features;
1637         void __iomem *ioaddr = tp->mmio_addr;
1638
1639         if (!(changed & (NETIF_F_RXALL | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_RX)))
1640                 return;
1641
1642         if (changed & (NETIF_F_RXCSUM | NETIF_F_HW_VLAN_RX)) {
1643                 if (features & NETIF_F_RXCSUM)
1644                         tp->cp_cmd |= RxChkSum;
1645                 else
1646                         tp->cp_cmd &= ~RxChkSum;
1647
1648                 if (dev->features & NETIF_F_HW_VLAN_RX)
1649                         tp->cp_cmd |= RxVlan;
1650                 else
1651                         tp->cp_cmd &= ~RxVlan;
1652
1653                 RTL_W16(CPlusCmd, tp->cp_cmd);
1654                 RTL_R16(CPlusCmd);
1655         }
1656         if (changed & NETIF_F_RXALL) {
1657                 int tmp = (RTL_R32(RxConfig) & ~(AcceptErr | AcceptRunt));
1658                 if (features & NETIF_F_RXALL)
1659                         tmp |= (AcceptErr | AcceptRunt);
1660                 RTL_W32(RxConfig, tmp);
1661         }
1662 }
1663
1664 static int rtl8169_set_features(struct net_device *dev,
1665                                 netdev_features_t features)
1666 {
1667         struct rtl8169_private *tp = netdev_priv(dev);
1668
1669         rtl_lock_work(tp);
1670         __rtl8169_set_features(dev, features);
1671         rtl_unlock_work(tp);
1672
1673         return 0;
1674 }
1675
1676
1677 static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
1678                                       struct sk_buff *skb)
1679 {
1680         return (vlan_tx_tag_present(skb)) ?
1681                 TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
1682 }
1683
1684 static void rtl8169_rx_vlan_tag(struct RxDesc *desc, struct sk_buff *skb)
1685 {
1686         u32 opts2 = le32_to_cpu(desc->opts2);
1687
1688         if (opts2 & RxVlanTag)
1689                 __vlan_hwaccel_put_tag(skb, swab16(opts2 & 0xffff));
1690
1691         desc->opts2 = 0;
1692 }
1693
1694 static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
1695 {
1696         struct rtl8169_private *tp = netdev_priv(dev);
1697         void __iomem *ioaddr = tp->mmio_addr;
1698         u32 status;
1699
1700         cmd->supported =
1701                 SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
1702         cmd->port = PORT_FIBRE;
1703         cmd->transceiver = XCVR_INTERNAL;
1704
1705         status = RTL_R32(TBICSR);
1706         cmd->advertising = (status & TBINwEnable) ?  ADVERTISED_Autoneg : 0;
1707         cmd->autoneg = !!(status & TBINwEnable);
1708
1709         ethtool_cmd_speed_set(cmd, SPEED_1000);
1710         cmd->duplex = DUPLEX_FULL; /* Always set */
1711
1712         return 0;
1713 }
1714
1715 static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
1716 {
1717         struct rtl8169_private *tp = netdev_priv(dev);
1718
1719         return mii_ethtool_gset(&tp->mii, cmd);
1720 }
1721
1722 static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1723 {
1724         struct rtl8169_private *tp = netdev_priv(dev);
1725         int rc;
1726
1727         rtl_lock_work(tp);
1728         rc = tp->get_settings(dev, cmd);
1729         rtl_unlock_work(tp);
1730
1731         return rc;
1732 }
1733
1734 static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1735                              void *p)
1736 {
1737         struct rtl8169_private *tp = netdev_priv(dev);
1738
1739         if (regs->len > R8169_REGS_SIZE)
1740                 regs->len = R8169_REGS_SIZE;
1741
1742         rtl_lock_work(tp);
1743         memcpy_fromio(p, tp->mmio_addr, regs->len);
1744         rtl_unlock_work(tp);
1745 }
1746
1747 static u32 rtl8169_get_msglevel(struct net_device *dev)
1748 {
1749         struct rtl8169_private *tp = netdev_priv(dev);
1750
1751         return tp->msg_enable;
1752 }
1753
1754 static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
1755 {
1756         struct rtl8169_private *tp = netdev_priv(dev);
1757
1758         tp->msg_enable = value;
1759 }
1760
1761 static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
1762         "tx_packets",
1763         "rx_packets",
1764         "tx_errors",
1765         "rx_errors",
1766         "rx_missed",
1767         "align_errors",
1768         "tx_single_collisions",
1769         "tx_multi_collisions",
1770         "unicast",
1771         "broadcast",
1772         "multicast",
1773         "tx_aborted",
1774         "tx_underrun",
1775 };
1776
1777 static int rtl8169_get_sset_count(struct net_device *dev, int sset)
1778 {
1779         switch (sset) {
1780         case ETH_SS_STATS:
1781                 return ARRAY_SIZE(rtl8169_gstrings);
1782         default:
1783                 return -EOPNOTSUPP;
1784         }
1785 }
1786
1787 static void rtl8169_update_counters(struct net_device *dev)
1788 {
1789         struct rtl8169_private *tp = netdev_priv(dev);
1790         void __iomem *ioaddr = tp->mmio_addr;
1791         struct device *d = &tp->pci_dev->dev;
1792         struct rtl8169_counters *counters;
1793         dma_addr_t paddr;
1794         u32 cmd;
1795         int wait = 1000;
1796
1797         /*
1798          * Some chips are unable to dump tally counters when the receiver
1799          * is disabled.
1800          */
1801         if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
1802                 return;
1803
1804         counters = dma_alloc_coherent(d, sizeof(*counters), &paddr, GFP_KERNEL);
1805         if (!counters)
1806                 return;
1807
1808         RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
1809         cmd = (u64)paddr & DMA_BIT_MASK(32);
1810         RTL_W32(CounterAddrLow, cmd);
1811         RTL_W32(CounterAddrLow, cmd | CounterDump);
1812
1813         while (wait--) {
1814                 if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
1815                         memcpy(&tp->counters, counters, sizeof(*counters));
1816                         break;
1817                 }
1818                 udelay(10);
1819         }
1820
1821         RTL_W32(CounterAddrLow, 0);
1822         RTL_W32(CounterAddrHigh, 0);
1823
1824         dma_free_coherent(d, sizeof(*counters), counters, paddr);
1825 }
1826
1827 static void rtl8169_get_ethtool_stats(struct net_device *dev,
1828                                       struct ethtool_stats *stats, u64 *data)
1829 {
1830         struct rtl8169_private *tp = netdev_priv(dev);
1831
1832         ASSERT_RTNL();
1833
1834         rtl8169_update_counters(dev);
1835
1836         data[0] = le64_to_cpu(tp->counters.tx_packets);
1837         data[1] = le64_to_cpu(tp->counters.rx_packets);
1838         data[2] = le64_to_cpu(tp->counters.tx_errors);
1839         data[3] = le32_to_cpu(tp->counters.rx_errors);
1840         data[4] = le16_to_cpu(tp->counters.rx_missed);
1841         data[5] = le16_to_cpu(tp->counters.align_errors);
1842         data[6] = le32_to_cpu(tp->counters.tx_one_collision);
1843         data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
1844         data[8] = le64_to_cpu(tp->counters.rx_unicast);
1845         data[9] = le64_to_cpu(tp->counters.rx_broadcast);
1846         data[10] = le32_to_cpu(tp->counters.rx_multicast);
1847         data[11] = le16_to_cpu(tp->counters.tx_aborted);
1848         data[12] = le16_to_cpu(tp->counters.tx_underun);
1849 }
1850
1851 static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1852 {
1853         switch(stringset) {
1854         case ETH_SS_STATS:
1855                 memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
1856                 break;
1857         }
1858 }
1859
1860 static const struct ethtool_ops rtl8169_ethtool_ops = {
1861         .get_drvinfo            = rtl8169_get_drvinfo,
1862         .get_regs_len           = rtl8169_get_regs_len,
1863         .get_link               = ethtool_op_get_link,
1864         .get_settings           = rtl8169_get_settings,
1865         .set_settings           = rtl8169_set_settings,
1866         .get_msglevel           = rtl8169_get_msglevel,
1867         .set_msglevel           = rtl8169_set_msglevel,
1868         .get_regs               = rtl8169_get_regs,
1869         .get_wol                = rtl8169_get_wol,
1870         .set_wol                = rtl8169_set_wol,
1871         .get_strings            = rtl8169_get_strings,
1872         .get_sset_count         = rtl8169_get_sset_count,
1873         .get_ethtool_stats      = rtl8169_get_ethtool_stats,
1874         .get_ts_info            = ethtool_op_get_ts_info,
1875 };
1876
1877 static void rtl8169_get_mac_version(struct rtl8169_private *tp,
1878                                     struct net_device *dev, u8 default_version)
1879 {
1880         void __iomem *ioaddr = tp->mmio_addr;
1881         /*
1882          * The driver currently handles the 8168Bf and the 8168Be identically
1883          * but they can be identified more specifically through the test below
1884          * if needed:
1885          *
1886          * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
1887          *
1888          * Same thing for the 8101Eb and the 8101Ec:
1889          *
1890          * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
1891          */
1892         static const struct rtl_mac_info {
1893                 u32 mask;
1894                 u32 val;
1895                 int mac_version;
1896         } mac_info[] = {
1897                 /* 8168F family. */
1898                 { 0x7c800000, 0x48800000,       RTL_GIGA_MAC_VER_38 },
1899                 { 0x7cf00000, 0x48100000,       RTL_GIGA_MAC_VER_36 },
1900                 { 0x7cf00000, 0x48000000,       RTL_GIGA_MAC_VER_35 },
1901
1902                 /* 8168E family. */
1903                 { 0x7c800000, 0x2c800000,       RTL_GIGA_MAC_VER_34 },
1904                 { 0x7cf00000, 0x2c200000,       RTL_GIGA_MAC_VER_33 },
1905                 { 0x7cf00000, 0x2c100000,       RTL_GIGA_MAC_VER_32 },
1906                 { 0x7c800000, 0x2c000000,       RTL_GIGA_MAC_VER_33 },
1907
1908                 /* 8168D family. */
1909                 { 0x7cf00000, 0x28300000,       RTL_GIGA_MAC_VER_26 },
1910                 { 0x7cf00000, 0x28100000,       RTL_GIGA_MAC_VER_25 },
1911                 { 0x7c800000, 0x28000000,       RTL_GIGA_MAC_VER_26 },
1912
1913                 /* 8168DP family. */
1914                 { 0x7cf00000, 0x28800000,       RTL_GIGA_MAC_VER_27 },
1915                 { 0x7cf00000, 0x28a00000,       RTL_GIGA_MAC_VER_28 },
1916                 { 0x7cf00000, 0x28b00000,       RTL_GIGA_MAC_VER_31 },
1917
1918                 /* 8168C family. */
1919                 { 0x7cf00000, 0x3cb00000,       RTL_GIGA_MAC_VER_24 },
1920                 { 0x7cf00000, 0x3c900000,       RTL_GIGA_MAC_VER_23 },
1921                 { 0x7cf00000, 0x3c800000,       RTL_GIGA_MAC_VER_18 },
1922                 { 0x7c800000, 0x3c800000,       RTL_GIGA_MAC_VER_24 },
1923                 { 0x7cf00000, 0x3c000000,       RTL_GIGA_MAC_VER_19 },
1924                 { 0x7cf00000, 0x3c200000,       RTL_GIGA_MAC_VER_20 },
1925                 { 0x7cf00000, 0x3c300000,       RTL_GIGA_MAC_VER_21 },
1926                 { 0x7cf00000, 0x3c400000,       RTL_GIGA_MAC_VER_22 },
1927                 { 0x7c800000, 0x3c000000,       RTL_GIGA_MAC_VER_22 },
1928
1929                 /* 8168B family. */
1930                 { 0x7cf00000, 0x38000000,       RTL_GIGA_MAC_VER_12 },
1931                 { 0x7cf00000, 0x38500000,       RTL_GIGA_MAC_VER_17 },
1932                 { 0x7c800000, 0x38000000,       RTL_GIGA_MAC_VER_17 },
1933                 { 0x7c800000, 0x30000000,       RTL_GIGA_MAC_VER_11 },
1934
1935                 /* 8101 family. */
1936                 { 0x7c800000, 0x44000000,       RTL_GIGA_MAC_VER_37 },
1937                 { 0x7cf00000, 0x40b00000,       RTL_GIGA_MAC_VER_30 },
1938                 { 0x7cf00000, 0x40a00000,       RTL_GIGA_MAC_VER_30 },
1939                 { 0x7cf00000, 0x40900000,       RTL_GIGA_MAC_VER_29 },
1940                 { 0x7c800000, 0x40800000,       RTL_GIGA_MAC_VER_30 },
1941                 { 0x7cf00000, 0x34a00000,       RTL_GIGA_MAC_VER_09 },
1942                 { 0x7cf00000, 0x24a00000,       RTL_GIGA_MAC_VER_09 },
1943                 { 0x7cf00000, 0x34900000,       RTL_GIGA_MAC_VER_08 },
1944                 { 0x7cf00000, 0x24900000,       RTL_GIGA_MAC_VER_08 },
1945                 { 0x7cf00000, 0x34800000,       RTL_GIGA_MAC_VER_07 },
1946                 { 0x7cf00000, 0x24800000,       RTL_GIGA_MAC_VER_07 },
1947                 { 0x7cf00000, 0x34000000,       RTL_GIGA_MAC_VER_13 },
1948                 { 0x7cf00000, 0x34300000,       RTL_GIGA_MAC_VER_10 },
1949                 { 0x7cf00000, 0x34200000,       RTL_GIGA_MAC_VER_16 },
1950                 { 0x7c800000, 0x34800000,       RTL_GIGA_MAC_VER_09 },
1951                 { 0x7c800000, 0x24800000,       RTL_GIGA_MAC_VER_09 },
1952                 { 0x7c800000, 0x34000000,       RTL_GIGA_MAC_VER_16 },
1953                 /* FIXME: where did these entries come from ? -- FR */
1954                 { 0xfc800000, 0x38800000,       RTL_GIGA_MAC_VER_15 },
1955                 { 0xfc800000, 0x30800000,       RTL_GIGA_MAC_VER_14 },
1956
1957                 /* 8110 family. */
1958                 { 0xfc800000, 0x98000000,       RTL_GIGA_MAC_VER_06 },
1959                 { 0xfc800000, 0x18000000,       RTL_GIGA_MAC_VER_05 },
1960                 { 0xfc800000, 0x10000000,       RTL_GIGA_MAC_VER_04 },
1961                 { 0xfc800000, 0x04000000,       RTL_GIGA_MAC_VER_03 },
1962                 { 0xfc800000, 0x00800000,       RTL_GIGA_MAC_VER_02 },
1963                 { 0xfc800000, 0x00000000,       RTL_GIGA_MAC_VER_01 },
1964
1965                 /* Catch-all */
1966                 { 0x00000000, 0x00000000,       RTL_GIGA_MAC_NONE   }
1967         };
1968         const struct rtl_mac_info *p = mac_info;
1969         u32 reg;
1970
1971         reg = RTL_R32(TxConfig);
1972         while ((reg & p->mask) != p->val)
1973                 p++;
1974         tp->mac_version = p->mac_version;
1975
1976         if (tp->mac_version == RTL_GIGA_MAC_NONE) {
1977                 netif_notice(tp, probe, dev,
1978                              "unknown MAC, using family default\n");
1979                 tp->mac_version = default_version;
1980         }
1981 }
1982
1983 static void rtl8169_print_mac_version(struct rtl8169_private *tp)
1984 {
1985         dprintk("mac_version = 0x%02x\n", tp->mac_version);
1986 }
1987
1988 struct phy_reg {
1989         u16 reg;
1990         u16 val;
1991 };
1992
1993 static void rtl_writephy_batch(struct rtl8169_private *tp,
1994                                const struct phy_reg *regs, int len)
1995 {
1996         while (len-- > 0) {
1997                 rtl_writephy(tp, regs->reg, regs->val);
1998                 regs++;
1999         }
2000 }
2001
2002 #define PHY_READ                0x00000000
2003 #define PHY_DATA_OR             0x10000000
2004 #define PHY_DATA_AND            0x20000000
2005 #define PHY_BJMPN               0x30000000
2006 #define PHY_READ_EFUSE          0x40000000
2007 #define PHY_READ_MAC_BYTE       0x50000000
2008 #define PHY_WRITE_MAC_BYTE      0x60000000
2009 #define PHY_CLEAR_READCOUNT     0x70000000
2010 #define PHY_WRITE               0x80000000
2011 #define PHY_READCOUNT_EQ_SKIP   0x90000000
2012 #define PHY_COMP_EQ_SKIPN       0xa0000000
2013 #define PHY_COMP_NEQ_SKIPN      0xb0000000
2014 #define PHY_WRITE_PREVIOUS      0xc0000000
2015 #define PHY_SKIPN               0xd0000000
2016 #define PHY_DELAY_MS            0xe0000000
2017 #define PHY_WRITE_ERI_WORD      0xf0000000
2018
2019 struct fw_info {
2020         u32     magic;
2021         char    version[RTL_VER_SIZE];
2022         __le32  fw_start;
2023         __le32  fw_len;
2024         u8      chksum;
2025 } __packed;
2026
2027 #define FW_OPCODE_SIZE  sizeof(typeof(*((struct rtl_fw_phy_action *)0)->code))
2028
2029 static bool rtl_fw_format_ok(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2030 {
2031         const struct firmware *fw = rtl_fw->fw;
2032         struct fw_info *fw_info = (struct fw_info *)fw->data;
2033         struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2034         char *version = rtl_fw->version;
2035         bool rc = false;
2036
2037         if (fw->size < FW_OPCODE_SIZE)
2038                 goto out;
2039
2040         if (!fw_info->magic) {
2041                 size_t i, size, start;
2042                 u8 checksum = 0;
2043
2044                 if (fw->size < sizeof(*fw_info))
2045                         goto out;
2046
2047                 for (i = 0; i < fw->size; i++)
2048                         checksum += fw->data[i];
2049                 if (checksum != 0)
2050                         goto out;
2051
2052                 start = le32_to_cpu(fw_info->fw_start);
2053                 if (start > fw->size)
2054                         goto out;
2055
2056                 size = le32_to_cpu(fw_info->fw_len);
2057                 if (size > (fw->size - start) / FW_OPCODE_SIZE)
2058                         goto out;
2059
2060                 memcpy(version, fw_info->version, RTL_VER_SIZE);
2061
2062                 pa->code = (__le32 *)(fw->data + start);
2063                 pa->size = size;
2064         } else {
2065                 if (fw->size % FW_OPCODE_SIZE)
2066                         goto out;
2067
2068                 strlcpy(version, rtl_lookup_firmware_name(tp), RTL_VER_SIZE);
2069
2070                 pa->code = (__le32 *)fw->data;
2071                 pa->size = fw->size / FW_OPCODE_SIZE;
2072         }
2073         version[RTL_VER_SIZE - 1] = 0;
2074
2075         rc = true;
2076 out:
2077         return rc;
2078 }
2079
2080 static bool rtl_fw_data_ok(struct rtl8169_private *tp, struct net_device *dev,
2081                            struct rtl_fw_phy_action *pa)
2082 {
2083         bool rc = false;
2084         size_t index;
2085
2086         for (index = 0; index < pa->size; index++) {
2087                 u32 action = le32_to_cpu(pa->code[index]);
2088                 u32 regno = (action & 0x0fff0000) >> 16;
2089
2090                 switch(action & 0xf0000000) {
2091                 case PHY_READ:
2092                 case PHY_DATA_OR:
2093                 case PHY_DATA_AND:
2094                 case PHY_READ_EFUSE:
2095                 case PHY_CLEAR_READCOUNT:
2096                 case PHY_WRITE:
2097                 case PHY_WRITE_PREVIOUS:
2098                 case PHY_DELAY_MS:
2099                         break;
2100
2101                 case PHY_BJMPN:
2102                         if (regno > index) {
2103                                 netif_err(tp, ifup, tp->dev,
2104                                           "Out of range of firmware\n");
2105                                 goto out;
2106                         }
2107                         break;
2108                 case PHY_READCOUNT_EQ_SKIP:
2109                         if (index + 2 >= pa->size) {
2110                                 netif_err(tp, ifup, tp->dev,
2111                                           "Out of range of firmware\n");
2112                                 goto out;
2113                         }
2114                         break;
2115                 case PHY_COMP_EQ_SKIPN:
2116                 case PHY_COMP_NEQ_SKIPN:
2117                 case PHY_SKIPN:
2118                         if (index + 1 + regno >= pa->size) {
2119                                 netif_err(tp, ifup, tp->dev,
2120                                           "Out of range of firmware\n");
2121                                 goto out;
2122                         }
2123                         break;
2124
2125                 case PHY_READ_MAC_BYTE:
2126                 case PHY_WRITE_MAC_BYTE:
2127                 case PHY_WRITE_ERI_WORD:
2128                 default:
2129                         netif_err(tp, ifup, tp->dev,
2130                                   "Invalid action 0x%08x\n", action);
2131                         goto out;
2132                 }
2133         }
2134         rc = true;
2135 out:
2136         return rc;
2137 }
2138
2139 static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2140 {
2141         struct net_device *dev = tp->dev;
2142         int rc = -EINVAL;
2143
2144         if (!rtl_fw_format_ok(tp, rtl_fw)) {
2145                 netif_err(tp, ifup, dev, "invalid firwmare\n");
2146                 goto out;
2147         }
2148
2149         if (rtl_fw_data_ok(tp, dev, &rtl_fw->phy_action))
2150                 rc = 0;
2151 out:
2152         return rc;
2153 }
2154
2155 static void rtl_phy_write_fw(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
2156 {
2157         struct rtl_fw_phy_action *pa = &rtl_fw->phy_action;
2158         u32 predata, count;
2159         size_t index;
2160
2161         predata = count = 0;
2162
2163         for (index = 0; index < pa->size; ) {
2164                 u32 action = le32_to_cpu(pa->code[index]);
2165                 u32 data = action & 0x0000ffff;
2166                 u32 regno = (action & 0x0fff0000) >> 16;
2167
2168                 if (!action)
2169                         break;
2170
2171                 switch(action & 0xf0000000) {
2172                 case PHY_READ:
2173                         predata = rtl_readphy(tp, regno);
2174                         count++;
2175                         index++;
2176                         break;
2177                 case PHY_DATA_OR:
2178                         predata |= data;
2179                         index++;
2180                         break;
2181                 case PHY_DATA_AND:
2182                         predata &= data;
2183                         index++;
2184                         break;
2185                 case PHY_BJMPN:
2186                         index -= regno;
2187                         break;
2188                 case PHY_READ_EFUSE:
2189                         predata = rtl8168d_efuse_read(tp->mmio_addr, regno);
2190                         index++;
2191                         break;
2192                 case PHY_CLEAR_READCOUNT:
2193                         count = 0;
2194                         index++;
2195                         break;
2196                 case PHY_WRITE:
2197                         rtl_writephy(tp, regno, data);
2198                         index++;
2199                         break;
2200                 case PHY_READCOUNT_EQ_SKIP:
2201                         index += (count == data) ? 2 : 1;
2202                         break;
2203                 case PHY_COMP_EQ_SKIPN:
2204                         if (predata == data)
2205                                 index += regno;
2206                         index++;
2207                         break;
2208                 case PHY_COMP_NEQ_SKIPN:
2209                         if (predata != data)
2210                                 index += regno;
2211                         index++;
2212                         break;
2213                 case PHY_WRITE_PREVIOUS:
2214                         rtl_writephy(tp, regno, predata);
2215                         index++;
2216                         break;
2217                 case PHY_SKIPN:
2218                         index += regno + 1;
2219                         break;
2220                 case PHY_DELAY_MS:
2221                         mdelay(data);
2222                         index++;
2223                         break;
2224
2225                 case PHY_READ_MAC_BYTE:
2226                 case PHY_WRITE_MAC_BYTE:
2227                 case PHY_WRITE_ERI_WORD:
2228                 default:
2229                         BUG();
2230                 }
2231         }
2232 }
2233
2234 static void rtl_release_firmware(struct rtl8169_private *tp)
2235 {
2236         if (!IS_ERR_OR_NULL(tp->rtl_fw)) {
2237                 release_firmware(tp->rtl_fw->fw);
2238                 kfree(tp->rtl_fw);
2239         }
2240         tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
2241 }
2242
2243 static void rtl_apply_firmware(struct rtl8169_private *tp)
2244 {
2245         struct rtl_fw *rtl_fw = tp->rtl_fw;
2246
2247         /* TODO: release firmware once rtl_phy_write_fw signals failures. */
2248         if (!IS_ERR_OR_NULL(rtl_fw))
2249                 rtl_phy_write_fw(tp, rtl_fw);
2250 }
2251
2252 static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val)
2253 {
2254         if (rtl_readphy(tp, reg) != val)
2255                 netif_warn(tp, hw, tp->dev, "chipset not ready for firmware\n");
2256         else
2257                 rtl_apply_firmware(tp);
2258 }
2259
2260 static void rtl8169s_hw_phy_config(struct rtl8169_private *tp)
2261 {
2262         static const struct phy_reg phy_reg_init[] = {
2263                 { 0x1f, 0x0001 },
2264                 { 0x06, 0x006e },
2265                 { 0x08, 0x0708 },
2266                 { 0x15, 0x4000 },
2267                 { 0x18, 0x65c7 },
2268
2269                 { 0x1f, 0x0001 },
2270                 { 0x03, 0x00a1 },
2271                 { 0x02, 0x0008 },
2272                 { 0x01, 0x0120 },
2273                 { 0x00, 0x1000 },
2274                 { 0x04, 0x0800 },
2275                 { 0x04, 0x0000 },
2276
2277                 { 0x03, 0xff41 },
2278                 { 0x02, 0xdf60 },
2279                 { 0x01, 0x0140 },
2280                 { 0x00, 0x0077 },
2281                 { 0x04, 0x7800 },
2282                 { 0x04, 0x7000 },
2283
2284                 { 0x03, 0x802f },
2285                 { 0x02, 0x4f02 },
2286                 { 0x01, 0x0409 },
2287                 { 0x00, 0xf0f9 },
2288                 { 0x04, 0x9800 },
2289                 { 0x04, 0x9000 },
2290
2291                 { 0x03, 0xdf01 },
2292                 { 0x02, 0xdf20 },
2293                 { 0x01, 0xff95 },
2294                 { 0x00, 0xba00 },
2295                 { 0x04, 0xa800 },
2296                 { 0x04, 0xa000 },
2297
2298                 { 0x03, 0xff41 },
2299                 { 0x02, 0xdf20 },
2300                 { 0x01, 0x0140 },
2301                 { 0x00, 0x00bb },
2302                 { 0x04, 0xb800 },
2303                 { 0x04, 0xb000 },
2304
2305                 { 0x03, 0xdf41 },
2306                 { 0x02, 0xdc60 },
2307                 { 0x01, 0x6340 },
2308                 { 0x00, 0x007d },
2309                 { 0x04, 0xd800 },
2310                 { 0x04, 0xd000 },
2311
2312                 { 0x03, 0xdf01 },
2313                 { 0x02, 0xdf20 },
2314                 { 0x01, 0x100a },
2315                 { 0x00, 0xa0ff },
2316                 { 0x04, 0xf800 },
2317                 { 0x04, 0xf000 },
2318
2319                 { 0x1f, 0x0000 },
2320                 { 0x0b, 0x0000 },
2321                 { 0x00, 0x9200 }
2322         };
2323
2324         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2325 }
2326
2327 static void rtl8169sb_hw_phy_config(struct rtl8169_private *tp)
2328 {
2329         static const struct phy_reg phy_reg_init[] = {
2330                 { 0x1f, 0x0002 },
2331                 { 0x01, 0x90d0 },
2332                 { 0x1f, 0x0000 }
2333         };
2334
2335         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2336 }
2337
2338 static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp)
2339 {
2340         struct pci_dev *pdev = tp->pci_dev;
2341
2342         if ((pdev->subsystem_vendor != PCI_VENDOR_ID_GIGABYTE) ||
2343             (pdev->subsystem_device != 0xe000))
2344                 return;
2345
2346         rtl_writephy(tp, 0x1f, 0x0001);
2347         rtl_writephy(tp, 0x10, 0xf01b);
2348         rtl_writephy(tp, 0x1f, 0x0000);
2349 }
2350
2351 static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp)
2352 {
2353         static const struct phy_reg phy_reg_init[] = {
2354                 { 0x1f, 0x0001 },
2355                 { 0x04, 0x0000 },
2356                 { 0x03, 0x00a1 },
2357                 { 0x02, 0x0008 },
2358                 { 0x01, 0x0120 },
2359                 { 0x00, 0x1000 },
2360                 { 0x04, 0x0800 },
2361                 { 0x04, 0x9000 },
2362                 { 0x03, 0x802f },
2363                 { 0x02, 0x4f02 },
2364                 { 0x01, 0x0409 },
2365                 { 0x00, 0xf099 },
2366                 { 0x04, 0x9800 },
2367                 { 0x04, 0xa000 },
2368                 { 0x03, 0xdf01 },
2369                 { 0x02, 0xdf20 },
2370                 { 0x01, 0xff95 },
2371                 { 0x00, 0xba00 },
2372                 { 0x04, 0xa800 },
2373                 { 0x04, 0xf000 },
2374                 { 0x03, 0xdf01 },
2375                 { 0x02, 0xdf20 },
2376                 { 0x01, 0x101a },
2377                 { 0x00, 0xa0ff },
2378                 { 0x04, 0xf800 },
2379                 { 0x04, 0x0000 },
2380                 { 0x1f, 0x0000 },
2381
2382                 { 0x1f, 0x0001 },
2383                 { 0x10, 0xf41b },
2384                 { 0x14, 0xfb54 },
2385                 { 0x18, 0xf5c7 },
2386                 { 0x1f, 0x0000 },
2387
2388                 { 0x1f, 0x0001 },
2389                 { 0x17, 0x0cc0 },
2390                 { 0x1f, 0x0000 }
2391         };
2392
2393         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2394
2395         rtl8169scd_hw_phy_config_quirk(tp);
2396 }
2397
2398 static void rtl8169sce_hw_phy_config(struct rtl8169_private *tp)
2399 {
2400         static const struct phy_reg phy_reg_init[] = {
2401                 { 0x1f, 0x0001 },
2402                 { 0x04, 0x0000 },
2403                 { 0x03, 0x00a1 },
2404                 { 0x02, 0x0008 },
2405                 { 0x01, 0x0120 },
2406                 { 0x00, 0x1000 },
2407                 { 0x04, 0x0800 },
2408                 { 0x04, 0x9000 },
2409                 { 0x03, 0x802f },
2410                 { 0x02, 0x4f02 },
2411                 { 0x01, 0x0409 },
2412                 { 0x00, 0xf099 },
2413                 { 0x04, 0x9800 },
2414                 { 0x04, 0xa000 },
2415                 { 0x03, 0xdf01 },
2416                 { 0x02, 0xdf20 },
2417                 { 0x01, 0xff95 },
2418                 { 0x00, 0xba00 },
2419                 { 0x04, 0xa800 },
2420                 { 0x04, 0xf000 },
2421                 { 0x03, 0xdf01 },
2422                 { 0x02, 0xdf20 },
2423                 { 0x01, 0x101a },
2424                 { 0x00, 0xa0ff },
2425                 { 0x04, 0xf800 },
2426                 { 0x04, 0x0000 },
2427                 { 0x1f, 0x0000 },
2428
2429                 { 0x1f, 0x0001 },
2430                 { 0x0b, 0x8480 },
2431                 { 0x1f, 0x0000 },
2432
2433                 { 0x1f, 0x0001 },
2434                 { 0x18, 0x67c7 },
2435                 { 0x04, 0x2000 },
2436                 { 0x03, 0x002f },
2437                 { 0x02, 0x4360 },
2438                 { 0x01, 0x0109 },
2439                 { 0x00, 0x3022 },
2440                 { 0x04, 0x2800 },
2441                 { 0x1f, 0x0000 },
2442
2443                 { 0x1f, 0x0001 },
2444                 { 0x17, 0x0cc0 },
2445                 { 0x1f, 0x0000 }
2446         };
2447
2448         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2449 }
2450
2451 static void rtl8168bb_hw_phy_config(struct rtl8169_private *tp)
2452 {
2453         static const struct phy_reg phy_reg_init[] = {
2454                 { 0x10, 0xf41b },
2455                 { 0x1f, 0x0000 }
2456         };
2457
2458         rtl_writephy(tp, 0x1f, 0x0001);
2459         rtl_patchphy(tp, 0x16, 1 << 0);
2460
2461         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2462 }
2463
2464 static void rtl8168bef_hw_phy_config(struct rtl8169_private *tp)
2465 {
2466         static const struct phy_reg phy_reg_init[] = {
2467                 { 0x1f, 0x0001 },
2468                 { 0x10, 0xf41b },
2469                 { 0x1f, 0x0000 }
2470         };
2471
2472         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2473 }
2474
2475 static void rtl8168cp_1_hw_phy_config(struct rtl8169_private *tp)
2476 {
2477         static const struct phy_reg phy_reg_init[] = {
2478                 { 0x1f, 0x0000 },
2479                 { 0x1d, 0x0f00 },
2480                 { 0x1f, 0x0002 },
2481                 { 0x0c, 0x1ec8 },
2482                 { 0x1f, 0x0000 }
2483         };
2484
2485         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2486 }
2487
2488 static void rtl8168cp_2_hw_phy_config(struct rtl8169_private *tp)
2489 {
2490         static const struct phy_reg phy_reg_init[] = {
2491                 { 0x1f, 0x0001 },
2492                 { 0x1d, 0x3d98 },
2493                 { 0x1f, 0x0000 }
2494         };
2495
2496         rtl_writephy(tp, 0x1f, 0x0000);
2497         rtl_patchphy(tp, 0x14, 1 << 5);
2498         rtl_patchphy(tp, 0x0d, 1 << 5);
2499
2500         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2501 }
2502
2503 static void rtl8168c_1_hw_phy_config(struct rtl8169_private *tp)
2504 {
2505         static const struct phy_reg phy_reg_init[] = {
2506                 { 0x1f, 0x0001 },
2507                 { 0x12, 0x2300 },
2508                 { 0x1f, 0x0002 },
2509                 { 0x00, 0x88d4 },
2510                 { 0x01, 0x82b1 },
2511                 { 0x03, 0x7002 },
2512                 { 0x08, 0x9e30 },
2513                 { 0x09, 0x01f0 },
2514                 { 0x0a, 0x5500 },
2515                 { 0x0c, 0x00c8 },
2516                 { 0x1f, 0x0003 },
2517                 { 0x12, 0xc096 },
2518                 { 0x16, 0x000a },
2519                 { 0x1f, 0x0000 },
2520                 { 0x1f, 0x0000 },
2521                 { 0x09, 0x2000 },
2522                 { 0x09, 0x0000 }
2523         };
2524
2525         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2526
2527         rtl_patchphy(tp, 0x14, 1 << 5);
2528         rtl_patchphy(tp, 0x0d, 1 << 5);
2529         rtl_writephy(tp, 0x1f, 0x0000);
2530 }
2531
2532 static void rtl8168c_2_hw_phy_config(struct rtl8169_private *tp)
2533 {
2534         static const struct phy_reg phy_reg_init[] = {
2535                 { 0x1f, 0x0001 },
2536                 { 0x12, 0x2300 },
2537                 { 0x03, 0x802f },
2538                 { 0x02, 0x4f02 },
2539                 { 0x01, 0x0409 },
2540                 { 0x00, 0xf099 },
2541                 { 0x04, 0x9800 },
2542                 { 0x04, 0x9000 },
2543                 { 0x1d, 0x3d98 },
2544                 { 0x1f, 0x0002 },
2545                 { 0x0c, 0x7eb8 },
2546                 { 0x06, 0x0761 },
2547                 { 0x1f, 0x0003 },
2548                 { 0x16, 0x0f0a },
2549                 { 0x1f, 0x0000 }
2550         };
2551
2552         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2553
2554         rtl_patchphy(tp, 0x16, 1 << 0);
2555         rtl_patchphy(tp, 0x14, 1 << 5);
2556         rtl_patchphy(tp, 0x0d, 1 << 5);
2557         rtl_writephy(tp, 0x1f, 0x0000);
2558 }
2559
2560 static void rtl8168c_3_hw_phy_config(struct rtl8169_private *tp)
2561 {
2562         static const struct phy_reg phy_reg_init[] = {
2563                 { 0x1f, 0x0001 },
2564                 { 0x12, 0x2300 },
2565                 { 0x1d, 0x3d98 },
2566                 { 0x1f, 0x0002 },
2567                 { 0x0c, 0x7eb8 },
2568                 { 0x06, 0x5461 },
2569                 { 0x1f, 0x0003 },
2570                 { 0x16, 0x0f0a },
2571                 { 0x1f, 0x0000 }
2572         };
2573
2574         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2575
2576         rtl_patchphy(tp, 0x16, 1 << 0);
2577         rtl_patchphy(tp, 0x14, 1 << 5);
2578         rtl_patchphy(tp, 0x0d, 1 << 5);
2579         rtl_writephy(tp, 0x1f, 0x0000);
2580 }
2581
2582 static void rtl8168c_4_hw_phy_config(struct rtl8169_private *tp)
2583 {
2584         rtl8168c_3_hw_phy_config(tp);
2585 }
2586
2587 static void rtl8168d_1_hw_phy_config(struct rtl8169_private *tp)
2588 {
2589         static const struct phy_reg phy_reg_init_0[] = {
2590                 /* Channel Estimation */
2591                 { 0x1f, 0x0001 },
2592                 { 0x06, 0x4064 },
2593                 { 0x07, 0x2863 },
2594                 { 0x08, 0x059c },
2595                 { 0x09, 0x26b4 },
2596                 { 0x0a, 0x6a19 },
2597                 { 0x0b, 0xdcc8 },
2598                 { 0x10, 0xf06d },
2599                 { 0x14, 0x7f68 },
2600                 { 0x18, 0x7fd9 },
2601                 { 0x1c, 0xf0ff },
2602                 { 0x1d, 0x3d9c },
2603                 { 0x1f, 0x0003 },
2604                 { 0x12, 0xf49f },
2605                 { 0x13, 0x070b },
2606                 { 0x1a, 0x05ad },
2607                 { 0x14, 0x94c0 },
2608
2609                 /*
2610                  * Tx Error Issue
2611                  * Enhance line driver power
2612                  */
2613                 { 0x1f, 0x0002 },
2614                 { 0x06, 0x5561 },
2615                 { 0x1f, 0x0005 },
2616                 { 0x05, 0x8332 },
2617                 { 0x06, 0x5561 },
2618
2619                 /*
2620                  * Can not link to 1Gbps with bad cable
2621                  * Decrease SNR threshold form 21.07dB to 19.04dB
2622                  */
2623                 { 0x1f, 0x0001 },
2624                 { 0x17, 0x0cc0 },
2625
2626                 { 0x1f, 0x0000 },
2627                 { 0x0d, 0xf880 }
2628         };
2629         void __iomem *ioaddr = tp->mmio_addr;
2630
2631         rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
2632
2633         /*
2634          * Rx Error Issue
2635          * Fine Tune Switching regulator parameter
2636          */
2637         rtl_writephy(tp, 0x1f, 0x0002);
2638         rtl_w1w0_phy(tp, 0x0b, 0x0010, 0x00ef);
2639         rtl_w1w0_phy(tp, 0x0c, 0xa200, 0x5d00);
2640
2641         if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
2642                 static const struct phy_reg phy_reg_init[] = {
2643                         { 0x1f, 0x0002 },
2644                         { 0x05, 0x669a },
2645                         { 0x1f, 0x0005 },
2646                         { 0x05, 0x8330 },
2647                         { 0x06, 0x669a },
2648                         { 0x1f, 0x0002 }
2649                 };
2650                 int val;
2651
2652                 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2653
2654                 val = rtl_readphy(tp, 0x0d);
2655
2656                 if ((val & 0x00ff) != 0x006c) {
2657                         static const u32 set[] = {
2658                                 0x0065, 0x0066, 0x0067, 0x0068,
2659                                 0x0069, 0x006a, 0x006b, 0x006c
2660                         };
2661                         int i;
2662
2663                         rtl_writephy(tp, 0x1f, 0x0002);
2664
2665                         val &= 0xff00;
2666                         for (i = 0; i < ARRAY_SIZE(set); i++)
2667                                 rtl_writephy(tp, 0x0d, val | set[i]);
2668                 }
2669         } else {
2670                 static const struct phy_reg phy_reg_init[] = {
2671                         { 0x1f, 0x0002 },
2672                         { 0x05, 0x6662 },
2673                         { 0x1f, 0x0005 },
2674                         { 0x05, 0x8330 },
2675                         { 0x06, 0x6662 }
2676                 };
2677
2678                 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2679         }
2680
2681         /* RSET couple improve */
2682         rtl_writephy(tp, 0x1f, 0x0002);
2683         rtl_patchphy(tp, 0x0d, 0x0300);
2684         rtl_patchphy(tp, 0x0f, 0x0010);
2685
2686         /* Fine tune PLL performance */
2687         rtl_writephy(tp, 0x1f, 0x0002);
2688         rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2689         rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
2690
2691         rtl_writephy(tp, 0x1f, 0x0005);
2692         rtl_writephy(tp, 0x05, 0x001b);
2693
2694         rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xbf00);
2695
2696         rtl_writephy(tp, 0x1f, 0x0000);
2697 }
2698
2699 static void rtl8168d_2_hw_phy_config(struct rtl8169_private *tp)
2700 {
2701         static const struct phy_reg phy_reg_init_0[] = {
2702                 /* Channel Estimation */
2703                 { 0x1f, 0x0001 },
2704                 { 0x06, 0x4064 },
2705                 { 0x07, 0x2863 },
2706                 { 0x08, 0x059c },
2707                 { 0x09, 0x26b4 },
2708                 { 0x0a, 0x6a19 },
2709                 { 0x0b, 0xdcc8 },
2710                 { 0x10, 0xf06d },
2711                 { 0x14, 0x7f68 },
2712                 { 0x18, 0x7fd9 },
2713                 { 0x1c, 0xf0ff },
2714                 { 0x1d, 0x3d9c },
2715                 { 0x1f, 0x0003 },
2716                 { 0x12, 0xf49f },
2717                 { 0x13, 0x070b },
2718                 { 0x1a, 0x05ad },
2719                 { 0x14, 0x94c0 },
2720
2721                 /*
2722                  * Tx Error Issue
2723                  * Enhance line driver power
2724                  */
2725                 { 0x1f, 0x0002 },
2726                 { 0x06, 0x5561 },
2727                 { 0x1f, 0x0005 },
2728                 { 0x05, 0x8332 },
2729                 { 0x06, 0x5561 },
2730
2731                 /*
2732                  * Can not link to 1Gbps with bad cable
2733                  * Decrease SNR threshold form 21.07dB to 19.04dB
2734                  */
2735                 { 0x1f, 0x0001 },
2736                 { 0x17, 0x0cc0 },
2737
2738                 { 0x1f, 0x0000 },
2739                 { 0x0d, 0xf880 }
2740         };
2741         void __iomem *ioaddr = tp->mmio_addr;
2742
2743         rtl_writephy_batch(tp, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
2744
2745         if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
2746                 static const struct phy_reg phy_reg_init[] = {
2747                         { 0x1f, 0x0002 },
2748                         { 0x05, 0x669a },
2749                         { 0x1f, 0x0005 },
2750                         { 0x05, 0x8330 },
2751                         { 0x06, 0x669a },
2752
2753                         { 0x1f, 0x0002 }
2754                 };
2755                 int val;
2756
2757                 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2758
2759                 val = rtl_readphy(tp, 0x0d);
2760                 if ((val & 0x00ff) != 0x006c) {
2761                         static const u32 set[] = {
2762                                 0x0065, 0x0066, 0x0067, 0x0068,
2763                                 0x0069, 0x006a, 0x006b, 0x006c
2764                         };
2765                         int i;
2766
2767                         rtl_writephy(tp, 0x1f, 0x0002);
2768
2769                         val &= 0xff00;
2770                         for (i = 0; i < ARRAY_SIZE(set); i++)
2771                                 rtl_writephy(tp, 0x0d, val | set[i]);
2772                 }
2773         } else {
2774                 static const struct phy_reg phy_reg_init[] = {
2775                         { 0x1f, 0x0002 },
2776                         { 0x05, 0x2642 },
2777                         { 0x1f, 0x0005 },
2778                         { 0x05, 0x8330 },
2779                         { 0x06, 0x2642 }
2780                 };
2781
2782                 rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2783         }
2784
2785         /* Fine tune PLL performance */
2786         rtl_writephy(tp, 0x1f, 0x0002);
2787         rtl_w1w0_phy(tp, 0x02, 0x0100, 0x0600);
2788         rtl_w1w0_phy(tp, 0x03, 0x0000, 0xe000);
2789
2790         /* Switching regulator Slew rate */
2791         rtl_writephy(tp, 0x1f, 0x0002);
2792         rtl_patchphy(tp, 0x0f, 0x0017);
2793
2794         rtl_writephy(tp, 0x1f, 0x0005);
2795         rtl_writephy(tp, 0x05, 0x001b);
2796
2797         rtl_apply_firmware_cond(tp, MII_EXPANSION, 0xb300);
2798
2799         rtl_writephy(tp, 0x1f, 0x0000);
2800 }
2801
2802 static void rtl8168d_3_hw_phy_config(struct rtl8169_private *tp)
2803 {
2804         static const struct phy_reg phy_reg_init[] = {
2805                 { 0x1f, 0x0002 },
2806                 { 0x10, 0x0008 },
2807                 { 0x0d, 0x006c },
2808
2809                 { 0x1f, 0x0000 },
2810                 { 0x0d, 0xf880 },
2811
2812                 { 0x1f, 0x0001 },
2813                 { 0x17, 0x0cc0 },
2814
2815                 { 0x1f, 0x0001 },
2816                 { 0x0b, 0xa4d8 },
2817                 { 0x09, 0x281c },
2818                 { 0x07, 0x2883 },
2819                 { 0x0a, 0x6b35 },
2820                 { 0x1d, 0x3da4 },
2821                 { 0x1c, 0xeffd },
2822                 { 0x14, 0x7f52 },
2823                 { 0x18, 0x7fc6 },
2824                 { 0x08, 0x0601 },
2825                 { 0x06, 0x4063 },
2826                 { 0x10, 0xf074 },
2827                 { 0x1f, 0x0003 },
2828                 { 0x13, 0x0789 },
2829                 { 0x12, 0xf4bd },
2830                 { 0x1a, 0x04fd },
2831                 { 0x14, 0x84b0 },
2832                 { 0x1f, 0x0000 },
2833                 { 0x00, 0x9200 },
2834
2835                 { 0x1f, 0x0005 },
2836                 { 0x01, 0x0340 },
2837                 { 0x1f, 0x0001 },
2838                 { 0x04, 0x4000 },
2839                 { 0x03, 0x1d21 },
2840                 { 0x02, 0x0c32 },
2841                 { 0x01, 0x0200 },
2842                 { 0x00, 0x5554 },
2843                 { 0x04, 0x4800 },
2844                 { 0x04, 0x4000 },
2845                 { 0x04, 0xf000 },
2846                 { 0x03, 0xdf01 },
2847                 { 0x02, 0xdf20 },
2848                 { 0x01, 0x101a },
2849                 { 0x00, 0xa0ff },
2850                 { 0x04, 0xf800 },
2851                 { 0x04, 0xf000 },
2852                 { 0x1f, 0x0000 },
2853
2854                 { 0x1f, 0x0007 },
2855                 { 0x1e, 0x0023 },
2856                 { 0x16, 0x0000 },
2857                 { 0x1f, 0x0000 }
2858         };
2859
2860         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2861 }
2862
2863 static void rtl8168d_4_hw_phy_config(struct rtl8169_private *tp)
2864 {
2865         static const struct phy_reg phy_reg_init[] = {
2866                 { 0x1f, 0x0001 },
2867                 { 0x17, 0x0cc0 },
2868
2869                 { 0x1f, 0x0007 },
2870                 { 0x1e, 0x002d },
2871                 { 0x18, 0x0040 },
2872                 { 0x1f, 0x0000 }
2873         };
2874
2875         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2876         rtl_patchphy(tp, 0x0d, 1 << 5);
2877 }
2878
2879 static void rtl8168e_1_hw_phy_config(struct rtl8169_private *tp)
2880 {
2881         static const struct phy_reg phy_reg_init[] = {
2882                 /* Enable Delay cap */
2883                 { 0x1f, 0x0005 },
2884                 { 0x05, 0x8b80 },
2885                 { 0x06, 0xc896 },
2886                 { 0x1f, 0x0000 },
2887
2888                 /* Channel estimation fine tune */
2889                 { 0x1f, 0x0001 },
2890                 { 0x0b, 0x6c20 },
2891                 { 0x07, 0x2872 },
2892                 { 0x1c, 0xefff },
2893                 { 0x1f, 0x0003 },
2894                 { 0x14, 0x6420 },
2895                 { 0x1f, 0x0000 },
2896
2897                 /* Update PFM & 10M TX idle timer */
2898                 { 0x1f, 0x0007 },
2899                 { 0x1e, 0x002f },
2900                 { 0x15, 0x1919 },
2901                 { 0x1f, 0x0000 },
2902
2903                 { 0x1f, 0x0007 },
2904                 { 0x1e, 0x00ac },
2905                 { 0x18, 0x0006 },
2906                 { 0x1f, 0x0000 }
2907         };
2908
2909         rtl_apply_firmware(tp);
2910
2911         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2912
2913         /* DCO enable for 10M IDLE Power */
2914         rtl_writephy(tp, 0x1f, 0x0007);
2915         rtl_writephy(tp, 0x1e, 0x0023);
2916         rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2917         rtl_writephy(tp, 0x1f, 0x0000);
2918
2919         /* For impedance matching */
2920         rtl_writephy(tp, 0x1f, 0x0002);
2921         rtl_w1w0_phy(tp, 0x08, 0x8000, 0x7f00);
2922         rtl_writephy(tp, 0x1f, 0x0000);
2923
2924         /* PHY auto speed down */
2925         rtl_writephy(tp, 0x1f, 0x0007);
2926         rtl_writephy(tp, 0x1e, 0x002d);
2927         rtl_w1w0_phy(tp, 0x18, 0x0050, 0x0000);
2928         rtl_writephy(tp, 0x1f, 0x0000);
2929         rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2930
2931         rtl_writephy(tp, 0x1f, 0x0005);
2932         rtl_writephy(tp, 0x05, 0x8b86);
2933         rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
2934         rtl_writephy(tp, 0x1f, 0x0000);
2935
2936         rtl_writephy(tp, 0x1f, 0x0005);
2937         rtl_writephy(tp, 0x05, 0x8b85);
2938         rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
2939         rtl_writephy(tp, 0x1f, 0x0007);
2940         rtl_writephy(tp, 0x1e, 0x0020);
2941         rtl_w1w0_phy(tp, 0x15, 0x0000, 0x1100);
2942         rtl_writephy(tp, 0x1f, 0x0006);
2943         rtl_writephy(tp, 0x00, 0x5a00);
2944         rtl_writephy(tp, 0x1f, 0x0000);
2945         rtl_writephy(tp, 0x0d, 0x0007);
2946         rtl_writephy(tp, 0x0e, 0x003c);
2947         rtl_writephy(tp, 0x0d, 0x4007);
2948         rtl_writephy(tp, 0x0e, 0x0000);
2949         rtl_writephy(tp, 0x0d, 0x0000);
2950 }
2951
2952 static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp)
2953 {
2954         static const struct phy_reg phy_reg_init[] = {
2955                 /* Enable Delay cap */
2956                 { 0x1f, 0x0004 },
2957                 { 0x1f, 0x0007 },
2958                 { 0x1e, 0x00ac },
2959                 { 0x18, 0x0006 },
2960                 { 0x1f, 0x0002 },
2961                 { 0x1f, 0x0000 },
2962                 { 0x1f, 0x0000 },
2963
2964                 /* Channel estimation fine tune */
2965                 { 0x1f, 0x0003 },
2966                 { 0x09, 0xa20f },
2967                 { 0x1f, 0x0000 },
2968                 { 0x1f, 0x0000 },
2969
2970                 /* Green Setting */
2971                 { 0x1f, 0x0005 },
2972                 { 0x05, 0x8b5b },
2973                 { 0x06, 0x9222 },
2974                 { 0x05, 0x8b6d },
2975                 { 0x06, 0x8000 },
2976                 { 0x05, 0x8b76 },
2977                 { 0x06, 0x8000 },
2978                 { 0x1f, 0x0000 }
2979         };
2980
2981         rtl_apply_firmware(tp);
2982
2983         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
2984
2985         /* For 4-corner performance improve */
2986         rtl_writephy(tp, 0x1f, 0x0005);
2987         rtl_writephy(tp, 0x05, 0x8b80);
2988         rtl_w1w0_phy(tp, 0x17, 0x0006, 0x0000);
2989         rtl_writephy(tp, 0x1f, 0x0000);
2990
2991         /* PHY auto speed down */
2992         rtl_writephy(tp, 0x1f, 0x0004);
2993         rtl_writephy(tp, 0x1f, 0x0007);
2994         rtl_writephy(tp, 0x1e, 0x002d);
2995         rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
2996         rtl_writephy(tp, 0x1f, 0x0002);
2997         rtl_writephy(tp, 0x1f, 0x0000);
2998         rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
2999
3000         /* improve 10M EEE waveform */
3001         rtl_writephy(tp, 0x1f, 0x0005);
3002         rtl_writephy(tp, 0x05, 0x8b86);
3003         rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3004         rtl_writephy(tp, 0x1f, 0x0000);
3005
3006         /* Improve 2-pair detection performance */
3007         rtl_writephy(tp, 0x1f, 0x0005);
3008         rtl_writephy(tp, 0x05, 0x8b85);
3009         rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3010         rtl_writephy(tp, 0x1f, 0x0000);
3011
3012         /* EEE setting */
3013         rtl_w1w0_eri(tp->mmio_addr, 0x1b0, ERIAR_MASK_1111, 0x0000, 0x0003,
3014                      ERIAR_EXGMAC);
3015         rtl_writephy(tp, 0x1f, 0x0005);
3016         rtl_writephy(tp, 0x05, 0x8b85);
3017         rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3018         rtl_writephy(tp, 0x1f, 0x0004);
3019         rtl_writephy(tp, 0x1f, 0x0007);
3020         rtl_writephy(tp, 0x1e, 0x0020);
3021         rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
3022         rtl_writephy(tp, 0x1f, 0x0002);
3023         rtl_writephy(tp, 0x1f, 0x0000);
3024         rtl_writephy(tp, 0x0d, 0x0007);
3025         rtl_writephy(tp, 0x0e, 0x003c);
3026         rtl_writephy(tp, 0x0d, 0x4007);
3027         rtl_writephy(tp, 0x0e, 0x0000);
3028         rtl_writephy(tp, 0x0d, 0x0000);
3029
3030         /* Green feature */
3031         rtl_writephy(tp, 0x1f, 0x0003);
3032         rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3033         rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3034         rtl_writephy(tp, 0x1f, 0x0000);
3035 }
3036
3037 static void rtl8168f_hw_phy_config(struct rtl8169_private *tp)
3038 {
3039         /* For 4-corner performance improve */
3040         rtl_writephy(tp, 0x1f, 0x0005);
3041         rtl_writephy(tp, 0x05, 0x8b80);
3042         rtl_w1w0_phy(tp, 0x06, 0x0006, 0x0000);
3043         rtl_writephy(tp, 0x1f, 0x0000);
3044
3045         /* PHY auto speed down */
3046         rtl_writephy(tp, 0x1f, 0x0007);
3047         rtl_writephy(tp, 0x1e, 0x002d);
3048         rtl_w1w0_phy(tp, 0x18, 0x0010, 0x0000);
3049         rtl_writephy(tp, 0x1f, 0x0000);
3050         rtl_w1w0_phy(tp, 0x14, 0x8000, 0x0000);
3051
3052         /* Improve 10M EEE waveform */
3053         rtl_writephy(tp, 0x1f, 0x0005);
3054         rtl_writephy(tp, 0x05, 0x8b86);
3055         rtl_w1w0_phy(tp, 0x06, 0x0001, 0x0000);
3056         rtl_writephy(tp, 0x1f, 0x0000);
3057 }
3058
3059 static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp)
3060 {
3061         static const struct phy_reg phy_reg_init[] = {
3062                 /* Channel estimation fine tune */
3063                 { 0x1f, 0x0003 },
3064                 { 0x09, 0xa20f },
3065                 { 0x1f, 0x0000 },
3066
3067                 /* Modify green table for giga & fnet */
3068                 { 0x1f, 0x0005 },
3069                 { 0x05, 0x8b55 },
3070                 { 0x06, 0x0000 },
3071                 { 0x05, 0x8b5e },
3072                 { 0x06, 0x0000 },
3073                 { 0x05, 0x8b67 },
3074                 { 0x06, 0x0000 },
3075                 { 0x05, 0x8b70 },
3076                 { 0x06, 0x0000 },
3077                 { 0x1f, 0x0000 },
3078                 { 0x1f, 0x0007 },
3079                 { 0x1e, 0x0078 },
3080                 { 0x17, 0x0000 },
3081                 { 0x19, 0x00fb },
3082                 { 0x1f, 0x0000 },
3083
3084                 /* Modify green table for 10M */
3085                 { 0x1f, 0x0005 },
3086                 { 0x05, 0x8b79 },
3087                 { 0x06, 0xaa00 },
3088                 { 0x1f, 0x0000 },
3089
3090                 /* Disable hiimpedance detection (RTCT) */
3091                 { 0x1f, 0x0003 },
3092                 { 0x01, 0x328a },
3093                 { 0x1f, 0x0000 }
3094         };
3095
3096         rtl_apply_firmware(tp);
3097
3098         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3099
3100         rtl8168f_hw_phy_config(tp);
3101
3102         /* Improve 2-pair detection performance */
3103         rtl_writephy(tp, 0x1f, 0x0005);
3104         rtl_writephy(tp, 0x05, 0x8b85);
3105         rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3106         rtl_writephy(tp, 0x1f, 0x0000);
3107 }
3108
3109 static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp)
3110 {
3111         rtl_apply_firmware(tp);
3112
3113         rtl8168f_hw_phy_config(tp);
3114 }
3115
3116 static void rtl8411_hw_phy_config(struct rtl8169_private *tp)
3117 {
3118         void __iomem *ioaddr = tp->mmio_addr;
3119         static const struct phy_reg phy_reg_init[] = {
3120                 /* Channel estimation fine tune */
3121                 { 0x1f, 0x0003 },
3122                 { 0x09, 0xa20f },
3123                 { 0x1f, 0x0000 },
3124
3125                 /* Modify green table for giga & fnet */
3126                 { 0x1f, 0x0005 },
3127                 { 0x05, 0x8b55 },
3128                 { 0x06, 0x0000 },
3129                 { 0x05, 0x8b5e },
3130                 { 0x06, 0x0000 },
3131                 { 0x05, 0x8b67 },
3132                 { 0x06, 0x0000 },
3133                 { 0x05, 0x8b70 },
3134                 { 0x06, 0x0000 },
3135                 { 0x1f, 0x0000 },
3136                 { 0x1f, 0x0007 },
3137                 { 0x1e, 0x0078 },
3138                 { 0x17, 0x0000 },
3139                 { 0x19, 0x00aa },
3140                 { 0x1f, 0x0000 },
3141
3142                 /* Modify green table for 10M */
3143                 { 0x1f, 0x0005 },
3144                 { 0x05, 0x8b79 },
3145                 { 0x06, 0xaa00 },
3146                 { 0x1f, 0x0000 },
3147
3148                 /* Disable hiimpedance detection (RTCT) */
3149                 { 0x1f, 0x0003 },
3150                 { 0x01, 0x328a },
3151                 { 0x1f, 0x0000 }
3152         };
3153
3154
3155         rtl_apply_firmware(tp);
3156
3157         rtl8168f_hw_phy_config(tp);
3158
3159         /* Improve 2-pair detection performance */
3160         rtl_writephy(tp, 0x1f, 0x0005);
3161         rtl_writephy(tp, 0x05, 0x8b85);
3162         rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000);
3163         rtl_writephy(tp, 0x1f, 0x0000);
3164
3165         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3166
3167         /* Modify green table for giga */
3168         rtl_writephy(tp, 0x1f, 0x0005);
3169         rtl_writephy(tp, 0x05, 0x8b54);
3170         rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3171         rtl_writephy(tp, 0x05, 0x8b5d);
3172         rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0800);
3173         rtl_writephy(tp, 0x05, 0x8a7c);
3174         rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3175         rtl_writephy(tp, 0x05, 0x8a7f);
3176         rtl_w1w0_phy(tp, 0x06, 0x0100, 0x0000);
3177         rtl_writephy(tp, 0x05, 0x8a82);
3178         rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3179         rtl_writephy(tp, 0x05, 0x8a85);
3180         rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3181         rtl_writephy(tp, 0x05, 0x8a88);
3182         rtl_w1w0_phy(tp, 0x06, 0x0000, 0x0100);
3183         rtl_writephy(tp, 0x1f, 0x0000);
3184
3185         /* uc same-seed solution */
3186         rtl_writephy(tp, 0x1f, 0x0005);
3187         rtl_writephy(tp, 0x05, 0x8b85);
3188         rtl_w1w0_phy(tp, 0x06, 0x8000, 0x0000);
3189         rtl_writephy(tp, 0x1f, 0x0000);
3190
3191         /* eee setting */
3192         rtl_w1w0_eri(ioaddr, 0x1b0, ERIAR_MASK_0001, 0x00, 0x03, ERIAR_EXGMAC);
3193         rtl_writephy(tp, 0x1f, 0x0005);
3194         rtl_writephy(tp, 0x05, 0x8b85);
3195         rtl_w1w0_phy(tp, 0x06, 0x0000, 0x2000);
3196         rtl_writephy(tp, 0x1f, 0x0004);
3197         rtl_writephy(tp, 0x1f, 0x0007);
3198         rtl_writephy(tp, 0x1e, 0x0020);
3199         rtl_w1w0_phy(tp, 0x15, 0x0000, 0x0100);
3200         rtl_writephy(tp, 0x1f, 0x0000);
3201         rtl_writephy(tp, 0x0d, 0x0007);
3202         rtl_writephy(tp, 0x0e, 0x003c);
3203         rtl_writephy(tp, 0x0d, 0x4007);
3204         rtl_writephy(tp, 0x0e, 0x0000);
3205         rtl_writephy(tp, 0x0d, 0x0000);
3206
3207         /* Green feature */
3208         rtl_writephy(tp, 0x1f, 0x0003);
3209         rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001);
3210         rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400);
3211         rtl_writephy(tp, 0x1f, 0x0000);
3212 }
3213
3214 static void rtl8102e_hw_phy_config(struct rtl8169_private *tp)
3215 {
3216         static const struct phy_reg phy_reg_init[] = {
3217                 { 0x1f, 0x0003 },
3218                 { 0x08, 0x441d },
3219                 { 0x01, 0x9100 },
3220                 { 0x1f, 0x0000 }
3221         };
3222
3223         rtl_writephy(tp, 0x1f, 0x0000);
3224         rtl_patchphy(tp, 0x11, 1 << 12);
3225         rtl_patchphy(tp, 0x19, 1 << 13);
3226         rtl_patchphy(tp, 0x10, 1 << 15);
3227
3228         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3229 }
3230
3231 static void rtl8105e_hw_phy_config(struct rtl8169_private *tp)
3232 {
3233         static const struct phy_reg phy_reg_init[] = {
3234                 { 0x1f, 0x0005 },
3235                 { 0x1a, 0x0000 },
3236                 { 0x1f, 0x0000 },
3237
3238                 { 0x1f, 0x0004 },
3239                 { 0x1c, 0x0000 },
3240                 { 0x1f, 0x0000 },
3241
3242                 { 0x1f, 0x0001 },
3243                 { 0x15, 0x7701 },
3244                 { 0x1f, 0x0000 }
3245         };
3246
3247         /* Disable ALDPS before ram code */
3248         rtl_writephy(tp, 0x1f, 0x0000);
3249         rtl_writephy(tp, 0x18, 0x0310);
3250         msleep(100);
3251
3252         rtl_apply_firmware(tp);
3253
3254         rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init));
3255 }
3256
3257 static void rtl8402_hw_phy_config(struct rtl8169_private *tp)
3258 {
3259         void __iomem *ioaddr = tp->mmio_addr;
3260
3261         /* Disable ALDPS before setting firmware */
3262         rtl_writephy(tp, 0x1f, 0x0000);
3263         rtl_writephy(tp, 0x18, 0x0310);
3264         msleep(20);
3265
3266         rtl_apply_firmware(tp);
3267
3268         /* EEE setting */
3269         rtl_eri_write(ioaddr, 0x1b0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
3270         rtl_writephy(tp, 0x1f, 0x0004);
3271         rtl_writephy(tp, 0x10, 0x401f);
3272         rtl_writephy(tp, 0x19, 0x7030);
3273         rtl_writephy(tp, 0x1f, 0x0000);
3274 }
3275
3276 static void rtl_hw_phy_config(struct net_device *dev)
3277 {
3278         struct rtl8169_private *tp = netdev_priv(dev);
3279
3280         rtl8169_print_mac_version(tp);
3281
3282         switch (tp->mac_version) {
3283         case RTL_GIGA_MAC_VER_01:
3284                 break;
3285         case RTL_GIGA_MAC_VER_02:
3286         case RTL_GIGA_MAC_VER_03:
3287                 rtl8169s_hw_phy_config(tp);
3288                 break;
3289         case RTL_GIGA_MAC_VER_04:
3290                 rtl8169sb_hw_phy_config(tp);
3291                 break;
3292         case RTL_GIGA_MAC_VER_05:
3293                 rtl8169scd_hw_phy_config(tp);
3294                 break;
3295         case RTL_GIGA_MAC_VER_06:
3296                 rtl8169sce_hw_phy_config(tp);
3297                 break;
3298         case RTL_GIGA_MAC_VER_07:
3299         case RTL_GIGA_MAC_VER_08:
3300         case RTL_GIGA_MAC_VER_09:
3301                 rtl8102e_hw_phy_config(tp);
3302                 break;
3303         case RTL_GIGA_MAC_VER_11:
3304                 rtl8168bb_hw_phy_config(tp);
3305                 break;
3306         case RTL_GIGA_MAC_VER_12:
3307                 rtl8168bef_hw_phy_config(tp);
3308                 break;
3309         case RTL_GIGA_MAC_VER_17:
3310                 rtl8168bef_hw_phy_config(tp);
3311                 break;
3312         case RTL_GIGA_MAC_VER_18:
3313                 rtl8168cp_1_hw_phy_config(tp);
3314                 break;
3315         case RTL_GIGA_MAC_VER_19:
3316                 rtl8168c_1_hw_phy_config(tp);
3317                 break;
3318         case RTL_GIGA_MAC_VER_20:
3319                 rtl8168c_2_hw_phy_config(tp);
3320                 break;
3321         case RTL_GIGA_MAC_VER_21:
3322                 rtl8168c_3_hw_phy_config(tp);
3323                 break;
3324         case RTL_GIGA_MAC_VER_22:
3325                 rtl8168c_4_hw_phy_config(tp);
3326                 break;
3327         case RTL_GIGA_MAC_VER_23:
3328         case RTL_GIGA_MAC_VER_24:
3329                 rtl8168cp_2_hw_phy_config(tp);
3330                 break;
3331         case RTL_GIGA_MAC_VER_25:
3332                 rtl8168d_1_hw_phy_config(tp);
3333                 break;
3334         case RTL_GIGA_MAC_VER_26:
3335                 rtl8168d_2_hw_phy_config(tp);
3336                 break;
3337         case RTL_GIGA_MAC_VER_27:
3338                 rtl8168d_3_hw_phy_config(tp);
3339                 break;
3340         case RTL_GIGA_MAC_VER_28:
3341                 rtl8168d_4_hw_phy_config(tp);
3342                 break;
3343         case RTL_GIGA_MAC_VER_29:
3344         case RTL_GIGA_MAC_VER_30:
3345                 rtl8105e_hw_phy_config(tp);
3346                 break;
3347         case RTL_GIGA_MAC_VER_31:
3348                 /* None. */
3349                 break;
3350         case RTL_GIGA_MAC_VER_32:
3351         case RTL_GIGA_MAC_VER_33:
3352                 rtl8168e_1_hw_phy_config(tp);
3353                 break;
3354         case RTL_GIGA_MAC_VER_34:
3355                 rtl8168e_2_hw_phy_config(tp);
3356                 break;
3357         case RTL_GIGA_MAC_VER_35:
3358                 rtl8168f_1_hw_phy_config(tp);
3359                 break;
3360         case RTL_GIGA_MAC_VER_36:
3361                 rtl8168f_2_hw_phy_config(tp);
3362                 break;
3363
3364         case RTL_GIGA_MAC_VER_37:
3365                 rtl8402_hw_phy_config(tp);
3366                 break;
3367
3368         case RTL_GIGA_MAC_VER_38:
3369                 rtl8411_hw_phy_config(tp);
3370                 break;
3371
3372         default:
3373                 break;
3374         }
3375 }
3376
3377 static void rtl_phy_work(struct rtl8169_private *tp)
3378 {
3379         struct timer_list *timer = &tp->timer;
3380         void __iomem *ioaddr = tp->mmio_addr;
3381         unsigned long timeout = RTL8169_PHY_TIMEOUT;
3382
3383         assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
3384
3385         if (tp->phy_reset_pending(tp)) {
3386                 /*
3387                  * A busy loop could burn quite a few cycles on nowadays CPU.
3388                  * Let's delay the execution of the timer for a few ticks.
3389                  */
3390                 timeout = HZ/10;
3391                 goto out_mod_timer;
3392         }
3393
3394         if (tp->link_ok(ioaddr))
3395                 return;
3396
3397         netif_warn(tp, link, tp->dev, "PHY reset until link up\n");
3398
3399         tp->phy_reset_enable(tp);
3400
3401 out_mod_timer:
3402         mod_timer(timer, jiffies + timeout);
3403 }
3404
3405 static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
3406 {
3407         if (!test_and_set_bit(flag, tp->wk.flags))
3408                 schedule_work(&tp->wk.work);
3409 }
3410
3411 static void rtl8169_phy_timer(unsigned long __opaque)
3412 {
3413         struct net_device *dev = (struct net_device *)__opaque;
3414         struct rtl8169_private *tp = netdev_priv(dev);
3415
3416         rtl_schedule_task(tp, RTL_FLAG_TASK_PHY_PENDING);
3417 }
3418
3419 static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
3420                                   void __iomem *ioaddr)
3421 {
3422         iounmap(ioaddr);
3423         pci_release_regions(pdev);
3424         pci_clear_mwi(pdev);
3425         pci_disable_device(pdev);
3426         free_netdev(dev);
3427 }
3428
3429 static void rtl8169_phy_reset(struct net_device *dev,
3430                               struct rtl8169_private *tp)
3431 {
3432         unsigned int i;
3433
3434         tp->phy_reset_enable(tp);
3435         for (i = 0; i < 100; i++) {
3436                 if (!tp->phy_reset_pending(tp))
3437                         return;
3438                 msleep(1);
3439         }
3440         netif_err(tp, link, dev, "PHY reset failed\n");
3441 }
3442
3443 static bool rtl_tbi_enabled(struct rtl8169_private *tp)
3444 {
3445         void __iomem *ioaddr = tp->mmio_addr;
3446
3447         return (tp->mac_version == RTL_GIGA_MAC_VER_01) &&
3448             (RTL_R8(PHYstatus) & TBI_Enable);
3449 }
3450
3451 static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
3452 {
3453         void __iomem *ioaddr = tp->mmio_addr;
3454
3455         rtl_hw_phy_config(dev);
3456
3457         if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
3458                 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3459                 RTL_W8(0x82, 0x01);
3460         }
3461
3462         pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
3463
3464         if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
3465                 pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
3466
3467         if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
3468                 dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
3469                 RTL_W8(0x82, 0x01);
3470                 dprintk("Set PHY Reg 0x0bh = 0x00h\n");
3471                 rtl_writephy(tp, 0x0b, 0x0000); //w 0x0b 15 0 0
3472         }
3473
3474         rtl8169_phy_reset(dev, tp);
3475
3476         rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL,
3477                           ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
3478                           ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
3479                           (tp->mii.supports_gmii ?
3480                            ADVERTISED_1000baseT_Half |
3481                            ADVERTISED_1000baseT_Full : 0));
3482
3483         if (rtl_tbi_enabled(tp))
3484                 netif_info(tp, link, dev, "TBI auto-negotiating\n");
3485 }
3486
3487 static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
3488 {
3489         void __iomem *ioaddr = tp->mmio_addr;
3490         u32 high;
3491         u32 low;
3492
3493         low  = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
3494         high = addr[4] | (addr[5] << 8);
3495
3496         rtl_lock_work(tp);
3497
3498         RTL_W8(Cfg9346, Cfg9346_Unlock);
3499
3500         RTL_W32(MAC4, high);
3501         RTL_R32(MAC4);
3502
3503         RTL_W32(MAC0, low);
3504         RTL_R32(MAC0);
3505
3506         if (tp->mac_version == RTL_GIGA_MAC_VER_34) {
3507                 const struct exgmac_reg e[] = {
3508                         { .addr = 0xe0, ERIAR_MASK_1111, .val = low },
3509                         { .addr = 0xe4, ERIAR_MASK_1111, .val = high },
3510                         { .addr = 0xf0, ERIAR_MASK_1111, .val = low << 16 },
3511                         { .addr = 0xf4, ERIAR_MASK_1111, .val = high << 16 |
3512                                                                 low  >> 16 },
3513                 };
3514
3515                 rtl_write_exgmac_batch(ioaddr, e, ARRAY_SIZE(e));
3516         }
3517
3518         RTL_W8(Cfg9346, Cfg9346_Lock);
3519
3520         rtl_unlock_work(tp);
3521 }
3522
3523 static int rtl_set_mac_address(struct net_device *dev, void *p)
3524 {
3525         struct rtl8169_private *tp = netdev_priv(dev);
3526         struct sockaddr *addr = p;
3527
3528         if (!is_valid_ether_addr(addr->sa_data))
3529                 return -EADDRNOTAVAIL;
3530
3531         memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3532
3533         rtl_rar_set(tp, dev->dev_addr);
3534
3535         return 0;
3536 }
3537
3538 static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
3539 {
3540         struct rtl8169_private *tp = netdev_priv(dev);
3541         struct mii_ioctl_data *data = if_mii(ifr);
3542
3543         return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
3544 }
3545
3546 static int rtl_xmii_ioctl(struct rtl8169_private *tp,
3547                           struct mii_ioctl_data *data, int cmd)
3548 {
3549         switch (cmd) {
3550         case SIOCGMIIPHY:
3551                 data->phy_id = 32; /* Internal PHY */
3552                 return 0;
3553
3554         case SIOCGMIIREG:
3555                 data->val_out = rtl_readphy(tp, data->reg_num & 0x1f);
3556                 return 0;
3557
3558         case SIOCSMIIREG:
3559                 rtl_writephy(tp, data->reg_num & 0x1f, data->val_in);
3560                 return 0;
3561         }
3562         return -EOPNOTSUPP;
3563 }
3564
3565 static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
3566 {
3567         return -EOPNOTSUPP;
3568 }
3569
3570 static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
3571 {
3572         if (tp->features & RTL_FEATURE_MSI) {
3573                 pci_disable_msi(pdev);
3574                 tp->features &= ~RTL_FEATURE_MSI;
3575         }
3576 }
3577
3578 static void __devinit rtl_init_mdio_ops(struct rtl8169_private *tp)
3579 {
3580         struct mdio_ops *ops = &tp->mdio_ops;
3581
3582         switch (tp->mac_version) {
3583         case RTL_GIGA_MAC_VER_27:
3584                 ops->write      = r8168dp_1_mdio_write;
3585                 ops->read       = r8168dp_1_mdio_read;
3586                 break;
3587         case RTL_GIGA_MAC_VER_28:
3588         case RTL_GIGA_MAC_VER_31:
3589                 ops->write      = r8168dp_2_mdio_write;
3590                 ops->read       = r8168dp_2_mdio_read;
3591                 break;
3592         default:
3593                 ops->write      = r8169_mdio_write;
3594                 ops->read       = r8169_mdio_read;
3595                 break;
3596         }
3597 }
3598
3599 static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
3600 {
3601         void __iomem *ioaddr = tp->mmio_addr;
3602
3603         switch (tp->mac_version) {
3604         case RTL_GIGA_MAC_VER_29:
3605         case RTL_GIGA_MAC_VER_30:
3606         case RTL_GIGA_MAC_VER_32:
3607         case RTL_GIGA_MAC_VER_33:
3608         case RTL_GIGA_MAC_VER_34:
3609         case RTL_GIGA_MAC_VER_37:
3610         case RTL_GIGA_MAC_VER_38:
3611                 RTL_W32(RxConfig, RTL_R32(RxConfig) |
3612                         AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
3613                 break;
3614         default:
3615                 break;
3616         }
3617 }
3618
3619 static bool rtl_wol_pll_power_down(struct rtl8169_private *tp)
3620 {
3621         if (!(__rtl8169_get_wol(tp) & WAKE_ANY))
3622                 return false;
3623
3624         rtl_writephy(tp, 0x1f, 0x0000);
3625         rtl_writephy(tp, MII_BMCR, 0x0000);
3626
3627         rtl_wol_suspend_quirk(tp);
3628
3629         return true;
3630 }
3631
3632 static void r810x_phy_power_down(struct rtl8169_private *tp)
3633 {
3634         rtl_writephy(tp, 0x1f, 0x0000);
3635         rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3636 }
3637
3638 static void r810x_phy_power_up(struct rtl8169_private *tp)
3639 {
3640         rtl_writephy(tp, 0x1f, 0x0000);
3641         rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3642 }
3643
3644 static void r810x_pll_power_down(struct rtl8169_private *tp)
3645 {
3646         void __iomem *ioaddr = tp->mmio_addr;
3647
3648         if (rtl_wol_pll_power_down(tp))
3649                 return;
3650
3651         r810x_phy_power_down(tp);
3652
3653         switch (tp->mac_version) {
3654         case RTL_GIGA_MAC_VER_07:
3655         case RTL_GIGA_MAC_VER_08:
3656         case RTL_GIGA_MAC_VER_09:
3657         case RTL_GIGA_MAC_VER_10:
3658         case RTL_GIGA_MAC_VER_13:
3659         case RTL_GIGA_MAC_VER_16:
3660                 break;
3661         default:
3662                 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3663                 break;
3664         }
3665 }
3666
3667 static void r810x_pll_power_up(struct rtl8169_private *tp)
3668 {
3669         void __iomem *ioaddr = tp->mmio_addr;
3670
3671         r810x_phy_power_up(tp);
3672
3673         switch (tp->mac_version) {
3674         case RTL_GIGA_MAC_VER_07:
3675         case RTL_GIGA_MAC_VER_08:
3676         case RTL_GIGA_MAC_VER_09:
3677         case RTL_GIGA_MAC_VER_10:
3678         case RTL_GIGA_MAC_VER_13:
3679         case RTL_GIGA_MAC_VER_16:
3680                 break;
3681         default:
3682                 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3683                 break;
3684         }
3685 }
3686
3687 static void r8168_phy_power_up(struct rtl8169_private *tp)
3688 {
3689         rtl_writephy(tp, 0x1f, 0x0000);
3690         switch (tp->mac_version) {
3691         case RTL_GIGA_MAC_VER_11:
3692         case RTL_GIGA_MAC_VER_12:
3693         case RTL_GIGA_MAC_VER_17:
3694         case RTL_GIGA_MAC_VER_18:
3695         case RTL_GIGA_MAC_VER_19:
3696         case RTL_GIGA_MAC_VER_20:
3697         case RTL_GIGA_MAC_VER_21:
3698         case RTL_GIGA_MAC_VER_22:
3699         case RTL_GIGA_MAC_VER_23:
3700         case RTL_GIGA_MAC_VER_24:
3701         case RTL_GIGA_MAC_VER_25:
3702         case RTL_GIGA_MAC_VER_26:
3703         case RTL_GIGA_MAC_VER_27:
3704         case RTL_GIGA_MAC_VER_28:
3705         case RTL_GIGA_MAC_VER_31:
3706                 rtl_writephy(tp, 0x0e, 0x0000);
3707                 break;
3708         default:
3709                 break;
3710         }
3711         rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE);
3712 }
3713
3714 static void r8168_phy_power_down(struct rtl8169_private *tp)
3715 {
3716         rtl_writephy(tp, 0x1f, 0x0000);
3717         switch (tp->mac_version) {
3718         case RTL_GIGA_MAC_VER_32:
3719         case RTL_GIGA_MAC_VER_33:
3720                 rtl_writephy(tp, MII_BMCR, BMCR_ANENABLE | BMCR_PDOWN);
3721                 break;
3722
3723         case RTL_GIGA_MAC_VER_11:
3724         case RTL_GIGA_MAC_VER_12:
3725         case RTL_GIGA_MAC_VER_17:
3726         case RTL_GIGA_MAC_VER_18:
3727         case RTL_GIGA_MAC_VER_19:
3728         case RTL_GIGA_MAC_VER_20:
3729         case RTL_GIGA_MAC_VER_21:
3730         case RTL_GIGA_MAC_VER_22:
3731         case RTL_GIGA_MAC_VER_23:
3732         case RTL_GIGA_MAC_VER_24:
3733         case RTL_GIGA_MAC_VER_25:
3734         case RTL_GIGA_MAC_VER_26:
3735         case RTL_GIGA_MAC_VER_27:
3736         case RTL_GIGA_MAC_VER_28:
3737         case RTL_GIGA_MAC_VER_31:
3738                 rtl_writephy(tp, 0x0e, 0x0200);
3739         default:
3740                 rtl_writephy(tp, MII_BMCR, BMCR_PDOWN);
3741                 break;
3742         }
3743 }
3744
3745 static void r8168_pll_power_down(struct rtl8169_private *tp)
3746 {
3747         void __iomem *ioaddr = tp->mmio_addr;
3748
3749         if ((tp->mac_version == RTL_GIGA_MAC_VER_27 ||
3750              tp->mac_version == RTL_GIGA_MAC_VER_28 ||
3751              tp->mac_version == RTL_GIGA_MAC_VER_31) &&
3752             r8168dp_check_dash(tp)) {
3753                 return;
3754         }
3755
3756         if ((tp->mac_version == RTL_GIGA_MAC_VER_23 ||
3757              tp->mac_version == RTL_GIGA_MAC_VER_24) &&
3758             (RTL_R16(CPlusCmd) & ASF)) {
3759                 return;
3760         }
3761
3762         if (tp->mac_version == RTL_GIGA_MAC_VER_32 ||
3763             tp->mac_version == RTL_GIGA_MAC_VER_33)
3764                 rtl_ephy_write(ioaddr, 0x19, 0xff64);
3765
3766         if (rtl_wol_pll_power_down(tp))
3767                 return;
3768
3769         r8168_phy_power_down(tp);
3770
3771         switch (tp->mac_version) {
3772         case RTL_GIGA_MAC_VER_25:
3773         case RTL_GIGA_MAC_VER_26:
3774         case RTL_GIGA_MAC_VER_27:
3775         case RTL_GIGA_MAC_VER_28:
3776         case RTL_GIGA_MAC_VER_31:
3777         case RTL_GIGA_MAC_VER_32:
3778         case RTL_GIGA_MAC_VER_33:
3779                 RTL_W8(PMCH, RTL_R8(PMCH) & ~0x80);
3780                 break;
3781         }
3782 }
3783
3784 static void r8168_pll_power_up(struct rtl8169_private *tp)
3785 {
3786         void __iomem *ioaddr = tp->mmio_addr;
3787
3788         switch (tp->mac_version) {
3789         case RTL_GIGA_MAC_VER_25:
3790         case RTL_GIGA_MAC_VER_26:
3791         case RTL_GIGA_MAC_VER_27:
3792         case RTL_GIGA_MAC_VER_28:
3793         case RTL_GIGA_MAC_VER_31:
3794         case RTL_GIGA_MAC_VER_32:
3795         case RTL_GIGA_MAC_VER_33:
3796                 RTL_W8(PMCH, RTL_R8(PMCH) | 0x80);
3797                 break;
3798         }
3799
3800         r8168_phy_power_up(tp);
3801 }
3802
3803 static void rtl_generic_op(struct rtl8169_private *tp,
3804                            void (*op)(struct rtl8169_private *))
3805 {
3806         if (op)
3807                 op(tp);
3808 }
3809
3810 static void rtl_pll_power_down(struct rtl8169_private *tp)
3811 {
3812         rtl_generic_op(tp, tp->pll_power_ops.down);
3813 }
3814
3815 static void rtl_pll_power_up(struct rtl8169_private *tp)
3816 {
3817         rtl_generic_op(tp, tp->pll_power_ops.up);
3818 }
3819
3820 static void __devinit rtl_init_pll_power_ops(struct rtl8169_private *tp)
3821 {
3822         struct pll_power_ops *ops = &tp->pll_power_ops;
3823
3824         switch (tp->mac_version) {
3825         case RTL_GIGA_MAC_VER_07:
3826         case RTL_GIGA_MAC_VER_08:
3827         case RTL_GIGA_MAC_VER_09:
3828         case RTL_GIGA_MAC_VER_10:
3829         case RTL_GIGA_MAC_VER_16:
3830         case RTL_GIGA_MAC_VER_29:
3831         case RTL_GIGA_MAC_VER_30:
3832         case RTL_GIGA_MAC_VER_37:
3833                 ops->down       = r810x_pll_power_down;
3834                 ops->up         = r810x_pll_power_up;
3835                 break;
3836
3837         case RTL_GIGA_MAC_VER_11:
3838         case RTL_GIGA_MAC_VER_12:
3839         case RTL_GIGA_MAC_VER_17:
3840         case RTL_GIGA_MAC_VER_18:
3841         case RTL_GIGA_MAC_VER_19:
3842         case RTL_GIGA_MAC_VER_20:
3843         case RTL_GIGA_MAC_VER_21:
3844         case RTL_GIGA_MAC_VER_22:
3845         case RTL_GIGA_MAC_VER_23:
3846         case RTL_GIGA_MAC_VER_24:
3847         case RTL_GIGA_MAC_VER_25:
3848         case RTL_GIGA_MAC_VER_26:
3849         case RTL_GIGA_MAC_VER_27:
3850         case RTL_GIGA_MAC_VER_28:
3851         case RTL_GIGA_MAC_VER_31:
3852         case RTL_GIGA_MAC_VER_32:
3853         case RTL_GIGA_MAC_VER_33:
3854         case RTL_GIGA_MAC_VER_34:
3855         case RTL_GIGA_MAC_VER_35:
3856         case RTL_GIGA_MAC_VER_36:
3857         case RTL_GIGA_MAC_VER_38:
3858                 ops->down       = r8168_pll_power_down;
3859                 ops->up         = r8168_pll_power_up;
3860                 break;
3861
3862         default:
3863                 ops->down       = NULL;
3864                 ops->up         = NULL;
3865                 break;
3866         }
3867 }
3868
3869 static void rtl_init_rxcfg(struct rtl8169_private *tp)
3870 {
3871         void __iomem *ioaddr = tp->mmio_addr;
3872
3873         switch (tp->mac_version) {
3874         case RTL_GIGA_MAC_VER_01:
3875         case RTL_GIGA_MAC_VER_02:
3876         case RTL_GIGA_MAC_VER_03:
3877         case RTL_GIGA_MAC_VER_04:
3878         case RTL_GIGA_MAC_VER_05:
3879         case RTL_GIGA_MAC_VER_06:
3880         case RTL_GIGA_MAC_VER_10:
3881         case RTL_GIGA_MAC_VER_11:
3882         case RTL_GIGA_MAC_VER_12:
3883         case RTL_GIGA_MAC_VER_13:
3884         case RTL_GIGA_MAC_VER_14:
3885         case RTL_GIGA_MAC_VER_15:
3886         case RTL_GIGA_MAC_VER_16:
3887         case RTL_GIGA_MAC_VER_17:
3888                 RTL_W32(RxConfig, RX_FIFO_THRESH | RX_DMA_BURST);
3889                 break;
3890         case RTL_GIGA_MAC_VER_18:
3891         case RTL_GIGA_MAC_VER_19:
3892         case RTL_GIGA_MAC_VER_20:
3893         case RTL_GIGA_MAC_VER_21:
3894         case RTL_GIGA_MAC_VER_22:
3895         case RTL_GIGA_MAC_VER_23:
3896         case RTL_GIGA_MAC_VER_24:
3897                 RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST);
3898                 break;
3899         default:
3900                 RTL_W32(RxConfig, RX128_INT_EN | RX_DMA_BURST);
3901                 break;
3902         }
3903 }
3904
3905 static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
3906 {
3907         tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
3908 }
3909
3910 static void rtl_hw_jumbo_enable(struct rtl8169_private *tp)
3911 {
3912         void __iomem *ioaddr = tp->mmio_addr;
3913
3914         RTL_W8(Cfg9346, Cfg9346_Unlock);
3915         rtl_generic_op(tp, tp->jumbo_ops.enable);
3916         RTL_W8(Cfg9346, Cfg9346_Lock);
3917 }
3918
3919 static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
3920 {
3921         void __iomem *ioaddr = tp->mmio_addr;
3922
3923         RTL_W8(Cfg9346, Cfg9346_Unlock);
3924         rtl_generic_op(tp, tp->jumbo_ops.disable);
3925         RTL_W8(Cfg9346, Cfg9346_Lock);
3926 }
3927
3928 static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp)
3929 {
3930         void __iomem *ioaddr = tp->mmio_addr;
3931
3932         RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3933         RTL_W8(Config4, RTL_R8(Config4) | Jumbo_En1);
3934         rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
3935 }
3936
3937 static void r8168c_hw_jumbo_disable(struct rtl8169_private *tp)
3938 {
3939         void __iomem *ioaddr = tp->mmio_addr;
3940
3941         RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3942         RTL_W8(Config4, RTL_R8(Config4) & ~Jumbo_En1);
3943         rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
3944 }
3945
3946 static void r8168dp_hw_jumbo_enable(struct rtl8169_private *tp)
3947 {
3948         void __iomem *ioaddr = tp->mmio_addr;
3949
3950         RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3951 }
3952
3953 static void r8168dp_hw_jumbo_disable(struct rtl8169_private *tp)
3954 {
3955         void __iomem *ioaddr = tp->mmio_addr;
3956
3957         RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3958 }
3959
3960 static void r8168e_hw_jumbo_enable(struct rtl8169_private *tp)
3961 {
3962         void __iomem *ioaddr = tp->mmio_addr;
3963
3964         RTL_W8(MaxTxPacketSize, 0x3f);
3965         RTL_W8(Config3, RTL_R8(Config3) | Jumbo_En0);
3966         RTL_W8(Config4, RTL_R8(Config4) | 0x01);
3967         rtl_tx_performance_tweak(tp->pci_dev, 0x2 << MAX_READ_REQUEST_SHIFT);
3968 }
3969
3970 static void r8168e_hw_jumbo_disable(struct rtl8169_private *tp)
3971 {
3972         void __iomem *ioaddr = tp->mmio_addr;
3973
3974         RTL_W8(MaxTxPacketSize, 0x0c);
3975         RTL_W8(Config3, RTL_R8(Config3) & ~Jumbo_En0);
3976         RTL_W8(Config4, RTL_R8(Config4) & ~0x01);
3977         rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
3978 }
3979
3980 static void r8168b_0_hw_jumbo_enable(struct rtl8169_private *tp)
3981 {
3982         rtl_tx_performance_tweak(tp->pci_dev,
3983                 (0x2 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
3984 }
3985
3986 static void r8168b_0_hw_jumbo_disable(struct rtl8169_private *tp)
3987 {
3988         rtl_tx_performance_tweak(tp->pci_dev,
3989                 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
3990 }
3991
3992 static void r8168b_1_hw_jumbo_enable(struct rtl8169_private *tp)
3993 {
3994         void __iomem *ioaddr = tp->mmio_addr;
3995
3996         r8168b_0_hw_jumbo_enable(tp);
3997
3998         RTL_W8(Config4, RTL_R8(Config4) | (1 << 0));
3999 }
4000
4001 static void r8168b_1_hw_jumbo_disable(struct rtl8169_private *tp)
4002 {
4003         void __iomem *ioaddr = tp->mmio_addr;
4004
4005         r8168b_0_hw_jumbo_disable(tp);
4006
4007         RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
4008 }
4009
4010 static void __devinit rtl_init_jumbo_ops(struct rtl8169_private *tp)
4011 {
4012         struct jumbo_ops *ops = &tp->jumbo_ops;
4013
4014         switch (tp->mac_version) {
4015         case RTL_GIGA_MAC_VER_11:
4016                 ops->disable    = r8168b_0_hw_jumbo_disable;
4017                 ops->enable     = r8168b_0_hw_jumbo_enable;
4018                 break;
4019         case RTL_GIGA_MAC_VER_12:
4020         case RTL_GIGA_MAC_VER_17:
4021                 ops->disable    = r8168b_1_hw_jumbo_disable;
4022                 ops->enable     = r8168b_1_hw_jumbo_enable;
4023                 break;
4024         case RTL_GIGA_MAC_VER_18: /* Wild guess. Needs info from Realtek. */
4025         case RTL_GIGA_MAC_VER_19:
4026         case RTL_GIGA_MAC_VER_20:
4027         case RTL_GIGA_MAC_VER_21: /* Wild guess. Needs info from Realtek. */
4028         case RTL_GIGA_MAC_VER_22:
4029         case RTL_GIGA_MAC_VER_23:
4030         case RTL_GIGA_MAC_VER_24:
4031         case RTL_GIGA_MAC_VER_25:
4032         case RTL_GIGA_MAC_VER_26:
4033                 ops->disable    = r8168c_hw_jumbo_disable;
4034                 ops->enable     = r8168c_hw_jumbo_enable;
4035                 break;
4036         case RTL_GIGA_MAC_VER_27:
4037         case RTL_GIGA_MAC_VER_28:
4038                 ops->disable    = r8168dp_hw_jumbo_disable;
4039                 ops->enable     = r8168dp_hw_jumbo_enable;
4040                 break;
4041         case RTL_GIGA_MAC_VER_31: /* Wild guess. Needs info from Realtek. */
4042         case RTL_GIGA_MAC_VER_32:
4043         case RTL_GIGA_MAC_VER_33:
4044         case RTL_GIGA_MAC_VER_34:
4045                 ops->disable    = r8168e_hw_jumbo_disable;
4046                 ops->enable     = r8168e_hw_jumbo_enable;
4047                 break;
4048
4049         /*
4050          * No action needed for jumbo frames with 8169.
4051          * No jumbo for 810x at all.
4052          */
4053         default:
4054                 ops->disable    = NULL;
4055                 ops->enable     = NULL;
4056                 break;
4057         }
4058 }
4059
4060 static void rtl_hw_reset(struct rtl8169_private *tp)
4061 {
4062         void __iomem *ioaddr = tp->mmio_addr;
4063         int i;
4064
4065         /* Soft reset the chip. */
4066         RTL_W8(ChipCmd, CmdReset);
4067
4068         /* Check that the chip has finished the reset. */
4069         for (i = 0; i < 100; i++) {
4070                 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
4071                         break;
4072                 udelay(100);
4073         }
4074 }
4075
4076 static void rtl_request_uncached_firmware(struct rtl8169_private *tp)
4077 {
4078         struct rtl_fw *rtl_fw;
4079         const char *name;
4080         int rc = -ENOMEM;
4081
4082         name = rtl_lookup_firmware_name(tp);
4083         if (!name)
4084                 goto out_no_firmware;
4085
4086         rtl_fw = kzalloc(sizeof(*rtl_fw), GFP_KERNEL);
4087         if (!rtl_fw)
4088                 goto err_warn;
4089
4090         rc = request_firmware(&rtl_fw->fw, name, &tp->pci_dev->dev);
4091         if (rc < 0)
4092                 goto err_free;
4093
4094         rc = rtl_check_firmware(tp, rtl_fw);
4095         if (rc < 0)
4096                 goto err_release_firmware;
4097
4098         tp->rtl_fw = rtl_fw;
4099 out:
4100         return;
4101
4102 err_release_firmware:
4103         release_firmware(rtl_fw->fw);
4104 err_free:
4105         kfree(rtl_fw);
4106 err_warn:
4107         netif_warn(tp, ifup, tp->dev, "unable to load firmware patch %s (%d)\n",
4108                    name, rc);
4109 out_no_firmware:
4110         tp->rtl_fw = NULL;
4111         goto out;
4112 }
4113
4114 static void rtl_request_firmware(struct rtl8169_private *tp)
4115 {
4116         if (IS_ERR(tp->rtl_fw))
4117                 rtl_request_uncached_firmware(tp);
4118 }
4119
4120 static void rtl_rx_close(struct rtl8169_private *tp)
4121 {
4122         void __iomem *ioaddr = tp->mmio_addr;
4123
4124         RTL_W32(RxConfig, RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK);
4125 }
4126
4127 static void rtl8169_hw_reset(struct rtl8169_private *tp)
4128 {
4129         void __iomem *ioaddr = tp->mmio_addr;
4130
4131         /* Disable interrupts */
4132         rtl8169_irq_mask_and_ack(tp);
4133
4134         rtl_rx_close(tp);
4135
4136         if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
4137             tp->mac_version == RTL_GIGA_MAC_VER_28 ||
4138             tp->mac_version == RTL_GIGA_MAC_VER_31) {
4139                 while (RTL_R8(TxPoll) & NPQ)
4140                         udelay(20);
4141         } else if (tp->mac_version == RTL_GIGA_MAC_VER_34 ||
4142                    tp->mac_version == RTL_GIGA_MAC_VER_35 ||
4143                    tp->mac_version == RTL_GIGA_MAC_VER_36 ||
4144                    tp->mac_version == RTL_GIGA_MAC_VER_37 ||
4145                    tp->mac_version == RTL_GIGA_MAC_VER_38) {
4146                 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
4147                 while (!(RTL_R32(TxConfig) & TXCFG_EMPTY))
4148                         udelay(100);
4149         } else {
4150                 RTL_W8(ChipCmd, RTL_R8(ChipCmd) | StopReq);
4151                 udelay(100);
4152         }
4153
4154         rtl_hw_reset(tp);
4155 }
4156
4157 static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
4158 {
4159         void __iomem *ioaddr = tp->mmio_addr;
4160
4161         /* Set DMA burst size and Interframe Gap Time */
4162         RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4163                 (InterFrameGap << TxInterFrameGapShift));
4164 }
4165
4166 static void rtl_hw_start(struct net_device *dev)
4167 {
4168         struct rtl8169_private *tp = netdev_priv(dev);
4169
4170         tp->hw_start(dev);
4171
4172         rtl_irq_enable_all(tp);
4173 }
4174
4175 static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
4176                                          void __iomem *ioaddr)
4177 {
4178         /*
4179          * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
4180          * register to be written before TxDescAddrLow to work.
4181          * Switching from MMIO to I/O access fixes the issue as well.
4182          */
4183         RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
4184         RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
4185         RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
4186         RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
4187 }
4188
4189 static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
4190 {
4191         u16 cmd;
4192
4193         cmd = RTL_R16(CPlusCmd);
4194         RTL_W16(CPlusCmd, cmd);
4195         return cmd;
4196 }
4197
4198 static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
4199 {
4200         /* Low hurts. Let's disable the filtering. */
4201         RTL_W16(RxMaxSize, rx_buf_sz + 1);
4202 }
4203
4204 static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
4205 {
4206         static const struct rtl_cfg2_info {
4207                 u32 mac_version;
4208                 u32 clk;
4209                 u32 val;
4210         } cfg2_info [] = {
4211                 { RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
4212                 { RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
4213                 { RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
4214                 { RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
4215         };
4216         const struct rtl_cfg2_info *p = cfg2_info;
4217         unsigned int i;
4218         u32 clk;
4219
4220         clk = RTL_R8(Config2) & PCI_Clock_66MHz;
4221         for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
4222                 if ((p->mac_version == mac_version) && (p->clk == clk)) {
4223                         RTL_W32(0x7c, p->val);
4224                         break;
4225                 }
4226         }
4227 }
4228
4229 static void rtl_set_rx_mode(struct net_device *dev)
4230 {
4231         struct rtl8169_private *tp = netdev_priv(dev);
4232         void __iomem *ioaddr = tp->mmio_addr;
4233         u32 mc_filter[2];       /* Multicast hash filter */
4234         int rx_mode;
4235         u32 tmp = 0;
4236
4237         if (dev->flags & IFF_PROMISC) {
4238                 /* Unconditionally log net taps. */
4239                 netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
4240                 rx_mode =
4241                     AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
4242                     AcceptAllPhys;
4243                 mc_filter[1] = mc_filter[0] = 0xffffffff;
4244         } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
4245                    (dev->flags & IFF_ALLMULTI)) {
4246                 /* Too many to filter perfectly -- accept all multicasts. */
4247                 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4248                 mc_filter[1] = mc_filter[0] = 0xffffffff;
4249         } else {
4250                 struct netdev_hw_addr *ha;
4251
4252                 rx_mode = AcceptBroadcast | AcceptMyPhys;
4253                 mc_filter[1] = mc_filter[0] = 0;
4254                 netdev_for_each_mc_addr(ha, dev) {
4255                         int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
4256                         mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
4257                         rx_mode |= AcceptMulticast;
4258                 }
4259         }
4260
4261         if (dev->features & NETIF_F_RXALL)
4262                 rx_mode |= (AcceptErr | AcceptRunt);
4263
4264         tmp = (RTL_R32(RxConfig) & ~RX_CONFIG_ACCEPT_MASK) | rx_mode;
4265
4266         if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
4267                 u32 data = mc_filter[0];
4268
4269                 mc_filter[0] = swab32(mc_filter[1]);
4270                 mc_filter[1] = swab32(data);
4271         }
4272
4273         RTL_W32(MAR0 + 4, mc_filter[1]);
4274         RTL_W32(MAR0 + 0, mc_filter[0]);
4275
4276         RTL_W32(RxConfig, tmp);
4277 }
4278
4279 static void rtl_hw_start_8169(struct net_device *dev)
4280 {
4281         struct rtl8169_private *tp = netdev_priv(dev);
4282         void __iomem *ioaddr = tp->mmio_addr;
4283         struct pci_dev *pdev = tp->pci_dev;
4284
4285         if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
4286                 RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
4287                 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
4288         }
4289
4290         RTL_W8(Cfg9346, Cfg9346_Unlock);
4291         if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4292             tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4293             tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4294             tp->mac_version == RTL_GIGA_MAC_VER_04)
4295                 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4296
4297         rtl_init_rxcfg(tp);
4298
4299         RTL_W8(EarlyTxThres, NoEarlyTx);
4300
4301         rtl_set_rx_max_size(ioaddr, rx_buf_sz);
4302
4303         if (tp->mac_version == RTL_GIGA_MAC_VER_01 ||
4304             tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4305             tp->mac_version == RTL_GIGA_MAC_VER_03 ||
4306             tp->mac_version == RTL_GIGA_MAC_VER_04)
4307                 rtl_set_rx_tx_config_registers(tp);
4308
4309         tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
4310
4311         if (tp->mac_version == RTL_GIGA_MAC_VER_02 ||
4312             tp->mac_version == RTL_GIGA_MAC_VER_03) {
4313                 dprintk("Set MAC Reg C+CR Offset 0xE0. "
4314                         "Bit-3 and bit-14 MUST be 1\n");
4315                 tp->cp_cmd |= (1 << 14);
4316         }
4317
4318         RTL_W16(CPlusCmd, tp->cp_cmd);
4319
4320         rtl8169_set_magic_reg(ioaddr, tp->mac_version);
4321
4322         /*
4323          * Undocumented corner. Supposedly:
4324          * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
4325          */
4326         RTL_W16(IntrMitigate, 0x0000);
4327
4328         rtl_set_rx_tx_desc_registers(tp, ioaddr);
4329
4330         if (tp->mac_version != RTL_GIGA_MAC_VER_01 &&
4331             tp->mac_version != RTL_GIGA_MAC_VER_02 &&
4332             tp->mac_version != RTL_GIGA_MAC_VER_03 &&
4333             tp->mac_version != RTL_GIGA_MAC_VER_04) {
4334                 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4335                 rtl_set_rx_tx_config_registers(tp);
4336         }
4337
4338         RTL_W8(Cfg9346, Cfg9346_Lock);
4339
4340         /* Initially a 10 us delay. Turned it into a PCI commit. - FR */
4341         RTL_R8(IntrMask);
4342
4343         RTL_W32(RxMissed, 0);
4344
4345         rtl_set_rx_mode(dev);
4346
4347         /* no early-rx interrupts */
4348         RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
4349 }
4350
4351 static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
4352 {
4353         if (tp->csi_ops.write)
4354                 tp->csi_ops.write(tp->mmio_addr, addr, value);
4355 }
4356
4357 static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
4358 {
4359         if (tp->csi_ops.read)
4360                 return tp->csi_ops.read(tp->mmio_addr, addr);
4361         else
4362                 return ~0;
4363 }
4364
4365 static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
4366 {
4367         u32 csi;
4368
4369         csi = rtl_csi_read(tp, 0x070c) & 0x00ffffff;
4370         rtl_csi_write(tp, 0x070c, csi | bits);
4371 }
4372
4373 static void rtl_csi_access_enable_1(struct rtl8169_private *tp)
4374 {
4375         rtl_csi_access_enable(tp, 0x17000000);
4376 }
4377
4378 static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
4379 {
4380         rtl_csi_access_enable(tp, 0x27000000);
4381 }
4382
4383 static void r8169_csi_write(void __iomem *ioaddr, int addr, int value)
4384 {
4385         unsigned int i;
4386
4387         RTL_W32(CSIDR, value);
4388         RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4389                 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4390
4391         for (i = 0; i < 100; i++) {
4392                 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
4393                         break;
4394                 udelay(10);
4395         }
4396 }
4397
4398 static u32 r8169_csi_read(void __iomem *ioaddr, int addr)
4399 {
4400         u32 value = ~0x00;
4401         unsigned int i;
4402
4403         RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
4404                 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4405
4406         for (i = 0; i < 100; i++) {
4407                 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
4408                         value = RTL_R32(CSIDR);
4409                         break;
4410                 }
4411                 udelay(10);
4412         }
4413
4414         return value;
4415 }
4416
4417 static void r8402_csi_write(void __iomem *ioaddr, int addr, int value)
4418 {
4419         unsigned int i;
4420
4421         RTL_W32(CSIDR, value);
4422         RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
4423                 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT |
4424                 CSIAR_FUNC_NIC);
4425
4426         for (i = 0; i < 100; i++) {
4427                 if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
4428                         break;
4429                 udelay(10);
4430         }
4431 }
4432
4433 static u32 r8402_csi_read(void __iomem *ioaddr, int addr)
4434 {
4435         u32 value = ~0x00;
4436         unsigned int i;
4437
4438         RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) | CSIAR_FUNC_NIC |
4439                 CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
4440
4441         for (i = 0; i < 100; i++) {
4442                 if (RTL_R32(CSIAR) & CSIAR_FLAG) {
4443                         value = RTL_R32(CSIDR);
4444                         break;
4445                 }
4446                 udelay(10);
4447         }
4448
4449         return value;
4450 }
4451
4452 static void __devinit rtl_init_csi_ops(struct rtl8169_private *tp)
4453 {
4454         struct csi_ops *ops = &tp->csi_ops;
4455
4456         switch (tp->mac_version) {
4457         case RTL_GIGA_MAC_VER_01:
4458         case RTL_GIGA_MAC_VER_02:
4459         case RTL_GIGA_MAC_VER_03:
4460         case RTL_GIGA_MAC_VER_04:
4461         case RTL_GIGA_MAC_VER_05:
4462         case RTL_GIGA_MAC_VER_06:
4463         case RTL_GIGA_MAC_VER_10:
4464         case RTL_GIGA_MAC_VER_11:
4465         case RTL_GIGA_MAC_VER_12:
4466         case RTL_GIGA_MAC_VER_13:
4467         case RTL_GIGA_MAC_VER_14:
4468         case RTL_GIGA_MAC_VER_15:
4469         case RTL_GIGA_MAC_VER_16:
4470         case RTL_GIGA_MAC_VER_17:
4471                 ops->write      = NULL;
4472                 ops->read       = NULL;
4473                 break;
4474
4475         case RTL_GIGA_MAC_VER_37:
4476         case RTL_GIGA_MAC_VER_38:
4477                 ops->write      = r8402_csi_write;
4478                 ops->read       = r8402_csi_read;
4479                 break;
4480
4481         default:
4482                 ops->write      = r8169_csi_write;
4483                 ops->read       = r8169_csi_read;
4484                 break;
4485         }
4486 }
4487
4488 struct ephy_info {
4489         unsigned int offset;
4490         u16 mask;
4491         u16 bits;
4492 };
4493
4494 static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
4495 {
4496         u16 w;
4497
4498         while (len-- > 0) {
4499                 w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
4500                 rtl_ephy_write(ioaddr, e->offset, w);
4501                 e++;
4502         }
4503 }
4504
4505 static void rtl_disable_clock_request(struct pci_dev *pdev)
4506 {
4507         int cap = pci_pcie_cap(pdev);
4508
4509         if (cap) {
4510                 u16 ctl;
4511
4512                 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
4513                 ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
4514                 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
4515         }
4516 }
4517
4518 static void rtl_enable_clock_request(struct pci_dev *pdev)
4519 {
4520         int cap = pci_pcie_cap(pdev);
4521
4522         if (cap) {
4523                 u16 ctl;
4524
4525                 pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
4526                 ctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
4527                 pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
4528         }
4529 }
4530
4531 #define R8168_CPCMD_QUIRK_MASK (\
4532         EnableBist | \
4533         Mac_dbgo_oe | \
4534         Force_half_dup | \
4535         Force_rxflow_en | \
4536         Force_txflow_en | \
4537         Cxpl_dbg_sel | \
4538         ASF | \
4539         PktCntrDisable | \
4540         Mac_dbgo_sel)
4541
4542 static void rtl_hw_start_8168bb(struct rtl8169_private *tp)
4543 {
4544         void __iomem *ioaddr = tp->mmio_addr;
4545         struct pci_dev *pdev = tp->pci_dev;
4546
4547         RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4548
4549         RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4550
4551         rtl_tx_performance_tweak(pdev,
4552                 (0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
4553 }
4554
4555 static void rtl_hw_start_8168bef(struct rtl8169_private *tp)
4556 {
4557         void __iomem *ioaddr = tp->mmio_addr;
4558
4559         rtl_hw_start_8168bb(tp);
4560
4561         RTL_W8(MaxTxPacketSize, TxPacketMax);
4562
4563         RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
4564 }
4565
4566 static void __rtl_hw_start_8168cp(struct rtl8169_private *tp)
4567 {
4568         void __iomem *ioaddr = tp->mmio_addr;
4569         struct pci_dev *pdev = tp->pci_dev;
4570
4571         RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
4572
4573         RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4574
4575         rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4576
4577         rtl_disable_clock_request(pdev);
4578
4579         RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4580 }
4581
4582 static void rtl_hw_start_8168cp_1(struct rtl8169_private *tp)
4583 {
4584         void __iomem *ioaddr = tp->mmio_addr;
4585         static const struct ephy_info e_info_8168cp[] = {
4586                 { 0x01, 0,      0x0001 },
4587                 { 0x02, 0x0800, 0x1000 },
4588                 { 0x03, 0,      0x0042 },
4589                 { 0x06, 0x0080, 0x0000 },
4590                 { 0x07, 0,      0x2000 }
4591         };
4592
4593         rtl_csi_access_enable_2(tp);
4594
4595         rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
4596
4597         __rtl_hw_start_8168cp(tp);
4598 }
4599
4600 static void rtl_hw_start_8168cp_2(struct rtl8169_private *tp)
4601 {
4602         void __iomem *ioaddr = tp->mmio_addr;
4603         struct pci_dev *pdev = tp->pci_dev;
4604
4605         rtl_csi_access_enable_2(tp);
4606
4607         RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4608
4609         rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4610
4611         RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4612 }
4613
4614 static void rtl_hw_start_8168cp_3(struct rtl8169_private *tp)
4615 {
4616         void __iomem *ioaddr = tp->mmio_addr;
4617         struct pci_dev *pdev = tp->pci_dev;
4618
4619         rtl_csi_access_enable_2(tp);
4620
4621         RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
4622
4623         /* Magic. */
4624         RTL_W8(DBG_REG, 0x20);
4625
4626         RTL_W8(MaxTxPacketSize, TxPacketMax);
4627
4628         rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4629
4630         RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4631 }
4632
4633 static void rtl_hw_start_8168c_1(struct rtl8169_private *tp)
4634 {
4635         void __iomem *ioaddr = tp->mmio_addr;
4636         static const struct ephy_info e_info_8168c_1[] = {
4637                 { 0x02, 0x0800, 0x1000 },
4638                 { 0x03, 0,      0x0002 },
4639                 { 0x06, 0x0080, 0x0000 }
4640         };
4641
4642         rtl_csi_access_enable_2(tp);
4643
4644         RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
4645
4646         rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
4647
4648         __rtl_hw_start_8168cp(tp);
4649 }
4650
4651 static void rtl_hw_start_8168c_2(struct rtl8169_private *tp)
4652 {
4653         void __iomem *ioaddr = tp->mmio_addr;
4654         static const struct ephy_info e_info_8168c_2[] = {
4655                 { 0x01, 0,      0x0001 },
4656                 { 0x03, 0x0400, 0x0220 }
4657         };
4658
4659         rtl_csi_access_enable_2(tp);
4660
4661         rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
4662
4663         __rtl_hw_start_8168cp(tp);
4664 }
4665
4666 static void rtl_hw_start_8168c_3(struct rtl8169_private *tp)
4667 {
4668         rtl_hw_start_8168c_2(tp);
4669 }
4670
4671 static void rtl_hw_start_8168c_4(struct rtl8169_private *tp)
4672 {
4673         rtl_csi_access_enable_2(tp);
4674
4675         __rtl_hw_start_8168cp(tp);
4676 }
4677
4678 static void rtl_hw_start_8168d(struct rtl8169_private *tp)
4679 {
4680         void __iomem *ioaddr = tp->mmio_addr;
4681         struct pci_dev *pdev = tp->pci_dev;
4682
4683         rtl_csi_access_enable_2(tp);
4684
4685         rtl_disable_clock_request(pdev);
4686
4687         RTL_W8(MaxTxPacketSize, TxPacketMax);
4688
4689         rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4690
4691         RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
4692 }
4693
4694 static void rtl_hw_start_8168dp(struct rtl8169_private *tp)
4695 {
4696         void __iomem *ioaddr = tp->mmio_addr;
4697         struct pci_dev *pdev = tp->pci_dev;
4698
4699         rtl_csi_access_enable_1(tp);
4700
4701         rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4702
4703         RTL_W8(MaxTxPacketSize, TxPacketMax);
4704
4705         rtl_disable_clock_request(pdev);
4706 }
4707
4708 static void rtl_hw_start_8168d_4(struct rtl8169_private *tp)
4709 {
4710         void __iomem *ioaddr = tp->mmio_addr;
4711         struct pci_dev *pdev = tp->pci_dev;
4712         static const struct ephy_info e_info_8168d_4[] = {
4713                 { 0x0b, ~0,     0x48 },
4714                 { 0x19, 0x20,   0x50 },
4715                 { 0x0c, ~0,     0x20 }
4716         };
4717         int i;
4718
4719         rtl_csi_access_enable_1(tp);
4720
4721         rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4722
4723         RTL_W8(MaxTxPacketSize, TxPacketMax);
4724
4725         for (i = 0; i < ARRAY_SIZE(e_info_8168d_4); i++) {
4726                 const struct ephy_info *e = e_info_8168d_4 + i;
4727                 u16 w;
4728
4729                 w = rtl_ephy_read(ioaddr, e->offset);
4730                 rtl_ephy_write(ioaddr, 0x03, (w & e->mask) | e->bits);
4731         }
4732
4733         rtl_enable_clock_request(pdev);
4734 }
4735
4736 static void rtl_hw_start_8168e_1(struct rtl8169_private *tp)
4737 {
4738         void __iomem *ioaddr = tp->mmio_addr;
4739         struct pci_dev *pdev = tp->pci_dev;
4740         static const struct ephy_info e_info_8168e_1[] = {
4741                 { 0x00, 0x0200, 0x0100 },
4742                 { 0x00, 0x0000, 0x0004 },
4743                 { 0x06, 0x0002, 0x0001 },
4744                 { 0x06, 0x0000, 0x0030 },
4745                 { 0x07, 0x0000, 0x2000 },
4746                 { 0x00, 0x0000, 0x0020 },
4747                 { 0x03, 0x5800, 0x2000 },
4748                 { 0x03, 0x0000, 0x0001 },
4749                 { 0x01, 0x0800, 0x1000 },
4750                 { 0x07, 0x0000, 0x4000 },
4751                 { 0x1e, 0x0000, 0x2000 },
4752                 { 0x19, 0xffff, 0xfe6c },
4753                 { 0x0a, 0x0000, 0x0040 }
4754         };
4755
4756         rtl_csi_access_enable_2(tp);
4757
4758         rtl_ephy_init(ioaddr, e_info_8168e_1, ARRAY_SIZE(e_info_8168e_1));
4759
4760         rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4761
4762         RTL_W8(MaxTxPacketSize, TxPacketMax);
4763
4764         rtl_disable_clock_request(pdev);
4765
4766         /* Reset tx FIFO pointer */
4767         RTL_W32(MISC, RTL_R32(MISC) | TXPLA_RST);
4768         RTL_W32(MISC, RTL_R32(MISC) & ~TXPLA_RST);
4769
4770         RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
4771 }
4772
4773 static void rtl_hw_start_8168e_2(struct rtl8169_private *tp)
4774 {
4775         void __iomem *ioaddr = tp->mmio_addr;
4776         struct pci_dev *pdev = tp->pci_dev;
4777         static const struct ephy_info e_info_8168e_2[] = {
4778                 { 0x09, 0x0000, 0x0080 },
4779                 { 0x19, 0x0000, 0x0224 }
4780         };
4781
4782         rtl_csi_access_enable_1(tp);
4783
4784         rtl_ephy_init(ioaddr, e_info_8168e_2, ARRAY_SIZE(e_info_8168e_2));
4785
4786         rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4787
4788         rtl_eri_write(ioaddr, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4789         rtl_eri_write(ioaddr, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4790         rtl_eri_write(ioaddr, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
4791         rtl_eri_write(ioaddr, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
4792         rtl_eri_write(ioaddr, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
4793         rtl_eri_write(ioaddr, 0xd0, ERIAR_MASK_1111, 0x07ff0060, ERIAR_EXGMAC);
4794         rtl_w1w0_eri(ioaddr, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4795         rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00,
4796                      ERIAR_EXGMAC);
4797
4798         RTL_W8(MaxTxPacketSize, EarlySize);
4799
4800         rtl_disable_clock_request(pdev);
4801
4802         RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
4803         RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
4804
4805         /* Adjust EEE LED frequency */
4806         RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
4807
4808         RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
4809         RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
4810         RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
4811 }
4812
4813 static void rtl_hw_start_8168f(struct rtl8169_private *tp)
4814 {
4815         void __iomem *ioaddr = tp->mmio_addr;
4816         struct pci_dev *pdev = tp->pci_dev;
4817
4818         rtl_csi_access_enable_2(tp);
4819
4820         rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
4821
4822         rtl_eri_write(ioaddr, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4823         rtl_eri_write(ioaddr, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
4824         rtl_eri_write(ioaddr, 0xc8, ERIAR_MASK_1111, 0x00100002, ERIAR_EXGMAC);
4825         rtl_eri_write(ioaddr, 0xe8, ERIAR_MASK_1111, 0x00100006, ERIAR_EXGMAC);
4826         rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
4827         rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
4828         rtl_w1w0_eri(ioaddr, 0x1b0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4829         rtl_w1w0_eri(ioaddr, 0x1d0, ERIAR_MASK_0001, 0x10, 0x00, ERIAR_EXGMAC);
4830         rtl_eri_write(ioaddr, 0xcc, ERIAR_MASK_1111, 0x00000050, ERIAR_EXGMAC);
4831         rtl_eri_write(ioaddr, 0xd0, ERIAR_MASK_1111, 0x00000060, ERIAR_EXGMAC);
4832
4833         RTL_W8(MaxTxPacketSize, EarlySize);
4834
4835         rtl_disable_clock_request(pdev);
4836
4837         RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
4838         RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
4839         RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
4840         RTL_W32(MISC, RTL_R32(MISC) | PWM_EN);
4841         RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en);
4842 }
4843
4844 static void rtl_hw_start_8168f_1(struct rtl8169_private *tp)
4845 {
4846         void __iomem *ioaddr = tp->mmio_addr;
4847         static const struct ephy_info e_info_8168f_1[] = {
4848                 { 0x06, 0x00c0, 0x0020 },
4849                 { 0x08, 0x0001, 0x0002 },
4850                 { 0x09, 0x0000, 0x0080 },
4851                 { 0x19, 0x0000, 0x0224 }
4852         };
4853
4854         rtl_hw_start_8168f(tp);
4855
4856         rtl_ephy_init(ioaddr, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
4857
4858         rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00,
4859                      ERIAR_EXGMAC);
4860
4861         /* Adjust EEE LED frequency */
4862         RTL_W8(EEE_LED, RTL_R8(EEE_LED) & ~0x07);
4863 }
4864
4865 static void rtl_hw_start_8411(struct rtl8169_private *tp)
4866 {
4867         void __iomem *ioaddr = tp->mmio_addr;
4868         static const struct ephy_info e_info_8168f_1[] = {
4869                 { 0x06, 0x00c0, 0x0020 },
4870                 { 0x0f, 0xffff, 0x5200 },
4871                 { 0x1e, 0x0000, 0x4000 },
4872                 { 0x19, 0x0000, 0x0224 }
4873         };
4874
4875         rtl_hw_start_8168f(tp);
4876
4877         rtl_ephy_init(ioaddr, e_info_8168f_1, ARRAY_SIZE(e_info_8168f_1));
4878
4879         rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0x0000,
4880                      ERIAR_EXGMAC);
4881 }
4882
4883 static void rtl_hw_start_8168(struct net_device *dev)
4884 {
4885         struct rtl8169_private *tp = netdev_priv(dev);
4886         void __iomem *ioaddr = tp->mmio_addr;
4887
4888         RTL_W8(Cfg9346, Cfg9346_Unlock);
4889
4890         RTL_W8(MaxTxPacketSize, TxPacketMax);
4891
4892         rtl_set_rx_max_size(ioaddr, rx_buf_sz);
4893
4894         tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
4895
4896         RTL_W16(CPlusCmd, tp->cp_cmd);
4897
4898         RTL_W16(IntrMitigate, 0x5151);
4899
4900         /* Work around for RxFIFO overflow. */
4901         if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
4902                 tp->event_slow |= RxFIFOOver | PCSTimeout;
4903                 tp->event_slow &= ~RxOverflow;
4904         }
4905
4906         rtl_set_rx_tx_desc_registers(tp, ioaddr);
4907
4908         rtl_set_rx_mode(dev);
4909
4910         RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
4911                 (InterFrameGap << TxInterFrameGapShift));
4912
4913         RTL_R8(IntrMask);
4914
4915         switch (tp->mac_version) {
4916         case RTL_GIGA_MAC_VER_11:
4917                 rtl_hw_start_8168bb(tp);
4918                 break;
4919
4920         case RTL_GIGA_MAC_VER_12:
4921         case RTL_GIGA_MAC_VER_17:
4922                 rtl_hw_start_8168bef(tp);
4923                 break;
4924
4925         case RTL_GIGA_MAC_VER_18:
4926                 rtl_hw_start_8168cp_1(tp);
4927                 break;
4928
4929         case RTL_GIGA_MAC_VER_19:
4930                 rtl_hw_start_8168c_1(tp);
4931                 break;
4932
4933         case RTL_GIGA_MAC_VER_20:
4934                 rtl_hw_start_8168c_2(tp);
4935                 break;
4936
4937         case RTL_GIGA_MAC_VER_21:
4938                 rtl_hw_start_8168c_3(tp);
4939                 break;
4940
4941         case RTL_GIGA_MAC_VER_22:
4942                 rtl_hw_start_8168c_4(tp);
4943                 break;
4944
4945         case RTL_GIGA_MAC_VER_23:
4946                 rtl_hw_start_8168cp_2(tp);
4947                 break;
4948
4949         case RTL_GIGA_MAC_VER_24:
4950                 rtl_hw_start_8168cp_3(tp);
4951                 break;
4952
4953         case RTL_GIGA_MAC_VER_25:
4954         case RTL_GIGA_MAC_VER_26:
4955         case RTL_GIGA_MAC_VER_27:
4956                 rtl_hw_start_8168d(tp);
4957                 break;
4958
4959         case RTL_GIGA_MAC_VER_28:
4960                 rtl_hw_start_8168d_4(tp);
4961                 break;
4962
4963         case RTL_GIGA_MAC_VER_31:
4964                 rtl_hw_start_8168dp(tp);
4965                 break;
4966
4967         case RTL_GIGA_MAC_VER_32:
4968         case RTL_GIGA_MAC_VER_33:
4969                 rtl_hw_start_8168e_1(tp);
4970                 break;
4971         case RTL_GIGA_MAC_VER_34:
4972                 rtl_hw_start_8168e_2(tp);
4973                 break;
4974
4975         case RTL_GIGA_MAC_VER_35:
4976         case RTL_GIGA_MAC_VER_36:
4977                 rtl_hw_start_8168f_1(tp);
4978                 break;
4979
4980         case RTL_GIGA_MAC_VER_38:
4981                 rtl_hw_start_8411(tp);
4982                 break;
4983
4984         default:
4985                 printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
4986                         dev->name, tp->mac_version);
4987                 break;
4988         }
4989
4990         RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
4991
4992         RTL_W8(Cfg9346, Cfg9346_Lock);
4993
4994         RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
4995 }
4996
4997 #define R810X_CPCMD_QUIRK_MASK (\
4998         EnableBist | \
4999         Mac_dbgo_oe | \
5000         Force_half_dup | \
5001         Force_rxflow_en | \
5002         Force_txflow_en | \
5003         Cxpl_dbg_sel | \
5004         ASF | \
5005         PktCntrDisable | \
5006         Mac_dbgo_sel)
5007
5008 static void rtl_hw_start_8102e_1(struct rtl8169_private *tp)
5009 {
5010         void __iomem *ioaddr = tp->mmio_addr;
5011         struct pci_dev *pdev = tp->pci_dev;
5012         static const struct ephy_info e_info_8102e_1[] = {
5013                 { 0x01, 0, 0x6e65 },
5014                 { 0x02, 0, 0x091f },
5015                 { 0x03, 0, 0xc2f9 },
5016                 { 0x06, 0, 0xafb5 },
5017                 { 0x07, 0, 0x0e00 },
5018                 { 0x19, 0, 0xec80 },
5019                 { 0x01, 0, 0x2e65 },
5020                 { 0x01, 0, 0x6e65 }
5021         };
5022         u8 cfg1;
5023
5024         rtl_csi_access_enable_2(tp);
5025
5026         RTL_W8(DBG_REG, FIX_NAK_1);
5027
5028         rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5029
5030         RTL_W8(Config1,
5031                LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
5032         RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5033
5034         cfg1 = RTL_R8(Config1);
5035         if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
5036                 RTL_W8(Config1, cfg1 & ~LEDS0);
5037
5038         rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
5039 }
5040
5041 static void rtl_hw_start_8102e_2(struct rtl8169_private *tp)
5042 {
5043         void __iomem *ioaddr = tp->mmio_addr;
5044         struct pci_dev *pdev = tp->pci_dev;
5045
5046         rtl_csi_access_enable_2(tp);
5047
5048         rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
5049
5050         RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
5051         RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
5052 }
5053
5054 static void rtl_hw_start_8102e_3(struct rtl8169_private *tp)
5055 {
5056         rtl_hw_start_8102e_2(tp);
5057
5058         rtl_ephy_write(tp->mmio_addr, 0x03, 0xc2f9);
5059 }
5060
5061 static void rtl_hw_start_8105e_1(struct rtl8169_private *tp)
5062 {
5063         void __iomem *ioaddr = tp->mmio_addr;
5064         static const struct ephy_info e_info_8105e_1[] = {
5065                 { 0x07, 0, 0x4000 },
5066                 { 0x19, 0, 0x0200 },
5067                 { 0x19, 0, 0x0020 },
5068                 { 0x1e, 0, 0x2000 },
5069                 { 0x03, 0, 0x0001 },
5070                 { 0x19, 0, 0x0100 },
5071                 { 0x19, 0, 0x0004 },
5072                 { 0x0a, 0, 0x0020 }
5073         };
5074
5075         /* Force LAN exit from ASPM if Rx/Tx are not idle */
5076         RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5077
5078         /* Disable Early Tally Counter */
5079         RTL_W32(FuncEvent, RTL_R32(FuncEvent) & ~0x010000);
5080
5081         RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET);
5082         RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN);
5083
5084         rtl_ephy_init(ioaddr, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1));
5085 }
5086
5087 static void rtl_hw_start_8105e_2(struct rtl8169_private *tp)
5088 {
5089         void __iomem *ioaddr = tp->mmio_addr;
5090
5091         rtl_hw_start_8105e_1(tp);
5092         rtl_ephy_write(ioaddr, 0x1e, rtl_ephy_read(ioaddr, 0x1e) | 0x8000);
5093 }
5094
5095 static void rtl_hw_start_8402(struct rtl8169_private *tp)
5096 {
5097         void __iomem *ioaddr = tp->mmio_addr;
5098         static const struct ephy_info e_info_8402[] = {
5099                 { 0x19, 0xffff, 0xff64 },
5100                 { 0x1e, 0, 0x4000 }
5101         };
5102
5103         rtl_csi_access_enable_2(tp);
5104
5105         /* Force LAN exit from ASPM if Rx/Tx are not idle */
5106         RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800);
5107
5108         RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO);
5109         RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB);
5110
5111         rtl_ephy_init(ioaddr, e_info_8402, ARRAY_SIZE(e_info_8402));
5112
5113         rtl_tx_performance_tweak(tp->pci_dev, 0x5 << MAX_READ_REQUEST_SHIFT);
5114
5115         rtl_eri_write(ioaddr, 0xc8, ERIAR_MASK_1111, 0x00000002, ERIAR_EXGMAC);
5116         rtl_eri_write(ioaddr, 0xe8, ERIAR_MASK_1111, 0x00000006, ERIAR_EXGMAC);
5117         rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x00, 0x01, ERIAR_EXGMAC);
5118         rtl_w1w0_eri(ioaddr, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC);
5119         rtl_eri_write(ioaddr, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5120         rtl_eri_write(ioaddr, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC);
5121         rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0e00, 0xff00,
5122                      ERIAR_EXGMAC);
5123 }
5124
5125 static void rtl_hw_start_8101(struct net_device *dev)
5126 {
5127         struct rtl8169_private *tp = netdev_priv(dev);
5128         void __iomem *ioaddr = tp->mmio_addr;
5129         struct pci_dev *pdev = tp->pci_dev;
5130
5131         if (tp->mac_version >= RTL_GIGA_MAC_VER_30)
5132                 tp->event_slow &= ~RxFIFOOver;
5133
5134         if (tp->mac_version == RTL_GIGA_MAC_VER_13 ||
5135             tp->mac_version == RTL_GIGA_MAC_VER_16) {
5136                 int cap = pci_pcie_cap(pdev);
5137
5138                 if (cap) {
5139                         pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
5140                                               PCI_EXP_DEVCTL_NOSNOOP_EN);
5141                 }
5142         }
5143
5144         RTL_W8(Cfg9346, Cfg9346_Unlock);
5145
5146         switch (tp->mac_version) {
5147         case RTL_GIGA_MAC_VER_07:
5148                 rtl_hw_start_8102e_1(tp);
5149                 break;
5150
5151         case RTL_GIGA_MAC_VER_08:
5152                 rtl_hw_start_8102e_3(tp);
5153                 break;
5154
5155         case RTL_GIGA_MAC_VER_09:
5156                 rtl_hw_start_8102e_2(tp);
5157                 break;
5158
5159         case RTL_GIGA_MAC_VER_29:
5160                 rtl_hw_start_8105e_1(tp);
5161                 break;
5162         case RTL_GIGA_MAC_VER_30:
5163                 rtl_hw_start_8105e_2(tp);
5164                 break;
5165
5166         case RTL_GIGA_MAC_VER_37:
5167                 rtl_hw_start_8402(tp);
5168                 break;
5169         }
5170
5171         RTL_W8(Cfg9346, Cfg9346_Lock);
5172
5173         RTL_W8(MaxTxPacketSize, TxPacketMax);
5174
5175         rtl_set_rx_max_size(ioaddr, rx_buf_sz);
5176
5177         tp->cp_cmd &= ~R810X_CPCMD_QUIRK_MASK;
5178         RTL_W16(CPlusCmd, tp->cp_cmd);
5179
5180         RTL_W16(IntrMitigate, 0x0000);
5181
5182         rtl_set_rx_tx_desc_registers(tp, ioaddr);
5183
5184         RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
5185         rtl_set_rx_tx_config_registers(tp);
5186
5187         RTL_R8(IntrMask);
5188
5189         rtl_set_rx_mode(dev);
5190
5191         RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
5192 }
5193
5194 static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
5195 {
5196         struct rtl8169_private *tp = netdev_priv(dev);
5197
5198         if (new_mtu < ETH_ZLEN ||
5199             new_mtu > rtl_chip_infos[tp->mac_version].jumbo_max)
5200                 return -EINVAL;
5201
5202         if (new_mtu > ETH_DATA_LEN)
5203                 rtl_hw_jumbo_enable(tp);
5204         else
5205                 rtl_hw_jumbo_disable(tp);
5206
5207         dev->mtu = new_mtu;
5208         netdev_update_features(dev);
5209
5210         return 0;
5211 }
5212
5213 static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
5214 {
5215         desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
5216         desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
5217 }
5218
5219 static void rtl8169_free_rx_databuff(struct rtl8169_private *tp,
5220                                      void **data_buff, struct RxDesc *desc)
5221 {
5222         dma_unmap_single(&tp->pci_dev->dev, le64_to_cpu(desc->addr), rx_buf_sz,
5223                          DMA_FROM_DEVICE);
5224
5225         kfree(*data_buff);
5226         *data_buff = NULL;
5227         rtl8169_make_unusable_by_asic(desc);
5228 }
5229
5230 static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
5231 {
5232         u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
5233
5234         desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
5235 }
5236
5237 static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
5238                                        u32 rx_buf_sz)
5239 {
5240         desc->addr = cpu_to_le64(mapping);
5241         wmb();
5242         rtl8169_mark_to_asic(desc, rx_buf_sz);
5243 }
5244
5245 static inline void *rtl8169_align(void *data)
5246 {
5247         return (void *)ALIGN((long)data, 16);
5248 }
5249
5250 static struct sk_buff *rtl8169_alloc_rx_data(struct rtl8169_private *tp,
5251                                              struct RxDesc *desc)
5252 {
5253         void *data;
5254         dma_addr_t mapping;
5255         struct device *d = &tp->pci_dev->dev;
5256         struct net_device *dev = tp->dev;
5257         int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
5258
5259         data = kmalloc_node(rx_buf_sz, GFP_KERNEL, node);
5260         if (!data)
5261                 return NULL;
5262
5263         if (rtl8169_align(data) != data) {
5264                 kfree(data);
5265                 data = kmalloc_node(rx_buf_sz + 15, GFP_KERNEL, node);
5266                 if (!data)
5267                         return NULL;
5268         }
5269
5270         mapping = dma_map_single(d, rtl8169_align(data), rx_buf_sz,
5271                                  DMA_FROM_DEVICE);
5272         if (unlikely(dma_mapping_error(d, mapping))) {
5273                 if (net_ratelimit())
5274                         netif_err(tp, drv, tp->dev, "Failed to map RX DMA!\n");
5275                 goto err_out;
5276         }
5277
5278         rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
5279         return data;
5280
5281 err_out:
5282         kfree(data);
5283         return NULL;
5284 }
5285
5286 static void rtl8169_rx_clear(struct rtl8169_private *tp)
5287 {
5288         unsigned int i;
5289
5290         for (i = 0; i < NUM_RX_DESC; i++) {
5291                 if (tp->Rx_databuff[i]) {
5292                         rtl8169_free_rx_databuff(tp, tp->Rx_databuff + i,
5293                                             tp->RxDescArray + i);
5294                 }
5295         }
5296 }
5297
5298 static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
5299 {
5300         desc->opts1 |= cpu_to_le32(RingEnd);
5301 }
5302
5303 static int rtl8169_rx_fill(struct rtl8169_private *tp)
5304 {
5305         unsigned int i;
5306
5307         for (i = 0; i < NUM_RX_DESC; i++) {
5308                 void *data;
5309
5310                 if (tp->Rx_databuff[i])
5311                         continue;
5312
5313                 data = rtl8169_alloc_rx_data(tp, tp->RxDescArray + i);
5314                 if (!data) {
5315                         rtl8169_make_unusable_by_asic(tp->RxDescArray + i);
5316                         goto err_out;
5317                 }
5318                 tp->Rx_databuff[i] = data;
5319         }
5320
5321         rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
5322         return 0;
5323
5324 err_out:
5325         rtl8169_rx_clear(tp);
5326         return -ENOMEM;
5327 }
5328
5329 static int rtl8169_init_ring(struct net_device *dev)
5330 {
5331         struct rtl8169_private *tp = netdev_priv(dev);
5332
5333         rtl8169_init_ring_indexes(tp);
5334
5335         memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
5336         memset(tp->Rx_databuff, 0x0, NUM_RX_DESC * sizeof(void *));
5337
5338         return rtl8169_rx_fill(tp);
5339 }
5340
5341 static void rtl8169_unmap_tx_skb(struct device *d, struct ring_info *tx_skb,
5342                                  struct TxDesc *desc)
5343 {
5344         unsigned int len = tx_skb->len;
5345
5346         dma_unmap_single(d, le64_to_cpu(desc->addr), len, DMA_TO_DEVICE);
5347
5348         desc->opts1 = 0x00;
5349         desc->opts2 = 0x00;
5350         desc->addr = 0x00;
5351         tx_skb->len = 0;
5352 }
5353
5354 static void rtl8169_tx_clear_range(struct rtl8169_private *tp, u32 start,
5355                                    unsigned int n)
5356 {
5357         unsigned int i;
5358
5359         for (i = 0; i < n; i++) {
5360                 unsigned int entry = (start + i) % NUM_TX_DESC;
5361                 struct ring_info *tx_skb = tp->tx_skb + entry;
5362                 unsigned int len = tx_skb->len;
5363
5364                 if (len) {
5365                         struct sk_buff *skb = tx_skb->skb;
5366
5367                         rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
5368                                              tp->TxDescArray + entry);
5369                         if (skb) {
5370                                 tp->dev->stats.tx_dropped++;
5371                                 dev_kfree_skb(skb);
5372                                 tx_skb->skb = NULL;
5373                         }
5374                 }
5375         }
5376 }
5377
5378 static void rtl8169_tx_clear(struct rtl8169_private *tp)
5379 {
5380         rtl8169_tx_clear_range(tp, tp->dirty_tx, NUM_TX_DESC);
5381         tp->cur_tx = tp->dirty_tx = 0;
5382         netdev_reset_queue(tp->dev);
5383 }
5384
5385 static void rtl_reset_work(struct rtl8169_private *tp)
5386 {
5387         struct net_device *dev = tp->dev;
5388         int i;
5389
5390         napi_disable(&tp->napi);
5391         netif_stop_queue(dev);
5392         synchronize_sched();
5393
5394         rtl8169_hw_reset(tp);
5395
5396         for (i = 0; i < NUM_RX_DESC; i++)
5397                 rtl8169_mark_to_asic(tp->RxDescArray + i, rx_buf_sz);
5398
5399         rtl8169_tx_clear(tp);
5400         rtl8169_init_ring_indexes(tp);
5401
5402         napi_enable(&tp->napi);
5403         rtl_hw_start(dev);
5404         netif_wake_queue(dev);
5405         rtl8169_check_link_status(dev, tp, tp->mmio_addr);
5406 }
5407
5408 static void rtl8169_tx_timeout(struct net_device *dev)
5409 {
5410         struct rtl8169_private *tp = netdev_priv(dev);
5411
5412         rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
5413 }
5414
5415 static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
5416                               u32 *opts)
5417 {
5418         struct skb_shared_info *info = skb_shinfo(skb);
5419         unsigned int cur_frag, entry;
5420         struct TxDesc * uninitialized_var(txd);
5421         struct device *d = &tp->pci_dev->dev;
5422
5423         entry = tp->cur_tx;
5424         for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
5425                 const skb_frag_t *frag = info->frags + cur_frag;
5426                 dma_addr_t mapping;
5427                 u32 status, len;
5428                 void *addr;
5429
5430                 entry = (entry + 1) % NUM_TX_DESC;
5431
5432                 txd = tp->TxDescArray + entry;
5433                 len = skb_frag_size(frag);
5434                 addr = skb_frag_address(frag);
5435                 mapping = dma_map_single(d, addr, len, DMA_TO_DEVICE);
5436                 if (unlikely(dma_mapping_error(d, mapping))) {
5437                         if (net_ratelimit())
5438                                 netif_err(tp, drv, tp->dev,
5439                                           "Failed to map TX fragments DMA!\n");
5440                         goto err_out;
5441                 }
5442
5443                 /* Anti gcc 2.95.3 bugware (sic) */
5444                 status = opts[0] | len |
5445                         (RingEnd * !((entry + 1) % NUM_TX_DESC));
5446
5447                 txd->opts1 = cpu_to_le32(status);
5448                 txd->opts2 = cpu_to_le32(opts[1]);
5449                 txd->addr = cpu_to_le64(mapping);
5450
5451                 tp->tx_skb[entry].len = len;
5452         }
5453
5454         if (cur_frag) {
5455                 tp->tx_skb[entry].skb = skb;
5456                 txd->opts1 |= cpu_to_le32(LastFrag);
5457         }
5458
5459         return cur_frag;
5460
5461 err_out:
5462         rtl8169_tx_clear_range(tp, tp->cur_tx + 1, cur_frag);
5463         return -EIO;
5464 }
5465
5466 static inline void rtl8169_tso_csum(struct rtl8169_private *tp,
5467                                     struct sk_buff *skb, u32 *opts)
5468 {
5469         const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version;
5470         u32 mss = skb_shinfo(skb)->gso_size;
5471         int offset = info->opts_offset;
5472
5473         if (mss) {
5474                 opts[0] |= TD_LSO;
5475                 opts[offset] |= min(mss, TD_MSS_MAX) << info->mss_shift;
5476         } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
5477                 const struct iphdr *ip = ip_hdr(skb);
5478
5479                 if (ip->protocol == IPPROTO_TCP)
5480                         opts[offset] |= info->checksum.tcp;
5481                 else if (ip->protocol == IPPROTO_UDP)
5482                         opts[offset] |= info->checksum.udp;
5483                 else
5484                         WARN_ON_ONCE(1);
5485         }
5486 }
5487
5488 static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
5489                                       struct net_device *dev)
5490 {
5491         struct rtl8169_private *tp = netdev_priv(dev);
5492         unsigned int entry = tp->cur_tx % NUM_TX_DESC;
5493         struct TxDesc *txd = tp->TxDescArray + entry;
5494         void __iomem *ioaddr = tp->mmio_addr;
5495         struct device *d = &tp->pci_dev->dev;
5496         dma_addr_t mapping;
5497         u32 status, len;
5498         u32 opts[2];
5499         int frags;
5500
5501         if (unlikely(!TX_FRAGS_READY_FOR(tp, skb_shinfo(skb)->nr_frags))) {
5502                 netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
5503                 goto err_stop_0;
5504         }
5505
5506         if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
5507                 goto err_stop_0;
5508
5509         len = skb_headlen(skb);
5510         mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE);
5511         if (unlikely(dma_mapping_error(d, mapping))) {
5512                 if (net_ratelimit())
5513                         netif_err(tp, drv, dev, "Failed to map TX DMA!\n");
5514                 goto err_dma_0;
5515         }
5516
5517         tp->tx_skb[entry].len = len;
5518         txd->addr = cpu_to_le64(mapping);
5519
5520         opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
5521         opts[0] = DescOwn;
5522
5523         rtl8169_tso_csum(tp, skb, opts);
5524
5525         frags = rtl8169_xmit_frags(tp, skb, opts);
5526         if (frags < 0)
5527                 goto err_dma_1;
5528         else if (frags)
5529                 opts[0] |= FirstFrag;
5530         else {
5531                 opts[0] |= FirstFrag | LastFrag;
5532                 tp->tx_skb[entry].skb = skb;
5533         }
5534
5535         txd->opts2 = cpu_to_le32(opts[1]);
5536
5537         netdev_sent_queue(dev, skb->len);
5538
5539         skb_tx_timestamp(skb);
5540
5541         wmb();
5542
5543         /* Anti gcc 2.95.3 bugware (sic) */
5544         status = opts[0] | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
5545         txd->opts1 = cpu_to_le32(status);
5546
5547         tp->cur_tx += frags + 1;
5548
5549         wmb();
5550
5551         RTL_W8(TxPoll, NPQ);
5552
5553         mmiowb();
5554
5555         if (!TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
5556                 /* Avoid wrongly optimistic queue wake-up: rtl_tx thread must
5557                  * not miss a ring update when it notices a stopped queue.
5558                  */
5559                 smp_wmb();
5560                 netif_stop_queue(dev);
5561                 /* Sync with rtl_tx:
5562                  * - publish queue status and cur_tx ring index (write barrier)
5563                  * - refresh dirty_tx ring index (read barrier).
5564                  * May the current thread have a pessimistic view of the ring
5565                  * status and forget to wake up queue, a racing rtl_tx thread
5566                  * can't.
5567                  */
5568                 smp_mb();
5569                 if (TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS))
5570                         netif_wake_queue(dev);
5571         }
5572
5573         return NETDEV_TX_OK;
5574
5575 err_dma_1:
5576         rtl8169_unmap_tx_skb(d, tp->tx_skb + entry, txd);
5577 err_dma_0:
5578         dev_kfree_skb(skb);
5579         dev->stats.tx_dropped++;
5580         return NETDEV_TX_OK;
5581
5582 err_stop_0:
5583         netif_stop_queue(dev);
5584         dev->stats.tx_dropped++;
5585         return NETDEV_TX_BUSY;
5586 }
5587
5588 static void rtl8169_pcierr_interrupt(struct net_device *dev)
5589 {
5590         struct rtl8169_private *tp = netdev_priv(dev);
5591         struct pci_dev *pdev = tp->pci_dev;
5592         u16 pci_status, pci_cmd;
5593
5594         pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
5595         pci_read_config_word(pdev, PCI_STATUS, &pci_status);
5596
5597         netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
5598                   pci_cmd, pci_status);
5599
5600         /*
5601          * The recovery sequence below admits a very elaborated explanation:
5602          * - it seems to work;
5603          * - I did not see what else could be done;
5604          * - it makes iop3xx happy.
5605          *
5606          * Feel free to adjust to your needs.
5607          */
5608         if (pdev->broken_parity_status)
5609                 pci_cmd &= ~PCI_COMMAND_PARITY;
5610         else
5611                 pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
5612
5613         pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
5614
5615         pci_write_config_word(pdev, PCI_STATUS,
5616                 pci_status & (PCI_STATUS_DETECTED_PARITY |
5617                 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
5618                 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
5619
5620         /* The infamous DAC f*ckup only happens at boot time */
5621         if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
5622                 void __iomem *ioaddr = tp->mmio_addr;
5623
5624                 netif_info(tp, intr, dev, "disabling PCI DAC\n");
5625                 tp->cp_cmd &= ~PCIDAC;
5626                 RTL_W16(CPlusCmd, tp->cp_cmd);
5627                 dev->features &= ~NETIF_F_HIGHDMA;
5628         }
5629
5630         rtl8169_hw_reset(tp);
5631
5632         rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
5633 }
5634
5635 struct rtl_txc {
5636         int packets;
5637         int bytes;
5638 };
5639
5640 static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp)
5641 {
5642         struct rtl8169_stats *tx_stats = &tp->tx_stats;
5643         unsigned int dirty_tx, tx_left;
5644         struct rtl_txc txc = { 0, 0 };
5645
5646         dirty_tx = tp->dirty_tx;
5647         smp_rmb();
5648         tx_left = tp->cur_tx - dirty_tx;
5649
5650         while (tx_left > 0) {
5651                 unsigned int entry = dirty_tx % NUM_TX_DESC;
5652                 struct ring_info *tx_skb = tp->tx_skb + entry;
5653                 u32 status;
5654
5655                 rmb();
5656                 status = le32_to_cpu(tp->TxDescArray[entry].opts1);
5657                 if (status & DescOwn)
5658                         break;
5659
5660                 rtl8169_unmap_tx_skb(&tp->pci_dev->dev, tx_skb,
5661                                      tp->TxDescArray + entry);
5662                 if (status & LastFrag) {
5663                         struct sk_buff *skb = tx_skb->skb;
5664
5665                         txc.packets++;
5666                         txc.bytes += skb->len;
5667                         dev_kfree_skb(skb);
5668                         tx_skb->skb = NULL;
5669                 }
5670                 dirty_tx++;
5671                 tx_left--;
5672         }
5673
5674         u64_stats_update_begin(&tx_stats->syncp);
5675         tx_stats->packets += txc.packets;
5676         tx_stats->bytes += txc.bytes;
5677         u64_stats_update_end(&tx_stats->syncp);
5678
5679         netdev_completed_queue(dev, txc.packets, txc.bytes);
5680
5681         if (tp->dirty_tx != dirty_tx) {
5682                 tp->dirty_tx = dirty_tx;
5683                 /* Sync with rtl8169_start_xmit:
5684                  * - publish dirty_tx ring index (write barrier)
5685                  * - refresh cur_tx ring index and queue status (read barrier)
5686                  * May the current thread miss the stopped queue condition,
5687                  * a racing xmit thread can only have a right view of the
5688                  * ring status.
5689                  */
5690                 smp_mb();
5691                 if (netif_queue_stopped(dev) &&
5692                     TX_FRAGS_READY_FOR(tp, MAX_SKB_FRAGS)) {
5693                         netif_wake_queue(dev);
5694                 }
5695                 /*
5696                  * 8168 hack: TxPoll requests are lost when the Tx packets are
5697                  * too close. Let's kick an extra TxPoll request when a burst
5698                  * of start_xmit activity is detected (if it is not detected,
5699                  * it is slow enough). -- FR
5700                  */
5701                 if (tp->cur_tx != dirty_tx) {
5702                         void __iomem *ioaddr = tp->mmio_addr;
5703
5704                         RTL_W8(TxPoll, NPQ);
5705                 }
5706         }
5707 }
5708
5709 static inline int rtl8169_fragmented_frame(u32 status)
5710 {
5711         return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
5712 }
5713
5714 static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
5715 {
5716         u32 status = opts1 & RxProtoMask;
5717
5718         if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
5719             ((status == RxProtoUDP) && !(opts1 & UDPFail)))
5720                 skb->ip_summed = CHECKSUM_UNNECESSARY;
5721         else
5722                 skb_checksum_none_assert(skb);
5723 }
5724
5725 static struct sk_buff *rtl8169_try_rx_copy(void *data,
5726                                            struct rtl8169_private *tp,
5727                                            int pkt_size,
5728                                            dma_addr_t addr)
5729 {
5730         struct sk_buff *skb;
5731         struct device *d = &tp->pci_dev->dev;
5732
5733         data = rtl8169_align(data);
5734         dma_sync_single_for_cpu(d, addr, pkt_size, DMA_FROM_DEVICE);
5735         prefetch(data);
5736         skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
5737         if (skb)
5738                 memcpy(skb->data, data, pkt_size);
5739         dma_sync_single_for_device(d, addr, pkt_size, DMA_FROM_DEVICE);
5740
5741         return skb;
5742 }
5743
5744 static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, u32 budget)
5745 {
5746         unsigned int cur_rx, rx_left;
5747         unsigned int count;
5748
5749         cur_rx = tp->cur_rx;
5750         rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
5751         rx_left = min(rx_left, budget);
5752
5753         for (; rx_left > 0; rx_left--, cur_rx++) {
5754                 unsigned int entry = cur_rx % NUM_RX_DESC;
5755                 struct RxDesc *desc = tp->RxDescArray + entry;
5756                 u32 status;
5757
5758                 rmb();
5759                 status = le32_to_cpu(desc->opts1) & tp->opts1_mask;
5760
5761                 if (status & DescOwn)
5762                         break;
5763                 if (unlikely(status & RxRES)) {
5764                         netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
5765                                    status);
5766                         dev->stats.rx_errors++;
5767                         if (status & (RxRWT | RxRUNT))
5768                                 dev->stats.rx_length_errors++;
5769                         if (status & RxCRC)
5770                                 dev->stats.rx_crc_errors++;
5771                         if (status & RxFOVF) {
5772                                 rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
5773                                 dev->stats.rx_fifo_errors++;
5774                         }
5775                         if ((status & (RxRUNT | RxCRC)) &&
5776                             !(status & (RxRWT | RxFOVF)) &&
5777                             (dev->features & NETIF_F_RXALL))
5778                                 goto process_pkt;
5779
5780                         rtl8169_mark_to_asic(desc, rx_buf_sz);
5781                 } else {
5782                         struct sk_buff *skb;
5783                         dma_addr_t addr;
5784                         int pkt_size;
5785
5786 process_pkt:
5787                         addr = le64_to_cpu(desc->addr);
5788                         if (likely(!(dev->features & NETIF_F_RXFCS)))
5789                                 pkt_size = (status & 0x00003fff) - 4;
5790                         else
5791                                 pkt_size = status & 0x00003fff;
5792
5793                         /*
5794                          * The driver does not support incoming fragmented
5795                          * frames. They are seen as a symptom of over-mtu
5796                          * sized frames.
5797                          */
5798                         if (unlikely(rtl8169_fragmented_frame(status))) {
5799                                 dev->stats.rx_dropped++;
5800                                 dev->stats.rx_length_errors++;
5801                                 rtl8169_mark_to_asic(desc, rx_buf_sz);
5802                                 continue;
5803                         }
5804
5805                         skb = rtl8169_try_rx_copy(tp->Rx_databuff[entry],
5806                                                   tp, pkt_size, addr);
5807                         rtl8169_mark_to_asic(desc, rx_buf_sz);
5808                         if (!skb) {
5809                                 dev->stats.rx_dropped++;
5810                                 continue;
5811                         }
5812
5813                         rtl8169_rx_csum(skb, status);
5814                         skb_put(skb, pkt_size);
5815                         skb->protocol = eth_type_trans(skb, dev);
5816
5817                         rtl8169_rx_vlan_tag(desc, skb);
5818
5819                         napi_gro_receive(&tp->napi, skb);
5820
5821                         u64_stats_update_begin(&tp->rx_stats.syncp);
5822                         tp->rx_stats.packets++;
5823                         tp->rx_stats.bytes += pkt_size;
5824                         u64_stats_update_end(&tp->rx_stats.syncp);
5825                 }
5826
5827                 /* Work around for AMD plateform. */
5828                 if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
5829                     (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
5830                         desc->opts2 = 0;
5831                         cur_rx++;
5832                 }
5833         }
5834
5835         count = cur_rx - tp->cur_rx;
5836         tp->cur_rx = cur_rx;
5837
5838         tp->dirty_rx += count;
5839
5840         return count;
5841 }
5842
5843 static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
5844 {
5845         struct net_device *dev = dev_instance;
5846         struct rtl8169_private *tp = netdev_priv(dev);
5847         int handled = 0;
5848         u16 status;
5849
5850         status = rtl_get_events(tp);
5851         if (status && status != 0xffff) {
5852                 status &= RTL_EVENT_NAPI | tp->event_slow;
5853                 if (status) {
5854                         handled = 1;
5855
5856                         rtl_irq_disable(tp);
5857                         napi_schedule(&tp->napi);
5858                 }
5859         }
5860         return IRQ_RETVAL(handled);
5861 }
5862
5863 /*
5864  * Workqueue context.
5865  */
5866 static void rtl_slow_event_work(struct rtl8169_private *tp)
5867 {
5868         struct net_device *dev = tp->dev;
5869         u16 status;
5870
5871         status = rtl_get_events(tp) & tp->event_slow;
5872         rtl_ack_events(tp, status);
5873
5874         if (unlikely(status & RxFIFOOver)) {
5875                 switch (tp->mac_version) {
5876                 /* Work around for rx fifo overflow */
5877                 case RTL_GIGA_MAC_VER_11:
5878                         netif_stop_queue(dev);
5879                         /* XXX - Hack alert. See rtl_task(). */
5880                         set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
5881                 default:
5882                         break;
5883                 }
5884         }
5885
5886         if (unlikely(status & SYSErr))
5887                 rtl8169_pcierr_interrupt(dev);
5888
5889         if (status & LinkChg)
5890                 __rtl8169_check_link_status(dev, tp, tp->mmio_addr, true);
5891
5892         napi_disable(&tp->napi);
5893         rtl_irq_disable(tp);
5894
5895         napi_enable(&tp->napi);
5896         napi_schedule(&tp->napi);
5897 }
5898
5899 static void rtl_task(struct work_struct *work)
5900 {
5901         static const struct {
5902                 int bitnr;
5903                 void (*action)(struct rtl8169_private *);
5904         } rtl_work[] = {
5905                 /* XXX - keep rtl_slow_event_work() as first element. */
5906                 { RTL_FLAG_TASK_SLOW_PENDING,   rtl_slow_event_work },
5907                 { RTL_FLAG_TASK_RESET_PENDING,  rtl_reset_work },
5908                 { RTL_FLAG_TASK_PHY_PENDING,    rtl_phy_work }
5909         };
5910         struct rtl8169_private *tp =
5911                 container_of(work, struct rtl8169_private, wk.work);
5912         struct net_device *dev = tp->dev;
5913         int i;
5914
5915         rtl_lock_work(tp);
5916
5917         if (!netif_running(dev) ||
5918             !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
5919                 goto out_unlock;
5920
5921         for (i = 0; i < ARRAY_SIZE(rtl_work); i++) {
5922                 bool pending;
5923
5924                 pending = test_and_clear_bit(rtl_work[i].bitnr, tp->wk.flags);
5925                 if (pending)
5926                         rtl_work[i].action(tp);
5927         }
5928
5929 out_unlock:
5930         rtl_unlock_work(tp);
5931 }
5932
5933 static int rtl8169_poll(struct napi_struct *napi, int budget)
5934 {
5935         struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
5936         struct net_device *dev = tp->dev;
5937         u16 enable_mask = RTL_EVENT_NAPI | tp->event_slow;
5938         int work_done= 0;
5939         u16 status;
5940
5941         status = rtl_get_events(tp);
5942         rtl_ack_events(tp, status & ~tp->event_slow);
5943
5944         if (status & RTL_EVENT_NAPI_RX)
5945                 work_done = rtl_rx(dev, tp, (u32) budget);
5946
5947         if (status & RTL_EVENT_NAPI_TX)
5948                 rtl_tx(dev, tp);
5949
5950         if (status & tp->event_slow) {
5951                 enable_mask &= ~tp->event_slow;
5952
5953                 rtl_schedule_task(tp, RTL_FLAG_TASK_SLOW_PENDING);
5954         }
5955
5956         if (work_done < budget) {
5957                 napi_complete(napi);
5958
5959                 rtl_irq_enable(tp, enable_mask);
5960                 mmiowb();
5961         }
5962
5963         return work_done;
5964 }
5965
5966 static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
5967 {
5968         struct rtl8169_private *tp = netdev_priv(dev);
5969
5970         if (tp->mac_version > RTL_GIGA_MAC_VER_06)
5971                 return;
5972
5973         dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
5974         RTL_W32(RxMissed, 0);
5975 }
5976
5977 static void rtl8169_down(struct net_device *dev)
5978 {
5979         struct rtl8169_private *tp = netdev_priv(dev);
5980         void __iomem *ioaddr = tp->mmio_addr;
5981
5982         del_timer_sync(&tp->timer);
5983
5984         napi_disable(&tp->napi);
5985         netif_stop_queue(dev);
5986
5987         rtl8169_hw_reset(tp);
5988         /*
5989          * At this point device interrupts can not be enabled in any function,
5990          * as netif_running is not true (rtl8169_interrupt, rtl8169_reset_task)
5991          * and napi is disabled (rtl8169_poll).
5992          */
5993         rtl8169_rx_missed(dev, ioaddr);
5994
5995         /* Give a racing hard_start_xmit a few cycles to complete. */
5996         synchronize_sched();
5997
5998         rtl8169_tx_clear(tp);
5999
6000         rtl8169_rx_clear(tp);
6001
6002         rtl_pll_power_down(tp);
6003 }
6004
6005 static int rtl8169_close(struct net_device *dev)
6006 {
6007         struct rtl8169_private *tp = netdev_priv(dev);
6008         struct pci_dev *pdev = tp->pci_dev;
6009
6010         pm_runtime_get_sync(&pdev->dev);
6011
6012         /* Update counters before going down */
6013         rtl8169_update_counters(dev);
6014
6015         rtl_lock_work(tp);
6016         clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
6017
6018         rtl8169_down(dev);
6019         rtl_unlock_work(tp);
6020
6021         free_irq(pdev->irq, dev);
6022
6023         dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6024                           tp->RxPhyAddr);
6025         dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6026                           tp->TxPhyAddr);
6027         tp->TxDescArray = NULL;
6028         tp->RxDescArray = NULL;
6029
6030         pm_runtime_put_sync(&pdev->dev);
6031
6032         return 0;
6033 }
6034
6035 #ifdef CONFIG_NET_POLL_CONTROLLER
6036 static void rtl8169_netpoll(struct net_device *dev)
6037 {
6038         struct rtl8169_private *tp = netdev_priv(dev);
6039
6040         rtl8169_interrupt(tp->pci_dev->irq, dev);
6041 }
6042 #endif
6043
6044 static int rtl_open(struct net_device *dev)
6045 {
6046         struct rtl8169_private *tp = netdev_priv(dev);
6047         void __iomem *ioaddr = tp->mmio_addr;
6048         struct pci_dev *pdev = tp->pci_dev;
6049         int retval = -ENOMEM;
6050
6051         pm_runtime_get_sync(&pdev->dev);
6052
6053         /*
6054          * Rx and Tx descriptors needs 256 bytes alignment.
6055          * dma_alloc_coherent provides more.
6056          */
6057         tp->TxDescArray = dma_alloc_coherent(&pdev->dev, R8169_TX_RING_BYTES,
6058                                              &tp->TxPhyAddr, GFP_KERNEL);
6059         if (!tp->TxDescArray)
6060                 goto err_pm_runtime_put;
6061
6062         tp->RxDescArray = dma_alloc_coherent(&pdev->dev, R8169_RX_RING_BYTES,
6063                                              &tp->RxPhyAddr, GFP_KERNEL);
6064         if (!tp->RxDescArray)
6065                 goto err_free_tx_0;
6066
6067         retval = rtl8169_init_ring(dev);
6068         if (retval < 0)
6069                 goto err_free_rx_1;
6070
6071         INIT_WORK(&tp->wk.work, rtl_task);
6072
6073         smp_mb();
6074
6075         rtl_request_firmware(tp);
6076
6077         retval = request_irq(pdev->irq, rtl8169_interrupt,
6078                              (tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
6079                              dev->name, dev);
6080         if (retval < 0)
6081                 goto err_release_fw_2;
6082
6083         rtl_lock_work(tp);
6084
6085         set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
6086
6087         napi_enable(&tp->napi);
6088
6089         rtl8169_init_phy(dev, tp);
6090
6091         __rtl8169_set_features(dev, dev->features);
6092
6093         rtl_pll_power_up(tp);
6094
6095         rtl_hw_start(dev);
6096
6097         netif_start_queue(dev);
6098
6099         rtl_unlock_work(tp);
6100
6101         tp->saved_wolopts = 0;
6102         pm_runtime_put_noidle(&pdev->dev);
6103
6104         rtl8169_check_link_status(dev, tp, ioaddr);
6105 out:
6106         return retval;
6107
6108 err_release_fw_2:
6109         rtl_release_firmware(tp);
6110         rtl8169_rx_clear(tp);
6111 err_free_rx_1:
6112         dma_free_coherent(&pdev->dev, R8169_RX_RING_BYTES, tp->RxDescArray,
6113                           tp->RxPhyAddr);
6114         tp->RxDescArray = NULL;
6115 err_free_tx_0:
6116         dma_free_coherent(&pdev->dev, R8169_TX_RING_BYTES, tp->TxDescArray,
6117                           tp->TxPhyAddr);
6118         tp->TxDescArray = NULL;
6119 err_pm_runtime_put:
6120         pm_runtime_put_noidle(&pdev->dev);
6121         goto out;
6122 }
6123
6124 static struct rtnl_link_stats64 *
6125 rtl8169_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
6126 {
6127         struct rtl8169_private *tp = netdev_priv(dev);
6128         void __iomem *ioaddr = tp->mmio_addr;
6129         unsigned int start;
6130
6131         if (netif_running(dev))
6132                 rtl8169_rx_missed(dev, ioaddr);
6133
6134         do {
6135                 start = u64_stats_fetch_begin_bh(&tp->rx_stats.syncp);
6136                 stats->rx_packets = tp->rx_stats.packets;
6137                 stats->rx_bytes = tp->rx_stats.bytes;
6138         } while (u64_stats_fetch_retry_bh(&tp->rx_stats.syncp, start));
6139
6140
6141         do {
6142                 start = u64_stats_fetch_begin_bh(&tp->tx_stats.syncp);
6143                 stats->tx_packets = tp->tx_stats.packets;
6144                 stats->tx_bytes = tp->tx_stats.bytes;
6145         } while (u64_stats_fetch_retry_bh(&tp->tx_stats.syncp, start));
6146
6147         stats->rx_dropped       = dev->stats.rx_dropped;
6148         stats->tx_dropped       = dev->stats.tx_dropped;
6149         stats->rx_length_errors = dev->stats.rx_length_errors;
6150         stats->rx_errors        = dev->stats.rx_errors;
6151         stats->rx_crc_errors    = dev->stats.rx_crc_errors;
6152         stats->rx_fifo_errors   = dev->stats.rx_fifo_errors;
6153         stats->rx_missed_errors = dev->stats.rx_missed_errors;
6154
6155         return stats;
6156 }
6157
6158 static void rtl8169_net_suspend(struct net_device *dev)
6159 {
6160         struct rtl8169_private *tp = netdev_priv(dev);
6161
6162         if (!netif_running(dev))
6163                 return;
6164
6165         netif_device_detach(dev);
6166         netif_stop_queue(dev);
6167
6168         rtl_lock_work(tp);
6169         napi_disable(&tp->napi);
6170         clear_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
6171         rtl_unlock_work(tp);
6172
6173         rtl_pll_power_down(tp);
6174 }
6175
6176 #ifdef CONFIG_PM
6177
6178 static int rtl8169_suspend(struct device *device)
6179 {
6180         struct pci_dev *pdev = to_pci_dev(device);
6181         struct net_device *dev = pci_get_drvdata(pdev);
6182
6183         rtl8169_net_suspend(dev);
6184
6185         return 0;
6186 }
6187
6188 static void __rtl8169_resume(struct net_device *dev)
6189 {
6190         struct rtl8169_private *tp = netdev_priv(dev);
6191
6192         netif_device_attach(dev);
6193
6194         rtl_pll_power_up(tp);
6195
6196         rtl_lock_work(tp);
6197         napi_enable(&tp->napi);
6198         set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
6199         rtl_unlock_work(tp);
6200
6201         rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
6202 }
6203
6204 static int rtl8169_resume(struct device *device)
6205 {
6206         struct pci_dev *pdev = to_pci_dev(device);
6207         struct net_device *dev = pci_get_drvdata(pdev);
6208         struct rtl8169_private *tp = netdev_priv(dev);
6209
6210         rtl8169_init_phy(dev, tp);
6211
6212         if (netif_running(dev))
6213                 __rtl8169_resume(dev);
6214
6215         return 0;
6216 }
6217
6218 static int rtl8169_runtime_suspend(struct device *device)
6219 {
6220         struct pci_dev *pdev = to_pci_dev(device);
6221         struct net_device *dev = pci_get_drvdata(pdev);
6222         struct rtl8169_private *tp = netdev_priv(dev);
6223
6224         if (!tp->TxDescArray)
6225                 return 0;
6226
6227         rtl_lock_work(tp);
6228         tp->saved_wolopts = __rtl8169_get_wol(tp);
6229         __rtl8169_set_wol(tp, WAKE_ANY);
6230         rtl_unlock_work(tp);
6231
6232         rtl8169_net_suspend(dev);
6233
6234         return 0;
6235 }
6236
6237 static int rtl8169_runtime_resume(struct device *device)
6238 {
6239         struct pci_dev *pdev = to_pci_dev(device);
6240         struct net_device *dev = pci_get_drvdata(pdev);
6241         struct rtl8169_private *tp = netdev_priv(dev);
6242
6243         if (!tp->TxDescArray)
6244                 return 0;
6245
6246         rtl_lock_work(tp);
6247         __rtl8169_set_wol(tp, tp->saved_wolopts);
6248         tp->saved_wolopts = 0;
6249         rtl_unlock_work(tp);
6250
6251         rtl8169_init_phy(dev, tp);
6252
6253         __rtl8169_resume(dev);
6254
6255         return 0;
6256 }
6257
6258 static int rtl8169_runtime_idle(struct device *device)
6259 {
6260         struct pci_dev *pdev = to_pci_dev(device);
6261         struct net_device *dev = pci_get_drvdata(pdev);
6262         struct rtl8169_private *tp = netdev_priv(dev);
6263
6264         return tp->TxDescArray ? -EBUSY : 0;
6265 }
6266
6267 static const struct dev_pm_ops rtl8169_pm_ops = {
6268         .suspend                = rtl8169_suspend,
6269         .resume                 = rtl8169_resume,
6270         .freeze                 = rtl8169_suspend,
6271         .thaw                   = rtl8169_resume,
6272         .poweroff               = rtl8169_suspend,
6273         .restore                = rtl8169_resume,
6274         .runtime_suspend        = rtl8169_runtime_suspend,
6275         .runtime_resume         = rtl8169_runtime_resume,
6276         .runtime_idle           = rtl8169_runtime_idle,
6277 };
6278
6279 #define RTL8169_PM_OPS  (&rtl8169_pm_ops)
6280
6281 #else /* !CONFIG_PM */
6282
6283 #define RTL8169_PM_OPS  NULL
6284
6285 #endif /* !CONFIG_PM */
6286
6287 static void rtl_wol_shutdown_quirk(struct rtl8169_private *tp)
6288 {
6289         void __iomem *ioaddr = tp->mmio_addr;
6290
6291         /* WoL fails with 8168b when the receiver is disabled. */
6292         switch (tp->mac_version) {
6293         case RTL_GIGA_MAC_VER_11:
6294         case RTL_GIGA_MAC_VER_12:
6295         case RTL_GIGA_MAC_VER_17:
6296                 pci_clear_master(tp->pci_dev);
6297
6298                 RTL_W8(ChipCmd, CmdRxEnb);
6299                 /* PCI commit */
6300                 RTL_R8(ChipCmd);
6301                 break;
6302         default:
6303                 break;
6304         }
6305 }
6306
6307 static void rtl_shutdown(struct pci_dev *pdev)
6308 {
6309         struct net_device *dev = pci_get_drvdata(pdev);
6310         struct rtl8169_private *tp = netdev_priv(dev);
6311         struct device *d = &pdev->dev;
6312
6313         pm_runtime_get_sync(d);
6314
6315         rtl8169_net_suspend(dev);
6316
6317         /* Restore original MAC address */
6318         rtl_rar_set(tp, dev->perm_addr);
6319
6320         rtl8169_hw_reset(tp);
6321
6322         if (system_state == SYSTEM_POWER_OFF) {
6323                 if (__rtl8169_get_wol(tp) & WAKE_ANY) {
6324                         rtl_wol_suspend_quirk(tp);
6325                         rtl_wol_shutdown_quirk(tp);
6326                 }
6327
6328                 pci_wake_from_d3(pdev, true);
6329                 pci_set_power_state(pdev, PCI_D3hot);
6330         }
6331
6332         pm_runtime_put_noidle(d);
6333 }
6334
6335 static void __devexit rtl_remove_one(struct pci_dev *pdev)
6336 {
6337         struct net_device *dev = pci_get_drvdata(pdev);
6338         struct rtl8169_private *tp = netdev_priv(dev);
6339
6340         if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
6341             tp->mac_version == RTL_GIGA_MAC_VER_28 ||
6342             tp->mac_version == RTL_GIGA_MAC_VER_31) {
6343                 rtl8168_driver_stop(tp);
6344         }
6345
6346         cancel_work_sync(&tp->wk.work);
6347
6348         netif_napi_del(&tp->napi);
6349
6350         unregister_netdev(dev);
6351
6352         rtl_release_firmware(tp);
6353
6354         if (pci_dev_run_wake(pdev))
6355                 pm_runtime_get_noresume(&pdev->dev);
6356
6357         /* restore original MAC address */
6358         rtl_rar_set(tp, dev->perm_addr);
6359
6360         rtl_disable_msi(pdev, tp);
6361         rtl8169_release_board(pdev, dev, tp->mmio_addr);
6362         pci_set_drvdata(pdev, NULL);
6363 }
6364
6365 static const struct net_device_ops rtl_netdev_ops = {
6366         .ndo_open               = rtl_open,
6367         .ndo_stop               = rtl8169_close,
6368         .ndo_get_stats64        = rtl8169_get_stats64,
6369         .ndo_start_xmit         = rtl8169_start_xmit,
6370         .ndo_tx_timeout         = rtl8169_tx_timeout,
6371         .ndo_validate_addr      = eth_validate_addr,
6372         .ndo_change_mtu         = rtl8169_change_mtu,
6373         .ndo_fix_features       = rtl8169_fix_features,
6374         .ndo_set_features       = rtl8169_set_features,
6375         .ndo_set_mac_address    = rtl_set_mac_address,
6376         .ndo_do_ioctl           = rtl8169_ioctl,
6377         .ndo_set_rx_mode        = rtl_set_rx_mode,
6378 #ifdef CONFIG_NET_POLL_CONTROLLER
6379         .ndo_poll_controller    = rtl8169_netpoll,
6380 #endif
6381
6382 };
6383
6384 static const struct rtl_cfg_info {
6385         void (*hw_start)(struct net_device *);
6386         unsigned int region;
6387         unsigned int align;
6388         u16 event_slow;
6389         unsigned features;
6390         u8 default_ver;
6391 } rtl_cfg_infos [] = {
6392         [RTL_CFG_0] = {
6393                 .hw_start       = rtl_hw_start_8169,
6394                 .region         = 1,
6395                 .align          = 0,
6396                 .event_slow     = SYSErr | LinkChg | RxOverflow | RxFIFOOver,
6397                 .features       = RTL_FEATURE_GMII,
6398                 .default_ver    = RTL_GIGA_MAC_VER_01,
6399         },
6400         [RTL_CFG_1] = {
6401                 .hw_start       = rtl_hw_start_8168,
6402                 .region         = 2,
6403                 .align          = 8,
6404                 .event_slow     = SYSErr | LinkChg | RxOverflow,
6405                 .features       = RTL_FEATURE_GMII | RTL_FEATURE_MSI,
6406                 .default_ver    = RTL_GIGA_MAC_VER_11,
6407         },
6408         [RTL_CFG_2] = {
6409                 .hw_start       = rtl_hw_start_8101,
6410                 .region         = 2,
6411                 .align          = 8,
6412                 .event_slow     = SYSErr | LinkChg | RxOverflow | RxFIFOOver |
6413                                   PCSTimeout,
6414                 .features       = RTL_FEATURE_MSI,
6415                 .default_ver    = RTL_GIGA_MAC_VER_13,
6416         }
6417 };
6418
6419 /* Cfg9346_Unlock assumed. */
6420 static unsigned rtl_try_msi(struct rtl8169_private *tp,
6421                             const struct rtl_cfg_info *cfg)
6422 {
6423         void __iomem *ioaddr = tp->mmio_addr;
6424         unsigned msi = 0;
6425         u8 cfg2;
6426
6427         cfg2 = RTL_R8(Config2) & ~MSIEnable;
6428         if (cfg->features & RTL_FEATURE_MSI) {
6429                 if (pci_enable_msi(tp->pci_dev)) {
6430                         netif_info(tp, hw, tp->dev, "no MSI. Back to INTx.\n");
6431                 } else {
6432                         cfg2 |= MSIEnable;
6433                         msi = RTL_FEATURE_MSI;
6434                 }
6435         }
6436         if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
6437                 RTL_W8(Config2, cfg2);
6438         return msi;
6439 }
6440
6441 static int __devinit
6442 rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
6443 {
6444         const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
6445         const unsigned int region = cfg->region;
6446         struct rtl8169_private *tp;
6447         struct mii_if_info *mii;
6448         struct net_device *dev;
6449         void __iomem *ioaddr;
6450         int chipset, i;
6451         int rc;
6452
6453         if (netif_msg_drv(&debug)) {
6454                 printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
6455                        MODULENAME, RTL8169_VERSION);
6456         }
6457
6458         dev = alloc_etherdev(sizeof (*tp));
6459         if (!dev) {
6460                 rc = -ENOMEM;
6461                 goto out;
6462         }
6463
6464         SET_NETDEV_DEV(dev, &pdev->dev);
6465         dev->netdev_ops = &rtl_netdev_ops;
6466         tp = netdev_priv(dev);
6467         tp->dev = dev;
6468         tp->pci_dev = pdev;
6469         tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
6470
6471         mii = &tp->mii;
6472         mii->dev = dev;
6473         mii->mdio_read = rtl_mdio_read;
6474         mii->mdio_write = rtl_mdio_write;
6475         mii->phy_id_mask = 0x1f;
6476         mii->reg_num_mask = 0x1f;
6477         mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
6478
6479         /* disable ASPM completely as that cause random device stop working
6480          * problems as well as full system hangs for some PCIe devices users */
6481         pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
6482                                      PCIE_LINK_STATE_CLKPM);
6483
6484         /* enable device (incl. PCI PM wakeup and hotplug setup) */
6485         rc = pci_enable_device(pdev);
6486         if (rc < 0) {
6487                 netif_err(tp, probe, dev, "enable failure\n");
6488                 goto err_out_free_dev_1;
6489         }
6490
6491         if (pci_set_mwi(pdev) < 0)
6492                 netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
6493
6494         /* make sure PCI base addr 1 is MMIO */
6495         if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
6496                 netif_err(tp, probe, dev,
6497                           "region #%d not an MMIO resource, aborting\n",
6498                           region);
6499                 rc = -ENODEV;
6500                 goto err_out_mwi_2;
6501         }
6502
6503         /* check for weird/broken PCI region reporting */
6504         if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
6505                 netif_err(tp, probe, dev,
6506                           "Invalid PCI region size(s), aborting\n");
6507                 rc = -ENODEV;
6508                 goto err_out_mwi_2;
6509         }
6510
6511         rc = pci_request_regions(pdev, MODULENAME);
6512         if (rc < 0) {
6513                 netif_err(tp, probe, dev, "could not request regions\n");
6514                 goto err_out_mwi_2;
6515         }
6516
6517         tp->cp_cmd = RxChkSum;
6518
6519         if ((sizeof(dma_addr_t) > 4) &&
6520             !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
6521                 tp->cp_cmd |= PCIDAC;
6522                 dev->features |= NETIF_F_HIGHDMA;
6523         } else {
6524                 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6525                 if (rc < 0) {
6526                         netif_err(tp, probe, dev, "DMA configuration failed\n");
6527                         goto err_out_free_res_3;
6528                 }
6529         }
6530
6531         /* ioremap MMIO region */
6532         ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
6533         if (!ioaddr) {
6534                 netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
6535                 rc = -EIO;
6536                 goto err_out_free_res_3;
6537         }
6538         tp->mmio_addr = ioaddr;
6539
6540         if (!pci_is_pcie(pdev))
6541                 netif_info(tp, probe, dev, "not PCI Express\n");
6542
6543         /* Identify chip attached to board */
6544         rtl8169_get_mac_version(tp, dev, cfg->default_ver);
6545
6546         rtl_init_rxcfg(tp);
6547
6548         rtl_irq_disable(tp);
6549
6550         rtl_hw_reset(tp);
6551
6552         rtl_ack_events(tp, 0xffff);
6553
6554         pci_set_master(pdev);
6555
6556         /*
6557          * Pretend we are using VLANs; This bypasses a nasty bug where
6558          * Interrupts stop flowing on high load on 8110SCd controllers.
6559          */
6560         if (tp->mac_version == RTL_GIGA_MAC_VER_05)
6561                 tp->cp_cmd |= RxVlan;
6562
6563         rtl_init_mdio_ops(tp);
6564         rtl_init_pll_power_ops(tp);
6565         rtl_init_jumbo_ops(tp);
6566         rtl_init_csi_ops(tp);
6567
6568         rtl8169_print_mac_version(tp);
6569
6570         chipset = tp->mac_version;
6571         tp->txd_version = rtl_chip_infos[chipset].txd_version;
6572
6573         RTL_W8(Cfg9346, Cfg9346_Unlock);
6574         RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
6575         RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
6576         if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
6577                 tp->features |= RTL_FEATURE_WOL;
6578         if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
6579                 tp->features |= RTL_FEATURE_WOL;
6580         tp->features |= rtl_try_msi(tp, cfg);
6581         RTL_W8(Cfg9346, Cfg9346_Lock);
6582
6583         if (rtl_tbi_enabled(tp)) {
6584                 tp->set_speed = rtl8169_set_speed_tbi;
6585                 tp->get_settings = rtl8169_gset_tbi;
6586                 tp->phy_reset_enable = rtl8169_tbi_reset_enable;
6587                 tp->phy_reset_pending = rtl8169_tbi_reset_pending;
6588                 tp->link_ok = rtl8169_tbi_link_ok;
6589                 tp->do_ioctl = rtl_tbi_ioctl;
6590         } else {
6591                 tp->set_speed = rtl8169_set_speed_xmii;
6592                 tp->get_settings = rtl8169_gset_xmii;
6593                 tp->phy_reset_enable = rtl8169_xmii_reset_enable;
6594                 tp->phy_reset_pending = rtl8169_xmii_reset_pending;
6595                 tp->link_ok = rtl8169_xmii_link_ok;
6596                 tp->do_ioctl = rtl_xmii_ioctl;
6597         }
6598
6599         mutex_init(&tp->wk.mutex);
6600
6601         /* Get MAC address */
6602         for (i = 0; i < ETH_ALEN; i++)
6603                 dev->dev_addr[i] = RTL_R8(MAC0 + i);
6604         memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
6605
6606         SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
6607         dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
6608
6609         netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
6610
6611         /* don't enable SG, IP_CSUM and TSO by default - it might not work
6612          * properly for all devices */
6613         dev->features |= NETIF_F_RXCSUM |
6614                 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
6615
6616         dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
6617                 NETIF_F_RXCSUM | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
6618         dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
6619                 NETIF_F_HIGHDMA;
6620
6621         if (tp->mac_version == RTL_GIGA_MAC_VER_05)
6622                 /* 8110SCd requires hardware Rx VLAN - disallow toggling */
6623                 dev->hw_features &= ~NETIF_F_HW_VLAN_RX;
6624
6625         dev->hw_features |= NETIF_F_RXALL;
6626         dev->hw_features |= NETIF_F_RXFCS;
6627
6628         tp->hw_start = cfg->hw_start;
6629         tp->event_slow = cfg->event_slow;
6630
6631         tp->opts1_mask = (tp->mac_version != RTL_GIGA_MAC_VER_01) ?
6632                 ~(RxBOVF | RxFOVF) : ~0;
6633
6634         init_timer(&tp->timer);
6635         tp->timer.data = (unsigned long) dev;
6636         tp->timer.function = rtl8169_phy_timer;
6637
6638         tp->rtl_fw = RTL_FIRMWARE_UNKNOWN;
6639
6640         rc = register_netdev(dev);
6641         if (rc < 0)
6642                 goto err_out_msi_4;
6643
6644         pci_set_drvdata(pdev, dev);
6645
6646         netif_info(tp, probe, dev, "%s at 0x%p, %pM, XID %08x IRQ %d\n",
6647                    rtl_chip_infos[chipset].name, ioaddr, dev->dev_addr,
6648                    (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), pdev->irq);
6649         if (rtl_chip_infos[chipset].jumbo_max != JUMBO_1K) {
6650                 netif_info(tp, probe, dev, "jumbo features [frames: %d bytes, "
6651                            "tx checksumming: %s]\n",
6652                            rtl_chip_infos[chipset].jumbo_max,
6653                            rtl_chip_infos[chipset].jumbo_tx_csum ? "ok" : "ko");
6654         }
6655
6656         if (tp->mac_version == RTL_GIGA_MAC_VER_27 ||
6657             tp->mac_version == RTL_GIGA_MAC_VER_28 ||
6658             tp->mac_version == RTL_GIGA_MAC_VER_31) {
6659                 rtl8168_driver_start(tp);
6660         }
6661
6662         device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
6663
6664         if (pci_dev_run_wake(pdev))
6665                 pm_runtime_put_noidle(&pdev->dev);
6666
6667         netif_carrier_off(dev);
6668
6669 out:
6670         return rc;
6671
6672 err_out_msi_4:
6673         netif_napi_del(&tp->napi);
6674         rtl_disable_msi(pdev, tp);
6675         iounmap(ioaddr);
6676 err_out_free_res_3:
6677         pci_release_regions(pdev);
6678 err_out_mwi_2:
6679         pci_clear_mwi(pdev);
6680         pci_disable_device(pdev);
6681 err_out_free_dev_1:
6682         free_netdev(dev);
6683         goto out;
6684 }
6685
6686 static struct pci_driver rtl8169_pci_driver = {
6687         .name           = MODULENAME,
6688         .id_table       = rtl8169_pci_tbl,
6689         .probe          = rtl_init_one,
6690         .remove         = __devexit_p(rtl_remove_one),
6691         .shutdown       = rtl_shutdown,
6692         .driver.pm      = RTL8169_PM_OPS,
6693 };
6694
6695 static int __init rtl8169_init_module(void)
6696 {
6697         return pci_register_driver(&rtl8169_pci_driver);
6698 }
6699
6700 static void __exit rtl8169_cleanup_module(void)
6701 {
6702         pci_unregister_driver(&rtl8169_pci_driver);
6703 }
6704
6705 module_init(rtl8169_init_module);
6706 module_exit(rtl8169_cleanup_module);