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