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