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