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